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
7f323a424962078f0d541730b2a001b0d6f3bd66
524
py
Python
guppe/atividades/secao_7/ex030.py
WesleyLucas97/cursos_python
b2cbd393e8fed6e36b84253f7934766f2b4f1de8
[ "MIT" ]
null
null
null
guppe/atividades/secao_7/ex030.py
WesleyLucas97/cursos_python
b2cbd393e8fed6e36b84253f7934766f2b4f1de8
[ "MIT" ]
null
null
null
guppe/atividades/secao_7/ex030.py
WesleyLucas97/cursos_python
b2cbd393e8fed6e36b84253f7934766f2b4f1de8
[ "MIT" ]
null
null
null
""" Faça um programa que leia dois vetores de 10 elementos. Crie um vetor que seja a intersecçao entre os 2 vetores anteriores, ou seja, que contém apenas os números que estao em ambos os vetores. Nao deve conter números repetidos. """ from random import randint vetor1 = [] vetor2 = [] inter = [] for x in range(10): vetor1.append(randint(0, 200)) vetor2.append(randint(0, 200)) for x in vetor1: if x in vetor2: if x not in inter: inter.append(x) print(vetor1) print(vetor2) print(inter)
23.818182
115
0.69084
0
0
0
0
0
0
0
0
240
0.453686
7f3456525e16a28ff65bdae2bcdeda6075e74b3f
343
py
Python
tests/internal/instance_type/test_instance_type_h_auto.py
frolovv/aws.ec2.compare
582805823492f833d65c0441c4a14dce697c12aa
[ "Apache-2.0" ]
null
null
null
tests/internal/instance_type/test_instance_type_h_auto.py
frolovv/aws.ec2.compare
582805823492f833d65c0441c4a14dce697c12aa
[ "Apache-2.0" ]
null
null
null
tests/internal/instance_type/test_instance_type_h_auto.py
frolovv/aws.ec2.compare
582805823492f833d65c0441c4a14dce697c12aa
[ "Apache-2.0" ]
1
2021-12-15T11:58:22.000Z
2021-12-15T11:58:22.000Z
# Testing module instance_type.h import pytest import ec2_compare.internal.instance_type.h def test_get_internal_data_instance_type_h_get_instances_list(): assert len(ec2_compare.internal.instance_type.h.get_instances_list()) > 0 def test_get_internal_data_instance_type_h_get(): assert len(ec2_compare.internal.instance_type.h.get) > 0
34.3
75
0.845481
0
0
0
0
0
0
0
0
32
0.093294
7f350b0e080d9eba4c1970d4cf3a06f36a964718
1,529
py
Python
gridSearch.py
piotrbla/pyExamples
d949784e614da53afc05a1245c824d0b853d8234
[ "MIT" ]
null
null
null
gridSearch.py
piotrbla/pyExamples
d949784e614da53afc05a1245c824d0b853d8234
[ "MIT" ]
null
null
null
gridSearch.py
piotrbla/pyExamples
d949784e614da53afc05a1245c824d0b853d8234
[ "MIT" ]
null
null
null
#!/bin/python3 import sys # t = int(input().strip()) # for a0 in range(t): # G = [ # "7283455864", # "6731158619", # "8988242643", # "3830589324", # "2229505813", # "5633845374", # "6473530293", # "7053106601", # "0834282956", # "4607924137" # ] # P = ["9505", "3845", "3530"] G = [ "123412", "561212", "123634", "781288" ] P = ["12","34"] def myfind(s, toFind): found = [] pos = s.find(toFind, 0) while(pos>-1): found.append(pos) if pos+1>len(s): break pos = s.find(toFind, pos+1) return found if True: # print(G) # print(P) if P: found = False s = P[0] gCount = 0 for gs in G: if s in gs: positions = myfind(gs, s) gInnerCount = gCount - 1 if len(G) - gCount < len(P): found = False continue found = True for ps in P: gInnerCount += 1 if ps in G[gInnerCount]: positions = list(set(positions).intersection(myfind(G[gInnerCount], ps))) if positions: continue found = False break if found: break; gCount += 1 if found: print("YES") else: print("NO") else: print("NO")
22.485294
97
0.400916
0
0
0
0
0
0
0
0
363
0.23741
7f3544b7340939d1a01b2aecf308475476d4e6eb
1,764
py
Python
rollbar_udp_agent/util.py
lrascao/rollbar-udp-agent
51c698837e5141bff5fef3e20afe7301c3ecdf27
[ "MIT" ]
1
2015-05-27T21:48:42.000Z
2015-05-27T21:48:42.000Z
rollbar_udp_agent/util.py
lrascao/rollbar-udp-agent
51c698837e5141bff5fef3e20afe7301c3ecdf27
[ "MIT" ]
null
null
null
rollbar_udp_agent/util.py
lrascao/rollbar-udp-agent
51c698837e5141bff5fef3e20afe7301c3ecdf27
[ "MIT" ]
null
null
null
import os import logging import tempfile log = logging.getLogger(__name__) class PidFile(object): """ A small helper class for pidfiles. """ PID_DIR = '/var/run/rollbard' def __init__(self, program, pid_dir=None): self.pid_file = "%s.pid" % program self.pid_dir = pid_dir or self.get_default_pid_dir() self.pid_path = os.path.join(self.pid_dir, self.pid_file) def get_default_pid_dir(self): return PidFile.PID_DIR def get_path(self): # Can we write to the directory try: if os.access(self.pid_dir, os.W_OK): log.info("Pid file is: %s" % self.pid_path) return self.pid_path except Exception: log.warn("Cannot locate pid file, trying to use: %s" % tempfile.gettempdir()) # if all else fails if os.access(tempfile.gettempdir(), os.W_OK): tmp_path = os.path.join(tempfile.gettempdir(), self.pid_file) log.debug("Using temporary pid file: %s" % tmp_path) return tmp_path else: # Can't save pid file, bail out log.error("Cannot save pid file anywhere") raise Exception("Cannot save pid file anywhere") def clean(self): try: path = self.get_path() log.debug("Cleaning up pid file %s" % path) os.remove(path) return True except Exception: log.warn("Could not clean up pid file") return False def get_pid(self): "Retrieve the actual pid" try: pf = open(self.get_path()) pid_s = pf.read() pf.close() return int(pid_s.strip()) except Exception: return None
29.898305
89
0.570862
1,686
0.955782
0
0
0
0
0
0
381
0.215986
7f35a101be268b4de55d1e3fbef7b0fc92eca07c
1,388
py
Python
server/migrations/0019_auto_20151124_1806.py
gregneagle/sal
74c583fb1c1b33d3201b308b147376b3dcaca33f
[ "Apache-2.0" ]
2
2019-11-01T20:50:35.000Z
2021-01-13T22:02:55.000Z
server/migrations/0019_auto_20151124_1806.py
gregneagle/sal
74c583fb1c1b33d3201b308b147376b3dcaca33f
[ "Apache-2.0" ]
null
null
null
server/migrations/0019_auto_20151124_1806.py
gregneagle/sal
74c583fb1c1b33d3201b308b147376b3dcaca33f
[ "Apache-2.0" ]
null
null
null
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('server', '0018_auto_20151124_1654'), ] operations = [ migrations.CreateModel( name='UpdateHistoryItem', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('recorded', models.DateTimeField()), ('status', models.CharField(max_length=255, verbose_name=b'Status', choices=[(b'pending', b'Pending'), (b'error', b'Error'), (b'success', b'Success')])), ], ), migrations.AlterModelOptions( name='updatehistory', options={'ordering': ['name']}, ), migrations.AlterUniqueTogether( name='updatehistory', unique_together=set([('machine', 'name', 'version')]), ), migrations.AddField( model_name='updatehistoryitem', name='update_history', field=models.ForeignKey(to='server.UpdateHistory'), ), migrations.RemoveField( model_name='updatehistory', name='recorded', ), migrations.RemoveField( model_name='updatehistory', name='status', ), ]
31.545455
169
0.561239
1,279
0.92147
0
0
0
0
0
0
341
0.245677
7f3657c2007cb8e2fe9ba1e91d9490a327ac7d62
3,624
py
Python
libc/kernel/tools/update_all.py
Keneral/abionic
0f441ff93f011ed0069339e16f59e572134a5f3b
[ "Unlicense" ]
null
null
null
libc/kernel/tools/update_all.py
Keneral/abionic
0f441ff93f011ed0069339e16f59e572134a5f3b
[ "Unlicense" ]
null
null
null
libc/kernel/tools/update_all.py
Keneral/abionic
0f441ff93f011ed0069339e16f59e572134a5f3b
[ "Unlicense" ]
null
null
null
#!/usr/bin/env python # import sys, cpp, kernel, glob, os, re, getopt, clean_header, subprocess from defaults import * from utils import * def usage(): print """\ usage: %(progname)s [kernel-original-path] [kernel-modified-path] this program is used to update all the auto-generated clean headers used by the Bionic C library. it assumes the following: - a set of source kernel headers is located in 'external/kernel-headers/original', relative to the current android tree - a set of manually modified kernel header files located in 'external/kernel-headers/modified', relative to the current android tree - the clean headers will be placed in 'bionic/libc/kernel/arch-<arch>/asm', 'bionic/libc/kernel/common', etc.. """ % { "progname" : os.path.basename(sys.argv[0]) } sys.exit(0) try: optlist, args = getopt.getopt(sys.argv[1:], '') except: # unrecognized option sys.stderr.write("error: unrecognized option\n") usage() if len(optlist) > 0 or len(args) > 2: usage() modified_dir = get_kernel_headers_modified_dir() if len(args) == 1 or len(args) == 2: original_dir = args[0] if not os.path.isdir(original_dir): panic("Not a directory: %s\n" % original_dir) if len(args) == 2: modified_dir = args[1] if not os.path.isdir(modified_dir): panic("Not a directory: %s\n" % modified_dir) else: original_dir = get_kernel_headers_original_dir() if not os.path.isdir(original_dir): panic("Missing directory, please specify one through command-line: %s\n" % original_dir) if not os.path.isdir(modified_dir): modified_dir = None # Find all source files in 'original'. sources = dict() original_dir = os.path.normpath(original_dir) original_dir_len = len(original_dir) + 1 for root, _, files in os.walk(original_dir): for file in files: _, ext = os.path.splitext(file) if ext == ".h": rel_path = os.path.normpath(os.path.join(root, file)) rel_path = rel_path[original_dir_len:] # Check to see if there is a modified header to use instead. if modified_dir and os.path.exists(os.path.join(modified_dir, rel_path)): sources[rel_path] = False else: sources[rel_path] = True b = BatchFileUpdater() kernel_dir = get_kernel_dir() for arch in kernel_archs: b.readDir(os.path.join(kernel_dir, "arch-%s" % arch)) b.readDir(os.path.join(kernel_dir, "common")) oldlen = 120 android_root_len = len(get_android_root()) + 1 for rel_path in sorted(sources): if sources[rel_path]: src_dir = original_dir src_str = "<original>/" else: src_dir = modified_dir src_str = "<modified>/" dst_path, newdata = clean_header.cleanupFile(kernel_dir, src_dir, rel_path) if not dst_path: continue dst_path = os.path.join(kernel_dir, dst_path) b.readFile(dst_path) r = b.editFile(dst_path, newdata) if r == 0: state = "unchanged" elif r == 1: state = "edited" else: state = "added" # dst_path is guaranteed to include android root. rel_dst_path = dst_path[android_root_len:] str = "cleaning: %-*s -> %-*s (%s)" % (35, src_str + rel_path, 35, rel_dst_path, state) if sys.stdout.isatty(): print "%-*s" % (oldlen, str), if (r == 0): print "\r", else: print "\n", oldlen = 0 else: print str oldlen = len(str) print "%-*s" % (oldlen, "Done!") b.updateGitFiles() sys.exit(0)
29.463415
96
0.631347
0
0
0
0
0
0
0
0
1,107
0.305464
7f36be3439ad38bb0d3934200cfedbede2aee704
1,816
py
Python
binding/python/ddls/feeder/batch.py
huzelin/ddls
3333a669c59ce2e525945f814a54784dafc6191b
[ "MIT" ]
3
2019-01-03T07:34:01.000Z
2020-02-13T19:53:35.000Z
binding/python/ddls/feeder/batch.py
huzelin/ddls
3333a669c59ce2e525945f814a54784dafc6191b
[ "MIT" ]
null
null
null
binding/python/ddls/feeder/batch.py
huzelin/ddls
3333a669c59ce2e525945f814a54784dafc6191b
[ "MIT" ]
1
2020-05-06T11:08:07.000Z
2020-05-06T11:08:07.000Z
""" batch iterator""" from __future__ import absolute_import import ctypes from ddls.base import check_call, LIB, c_str, c_array from ddls.hpps.tensor import Tensor class Batch(object): """ The BatchIterator """ def __init__(self, handle): """ The batch from iterator """ self.handle = handle def __del__(self): """ Delete tensor """ check_call(LIB.HPPS_BatchDestroy(self.handle)) def get_tensor(self, name): """ Return the tensor according to name """ out = ctypes.c_void_p() check_call(LIB.HPPS_BatchGetTensorFromKey(self.handle, c_str(name), ctypes.byref(out))) return Tensor(handle=out, shape=None, type=None) def names(self): """ Return the names of tensor """ out_names = ctypes.POINTER(ctypes.c_char_p)() out_size = ctypes.c_int() check_call(LIB.HPPS_BatchGetKeys(self.handle, ctypes.byref(out_size), ctypes.byref(out_names))) return tuple(out_names[:out_size.value]) def add_indices_tensor(self, names_array): """ add indices tensor """ check_call(LIB.HPPS_AddIndicesTensor(self.handle, len(names_array), c_array(ctypes.c_char_p, names_array))) def add_uniqid_tensor(self, names_array): """ add uniqid tensor """ check_call(LIB.HPPS_AddUniqIdTensor(self.handle, len(names_array), c_array(ctypes.c_char_p, names_array)))
32.428571
84
0.522026
1,645
0.905837
0
0
0
0
0
0
279
0.153634
7f373e1985a3fef43fa656105237573ff16bc399
3,520
py
Python
pymoo/util/ref_dirs/energy_layer.py
jarreguit/pymoo
0496a3c6765826148d8bab21650736760517dd25
[ "Apache-2.0" ]
762
2018-06-05T20:56:09.000Z
2021-09-14T09:09:42.000Z
pymoo/util/ref_dirs/energy_layer.py
jarreguit/pymoo
0496a3c6765826148d8bab21650736760517dd25
[ "Apache-2.0" ]
176
2018-09-05T18:37:05.000Z
2021-09-14T01:18:43.000Z
pymoo/util/ref_dirs/energy_layer.py
jarreguit/pymoo
0496a3c6765826148d8bab21650736760517dd25
[ "Apache-2.0" ]
160
2018-08-05T05:31:20.000Z
2021-09-14T09:09:45.000Z
import autograd.numpy as anp import numpy as np from autograd import value_and_grad from pymoo.factory import normalize from pymoo.util.ref_dirs.energy import squared_dist from pymoo.util.ref_dirs.optimizer import Adam from pymoo.util.reference_direction import ReferenceDirectionFactory, scale_reference_directions class LayerwiseRieszEnergyReferenceDirectionFactory(ReferenceDirectionFactory): def __init__(self, n_dim, partitions, return_as_tuple=False, n_max_iter=1000, verbose=False, X=None, **kwargs): super().__init__(n_dim, **kwargs) self.scalings = None self.n_max_iter = n_max_iter self.verbose = verbose self.return_as_tuple = return_as_tuple self.X = X self.partitions = partitions def _step(self, optimizer, X, scalings): obj, grad = value_and_grad(calc_potential_energy)(scalings, X) scalings = optimizer.next(scalings, np.array(grad)) scalings = normalize(scalings, xl=0, xu=scalings.max()) return scalings, obj def _solve(self, X, scalings): # initialize the optimizer for the run optimizer = Adam() # for each iteration of gradient descent for i in range(self.n_max_iter): # execute one optimization step _scalings, _obj = self._step(optimizer, X, scalings) # evaluate how much the points have moved delta = np.abs(_scalings - scalings).sum() if self.verbose: print(i, "objective", _obj, "delta", delta) # if there was only a little delta during the last iteration -> terminate if delta < 1e-5: scalings = _scalings break # otherwise use the new points for the next iteration scalings = _scalings self.scalings = scalings return get_points(X, scalings) def do(self): X = [] scalings = [] for k, p in enumerate(self.partitions): if p > 1: val = np.linspace(0, 1, p + 1)[1:-1] _X = [] for i in range(self.n_dim): for j in range(i + 1, self.n_dim): x = np.zeros((len(val), self.n_dim)) x[:, i] = val x[:, j] = 1 - val _X.append(x) X.append(np.row_stack(_X + [np.eye(self.n_dim)])) elif p == 1: X.append(np.eye(self.n_dim)) else: X.append(np.full(self.n_dim, 1 / self.n_dim)[None, :]) scalings.append(1 - k / len(self.partitions)) scalings = np.array(scalings) X = self._solve(X, scalings) return X # --------------------------------------------------------------------------------------------------------- # Energy Functions # --------------------------------------------------------------------------------------------------------- def get_points(X, scalings): vals = [] for i in range(len(X)): vals.append(scale_reference_directions(X[i], scalings[i])) X = anp.row_stack(vals) return X def calc_potential_energy(scalings, X): X = get_points(X, scalings) i, j = anp.triu_indices(len(X), 1) D = squared_dist(X, X)[i, j] if np.any(D < 1e-12): return np.nan, np.nan return (1 / D).mean()
29.579832
107
0.52642
2,551
0.724716
0
0
0
0
0
0
526
0.149432
7f3776d641ecf1c2ca820e1d8531b10c65ba6e21
1,555
py
Python
convert_pfm_json.py
biolib/deepclip
06e0a3c431db76745b6674afabc4d171f19b3eb0
[ "MIT" ]
7
2019-07-23T10:20:11.000Z
2022-03-14T14:46:13.000Z
convert_pfm_json.py
biolib/deepclip
06e0a3c431db76745b6674afabc4d171f19b3eb0
[ "MIT" ]
10
2019-09-05T22:45:04.000Z
2022-03-21T08:40:49.000Z
convert_pfm_json.py
biolib/deepclip
06e0a3c431db76745b6674afabc4d171f19b3eb0
[ "MIT" ]
5
2019-07-23T10:20:46.000Z
2021-11-14T07:18:05.000Z
#!/usr/bin/env python import numpy as np import matplotlib.pyplot as plt import argparse import json parser = argparse.ArgumentParser() parser.add_argument("-seqs", required=True, type=str, default=None, help="File containing sequences") args = parser.parse_args() dicts = [] with open(args.seqs,'r') as inf: for line in inf: dicts.append(eval(line)) try: assert len(dicts) == 5 except AssertionError: print "AssertionError: assert len(dicts) == 5" print "len(dicts) =",str(len(dicts)) print str(dicts) exit(1) sizes = [4,5,6,7,8] tot_info = [] for i in range(len(dicts)): temp_pfm = np.array(dicts[i]['PFM_'+str(sizes[i])+'_0']).T #print temp_pfm.shape temp_pfm1 = temp_pfm + 0.000000001 tot_info.append([np.sum(np.log2(4) + np.sum(temp_pfm * np.log2(temp_pfm1), axis=1, keepdims = True))/len(temp_pfm), sizes[i]]) #print tot_info tot_info.sort() tot_info.reverse() #print tot_info new_json = {} for mp in range(len(tot_info)): for qq in range(len(dicts)): if 'PFM_'+str(tot_info[mp][1])+'_0' in dicts[qq]: print 'PFM_'+str(tot_info[mp][1])+'_0' new_json['PFM_'+str(tot_info[mp][1])+'_0'] = dicts[qq]['PFM_'+str(tot_info[mp][1])+'_0'] with open('PFMs.json', 'w') as outfile: json.dump(new_json, outfile) with open('PFM_order.txt', 'w') as txt: print >> txt, "name, info_per_bp" for i in tot_info: print >> txt, "PFM_" +str(i[1])+ "_0,", "{0:.3f}".format(i[0])
23.923077
130
0.607074
0
0
0
0
0
0
0
0
284
0.182637
7f38a2c200ca531dbe41a48a8f774eb63c7b3ea0
83
py
Python
xmpt/apps.py
anzrz/djangoapp
85b4f73754af53ddf33ec281a04a70415af02eb6
[ "MIT" ]
1
2021-04-23T14:19:33.000Z
2021-04-23T14:19:33.000Z
xmpt/apps.py
anzrz/djangoapp
85b4f73754af53ddf33ec281a04a70415af02eb6
[ "MIT" ]
null
null
null
xmpt/apps.py
anzrz/djangoapp
85b4f73754af53ddf33ec281a04a70415af02eb6
[ "MIT" ]
null
null
null
from django.apps import AppConfig class XmptConfig(AppConfig): name = 'xmpt'
13.833333
33
0.73494
46
0.554217
0
0
0
0
0
0
6
0.072289
7f3bbf18433361fecef0405dbb0e62ddd2cecfda
787
py
Python
prc/fatigue.py
moulin1024/WIRELES2
2fcd190531d24e4f98885824c7d78acb3f79b304
[ "MIT" ]
3
2020-09-10T13:34:21.000Z
2020-09-10T20:26:30.000Z
prc/fatigue.py
moulin1024/WIRELES2
2fcd190531d24e4f98885824c7d78acb3f79b304
[ "MIT" ]
null
null
null
prc/fatigue.py
moulin1024/WIRELES2
2fcd190531d24e4f98885824c7d78acb3f79b304
[ "MIT" ]
null
null
null
import numpy as np import math import fatpack import matplotlib.pyplot as plt import pandas as pd #Create a function that reutrns the Goodman correction: def Goodman_method_correction(M_a,M_m,M_max): M_u = 1.5*M_max M_ar = M_a/(1-M_m/M_u) return M_ar def Equivalent_bending_moment(M_ar,Neq,m): P = M_ar.shape M_sum = 0 j = P[0] for i in range(j): M_sum = math.pow(M_ar[i],m) + M_sum M_eq = math.pow((M_sum/Neq),(1/m)) return M_eq def get_DEL(y,Neq,m): S, Sm = fatpack.find_rainflow_ranges(y.flatten(), return_means=True, k=256) data_arr = np.array([Sm , S ]).T M_ar = Goodman_method_correction(data_arr[:,1],data_arr[:,0],np.max(S)) print(sum(M_ar.shape)) M_eq = Equivalent_bending_moment(M_ar,Neq,m) return M_eq
26.233333
79
0.673443
0
0
0
0
0
0
0
0
55
0.069886
7f3d359af8382d37dc10d0318477d716c6a3d982
12,040
py
Python
executor/process.py
xolox/python-executor
ea14d75ae3533fcc2f32554dd3ae1f6061c2c24c
[ "MIT" ]
82
2015-03-03T17:12:28.000Z
2022-02-11T21:54:15.000Z
executor/process.py
xolox/python-executor
ea14d75ae3533fcc2f32554dd3ae1f6061c2c24c
[ "MIT" ]
19
2015-03-03T17:12:13.000Z
2022-03-11T19:24:58.000Z
executor/process.py
xolox/python-executor
ea14d75ae3533fcc2f32554dd3ae1f6061c2c24c
[ "MIT" ]
19
2016-10-15T02:53:58.000Z
2021-07-22T15:28:25.000Z
# Programmer friendly subprocess wrapper. # # Author: Peter Odding <peter@peterodding.com> # Last Change: March 2, 2020 # URL: https://executor.readthedocs.io """ Portable process control functionality for the `executor` package. The :mod:`executor.process` module defines the :class:`ControllableProcess` abstract base class which enables process control features like waiting for a process to end, gracefully terminating it and forcefully killing it. The process control functionality in :class:`ControllableProcess` is separated from the command execution functionality in :class:`~executor.ExternalCommand` to make it possible to re-use the process control functionality in other Python packages, see for example the :class:`proc.core.Process` class. """ # Standard library modules. import logging # External dependencies. from humanfriendly import Timer from humanfriendly.terminal.spinners import Spinner from property_manager import PropertyManager, mutable_property, required_property # Initialize a logger for this module. logger = logging.getLogger(__name__) DEFAULT_TIMEOUT = 10 """The default timeout used to wait for process termination (number of seconds).""" class ControllableProcess(PropertyManager): """ Abstract, portable process control functionality. By defining a subclass of :class:`ControllableProcess` and implementing the :attr:`pid`, :attr:`command_line` and :attr:`is_running` properties and the :func:`terminate_helper()` and :func:`kill_helper()` methods you get the :func:`wait_for_process()`, :func:`terminate()` and :func:`kill()` methods for free. This decoupling has enabled me to share a lot of code between two Python projects of mine with similar goals but very different requirements: 1. The `executor` package builds on top of the :mod:`subprocess` module in the Python standard library and strives to be as cross platform as possible. This means things like UNIX signals are not an option (although signals exist on Windows they are hardly usable). The package mostly deals with :class:`subprocess.Popen` objects internally (to hide platform specific details as much as possible). 2. The proc_ package exposes process information available in the Linux process information pseudo-file system available at ``/proc``. The package mostly deals with process IDs internally. Because this is completely specialized to a UNIX environment the use of things like UNIX signals is not a problem at all. .. _proc: http://proc.readthedocs.org/en/latest/ """ @mutable_property def command_line(self): """ A list of strings with the command line used to start the process. This property may be set or implemented by subclasses to enable :func:`__str__()` to render a human friendly representation of a :class:`ControllableProcess` object. """ return [] @property def is_running(self): """ :data:`True` if the process is running, :data:`False` otherwise. This property must be implemented by subclasses to enable :func:`wait_for_process()`, :func:`terminate()` and :func:`kill()` to work properly. """ raise NotImplementedError("You need to implement the `is_running' property!") @mutable_property def logger(self): """ The :class:`logging.Logger` object to use (defaults to the :mod:`executor.process` logger). If you are using Python's :mod:`logging` module and you find it confusing that command manipulation is logged under the :mod:`executor.process` name space instead of the name space of the application or library using :mod:`executor` you can set this attribute to inject a custom (and more appropriate) logger. """ return logger @mutable_property def pid(self): """ The process ID (a number) or :data:`None`. This property must be set or implemented by subclasses: - It provides :func:`wait_for_process()` with a short and unique representation of a process that most users will understand. - It enables :func:`__str__()` to render a human friendly representation of a :class:`ControllableProcess` object. """ def wait_for_process(self, timeout=0, use_spinner=None): """ Wait until the process ends or the timeout expires. :param timeout: The number of seconds to wait for the process to terminate after we've asked it nicely (defaults to zero which means we wait indefinitely). :param use_spinner: Whether or not to display an interactive spinner on the terminal (using :class:`~humanfriendly.Spinner`) to explain to the user what they are waiting for: - :data:`True` enables the spinner, - :data:`False` disables the spinner, - :data:`None` (the default) means the spinner is enabled when the program is connected to an interactive terminal, otherwise it's disabled. :returns: A :class:`~humanfriendly.Timer` object telling you how long it took to wait for the process. """ with Timer(resumable=True) as timer: with Spinner(interactive=use_spinner, timer=timer) as spinner: while self.is_running: if timeout and timer.elapsed_time >= timeout: break spinner.step(label="Waiting for process %i to terminate" % self.pid) spinner.sleep() return timer def terminate(self, wait=True, timeout=DEFAULT_TIMEOUT, use_spinner=None): """ Gracefully terminate the process. :param wait: Whether to wait for the process to end (a boolean, defaults to :data:`True`). :param timeout: The number of seconds to wait for the process to terminate after we've signaled it (defaults to :data:`DEFAULT_TIMEOUT`). Zero means to wait indefinitely. :param use_spinner: See the :func:`wait_for_process()` documentation. :returns: :data:`True` if the process was terminated, :data:`False` otherwise. :raises: Any exceptions raised by :func:`terminate_helper()` implementations of subclasses or :func:`kill()`. This method works as follows: 1. Signal the process to gracefully terminate itself. Processes can choose to intercept termination signals to allow for graceful termination (many UNIX daemons work like this) however the default action is to simply exit immediately. 2. If `wait` is :data:`True` and we've signaled the process, we wait for it to terminate gracefully or `timeout` seconds have passed (whichever comes first). 3. If `wait` is :data:`True` and the process is still running after `timeout` seconds have passed, it will be forcefully terminated using :func:`kill()` (the value of `timeout` that was given to :func:`terminate()` will be passed on to :func:`kill()`). This method does nothing when :attr:`is_running` is :data:`False`. """ if self.is_running: self.logger.info("Gracefully terminating process %s ..", self) self.terminate_helper() if wait: timer = self.wait_for_process(timeout=timeout, use_spinner=use_spinner) if self.is_running: self.logger.warning("Failed to gracefully terminate process! (waited %s)", timer) return self.kill(wait=True, timeout=timeout) else: self.logger.info("Successfully terminated process in %s.", timer) return True return not self.is_running else: return False def terminate_helper(self): """Request the process to gracefully terminate itself (needs to be implemented by subclasses).""" raise NotImplementedError("You need to implement the terminate_helper() method!") def kill(self, wait=True, timeout=DEFAULT_TIMEOUT, use_spinner=None): """ Forcefully kill the process. :param wait: Whether to wait for the process to end (a boolean, defaults to :data:`True`). :param timeout: The number of seconds to wait for the process to terminate after we've signaled it (defaults to :data:`DEFAULT_TIMEOUT`). Zero means to wait indefinitely. :param use_spinner: See the :func:`wait_for_process()` documentation. :returns: :data:`True` if the process was killed, :data:`False` otherwise. :raises: - Any exceptions raised by :func:`kill_helper()` implementations of subclasses. - :exc:`ProcessTerminationFailed` if the process is still running after :func:`kill_helper()` and :func:`wait_for_process()` have been called. This method does nothing when :attr:`is_running` is :data:`False`. """ if self.is_running: self.logger.info("Forcefully killing process %s ..", self) self.kill_helper() if wait: timer = self.wait_for_process(timeout=timeout, use_spinner=use_spinner) if self.is_running: self.logger.warning("Failed to forcefully kill process! (waited %s)", timer) raise ProcessTerminationFailed(process=self, message="Failed to kill process! (%s)" % self) else: self.logger.info("Successfully killed process in %s.", timer) return True return not self.is_running else: return False def kill_helper(self): """Forcefully kill the process (needs to be implemented by subclasses).""" raise NotImplementedError("You need to implement the kill_helper() method!") def __str__(self): """ Render a human friendly representation of a :class:`ControllableProcess` object. :returns: A string describing the process. Includes the process ID and the command line (when available). """ text = [] # Include the process ID? (only when it's available) if self.pid is not None: text.append(str(self.pid)) # Include the command line? (again, only when it's available) if self.command_line: # We import here to avoid circular imports. from executor import quote text.append("(%s)" % quote(self.command_line)) if not text: # If all else fails we fall back to the super class. text.append(object.__str__(self)) return " ".join(text) class ProcessTerminationFailed(PropertyManager, Exception): """Raised when process termination fails.""" def __init__(self, *args, **kw): """ Initialize a :class:`ProcessTerminationFailed` object. This method's signature is the same as the initializer of the :class:`~property_manager.PropertyManager` class. """ PropertyManager.__init__(self, *args, **kw) Exception.__init__(self, self.message) @required_property(usage_notes=False) def process(self): """The :class:`ControllableProcess` object that triggered the exception.""" @required_property(usage_notes=False) def message(self): """An error message that explains how the process termination failed."""
43.623188
111
0.635133
10,854
0.901495
0
0
2,015
0.167359
0
0
8,845
0.734635
7f3df3dc967b1922f0d38e1d9051faca1358ecc7
10,945
py
Python
lambda/qldb/import_transport_product.py
UBC-CIC/VaccineDistribution
3bd8d507eaabcf3a3213ec7c1d25127dd221c537
[ "MIT" ]
null
null
null
lambda/qldb/import_transport_product.py
UBC-CIC/VaccineDistribution
3bd8d507eaabcf3a3213ec7c1d25127dd221c537
[ "MIT" ]
null
null
null
lambda/qldb/import_transport_product.py
UBC-CIC/VaccineDistribution
3bd8d507eaabcf3a3213ec7c1d25127dd221c537
[ "MIT" ]
null
null
null
from logging import basicConfig, getLogger, INFO from connect_to_ledger import create_qldb_driver from amazon.ion.simpleion import dumps, loads logger = getLogger(__name__) basicConfig(level=INFO) from constants import Constants from register_person import get_scentityid_from_personid,get_scentity_contact from sampledata.sample_data import get_value_from_documentid,document_exist,update_document from check_container_safety import isContainerSafe from create_purchase_order_to_manufacturer import get_sub_details from export_transport_product import create_lorry_reciept, update_document_in_container from export_customs_approval import document_already_approved_by_customs import copy def deliver_product_to_distributor(transaction_executor,pick_up_request_id,pick_up_person_id): if document_exist(transaction_executor,Constants.PICK_UP_REQUESTS_TABLE,pick_up_request_id): update_document(transaction_executor,Constants.PICK_UP_REQUESTS_TABLE,"isAccepted",pick_up_request_id,True) purchase_order_id = get_value_from_documentid(transaction_executor,Constants.PICK_UP_REQUESTS_TABLE, pick_up_request_id, "PurchaseOrderId") purchase_order_id = purchase_order_id[0] container_ids = get_value_from_documentid(transaction_executor,Constants.PURCHASE_ORDER_TABLE_NAME,purchase_order_id,"HighestPackagingLevelIds") for container_id in container_ids[0]: total_containers_ordered = len(container_ids[0]) if document_exist(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id): #check if container_exist certificate_of_origin_id = get_value_from_documentid(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id,"CertificateOfOriginId") packing_list_id = get_value_from_documentid(transaction_executor, Constants.CONTAINER_TABLE_NAME,container_id,"PackingListId") import_custom_approved = (document_already_approved_by_customs(transaction_executor,"ImportApproval",Constants.CERTIFICATE_OF_ORIGIN_TABLE_NAME,certificate_of_origin_id[0]) and document_already_approved_by_customs(transaction_executor,"ImportApproval", Constants.PACKING_LIST_TABLE_NAME,packing_list_id[0])) if import_custom_approved: logger.info("Approved by Import!") total_safe_containers = copy.copy(total_containers_ordered) if isContainerSafe(transaction_executor,container_id): actual_sc_entity_id = get_scentityid_from_personid(transaction_executor,pick_up_person_id) transport_type = get_value_from_documentid(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id,"TransportType") #check if container is safe if transport_type[0] == 1: table = Constants.AIRWAY_BILL_TABLE_NAME airway_bills = get_value_from_documentid(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id,"AirwayBillIds") elif transport_type[0] == 2: table = Constants.BILL_OF_LADING_TABLE_NAME bill_of_lading = get_value_from_documentid(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id,"BillOfLadingIds") print(transport_type) pick_up_scentity_id = get_value_from_documentid(transaction_executor,Constants.PICK_UP_REQUESTS_TABLE,pick_up_request_id, "CarrierCompanyId") if actual_sc_entity_id == pick_up_scentity_id[0]: logger.info("Authorized!") if transport_type[0] == 1: is_picked_up = get_sub_details(transaction_executor,table,"RecieverApproval",airway_bills[0][-1],"isApproved") if is_picked_up[0] == 0: update_document(transaction_executor,Constants.AIRWAY_BILL_TABLE_NAME,"RecieverApproval.isApproved",airway_bills[0][-1],True) update_document(transaction_executor,Constants.AIRWAY_BILL_TABLE_NAME,"RecieverApproval.ApproverId",airway_bills[0][-1], pick_up_person_id) pick_up_location = get_value_from_documentid(transaction_executor,Constants.AIRWAY_BILL_TABLE_NAME,airway_bills[0][-1],"ImportAirportName") consignee_id = get_value_from_documentid(transaction_executor,Constants.AIRWAY_BILL_TABLE_NAME,airway_bills[0][-1],"SenderScEntityId") else: return_statement = "container already picked up" return{ 'statusCode': 400, 'body': return_statement } elif transport_type[0] == 2: is_picked_up = get_sub_details(transaction_executor,table,"RecieverApproval",bill_of_lading[0][-1],"isApproved") if is_picked_up[0] == 0: update_document(transaction_executor,Constants.BILL_OF_LADING_TABLE_NAME,"RecieverApproval.isApproved",bill_of_lading[0][-1],True) update_document(transaction_executor,Constants.BILL_OF_LADING_TABLE_NAME,"RecieverApproval.ApproverId",bill_of_lading[0][-1], pick_up_person_id) pick_up_location = get_value_from_documentid(transaction_executor,Constants.BILL_OF_LADING_TABLE_NAME,bill_of_lading[0][-1],"ImportPortName") consignee_id = get_value_from_documentid(transaction_executor,Constants.BILL_OF_LADING_TABLE_NAME,bill_of_lading[0][-1],"SenderScEntityId") else: return_statement = "Containers Already picked up" return{ 'statusCode': 400, 'body': return_statement } consignee_name = get_value_from_documentid(transaction_executor,Constants.SCENTITY_TABLE_NAME,consignee_id[0],"ScEntityName") delivery_location = get_scentity_contact(transaction_executor,actual_sc_entity_id[0],"Address") lorry_reciepts = get_value_from_documentid(transaction_executor,Constants.CONTAINER_TABLE_NAME,container_id,"LorryRecieptIds") carrier_id = get_value_from_documentid(transaction_executor,Constants.LORRY_RECEIPT_TABLE_NAME,lorry_reciepts[0][-1],"CarrierId") if carrier_id[0] == pick_up_scentity_id[0]: return_statement = "No request was made by buyer to pickup. Creating a new L/R to initiate import delivery." lorry_reciept_id = create_lorry_reciept(transaction_executor,actual_sc_entity_id,pick_up_person_id,pick_up_location[0],delivery_location,consignee_id,consignee_name,True) update_document_in_container(transaction_executor,container_id,"LorryRecieptIds",lorry_reciept_id[0]) return{ 'statusCode': 200, 'body': { "Message":return_statement, "LorryRecieptId":lorry_reciept_id[0] } } else: message = "Pick up request was made by new carrier assigned by buyer." update_document(transaction_executor,Constants.LORRY_RECEIPT_TABLE_NAME,"isPickedUp",lorry_reciepts[0][-1],True) return{ 'statusCode': 200, 'body': { "Message":return_statement, "LorryRecieptId":lorry_reciepts[0][-1] } } else: return_statement = "Not Authorized!" return{ 'statusCode': 400, 'body': return_statement } else: # raise Exception("Container Not Safe!") total_safe_containers = total_safe_containers - 1 if total_safe_containers > 0: continue else: return_statement = "Not Container was safe. Pick up can't be made for any container" return{ 'statusCode': 400, 'body': return_statement } elif not isContainerSafe(transaction_executor,container_id): continue else: return_statement = "Illegal=====Container was safe but not approved by customs" return{ 'statusCode': 400, 'body': return_statement } else: return_statement = ("Not Authorized!") return{ 'statusCode': 400, 'body': return_statement } else: return_statement = "Check Request Id" return{ 'statusCode': 400, 'body': return_statement } def pick_up_for_import(event): try: with create_qldb_driver() as driver: pickuprequestid = event["PickUpRequestId"] #96EioNwSjcq8HKLBRjcvPp pickuppersonid = event["PersonId"] return driver.execute_lambda(lambda executor: deliver_product_to_distributor(executor, pickuprequestid, pickuppersonid)) except Exception: return_statement = 'Error in import pick up' return{ 'statusCode': 400, 'body': return_statement }
65.14881
202
0.56921
0
0
0
0
0
0
0
0
1,333
0.121791
7f3df9c6bc7653f174e6f2a144e946916c638b4e
1,467
py
Python
rewx/components.py
akrk1986/re-wx
2f50d1c0afe77313548847b279327d7041623721
[ "MIT" ]
null
null
null
rewx/components.py
akrk1986/re-wx
2f50d1c0afe77313548847b279327d7041623721
[ "MIT" ]
null
null
null
rewx/components.py
akrk1986/re-wx
2f50d1c0afe77313548847b279327d7041623721
[ "MIT" ]
null
null
null
""" All components and wrappers currently supported by rewx. """ import wx import wx.adv import wx.lib.scrolledpanel import wx.media ActivityIndicator = wx.ActivityIndicator Button = wx.Button BitmapButton = wx.BitmapButton CalendarCtrl = wx.adv.CalendarCtrl CheckBox = wx.CheckBox # CollapsiblePane = wx.CollapsiblePane ComboBox = wx.ComboBox Dropdown = ComboBox Frame = wx.Frame Gauge = wx.Gauge ListBox = wx.ListBox ListCtrl = wx.ListCtrl Panel = wx.Panel RadioBox = wx.RadioBox RadioButton = wx.RadioButton ScrolledPanel = wx.lib.scrolledpanel.ScrolledPanel Slider = wx.Slider SpinCtrl = wx.SpinCtrl SpinCtrlDouble = wx.SpinCtrlDouble StaticBitmap = wx.StaticBitmap StaticBox = wx.StaticBox StaticLine = wx.StaticLine StaticText = wx.StaticText TextCtrl = wx.TextCtrl ToggleButton = wx.ToggleButton MediaCtrl = wx.media.MediaCtrl class Grid(wx.Panel): """ Wrapper type for creating a panel with a Grid Sizer """ pass class Block(wx.Panel): """ Wrapper type for creating a panel with a BoxSizer """ class TextArea(wx.TextCtrl): """ TextCtrl Wrapper with it's style pre-baked to be TE_MULTILINE """ pass class SVG(wx.StaticBitmap): """ Wrapper for converting an SVG to a scaled StaticBitmap """ pass class SVGButton(wx.BitmapButton): """ Wrapper for creating an SVG backed BitmapButton. """ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)
20.957143
58
0.720518
621
0.423313
0
0
0
0
0
0
457
0.31152
7f3e241328fb148652ce6188714ae1004458cf72
3,733
py
Python
test/blank_named_regtest.py
shraddha-pandhe/iscpy
69173bb101dbc9e454c8050ba480fa4b2d0efc46
[ "BSD-3-Clause" ]
null
null
null
test/blank_named_regtest.py
shraddha-pandhe/iscpy
69173bb101dbc9e454c8050ba480fa4b2d0efc46
[ "BSD-3-Clause" ]
null
null
null
test/blank_named_regtest.py
shraddha-pandhe/iscpy
69173bb101dbc9e454c8050ba480fa4b2d0efc46
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/python # Copyright (c) 2009, Purdue University # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # Redistributions of source code must retain the above copyright notice, this # list of conditions and the following disclaimer. # # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or # other materials provided with the distribution. # # Neither the name of the Purdue University nor the names of its contributors # may be used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """Regression test for iscpy.py Make sure you are running this against a database that can be destroyed. DO NOT EVER RUN THIS TEST AGAINST A PRODUCTION DATABASE. """ __copyright__ = 'Copyright (C) 2009, Purdue University' __license__ = 'BSD' __version__ = '#TRUNK#' import unittest import os import iscpy NAMED_FILE = 'test_data/named.example.conf' class TestNamedImport(unittest.TestCase): def setUp(self): self.named_file = ( 'include "/home/jcollins/roster-dns-management/test/test_data/rndc.key";' 'options { pid-file "test_data/named.pid";};\n' 'controls { inet 127.0.0.1 port 35638 allow{localhost;} keys {rndc-key;};};') self.maxDiff = None def testSingleOption(self): test_string = ( u'single-option;\n' u'boolean-option yes;\n' u'list-option { a; b; };\n' u'options {};\n') self.assertEqual(iscpy.Deserialize(iscpy.Serialize(test_string)), u'single-option ;\n' u'boolean-option yes;\n' u'options { };\n' u'list-option { a;\n' u'b; };') def testParse(self): self.assertEqual(iscpy.Explode(iscpy.ScrubComments(self.named_file)), ['include "/home/jcollins/roster-dns-management/test/test_data/rndc.key"', ';', 'options', '{', 'pid-file "test_data/named.pid"', ';', '}', ';', 'controls', '{', 'inet 127.0.0.1 port 35638 allow', '{', 'localhost', ';', '}', 'keys', '{', 'rndc-key', ';', '}', ';', '}', ';']) self.assertEqual(iscpy.ParseISCString(self.named_file), {'include': '"/home/jcollins/roster-dns-management/test/test_data/rndc.key"', 'options': {'pid-file': '"test_data/named.pid"'}, 'controls': [{'inet 127.0.0.1 port 35638 allow': {'localhost': True}}, {'keys': {'rndc-key': True}}]}) self.assertEqual(iscpy.MakeISC(iscpy.ParseISCString(self.named_file)), 'include "/home/jcollins/roster-dns-management/test/test_data/rndc.key";\n' 'options { pid-file "test_data/named.pid"; };\n' 'controls { inet 127.0.0.1 port 35638 allow { localhost; } keys { rndc-key; }; };') if( __name__ == '__main__' ): unittest.main()
40.139785
91
0.686579
1,771
0.474417
0
0
0
0
0
0
2,774
0.743102
7f3f0bcb734c5067a788e80bda49721133fbbbe5
4,247
py
Python
oo/carro.py
RafaelLJC/pythonbirds
43d401c6ef2b539ec45e19a218d0032de0435162
[ "MIT" ]
null
null
null
oo/carro.py
RafaelLJC/pythonbirds
43d401c6ef2b539ec45e19a218d0032de0435162
[ "MIT" ]
null
null
null
oo/carro.py
RafaelLJC/pythonbirds
43d401c6ef2b539ec45e19a218d0032de0435162
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ Created on Tue Jul 21 16:41:09 2020 @author: rafae Exercício Você deve criar uma classe carro que vai possuir dois atributos compostos por outras duas classes: 1) motor; 2) Direção. O motor terá a responsabilidade de controlar a velocidade. Ele oferece os seguintes atributos: 1) Atributo de dado velocidade; 2) Método acelerar, que deverá incrementar a velocidade de uma unidade; 3) Método frenar, que deverá decrementar a velocidade em duas unidades. A direção terá a responsabilidade de controlar a direção. Ela oferece os seguintes atributos: 1) Valor de direção com valores possóveis: Norte, Sul, Leste e Oeste; 2) Método girar a direita 2) Método girar a esquerda N O L S Exemplo: #testando motor >>> motor = Motor() >>> motor.velocidade 0 >>> motor.acelerar >>> motor.velocidade 1 >>> motor.acelerar >>> motor.velocidade 2 >>> motor.acelerar >>> motor.velocidade 3 >>> motor.frear >>> motor.velocidade 1 >>> motor.frear >>> motor.velocidade 0 #testando direção >>> direcao = Direcao() >>> direcao.valor 'Norte' >>> direcao.girar_a_direita() >>> direcao.valor 'Leste' >>> direcao.girar_a_direita() >>> direcao.valor 'Sul' >>> direcao.girar_a_direita() >>> direcao.valor 'Oeste' >>> direcao.girar_a_direita() >>> direcao.valor 'Norte' >>> direcao.girar_a_esquerda() >>> direcao.valor 'Oeste' >>> direcao.girar_a_esquerda() >>> direcao.valor 'Sul' >>> direcao.girar_a_esquerda() >>> direcao.valor 'Leste' >>> direcao.girar_a_esquerda() >>> direcao.valor 'Norte' >>> carro = Carro(direcao, motor) >>> carro.caluclar_velocidade() 0 >>> carro.acelerar >>> carro.caluclar_velocidade() 1 >>> carro.acelerar >>> carro.caluclar_velocidade() 2 >>> carro.frear >>> carro.caluclar_velocidade() 0 >>> carro.caluclar_direcao() 'Norte' >>> carro.girar_a_direita() >>> carro.caluclar_direcao() 'Leste' >>> carro.girar_a_esquerda() >>> carro.caluclar_direcao() 'Norte' >>> carro.girar_a_esquerda() >>> carro.caluclar_direcao() 'Oeste' """ class Carro: def __init__(self, direcao, motor): self.direcao = direcao self.motor = motor def calcular_velocidade(self): return self.motor.velocidade def acelerar(self): self.motor.acelerar def frear(self): self.motor.frear() def calcular_direcao(self): return self.direcao.valor def girar_a_direita(self): self.direcao.girar_a_direita() def girar_a_esquerda(self): self.direcao.girar_a_esquerda() class Motor: def __init__(self): self.velocidade = 0 def acelerar(self): self.velocidade += 1 def frear(self): self.velocidade -= 2 self.velocidade = max(0, self.velocidade) motor = Motor() motor.acelerar() motor.acelerar() motor.frear() motor.frear() motor.frear() motor.acelerar() motor.frear() motor.acelerar() motor.frear() NORTE = 'Norte' SUL = 'Sul' LESTE = 'Leste' OESTE = 'Oeste' class Direcao: def __init__(self): self.valor = NORTE def girar_a_direita(self): self.valor = rotacao_a_direita_dct[self.valor] def girar_a_esquerda(self): self.valor = rotacao_a_esquerda_dct[self.valor] rotacao_a_direita_dct = {NORTE: LESTE, LESTE: SUL, SUL: OESTE, OESTE: NORTE} rotacao_a_esquerda_dct = {NORTE: OESTE, OESTE: SUL, SUL: LESTE, LESTE: NORTE} direcao = Direcao() direcao.girar_a_direita() direcao.girar_a_esquerda() direcao.girar_a_esquerda() carro = Carro(direcao, motor) #print(direcao.valor) #print(motor.velocidade) print(carro.calcular_direcao()) print(carro.calcular_velocidade())
23.859551
77
0.586296
965
0.226101
0
0
0
0
0
0
2,699
0.632381
7f4010676a7aac9aa896fa49d6f12bbf2ad6307d
21
py
Python
src/models/items/constants.py
MDRCS/deals-catcher
0c2e344e402917cc284fbeb4d83c2829a08595aa
[ "MIT" ]
null
null
null
src/models/items/constants.py
MDRCS/deals-catcher
0c2e344e402917cc284fbeb4d83c2829a08595aa
[ "MIT" ]
null
null
null
src/models/items/constants.py
MDRCS/deals-catcher
0c2e344e402917cc284fbeb4d83c2829a08595aa
[ "MIT" ]
null
null
null
Collection = "items"
10.5
20
0.714286
0
0
0
0
0
0
0
0
7
0.333333
7f42a433c6b582f0497ed7d135f6be1ed7ed4f11
3,829
py
Python
before.py
PatrickLTI/Refactor-Code-Smell
0c6c0369a39a3cbd375e541021165cccd5c1c1b5
[ "MIT" ]
null
null
null
before.py
PatrickLTI/Refactor-Code-Smell
0c6c0369a39a3cbd375e541021165cccd5c1c1b5
[ "MIT" ]
null
null
null
before.py
PatrickLTI/Refactor-Code-Smell
0c6c0369a39a3cbd375e541021165cccd5c1c1b5
[ "MIT" ]
null
null
null
""" Very advanced Employee management system. """ from dataclasses import dataclass from typing import List FIXED_VACATION_DAYS_PAYOUT = 5 # The fixed nr of vacation days that can be paid out. @dataclass class Employee: """Basic representation of an employee at the company.""" name: str role: str vacation_days: int = 25 def take_a_holiday(self, payout: bool) -> None: """Let the employee take a single holiday, or pay out 5 holidays.""" if payout: # check that there are enough vacation days left for a payout if self.vacation_days < FIXED_VACATION_DAYS_PAYOUT: raise ValueError( f"You don't have enough holidays left over for a payout.\ Remaining holidays: {self.vacation_days}." ) try: self.vacation_days -= FIXED_VACATION_DAYS_PAYOUT print(f"Paying out a holiday. Holidays left: {self.vacation_days}") except Exception: # this should never happening pass else: if self.vacation_days < 1: raise ValueError( "You don't have any holidays left. Now back to work, you!" ) self.vacation_days -= 1 print("Have fun on your holiday. Don't forget to check your emails!") @dataclass class HourlyEmployee(Employee): """Employee that's paid based on number of worked hours.""" hourly_rate: float = 50 amount: int = 10 @dataclass class SalariedEmployee(Employee): """Employee that's paid based on a fixed monthly salary.""" monthly_salary: float = 5000 class Company: """Represents a company with employees.""" def __init__(self) -> None: self.employees: List[Employee] = [] def add_employee(self, employee: Employee) -> None: """Add an employee to the list of employees.""" self.employees.append(employee) def find_managers(self) -> List[Employee]: """Find all manager employees.""" managers = [] for employee in self.employees: if employee.role == "manager": managers.append(employee) return managers def find_vice_presidents(self) -> List[Employee]: """Find all vice-president employees.""" vice_presidents = [] for employee in self.employees: if employee.role == "vice_president": vice_presidents.append(employee) return vice_presidents def find_interns(self) -> List[Employee]: """Find all interns.""" interns = [] for employee in self.employees: if employee.role == "intern": interns.append(employee) return interns def pay_employee(self, employee: Employee) -> None: """Pay an employee.""" if isinstance(employee, SalariedEmployee): print( f"Paying employee {employee.name} a monthly salary of ${employee.monthly_salary}." ) elif isinstance(employee, HourlyEmployee): print( f"Paying employee {employee.name} a hourly rate of \ ${employee.hourly_rate} for {employee.amount} hours." ) def main() -> None: """Main function.""" company = Company() company.add_employee(SalariedEmployee(name="Louis", role="manager")) company.add_employee(HourlyEmployee(name="Brenda", role="president")) company.add_employee(HourlyEmployee(name="Tim", role="intern")) print(company.find_vice_presidents()) print(company.find_managers()) print(company.find_interns()) company.pay_employee(company.employees[0]) company.employees[0].take_a_holiday(False) if __name__ == "__main__": main()
31.130081
98
0.610342
3,054
0.797597
0
0
1,492
0.389658
0
0
1,261
0.329329
7f4616f095924fa5eac33a11190968db43cccd4e
261
py
Python
python/decorator/function_transform_with_decorator.py
zeroam/TIL
43e3573be44c7f7aa4600ff8a34e99a65cbdc5d1
[ "MIT" ]
null
null
null
python/decorator/function_transform_with_decorator.py
zeroam/TIL
43e3573be44c7f7aa4600ff8a34e99a65cbdc5d1
[ "MIT" ]
null
null
null
python/decorator/function_transform_with_decorator.py
zeroam/TIL
43e3573be44c7f7aa4600ff8a34e99a65cbdc5d1
[ "MIT" ]
null
null
null
def debug_transformer(func): def wrapper(): print(f'Function `{func.__name__}` called') func() print(f'Function `{func.__name__}` finished') return wrapper @debug_transformer def walkout(): print('Bye Felicia') walkout()
17.4
53
0.636015
0
0
0
0
58
0.222222
0
0
87
0.333333
7f46b98db9b94c982905dfaf5e2079f45ce4a9a6
850
py
Python
logging_context/helpers.py
vuonglv1612/logging-context
beef9f11494d729bbb3f429fdd7cf69a29e0c527
[ "MIT" ]
null
null
null
logging_context/helpers.py
vuonglv1612/logging-context
beef9f11494d729bbb3f429fdd7cf69a29e0c527
[ "MIT" ]
null
null
null
logging_context/helpers.py
vuonglv1612/logging-context
beef9f11494d729bbb3f429fdd7cf69a29e0c527
[ "MIT" ]
null
null
null
import functools import logging from typing import Callable from logging_context.context.base import BaseContext from .context import get_logging_context def context_logging_factory(record_factory: Callable, context: BaseContext) -> Callable: @functools.wraps(record_factory) def wrapper(*args, **kwargs): record = record_factory(*args, **kwargs) record.context = str(context) return record return wrapper def setup_logging_context(context: BaseContext = None) -> None: if not context: context = get_logging_context() current_factory = logging.getLogRecordFactory() test_record = current_factory(__name__, logging.DEBUG, __file__, 0, "", [], None) if not hasattr(test_record, "context"): logging.setLogRecordFactory(context_logging_factory(current_factory, context=context))
31.481481
94
0.742353
0
0
0
0
175
0.205882
0
0
11
0.012941
7f4786e590d0a9418a3d92cb5ddc03d945909da4
6,840
py
Python
script/proxycheck/check.py
kenshinx/rps
3d141056f3512598525430ecc9ddb1ee79b887cf
[ "MIT" ]
6
2017-06-20T09:44:03.000Z
2018-07-28T06:44:10.000Z
script/proxycheck/check.py
kenshinx/rps
3d141056f3512598525430ecc9ddb1ee79b887cf
[ "MIT" ]
null
null
null
script/proxycheck/check.py
kenshinx/rps
3d141056f3512598525430ecc9ddb1ee79b887cf
[ "MIT" ]
3
2017-09-23T16:48:18.000Z
2018-05-26T19:12:12.000Z
#!/usr/bin/env python import re import sys import time import logging import asyncore import optparse from datetime import datetime import schedule from pymongo import MongoReplicaSetClient, MongoClient from async_s5 import AsyncSocks5Client from async_http import AsyncHTTPClient from async_http_tunnel import AsyncHTTPTunnelClient from conf import (MONGO_USERNAME, MONGO_PASSWORD, MONGO_HOST, MONGO_REPLICA_SET, LOG_LEVEL, LOG_FORMAT) class BaseCheck(object): HTTP_PATTERN = re.compile("^HTTP\/1\.\d ([0-9]{3}) .*") HTTP_HOST = "www.baidu.com" HTTP_PORT = 80 HTTP_PAYLOAD = "domain=.baidu.com" WHOIS_HOST = "133.130.126.119" WHOIS_PORT = 43 WHOIS_PAYLOAD = "google.com" def __init__(self, db, client, payload_proto, concurrency): self.dbname = db self.client =client self.payload_proto = payload_proto self.concurrency = concurrency self.conn = self.createConn() @property def db(self): if self.dbname == "rps": return self.conn.rps elif self.dbname == "rps_test": return self.conn.rps_test else: raise Exception("Invalid DataBase <%s>" %self.dbname) def createConn(self): addr = "mongodb://%s:%s@%s" %(MONGO_USERNAME, MONGO_PASSWORD, MONGO_HOST) conn = MongoClient(addr, replicaSet = MONGO_REPLICA_SET) return conn def getProxyList(self): raise NotImplemetedError() def updateProxy(self): raise NotImplemetedError() def checkHTTPResp(self, resp): if not resp or resp == " ": return False try: code = self.HTTP_PATTERN.findall(resp)[0] except Exception, e: return False if code != "200": return False return self.HTTP_PAYLOAD in resp def checkWhoisResp(self, resp, proxy_ip): if not resp or resp == " ": return False return (resp == "%s:%s:%s" %(self.WHOIS_PAYLOAD, proxy_ip, self.WHOIS_PAYLOAD)) def check(self, client, host, port): resp = client.buffer.getvalue() client.buffer.close() if self.payload_proto == "http": is_ok = self.checkHTTPResp(resp) elif self.payload_proto == "whois": is_ok = self.checkWhoisResp(resp, host) else: raise Exception("unsupport payload protocol '%s'" %self.payload_proto) return is_ok def afterLoop(self, clients): for c in clients: if self.check(c, c.host, c.port): print "%s:%d is ok" %(c.host, c.port) self.updateProxy(c.host, c.port, True) else: print "%s:%d is bad" %(c.host, c.port) self.updateProxy(c.host, c.port, False) def run(self): clients = [] socket_map = {} for r in self.getProxyList(): try: if self.payload_proto == "whois": clients.append(self.client(r["host"], r["port"], self.WHOIS_HOST, self.WHOIS_PORT, "whois", socket_map)) else: clients.append(self.client(r["host"], r["port"], self.HTTP_HOST, self.HTTP_PORT, "http", socket_map)) except Exception, e: continue if len(clients) >= self.concurrency: asyncore.loop(timeout=5, use_poll=True, map=socket_map) self.afterLoop(clients) clients = [] socket_map = {} if len(clients) < self.concurrency: asyncore.loop(timeout=5, use_poll=True, map=socket_map) self.afterLoop(clients) class HTTPProxyCheck(BaseCheck): def __init__(self, db, payload_proto, concurrency): BaseCheck.__init__(self, db, AsyncHTTPClient, "http", concurrency) def getProxyList(self): for r in self.db.http.find(): yield r def updateProxy(self, host, port, enable): self.db.http.update({"host":host, "port":port}, {"$set":{"enable":int(enable), "last_check":datetime.now()}}) class HTTPTunnelProxyCheck(BaseCheck): def __init__(self, db, payload_proto, concurrency): BaseCheck.__init__(self, db, AsyncHTTPTunnelClient, payload_proto, concurrency) def getProxyList(self): for r in self.db.http_tunnel.find({"source":{"$in":["nd", "nf"]}}): yield r def updateProxy(self, host, port, enable): self.db.http_tunnel.update({"host":host, "port":port}, {"$set":{"enable":int(enable), "last_check":datetime.now()}}) class Socks5ProxyCheck(BaseCheck): def __init__(self, db, payload_proto, concurrency): BaseCheck.__init__(self, db, AsyncSocks5Client, payload_proto, concurrency) def getProxyList(self): for r in self.db.socks5.find({"source":{"$in":["nd", "nf"]}}): yield r def updateProxy(self, host, port, enable): self.db.socks5.update({"host":host, "port":port}, {"$set":{"enable":int(enable), "last_check":datetime.now()}}) def usage(): return "Usage: %s <http|http_tunnel|socks5> [options]" %(sys.argv[0]) if __name__ == "__main__": parser = optparse.OptionParser(usage= usage()) parser.add_option("-d", "--database", action="store", dest="db", type="string", default="rps_test", help="[rps|rps_test]") parser.add_option("-c", "--concurrency", action="store", dest="concurrency", type="int", default=1000) parser.add_option("-e", "--every", action="store", dest="every", type="int", default=30, help="run check every %default minutes") parser.add_option("-p", "--payload_proto", action="store", dest="payload_proto", type="string", default="whois", help="payload protocol default be whois for http_tunnel \ and socks5 proxy, http for http proxy") options, args = parser.parse_args() logging.basicConfig(level=LOG_LEVEL, format=LOG_FORMAT) if len(sys.argv) < 2: print usage() sys.exit(1) protocol = sys.argv[1] if protocol == "http_tunnel": checker = HTTPTunnelProxyCheck(options.db, options.payload_proto, options.concurrency) elif protocol == "http": checker = HTTPProxyCheck(options.db, options.payload_proto, options.concurrency) elif protocol == "socks5": checker = Socks5ProxyCheck(options.db, options.payload_proto, options.concurrency) else: print usage() sys.exit(1) schedule.every(options.every).minutes.do(checker.run).run() while True: schedule.run_pending() time.sleep(1)
31.232877
100
0.594591
4,738
0.69269
314
0.045906
251
0.036696
0
0
894
0.130702
7f48ff2758ca1da69efc97e333be34fa3b8a2d3b
16,438
py
Python
Notebook/KL Divergence Loop.py
yxie367/Mushrooms
9b0fc5dfb6ab20c7c0c4146bff0d04de561302c5
[ "MIT" ]
null
null
null
Notebook/KL Divergence Loop.py
yxie367/Mushrooms
9b0fc5dfb6ab20c7c0c4146bff0d04de561302c5
[ "MIT" ]
null
null
null
Notebook/KL Divergence Loop.py
yxie367/Mushrooms
9b0fc5dfb6ab20c7c0c4146bff0d04de561302c5
[ "MIT" ]
null
null
null
# %% [Algorithm 1c Loop] # # MUSHROOMS # %% [markdown] # ## Binary Classification # %% [markdown] # ### Imports # %% import os import pandas as pd import numpy as np import tensorflow as tf from tensorflow import keras import matplotlib.pyplot as plt # %% [markdown] # ### Load Data dataset = pd.read_csv(r"C:\Users\yxie367\Documents\GitHub\Mushrooms\DATA\mushrooms.csv") #dataset = pd.read_csv(r"C:\Users\xieya\Documents\GitHub\Mushrooms\DATA\mushrooms.csv") # %% [markdown] # ### View Data and Informations # %% dataset.head() # %% dataset.info() # %% edible, poisonous = dataset['class'].value_counts() # print("Edible:\t ", edible,"\nPoisonous:", poisonous) # %% # Categorical to numerical labels = {'e': 0, 'p': 1} dataset['class'].replace(labels, inplace=True) edible, poisonous = dataset['class'].value_counts() #print("0 - Edible: ", edible,"\n1 - Poisonous:", poisonous) # %% [markdown] # # NN1 Stalk Root - Rooted (r) # %% [markdown] # ### Split Dataset # %% [markdown] # #### Get the Labels # %% X, y = dataset.drop('class', axis=1), dataset['class'].copy() #print("X:",X.shape,"\ny:",y.shape) # %% [markdown] # #### Train Set and Test Set total_error_1 = 0 total_error_2 = 0 total_error_comb = 0 randnum = np.arange(2,44,4) num_trials = len(randnum) record = "" wrong_record = "" run = 1 # %% Data cleaning from sklearn.model_selection import train_test_split X_white = pd.DataFrame() X_not_white = pd.DataFrame() y_white = pd.Series(dtype='float64') y_not_white = pd.Series(dtype='float64') for i in range(0,len(X)): if X.loc[i,"stalk-root"] == "r": X_white = X_white.append(X.iloc[i,:]) y_white = y_white.append(pd.Series(y.iloc[i])) else: X_not_white = X_not_white.append(X.iloc[i,:]) y_not_white = y_not_white.append(pd.Series(y.iloc[i])) # %% Data cleaning pt2 X_green = pd.DataFrame() X_not_green = pd.DataFrame() y_green = pd.Series(dtype='float64') y_not_green = pd.Series(dtype='float64') for i in range(0,len(X)): if X.loc[i,"odor"] == "a": X_green = X_green.append(X.iloc[i,:]) y_green = y_green.append(pd.Series(y.iloc[i])) else: X_not_green = X_not_green.append(X.iloc[i,:]) y_not_green = y_not_green.append(pd.Series(y.iloc[i])) # %% for j in randnum: X_train_not_white, X_test_not_white, y_train_not_white, y_test_not_white = train_test_split(X_not_white, y_not_white, test_size=1-(6905/(8124-len(X_white))), random_state=j) X_train_not_green, X_test_not_green, y_train_not_green, y_test_not_green = train_test_split(X_not_green, y_not_green, test_size=1-(6905/(8124-len(X_green))), random_state=j) X_train_green = (X_train_not_green) y_train_green = (y_train_not_green) X_train_white = (X_train_not_white) y_train_white = (y_train_not_white) # %% from sklearn.utils import shuffle X_train_full1 = shuffle(X_train_white, random_state=j) X_test = shuffle(X, random_state=j).iloc[4000:8000] y_train_full1 = shuffle(y_train_white, random_state=j) y_test = shuffle(y, random_state=j).iloc[4000:8000] # %% [markdown] # #### Validation Set # %% X_valid1, X_train1 = X_train_full1[:500], X_train_full1[500:] y_valid1, y_train1 = y_train_full1[:500], y_train_full1[500:] # print("X_train:", X_train1.shape[0], "y_train", y_train1.shape[0]) # print("X_valid: ", X_valid1.shape[0], "y_valid ", y_valid1.shape[0]) # print("X_test: ", X_test.shape[0], "y_test ", X_test.shape[0]) # %% [markdown] # ### Prepare the Data # %% [markdown] # #### Data Transformation # %% from sklearn.pipeline import Pipeline from sklearn.preprocessing import OrdinalEncoder from sklearn.compose import ColumnTransformer cat_attr_pipeline = Pipeline([ ('encoder', OrdinalEncoder()) ]) cols = list(X) pipeline = ColumnTransformer([ ('cat_attr_pipeline', cat_attr_pipeline, cols) ]) X_train1 = pipeline.fit_transform(X_train1) X_valid1 = pipeline.fit_transform(X_valid1) X_test1 = pipeline.fit_transform(X_test) # %% [markdown] # ### Neural Network # %% [markdown] # #### Model # %% from tensorflow.keras.models import Sequential from tensorflow.keras.layers import InputLayer, Dense # %% # tf.random.set_seed(j) tf.random.set_random_seed(j) # %% model1 = Sequential([ InputLayer(input_shape=(22,)), # input layer Dense(45, activation='relu'), # hidden layer Dense(1, activation='sigmoid') # output layer ]) # %% #model1.summary() # %% [markdown] # #### Compile the Model # %% model1.compile(loss='binary_crossentropy', optimizer='sgd', metrics=['accuracy']) # %% [markdown] # #### Prepare Callbacks # %% from tensorflow.keras.callbacks import ModelCheckpoint, EarlyStopping checkpoint_cb = ModelCheckpoint('../SavedModels/best_model.h5', save_best_only=True) early_stopping_cb = EarlyStopping(patience=3, restore_best_weights=True) # %% [markdown] # ### Training # %% train_model1 = model1.fit(X_train1, y_train1, epochs=100, validation_data=(X_valid1, y_valid1), callbacks=[checkpoint_cb, early_stopping_cb]) # %% [markdown] # ### Evaluate the Best Model on Test Set # %% results1 = model1.evaluate(X_test1, y_test) # print("test loss, test acc:", results1) # %% [markdown] # ### Make Some Predictions # %% X_new1 = X_test1[:5] y_prob1 = model1.predict(X_new1) # print(y_prob.round(3)) # %% y_pred1 = (model1.predict(X_new1) > 0.5).astype("int32") # print(y_pred) y_test_pred = (model1.predict(X_test1) > 0.5).astype("int32") # %% [markdown] # ## KL Divergence # %% # X_new = X_test[:5] X_df1 = pd.DataFrame(model1.predict(X_test1)) y_test_pred1 = pd.DataFrame(y_test_pred).reset_index(drop=True) X_df1 = pd.concat([X_df1, y_test_pred1], axis=1) y_test1 = y_test.reset_index(drop=True) X_df1 = pd.concat([X_df1, y_test1], axis=1) X_df1.columns = ["X_pred","y_pred","y_actual"] #print(X_df1) # %% import math table1 = pd.DataFrame(columns=["KL_div","abs_distance","correctness"]) for i in range(0,len(X_df1)): # KL divergence p = X_df1.loc[i,"X_pred"] try: kl = -(p*math.log(p) + (1-p)*math.log(1-p)) except: kl = 0 table1.loc[i,"KL_div"] = kl # absolute distance abs_dist = 2*abs(0.5-p) table1.loc[i,"abs_distance"] = abs_dist # correctness y_pred1 = X_df1.loc[i,"y_pred"] y_act1 = X_df1.loc[i,"y_actual"] if y_pred1 == y_act1: table1.loc[i,"correctness"] = 1 # correct prediction else: table1.loc[i,"correctness"] = 0 # wrong prediction table1.loc[i,"y_pred"] = y_pred1 #print(table1) # %% table1["count"] = 1 correctness1 = table1[["correctness","count"]].groupby(pd.cut(table1["KL_div"], np.arange(0, 0.8, 0.1))).apply(sum) correctness1["percent"] = 100*(correctness1["correctness"]/correctness1["count"]) #print(correctness1) # %% index = [] for i in (correctness1.index): index.append(str(i)) plt.bar(index,correctness1["percent"], width=0.7) for index,data in enumerate(correctness1["percent"]): plt.text(x=index , y =data+1 , s=f"{round(data,2)}" , fontdict=dict(fontsize=15),ha='center') plt.ylim(0,120) plt.xlabel("KL Divergence") plt.ylabel("% correct") # %% [markdown] # ### Confidence # %% kl1 = table1[["correctness","count"]].groupby(pd.cut(table1["KL_div"], np.arange(0, 0.80, 0.1))).apply(sum) kl1["percent"] = (kl1["correctness"]/kl1["count"]) kl1.dropna(inplace=True) plt.scatter(np.arange(0, 0.70, 0.1), kl1["percent"]) plt.xlabel("KL Divergence") plt.ylabel("% correct") # %% # Linear Regression from sklearn.linear_model import LinearRegression x_reg1 = np.arange(0, 0.70, 0.1).reshape((-1, 1)) y_reg1 = kl1["percent"] reg_model1 = LinearRegression().fit(x_reg1,y_reg1) # %% # print('intercept(alpha):', reg_model1.intercept_) # print('slope(theta):', reg_model1.coef_) # %% [markdown] # # NN2 Odor - Almond (a) # %% [markdown] # #### Train Set and Test Set # %% from sklearn.utils import shuffle X_train_full2 = shuffle(X_train_green, random_state=j) # X_test2 = shuffle(X_test_green, random_state=j) y_train_full2 = shuffle(y_train_green, random_state=j) # y_test2 = shuffle(y_test_green, random_state=j) # %% [markdown] # #### Validation Set # %% X_valid2, X_train2 = X_train_full2[:500], X_train_full2[500:] y_valid2, y_train2 = y_train_full2[:500], y_train_full2[500:] # print("X_train:", X_train2.shape[0], "y_train", y_train2.shape[0]) # print("X_valid: ", X_valid2.shape[0], "y_valid ", y_valid2.shape[0]) # print("X_test: ", X_test.shape[0], "y_test ", X_test.shape[0]) # %% [markdown] # ### Prepare the Data # %% [markdown] # #### Data Transformation # %% from sklearn.pipeline import Pipeline from sklearn.preprocessing import OrdinalEncoder from sklearn.compose import ColumnTransformer cat_attr_pipeline = Pipeline([ ('encoder', OrdinalEncoder()) ]) cols = list(X) pipeline = ColumnTransformer([ ('cat_attr_pipeline', cat_attr_pipeline, cols) ]) X_train2 = pipeline.fit_transform(X_train2) X_valid2 = pipeline.fit_transform(X_valid2) X_test2 = pipeline.fit_transform(X_test) y_test2 = y_test # %% [markdown] # ### Neural Network # %% [markdown] # #### Model # %% from tensorflow.keras.models import Sequential from tensorflow.keras.layers import InputLayer, Dense tf.random.set_random_seed(j) # %% model2 = Sequential([ InputLayer(input_shape=(22,)), # input layer Dense(45, activation='relu'), # hidden layer Dense(1, activation='sigmoid') # output layer ]) # %% #model2.summary() # %% [markdown] # #### Compile the Model # %% model2.compile(loss='binary_crossentropy', optimizer='sgd', metrics=['accuracy']) # %% [markdown] # #### Prepare Callbacks # %% from tensorflow.keras.callbacks import ModelCheckpoint, EarlyStopping checkpoint_cb = ModelCheckpoint('../SavedModels/best_model.h5', save_best_only=True) early_stopping_cb = EarlyStopping(patience=3, restore_best_weights=True) # %% [markdown] # ### Training # %% train_model2 = model2.fit(X_train2, y_train2, epochs=100, validation_data=(X_valid2, y_valid2), callbacks=[checkpoint_cb, early_stopping_cb]) # %% [markdown] # ### Evaluate the Best Model on Test Set # %% results2 = model2.evaluate(X_test2, y_test2) # print("test loss, test acc:", results2) # %% [markdown] # ### Make Some Predictions # %% # y_pred2 = (model2.predict(X_new2) > 0.5).astype("int32") # print(y_pred2) y_test_pred2 = (model2.predict(X_test2) > 0.5).astype("int32") # %% [markdown] # ## KL Divergence # %% # X_new = X_test[:5] X_df2 = pd.DataFrame(model2.predict(X_test2)) y_test_pred2 = pd.DataFrame(y_test_pred2).reset_index(drop=True) X_df2 = pd.concat([X_df2, y_test_pred2], axis=1) y_test2 = y_test2.reset_index(drop=True) X_df2 = pd.concat([X_df2, y_test2], axis=1) X_df2.columns = ["X_pred","y_pred","y_actual"] #print(X_df2) # %% import math table2 = pd.DataFrame(columns=["KL_div","abs_distance","y_pred","correctness"]) for i in range(0,len(X_df2)): # KL divergence p = X_df2.loc[i,"X_pred"] if p > 0: kl = -(p*math.log(p) + (1-p)*math.log(1-p)) else: kl = 1 table2.loc[i,"KL_div"] = kl # absolute distance abs_dist = 2*abs(0.5-p) table2.loc[i,"abs_distance"] = abs_dist # correctness y_pred = X_df2.loc[i,"y_pred"] y_act = X_df2.loc[i,"y_actual"] if y_pred == y_act: table2.loc[i,"correctness"] = 1 # correct prediction else: table2.loc[i,"correctness"] = 0 # wrong prediction table2.loc[i,"y_pred"] = y_pred #print(table2) # %% table2["count"] = 1 correctness2 = table2[["correctness","count"]].groupby(pd.cut(table2["KL_div"], np.arange(0, 0.8, 0.1))).apply(sum) correctness2["percent"] = 100*(correctness2["correctness"]/correctness2["count"]) #print(correctness2) # %% index = [] for i in (correctness2.index): index.append(str(i)) plt.bar(index,correctness2["percent"], width=0.7) for index,data in enumerate(correctness2["percent"]): plt.text(x=index , y =data+1 , s=f"{round(data,2)}" , fontdict=dict(fontsize=15),ha='center') plt.ylim(0,120) plt.xlabel("KL Divergence") plt.ylabel("% correct") # %% [markdown] # ### Confidence # %% kl2 = table2[["correctness","count"]].groupby(pd.cut(table2["KL_div"], np.arange(0, 0.8, 0.1))).apply(sum) kl2["percent"] = (kl2["correctness"]/kl2["count"]) kl2.dropna(inplace=True) plt.scatter(np.arange(0, 0.70, 0.1), kl2["percent"]) # print(kl) # print(np.arange(0, 0.7, 0.05)) # %% # Linear Regression from sklearn.linear_model import LinearRegression x_reg2 = np.arange(0, 0.7, 0.1).reshape((-1, 1)) y_reg2 = kl2["percent"] reg_model2 = LinearRegression().fit(x_reg2,y_reg2) # %% # print('intercept(alpha):', reg_model2.intercept_) # print('slope(theta):', reg_model2.coef_) # %% [markdown] # ## Algorithm C: It = argmax(Ct,i) # %% # Correct answer ans = pd.DataFrame(X_df2["y_actual"]) # NN1 alpha1 = reg_model1.intercept_ theta1 = reg_model1.coef_ # NN2 alpha2 = reg_model2.intercept_ theta2 = reg_model2.coef_ # %% # Creating NN tables nn1 = table1.drop(["abs_distance","correctness"], axis=1) nn1["conf"] = 1 + theta1 * nn1["KL_div"] nn2 = table2.drop(["abs_distance","correctness"], axis=1) nn2["conf"] = 1 + theta2 * nn2["KL_div"] # nn2 # %% # Determing higher confidence NN and choosing that arm for i in range(0,len(nn1)): if nn1.loc[i,"conf"] > nn2.loc[i,"conf"]: ans.loc[i,"y_pred"] = nn1.loc[i,"y_pred"] ans.loc[i,"NN"] = 1 ans.loc[i,"conf"] = nn1.loc[i,"conf"] else: ans.loc[i,"y_pred"] = nn2.loc[i,"y_pred"] ans.loc[i,"NN"] = 2 ans.loc[i,"conf"] = nn2.loc[i,"conf"] # ans # %% [markdown] # #### Comparing performance # %% # NN1 performance cost1 = 0 for i in range(0,len(nn1)): if nn1.loc[i,"y_pred"] != ans.loc[i,"y_actual"]: cost1 += 1 else: pass # NN2 performance cost2 = 0 for i in range(0,len(nn2)): if nn2.loc[i,"y_pred"] != ans.loc[i,"y_actual"]: cost2 += 1 else: pass # Combined performance cost3 = 0 for i in range(0,len(nn1)): nn = ans.loc[i,"NN"] nn_conf = ans.loc[i,"conf"] if ans.loc[i,"y_pred"] != ans.loc[i,"y_actual"]: cost3 += 1 wrong_record = wrong_record + (f"Run:{run} - Wrong NN:{nn}, Conf:{nn_conf}") + "\n" else: pass # %% record = record+(f"Run:{run} - Error count for NN1:{cost1}, NN2:{cost2}, Combined:{cost3}") + "\n" total_error_1 += cost1 total_error_2 += cost2 total_error_comb += cost3 print(f"Run {run} complete!") run+=1 print(record) print(f"Average error count for NN1:{total_error_1/num_trials}, NN2:{total_error_2/num_trials}, Combined:{total_error_comb/num_trials}") #%% # print(wrong_record) # %%
27.673401
177
0.592469
0
0
0
0
0
0
0
0
5,174
0.314758
7f490e0f83f0b93f89c7b7920c449eae9a2ea21b
206
py
Python
galaxydb/__init__.py
alantelles/galaxydb
7eeeaae3c3f79736eade36a720fb1dc816570554
[ "MIT" ]
2
2019-03-15T17:14:16.000Z
2019-03-15T20:47:14.000Z
galaxydb/__init__.py
alantelles/galaxydb
7eeeaae3c3f79736eade36a720fb1dc816570554
[ "MIT" ]
null
null
null
galaxydb/__init__.py
alantelles/galaxydb
7eeeaae3c3f79736eade36a720fb1dc816570554
[ "MIT" ]
null
null
null
from galaxydb.column import Column from galaxydb.scheme import Scheme from galaxydb.logic import Logic from galaxydb.table import Table from galaxydb.constants import * from galaxydb.statics import *
29.428571
35
0.815534
0
0
0
0
0
0
0
0
0
0
7f495918acf00767d9fbeb784d409f5760173565
19,291
py
Python
attic/library/kepler.py
vdods/heisenberg
66921b80c2d035e5f10e0af4d0cec21d5470dbd1
[ "MIT" ]
3
2018-01-04T07:40:14.000Z
2021-02-19T15:27:10.000Z
attic/library/kepler.py
vdods/heisenberg
66921b80c2d035e5f10e0af4d0cec21d5470dbd1
[ "MIT" ]
null
null
null
attic/library/kepler.py
vdods/heisenberg
66921b80c2d035e5f10e0af4d0cec21d5470dbd1
[ "MIT" ]
null
null
null
# NOTE: This changes a/b to produce a floating point approximation of that # ratio, not the integer quotient. For integer quotient, use a//b instead. from __future__ import division import fourier_parameterization import numpy as np import multiindex import symbolic import sympy import tensor # TODO: look at and use https://en.wikipedia.org/wiki/Elliptic_orbit class KeplerProblemSymbolicContext: def __init__ (self, configuration_space_dimension, use_constraint=True): """ Use sympy to define various functions and automatically compute their derivatives, crunching them down to (probably efficient) Python lambda functions. """ assert configuration_space_dimension > 0 self.X = X = configuration_space_dimension # Indicates if the constraint should be used or not. self.use_constraint = use_constraint # q is position q = symbolic.tensor('q', (X,)) # v is velocity v = symbolic.tensor('v', (X,)) # g is gravitational constant g = symbolic.variable('g') # lm is the lagrange multiplier lm = symbolic.variable('lm') # qv is the q and v variables in one array self.qv = qv = np.array(list(q) + list(v)) # P is all variables self.P = P = np.array(list(q) + list(v) + [g, lm]) # U is potential energy # U = -g / sympy.sqrt(np.sum(np.square(q))) U = -1 / sympy.sqrt(np.sum(np.square(q))) # K is kinetic energy -- NOTE: There is unit mass, so the momentum is the same as the velocity. # This fact is used in defining the Hamiltonian vector field. K = np.sum(np.square(v)) / 2 # H is total energy (Hamiltonian) H = K + U # L is the difference in energy (Lagrangian) L = K - U # H_0 is the constant value which defines the constraint (that the Hamiltonian must equal that at all times) self.H_0 = H_0 = -1.8 # This is the constraint. The extra division is used to act as a metric on the lagrange multiplier coordinate. C = (H - H_0)**2 / 2 / 100 # Construct the Hamiltonian vector field of H. dH = symbolic.D(H, qv) # Construct the symplectic form on phase space. omega = np.zeros((2*X,2*X), dtype=np.int) omega[0:X,X:2*X] = np.eye(X,X) omega[X:2*X,0:X] = -np.eye(X,X) # Symplectic gradient of H, aka the Hamiltonian vector field. X_H = tensor.contract('ij,j', omega, dH, dtype=object) # DL = symbolic.D(L, P) # # DH = symbolic.D(H, P) # DC = symbolic.D(C, P) # This is the integrand of the action functional Lambda_integrand = L #+ lm*C # This is the integrand of the first variation of the action DLambda_integrand = symbolic.D(Lambda_integrand, P) # This is the integrand for the constraint functional C_integrand = C # Solving the constrained optimization problem by minimizing the norm squared of DLambda. # DDLambda_integrand = symbolic.D(DLambda_integrand, P) # Obj_integrand = (np.sum(np.square(DLambda_integrand))/2)#.simplify() # DObj_integrand = symbolic.D(Obj_integrand, P) assert not use_constraint Obj_integrand = Lambda_integrand DObj_integrand = DLambda_integrand # print 'Obj_integrand =', Obj_integrand # print '' # print 'DObj_integrand =', DObj_integrand # print '' replacement_d = {'dtype=object':'dtype=float'} # self.L = symbolic.lambdify(L, P, replacement_d=replacement_d) # self.DL = symbolic.lambdify(DL, P, replacement_d=replacement_d) # self.DDL = symbolic.lambdify(DDL, P, replacement_d=replacement_d) # self.H = symbolic.lambdify(H, P, replacement_d=replacement_d) # self.DH = symbolic.lambdify(DH, P, replacement_d=replacement_d) self.H = symbolic.lambdify(H, P, replacement_d=replacement_d) self.X_H = symbolic.lambdify(X_H, qv, replacement_d=replacement_d) self.Lambda_integrand = symbolic.lambdify(Lambda_integrand, P, replacement_d=replacement_d) self.DLambda_integrand = symbolic.lambdify(DLambda_integrand, P, replacement_d=replacement_d) self.Obj_integrand = symbolic.lambdify(Obj_integrand, P, replacement_d=replacement_d) self.DObj_integrand = symbolic.lambdify(DObj_integrand, P, replacement_d=replacement_d) self.C_integrand = symbolic.lambdify(C_integrand, P, replacement_d=replacement_d) class KeplerProblemContext(KeplerProblemSymbolicContext): def __init__ (self, closed_time_interval, frequencies, use_constraint=True): # Call superclass constructor. KeplerProblemSymbolicContext.__init__(self, 2, use_constraint=use_constraint) X = self.X # Number of derivatives in phase space (2, i.e. position and velocity) self.D = D = 2 self.fourier_curve_parameterization = fourier_parameterization.Planar(frequencies, np.array(range(D)), closed_time_interval) # 2 indicates that there are two coefficients for each (cos,sin) pair self.position_velocity_shape = position_velocity_shape = (X,D) self.fourier_coefficients_shape = fourier_coefficients_shape = self.fourier_curve_parameterization.fourier_coefficients_shape #(X,F,2) self.gravitational_constant_shape = gravitational_constant_shape = (1,) self.lagrange_multipliers_shape = lagrange_multipliers_shape = (1,) self.time_domain_parameter_count = time_domain_parameter_count = multiindex.prod(position_velocity_shape) + multiindex.prod(gravitational_constant_shape) + multiindex.prod(lagrange_multipliers_shape) self.frequency_domain_parameter_count = frequency_domain_parameter_count = multiindex.prod(fourier_coefficients_shape) + multiindex.prod(gravitational_constant_shape) + multiindex.prod(lagrange_multipliers_shape) def make_frequency_domain_parameters_and_views (self): frequency_domain_parameters = np.zeros((self.frequency_domain_parameter_count,), dtype=float) # Define names for the views. Note that when assigning into the views, the # [:] notation is necessary, otherwise el_form_fourier_coefficients_part and # el_form_lagrange_multipliers_part will be reassigned to be different references # altogether, and will no longer be views into euler_lagrange_form_buffer. fd_fc,fd_g,fd_lm = self.frequency_domain_views(frequency_domain_parameters) return frequency_domain_parameters,fd_fc,fd_g,fd_lm def time_domain_views (self, time_domain_parameters): """ Returns a tuple (td_qv,td_g,td_lm), where each of the elements are views into: td_qv[x,d] : The position and velocity tensor. The x index indexes the configuration space (i.e. x,y,z axis) while the d index indexes the order of derivative (i.e. 0 is position, 1 is velocity). td_g[:] : The scalar gravitational constant. td_lm[:] : The Lagrange multiplier. Note that slice notation must be used to assign to these views, otherwise a new, unrelated local variable will be declared. """ td_qv_count = multiindex.prod(self.position_velocity_shape) td_g_count = multiindex.prod(self.gravitational_constant_shape) td_lm_count = multiindex.prod(self.lagrange_multipliers_shape) assert time_domain_parameters.shape == (self.time_domain_parameter_count,) td_qv = time_domain_parameters[:td_qv_count].reshape(self.position_velocity_shape, order='F') td_g = time_domain_parameters[td_qv_count:td_qv_count+td_g_count].reshape(self.gravitational_constant_shape, order='F') td_lm = time_domain_parameters[td_qv_count+td_g_count:].reshape(self.lagrange_multipliers_shape, order='F') return td_qv,td_g,td_lm def frequency_domain_views (self, frequency_domain_parameters): """ Returns a tuple (fd_fc,fd_g,fd_lm), where each of the elements are views into: fd_fc[x,f,c] : The Fourier coefficients of the curve. The x index indexes the configuration space (i.e. x,y,z axis), the f index denotes the frequency, while c indexes which of cos or sin the coefficient is for (0 for cos, 1 for sin). fd_g[:] : The scalar gravitational constant. fd_lm[:] : The Lagrange multiplier. Note that slice notation must be used to assign to these views, otherwise a new, unrelated local variable will be declared. """ fd_fc_count = multiindex.prod(self.fourier_coefficients_shape) fd_g_count = multiindex.prod(self.gravitational_constant_shape) fd_lm_count = multiindex.prod(self.lagrange_multipliers_shape) fd_fc = frequency_domain_parameters[:fd_fc_count].reshape(self.fourier_coefficients_shape, order='F') fd_g = frequency_domain_parameters[fd_fc_count:fd_fc_count+fd_g_count].reshape(self.gravitational_constant_shape, order='F') fd_lm = frequency_domain_parameters[fd_fc_count+fd_g_count:].reshape(self.lagrange_multipliers_shape, order='F') return fd_fc,fd_g,fd_lm def curve_at_t (self, t, fc): return np.einsum('dfxc,fc->xd', self.fourier_curve_parameterization.fourier_tensor[t,:,:,:], fc) def curve (self, fc): return np.einsum('tdfxc,fc->txd', self.fourier_curve_parameterization.fourier_tensor, fc) def time_domain_variation_pullback_at_t (self, time_domain_parameter_variation, t): """Uses the Fourier-transform-parameterization of the curve to pull back a qv-g-lm vector to be a fc-g-lm vector.""" assert time_domain_parameter_variation.shape == (self.time_domain_parameter_count,) td_qv,td_g,td_lm = self.time_domain_views(time_domain_parameter_variation) retval = np.ndarray((self.frequency_domain_parameter_count,), dtype=float) fd_fc,fd_g,fd_lm = self.frequency_domain_views(retval) fd_fc[:] = np.einsum('xd,dfxc->fc', td_qv, self.fourier_curve_parameterization.fourier_tensor[t,:,:,:,:]) fd_g[:] = td_g fd_lm[:] = td_lm return retval def time_domain_parameters_at_t (self, t, frequency_domain_parameters): retval = np.ndarray((self.time_domain_parameter_count,), dtype=float) td_qv,td_g,td_lm = self.time_domain_views(retval) fd_fc,fd_g,fd_lm = self.frequency_domain_views(frequency_domain_parameters) td_qv[:] = self.curve_at_t(t, fd_fc) td_g[:] = fd_g td_lm[:] = fd_lm return retval def Lambda (self, frequency_domain_parameters): return np.dot( self.fourier_curve_parameterization.half_open_time_interval_deltas, np.fromiter(( self.Lambda_integrand(self.time_domain_parameters_at_t(t, frequency_domain_parameters)) for t in xrange(self.fourier_curve_parameterization.T) ), float, count=self.fourier_curve_parameterization.T) ) def DLambda_at_time (self, t, frequency_domain_parameters): return self.time_domain_variation_pullback_at_t(self.DLambda_integrand(self.time_domain_parameters_at_t(t, frequency_domain_parameters)), t) def DLambda (self, frequency_domain_parameters, batch_t_v=None): if batch_t_v is None: batch_t_v = xrange(self.fourier_curve_parameterization.T) batch_size = self.fourier_curve_parameterization.T else: batch_size = len(batch_t_v) return sum(self.fourier_curve_parameterization.half_open_time_interval_deltas[t]*self.DLambda_at_time(t,frequency_domain_parameters) for t in batch_t_v) def Obj (self, frequency_domain_parameters): return np.dot( self.fourier_curve_parameterization.half_open_time_interval_deltas, np.fromiter(( self.Obj_integrand(self.time_domain_parameters_at_t(t, frequency_domain_parameters)) for t in xrange(self.fourier_curve_parameterization.T) ), float, count=self.fourier_curve_parameterization.T) ) def DObj_at_time (self, t, frequency_domain_parameters): return self.time_domain_variation_pullback_at_t(self.DObj_integrand(self.time_domain_parameters_at_t(t, frequency_domain_parameters)), t) def DObj (self, frequency_domain_parameters, batch_t_v=None): if batch_t_v is None: batch_t_v = xrange(self.fourier_curve_parameterization.T) batch_size = self.fourier_curve_parameterization.T else: batch_size = len(batch_t_v) return sum(self.fourier_curve_parameterization.half_open_time_interval_deltas[t]*self.DObj_at_time(t,frequency_domain_parameters) for t in batch_t_v) def C (self, frequency_domain_parameters): return np.dot( self.fourier_curve_parameterization.half_open_time_interval_deltas, np.fromiter(( self.C_integrand(self.time_domain_parameters_at_t(t, frequency_domain_parameters)) for t in xrange(self.fourier_curve_parameterization.T) ), float, count=self.fourier_curve_parameterization.T) ) if __name__ == '__main__': import matplotlib.pyplot as plt import polynomial import scipy.integrate import scipy.signal import warnings warnings.filterwarnings('ignore', module='matplotlib') kpsc = KeplerProblemSymbolicContext(2, use_constraint=False) time = np.linspace(0.0, 6.0, 20000) qv_0 = np.array([1.5, 0.0, 0.0, 0.5]) qv = scipy.integrate.odeint(lambda qv,t:kpsc.X_H(qv), qv_0, time) # TODO: Use distance squared, then fit a parabola near the min and solve # for a better approximation of the min using subsample accuracy. jet_dist_squared = np.sum(np.square(qv - qv_0), axis=1) local_min_index_v = filter(lambda i:jet_dist_squared[i-1] > jet_dist_squared[i] and jet_dist_squared[i] < jet_dist_squared[i+1], xrange(1,len(jet_dist_squared)-2)) print('locally minimizing jet-distances-squared:') for local_min_index in local_min_index_v: print(' index: {0:3}, time: {1:17}, jet_dist_squared: {2:17}'.format(local_min_index, time[local_min_index], jet_dist_squared[local_min_index])) assert len(local_min_index_v) > 0 assert local_min_index_v[0] > 0 estimated_period_time_index = local_min_index_v[0] assert 5 < estimated_period_time_index < len(time)-5 if True: # Subtracting the center of the time window is necessary for the polynomial fit to be numerically stable. time_offset = time[estimated_period_time_index] time_window = time[estimated_period_time_index-5:estimated_period_time_index+6] - time_offset jet_dist_squared_window = jet_dist_squared[estimated_period_time_index-5:estimated_period_time_index+6] samples = np.vstack((time_window, jet_dist_squared_window)).T # Fit a quadratic polynomial coefficients = polynomial.fit(samples, 2) quadratically_approximated = np.vectorize(polynomial.python_function_from_coefficients(coefficients))(time_window) max_abs_approximation_error = np.max(np.abs(quadratically_approximated - jet_dist_squared_window)) print 'max_abs_approximation_error for jet_dist_squared near minimum:', max_abs_approximation_error assert coefficients[2] > 0.0 # Solve for the critical point, adding back in the time offset that was subtracted. estimated_period = -0.5 * coefficients[1] / coefficients[2] + time_offset print 'estimated_period:', estimated_period # Save the old time for plotting. old_time = time # Re-run the ODE integrator using the estimated period. time = np.linspace(0.0, estimated_period, 10001) # qv_0 is unchanged. qv = scipy.integrate.odeint(lambda qv,t:kpsc.X_H(qv), qv_0, time) # Re-sample time and qv to be sparser. time = time[::10] assert len(time) == 1001 qv = qv[::10,:] assert qv.shape == (1001,4) qv = qv[:-1,:] assert qv.shape == (1000,4) # estimated_period = time[estimated_period_time_index] H_v = np.apply_along_axis(kpsc.H, 1, np.hstack((qv, np.zeros((qv.shape[0],2), dtype=float)))) row_count = 2 col_count = 3 fig,axes = plt.subplots(row_count, col_count, squeeze=False, figsize=(8*col_count,8*row_count)) axis = axes[0][0] axis.set_title('position') axis.scatter(qv[:,0], qv[:,1], s=1) axis.set_aspect('equal') axis.scatter([0], [0], color='black') axis = axes[0][1] axis.set_title('velocity') axis.scatter(qv[:,2], qv[:,3], s=1) axis.set_aspect('equal') axis.scatter([0], [0], color='black') axis = axes[1][0] axis.set_title('jet distance from initial condition\nestimated period: {0}'.format(estimated_period)) for local_min_index in local_min_index_v: axis.axvline(old_time[local_min_index]) axis.plot(old_time, jet_dist_squared) axis = axes[1][1] axis.set_title('Hamiltonian w.r.t. time\nmin-to-max range: {0}'.format(np.max(H_v)-np.min(H_v))) axis.plot(time[:-1], H_v) frequencies = np.linspace(-40, 40, 40+40+1, dtype=int) derivatives = np.array([0]) # fp = fourier_parameterization.Planar(frequencies, derivatives, time[:estimated_period_time_index+1]) # fc = np.einsum('fctx,tx->fc', fp.inverse_fourier_tensor, qv[:estimated_period_time_index,0:2]) fp = fourier_parameterization.Planar(frequencies, derivatives, time) fc = np.einsum('fctx,tx->fc', fp.inverse_fourier_tensor, qv[:,0:2]) pickle_filename = 'kepler.pickle' with open(pickle_filename, 'wb') as f: import pickle pickle.dump( { 'frequencies':fp.frequencies, 'period':fp.period, 'fourier_coefficient_tensor':fc }, f ) print 'wrote "{0}"'.format(pickle_filename) reconstructed_q = np.einsum('tdfxc,fc->dtx', fp.fourier_tensor, fc) assert reconstructed_q.shape[0] == 1 reconstructed_q = reconstructed_q[0,:,:] max_expected_error = 1.0e-3 max_reconstruction_errors = np.max(np.abs(reconstructed_q-qv[:,0:2]), axis=0) print 'max_reconstruction_errors:', max_reconstruction_errors if max_expected_error is not None: assert np.all(max_reconstruction_errors <= max_expected_error), 'at least one component of max_reconstruction_errors ({0}) exceeded max_expected_error ({1})'.format(max_reconstruction_errors, max_expected_error) axis = axes[0][2] axis.set_title('reconstructed position\nmax reconstruction error: {0}'.format(np.max(max_reconstruction_errors))) axis.plot(qv[:,0], qv[:,1], lw=5, color='green', alpha=0.2) axis.scatter(reconstructed_q[:,0], reconstructed_q[:,1], s=1) axis.set_aspect('equal') axis.scatter([0], [0], color='black') axis = axes[1][2] axis.set_title('log abs of Fourier coefficients') axis.semilogy(fp.frequencies, np.linalg.norm(fc, axis=1), 'o') axis.semilogy(fp.frequencies, np.linalg.norm(fc, axis=1), lw=5, alpha=0.2) fig.tight_layout() filename = 'kepler.test.png' plt.savefig(filename) print('wrote "{0}"'.format(filename)) plt.close(fig)
50.368146
220
0.696024
12,886
0.66798
0
0
0
0
0
0
5,603
0.290446
7f497463579627def6a6bc8b025032e2117e0a72
1,029
py
Python
flaskr/tripods/tripod.py
ardtieboy/campy
dc59c62395aa45c0d125f6187a8a3b19521469d3
[ "MIT" ]
null
null
null
flaskr/tripods/tripod.py
ardtieboy/campy
dc59c62395aa45c0d125f6187a8a3b19521469d3
[ "MIT" ]
null
null
null
flaskr/tripods/tripod.py
ardtieboy/campy
dc59c62395aa45c0d125f6187a8a3b19521469d3
[ "MIT" ]
null
null
null
import pantilthat class Tripod(object): def __init__(self): self.horizontal = 0 self.vertical = 0 self.step_size = 5 pantilthat.pan(0) pantilthat.tilt(0) def left(self): if (-80 < self.horizontal): self.horizontal = self.horizontal - self.step_size print('moving left ' + str(self.horizontal)) pantilthat.pan(self.horizontal) def right(self): if (self.horizontal < 80): self.horizontal = self.horizontal + self.step_size print('moving right ' + str(self.horizontal)) pantilthat.pan(self.horizontal) def up(self): if (-80 < self.vertical): self.vertical = self.vertical - self.step_size print('moving up ' + str(self.vertical)) pantilthat.tilt(self.vertical) def down(self): if (self.vertical < 80): self.vertical = self.vertical + self.step_size print('moving down ' + str(self.vertical)) pantilthat.tilt(self.vertical)
30.264706
62
0.597668
1,010
0.981535
0
0
0
0
0
0
55
0.05345
7f49b39edb1cf25e08b2f0cebd80eaca4c038d5a
5,592
py
Python
mercury_engine_data_structures/pkg_editor.py
duncathan/mercury-engine-data-structures
1bc4117dba9c7961d9a8f1b7f11b62daaf82b09b
[ "MIT" ]
null
null
null
mercury_engine_data_structures/pkg_editor.py
duncathan/mercury-engine-data-structures
1bc4117dba9c7961d9a8f1b7f11b62daaf82b09b
[ "MIT" ]
null
null
null
mercury_engine_data_structures/pkg_editor.py
duncathan/mercury-engine-data-structures
1bc4117dba9c7961d9a8f1b7f11b62daaf82b09b
[ "MIT" ]
null
null
null
import collections import contextlib import os.path import typing from contextlib import ExitStack from pathlib import Path from typing import BinaryIO, Dict, Optional, Generator, Iterator, Set from mercury_engine_data_structures import formats, dread_data from mercury_engine_data_structures.formats.base_resource import AssetId, BaseResource, NameOrAssetId, resolve_asset_id from mercury_engine_data_structures.formats.pkg import PKGHeader, Pkg from mercury_engine_data_structures.game_check import Game class PkgEditor: """ Manages efficiently reading all PKGs in the game and writing out modifications to a new path. _files_for_asset_id: mapping of asset id to all pkgs it can be found at _ensured_asset_ids: mapping of pkg name to assets we'll copy into it when saving _modified_resources: mapping of asset id to bytes. When saving, these asset ids are replaced """ _files_for_asset_id: Dict[AssetId, Set[str]] _ensured_asset_ids: Dict[str, Set[AssetId]] _modified_resources: Dict[AssetId, bytes] def __init__(self, root: Path, target_game: Game = Game.DREAD): all_pkgs = root.rglob("*.pkg") self.files = {} self.root = root self.target_game = target_game self.headers = {} self._files_for_asset_id = collections.defaultdict(set) self._ensured_asset_ids = {} self._modified_resources = {} for pkg_path in all_pkgs: name = pkg_path.relative_to(root).as_posix() self.files[name] = pkg_path with pkg_path.open("rb") as f: self.headers[name] = PKGHeader.parse_stream(f, target_game=target_game) self._ensured_asset_ids[name] = set() for entry in self.headers[name].file_entries: self._files_for_asset_id[entry.asset_id].add(name) def all_asset_ids(self) -> Iterator[AssetId]: """ Returns an iterator of all asset ids in the available pkgs. """ yield from self._files_for_asset_id.keys() def all_asset_names(self) -> Iterator[str]: """ Returns an iterator of all known names of the present asset ids. """ for asset_id in self.all_asset_ids(): name = dread_data.name_for_asset_id(asset_id) if name is not None: yield name def find_pkgs(self, asset_id: NameOrAssetId) -> Iterator[str]: yield from self._files_for_asset_id[resolve_asset_id(asset_id)] def get_raw_asset(self, asset_id: NameOrAssetId, in_pkg: Optional[str] = None) -> bytes: asset_id = resolve_asset_id(asset_id) if asset_id in self._modified_resources: return self._modified_resources[asset_id] for name, header in self.headers.items(): if in_pkg is not None and name != in_pkg: continue for entry in header.file_entries: if entry.asset_id == asset_id: with self.files[name].open("rb") as f: f.seek(entry.start_offset) return f.read(entry.end_offset - entry.start_offset) raise ValueError(f"Unknown asset_id: {asset_id:0x}") def get_parsed_asset(self, name: str, in_pkg: Optional[str] = None) -> BaseResource: data = self.get_raw_asset(name, in_pkg) file_format = os.path.splitext(name)[1][1:] return formats.format_for(file_format).parse(data, target_game=self.target_game) def replace_asset(self, asset_id: NameOrAssetId, new_data: typing.Union[bytes, BaseResource]): if not isinstance(new_data, bytes): new_data = new_data.build() self._modified_resources[resolve_asset_id(asset_id)] = new_data def ensure_present(self, pkg_name: str, asset_id: NameOrAssetId): """ Ensures the given pkg has the give assets, collecting from other pkgs if needed. """ if pkg_name not in self._ensured_asset_ids: raise ValueError(f"Unknown pkg_name: {pkg_name}") asset_id = resolve_asset_id(asset_id) # If the pkg already has the given asset, do nothing if pkg_name not in self._files_for_asset_id[asset_id]: self._ensured_asset_ids[pkg_name].add(asset_id) def save_modified_pkgs(self): modified_pkgs = set() for asset_id in self._modified_resources.keys(): modified_pkgs.update(self._files_for_asset_id[asset_id]) # Read all asset ids we need to copy somewhere else asset_ids_to_copy = {} for asset_ids in self._ensured_asset_ids.values(): for asset_id in asset_ids: if asset_id not in asset_ids_to_copy: asset_ids_to_copy[asset_id] = self.get_raw_asset(asset_id) for pkg_name in modified_pkgs: with self.files[pkg_name].open("rb") as f: pkg = Pkg.parse_stream(f, target_game=self.target_game) for asset_id, data in self._modified_resources.items(): if pkg_name in self._files_for_asset_id[asset_id]: pkg.replace_asset(asset_id, data) for asset_id in self._ensured_asset_ids[pkg_name]: pkg.add_asset(asset_id, asset_ids_to_copy[asset_id]) self._files_for_asset_id[asset_id].add(pkg_name) with self.files[pkg_name].open("wb") as f: pkg.build_stream(f) # Clear the ensured asset ids, since we've written these self._ensured_asset_ids[pkg_name] = set() self._modified_resources = {}
40.817518
119
0.662375
5,082
0.908798
626
0.111946
0
0
0
0
890
0.159156
7f49d895aed1ee10667f68cdf1cd1adf069c4fea
142
py
Python
code/textProcessing.py
corollari/BaaCL
3ebe9ba7c3859243351fe1b12d4eb114bb51b441
[ "Unlicense" ]
1
2019-03-06T19:43:46.000Z
2019-03-06T19:43:46.000Z
code/textProcessing.py
corollari/BaaL
3ebe9ba7c3859243351fe1b12d4eb114bb51b441
[ "Unlicense" ]
null
null
null
code/textProcessing.py
corollari/BaaL
3ebe9ba7c3859243351fe1b12d4eb114bb51b441
[ "Unlicense" ]
null
null
null
def preprocess(text): text=text.replace('\n', '\n\r') return text def getLetter(): return open("./input/letter.txt", "r").read()
20.285714
49
0.605634
0
0
0
0
0
0
0
0
33
0.232394
7f4a8619142279843195d19ca55dc1994a765971
4,665
py
Python
lrthubcore/users/api/views.py
xrojan/lrthub-core
757189942c87f7136fd1f1fee536375d248d8233
[ "BSD-3-Clause" ]
null
null
null
lrthubcore/users/api/views.py
xrojan/lrthub-core
757189942c87f7136fd1f1fee536375d248d8233
[ "BSD-3-Clause" ]
null
null
null
lrthubcore/users/api/views.py
xrojan/lrthub-core
757189942c87f7136fd1f1fee536375d248d8233
[ "BSD-3-Clause" ]
null
null
null
# Created by Joshua de Guzman on 09/07/2018 # @email code@jmdg.io from django_filters.rest_framework import DjangoFilterBackend from rest_framework.permissions import AllowAny, IsAuthenticated from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import status, generics from .. import models from . import pagination from . import serializers class UserCreate(APIView): permission_classes = (AllowAny,) def post(self, request): serializer = serializers.UserSerializer(data=request.data) if serializer.is_valid(): user = serializer.save() if user: response = {"status_code": status.HTTP_201_CREATED, "message": "Successfully created", "result": request.data} return Response(response) response = {"status_code": status.HTTP_400_BAD_REQUEST, "message": "Failed to create user", "result": serializer.errors} return Response(response) class UserProfileGenderList(generics.ListAPIView): queryset = models.Gender.objects.all() serializer_class = serializers.GenderSerializer class UserProfileNationalityList(generics.ListAPIView): queryset = models.Nationality.objects.all() serializer_class = serializers.NationalitySerializer class UserProfileMaritalStatusList(generics.ListAPIView): queryset = models.MaritalStatus.objects.all() serializer_class = serializers.MaritalStatusSerializer class UserProfileEmploymentTypeList(generics.ListAPIView): queryset = models.EmploymentType.objects.all() serializer_class = serializers.EmploymentTypeSerializer class UserProfileDisabilityList(generics.ListAPIView): queryset = models.Disability.objects.all() serializer_class = serializers.DisabilitiesSerializer class UserProfileList(generics.ListCreateAPIView): serializer_class = serializers.UserProfileSerializer pagination_class = pagination.CustomPagination def get_queryset(self): queryset = models.UserProfile.objects.all() user_id = int(self.request.GET.get('user_id', None)) return queryset.filter(user_id=user_id) def create(self, request, *args, **kwargs): user = self.request.user request_user_id = int(request.POST.get('user_id', '')) if user.id == request_user_id: super(UserProfileList, self).create(request, args, kwargs) response = {"status_code": status.HTTP_201_CREATED, "message": "Successfully created", "result": request.data} return Response(response) response = {"status_code": status.HTTP_403_FORBIDDEN, "message": "You are not allowed to continue with the request", "result": None} return Response(response) class UserProfileDetail(generics.RetrieveUpdateDestroyAPIView): queryset = models.UserProfile.objects.all() serializer_class = serializers.UserProfileSerializer def retrieve(self, request, *args, **kwargs): user = self.request.user request_user_id = self.kwargs['pk'] if user.id == request_user_id: super(UserProfileDetail, self).retrieve(request, args, kwargs) instance = self.get_object() serializer = self.get_serializer(instance) data = serializer.data response = {"status_code": status.HTTP_200_OK, "message": "Successfully retrieved", "result": data} return Response(response) response = {"status_code": status.HTTP_403_FORBIDDEN, "message": "You are not allowed to continue with the request", "result": None} return Response(response) def patch(self, request, *args, **kwargs): user = self.request.user request_user_id = self.kwargs['pk'] if user.id == request_user_id: super(UserProfileDetail, self).patch(request, args, kwargs) instance = self.get_object() serializer = self.get_serializer(instance) data = serializer.data response = {"status_code": status.HTTP_200_OK, "message": "Successfully updated", "result": data} return Response(response) response = {"status_code": status.HTTP_403_FORBIDDEN, "message": "You are not allowed to continue with the request", "result": None} return Response(response)
37.620968
82
0.653805
4,244
0.909753
0
0
0
0
0
0
595
0.127546
7f4a9a45f9839d4156f378a8a84cdc5c95302052
837
py
Python
tests/test_api_key.py
sodrooome/bmaclient
8d3609a63e3e2576642ecde77245ee0b02225e31
[ "MIT" ]
null
null
null
tests/test_api_key.py
sodrooome/bmaclient
8d3609a63e3e2576642ecde77245ee0b02225e31
[ "MIT" ]
null
null
null
tests/test_api_key.py
sodrooome/bmaclient
8d3609a63e3e2576642ecde77245ee0b02225e31
[ "MIT" ]
null
null
null
import os import unittest from bmaclient.utils import get_api_key_from_file DATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'data') class APIKeyTest(unittest.TestCase): def test_get_api_key_from_file(self): path = os.path.join(DATA_DIR, 'api_key.txt') key = get_api_key_from_file(path) self.assertEqual(key, 'THIS_IS_API_KEY_VALUE') def test_get_api_key_from_empty_file(self): path = os.path.join(DATA_DIR, 'api_key_empty.txt') key = get_api_key_from_file(path) self.assertEqual(key, '') def test_get_api_key_from_empty_file_strict(self): path = os.path.join(DATA_DIR, 'api_key_empty.txt') with self.assertRaises(ValueError): key = get_api_key_from_file(path, strict=True) if __name__ == '__main__': unittest.main()
28.862069
75
0.706093
631
0.753883
0
0
0
0
0
0
92
0.109916
7f4c0b226d7280aa82d0b514ec3937f568c281d1
498
py
Python
planner/forms.py
celord/mealprep
c51329dd86953963d0e0405e9a929553eca1e2cf
[ "MIT" ]
null
null
null
planner/forms.py
celord/mealprep
c51329dd86953963d0e0405e9a929553eca1e2cf
[ "MIT" ]
null
null
null
planner/forms.py
celord/mealprep
c51329dd86953963d0e0405e9a929553eca1e2cf
[ "MIT" ]
null
null
null
from django import forms from django.forms import ModelForm from .models import Plan class DateInput(forms.DateInput): input_type = "date" class AddPlanForm(ModelForm): class Meta: model = Plan # fields = fields = '__all__' fields = [ "date", "meal", "mealtype", "photo", ] widgets = { "date": DateInput(), # 'comments': Textarea(attrs={'cols': 80, 'rows': 20}), }
19.92
67
0.512048
406
0.815261
0
0
0
0
0
0
125
0.251004
7f4c4a6d4785bd3dfed7a18ec25a7e8626976917
2,856
py
Python
lib/harm_plot.py
pnlbwh/multi-shell-dMRIharmonization
46e207c5d2b7fd68ddbbd1b305c33cfd45351ee8
[ "CNRI-Python", "Info-ZIP" ]
4
2020-04-28T15:31:07.000Z
2022-02-15T07:04:21.000Z
lib/harm_plot.py
pnlbwh/multi-shell-dMRIharmonization
46e207c5d2b7fd68ddbbd1b305c33cfd45351ee8
[ "CNRI-Python", "Info-ZIP" ]
30
2019-11-10T20:51:34.000Z
2021-04-19T19:08:14.000Z
lib/harm_plot.py
pnlbwh/multi-shell-dMRIharmonization
46e207c5d2b7fd68ddbbd1b305c33cfd45351ee8
[ "CNRI-Python", "Info-ZIP" ]
3
2019-10-18T16:06:03.000Z
2021-02-21T01:10:45.000Z
#!/usr/bin/env python import numpy as np import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt import pandas as pd from conversion import read_imgs_masks from os.path import isfile, basename XERR=0.1 ELINEWIDTH=3 CAPSIZE=5 CAPTHICK=3 FMT='cD' def harm_plot(ydata, labels, outPrefix, bshell_b): ''' :param ydata: list of [y1, y2, y3, ...] where each yi is a list :param labels: list of strings :param outPrefix: :return: ''' outPrefix += f'_b{bshell_b}' labels= list(labels) num_series, num_sub= np.shape(ydata) iter_obj= [i for i in range(num_series)] # errorbar plot plt.figure(1) plt.grid(True) for i in iter_obj: x= list(i*np.ones((num_sub,))) y= ydata[i] plt.plot(x, y, 'r*') plt.errorbar([i], np.mean(y), xerr=XERR, yerr=np.std(y), ecolor='k', capsize=CAPSIZE, capthick=CAPTHICK, elinewidth=ELINEWIDTH, fmt=FMT) plt.xticks(iter_obj, labels) plt.title('Comparison of meanFA before and after harmonization') plt.ylabel('meanFA over IIT_mean_FA_skeleton') plt.savefig(outPrefix+'_ebarplot.png') # plt.show() # box plot # plt.figure(2) # plt.grid(True) # for i in iter_obj: # x = list(i * np.ones((num_sub,))) # y = ydata[i] # plt.plot(x, y, 'r*') # # plt.boxplot(ydata, labels=labels, positions=iter_obj, # boxprops=dict(linewidth=4), # medianprops=dict(linewidth=4), # whiskerprops=dict(linewidth=2)) # # # plt.title(f'Comparison of boxplot before and after harmonization for b{bshell_b}') # plt.ylabel('meanFA over IIT_mean_FA_skeleton') # plt.savefig(outPrefix+'_boxplot.png') # plt.show() # return (outPrefix+'_ebarplot.png', outPrefix+'_boxplot.png') return outPrefix+'_ebarplot.png' def generate_csv(imgs, site_means, outPrefix, bshell_b): try: imgs, _= read_imgs_masks(imgs) except: pass statFile = outPrefix + '_stat.csv' if isfile(statFile): df= pd.read_csv(statFile) df= df.assign(**{f'meanFA b{bshell_b}':site_means}) else: stat = {'subject': [basename(f) for f in imgs], f'meanFA b{bshell_b}': site_means} df = pd.DataFrame(stat) df.to_csv(statFile, index=False) if __name__=='__main__': sub=['hi','hello','go','come'] ref_mean= [0.46, 0.49, 0.44, 0.40] target_mean_before= [0.42, 0.58, 0.43, 0.66] target_mean_after= [0.5 , 0.45, 0.40, 0.55] labels=['Reference','Target before','Target after'] bshell_b= 2000 harm_plot([ref_mean, target_mean_before, target_mean_after], labels, '/tmp/abc', bshell_b) # harm_plot([ref_mean], ['Reference'], '/tmp/abc', bshell_b) generate_csv(sub, ref_mean, '/tmp/abc', bshell_b)
27.2
100
0.619748
0
0
0
0
0
0
0
0
1,135
0.397409
7f4c6dcef66737c0d797d459d092bd0f3dc07425
1,913
py
Python
tests/test_preproc_badframes.py
ChrisDelaX/VIP
7b728bdc78fdeb693e19de269ddfffba15064fb4
[ "MIT" ]
2
2017-02-10T02:02:17.000Z
2018-02-16T16:07:24.000Z
tests/test_preproc_badframes.py
ChrisDelaX/VIP
7b728bdc78fdeb693e19de269ddfffba15064fb4
[ "MIT" ]
null
null
null
tests/test_preproc_badframes.py
ChrisDelaX/VIP
7b728bdc78fdeb693e19de269ddfffba15064fb4
[ "MIT" ]
2
2020-07-18T19:31:03.000Z
2022-01-24T21:11:20.000Z
""" Tests for the badframes detection routines. """ import numpy as np import vip_hci as vip def test_badfr_corr(): im1 = vip.var.create_synth_psf(shape=(19, 19), fwhm=2) im2 = vip.var.create_synth_psf(shape=(19, 19), fwhm=(2, 4)) cube = np.array([im1, im2, im1, im2]) gind, bind = vip.preproc.cube_detect_badfr_correlation(cube, 0, 9, plot=False) assert np.array_equal(gind, np.array([0, 2])) assert np.array_equal(bind, np.array([1, 3])) def test_badfr_ellip(): im1 = vip.var.create_synth_psf(shape=(19, 19), fwhm=2) im2 = vip.var.create_synth_psf(shape=(19, 19), fwhm=(2, 4)) cube = np.array([im1, im2, im1, im2]) gind, bind = vip.preproc.cube_detect_badfr_ellipticity(cube, 2, crop_size=17, plot=False) assert np.array_equal(gind, np.array([0, 2])) assert np.array_equal(bind, np.array([1, 3])) def test_badfr_pxstat(): im1_1 = vip.var.create_synth_psf(shape=(19, 19), fwhm=3) im1_2 = vip.var.create_synth_psf(shape=(19, 19), fwhm=4) im1_3 = vip.var.create_synth_psf(model='moff', shape=(19, 19), fwhm=6) - 0.3 im1_3 = vip.var.mask_circle(im1_3, 4) im1 = im1_2 - im1_1 im2 = im1 + im1_3 + 1 im3 = im1 + im1_3 + 0.2 cube = np.array([im1, im1, im1, im1, im1, im1, im3, im2, im2, im3, im1, im1, im1, im1, im1, im1]) gind, bind = vip.preproc.cube_detect_badfr_pxstats(cube, in_radius=3, width=3, window=None, plot=False) assert np.array_equal(gind, np.array([0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15])) assert np.array_equal(bind, np.array([7, 8]))
39.854167
80
0.531103
0
0
0
0
0
0
0
0
58
0.030319
7f4d15cfb3ed6c16d32e8b711404ca08ebd94da8
13,774
py
Python
DE_rpy2.py
jhonP-Li/DE_rpy2
460724631527dc386a35268b9f923ab5c708166a
[ "MIT" ]
6
2021-05-02T09:15:59.000Z
2022-03-27T23:41:41.000Z
DE_rpy2.py
jhonP-Li/DE_rpy2
460724631527dc386a35268b9f923ab5c708166a
[ "MIT" ]
null
null
null
DE_rpy2.py
jhonP-Li/DE_rpy2
460724631527dc386a35268b9f923ab5c708166a
[ "MIT" ]
null
null
null
""" MIT License Copyright (c) 2021 Li Pan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software 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 Software. THE SOFTWARE 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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import pandas as pd import numpy as np import warnings import rpy2.robjects as robjects from rpy2.robjects import numpy2ri, pandas2ri, Formula from rpy2.robjects.packages import importr pandas2ri.activate() numpy2ri.activate() # import R libraries DESeq2 = importr('DESeq2') edgeR = importr('edgeR') Limma = importr('limma') stats = importr('stats') to_dataframe = robjects.r('function(x) data.frame(x)') class DE_rpy2: """ Running DESeq2, edgeR, limma through rpy2 input: count_matrix: a pandas dataframe with each column as count (float values in FPKM/RPKM are also acceptable as internal rounding will be done) , and a id column for gene id example: id sampleA sampleB geneA 5.1 1 geneB 4.2 5 geneC 1 2 design_matrix: a pandas dataframe with each column as a condition, and one row for one sample Note that the sample name must be the index not a column condition sampleA1 treated sampleA2 treated sampleB1 untreated sampleB2 untreated design_formula: default to be the column name of design matrix, example: "~ condition"" If it contains multiple conditions, this formula must be customised, or the DESeq2 will only consider the first condition. gene_column: column name of gene id columns in count_matrix, default = 'id' """ def __init__(self, count_matrix, design_matrix, design_formula=None, gene_column='id'): assert gene_column in count_matrix, \ 'column: \'%s\', not found in count matrix' % gene_column assert count_matrix.shape[1] - 1 == design_matrix.shape[0], \ 'The number of rows in design matrix must ' \ 'be equal to the number of samples in count matrix' assert all(pd.isna(count_matrix)), \ 'Null values are found in count matrix' \ 'Please check it' assert len(design_matrix.columns), \ 'Columns names are needed in design matrix' if 'float' in count_matrix.drop(gene_column, axis=1): warnings.warn('DESeq2 and edgeR only accept integer counts\n' 'The values in count matrix are automatically rounded\n' 'In fact the FPKM/RPKM input is not encouraged by DESeq2 officially\n') # parameters used in DESeq2 self.count_matrix = pandas2ri.py2ri(count_matrix.drop(gene_column, axis=1).astype('int')) self.design_matrix = pandas2ri.py2ri(design_matrix) self.gene_ids = count_matrix[gene_column] self.gene_column = gene_column self.deseq2_result = None self.deseq2_label = None if design_formula is None: condition = design_matrix.columns[0] if len(design_matrix.columns) > 1: warnings.warn('Multiple conditions are set in design matrix,\n' 'you\'d better customise the design formula.\n' 'Here it only considers the first condition\n') self.design_formula = Formula('~ ' + condition) else: self.design_formula = Formula(design_formula) # parameters used in edgeR self.edgeR_group = numpy2ri.py2ri(design_matrix.iloc[:, 0].values) self.edgeR_gene_names = numpy2ri.py2ri(count_matrix[gene_column].values) self.edgeR_result = None self.edgeR_label = None # parameters used in limma self.limma_result = None self.limma_label = None self.final_label = None def deseq2(self, threshold=0.05, **kwargs): """ Run the standard DESeq2 workflow. Get the DESeq2 results as DataFrame. Return the label of each gene: 0 for not differentially expressed, 1 for differentially expressed. :param threshold: threshold for the adjusted p-value. default = 0.05. :param kwargs: parameters of DESeq2 functions. See official instructions for details: http://www.bioconductor.org/packages/release/bioc/vignettes/DESeq2/inst/doc/DESeq2.html :return: label: pandas.DataFrame format with 2 columns: gene ids and labels """ # Run DESeq2 workflow dds = DESeq2.DESeqDataSetFromMatrix(countData=self.count_matrix, colData=self.design_matrix, design=self.design_formula) dds = DESeq2.DESeq(dds, **kwargs) res = DESeq2.results(dds, **kwargs) # Store the output matrix as DataFrame self.deseq2_result = pandas2ri.ri2py(to_dataframe(res)) self.deseq2_result[self.gene_column] = self.gene_ids # The adjusted p-value in the DESeq2 results # may contain NAN if any(pd.isna(self.deseq2_result['padj'].values)): warnings.warn('There exist NAN in the adjusted p-value\n' 'see https://bioconductor.org/packages/release/bioc/vignettes/DESeq2/' 'inst/doc/DESeq2.html#why-are-some-p-values-set-to-na\n') # Reject the H0 hypothesis if p-value < threshold labels = [int(x) for x in (self.deseq2_result['padj'] < threshold)] label = pd.DataFrame({self.gene_column: self.gene_ids, 'label': labels}) self.deseq2_label = label return label def edger(self, threshold=0.05): """ Run the standard edgeR workflow. Get the edgR results as DataFrame. Return the label of each gene: 0 for not differentially expressed, 1 for differentially expressed. :param threshold: threshold for the p-value. default = 0.05. See official instructions for details: https://www.bioconductor.org/packages/release/bioc/vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf :return: label: pandas.DataFrame format with 2 columns: gene ids and labels """ # run edgeR workflow # Create the DGEList object dgList = edgeR.DGEList(counts=self.count_matrix, group=self.edgeR_group, genes=self.edgeR_gene_names) # Normalize dgList = edgeR.calcNormFactors(dgList, method="TMM") # Setting up the model robjects.r.assign('edgeR_group', self.edgeR_group) designMat = stats.model_matrix(Formula('~ edgeR_group')) # Estimating Dispersions dgList = edgeR.estimateGLMCommonDisp(dgList, design=designMat) dgList = edgeR.estimateGLMTrendedDisp(dgList, design=designMat) dgList = edgeR.estimateGLMTagwiseDisp(dgList, design=designMat) # Differential Expression fit = edgeR.glmQLFit(dgList, designMat) test = edgeR.glmQLFTest(fit) res = edgeR.topTags(test, n=self.count_matrix.nrow) res_df = pandas2ri.ri2py(to_dataframe(res)) # Sort the result on gene ids gene_df = pd.DataFrame({'genes': self.gene_ids}) self.edgeR_result = pd.merge(gene_df, res_df, how='left') # Reject the H0 hypothesis labels = [int(x) for x in (self.edgeR_result['PValue'] < threshold)] label = pd.DataFrame({self.gene_column: self.gene_ids, 'label': labels}) self.edgeR_label = label return label def limma(self, threshold=0.05): """ Run the standard limma workflow. Get the limma results as DataFrame. Return the label of each gene: 0 for not differentially expressed, 1 for differentially expressed. :param threshold: threshold for the p-value. default = 0.05. See official instructions for details: https://ucdavis-bioinformatics-training.github.io/2018-June-RNA-Seq-Workshop/thursday/DE.html :return: label: pandas.DataFrame format with 2 columns: gene ids and labels """ # Create the DGEList object dgList = edgeR.DGEList(counts=self.count_matrix, group=self.edgeR_group, genes=self.edgeR_gene_names) # Normalize dgList = edgeR.calcNormFactors(dgList, method="TMM") # Setting up the model robjects.r.assign('edgeR_group', self.edgeR_group) designMat = stats.model_matrix(Formula('~ edgeR_group')) # voom v = Limma.voom(dgList, designMat) # fitting fit = Limma.lmFit(v, designMat) fit = Limma.eBayes(fit) res = Limma.topTable(fit, n=self.count_matrix.nrow) res_df = pandas2ri.ri2py(to_dataframe(res)) # Sort the result on gene ids gene_df = pd.DataFrame({'genes': self.gene_ids}) self.limma_result = pd.merge(gene_df, res_df, how='left') # Reject the H0 hypothesis labels = [int(x) for x in (self.limma_result['adj.P.Val'] < threshold)] label = pd.DataFrame({self.gene_column: self.gene_ids, 'label': labels}) self.limma_label = label return label def plot_label_difference(self): """ Plot the Venn diagram of the 3 label output. Since we only interest in the differentially expressed genes. The number on Venn diagram shows the number of samples labeled as 1. Say differentially expressed genes. """ if self.limma_label is None: warnings.warn('Seems you haven\'t get limma label\n' 'Automatically running limma...') self.limma_label = self.limma() if self.deseq2_label is None: warnings.warn('Seems you haven\'t get DESeq2 label\n' 'Automatically running DESeq2...') self.deseq2_label = self.deseq2() if self.edgeR_label is None: warnings.warn('Seems you haven\'t get edgeR label\n' 'Automatically running edgeR...') self.edgeR_label = self.edger() # Import the plot package from matplotlib_venn import venn3 import matplotlib.pyplot as plt labels = np.array([self.deseq2_label['label'].values, self.edgeR_label['label'].values, self.limma_label['label'].values]).T names = ['DESeq2', 'edgeR', 'limma'] venn_df = pd.DataFrame(data=labels, columns=names) sets = {'000': 0, '001': 0, '010': 0, '011': 0, '100': 0, '101': 0, '110': 0, '111': 0} for i in range(venn_df.shape[0]): loc = [str(num) for num in venn_df.iloc[i, :]] loc = loc[0] + loc[1] + loc[2] sets[loc] += 1 venn3(sets, set_labels=names) plt.show() return sets def get_final_label(self, method='inner'): """ There are 2 methods availabel: inner: set those genes as differentially expressed, say label 1, if all 3 tools agreed vote: set those genes as differentially expressed, say label 1, if all 2 out of the 3 tools agreed union: set those genes as differentially expressed, say label 1, as long as 1 tool agreed """ label = None menu = ['inner', 'vote', 'union'] assert method in menu, \ 'Please choose the correct method' if self.limma_label is None: warnings.warn('Seems you haven\'t get limma label\n' 'Automatically running limma...') self.limma_label = self.limma() if self.deseq2_label is None: warnings.warn('Seems you haven\'t get DESeq2 label\n' 'Automatically running DESeq2...') self.deseq2_label = self.deseq2() if self.edgeR_label is None: warnings.warn('Seems you haven\'t get edgeR label\n' 'Automatically running edgeR...') self.edgeR_label = self.edger() labels = self.deseq2_label['label'].values + self.edgeR_label['label'].values + self.limma_label['label'].values if method == 'inner': label = [int(x) for x in (labels == 3)] if method == 'vote': label = [int(x) for x in (labels >= 2)] if method == 'union': label = [int(x) for x in (labels >= 1)] self.final_label = pd.DataFrame({self.gene_column: self.gene_ids, 'label': label}) return self.final_label
43.726984
121
0.614709
12,249
0.889284
0
0
0
0
0
0
6,732
0.488747
7f4dddafff562d1d609415b1456d1843f25b7c47
3,049
py
Python
cgatpipelines/tools/pipeline_docs/pipeline_rnaseqdiffexpression/trackers/Results.py
kevinrue/cgat-flow
02b5a1867253c2f6fd6b4f3763e0299115378913
[ "MIT" ]
49
2015-04-13T16:49:25.000Z
2022-03-29T10:29:14.000Z
cgatpipelines/tools/pipeline_docs/pipeline_rnaseqdiffexpression/trackers/Results.py
kevinrue/cgat-flow
02b5a1867253c2f6fd6b4f3763e0299115378913
[ "MIT" ]
252
2015-04-08T13:23:34.000Z
2019-03-18T21:51:29.000Z
cgatpipelines/tools/pipeline_docs/pipeline_rnaseqdiffexpression/trackers/Results.py
kevinrue/cgat-flow
02b5a1867253c2f6fd6b4f3763e0299115378913
[ "MIT" ]
22
2015-05-21T00:37:52.000Z
2019-09-25T05:04:27.000Z
from CGATReport.Tracker import * from CGATReport.Utils import PARAMS as P from IsoformReport import * ############################################################################### # parse params ############################################################################### DATABASE = P.get('', P.get('sql_backend', 'sqlite:///./csvdb')) ANNOTATIONS_DATABASE = P.get('annotations_database') ############################################################################### # trackers ############################################################################### class DeseqFeatureResultsGenes(IsoformTracker): pattern = "deseq2_featurecounts__(.*)_genes_results" def __call__(self, track, slice=None): statement = ''' SELECT A.control_name, A.treatment_name, A.control_mean, A.treatment_mean, A.test_id, A.l2fold, A.p_value, A.p_value_adj, A.significant FROM deseq2_featurecounts__%(track)s_genes_results AS A ORDER BY A.significant DESC, A.l2fold ASC; ''' return self.getAll(statement) class EdgerFeatureResultsGenes(IsoformTracker): pattern = "edger_featurecounts__(.*)_genes_results" def __call__(self, track, slice=None): statement = ''' SELECT A.control_name, A.treatment_name, A.control_mean, A.treatment_mean, A.test_id, A.l2fold, A.p_value, A.p_value_adj, A.significant FROM edger_featurecounts__%(track)s_genes_results AS A ORDER BY A.significant DESC, A.l2fold ASC ''' return self.getAll(statement) class DeseqKallistoResultsGenes(IsoformTracker): pattern = "deseq2_kallisto__(.*)_genes_results" def __call__(self, track, slice=None): statement = ''' SELECT A.control_name, A.treatment_name, A.control_mean, A.treatment_mean, A.test_id, A.l2fold, A.p_value, A.p_value_adj, A.significant FROM deseq2_kallisto__%(track)s_genes_results AS A ORDER BY A.significant DESC, A.l2fold ASC ''' return self.getAll(statement) class EdgerKallistoResultsGenes(IsoformTracker): pattern = "edger_kallisto__(.*)_genes_results" def __call__(self, track, slice=None): statement = ''' SELECT A.control_name, A.treatment_name, A.control_mean, A.treatment_mean, A.test_id, A.l2fold, A.p_value, A.p_value_adj, A.significant FROM edger_kallisto__%(track)s_genes_results AS A ORDER BY A.significant DESC, A.l2fold ASC ''' return self.getAll(statement) class SleuthKallistoResultsGenes(IsoformTracker): pattern = "sleuth_kallisto__(.*)_genes_results" def __call__(self, track, slice=None): statement = ''' SELECT A.control_name, A.treatment_name, A.control_mean, A.treatment_mean, A.test_id, A.l2fold, A.p_value, A.p_value_adj, A.significant FROM sleuth_kallisto__%(track)s_genes_results AS A ORDER BY A.significant DESC, A.l2fold ASC ''' return self.getAll(statement)
30.49
79
0.608396
2,466
0.80879
0
0
0
0
0
0
2,018
0.661856
7f4f7c16103c58deb5243e5a653fd451eaf61603
2,063
py
Python
semseg/datasets/celebamaskhq.py
Genevievekim/semantic-segmentation-1
f28b026e44cff80fe3ca4cac94cea27e4073821b
[ "BSD-3-Clause" ]
196
2021-08-22T10:01:34.000Z
2022-03-29T09:59:51.000Z
semseg/datasets/celebamaskhq.py
Genevievekim/semantic-segmentation-1
f28b026e44cff80fe3ca4cac94cea27e4073821b
[ "BSD-3-Clause" ]
21
2021-08-22T09:59:02.000Z
2022-03-29T15:22:46.000Z
semseg/datasets/celebamaskhq.py
Genevievekim/semantic-segmentation-1
f28b026e44cff80fe3ca4cac94cea27e4073821b
[ "BSD-3-Clause" ]
36
2021-08-22T08:59:40.000Z
2022-03-28T10:13:20.000Z
import torch from torch import Tensor from torch.utils.data import Dataset from torchvision import io from pathlib import Path from typing import Tuple from torchvision import transforms as T class CelebAMaskHQ(Dataset): CLASSES = [ 'background', 'skin', 'nose', 'eye_g', 'l_eye', 'r_eye', 'l_brow', 'r_brow', 'l_ear', 'r_ear', 'mouth', 'u_lip', 'l_lip', 'hair', 'hat', 'ear_r', 'neck_l', 'neck', 'cloth' ] PALETTE = torch.tensor([ [0, 0, 0], [204, 0, 0], [76, 153, 0], [204, 204, 0], [51, 51, 255], [204, 0, 204], [0, 255, 255], [255, 204, 204], [102, 51, 0], [255, 0, 0], [102, 204, 0], [255, 255, 0], [0, 0, 153], [0, 0, 204], [255, 51, 153], [0, 204, 204], [0, 51, 0], [255, 153, 51], [0, 204, 0] ]) def __init__(self, root: str, split: str = 'train', transform = None) -> None: super().__init__() assert split in ['train', 'val', 'test'] self.root = Path(root) self.transform = transform self.n_classes = len(self.CLASSES) self.ignore_label = 255 self.resize = T.Resize((512, 512)) with open(self.root / f'{split}_list.txt') as f: self.files = f.read().splitlines() if not self.files: raise Exception(f"No images found in {root}") print(f"Found {len(self.files)} {split} images.") def __len__(self) -> int: return len(self.files) def __getitem__(self, index: int) -> Tuple[Tensor, Tensor]: img_path = self.root / 'CelebA-HQ-img' / f"{self.files[index]}.jpg" lbl_path = self.root / 'CelebAMask-HQ-label' / f"{self.files[index]}.png" image = io.read_image(str(img_path)) image = self.resize(image) label = io.read_image(str(lbl_path)) if self.transform: image, label = self.transform(image, label) return image, label.squeeze().long() if __name__ == '__main__': from semseg.utils.visualize import visualize_dataset_sample visualize_dataset_sample(CelebAMaskHQ, '/home/sithu/datasets/CelebAMask-HQ')
38.924528
150
0.593311
1,694
0.821134
0
0
0
0
0
0
383
0.185652
7f54beba2b06ca2509ee89c2efe002bfd7c05562
282,158
py
Python
gui/py37/images_rc.py
briansune/UART2ETHERNET_MODULE
6ace3f5a7a75365d4d8c3d0e17b9368832237464
[ "MIT" ]
1
2022-03-30T20:37:33.000Z
2022-03-30T20:37:33.000Z
gui/py37/images_rc.py
briansune/UART2ETHERNET_MODULE
6ace3f5a7a75365d4d8c3d0e17b9368832237464
[ "MIT" ]
null
null
null
gui/py37/images_rc.py
briansune/UART2ETHERNET_MODULE
6ace3f5a7a75365d4d8c3d0e17b9368832237464
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.9.6) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x2d\x15\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x0a\x4d\x69\x43\x43\x50\x50\x68\x6f\ \x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\ \x6c\x65\x00\x00\x78\xda\x9d\x53\x77\x58\x93\xf7\x16\x3e\xdf\xf7\ \x65\x0f\x56\x42\xd8\xf0\xb1\x97\x6c\x81\x00\x22\x23\xac\x08\xc8\ \x10\x59\xa2\x10\x92\x00\x61\x84\x10\x12\x40\xc5\x85\x88\x0a\x56\ \x14\x15\x11\x9c\x48\x55\xc4\x82\xd5\x0a\x48\x9d\x88\xe2\xa0\x28\ \xb8\x67\x41\x8a\x88\x5a\x8b\x55\x5c\x38\xee\x1f\xdc\xa7\xb5\x7d\ \x7a\xef\xed\xed\xfb\xd7\xfb\xbc\xe7\x9c\xe7\xfc\xce\x79\xcf\x0f\ \x80\x11\x12\x26\x91\xe6\xa2\x6a\x00\x39\x52\x85\x3c\x3a\xd8\x1f\ \x8f\x4f\x48\xc4\xc9\xbd\x80\x02\x15\x48\xe0\x04\x20\x10\xe6\xcb\ \xc2\x67\x05\xc5\x00\x00\xf0\x03\x79\x78\x7e\x74\xb0\x3f\xfc\x01\ \xaf\x6f\x00\x02\x00\x70\xd5\x2e\x24\x12\xc7\xe1\xff\x83\xba\x50\ \x26\x57\x00\x20\x91\x00\xe0\x22\x12\xe7\x0b\x01\x90\x52\x00\xc8\ \x2e\x54\xc8\x14\x00\xc8\x18\x00\xb0\x53\xb3\x64\x0a\x00\x94\x00\ \x00\x6c\x79\x7c\x42\x22\x00\xaa\x0d\x00\xec\xf4\x49\x3e\x05\x00\ \xd8\xa9\x93\xdc\x17\x00\xd8\xa2\x1c\xa9\x08\x00\x8d\x01\x00\x99\ \x28\x47\x24\x02\x40\xbb\x00\x60\x55\x81\x52\x2c\x02\xc0\xc2\x00\ \xa0\xac\x40\x22\x2e\x04\xc0\xae\x01\x80\x59\xb6\x32\x47\x02\x80\ \xbd\x05\x00\x76\x8e\x58\x90\x0f\x40\x60\x00\x80\x99\x42\x2c\xcc\ \x00\x20\x38\x02\x00\x43\x1e\x13\xcd\x03\x20\x4c\x03\xa0\x30\xd2\ \xbf\xe0\xa9\x5f\x70\x85\xb8\x48\x01\x00\xc0\xcb\x95\xcd\x97\x4b\ \xd2\x33\x14\xb8\x95\xd0\x1a\x77\xf2\xf0\xe0\xe2\x21\xe2\xc2\x6c\ \xb1\x42\x61\x17\x29\x10\x66\x09\xe4\x22\x9c\x97\x9b\x23\x13\x48\ \xe7\x03\x4c\xce\x0c\x00\x00\x1a\xf9\xd1\xc1\xfe\x38\x3f\x90\xe7\ \xe6\xe4\xe1\xe6\x66\xe7\x6c\xef\xf4\xc5\xa2\xfe\x6b\xf0\x6f\x22\ \x3e\x21\xf1\xdf\xfe\xbc\x8c\x02\x04\x00\x10\x4e\xcf\xef\xda\x5f\ \xe5\xe5\xd6\x03\x70\xc7\x01\xb0\x75\xbf\x6b\xa9\x5b\x00\xda\x56\ \x00\x68\xdf\xf9\x5d\x33\xdb\x09\xa0\x5a\x0a\xd0\x7a\xf9\x8b\x79\ \x38\xfc\x40\x1e\x9e\xa1\x50\xc8\x3c\x1d\x1c\x0a\x0b\x0b\xed\x25\ \x62\xa1\xbd\x30\xe3\x8b\x3e\xff\x33\xe1\x6f\xe0\x8b\x7e\xf6\xfc\ \x40\x1e\xfe\xdb\x7a\xf0\x00\x71\x9a\x40\x99\xad\xc0\xa3\x83\xfd\ \x71\x61\x6e\x76\xae\x52\x8e\xe7\xcb\x04\x42\x31\x6e\xf7\xe7\x23\ \xfe\xc7\x85\x7f\xfd\x8e\x29\xd1\xe2\x34\xb1\x5c\x2c\x15\x8a\xf1\ \x58\x89\xb8\x50\x22\x4d\xc7\x79\xb9\x52\x91\x44\x21\xc9\x95\xe2\ \x12\xe9\x7f\x32\xf1\x1f\x96\xfd\x09\x93\x77\x0d\x00\xac\x86\x4f\ \xc0\x4e\xb6\x07\xb5\xcb\x6c\xc0\x7e\xee\x01\x02\x8b\x0e\x58\xd2\ \x76\x00\x40\x7e\xf3\x2d\x8c\x1a\x0b\x91\x00\x10\x67\x34\x32\x79\ \xf7\x00\x00\x93\xbf\xf9\x8f\x40\x2b\x01\x00\xcd\x97\xa4\xe3\x00\ \x00\xbc\xe8\x18\x5c\xa8\x94\x17\x4c\xc6\x08\x00\x00\x44\xa0\x81\ \x2a\xb0\x41\x07\x0c\xc1\x14\xac\xc0\x0e\x9c\xc1\x1d\xbc\xc0\x17\ \x02\x61\x06\x44\x40\x0c\x24\xc0\x3c\x10\x42\x06\xe4\x80\x1c\x0a\ \xa1\x18\x96\x41\x19\x54\xc0\x3a\xd8\x04\xb5\xb0\x03\x1a\xa0\x11\ \x9a\xe1\x10\xb4\xc1\x31\x38\x0d\xe7\xe0\x12\x5c\x81\xeb\x70\x17\ \x06\x60\x18\x9e\xc2\x18\xbc\x86\x09\x04\x41\xc8\x08\x13\x61\x21\ \x3a\x88\x11\x62\x8e\xd8\x22\xce\x08\x17\x99\x8e\x04\x22\x61\x48\ \x34\x92\x80\xa4\x20\xe9\x88\x14\x51\x22\xc5\xc8\x72\xa4\x02\xa9\ \x42\x6a\x91\x5d\x48\x23\xf2\x2d\x72\x14\x39\x8d\x5c\x40\xfa\x90\ \xdb\xc8\x20\x32\x8a\xfc\x8a\xbc\x47\x31\x94\x81\xb2\x51\x03\xd4\ \x02\x75\x40\xb9\xa8\x1f\x1a\x8a\xc6\xa0\x73\xd1\x74\x34\x0f\x5d\ \x80\x96\xa2\x6b\xd1\x1a\xb4\x1e\x3d\x80\xb6\xa2\xa7\xd1\x4b\xe8\ \x75\x74\x00\x7d\x8a\x8e\x63\x80\xd1\x31\x0e\x66\x8c\xd9\x61\x5c\ \x8c\x87\x45\x60\x89\x58\x1a\x26\xc7\x16\x63\xe5\x58\x35\x56\x8f\ \x35\x63\x1d\x58\x37\x76\x15\x1b\xc0\x9e\x61\xef\x08\x24\x02\x8b\ \x80\x13\xec\x08\x5e\x84\x10\xc2\x6c\x82\x90\x90\x47\x58\x4c\x58\ \x43\xa8\x25\xec\x23\xb4\x12\xba\x08\x57\x09\x83\x84\x31\xc2\x27\ \x22\x93\xa8\x4f\xb4\x25\x7a\x12\xf9\xc4\x78\x62\x3a\xb1\x90\x58\ \x46\xac\x26\xee\x21\x1e\x21\x9e\x25\x5e\x27\x0e\x13\x5f\x93\x48\ \x24\x0e\xc9\x92\xe4\x4e\x0a\x21\x25\x90\x32\x49\x0b\x49\x6b\x48\ \xdb\x48\x2d\xa4\x53\xa4\x3e\xd2\x10\x69\x9c\x4c\x26\xeb\x90\x6d\ \xc9\xde\xe4\x08\xb2\x80\xac\x20\x97\x91\xb7\x90\x0f\x90\x4f\x92\ \xfb\xc9\xc3\xe4\xb7\x14\x3a\xc5\x88\xe2\x4c\x09\xa2\x24\x52\xa4\ \x94\x12\x4a\x35\x65\x3f\xe5\x04\xa5\x9f\x32\x42\x99\xa0\xaa\x51\ \xcd\xa9\x9e\xd4\x08\xaa\x88\x3a\x9f\x5a\x49\x6d\xa0\x76\x50\x2f\ \x53\x87\xa9\x13\x34\x75\x9a\x25\xcd\x9b\x16\x43\xcb\xa4\x2d\xa3\ \xd5\xd0\x9a\x69\x67\x69\xf7\x68\x2f\xe9\x74\xba\x09\xdd\x83\x1e\ \x45\x97\xd0\x97\xd2\x6b\xe8\x07\xe9\xe7\xe9\x83\xf4\x77\x0c\x0d\ \x86\x0d\x83\xc7\x48\x62\x28\x19\x6b\x19\x7b\x19\xa7\x18\xb7\x19\ \x2f\x99\x4c\xa6\x05\xd3\x97\x99\xc8\x54\x30\xd7\x32\x1b\x99\x67\ \x98\x0f\x98\x6f\x55\x58\x2a\xf6\x2a\x7c\x15\x91\xca\x12\x95\x3a\ \x95\x56\x95\x7e\x95\xe7\xaa\x54\x55\x73\x55\x3f\xd5\x79\xaa\x0b\ \x54\xab\x55\x0f\xab\x5e\x56\x7d\xa6\x46\x55\xb3\x50\xe3\xa9\x09\ \xd4\x16\xab\xd5\xa9\x1d\x55\xbb\xa9\x36\xae\xce\x52\x77\x52\x8f\ \x50\xcf\x51\x5f\xa3\xbe\x5f\xfd\x82\xfa\x63\x0d\xb2\x86\x85\x46\ \xa0\x86\x48\xa3\x54\x63\xb7\xc6\x19\x8d\x21\x16\xc6\x32\x65\xf1\ \x58\x42\xd6\x72\x56\x03\xeb\x2c\x6b\x98\x4d\x62\x5b\xb2\xf9\xec\ \x4c\x76\x05\xfb\x1b\x76\x2f\x7b\x4c\x53\x43\x73\xaa\x66\xac\x66\ \x91\x66\x9d\xe6\x71\xcd\x01\x0e\xc6\xb1\xe0\xf0\x39\xd9\x9c\x4a\ \xce\x21\xce\x0d\xce\x7b\x2d\x03\x2d\x3f\x2d\xb1\xd6\x6a\xad\x66\ \xad\x7e\xad\x37\xda\x7a\xda\xbe\xda\x62\xed\x72\xed\x16\xed\xeb\ \xda\xef\x75\x70\x9d\x40\x9d\x2c\x9d\xf5\x3a\x6d\x3a\xf7\x75\x09\ \xba\x36\xba\x51\xba\x85\xba\xdb\x75\xcf\xea\x3e\xd3\x63\xeb\x79\ \xe9\x09\xf5\xca\xf5\x0e\xe9\xdd\xd1\x47\xf5\x6d\xf4\xa3\xf5\x17\ \xea\xef\xd6\xef\xd1\x1f\x37\x30\x34\x08\x36\x90\x19\x6c\x31\x38\ \x63\xf0\xcc\x90\x63\xe8\x6b\x98\x69\xb8\xd1\xf0\x84\xe1\xa8\x11\ \xcb\x68\xba\x91\xc4\x68\xa3\xd1\x49\xa3\x27\xb8\x26\xee\x87\x67\ \xe3\x35\x78\x17\x3e\x66\xac\x6f\x1c\x62\xac\x34\xde\x65\xdc\x6b\ \x3c\x61\x62\x69\x32\xdb\xa4\xc4\xa4\xc5\xe4\xbe\x29\xcd\x94\x6b\ \x9a\x66\xba\xd1\xb4\xd3\x74\xcc\xcc\xc8\x2c\xdc\xac\xd8\xac\xc9\ \xec\x8e\x39\xd5\x9c\x6b\x9e\x61\xbe\xd9\xbc\xdb\xfc\x8d\x85\xa5\ \x45\x9c\xc5\x4a\x8b\x36\x8b\xc7\x96\xda\x96\x7c\xcb\x05\x96\x4d\ \x96\xf7\xac\x98\x56\x3e\x56\x79\x56\xf5\x56\xd7\xac\x49\xd6\x5c\ \xeb\x2c\xeb\x6d\xd6\x57\x6c\x50\x1b\x57\x9b\x0c\x9b\x3a\x9b\xcb\ \xb6\xa8\xad\x9b\xad\xc4\x76\x9b\x6d\xdf\x14\xe2\x14\x8f\x29\xd2\ \x29\xf5\x53\x6e\xda\x31\xec\xfc\xec\x0a\xec\x9a\xec\x06\xed\x39\ \xf6\x61\xf6\x25\xf6\x6d\xf6\xcf\x1d\xcc\x1c\x12\x1d\xd6\x3b\x74\ \x3b\x7c\x72\x74\x75\xcc\x76\x6c\x70\xbc\xeb\xa4\xe1\x34\xc3\xa9\ \xc4\xa9\xc3\xe9\x57\x67\x1b\x67\xa1\x73\x9d\xf3\x35\x17\xa6\x4b\ \x90\xcb\x12\x97\x76\x97\x17\x53\x6d\xa7\x8a\xa7\x6e\x9f\x7a\xcb\ \x95\xe5\x1a\xee\xba\xd2\xb5\xd3\xf5\xa3\x9b\xbb\x9b\xdc\xad\xd9\ \x6d\xd4\xdd\xcc\x3d\xc5\x7d\xab\xfb\x4d\x2e\x9b\x1b\xc9\x5d\xc3\ \x3d\xef\x41\xf4\xf0\xf7\x58\xe2\x71\xcc\xe3\x9d\xa7\x9b\xa7\xc2\ \xf3\x90\xe7\x2f\x5e\x76\x5e\x59\x5e\xfb\xbd\x1e\x4f\xb3\x9c\x26\ \x9e\xd6\x30\x6d\xc8\xdb\xc4\x5b\xe0\xbd\xcb\x7b\x60\x3a\x3e\x3d\ \x65\xfa\xce\xe9\x03\x3e\xc6\x3e\x02\x9f\x7a\x9f\x87\xbe\xa6\xbe\ \x22\xdf\x3d\xbe\x23\x7e\xd6\x7e\x99\x7e\x07\xfc\x9e\xfb\x3b\xfa\ \xcb\xfd\x8f\xf8\xbf\xe1\x79\xf2\x16\xf1\x4e\x05\x60\x01\xc1\x01\ \xe5\x01\xbd\x81\x1a\x81\xb3\x03\x6b\x03\x1f\x04\x99\x04\xa5\x07\ \x35\x05\x8d\x05\xbb\x06\x2f\x0c\x3e\x15\x42\x0c\x09\x0d\x59\x1f\ \x72\x93\x6f\xc0\x17\xf2\x1b\xf9\x63\x33\xdc\x67\x2c\x9a\xd1\x15\ \xca\x08\x9d\x15\x5a\x1b\xfa\x30\xcc\x26\x4c\x1e\xd6\x11\x8e\x86\ \xcf\x08\xdf\x10\x7e\x6f\xa6\xf9\x4c\xe9\xcc\xb6\x08\x88\xe0\x47\ \x6c\x88\xb8\x1f\x69\x19\x99\x17\xf9\x7d\x14\x29\x2a\x32\xaa\x2e\ \xea\x51\xb4\x53\x74\x71\x74\xf7\x2c\xd6\xac\xe4\x59\xfb\x67\xbd\ \x8e\xf1\x8f\xa9\x8c\xb9\x3b\xdb\x6a\xb6\x72\x76\x67\xac\x6a\x6c\ \x52\x6c\x63\xec\x9b\xb8\x80\xb8\xaa\xb8\x81\x78\x87\xf8\x45\xf1\ \x97\x12\x74\x13\x24\x09\xed\x89\xe4\xc4\xd8\xc4\x3d\x89\xe3\x73\ \x02\xe7\x6c\x9a\x33\x9c\xe4\x9a\x54\x96\x74\x63\xae\xe5\xdc\xa2\ \xb9\x17\xe6\xe9\xce\xcb\x9e\x77\x3c\x59\x35\x59\x90\x7c\x38\x85\ \x98\x12\x97\xb2\x3f\xe5\x83\x20\x42\x50\x2f\x18\x4f\xe5\xa7\x6e\ \x4d\x1d\x13\xf2\x84\x9b\x85\x4f\x45\xbe\xa2\x8d\xa2\x51\xb1\xb7\ \xb8\x4a\x3c\x92\xe6\x9d\x56\x95\xf6\x38\xdd\x3b\x7d\x43\xfa\x68\ \x86\x4f\x46\x75\xc6\x33\x09\x4f\x52\x2b\x79\x91\x19\x92\xb9\x23\ \xf3\x4d\x56\x44\xd6\xde\xac\xcf\xd9\x71\xd9\x2d\x39\x94\x9c\x94\ \x9c\xa3\x52\x0d\x69\x96\xb4\x2b\xd7\x30\xb7\x28\xb7\x4f\x66\x2b\ \x2b\x93\x0d\xe4\x79\xe6\x6d\xca\x1b\x93\x87\xca\xf7\xe4\x23\xf9\ \x73\xf3\xdb\x15\x6c\x85\x4c\xd1\xa3\xb4\x52\xae\x50\x0e\x16\x4c\ \x2f\xa8\x2b\x78\x5b\x18\x5b\x78\xb8\x48\xbd\x48\x5a\xd4\x33\xdf\ \x66\xfe\xea\xf9\x23\x0b\x82\x16\x7c\xbd\x90\xb0\x50\xb8\xb0\xb3\ \xd8\xb8\x78\x59\xf1\xe0\x22\xbf\x45\xbb\x16\x23\x8b\x53\x17\x77\ \x2e\x31\x5d\x52\xba\x64\x78\x69\xf0\xd2\x7d\xcb\x68\xcb\xb2\x96\ \xfd\x50\xe2\x58\x52\x55\xf2\x6a\x79\xdc\xf2\x8e\x52\x83\xd2\xa5\ \xa5\x43\x2b\x82\x57\x34\x95\xa9\x94\xc9\xcb\x6e\xae\xf4\x5a\xb9\ \x63\x15\x61\x95\x64\x55\xef\x6a\x97\xd5\x5b\x56\x7f\x2a\x17\x95\ \x5f\xac\x70\xac\xa8\xae\xf8\xb0\x46\xb8\xe6\xe2\x57\x4e\x5f\xd5\ \x7c\xf5\x79\x6d\xda\xda\xde\x4a\xb7\xca\xed\xeb\x48\xeb\xa4\xeb\ \x6e\xac\xf7\x59\xbf\xaf\x4a\xbd\x6a\x41\xd5\xd0\x86\xf0\x0d\xad\ \x1b\xf1\x8d\xe5\x1b\x5f\x6d\x4a\xde\x74\xa1\x7a\x6a\xf5\x8e\xcd\ \xb4\xcd\xca\xcd\x03\x35\x61\x35\xed\x5b\xcc\xb6\xac\xdb\xf2\xa1\ \x36\xa3\xf6\x7a\x9d\x7f\x5d\xcb\x56\xfd\xad\xab\xb7\xbe\xd9\x26\ \xda\xd6\xbf\xdd\x77\x7b\xf3\x0e\x83\x1d\x15\x3b\xde\xef\x94\xec\ \xbc\xb5\x2b\x78\x57\x6b\xbd\x45\x7d\xf5\x6e\xd2\xee\x82\xdd\x8f\ \x1a\x62\x1b\xba\xbf\xe6\x7e\xdd\xb8\x47\x77\x4f\xc5\x9e\x8f\x7b\ \xa5\x7b\x07\xf6\x45\xef\xeb\x6a\x74\x6f\x6c\xdc\xaf\xbf\xbf\xb2\ \x09\x6d\x52\x36\x8d\x1e\x48\x3a\x70\xe5\x9b\x80\x6f\xda\x9b\xed\ \x9a\x77\xb5\x70\x5a\x2a\x0e\xc2\x41\xe5\xc1\x27\xdf\xa6\x7c\x7b\ \xe3\x50\xe8\xa1\xce\xc3\xdc\xc3\xcd\xdf\x99\x7f\xb7\xf5\x08\xeb\ \x48\x79\x2b\xd2\x3a\xbf\x75\xac\x2d\xa3\x6d\xa0\x3d\xa1\xbd\xef\ \xe8\x8c\xa3\x9d\x1d\x5e\x1d\x47\xbe\xb7\xff\x7e\xef\x31\xe3\x63\ \x75\xc7\x35\x8f\x57\x9e\xa0\x9d\x28\x3d\xf1\xf9\xe4\x82\x93\xe3\ \xa7\x64\xa7\x9e\x9d\x4e\x3f\x3d\xd4\x99\xdc\x79\xf7\x4c\xfc\x99\ \x6b\x5d\x51\x5d\xbd\x67\x43\xcf\x9e\x3f\x17\x74\xee\x4c\xb7\x5f\ \xf7\xc9\xf3\xde\xe7\x8f\x5d\xf0\xbc\x70\xf4\x22\xf7\x62\xdb\x25\ \xb7\x4b\xad\x3d\xae\x3d\x47\x7e\x70\xfd\xe1\x48\xaf\x5b\x6f\xeb\ \x65\xf7\xcb\xed\x57\x3c\xae\x74\xf4\x4d\xeb\x3b\xd1\xef\xd3\x7f\ \xfa\x6a\xc0\xd5\x73\xd7\xf8\xd7\x2e\x5d\x9f\x79\xbd\xef\xc6\xec\ \x1b\xb7\x6e\x26\xdd\x1c\xb8\x25\xba\xf5\xf8\x76\xf6\xed\x17\x77\ \x0a\xee\x4c\xdc\x5d\x7a\x8f\x78\xaf\xfc\xbe\xda\xfd\xea\x07\xfa\ \x0f\xea\x7f\xb4\xfe\xb1\x65\xc0\x6d\xe0\xf8\x60\xc0\x60\xcf\xc3\ \x59\x0f\xef\x0e\x09\x87\x9e\xfe\x94\xff\xd3\x87\xe1\xd2\x47\xcc\ \x47\xd5\x23\x46\x23\x8d\x8f\x9d\x1f\x1f\x1b\x0d\x1a\xbd\xf2\x64\ \xce\x93\xe1\xa7\xb2\xa7\x13\xcf\xca\x7e\x56\xff\x79\xeb\x73\xab\ \xe7\xdf\xfd\xe2\xfb\x4b\xcf\x58\xfc\xd8\xf0\x0b\xf9\x8b\xcf\xbf\ \xae\x79\xa9\xf3\x72\xef\xab\xa9\xaf\x3a\xc7\x23\xc7\x1f\xbc\xce\ \x79\x3d\xf1\xa6\xfc\xad\xce\xdb\x7d\xef\xb8\xef\xba\xdf\xc7\xbd\ \x1f\x99\x28\xfc\x40\xfe\x50\xf3\xd1\xfa\x63\xc7\xa7\xd0\x4f\xf7\ \x3e\xe7\x7c\xfe\xfc\x2f\xf7\x84\xf3\xfb\x25\xd2\x9f\x33\x00\x00\ \x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\x00\x00\ \xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\x00\x00\ \x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x22\x42\x49\x44\ \x41\x54\x78\xda\xec\x9d\x77\x7c\xd4\x55\xd6\xff\x6f\x0a\x10\xaa\ \x28\x0a\x04\x97\x26\x25\xa0\x28\x02\x2a\x8f\x22\x48\x73\x7f\xc2\ \xc3\xcb\xe5\xa1\xae\x08\xcb\xfa\x28\x2c\xbb\xb6\x45\x40\x05\x54\ \x16\xc5\xb2\x2c\x2a\xee\x8a\x40\xea\x24\x31\x40\x1e\x22\xbd\x04\ \x29\xc1\x50\x05\xe9\x48\x48\x99\x96\x90\x42\x42\x48\xa6\x26\x53\ \xbe\xdf\xcf\xef\x8f\x6f\xe6\xeb\x4c\x66\x92\x4c\x2f\xc9\xf9\xbc\ \x5e\xe7\xa5\x42\x9c\xf9\x66\xee\x7d\xcf\xbd\xf7\x9c\x73\xcf\x61\ \x20\x91\x48\x0d\x8a\xd1\x47\x40\x22\x11\x20\x24\x12\x01\x42\x22\ \x11\x20\x24\x12\x01\x42\x22\x11\x20\x24\x12\x01\x42\x22\x11\x20\ \x24\x12\x01\x42\x22\x11\x20\x24\x12\x89\x00\x21\x91\x08\x10\x12\ \x89\x00\x21\x91\x08\x10\x12\x89\x00\x21\x91\x9a\x2f\x20\xc5\x00\ \x54\x64\x41\x67\xc5\x34\xc5\x83\x03\x10\x2d\x7d\x94\x41\x29\x1a\ \x97\x20\x01\x44\x45\x1f\x65\x50\x8a\xc6\x85\x00\x21\xd1\xb8\x10\ \x20\x24\x1a\x17\x02\x84\x44\x80\x10\x20\x24\x02\x84\x00\x21\x11\ \x20\x04\x08\x0d\x04\x01\x42\x80\xd0\x40\xb8\x2e\x8e\xe3\xc0\x73\ \x1c\x00\xde\xea\x4f\x79\x2b\x03\xc0\x9b\x00\x70\x50\x69\xb4\xc8\ \x2b\xaf\xc6\xd5\x72\x0d\x7e\xa9\xa8\x11\xed\xda\x6d\x35\xf4\x3a\ \x2d\x00\x33\x00\x1e\x1c\xcf\xd3\xb8\x10\x20\xcd\x41\x56\x13\xd9\ \x6c\x84\xa2\x4a\x87\x4b\xe5\x3a\x64\x29\x2a\xf1\x59\x76\x2e\x66\ \x1c\x2e\xc2\xd4\x63\xe5\x98\x74\xa8\x18\x93\x7f\x2c\xc6\xa3\xe9\ \xb9\x68\x1b\x77\x0d\x2c\x36\x07\x2c\x41\x56\x67\x72\x84\xc5\xe5\ \xe0\xe9\x1d\x32\x2c\x3d\x5d\x8a\x62\xb5\xde\x16\x2e\x1a\x17\x02\ \x24\x14\x56\x09\x8e\x33\x5b\xff\x09\xd4\xb5\x46\xc8\xab\xf4\x90\ \x5c\x29\xc2\xa2\x53\xb7\xf1\x87\x03\x72\x74\x91\xe4\x80\x49\x14\ \x60\x49\x72\xb0\x78\x29\x58\xbc\x0c\x2c\x5e\x0e\x96\x50\x67\x49\ \x4a\xb0\xe4\x42\xb0\x14\x25\x58\xb2\xc2\xca\x94\x60\x89\x0a\xb0\ \x38\x19\x1e\x4c\x93\xe2\xa0\xec\x2e\xc0\x99\x00\xd7\x56\x12\x02\ \x84\x00\xf1\x3f\x18\x16\x20\x60\x32\xe0\xb6\x5a\x8f\x94\xeb\xa5\ \x58\x76\xa6\x0c\x31\x5b\x6e\xa2\x5d\xaa\x12\x2c\xbe\x00\x2c\x4e\ \x26\x4c\xf0\xe4\xfa\x13\xdf\x0d\x4b\x52\xa0\x6d\x52\x01\xf6\x17\ \xdc\x01\x78\x0e\xbc\xf3\x90\x10\x20\x04\x88\x8f\x37\x4c\x3c\x6f\ \x05\x05\x00\x98\x51\x78\x47\x85\xa4\x9c\x0a\x4c\xd9\x93\x8f\x07\ \xd2\xe4\x60\x71\x79\x60\x71\x72\x30\x89\x52\x58\x2d\x92\x7d\x60\ \x89\x0a\xf4\xdc\x26\x45\x85\xb6\xc6\x95\x55\x84\x00\x21\x40\x7c\ \x0b\x87\x65\xef\x5f\x5b\x5b\x8b\x3d\x05\x77\x30\xfb\x80\x14\xdd\ \xbe\x97\x82\x6d\xce\x07\x4b\x54\x82\x25\x79\x69\x95\x70\xc6\xe2\ \xa4\xf8\xf2\x6a\x25\x00\xa7\x57\x11\x02\x84\x00\xf1\x2e\x10\xf5\ \x27\x5e\x61\x95\x16\x9f\x9d\x2d\xc4\xa3\x19\x72\xb0\xd8\x3c\xb0\ \x04\x85\x7f\xa1\xb0\xb6\x04\x05\x26\xed\x97\xc3\x6c\xac\x25\x40\ \x08\x90\x00\x9e\x2f\x38\x13\x72\xef\xea\xf1\xf6\xe9\x32\x44\xa7\ \xe4\x79\xf7\x3c\xe1\x89\x49\x14\x68\x2d\x29\x40\xa1\xc6\x48\x5b\ \x2c\x02\x24\x10\x4b\x88\x09\x97\xca\x54\x78\xf9\x48\x21\xa2\x52\ \x64\x82\xc7\x49\x12\x60\x28\xea\x01\x12\x91\xaa\x44\x5e\x75\x2d\ \x01\x42\x80\xf8\xe7\xf0\xcd\x73\x66\x00\x1c\xa4\x77\x75\x58\x90\ \x55\x88\x36\xc9\x52\xc1\xfd\x2a\x51\x04\x0f\x18\x22\x20\x4a\x44\ \xa7\xdc\x44\xb9\x96\x00\x21\x40\x7c\x0e\x88\xb0\x9d\x52\xeb\xf4\ \xf8\xe7\x2f\xa5\xe8\x92\x9c\x27\xc4\x27\x82\x11\x0c\xf1\x90\x2e\ \xc7\xc2\xec\x12\xc0\x6c\xa4\x33\x08\x01\xe2\xe3\x73\x06\x6f\xc2\ \x8e\x9c\x32\x3c\xf2\x7f\x52\xb0\x38\x69\x70\x6d\xa5\x1c\x9a\x12\ \x2c\x5e\x8a\xe4\x1b\xe5\x2d\xde\xbb\x48\x80\xf8\x58\xb9\xa5\x95\ \x78\xf5\x68\x21\xc2\xe2\xf2\xea\x0e\xdf\x8a\xe0\x87\x23\x4e\x86\ \x89\xbb\xf2\x60\x34\x9a\x08\x10\x02\xc4\xbb\x67\x0d\x71\x3b\xc2\ \x99\x90\x91\x57\x81\xdf\xa5\xd5\x45\xba\x93\x95\xc1\x0f\x87\x44\ \x01\x16\x2b\xc5\xa0\x74\x29\xe4\x77\xb5\x62\x90\x90\xb6\x58\x04\ \x88\xe7\x70\x00\x62\xbe\x54\xa5\x4e\x8f\xd7\x8e\x15\x82\xc5\xe5\ \xd6\xe5\x3f\x05\xc9\xe4\x97\x58\xdc\xc7\x85\x60\x92\x42\xe1\xd9\ \x12\x15\xc2\x79\x28\x4e\x86\x36\x12\x19\xe6\x1f\x51\x42\x71\x47\ \x05\x80\xaf\xcb\x01\xe3\x68\x05\x21\x40\x3c\x97\xd9\x64\x02\x60\ \x46\x76\x51\x15\x86\xa7\xe7\x0a\x41\xbe\x80\xac\x1a\x4a\x61\xe2\ \x27\xc8\x85\xf3\x4e\x42\x01\x98\x44\x8e\x88\x14\x05\x22\x53\x95\ \x68\x27\xc9\x43\x1f\xc9\x55\xc4\x24\x5f\xc5\x73\x19\x39\xf8\xef\ \xbd\xf9\x98\x7f\xbc\x18\x6f\x9e\x2e\xc3\xf9\x12\x15\x00\x01\x08\ \xb3\xd9\xec\xca\xea\x41\x80\x10\x20\x8e\xb7\x54\x66\x33\x07\x98\ \x4d\x80\xb1\x16\x49\xd7\x6f\xa3\x43\x6a\x5d\xe6\xac\x3f\x81\x48\ \x54\x08\x71\x94\x44\x05\xc2\x12\x72\x31\x2c\xfd\x26\xa6\x1e\x29\ \xc1\x82\xe3\x45\x48\xf8\x45\x81\x13\x85\x95\xb8\x76\x47\x07\xa9\ \xda\x88\x52\xad\x01\xd5\x3a\x3d\x54\x5a\x1d\x0c\x35\x7a\xf0\xc6\ \xda\xba\xfb\x22\x96\xbb\x23\xbc\xc3\x28\x3f\x01\x42\x80\xb8\xe7\ \xa5\xe2\xcd\xa8\x31\x18\xb0\xe8\x48\x01\x58\x7c\x7e\x5d\x6a\x88\ \x1f\xb6\x4b\x09\x72\xb0\x78\x19\x5a\xc7\xe7\x60\xe4\x2e\x25\x5e\ \x3b\x5c\x80\x1d\x39\x65\xb8\x52\xae\x85\x46\xa3\xa9\x9b\xf4\x36\ \x1b\x40\x71\x75\xf0\x91\x08\x10\x02\xc4\x76\xf5\x00\x00\xb5\xbe\ \x16\x53\x0e\x28\xc1\x36\x17\xf8\x76\x4b\x25\x11\xb2\x6c\x59\xac\ \x14\x5d\x52\x0b\x30\x6e\x8f\x0c\x09\x57\x4b\x71\xb9\x4c\x05\xde\ \x68\xb0\x02\xc1\xf6\x66\xa1\x9b\xab\x01\x01\x42\x80\x78\x44\x07\ \x00\x1e\xbf\x96\xdd\xc5\xc8\x5d\x75\x87\x5c\x5f\x82\x11\x27\x43\ \xab\x64\x39\xfe\x6b\xa7\x14\xdf\x5e\x2a\x45\x41\x45\x75\xdd\x6a\ \xc0\x07\xd3\xf8\x12\x20\x2d\x1d\x10\xe1\xcc\x21\x1c\x5e\x2f\x15\ \x55\xe0\xe1\xf4\x7c\xdf\x9d\x37\x24\x4a\xb0\x04\x19\x3a\x26\xe7\ \x63\x61\xd6\x2d\xfc\x54\x54\x0d\xf0\x1c\x84\x7b\xe3\xbf\xad\x0e\ \x04\x08\x01\x12\x3c\x80\x70\xc2\x3e\xfe\x94\xfc\x36\xfa\x6f\xc9\ \xf5\x4d\xe0\x4f\x22\x78\xa0\x3a\x27\xe7\x61\xc9\x89\x42\x28\xab\ \xb4\x36\x2b\x45\x90\x41\x41\x80\x10\x20\xb6\x3a\x25\x2f\x43\x9f\ \xd4\x9b\xbe\x81\x23\x41\x8e\x7b\x92\xf2\xf0\xde\xa9\x22\xdc\x2c\ \xaf\x06\x38\xa3\xaf\x0f\xd6\x04\x08\x01\xe2\xd9\x96\x8a\xe7\xf9\ \xba\x95\x03\xb8\x5c\x5c\x89\x87\xbe\xf7\xc1\xca\x91\xa8\x00\x8b\ \x2f\xc0\xd4\x03\x32\x5c\x29\xa9\xb2\x39\xeb\x04\xf1\x8a\x41\x80\ \xd0\x0a\x62\xd9\xd2\x70\x28\xa8\xa8\xc6\x23\xe9\x05\x75\x01\x40\ \x6f\x1e\xc0\xe5\x18\xb8\x35\x0f\xdb\x73\xca\x00\xb3\x41\xa8\x26\ \x12\x9a\x22\x40\x5a\x1a\x20\x66\xb3\x19\xe0\x39\x54\xea\x6a\x31\ \x72\x97\xd2\xbb\xde\xaa\x24\x05\x22\x93\xa4\x58\x7c\x5c\x81\x4a\ \x5d\x8d\xb0\x95\x0a\xad\x15\x83\x00\x69\xc9\x80\xf0\x3c\x0f\xb3\ \xc9\x08\x5d\x6d\x2d\xfe\xdf\x9e\x02\xef\xc2\x91\x20\x47\x9f\xd4\ \x9b\x38\x54\xa8\x06\x78\x23\xc0\x99\x5d\xc9\x79\x22\x40\x08\x90\ \xc0\x0e\x84\x70\xf6\x10\x52\x48\xde\xcb\x96\x83\xc5\xe6\x7b\x29\ \x08\x28\xa4\x92\xcf\x38\x5c\x04\xd9\x1d\x21\x96\x21\xde\x36\x0c\ \xdd\x95\x83\x00\x69\x49\x80\x58\x47\x9e\xb7\xe6\xdf\x45\x44\xa2\ \x97\xee\x8a\x4b\x94\x88\x88\xcf\xc3\xdb\xc7\xe5\xa1\x7c\xce\x20\ \x40\x5a\x3a\x20\x5c\x5d\x21\xe8\x13\x8a\x0a\x44\x25\x79\x29\xb7\ \x2a\x49\x81\xb6\x92\x02\x24\x5e\x2e\x12\x72\xa4\x42\x7f\xb5\x20\ \x40\x5a\x22\x20\x96\xe2\x6d\x35\x26\x33\x46\xee\x90\x79\x27\x4a\ \x9e\x20\xc7\x7d\x69\x0a\xec\xca\xbd\x8d\xdf\xa2\xe0\x20\x40\x48\ \xa1\xb8\x82\x08\x2e\xdd\xbf\x65\x09\xee\x57\x8f\xe1\x88\x97\xa1\ \xe7\x56\x39\xce\x97\xaa\x00\xde\x04\xb3\xd9\xd4\x1c\xce\x1a\x04\ \x48\x8b\x5d\x41\x38\x0e\x7b\xa4\x95\x88\x4a\x92\x7a\x5e\x71\x24\ \x41\x8e\x3e\xdb\xe4\xb8\x79\x57\x0f\xc0\xdc\x5c\x0e\xe2\x04\x48\ \xcb\x05\x84\x47\x71\xb5\x0e\x0f\xa5\x79\x21\x52\x9e\xa8\x40\xcf\ \xf4\x42\x5c\xad\xd0\xc0\x85\xda\xb6\x04\x08\x01\x12\xa4\x03\xc1\ \x73\x00\xcf\xe1\x9d\x53\xb7\x3c\x8f\x94\x4b\x94\xe8\x24\x29\xc0\ \x21\x59\x25\xc0\x19\x61\x36\x9b\x09\x10\x52\xe8\x02\x62\x69\x5f\ \x96\xad\xbc\x8b\xb6\x89\xf9\x1e\x6e\xad\x94\x88\x4a\xcc\xc3\xf7\ \x57\x8a\x00\xde\x0c\x9e\x6f\x31\xab\x07\x01\xd2\x9c\x57\x10\xa3\ \xc9\x88\xe7\xf6\x78\x7a\x97\x5c\x09\x16\x9b\x8f\x2f\xce\xc8\x01\ \xde\xdc\x5c\x5d\xb9\x04\x48\xcb\x03\x84\x47\xfc\x95\x62\xa1\xe8\ \x81\x87\x87\xf2\xf9\xc7\x6e\xc1\x6c\x36\xb6\xd4\xf1\x25\x40\x9a\ \x13\x20\x96\x98\xc7\x6d\xb5\x16\xfd\xb7\x7a\x18\x10\x4c\x90\x63\ \xd4\x0f\xb9\xa8\xd2\x68\x85\xad\x15\x01\x42\x0a\x75\x40\x84\x22\ \x6f\x66\xac\x3b\x57\x24\xd4\x8f\xf2\x20\x4a\xde\x35\x4d\x81\x0b\ \x65\xea\x96\x3e\xbe\x04\x48\x73\x01\x44\x28\xd7\xc3\xa3\x5c\xad\ \x43\xaf\x34\x0f\x57\x8f\x38\x29\xd6\x5f\x2c\x01\x5a\xea\xba\x41\ \x80\x34\xc7\x15\x84\x07\x78\x0e\x9f\x9c\x2d\x02\x8b\x95\xba\x9f\ \xa9\x1b\x2f\xc7\xc4\x7d\x72\x18\x8d\x06\xf1\xd6\x21\x01\x42\x0a\ \x7d\x40\x78\x1e\x95\x1a\x1d\x7e\xb7\x25\xdf\xfd\xa0\xa0\x44\x81\ \x8e\x29\x32\xfc\x52\x52\x05\x4b\x1d\x5b\x02\x84\xd4\x6c\x56\x90\ \xd8\x6b\xb7\xc1\x62\x0b\x3c\xca\xb3\x5a\x7e\xaa\xb0\x6e\x35\x0a\ \x8d\xed\x15\x6f\x36\xd5\x95\x0e\xb2\x2d\x2e\x27\xfc\x83\x83\xd1\ \x68\xf4\x04\x74\x02\xa4\x39\x00\x62\xb9\x0c\x35\x72\xb7\xd2\xfd\ \xd5\x23\x49\x81\x7e\xdb\xf2\x51\xae\xd6\x05\x3b\x12\x56\xff\x6e\ \x82\x5a\xad\x41\xa1\xba\x06\xf9\x2a\x03\x7e\x92\xdf\xc1\xd6\x2b\ \x4a\x6c\xbf\x56\x88\xab\x15\x3a\x14\xab\x6b\x00\x83\xbe\xee\x33\ \xe2\xa8\x36\x6f\x4b\x02\x84\xb7\x2a\xc8\xcc\x73\x26\x1c\x2e\x52\ \xa3\x8d\xc4\x83\x16\x68\xf1\x52\xc4\x5e\x2d\x15\x02\x82\x41\xa4\ \xfa\x09\x91\x9c\xd9\x04\xd9\x1d\x35\x36\x5d\x2a\xc6\xdf\x4e\x96\ \x61\xf8\x96\x6b\x68\x9f\x5c\x80\xd6\xdf\x2b\x11\x26\x91\x0b\x95\ \xdf\x13\xa5\x88\x4c\x51\xa2\x73\x72\x1e\xe6\x1e\x92\xe3\x74\xd1\ \x5d\x80\x33\x81\x33\x9b\x08\x90\x16\x07\x08\x27\xdc\x33\xff\xf3\ \xb1\xc2\xba\xa6\x36\xee\x25\x22\x3e\x9a\x21\x85\xae\xd6\x10\x54\ \x5b\x2b\x8e\xb3\x14\xa7\xe6\x51\xa1\xd6\x21\xf6\x6a\x29\x7e\xbf\ \x3b\x1f\x9d\x52\xa4\xc2\x95\xe1\x78\xb9\x70\x33\x52\xec\x13\x52\ \xaf\xba\x4a\xb2\x12\x2c\x5e\x81\xa8\x84\x5c\x7c\xf9\xb3\x42\xa8\ \x58\xef\x5a\x11\x09\x02\xa4\x39\x6c\xb1\x8a\xd5\x7a\x74\x4c\x75\ \x3f\x9d\x3d\x2c\xbe\x00\x69\x37\x6e\xdb\x80\x17\xd0\x4d\x94\xf8\ \xfe\x3c\x6e\x55\x6b\xf1\xd1\x99\x5b\x78\x70\x8b\x54\x38\x5f\x25\ \x2a\x5d\xff\x3d\x25\x4a\xb0\xcd\x39\x88\xfd\x45\x01\x17\xcb\x9b\ \x12\x20\xcd\x01\x90\x7f\x5f\x2a\x01\x8b\x97\xba\xbd\x7a\x0c\xdd\ \xa9\x40\xad\xc1\xe0\x6a\xf7\x25\xaf\x43\xc1\x59\xc1\x59\xad\xd6\ \xe0\x5f\x17\x4a\x11\x9d\x5a\xd7\xee\xcd\xd3\x6b\xc2\x49\x4a\x74\ \x4d\x2b\x80\xb4\x52\x53\x77\xa8\x27\x40\x5a\x04\x20\x66\x93\x01\ \xff\x7d\x50\xe9\x7e\x4a\x7b\xbc\x14\x9b\xae\x94\xd8\x78\xae\x02\ \xb1\x82\x70\x1c\x07\xce\x64\x02\xc0\xe1\x44\x61\x25\x46\xfc\x20\ \x13\xda\x2f\x78\xb3\x37\xc9\xe6\x02\x7c\x72\x81\xba\xdc\xb6\x98\ \x33\x08\x00\xe4\x54\xa8\xd1\x26\x31\xcf\xbd\xc0\x60\x92\x02\xbd\ \xb6\xe6\xa3\x42\xa5\x11\x5e\x2f\x00\x60\x58\x4a\x04\x09\x94\x98\ \xf0\xc5\xf9\x12\xb4\x8d\xbf\x29\x6c\xa5\xbc\x5d\x27\x38\x51\x89\ \xf1\x7b\x64\xd0\xd5\xd4\x38\xfb\xbb\x12\x20\x21\x0b\x48\xdd\x3f\ \xbf\xbb\x50\x04\x96\x20\x73\x3b\x21\x71\xd9\xc9\x5b\x08\xe4\x0d\ \x41\xb1\xa8\x44\x6d\x2d\x5e\xcf\xbe\x25\x6c\x15\x7d\xd5\x73\x5d\ \xa2\x40\x64\x52\x01\xa4\xd5\xb5\xb4\x82\xb4\x88\x2d\x16\xcf\x61\ \xca\x41\xa5\xdb\x69\xed\xed\x93\xf2\xf1\x4b\xa9\x1a\x81\xca\xb9\ \xb2\xac\x1c\xe5\xd5\x6a\xcc\x3a\x58\xe0\xdb\xa6\x3d\x16\x40\x52\ \x0b\x51\xa0\x32\x38\xfb\x3b\x13\x20\xa1\x0c\x48\x79\xb5\x0a\x7d\ \xd3\x72\xdd\xfb\xc6\x4d\x90\x63\xf4\xfe\x22\x70\x01\x2a\xf8\xc6\ \xd5\xd5\x08\xd6\xd5\xd4\xe0\x7f\xf6\xe5\xbb\xef\xa2\x76\xd1\x9b\ \xd5\xfb\xfb\x9b\x28\xbe\xab\x86\x93\x2d\x18\x08\x90\x50\x04\xc4\ \x52\x9d\xfd\x68\xa1\x0a\x2c\xce\xcd\x3e\x82\x09\x32\x7c\x75\xa1\ \x38\x40\x5b\x2a\x61\x93\x58\x5b\x5b\x83\x57\xb3\x8a\x7c\xbf\x72\ \x88\x59\xca\x72\xfc\xed\x54\x99\x50\x3b\x98\xb6\x58\xcd\x1f\x90\ \x4f\x4e\xba\x7b\xa5\x56\x89\xb0\x84\x7c\x5c\xab\xd0\x02\x5c\x00\ \x22\xe7\x75\xe7\x8e\xf7\xcf\x14\xfb\x67\xe5\xa8\xdb\x5e\x85\x25\ \x4a\x71\x54\x59\x0d\x17\x62\x21\x04\x48\x28\x6f\xb1\x84\x3b\xe7\ \x32\xb7\x62\x1f\xcf\xee\x92\xa1\xa6\xb6\x26\x60\x1f\xdc\xce\x9b\ \x65\x60\xb1\xb9\xfe\xeb\xbd\x1e\x27\xc7\xff\xfe\x24\x5c\x1f\xa6\ \x40\x61\x0b\x00\xa4\x4a\xad\x45\xbf\xff\x93\xba\x17\x27\x88\x2d\ \xc0\xa2\xec\xe2\xc0\x7c\x62\x3c\x8f\x5b\x55\x1a\xf4\xdd\x26\xf5\ \x5f\xff\xf5\x58\x29\xa6\x1e\x54\xe0\xae\x46\x07\x17\xdb\xbf\x11\ \x20\xa1\x0a\xc8\x09\x65\x25\xc2\x37\xdf\x00\x4b\x2e\x74\x79\xd2\ \x84\x27\xc9\xb0\x2f\xaf\x2c\x30\x5b\x2b\xde\x84\x45\x59\x4a\xb0\ \x58\x99\xf7\x1b\x85\xc6\xcb\x05\x8f\x5e\xbc\x4c\xb8\x72\x9c\x20\ \x43\xb7\xd4\x7c\xac\x3a\x53\x04\xb5\xae\x06\xe0\x5d\xce\x14\x20\ \x40\x42\x0d\x10\x61\x7b\x60\x46\xba\x4c\xe3\xde\xfe\x5d\xa2\x40\ \x9b\x14\x19\x4a\xf4\xfe\xf5\x5e\x59\x26\xe6\xb9\xe2\x2a\xb4\x76\ \x37\xb0\xd9\x40\xf7\x5c\x16\x2f\x45\xd7\xe4\x9b\x98\x72\xa4\x0c\ \xff\x73\xec\x36\x66\x1e\x2b\xc5\x9f\x7e\x94\x61\xeb\xf5\x12\x94\ \x68\x6b\xeb\x5c\xba\x3c\xa5\xbb\xb7\x9c\x15\x84\xc3\x9a\x33\x85\ \xee\x1d\xd0\x93\x94\x78\x32\xfd\x06\xf4\x06\x83\xff\xdd\xba\x9c\ \x09\x73\x7e\x94\x7b\xa9\xc2\xbc\x02\x51\x49\xf9\x98\x76\x50\x86\ \xdd\xf9\x77\x50\x78\x57\x83\xdf\x62\x1b\xbc\xdd\x97\x8a\x9b\x81\ \x50\x02\x24\x24\x01\xe1\x39\x3c\xbb\x3d\xc7\xbd\xcb\x51\x71\x32\ \x2c\xfb\xa5\x32\x10\x87\x0f\xfc\x52\x5c\x85\xb6\x49\x05\x9e\x55\ \x7a\x94\x08\x2e\xea\xc9\x7b\xa4\x38\xa1\xbc\x23\x9c\x29\xac\x63\ \x39\x56\xa9\x2b\xbc\xe7\xb9\x65\x04\x48\xe8\x01\xc2\x83\xe3\x39\ \x0c\xdc\x51\x04\x96\x28\x77\x2b\x61\x6f\x8d\x6b\x09\x7b\x5e\x40\ \x03\x30\x9b\x4d\x78\xcf\x53\xb7\xae\x44\x01\x96\x28\xc7\xbf\xaf\ \x57\x82\x37\xd6\x7a\xba\x3a\x10\x20\xcd\x15\x10\xa3\xd9\x8c\xfe\ \x3b\x6e\xb9\x0e\x88\x44\x89\x88\xf8\x5c\xec\xf9\xb5\xc8\xef\x87\ \xf3\x4a\x6d\x0d\x7a\x6c\xf1\xc0\x73\x25\x51\x20\x3c\x41\x8a\xc4\ \x1b\x77\x00\xde\x24\x6c\xd9\x7c\x2f\x02\x24\x14\xb7\x58\xf9\xb7\ \xab\x70\x5f\xaa\x1b\xa9\xe0\x49\x72\xdc\xb7\x55\x89\x62\x8d\xff\ \xe3\x1f\x99\xd2\x0a\xb4\xf1\xa0\x47\x49\x78\xa2\x1c\x1b\xae\xdf\ \xa9\x3b\x6c\xfb\x2d\xb9\x92\x00\x09\x45\x40\x0e\xdc\xb8\x05\xb6\ \xf9\x86\xeb\x9e\xa0\x24\x39\xba\xa6\x17\xa1\xda\xc8\xc1\xbf\x09\ \x8a\x3c\x96\x9f\xaf\xa8\xab\xd7\xe5\x5e\xb5\x95\x79\x3f\xca\x00\ \x93\xdf\xaf\x04\x13\x20\xa1\x08\x48\xca\x8d\x0a\xb0\x4d\xb9\x6e\ \x00\xa2\xc0\xc0\xb4\x1c\xd4\x18\xfc\x53\x8c\xda\xf2\x2d\x6f\x36\ \x1b\xf1\xe2\xbe\x02\xf7\x9c\x0a\x49\x4a\xf4\x48\xcd\x43\x51\x95\ \x16\x01\xc8\x3a\x26\x40\x42\x09\x10\xcb\x84\x8b\xcb\x55\xb9\xf7\ \x6d\x9c\xa4\xc4\xb8\xf4\xab\x30\xd5\xf8\x77\x8b\x75\x4b\x63\x40\ \xfb\x64\x37\xbd\x57\xb1\x52\xac\x39\x57\x0c\x20\x20\xd7\x81\x09\ \x90\x50\x01\xc4\x3a\x0b\xf6\xdf\x37\x54\xee\x79\x83\x12\x15\x98\ \xb9\x3b\x47\xd8\xaa\xf8\x51\x17\x4b\x55\x68\x95\xa2\x70\xa3\xd8\ \x82\x02\xdd\xbe\x2f\x40\x6e\xb9\xaa\xde\x67\x40\x80\x10\x20\x8d\ \xe8\xdf\x39\x6a\xf7\x00\x49\x90\xe3\x8d\x2c\x85\xdf\x6a\x5f\x59\ \x26\xf4\xd1\x82\xdb\x08\x97\x48\xdd\x7a\xde\xa7\xf6\x16\x41\x68\ \x35\x1d\x90\x4b\x5d\x04\x48\xe8\xad\x20\x1e\x00\x12\x2f\xc7\xca\ \xb3\x25\x00\xfc\xd3\x63\xd0\xf2\x1e\xdf\x9e\x95\x82\xc5\xe5\xbb\ \x05\xc8\xdf\x7e\xcc\x45\x00\xab\xcc\x13\x20\x21\xb5\x82\xd4\x4d\ \x38\xb7\x01\x89\x93\xe3\xb3\x8b\xe5\xf0\xf7\x1d\xf4\x7f\x9c\x94\ \x09\x85\xde\xdc\x00\x24\xf9\x7a\x59\x20\xc7\x97\x00\x69\x51\x2b\ \x48\x9c\x0c\x5f\x5f\xaf\x82\x25\x96\xe0\x2f\xad\x39\x29\x75\x1b\ \x90\xed\xf9\x95\x04\x08\x01\xe2\xca\x40\x70\xf8\xda\xdd\x43\x7a\ \xac\x14\xeb\x6f\xf8\xaf\x6b\x94\x05\xea\xb4\x2b\x4a\xa1\x66\xae\ \x1b\x80\xec\x55\x6a\x68\x8b\x45\x80\x38\x37\x10\x5c\x5d\x7b\xe7\ \xed\x39\xb7\xc1\x62\x5d\x4d\x19\x57\xa2\x55\x42\x1e\x0e\xcb\x2a\ \xfc\xe6\x11\xb2\xbc\xc7\x95\xdb\x6a\x30\x97\xa3\xe8\x4a\x44\xc4\ \xe5\xe1\x54\x49\x40\xdb\xc0\x11\x20\xa1\xe8\xc5\xd2\xd4\xd4\xa0\ \x7f\x86\xc2\xb5\xc0\x5b\xa2\x12\x8f\x6c\x2f\x40\xad\xc1\xe9\x92\ \x37\x5e\x93\xce\x68\xc6\x98\x3d\x0a\xd7\xd2\xdc\x13\xe4\x18\xb3\ \xaf\x10\x46\x83\xc1\x95\x52\xa1\x04\x48\x4b\x07\x84\xe7\x39\x80\ \x37\x41\x72\xb5\x04\x6c\xb3\xb3\xab\x88\x12\x6c\x73\x2e\x52\x7f\ \x2d\x0d\xd8\x07\xb5\x5f\x5e\x85\x56\x89\x2e\xac\x22\xb1\xf9\xd8\ \x91\x57\x6e\xb5\x72\x12\x20\x04\x88\xd3\xdb\x16\x1e\x46\x93\x01\ \xaf\x1e\x13\xd2\xd7\x1b\xad\x8b\x25\x51\x82\x6d\xca\xc7\x5f\x8e\ \xca\xc0\x71\xe6\xc0\x54\x50\xe4\x79\xc0\x6c\xc4\x87\xa7\x94\x60\ \x9b\xf3\x1b\x7f\xde\x24\xa1\x89\xe8\xca\xf3\xb7\x01\xce\xe4\xcf\ \xc4\x44\x02\xa4\xb9\x6c\xb1\xea\x66\x1d\x4c\x46\x03\x3e\x3a\x29\ \x54\x48\x64\xf1\x72\x21\xfd\xdd\xda\xe2\xe4\xe8\x28\xc9\xc7\x87\ \xa7\x94\x30\xd7\x15\x6a\x0b\xd8\x64\xe3\x79\x18\x0d\xb5\x58\x77\ \xb1\x14\x1d\x93\xf2\x85\x7b\xe3\x0e\x9e\xb7\x4b\x52\x2e\xd6\x9e\ \x2f\x16\xe0\x30\x07\xbc\x99\x0f\x01\x12\xaa\x80\x70\x1c\x27\xd4\ \xb4\xe2\x8c\x38\x5f\x5c\x85\x37\x8f\x14\xe0\xe1\x1f\x94\x18\xbc\ \xab\x04\x83\x77\x95\xe0\xe1\x0c\x39\x56\x64\x2b\x70\xe5\xb6\x0a\ \x00\xe7\x6a\xe3\x18\xdf\x1c\xd8\x79\xa1\x21\xce\xb5\x72\x35\x96\ \x1e\x97\x63\x70\x86\x42\x7c\xde\x47\x33\x64\x58\x75\x52\x81\xdc\ \x0a\x35\xc0\x9b\x60\x36\x99\x04\xa8\x09\x10\x02\xc4\x93\x81\x10\ \x26\x9e\x19\xe0\x4d\xe2\x7f\xff\x06\x82\x90\xa2\xc1\x73\x5c\xd0\ \x34\xc5\xb1\x7d\x8e\xdf\xda\xc8\x59\x37\xe2\xe4\x82\xe0\x79\x09\ \x90\x66\x04\x08\xc7\x71\x42\x4f\xf3\xba\x16\x06\x96\x7f\xb7\x80\ \x11\x0c\xed\x9c\xeb\x5f\x8d\x15\xdb\x2d\x58\x9e\x39\x38\xbb\xea\ \x12\x20\xa1\x0e\x08\x89\x00\x21\x40\x48\x04\x08\x01\x42\x22\x40\ \x08\x10\x1a\x08\x02\x84\x00\x71\x43\x5a\xfa\x28\x83\x52\x34\x2e\ \x41\x02\x48\x71\xdd\xb7\x15\x59\x70\x59\x71\x28\x4d\xc6\xb5\x6b\ \xd7\x42\x22\x91\x34\x4b\x40\x48\x1e\xaa\xa6\xa6\x06\x5a\xad\x16\ \x6a\xb5\x1a\x6a\xb5\x1a\x2a\x95\x0a\x2a\x95\x0a\xd5\xd5\xd5\xa2\ \x55\x55\x55\xf9\xc4\x2c\xaf\xaf\x52\xa9\xa0\x56\xab\xa1\xd5\x6a\ \xa1\xd7\xeb\xfd\xea\x5e\xff\xd7\xbf\xfe\x05\xc6\x18\x22\x22\x22\ \xb0\x6d\xdb\x36\x02\x84\x24\x28\x27\x27\x07\x93\x26\x4d\x42\xff\ \xfe\xfd\xd1\xbb\x77\x6f\xfc\xee\x77\xbf\x43\x8f\x1e\x3d\xd0\xa3\ \x47\x0f\x44\x47\x47\xa3\x7b\xf7\xee\xe8\xd6\xad\x1b\xba\x75\xeb\ \x86\xae\x5d\xbb\xfa\xc4\xba\x75\xeb\x86\xee\xdd\xbb\x23\x3a\x3a\ \x1a\x3d\x7a\xf4\x40\xaf\x5e\xbd\xd0\xaf\x5f\x3f\x3c\xf6\xd8\x63\ \x98\x3d\x7b\x36\x2a\x2a\x2a\x7c\xfa\x19\x7c\xf8\xe1\x87\x60\x8c\ \xd9\xd8\x99\x33\x67\x08\x90\x96\x2e\x8d\x46\x83\x47\x1f\x7d\xd4\ \x6e\x72\x04\x9b\xcd\x9c\x39\xd3\x67\x81\xd0\x0f\x3e\xf8\xc0\xee\ \xfd\xfe\xf4\xa7\x3f\x41\xab\xd5\x12\x20\x2d\x5d\xa7\x4f\x9f\x0e\ \x7a\x38\x18\x63\xb8\xef\xbe\xfb\x50\x5d\x5d\xed\x17\x38\xfe\xfc\ \xe7\x3f\x03\x00\x74\x3a\x1d\xa6\x4c\x99\x82\x4d\x9b\x36\x05\x34\ \x4b\x81\x00\x09\xa0\x4e\x9e\x3c\xe9\xd1\xc4\x1d\x3e\x7c\x38\x66\ \xce\x9c\x89\x59\xb3\x66\x61\xd6\xac\x59\x98\x3d\x7b\x36\xfe\xf8\ \xc7\x3f\x3a\xb4\xc1\x83\x07\xbb\xfd\x3e\x9d\x3a\x75\x42\x49\x49\ \x89\xcf\xb7\x55\xd6\x70\x3c\xff\xfc\xf3\x60\x8c\x61\xfa\xf4\xe9\ \x04\x48\x4b\xd5\xa9\x53\xa7\x3c\x02\xe4\xf0\xe1\xc3\x4e\xbf\xd7\ \x37\xdf\x7c\xe3\xf6\xfb\x74\xe8\xd0\x01\x45\x45\x45\x3e\x85\xe3\ \x95\x57\x5e\xb1\x83\xe3\x0f\x7f\xf8\x03\xf4\x7a\x3d\x00\xe0\xd7\ \x5f\x7f\x25\x40\x08\x10\xe7\x2d\x3c\x3c\x1c\x57\xaf\x5e\x75\xfa\ \xbd\xb6\x6f\xdf\xee\x11\x20\x85\x85\x85\x3e\x83\xe3\xef\x7f\xff\ \xbb\x43\x38\x6a\x6b\x85\x1e\x2a\x2b\x56\xac\x40\x64\x64\x24\xf6\ \xee\xdd\x4b\x80\x10\x20\xce\x59\xdb\xb6\x6d\x51\x5e\xee\x7c\x23\ \x21\x4f\xce\x3b\xde\x02\xc4\x1d\x38\x96\x2f\x5f\x0e\xc6\x18\x06\ \x0f\x1e\x8c\x9c\x9c\x1c\x02\x84\x00\x69\xd8\x5e\x7a\xe9\x25\xfc\ \xf0\xc3\x0f\xc8\xc8\xc8\x40\x66\x66\xa6\x4b\x71\x0a\x9d\x4e\x87\ \x43\x87\x0e\x61\xef\xde\xbd\xd8\xb9\x73\x27\x9e\x7b\xee\x39\xbf\ \x02\x52\x1f\x8e\xf0\xf0\x70\x2c\x5f\xbe\x1c\x00\x50\x58\x58\x88\ \x71\xe3\xc6\x81\x31\x86\xa9\x53\xa7\xc2\x50\xd7\x7f\x72\xd9\xb2\ \x65\x60\x8c\xe1\x91\x47\x1e\x11\xb7\x78\x5b\xb6\x6c\x41\x72\x72\ \xb2\xdf\x62\x34\x04\x48\x08\x01\x12\x1b\x1b\xeb\xb5\xf7\x7e\xf3\ \xcd\x37\xfd\x76\x06\x71\xb4\x72\x44\x44\x44\x88\xbf\xcf\x8a\x15\ \x2b\xc0\x18\xc3\xb4\x69\xd3\x60\x34\x0a\xad\x2d\xde\x79\xe7\x1d\ \x30\xc6\x30\x64\xc8\x10\xf1\xbd\xb7\x6e\xdd\x0a\xc6\x18\xee\xbf\ \xff\x7e\xdc\xbe\x7d\x9b\x00\x21\x40\x6c\xed\xfb\xef\xbf\xf7\xda\ \x7b\x5b\xbe\x9d\x9d\xb1\x8e\x1d\x3b\xe2\xd6\xad\x5b\x5e\x83\xc3\ \x62\x61\x61\x61\xd8\xb4\x69\x13\xb4\x5a\x2d\x36\x6d\xda\x84\x9a\ \xba\xb6\x16\x6f\xbf\xfd\xb6\x1d\x1c\x29\x29\x29\x60\x8c\xa1\x73\ \xe7\xce\x38\x71\xe2\x04\x00\xe0\xce\x9d\x3b\x04\x48\x4b\x03\xa4\ \x4b\x97\x2e\x62\x04\xbd\xbe\x65\x65\x65\x79\xed\xbd\xe3\xe3\xe3\ \x1d\xbe\x47\x74\x74\x34\x3a\x75\xea\x64\x07\x48\x71\x71\xb1\x57\ \xe1\xb0\xb6\xfd\xfb\xf7\x03\x10\xae\x2a\x2f\x58\xb0\xc0\x0e\x8e\ \xc4\xc4\x44\x11\x8e\x53\xa7\x4e\x01\x00\xce\x9e\x3d\x8b\x9e\x3d\ \x7b\x62\xfd\xfa\xf5\x04\x48\x4b\x01\x64\xd2\xa4\x49\x28\x2d\x2d\ \x15\xf3\xb0\xac\xad\xba\xba\xda\xab\x45\x20\xcc\x66\xb3\x98\x7f\ \x55\xdf\x64\x32\x19\x86\x0f\x1f\xee\x51\x1c\xe4\xdd\x77\xdf\x75\ \x0a\x8e\x17\x5e\x78\xc1\xc6\xd9\x30\x63\xc6\x0c\x0c\x1a\x34\x48\ \x84\x23\x36\x36\xd6\x0e\x8e\xc3\x87\x0f\xa3\x73\xe7\xce\x60\x8c\ \x21\x35\x35\x95\x00\x69\x29\x80\x6c\xd8\xb0\x21\x68\x9e\xcd\x72\ \x06\x70\x07\x90\x37\xde\x78\xc3\x29\x38\x26\x4f\x9e\x2c\x6e\xab\ \x96\x2e\x5d\x8a\x2f\xbf\xfc\x12\x00\x50\x59\x29\x14\xfc\xde\xb0\ \x61\x03\x18\x63\xb8\xf7\xde\x7b\x71\xfa\xf4\x69\x11\x8e\x76\xed\ \xda\x81\x31\x86\x2d\x5b\xb6\x00\x00\x8a\x8b\x8b\x91\x96\x96\x26\ \x9e\x5f\x08\x90\x66\x0a\xc8\x57\x5f\x7d\x15\x34\xcf\x66\x7d\x88\ \xbf\xe7\x9e\x7b\x50\x56\x56\xe6\x33\x38\x5e\x7d\xf5\x55\xbb\xcf\ \x20\x2b\x2b\x4b\x4c\x73\xb1\x24\x2e\x5a\xe0\x88\x8c\x8c\x44\x5a\ \x5a\x1a\x00\xa0\xa4\xa4\x44\x5c\xed\x8e\x1f\x3f\x4e\x80\x10\x20\ \xfe\x07\xa4\x53\xa7\x4e\x4e\x01\xe2\x0e\x1c\xf3\xe7\xcf\xb7\xfb\ \xfb\xb5\x6b\xd7\xc2\x68\x34\x62\xc9\x92\x25\xf8\xe9\xa7\x9f\x6c\ \xe0\x88\x88\x88\xc0\xce\x9d\x3b\x01\x08\xee\xe1\xc7\x1e\x7b\x0c\ \x8c\x31\x7c\xf0\xc1\x07\x3e\xa9\x43\x46\x80\x04\x11\x20\xbe\x3e\ \x70\xba\x22\x8b\x27\x89\x31\x86\xa8\xa8\xa8\x26\x83\x92\xce\xc2\ \x31\x69\xd2\x24\x11\x8e\x79\xf3\xe6\x35\xf8\x73\x5f\x7c\xf1\x85\ \xf8\xda\xbb\x77\xef\x46\xdb\xb6\x6d\x11\x11\x11\x81\x1f\x7e\xf8\ \x01\x00\x20\x93\xc9\xc4\xfc\xb2\x0f\x3f\xfc\x10\x00\x60\x34\x1a\ \x31\x7d\xfa\x74\x7c\xfe\xf9\xe7\x5e\xcb\xdf\x22\x40\x82\x08\x90\ \xcf\x3e\xfb\x2c\x68\x9e\x6d\xe1\xc2\x85\x62\xc4\xfe\xbb\xef\xbe\ \x6b\x34\x30\xe7\x0e\x1c\x73\xe7\xce\x6d\xf2\xe7\x3f\xff\xfc\x73\ \x00\xc0\x5f\xff\xfa\x57\xb4\x6a\xd5\x4a\x84\xe3\xd2\xa5\x4b\x78\ \xe8\xa1\x87\xec\xe0\x98\x31\x63\x86\xd7\xd3\xf3\x09\x90\x20\x02\ \xa4\x73\xe7\xce\x5e\x75\xe5\xba\xab\xd4\xd4\x54\xb4\x6a\xd5\x0a\ \x7d\xfb\xf6\x45\x76\x76\xb6\xd7\x57\x8e\x97\x5f\x7e\xd9\xe9\x18\ \x8c\x05\x12\x4b\xde\xd9\xf9\xf3\xe7\xd1\xad\x5b\x37\x30\xc6\xf0\ \xd1\x47\x1f\xd9\xc1\x31\x79\xf2\x64\xe8\x74\x3a\x00\xc0\xe5\xcb\ \x97\x09\x90\xe6\x04\x08\x63\x0c\x5b\xb7\x6e\x0d\xf8\x73\xad\x5c\ \xb9\x12\xd1\xd1\xd1\x90\xcb\xe5\xe2\x9f\x19\x0c\x06\x2c\x5b\xb6\ \x0c\xbb\x77\xef\x06\x00\xe8\xf5\x7a\x31\x66\xe1\x2b\x38\xea\x6f\ \xb7\x8a\x8a\x8a\xc4\x18\xcd\xea\xd5\xab\xed\xe0\x98\x38\x71\xa2\ \x08\xc7\xaa\x55\xab\x10\x15\x15\x85\x8d\x1b\x37\x12\x20\xcd\x09\ \x90\xed\xdb\xb7\x07\xfc\xb9\xbe\xfa\xea\x2b\x1c\x38\x70\x40\xfc\ \xef\x1b\x37\x6e\x60\xf4\xe8\xd1\x60\x8c\xa1\x7d\xfb\xf6\x38\x7c\ \xf8\x30\x6a\x6b\x6b\x31\x64\xc8\x10\x9f\xc3\x61\xbd\x92\x70\x1c\ \x87\x25\x4b\x96\x60\xdd\xba\x75\x76\x70\x8c\x1f\x3f\x1e\x1a\x8d\ \x06\x00\xf0\xd1\x47\x1f\x79\xed\x6c\x47\x80\xf8\x59\x25\x25\x25\ \xe2\x40\xba\x02\x88\xd9\x6c\x86\x4a\xa5\x12\x27\x5b\x6d\x6d\x2d\ \x54\x2a\x95\xe8\xb9\xd1\x68\x34\x50\xa9\x54\x62\x2d\x63\x95\x4a\ \x25\x7e\x9b\x5a\x7e\xd6\x12\x27\xd0\x6a\xb5\x50\xa9\x54\x0d\x9e\ \x2b\xac\x6f\x0f\x9e\x3b\x77\x0e\x0f\x3c\xf0\x80\x5d\x6e\xd6\xd1\ \xa3\x47\xa1\x56\xab\x31\x62\xc4\x88\x46\xe1\xb0\xdc\xe7\xf0\x04\ \x0e\x8b\xad\x5a\xb5\x4a\x7c\xae\xbb\x77\xef\x62\xfa\xf4\xe9\x60\ \x8c\x61\xec\xd8\xb1\x50\xab\x85\x56\x77\x8d\x65\x0c\x13\x20\x41\ \xae\x9f\x7f\xfe\x19\x83\x07\x0f\x16\x33\x63\x1d\xa5\xa0\x5b\x82\ \x5f\xf5\x75\xf9\xf2\x65\x44\x47\x47\xe3\xdd\x77\xdf\x05\x00\x7c\ \xfa\xe9\xa7\x88\x8e\x8e\x16\x63\x04\xa3\x46\x8d\x42\x9f\x3e\x7d\ \xa0\x56\xab\x91\x9f\x9f\x8f\xe8\xe8\x68\xcc\x9c\x39\x13\x00\xf0\ \xf5\xd7\x5f\x23\x3a\x3a\x5a\xdc\xbe\x4d\x98\x30\x01\xd1\xd1\xd1\ \xc8\xcb\xcb\x6b\xf4\x79\xf5\x7a\x3d\x86\x0e\x1d\xda\x60\x02\xe3\ \xf1\xe3\xc7\x1b\x84\x64\xc4\x88\x11\x30\x18\x0c\x30\x18\x0c\x98\ \x3d\x7b\xb6\x57\xae\xfe\x2e\x5e\xbc\x58\x7c\x36\x4b\x6e\xd6\x98\ \x31\x63\xa0\x52\x09\xf5\xf1\x1c\x5d\xe1\x7d\xe7\x9d\x77\x68\x8b\ \x15\x0a\xca\xca\xca\xc2\xfd\xf7\xdf\x8f\xc8\xc8\x48\x31\x13\xb5\ \x3e\x20\x23\x46\x8c\xc0\xcd\x9b\x37\x1d\xfe\xff\xe7\xce\x9d\x03\ \x63\x0c\xaf\xbe\xfa\x2a\x80\xdf\x92\x0d\x2d\xc1\xb1\x3e\x7d\xfa\ \x20\x2c\x2c\x0c\x2a\x95\x0a\x37\x6e\xdc\x10\x27\x8f\x65\x3f\xce\ \x18\x43\x5c\x5c\x1c\x00\x88\xee\xd1\xa6\x6e\xe9\x59\xee\x62\x34\ \x96\xe5\xdb\x10\x24\xdd\xbb\x77\x47\x61\x61\x21\x74\x3a\x1d\x06\ \x0c\x18\xe0\x31\x1c\xef\xbd\xf7\x1e\x00\x40\x2e\x97\x23\x3e\x3e\ \x1e\x3c\xcf\x63\xc3\x86\x0d\xa2\xfb\xd9\x17\x70\x10\x20\x7e\xd2\ \xb1\x63\xc7\xc4\xc3\x65\xe7\xce\x9d\xc5\xa0\x5b\x7d\x40\xbe\xfd\ \xf6\xdb\x06\x5f\xe3\xfc\xf9\xf3\x60\x8c\xe1\x2f\x7f\xf9\x0b\x00\ \xe0\xfd\xf7\xdf\x07\x63\x4c\x0c\xa4\x0d\x18\x30\x00\x51\x51\x51\ \xd0\x68\x34\xc8\xc9\xc9\x11\xf7\xe5\x00\xf0\xf1\xc7\x1f\x83\x31\ \x86\x84\x84\x04\x00\x10\x83\x6b\x8d\x01\x72\xe6\xcc\x19\xb4\x6a\ \xd5\xca\xa9\x54\x78\x0b\x24\x4f\x3c\xf1\x84\xcd\xdf\xcd\x9a\x35\ \x0b\x00\x70\xe4\xc8\x11\x84\x85\x85\x79\x0c\x47\x59\x59\x19\x1e\ \x7f\xfc\x71\x30\xc6\xf0\xfe\xfb\xef\x8b\xcf\xea\x2b\x38\x08\x10\ \x3f\xe8\xe4\xc9\x93\x62\x62\x5d\xfd\xb4\x8d\xfa\x80\x34\x16\x49\ \x77\x06\x90\xb6\x6d\xdb\x42\xab\xd5\x7a\x0c\x48\x63\x5b\xab\xc6\ \x20\xd1\x68\x34\x78\xf2\xc9\x27\x6d\xfe\x2e\x33\x33\x13\x00\xf0\ \xda\x6b\xaf\x79\x0c\x87\x75\x02\x25\x63\x0c\x2b\x57\xae\x14\x7f\ \x37\x5f\xc0\x41\x80\xf8\x58\x97\x2e\x5d\xb2\x3b\xe0\xfa\x1a\x10\ \x9d\x4e\xe7\x31\x20\x96\x0b\x4c\xae\x5e\xcb\x3d\x7e\xfc\x38\xb4\ \x5a\x2d\x9e\x7e\xfa\x69\x30\xc6\x10\x13\x13\x23\x6e\x19\xad\x23\ \xf3\xde\x80\xa3\x21\xf3\x26\x1c\x04\x88\x8f\xbd\x55\x96\x68\x6f\ \xfd\xbb\xe4\xa5\xa5\x42\x3b\xeb\xb3\x67\xcf\x7a\x15\x90\x76\xed\ \xda\x41\xaf\xd7\x7b\x04\x88\xb3\x5b\xab\x86\x20\xc9\xca\xca\x82\ \x4a\xa5\xc2\x9b\x6f\xbe\x09\xa9\x54\xda\xa0\x67\x29\x14\xe0\x20\ \x40\x7c\x24\x93\xc9\x24\x16\x20\x70\x54\xcb\xca\xe2\x7e\xfd\xf9\ \xe7\x9f\xbd\x0a\x48\x87\x0e\x1d\x50\x53\x53\x23\x1e\xd2\x5d\x05\ \xa4\xa6\xa6\x46\xdc\xe3\xbb\x6b\x11\x11\x11\xb8\x7e\xfd\xba\xf8\ \x9a\xff\xf8\xc7\x3f\xfc\x02\x87\xb5\x87\x8b\x00\x09\x72\x59\xbc\ \x46\xf5\xed\xde\x7b\xef\xb5\x99\x3c\x16\xcf\x94\x33\xf7\x41\x2e\ \x5c\xb8\x00\xc6\x18\x16\x2d\x5a\x64\xe3\x61\xb2\x5c\x3f\x1d\x30\ \x60\x00\x3a\x76\xec\x08\x93\xc9\x84\x9b\x37\x6f\x82\x31\x86\x09\ \x13\x26\x00\x00\xd6\xac\x59\x03\xc6\x18\x92\x92\x92\x00\x40\x3c\ \x5f\xd4\x07\xc4\xd1\x61\xd7\x55\x9b\x33\x67\x8e\xe8\x76\x75\x74\ \x3e\x68\xca\x2c\x6e\xec\x40\xaf\x1c\x04\x88\x0f\x0f\xe5\x91\x91\ \x91\x0e\x07\x32\x3d\x3d\xdd\xe1\xaa\x60\xb1\xe9\xd3\xa7\x43\xa5\ \x52\x89\xf1\x03\x6b\xb3\x9c\x57\x16\x2c\x58\x20\xa6\x7d\x30\xc6\ \x70\xf4\xe8\x51\x18\x0c\x06\xf4\xeb\xd7\x0f\x9d\x3a\x75\x82\x46\ \xa3\xc1\x95\x2b\x57\xc0\x18\xc3\xb8\x71\xe3\x60\x30\x18\x44\x60\ \x37\x6f\xde\x0c\x83\xc1\x20\xd6\x03\xb6\x86\xf5\xfc\xf9\xf3\x68\ \xdd\xba\xb5\x47\x70\xcc\x9b\x37\x4f\x4c\x12\x6c\x6c\x5b\x15\x15\ \x15\x85\xe4\xe4\x64\x2c\x5e\xbc\xd8\xe6\xb3\x0a\x36\x38\x08\x10\ \x2f\xab\xa6\xa6\x46\xdc\xbe\xd4\xb7\x25\x4b\x96\xd8\xfd\xfc\xc5\ \x8b\x17\xed\x7e\xae\x77\xef\xde\x18\x34\x68\x10\x62\x62\x62\x44\ \x1b\x34\x68\x10\x7a\xf7\xee\x2d\xba\x89\x07\x0d\x1a\x84\x2e\x5d\ \xba\x80\x31\x86\x5e\xbd\x7a\x21\x26\x26\x06\xad\x5b\xb7\x46\x78\ \x78\x38\x06\x0e\x1c\x88\xbe\x7d\xfb\x82\x31\x86\x76\xed\xda\x61\ \xd0\xa0\x41\xb8\xff\xfe\xfb\xc5\xd8\xc4\xa0\x41\x83\x10\x11\x11\ \x81\x67\x9f\x7d\x56\x2c\x10\x5d\x5d\x5d\xed\xf4\x84\x74\x06\x8e\ \x25\x4b\x96\x34\x0a\x87\xe5\x3e\x87\xe5\xcc\x33\x76\xec\x58\x2c\ \x5d\xba\x34\xe8\xe0\x20\x40\xbc\xac\xcf\x3f\xff\xdc\xe1\x40\xc6\ \xc4\xc4\x88\xe7\x0e\x6b\xe5\xe5\xe5\x05\xa4\x18\xf5\x3d\xf7\xdc\ \x23\x1e\xa0\x01\xe0\xfa\xf5\xeb\x68\xd3\xa6\x8d\xcf\xe1\x68\xd3\ \xa6\x8d\x08\x47\x76\x76\xb6\x0d\x28\xae\xc2\x61\x01\x8a\x00\x09\ \x11\xdd\xba\x75\xcb\x26\xde\x61\x6d\x96\x7b\x0c\x8e\x0e\xf3\xb3\ \x66\xcd\xf2\x3b\x20\x8e\xea\x6b\x65\x66\x66\xa2\x43\x87\x0e\x7e\ \x81\x63\xdf\xbe\x7d\xe8\xd8\xb1\xa3\xb8\xad\x2c\x28\x28\x40\x79\ \x79\xb9\xd3\x70\x7c\xf2\xc9\x27\x7e\x1b\x57\x02\xc4\x4b\x6a\xc8\ \xcf\xff\xcc\x33\xcf\x34\x7a\x79\x47\xaf\xd7\x63\xf5\xea\xd5\x98\ \x3a\x75\x2a\x5e\x78\xe1\x05\x4c\x9c\x38\x11\x13\x26\x4c\xc0\xf8\ \xf1\xe3\x31\x6e\xdc\x38\xaf\xda\xf8\xf1\xe3\xf1\xfa\xeb\xaf\x8b\ \xef\x6d\x30\x18\x6c\xfa\x70\x1c\x3a\x74\xc8\x25\x48\xe6\xcd\x9b\ \x07\xb3\xd9\x8c\xda\xda\x5a\xbc\xf5\xd6\x5b\x4e\x6f\xab\xa6\x4c\ \x99\x62\xd7\x5e\xc1\xb2\x2d\x6c\xca\xd6\xac\x59\xe3\xd7\x71\x25\ \x40\xbc\xa0\xa2\xa2\x22\xf1\x1b\xd1\xd9\xd5\x23\x18\xb4\x78\xf1\ \x62\x3c\xf5\xd4\x53\x36\x1d\xa4\x9c\x81\x24\x2c\x2c\x0c\x0b\x17\ \x2e\x14\x33\x89\x8b\x8a\x8a\xc4\x73\x8e\x23\x38\x76\xed\xda\x05\ \x00\x38\x70\xe0\x00\xd2\xd3\xd3\xa1\xd7\xeb\xc5\x52\xa3\xae\x98\ \xbf\xe1\x20\x40\x7c\xec\xd6\xed\xdf\xbf\xbf\x58\x84\x39\xd8\x74\ \xec\xd8\x31\xd1\x83\x34\x72\xe4\x48\x9b\x3b\xe7\x99\x99\x99\x62\ \x69\x9d\x86\x62\x1d\x19\x19\x19\x36\xaf\x77\xe9\xd2\x25\x44\x47\ \x47\xdb\x6d\xab\x2c\x17\xac\x8e\x1d\x3b\x86\x76\xed\xda\x21\x2c\ \x2c\x0c\xbb\x77\xef\x86\xc9\x64\xc2\xd8\xb1\x63\x83\x1a\x0e\x02\ \xc4\x0b\x32\x18\x0c\x18\x38\x70\xa0\xd3\x9e\xab\x60\xf1\xb6\xd5\ \xcf\xb0\x1d\x3d\x7a\xb4\xcd\x3d\x90\x8c\x8c\x8c\x46\x23\xea\x1d\ \x3a\x74\xc0\x91\x23\x47\x6c\x5e\xf7\xf4\xe9\xd3\xb8\xef\xbe\xfb\ \x44\x88\x2c\xa5\x79\xce\x9f\x3f\x2f\x7a\xdd\x2c\xab\x4a\x56\x56\ \x16\xf4\x7a\x7d\xa3\xf7\x49\xea\xbb\x7f\x09\x90\x10\xd4\xb1\x63\ \xc7\x1a\x1c\x58\x5f\xd4\x69\xf2\x86\x4c\x26\x13\xd6\xad\x5b\x67\ \x97\x61\x3b\x76\xec\x58\x54\x55\x55\x89\x3f\x97\x9e\x9e\xde\x28\ \x24\x9d\x3a\x75\xb2\x83\x24\x3b\x3b\x1b\x0f\x3f\xfc\xb0\xd8\xa9\ \xd6\xfa\x0e\xb9\x2b\xf7\x49\xfc\xed\xad\x22\x40\x7c\xa4\x86\x8a\ \x16\xf4\xe8\xd1\x43\xbc\x39\x18\xac\x8a\x8b\x8b\x73\x0a\x92\xc6\ \xce\x24\x8e\x20\xb1\xb8\xb4\xcf\x9d\x3b\xe7\x10\x0e\x47\x59\xc0\ \x8e\xda\x31\x2c\x5b\xb6\x2c\xe0\x9f\x11\x01\xe2\x81\x8c\x46\x23\ \x1e\x7e\xf8\xe1\x06\x8b\xa3\x05\x9b\x54\x2a\x95\x9d\x8b\x37\x36\ \x36\xb6\x49\x48\x3e\xfd\xf4\xd3\x26\xab\xbf\xd7\x6f\x07\x77\xea\ \xd4\x29\x74\xed\xda\xd5\xe9\x2c\x60\xb3\xd9\x8c\x09\x13\x26\xd8\ \xe5\x63\x11\x20\x21\xac\x9c\x9c\x9c\x06\xb7\x20\xd6\x17\x7a\x82\ \x45\x2b\x57\xae\x74\x78\x36\x72\x04\xc9\x73\xcf\x3d\x07\x9d\x4e\ \x87\xcb\x97\x2f\x3b\xe5\x82\xed\xd0\xa1\x03\x0e\x1e\x3c\x28\x7a\ \xab\xea\x57\x88\x6f\xea\xff\xdd\xbb\x77\x2f\x4c\x26\x13\x26\x4c\ \x98\xe0\xb3\xc4\x43\x02\xc4\xcf\xda\xb6\x6d\x5b\x83\x83\x6e\xc9\ \x9c\x0d\xa6\xb3\x92\x35\xcc\x8b\x16\x2d\xb2\x29\xd5\x69\xa9\xa2\ \x6e\x6d\x23\x47\x8e\x44\xcf\x9e\x3d\x5d\x9a\xe8\x4b\x97\x2e\x75\ \x2b\xe0\xd8\xba\x75\x6b\xd1\x1d\x1c\x4c\x22\x40\x3c\x50\x63\x09\ \x79\x96\x9b\x74\xc1\xa2\x2f\xbf\xfc\xd2\x61\x4b\x37\xeb\x8a\xe8\ \x8e\x56\x12\x7f\x5a\x9b\x36\x6d\x82\x0e\x12\x02\xc4\x03\xcd\x99\ \x33\xa7\xc1\xc1\xb6\xf4\xb2\x08\xc6\x2d\x96\xb5\xcd\x98\x31\xc3\ \x26\x56\x93\x92\x92\x82\xf6\xed\xdb\x07\x14\x92\x60\xa8\x0d\x46\ \x80\x78\x41\x8d\x05\xba\x2c\xfd\x2c\x02\xad\xfa\x81\x4a\x47\x90\ \xbc\xf8\xe2\x8b\xa2\xe7\xe9\xda\xb5\x6b\x36\x31\x8b\x40\x58\x30\ \x55\xb9\x27\x40\x3c\x50\x43\xa9\xed\x8c\xb1\xa0\xa8\xb1\x6b\x34\ \x1a\x31\x66\xcc\x18\xbb\xa2\xd8\x0d\x41\xb2\x6f\xdf\xbe\x46\xdd\ \xb2\xfe\xb0\xb9\x73\xe7\xd2\x16\xab\xb9\xa8\x7f\xff\xfe\x0d\x0e\ \x74\xfd\x54\x8c\x40\xc8\xda\x3d\xfb\xe9\xa7\x9f\xda\xfc\xdd\xea\ \xd5\xab\x3d\x9e\xcc\x93\x26\x4d\x42\x66\x66\x26\xba\x77\xef\xee\ \x15\x38\x46\x8c\x18\x21\x56\x48\x24\x40\x9a\x81\x1a\x2b\x88\x66\ \xa9\x1f\x1b\x28\xfd\xfa\xeb\xaf\x76\xcf\x64\x29\xf8\x6c\xd1\xba\ \x75\xeb\x10\x11\x11\xe1\xd6\x64\x7e\xfe\xf9\xe7\xc5\xb2\xa2\x0d\ \x45\xcb\x5d\xb1\xf9\xf3\xe7\x3b\xdd\xc5\x8a\x00\x09\x11\x0d\x1b\ \x36\xac\xc1\x01\x7f\xe5\x95\x57\x02\xfa\x6c\x55\x55\x55\x62\x61\ \xe7\xc6\x20\x71\xa7\x1c\x0f\x63\x0c\x4f\x3f\xfd\xb4\x4d\x82\xa3\ \xbb\x90\xc4\xc4\xc4\x88\x5d\x6e\x83\x51\x04\x88\x07\xfa\xfd\xef\ \x7f\xdf\xe0\xc0\x0f\x1d\x3a\xb4\xd1\xa6\x33\xfe\x3a\x83\x38\xba\ \x90\x65\x81\xe4\xe2\xc5\x8b\xe8\xd7\xaf\x9f\xdb\xdf\xfa\xc3\x86\ \x0d\xb3\x69\xee\xe9\x2a\x24\xaf\xbf\xfe\xba\xd8\xb0\x93\x00\x69\ \x86\xb2\x6e\x3e\xe9\xc8\x5d\xd9\x54\x71\x68\x5f\xe8\xec\xd9\xb3\ \x88\x8f\x8f\x6f\x12\x92\x85\x0b\x17\xa2\x57\xaf\x5e\x2e\x01\x31\ \x74\xe8\x50\xbb\x20\xe0\xf0\xe1\xc3\xed\x20\x69\xea\x4c\x32\x78\ \xf0\x60\x9b\xf6\x0a\x04\x48\x33\xd5\x17\x5f\x7c\xd1\xe8\x44\xf8\ \xcf\x7f\xfe\xe3\xd7\xe7\xb1\xae\x6b\x65\xfd\xde\x0d\x41\xe2\xac\ \x85\x85\x85\x61\xf2\xe4\xc9\xd0\x6a\xb5\xd8\xb5\x6b\x97\x5d\xf5\ \x93\xfa\x2b\xc9\x85\x0b\x17\x1c\x46\xe0\xc3\xc2\xc2\xf0\xd6\x5b\ \x6f\xd9\xe4\x79\x11\x20\xcd\x58\x07\x0f\x1e\x6c\x74\x62\x3d\xf3\ \xcc\x33\x7e\x7b\x16\x9e\xe7\xb1\x74\xe9\xd2\x06\x1b\xc7\x18\x8d\ \x46\xcc\x9f\x3f\xdf\xad\x48\x79\xf7\xee\xdd\x71\xe7\xce\x1d\xf1\ \xb5\xb6\x6f\xdf\x6e\x07\xc9\xf0\xe1\xc3\xc5\x8a\x91\x00\x90\x9b\ \x9b\x6b\xe3\xc4\x18\x32\x64\x08\x0e\x1d\x3a\x14\x72\x63\x4c\x80\ \x78\xa0\x92\x92\x92\x06\xaf\xda\x32\xc6\x10\x1e\x1e\x2e\xf6\xef\ \xf0\xb5\x4c\x26\x93\xdd\x5d\xef\xfa\x90\x1c\x3a\x74\xc8\xad\xb2\ \xa2\x61\x61\x61\x98\x38\x71\x22\xee\xde\xbd\xdb\x28\x24\x4f\x3c\ \xf1\x84\x8d\x27\x4a\x2a\x95\x62\xf8\xf0\xe1\x78\xeb\xad\xb7\xc4\ \x62\x72\x04\x48\x0b\xd3\x98\x31\x63\x1a\x9d\x5c\xd3\xa6\x4d\xf3\ \xdb\xb3\xa8\xd5\x6a\x4c\x9a\x34\xc9\xee\x19\x36\x6d\xda\x84\x9f\ \x7e\xfa\x09\xf7\xde\x7b\xaf\x47\xae\xd8\x31\x63\xc6\x34\x09\xc9\ \x93\x4f\x3e\x69\xb3\x92\x58\xe7\x7a\x11\x20\x2d\x50\x6b\xd7\xae\ \x6d\x74\x52\x85\x87\x87\x37\xd9\x29\xd6\x9b\xd2\x6a\xb5\x0e\x21\ \x71\xb5\xee\xd5\xcb\x2f\xbf\x8c\xf8\xf8\x78\xbb\x38\x49\x7d\x48\ \x32\x32\x32\xec\x5e\x7b\xf4\xe8\xd1\x41\x7b\x17\x9f\x00\xf1\xb3\ \xf2\xf3\xf3\x11\x15\x15\xd5\xe8\x64\x7b\xe2\x89\x27\xfc\xfa\x4d\ \xda\x10\x24\xce\xda\x4b\x2f\xbd\x04\x93\xc9\x04\x40\x48\x5e\x6c\ \x0a\x92\x9d\x3b\x77\x8a\x9f\xc1\xb0\x61\xc3\x90\x99\x99\x19\x70\ \x17\x37\x01\x12\x44\x7a\xf1\xc5\x17\x9b\x9c\x74\xcb\x97\x2f\xf7\ \xeb\x33\x71\x1c\x87\x51\xa3\x46\xb9\x1d\xd5\xb6\xae\xe5\x95\x92\ \x92\x62\x57\x6f\x78\xcc\x98\x31\x36\xde\xa8\xdd\xbb\x77\x63\xf5\ \xea\xd5\x0e\x2b\x48\x12\x20\x2d\x5c\x8d\x15\x6e\xb0\xb6\xcd\x9b\ \x37\xfb\xed\x99\x8e\x1f\x3f\x8e\x07\x1f\x7c\xd0\xa3\x2a\xed\x96\ \x55\x04\x00\x76\xec\xd8\x81\xb6\x6d\xdb\xda\xfc\xcc\xa8\x51\xa3\ \xa0\x54\x2a\x9b\xf5\xd8\x12\x20\x5e\xd2\xc4\x89\x13\x9b\x9c\x74\ \x91\x91\x91\x62\xa7\x59\x5f\x6a\xff\xfe\xfd\x8d\x7a\xd7\x1c\xd9\ \xe3\x8f\x3f\x6e\xb7\x4a\xd4\x87\x64\xcf\x9e\x3d\x76\x90\xa4\xa6\ \xa6\x12\x20\xa4\xa6\x75\xf6\xec\x59\xa7\x12\xff\x22\x23\x23\x91\ \x98\x98\xe8\xb3\xe7\x48\x4d\x4d\x6d\xf2\x4c\x54\xdf\x85\x3b\x73\ \xe6\x4c\xe8\xf5\x7a\x6c\xda\xb4\xa9\xc9\x95\x64\xcf\x9e\x3d\x68\ \xd3\xa6\x0d\x86\x0e\x1d\x2a\xf6\x26\x21\x40\x48\x4e\xa9\xa1\x12\ \x40\x8e\x6c\xd5\xaa\x55\x8d\xd6\xec\x75\xe7\x60\xfe\xee\xbb\xef\ \xba\xbc\x95\x8a\x8e\x8e\xb6\x49\x31\xdf\xb0\x61\x83\x43\x48\xac\ \x9d\x0c\x17\x2e\x5c\xb0\x29\x32\x47\x80\x90\x9c\x52\x75\x75\x35\ \x62\x62\x62\x9c\x9e\x9c\x2f\xbc\xf0\x02\xae\x5c\xb9\xe2\xf1\xfb\ \xee\xd8\xb1\x03\x43\x86\x0c\x71\x3b\x8d\x64\xd6\xac\x59\x30\x18\ \x0c\xe2\xeb\x7d\xf7\xdd\x77\x76\x3f\x37\x61\xc2\x84\x90\x0d\xf6\ \x11\x20\x41\xa4\x33\x67\xce\xd8\xed\xd3\x1b\xb3\x76\xed\xda\xe1\ \x8d\x37\xde\xb0\xe9\xf6\xe4\x8c\x0c\x06\x03\xf6\xee\xdd\xdb\x60\ \x2f\x44\x57\x6d\xfa\xf4\xe9\x36\x90\x6c\xdc\xb8\x51\xfc\xbb\xf6\ \xed\xdb\x63\xd9\xb2\x65\x41\x77\x99\x89\x00\x09\x51\x25\x26\x26\ \xba\x3c\x41\xa3\xa2\xa2\x30\x79\xf2\x64\x6c\xdc\xb8\x11\x57\xae\ \x5c\x41\x65\x65\x25\x74\x3a\x1d\x0c\x06\x03\x6a\x6b\x6b\xa1\xd1\ \x68\x50\x5c\x5c\x8c\xa3\x47\x8f\x62\xc5\x8a\x15\x6e\xaf\x18\x96\ \x2d\x93\xa3\x6b\xb7\xf5\x21\xf9\xe6\x9b\x6f\x30\x71\xe2\x44\x5c\ \xba\x74\xa9\xc5\x8e\x25\x01\xe2\x23\x7d\xf6\xd9\x67\x6e\x4f\xe0\ \xf0\xf0\x70\x3c\xf0\xc0\x03\xe8\xdb\xb7\x2f\x06\x0e\x1c\x88\x01\ \x03\x06\xa0\x67\xcf\x9e\x2e\x15\x63\x6b\xc8\x66\xcf\x9e\x2d\x1e\ \xba\x1d\x55\x4c\x9c\x36\x6d\x5a\x48\x65\xdb\x12\x20\x21\x2c\x6f\ \xdc\xfb\xf6\xa6\x2d\x58\xb0\xc0\xa6\x58\x5c\x43\x90\xac\x5d\xbb\ \x96\x06\x8f\x00\xf1\x8f\xd6\xaf\x5f\x8f\xf0\xf0\xf0\x80\xc3\xf1\ \xf1\xc7\x1f\x37\xf8\x8c\xff\xfc\xe7\x3f\xc5\x1a\xbb\xeb\xd7\xaf\ \xb7\xe9\x3a\x45\x80\x90\x7c\xae\x3d\x7b\xf6\xd8\x35\x97\xf1\x97\ \x45\x47\x47\x63\xc7\x8e\x1d\x4d\x3e\x63\x5a\x5a\x1a\x2e\x5f\xbe\ \x4c\x83\x45\x80\x04\x46\x0a\x85\xa2\xd1\x4a\x8c\xbe\xb0\x69\xd3\ \xa6\x41\x2e\x97\xd3\x87\x4f\x80\x84\x8e\x76\xec\xd8\x81\xa1\x43\ \x87\xfa\x14\x8c\x47\x1e\x79\x44\x6c\x60\x43\x22\x40\x42\x4e\x7a\ \xbd\x1e\x71\x71\x71\x8d\x96\x0d\x72\xc7\x1e\x7b\xec\x31\x6c\xdc\ \xb8\x91\xce\x10\x04\x48\xf3\x90\xc9\x64\x42\x66\x66\x26\x5e\x79\ \xe5\x15\x97\x2b\x8c\x58\xac\x4f\x9f\x3e\x78\xed\xb5\xd7\x70\xe8\ \xd0\x21\x9b\x18\x06\x89\x00\x69\x56\x52\xa9\x54\xc8\xce\xce\xc6\ \xda\xb5\x6b\x31\x67\xce\x1c\x3c\xf5\xd4\x53\xe8\xdb\xb7\x2f\xba\ \x75\xeb\x86\x1e\x3d\x7a\xa0\x4f\x9f\x3e\x18\x32\x64\x08\x9e\x7d\ \xf6\x59\xcc\x9d\x3b\x17\xeb\xd6\xad\xc3\x89\x13\x27\x82\xbe\xcd\ \x1b\x01\x42\x22\x11\x20\x24\x12\x01\x42\x22\x91\x08\x10\x12\x89\ \x00\x21\x91\x08\x10\x12\x89\x00\x21\x91\x08\x10\x12\x89\x00\x21\ \x91\x08\x10\x12\x89\x00\x21\x91\x08\x10\x12\x89\xf4\xff\x07\x00\ \xa6\x88\xd1\x9a\xab\x5f\x1d\xc0\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x1e\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\xc5\x00\x00\x00\x50\x08\x06\x00\x00\x00\xa9\x93\xb1\x00\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8e\x7c\xfb\x51\x93\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x87\x0f\x00\x00\x8c\x0f\ \x00\x00\xfd\x52\x00\x00\x81\x40\x00\x00\x7d\x79\x00\x00\xe9\x8b\ \x00\x00\x3c\xe5\x00\x00\x19\xcc\x73\x3c\x85\x77\x00\x00\x0a\x39\ \x69\x43\x43\x50\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x49\x43\ \x43\x20\x70\x72\x6f\x66\x69\x6c\x65\x00\x00\x48\xc7\x9d\x96\x77\ \x54\x54\xd7\x16\x87\xcf\xbd\x77\x7a\xa1\xcd\x30\x02\x52\x86\xde\ \xbb\xc0\x00\xd2\x7b\x93\x5e\x45\x61\x98\x19\x60\x28\x03\x0e\x33\ \x34\xb1\x21\xa2\x02\x11\x45\x44\x9a\x22\x48\x50\xc4\x80\xd1\x50\ \x24\x56\x44\xb1\x10\x14\x54\xb0\x07\x24\x08\x28\x31\x18\x45\x54\ \x2c\x6f\x46\xd6\x8b\xae\xac\xbc\xf7\xf2\xf2\xfb\xe3\xac\x6f\xed\ \xb3\xf7\xb9\xfb\xec\xbd\xcf\x5a\x17\x00\x92\xa7\x2f\x97\x97\x06\ \x4b\x01\x90\xca\x13\xf0\x83\x3c\x9c\xe9\x11\x91\x51\x74\xec\x00\ \x80\x01\x1e\x60\x80\x29\x00\x4c\x56\x46\xba\x5f\xb0\x7b\x08\x10\ \xc9\xcb\xcd\x85\x9e\x21\x72\x02\x5f\x04\x01\xf0\x7a\x58\xbc\x02\ \x70\xd3\xd0\x33\x80\x4e\x07\xff\x9f\xa4\x59\xe9\x7c\x81\xe8\x98\ \x00\x11\x9b\xb3\x39\x19\x2c\x11\x17\x88\x38\x25\x4b\x90\x2e\xb6\ \xcf\x8a\x98\x1a\x97\x2c\x66\x18\x25\x66\xbe\x28\x41\x11\xcb\x89\ \x39\x61\x91\x0d\x3e\xfb\x2c\xb2\xa3\x98\xd9\xa9\x3c\xb6\x88\xc5\ \x39\xa7\xb3\x53\xd9\x62\xee\x15\xf1\xb6\x4c\x21\x47\xc4\x88\xaf\ \x88\x0b\x33\xb9\x9c\x2c\x11\xdf\x12\xb1\x46\x8a\x30\x95\x2b\xe2\ \x37\xe2\xd8\x54\x0e\x33\x03\x00\x14\x49\x6c\x17\x70\x58\x89\x22\ \x36\x11\x31\x89\x1f\x12\xe4\x22\xe2\xe5\x00\xe0\x48\x09\x5f\x71\ \xdc\x57\x2c\xe0\x64\x0b\xc4\x97\x72\x49\x4b\xcf\xe1\x73\x13\x12\ \x05\x74\x1d\x96\x2e\xdd\xd4\xda\x9a\x41\xf7\xe4\x64\xa5\x70\x04\ \x02\xc3\x00\x26\x2b\x99\xc9\x67\xd3\x5d\xd2\x52\xd3\x99\xbc\x1c\ \x00\x16\xef\xfc\x59\x32\xe2\xda\xd2\x45\x45\xb6\x34\xb5\xb6\xb4\ \x34\x34\x33\x32\xfd\xaa\x50\xff\x75\xf3\x6f\x4a\xdc\xdb\x45\x7a\ \x19\xf8\xb9\x67\x10\xad\xff\x8b\xed\xaf\xfc\xd2\x1a\x00\x60\xcc\ \x89\x6a\xb3\xf3\x8b\x2d\xae\x0a\x80\xce\x2d\x00\xc8\xdd\xfb\x62\ \xd3\x38\x00\x80\xa4\xa8\x6f\x1d\xd7\xbf\xba\x0f\x4d\x3c\x2f\x89\ \x02\x41\xba\x8d\xb1\x71\x56\x56\x96\x11\x97\xc3\x32\x12\x17\xf4\ \x0f\xfd\x4f\x87\xbf\xa1\xaf\xbe\x67\x24\x3e\xee\x8f\xf2\xd0\x5d\ \x39\xf1\x4c\x61\x8a\x80\x2e\xae\x1b\x2b\x2d\x25\x4d\xc8\xa7\x67\ \xa4\x33\x59\x1c\xba\xe1\x9f\x87\xf8\x1f\x07\xfe\x75\x1e\x06\x41\ \x9c\x78\x0e\x9f\xc3\x13\x45\x84\x89\xa6\x8c\xcb\x4b\x10\xb5\x9b\ \xc7\xe6\x0a\xb8\x69\x3c\x3a\x97\xf7\x9f\x9a\xf8\x0f\xc3\xfe\xa4\ \xc5\xb9\x16\x89\xd2\xf8\x11\x50\x63\x8c\x80\xd4\x75\x2a\x40\x7e\ \xed\x07\x28\x0a\x11\x20\xd1\xfb\xc5\x5d\xff\xa3\x6f\xbe\xf8\x30\ \x20\x7e\x79\xe1\x2a\x93\x8b\x73\xff\xef\x37\xfd\x67\xc1\xa5\xe2\ \x25\x83\x9b\xf0\x39\xce\x25\x28\x84\xce\x12\xf2\x33\x17\xf7\xc4\ \xcf\x12\xa0\x01\x01\x48\x02\x2a\x90\x07\xca\x40\x1d\xe8\x00\x43\ \x60\x06\xac\x80\x2d\x70\x04\x6e\xc0\x1b\xf8\x83\x10\x10\x09\x56\ \x03\x16\x48\x04\xa9\x80\x0f\xb2\x40\x1e\xd8\x04\x0a\x41\x31\xd8\ \x09\xf6\x80\x6a\x50\x07\x1a\x41\x33\x68\x05\xc7\x41\x27\x38\x05\ \xce\x83\x4b\xe0\x1a\xb8\x01\x6e\x83\xfb\x60\x14\x4c\x80\x67\x60\ \x16\xbc\x06\x0b\x10\x04\x61\x21\x32\x44\x81\xe4\x21\x15\x48\x13\ \xd2\x87\xcc\x20\x06\x64\x0f\xb9\x41\xbe\x50\x10\x14\x09\xc5\x42\ \x09\x10\x0f\x12\x42\x79\xd0\x66\xa8\x18\x2a\x83\xaa\xa1\x7a\xa8\ \x19\xfa\x1e\x3a\x09\x9d\x87\xae\x40\x83\xd0\x5d\x68\x0c\x9a\x86\ \x7e\x87\xde\xc1\x08\x4c\x82\xa9\xb0\x12\xac\x05\x1b\xc3\x0c\xd8\ \x09\xf6\x81\x43\xe0\x55\x70\x02\xbc\x06\xce\x85\x0b\xe0\x1d\x70\ \x25\xdc\x00\x1f\x85\x3b\xe0\xf3\xf0\x35\xf8\x36\x3c\x0a\x3f\x83\ \xe7\x10\x80\x10\x11\x1a\xa2\x8a\x18\x22\x0c\xc4\x05\xf1\x47\xa2\ \x90\x78\x84\x8f\xac\x47\x8a\x90\x0a\xa4\x01\x69\x45\xba\x91\x3e\ \xe4\x26\x32\x8a\xcc\x20\x6f\x51\x18\x14\x05\x45\x47\x19\xa2\x6c\ \x51\x9e\xa8\x50\x14\x0b\xb5\x06\xb5\x1e\x55\x82\xaa\x46\x1d\x46\ \x75\xa0\x7a\x51\x37\x51\x63\xa8\x59\xd4\x47\x34\x19\xad\x88\xd6\ \x47\xdb\xa0\xbd\xd0\x11\xe8\x04\x74\x16\xba\x10\x5d\x81\x6e\x42\ \xb7\xa3\x2f\xa2\x6f\xa3\x27\xd0\xaf\x31\x18\x0c\x0d\xa3\x8d\xb1\ \xc2\x78\x62\x22\x31\x49\x98\xb5\x98\x12\xcc\x3e\x4c\x1b\xe6\x1c\ \x66\x10\x33\x8e\x99\xc3\x62\xb1\xf2\x58\x7d\xac\x1d\xd6\x1f\xcb\ \xc4\x0a\xb0\x85\xd8\x2a\xec\x51\xec\x59\xec\x10\x76\x02\xfb\x06\ \x47\xc4\xa9\xe0\xcc\x70\xee\xb8\x28\x1c\x0f\x97\x8f\xab\xc0\x1d\ \xc1\x9d\xc1\x0d\xe1\x26\x71\x0b\x78\x29\xbc\x26\xde\x06\xef\x8f\ \x67\xe3\x73\xf0\xa5\xf8\x46\x7c\x37\xfe\x3a\x7e\x02\xbf\x40\x90\ \x26\x68\x13\xec\x08\x21\x84\x24\xc2\x26\x42\x25\xa1\x95\x70\x91\ \xf0\x80\xf0\x92\x48\x24\xaa\x11\xad\x89\x81\x44\x2e\x71\x23\xb1\ \x92\x78\x8c\x78\x99\x38\x46\x7c\x4b\x92\x21\xe9\x91\x5c\x48\xd1\ \x24\x21\x69\x07\xe9\x10\xe9\x1c\xe9\x2e\xe9\x25\x99\x4c\xd6\x22\ \x3b\x92\xa3\xc8\x02\xf2\x0e\x72\x33\xf9\x02\xf9\x11\xf9\x8d\x04\ \x45\xc2\x48\xc2\x4b\x82\x2d\xb1\x41\xa2\x46\xa2\x43\x62\x48\xe2\ \xb9\x24\x5e\x52\x53\xd2\x49\x72\xb5\x64\xae\x64\x85\xe4\x09\xc9\ \xeb\x92\x33\x52\x78\x29\x2d\x29\x17\x29\xa6\xd4\x7a\xa9\x1a\xa9\ \x93\x52\x23\x52\x73\xd2\x14\x69\x53\x69\x7f\xe9\x54\xe9\x12\xe9\ \x23\xd2\x57\xa4\xa7\x64\xb0\x32\x5a\x32\x6e\x32\x6c\x99\x02\x99\ \x83\x32\x17\x64\xc6\x29\x08\x45\x9d\xe2\x42\x61\x51\x36\x53\x1a\ \x29\x17\x29\x13\x54\x0c\x55\x9b\xea\x45\x4d\xa2\x16\x53\xbf\xa3\ \x0e\x50\x67\x65\x65\x64\x97\xc9\x86\xc9\x66\xcb\xd6\xc8\x9e\x96\ \x1d\xa5\x21\x34\x2d\x9a\x17\x2d\x85\x56\x4a\x3b\x4e\x1b\xa6\xbd\ \x5b\xa2\xb4\xc4\x69\x09\x67\xc9\xf6\x25\xad\x4b\x86\x96\xcc\xcb\ \x2d\x95\x73\x94\xe3\xc8\x15\xc9\xb5\xc9\xdd\x96\x7b\x27\x4f\x97\ \x77\x93\x4f\x96\xdf\x25\xdf\x29\xff\x50\x01\xa5\xa0\xa7\x10\xa8\ \x90\xa5\xb0\x5f\xe1\xa2\xc2\xcc\x52\xea\x52\xdb\xa5\xac\xa5\x45\ \x4b\x8f\x2f\xbd\xa7\x08\x2b\xea\x29\x06\x29\xae\x55\x3c\xa8\xd8\ \xaf\x38\xa7\xa4\xac\xe4\xa1\x94\xae\x54\xa5\x74\x41\x69\x46\x99\ \xa6\xec\xa8\x9c\xa4\x5c\xae\x7c\x46\x79\x5a\x85\xa2\x62\xaf\xc2\ \x55\x29\x57\x39\xab\xf2\x94\x2e\x4b\x77\xa2\xa7\xd0\x2b\xe9\xbd\ \xf4\x59\x55\x45\x55\x4f\x55\xa1\x6a\xbd\xea\x80\xea\x82\x9a\xb6\ \x5a\xa8\x5a\xbe\x5a\x9b\xda\x43\x75\x82\x3a\x43\x3d\x5e\xbd\x5c\ \xbd\x47\x7d\x56\x43\x45\xc3\x4f\x23\x4f\xa3\x45\xe3\x9e\x26\x5e\ \x93\xa1\x99\xa8\xb9\x57\xb3\x4f\x73\x5e\x4b\x5b\x2b\x5c\x6b\xab\ \x56\xa7\xd6\x94\xb6\x9c\xb6\x97\x76\xae\x76\x8b\xf6\x03\x1d\xb2\ \x8e\x83\xce\x1a\x9d\x06\x9d\x5b\xba\x18\x5d\x86\x6e\xb2\xee\x3e\ \xdd\x1b\x7a\xb0\x9e\x85\x5e\xa2\x5e\x8d\xde\x75\x7d\x58\xdf\x52\ \x9f\xab\xbf\x4f\x7f\xd0\x00\x6d\x60\x6d\xc0\x33\x68\x30\x18\x31\ \x24\x19\x3a\x19\x66\x1a\xb6\x18\x8e\x19\xd1\x8c\x7c\x8d\xf2\x8d\ \x3a\x8d\x9e\x1b\x6b\x18\x47\x19\xef\x32\xee\x33\xfe\x68\x62\x61\ \x92\x62\xd2\x68\x72\xdf\x54\xc6\xd4\xdb\x34\xdf\xb4\xdb\xf4\x77\ \x33\x3d\x33\x96\x59\x8d\xd9\x2d\x73\xb2\xb9\xbb\xf9\x06\xf3\x2e\ \xf3\x17\xcb\xf4\x97\x71\x96\xed\x5f\x76\xc7\x82\x62\xe1\x67\xb1\ \xd5\xa2\xc7\xe2\x83\xa5\x95\x25\xdf\xb2\xd5\x72\xda\x4a\xc3\x2a\ \xd6\xaa\xd6\x6a\x84\x41\x65\x04\x30\x4a\x18\x97\xad\xd1\xd6\xce\ \xd6\x1b\xac\x4f\x59\xbf\xb5\xb1\xb4\x11\xd8\x1c\xb7\xf9\xcd\xd6\ \xd0\x36\xd9\xf6\x88\xed\xd4\x72\xed\xe5\x9c\xe5\x8d\xcb\xc7\xed\ \xd4\xec\x98\x76\xf5\x76\xa3\xf6\x74\xfb\x58\xfb\x03\xf6\xa3\x0e\ \xaa\x0e\x4c\x87\x06\x87\xc7\x8e\xea\x8e\x6c\xc7\x26\xc7\x49\x27\ \x5d\xa7\x24\xa7\xa3\x4e\xcf\x9d\x4d\x9c\xf9\xce\xed\xce\xf3\x2e\ \x36\x2e\xeb\x5c\xce\xb9\x22\xae\x1e\xae\x45\xae\x03\x6e\x32\x6e\ \xa1\x6e\xd5\x6e\x8f\xdc\xd5\xdc\x13\xdc\x5b\xdc\x67\x3d\x2c\x3c\ \xd6\x7a\x9c\xf3\x44\x7b\xfa\x78\xee\xf2\x1c\xf1\x52\xf2\x62\x79\ \x35\x7b\xcd\x7a\x5b\x79\xaf\xf3\xee\xf5\x21\xf9\x04\xfb\x54\xfb\ \x3c\xf6\xd5\xf3\xe5\xfb\x76\xfb\xc1\x7e\xde\x7e\xbb\xfd\x1e\xac\ \xd0\x5c\xc1\x5b\xd1\xe9\x0f\xfc\xbd\xfc\x77\xfb\x3f\x0c\xd0\x0e\ \x58\x13\xf0\x63\x20\x26\x30\x20\xb0\x26\xf0\x49\x90\x69\x50\x5e\ \x50\x5f\x30\x25\x38\x26\xf8\x48\xf0\xeb\x10\xe7\x90\xd2\x90\xfb\ \xa1\x3a\xa1\xc2\xd0\x9e\x30\xc9\xb0\xe8\xb0\xe6\xb0\xf9\x70\xd7\ \xf0\xb2\xf0\xd1\x08\xe3\x88\x75\x11\xd7\x22\x15\x22\xb9\x91\x5d\ \x51\xd8\xa8\xb0\xa8\xa6\xa8\xb9\x95\x6e\x2b\xf7\xac\x9c\x88\xb6\ \x88\x2e\x8c\x1e\x5e\xa5\xbd\x2a\x7b\xd5\x95\xd5\x0a\xab\x53\x56\ \x9f\x8e\x91\x8c\x61\xc6\x9c\x88\x45\xc7\x86\xc7\x1e\x89\x7d\xcf\ \xf4\x67\x36\x30\xe7\xe2\xbc\xe2\x6a\xe3\x66\x59\x2e\xac\xbd\xac\ \x67\x6c\x47\x76\x39\x7b\x9a\x63\xc7\x29\xe3\x4c\xc6\xdb\xc5\x97\ \xc5\x4f\x25\xd8\x25\xec\x4e\x98\x4e\x74\x48\xac\x48\x9c\xe1\xba\ \x70\xab\xb9\x2f\x92\x3c\x93\xea\x92\xe6\x93\xfd\x93\x0f\x25\x7f\ \x4a\x09\x4f\x69\x4b\xc5\xa5\xc6\xa6\x9e\xe4\xc9\xf0\x92\x79\xbd\ \x69\xca\x69\xd9\x69\x83\xe9\xfa\xe9\x85\xe9\xa3\x6b\x6c\xd6\xec\ \x59\x33\xcb\xf7\xe1\x37\x65\x40\x19\xab\x32\xba\x04\x54\xd1\xcf\ \x54\xbf\x50\x47\xb8\x45\x38\x96\x69\x9f\x59\x93\xf9\x26\x2b\x2c\ \xeb\x44\xb6\x74\x36\x2f\xbb\x3f\x47\x2f\x67\x7b\xce\x64\xae\x7b\ \xee\xb7\x6b\x51\x6b\x59\x6b\x7b\xf2\x54\xf3\x36\xe5\x8d\xad\x73\ \x5a\x57\xbf\x1e\x5a\x1f\xb7\xbe\x67\x83\xfa\x86\x82\x0d\x13\x1b\ \x3d\x36\x1e\xde\x44\xd8\x94\xbc\xe9\xa7\x7c\x93\xfc\xb2\xfc\x57\ \x9b\xc3\x37\x77\x17\x28\x15\x6c\x2c\x18\xdf\xe2\xb1\xa5\xa5\x50\ \xa2\x90\x5f\x38\xb2\xd5\x76\x6b\xdd\x36\xd4\x36\xee\xb6\x81\xed\ \xe6\xdb\xab\xb6\x7f\x2c\x62\x17\x5d\x2d\x36\x29\xae\x28\x7e\x5f\ \xc2\x2a\xb9\xfa\x8d\xe9\x37\x95\xdf\x7c\xda\x11\xbf\x63\xa0\xd4\ \xb2\x74\xff\x4e\xcc\x4e\xde\xce\xe1\x5d\x0e\xbb\x0e\x97\x49\x97\ \xe5\x96\x8d\xef\xf6\xdb\xdd\x51\x4e\x2f\x2f\x2a\x7f\xb5\x27\x66\ \xcf\x95\x8a\x65\x15\x75\x7b\x09\x7b\x85\x7b\x47\x2b\x7d\x2b\xbb\ \xaa\x34\xaa\x76\x56\xbd\xaf\x4e\xac\xbe\x5d\xe3\x5c\xd3\x56\xab\ \x58\xbb\xbd\x76\x7e\x1f\x7b\xdf\xd0\x7e\xc7\xfd\xad\x75\x4a\x75\ \xc5\x75\xef\x0e\x70\x0f\xdc\xa9\xf7\xa8\xef\x68\xd0\x6a\xa8\x38\ \x88\x39\x98\x79\xf0\x49\x63\x58\x63\xdf\xb7\x8c\x6f\x9b\x9b\x14\ \x9a\x8a\x9b\x3e\x1c\xe2\x1d\x1a\x3d\x1c\x74\xb8\xb7\xd9\xaa\xb9\ \xf9\x88\xe2\x91\xd2\x16\xb8\x45\xd8\x32\x7d\x34\xfa\xe8\x8d\xef\ \x5c\xbf\xeb\x6a\x35\x6c\xad\x6f\xa3\xb5\x15\x1f\x03\xc7\x84\xc7\ \x9e\x7e\x1f\xfb\xfd\xf0\x71\x9f\xe3\x3d\x27\x18\x27\x5a\x7f\xd0\ \xfc\xa1\xb6\x9d\xd2\x5e\xd4\x01\x75\xe4\x74\xcc\x76\x26\x76\x8e\ \x76\x45\x76\x0d\x9e\xf4\x3e\xd9\xd3\x6d\xdb\xdd\xfe\xa3\xd1\x8f\ \x87\x4e\xa9\x9e\xaa\x39\x2d\x7b\xba\xf4\x0c\xe1\x4c\xc1\x99\x4f\ \x67\x73\xcf\xce\x9d\x4b\x3f\x37\x73\x3e\xe1\xfc\x78\x4f\x4c\xcf\ \xfd\x0b\x11\x17\x6e\xf5\x06\xf6\x0e\x5c\xf4\xb9\x78\xf9\x92\xfb\ \xa5\x0b\x7d\x4e\x7d\x67\x2f\xdb\x5d\x3e\x75\xc5\xe6\xca\xc9\xab\ \x8c\xab\x9d\xd7\x2c\xaf\x75\xf4\x5b\xf4\xb7\xff\x64\xf1\x53\xfb\ \x80\xe5\x40\xc7\x75\xab\xeb\x5d\x37\xac\x6f\x74\x0f\x2e\x1f\x3c\ \x33\xe4\x30\x74\xfe\xa6\xeb\xcd\x4b\xb7\xbc\x6e\x5d\xbb\xbd\xe2\ \xf6\xe0\x70\xe8\xf0\x9d\x91\xe8\x91\xd1\x3b\xec\x3b\x53\x77\x53\ \xee\xbe\xb8\x97\x79\x6f\xe1\xfe\xc6\x07\xe8\x07\x45\x0f\xa5\x1e\ \x56\x3c\x52\x7c\xd4\xf0\xb3\xee\xcf\x6d\xa3\x96\xa3\xa7\xc7\x5c\ \xc7\xfa\x1f\x07\x3f\xbe\x3f\xce\x1a\x7f\xf6\x4b\xc6\x2f\xef\x27\ \x0a\x9e\x90\x9f\x54\x4c\xaa\x4c\x36\x4f\x99\x4d\x9d\x9a\x76\x9f\ \xbe\xf1\x74\xe5\xd3\x89\x67\xe9\xcf\x16\x66\x0a\x7f\x95\xfe\xb5\ \xf6\xb9\xce\xf3\x1f\x7e\x73\xfc\xad\x7f\x36\x62\x76\xe2\x05\xff\ \xc5\xa7\xdf\x4b\x5e\xca\xbf\x3c\xf4\x6a\xd9\xab\x9e\xb9\x80\xb9\ \x47\xaf\x53\x5f\x2f\xcc\x17\xbd\x91\x7f\x73\xf8\x2d\xe3\x6d\xdf\ \xbb\xf0\x77\x93\x0b\x59\xef\xb1\xef\x2b\x3f\xe8\x7e\xe8\xfe\xe8\ \xf3\xf1\xc1\xa7\xd4\x4f\x9f\xfe\x05\x03\x98\xf3\xfc\xba\xc4\xe8\ \xd3\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\ \x13\x01\x00\x9a\x9c\x18\x00\x00\x13\xb8\x49\x44\x41\x54\x78\x5e\ \xed\x9d\x09\xb8\x56\xc3\x1f\xc7\x8f\xa5\x7f\x24\x57\xab\xe8\xb6\ \x88\x16\x37\xdc\xb4\xc9\x16\xae\x84\xa8\xac\xa5\x42\x28\xa9\x78\ \x0a\xe5\xe9\x91\x4a\xc9\x92\x87\xd2\xb5\x44\x92\x56\x6b\xa1\x28\ \x69\x41\x29\xe5\x76\x89\x24\x2a\x95\x24\xd2\xe2\xa6\x2c\xed\x39\ \xff\xf3\xfd\xdd\xf9\xbd\x77\xde\x79\x7f\xe7\x5d\xee\x7d\xdf\xf7\ \x2e\xcd\xe7\x79\xbe\xcf\x99\x33\xe7\x37\x33\x67\x9b\x73\x66\xe6\ \xcc\xcc\x39\xc2\x71\x1c\xd7\x93\xc5\x62\x51\x1c\xa9\x96\x16\x8b\ \x45\x61\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\ \x60\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\ \x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\ \x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\x85\xc5\x62\x60\x33\x85\ \xc5\x62\x60\x33\x85\xc5\x62\x50\xa4\xc6\x53\x54\xaa\x54\x89\x74\ \xc4\x11\x47\x38\x39\x39\x39\xce\xb6\x6d\xdb\xd4\x96\xc4\x73\xc2\ \x09\x27\x38\x55\xaa\x54\x71\x8e\x3a\xea\x28\xe7\xaf\xbf\xfe\x72\ \x7e\xfb\xed\x37\xb5\x25\x39\x20\xed\x0a\x15\x2a\x38\xae\xeb\x3a\ \xdb\xb7\x6f\xa7\xe3\xcf\x2f\x75\xeb\xd6\x75\x76\xed\xda\xe5\x6c\ \xdd\xba\x55\xf9\x14\x9c\xfa\xf5\xeb\x3b\x1b\x36\x6c\x70\xf6\xec\ \xd9\xa3\x7c\x62\xa7\x6a\xd5\xaa\x74\x9e\x0f\x1d\x3a\x44\xc7\xf8\ \xe7\x9f\x7f\xaa\x2d\x45\x0f\x64\x8a\x42\x53\xdf\xbe\x7d\xdd\x65\ \xcb\x96\xb9\x7b\xf7\xee\xf5\xee\x87\x50\x56\xac\x58\xe1\x0e\x19\ \x32\xc4\xfd\xdf\xff\xfe\x27\x86\x2f\x88\xba\x74\xe9\xe2\x2e\x59\ \xb2\xc4\xf5\x32\x81\x4a\x2d\x98\x55\xab\x56\xb9\xa3\x46\x8d\x72\ \xbd\x0b\x29\x86\x2f\x88\x8e\x3c\xf2\x48\x77\xe0\xc0\x81\xee\x77\ \xdf\x7d\xe7\x1e\x38\x70\x40\xa5\x98\xc7\xfe\xfd\xfb\xdd\xaf\xbf\ \xfe\x9a\xce\x8f\x14\x5e\x52\xc5\x8a\x15\xdd\xdd\xbb\x77\xab\x18\ \x5c\x77\xde\xbc\x79\xa2\x5d\x2c\x6a\xdd\xba\xb5\xeb\xdd\xc4\x2a\ \x46\xd7\x7d\xf5\xd5\x57\x45\x3b\x49\x29\x29\x29\xee\x73\xcf\x3d\ \xe7\x7e\xff\xfd\xf7\x2a\x74\x30\xff\xfc\xf3\x8f\xbb\x78\xf1\x62\ \xb7\x47\x8f\x1e\x62\xf8\x42\x94\xe8\x99\x70\x0d\x1e\x3c\x58\x9d\ \x9a\xe8\x79\xf6\xd9\x67\xc5\xb8\x62\x55\xcf\x9e\x3d\x55\x8c\xa1\ \xfc\xf7\xdf\x7f\xca\x15\xcc\x8c\x19\x33\xc4\xb8\xf2\x23\x64\x34\ \x09\xbf\xb4\xc1\xd0\xa1\x43\xc5\xb8\x74\xed\xd8\xb1\x43\x59\xe7\ \x31\x79\xf2\x64\xd1\x36\x5a\x49\x74\xea\xd4\x49\xb4\x65\x1d\x73\ \xcc\x31\xee\x5b\x6f\xbd\xa5\xac\x83\x09\x77\x8c\xbd\x7a\xf5\x12\ \xe3\x2b\x04\x89\x9e\x09\x53\xe5\xca\x95\xdd\x8d\x1b\x37\xaa\xd3\ \xe0\xd2\x53\x08\x27\x2a\x9c\xf4\x27\x15\x9e\x2e\x67\x9d\x75\x96\ \x18\x77\x24\xe1\xe9\xbc\x70\xe1\x42\x15\x53\xf4\x69\x63\x09\xf0\ \xe4\x96\xe2\x8d\x56\x5e\x11\xc4\xf5\x8a\x0c\x14\x17\x88\xf5\xd8\ \xbd\x22\x9d\x5b\xbd\x7a\x75\x31\xee\x53\x4e\x39\x45\x59\xe5\xde\ \x78\x10\x73\xf4\xd1\x47\x8b\x61\x22\x89\x1f\x5c\xfa\xfe\x00\xdc\ \xf0\x92\x3d\x74\xf1\xc5\x17\x93\x0d\x80\x7d\xac\xc7\xf8\xd5\x57\ \x5f\xb9\x5e\xf1\x59\x8c\x3b\x89\x12\x3d\x13\xa2\x06\x0d\x1a\xa8\ \x43\x0f\x3e\xd1\xa6\xc2\x9d\x48\xa6\x4d\x9b\x36\x62\x1a\x7e\x3a\ \xf9\xe4\x93\x55\xc8\xfc\xa5\xcd\xd4\xac\x59\x53\x8c\x3f\x92\x5a\ \xb4\x68\xa1\x62\xf0\xcf\x0c\xf0\x0f\xb7\x8d\x69\xd4\xa8\x51\x48\ \xfc\x28\x3a\x31\x66\x98\xfc\x3e\x81\x39\xbc\xbe\x1f\x00\x6f\x3a\ \xc9\xbe\x4f\x9f\x3e\xb4\x1d\x84\x3b\x0e\xc9\x9f\xc5\xd4\xaa\x55\ \x4b\x4c\x23\x49\x12\x3d\xe3\xae\x93\x4e\x3a\x49\x1d\xae\xff\x09\ \x33\x81\x9f\x69\xcb\x17\x0a\xe0\xa9\x24\xa5\x25\x89\xd1\xe3\x92\ \xe2\x64\xd8\x9f\x6d\x98\xd3\x4f\x3f\x5d\x8c\x3f\x9c\xd2\xd2\xd2\ \x54\xe8\xd0\x63\xe7\x75\x13\x7d\x9b\x6e\xcb\x54\xab\x56\x2d\x24\ \x9d\xac\xac\x2c\xda\xa6\x87\x01\xa8\xaf\x99\xb6\x91\x74\xd7\x5d\ \x77\x51\x58\x3d\x2e\x8e\xef\xfc\xf3\xcf\x0f\xb1\xbf\xf9\xe6\x9b\ \x69\x1b\x30\xc3\xb0\x4c\x24\x1b\x3e\xc6\x83\x07\x0f\x86\xa4\x91\ \x44\x89\x9e\x71\xd7\x9e\x3d\x7b\xe8\x60\xa5\x13\xc1\xe0\x44\xac\ \x59\xb3\x86\x2a\xb8\xfb\xf6\xed\x53\xbe\xe1\xc3\x94\x2e\x5d\x5a\ \x4c\x4f\xd7\xd2\xa5\x4b\xc9\x36\x5c\x3c\x60\xdd\xba\x75\x94\xf6\ \xae\x5d\xbb\x94\x4f\x2e\x6c\xb7\x73\xe7\x4e\x31\xfe\x70\x42\x65\ \x93\x31\xd3\xe6\x78\x01\x6e\xdc\x1f\x7e\xf8\x81\xd2\xd7\x6f\x7e\ \xbf\x30\x38\x3f\x66\x5a\x67\x9e\x79\x26\x6d\x93\xec\xaf\xbb\xee\ \xba\x10\xfb\x70\xca\xc9\xc9\xa1\x70\x66\x3c\xeb\xd7\xaf\x0f\xb1\ \x4d\x4d\x4d\xa5\x6d\x40\xb7\x37\x33\x3c\x1a\x34\x70\x8c\x38\xcf\ \x3a\x7a\x18\x16\x80\x9d\x99\x56\x92\x24\x7a\xc6\x55\xe3\xc7\x8f\ \xa7\x83\x94\x0e\x1c\xa0\x05\xe6\xc2\x0b\x2f\x0c\x09\x57\xaf\x5e\ \xbd\xa0\x3a\x80\x14\x7e\xfa\xf4\xe9\x21\xe1\x74\x71\xa5\xda\x0c\ \xcb\xe1\xb7\x6f\xdf\xee\xb6\x6d\xdb\x36\x24\x1c\xca\xee\xef\xbc\ \xf3\x0e\xd9\x80\x7f\xff\xfd\xd7\xad\x52\xa5\x4a\x88\x5d\x24\x4d\ \x9d\x3a\x95\xc2\x4b\x69\x83\xf9\xf3\xe7\xbb\xe9\xe9\xe9\x21\xe1\ \x9a\x34\x69\x42\x75\x18\x46\x0a\x3f\x62\xc4\x88\x90\x70\xc8\xb8\ \xc0\xb4\x95\x6e\x66\x3f\x71\x31\x57\x8f\x83\xe3\x69\xdf\xbe\x7d\ \x88\xfd\x86\x0d\x1b\x68\x9b\x6e\xab\x67\xec\xf7\xdf\x7f\xdf\xad\ \x5a\xb5\x6a\x48\xb8\xab\xae\xba\xca\xdd\xb2\x65\x0b\xd9\xe8\x61\ \x59\x00\x45\x32\x33\x5c\x12\x24\x7a\xc6\x4d\xa5\x4a\x95\xa2\x83\ \x03\xe6\x01\x83\x7e\xfd\xfa\x89\xe1\x74\x75\xec\xd8\x51\x59\xcb\ \x17\x4a\x2a\x4a\xb0\xf8\xe2\x48\xe1\x32\x33\x33\xc5\x30\xa6\x4e\ \x3c\xf1\xc4\x80\xfb\xa5\x97\x5e\xa2\xb0\xe0\xdd\x77\xdf\x0d\xb2\ \x33\xa5\x17\x19\xcd\xb4\x41\xd7\xae\x5d\xc5\x70\xba\xee\xbd\xf7\ \x5e\x65\x2d\xc7\x51\xb6\x6c\xd9\x20\x7b\xd4\x1f\x80\x6e\xcb\xf6\ \x52\xb1\x47\xd2\x67\x9f\x7d\x46\xf6\x66\x78\x3c\xe9\x4d\xdb\xcb\ \x2f\xbf\x9c\xb6\xf1\x5b\x41\xb7\x07\x4d\x9b\x36\x0d\x09\x63\xea\ \xe9\xa7\x9f\x26\x5b\x3d\xbc\x1e\x87\x14\x26\xc1\x12\x3d\xe3\xa6\ \x01\x03\x06\xd0\x81\x49\x07\x7c\xcb\x2d\xb7\x88\x61\x24\xa1\x72\ \x09\xa4\x78\xf0\x24\x92\xc2\xdc\x74\xd3\x4d\xb4\x5d\x0a\x23\x3d\ \x65\x23\xe9\xc9\x27\x9f\xa4\xb0\x3a\xd9\xd9\xd9\xa2\x2d\x34\x6e\ \xdc\x38\xb2\x31\xd3\x06\x19\x19\x19\x62\x18\x49\x28\xfa\x30\x66\ \x5c\xc3\x87\x0f\x0f\xb1\xc7\x37\x0e\x60\xda\x46\xf3\xdd\x82\x1b\ \x24\xf4\xb0\x1c\xfe\xee\xbb\xef\x0e\xb1\xe7\xa2\x90\x69\x0b\xd0\ \x22\x66\xda\xfb\xe9\x89\x27\x9e\xa0\x30\x7a\x3c\x1c\xd7\x8d\x37\ \xde\x28\x86\x49\xa0\x44\xcf\xb8\x69\xed\xda\xb5\x74\x60\x7c\x90\ \xfc\xe4\xce\x4f\xbb\xff\x9b\x6f\xbe\x49\x61\xcd\x93\x06\x24\xfb\ \x69\xd3\xa6\xd1\x36\xd3\x7e\xd3\xa6\x4d\xa2\x7d\x24\x99\x37\x1b\ \x23\xd9\x42\x8c\x99\xfe\x2b\xaf\xbc\x22\xda\x87\xd3\xa2\x45\x8b\ \x28\xac\x19\x97\x54\x89\x7e\xea\xa9\xa7\x68\x9b\xfe\xf4\x66\xd0\ \x2c\x6d\xda\xeb\x7a\xfd\xf5\xd7\xc9\xce\x4c\x07\x98\xb6\xf8\x1e\ \xc1\x98\xf6\xfd\xfb\xf7\x0f\xb1\x8f\xa4\x1f\x7f\xfc\x91\xc2\x9a\ \x71\xcd\x9a\x35\x4b\xb4\x4f\xa0\x44\xcf\xb8\xe8\xd8\x63\x8f\xa5\ \x83\x02\xe6\x81\x4a\xe5\xe8\x48\xc2\x57\x6d\xc6\x8c\x4f\x7a\x4d\ \x33\xa6\x6d\xcb\x96\x2d\x43\x6c\xa3\x11\x57\xc0\xcd\xf8\xa4\xfa\ \x10\x8a\x74\x40\x2a\x56\xe0\x5b\x8d\x69\x1f\x49\xfc\x1d\x42\x8f\ \x8b\xe3\x33\x8b\x50\xe1\xce\x13\xbe\x30\xeb\xb6\xba\xf0\xe5\x9e\ \x31\xc3\xa1\x6e\x64\xda\x37\x6f\xde\x9c\xb6\x99\xb6\xf8\x42\x6f\ \xda\x46\x23\xbf\xf8\x50\x9f\x93\xec\x13\x28\xd1\x33\x2e\x6a\xdc\ \xb8\x31\x1d\x94\xf9\xc4\xc2\x07\x38\xc9\x3e\x1a\xe1\xe3\x0e\xe0\ \xf8\xf8\xcd\xd3\xbd\x7b\xf7\x10\x5b\xc0\x76\x9c\x36\x30\xed\xa2\ \xd5\xc4\x89\x13\x29\xbc\x19\xe7\x83\x0f\x3e\x18\x62\x7b\xc3\x0d\ \x37\xd0\x36\xd3\xf6\xd7\x5f\x7f\x0d\xb1\x8d\x56\x52\x0b\x1e\xb8\ \xe0\x82\x0b\x42\x6c\xa5\xc6\x0d\xc6\xb4\x65\x71\xd9\x5e\x7a\xc3\ \x48\xf5\x36\x74\x41\x01\xa6\xfd\xa4\x49\x93\x42\x6c\xa3\x95\x79\ \x8c\x4c\xb9\x72\xe5\x44\xfb\x44\x28\xa1\xbd\x64\xbd\x0a\x2a\x2d\ \xd1\xc1\x4f\xc7\x7b\x4d\x2a\x57\xec\x78\x99\x42\xb9\x82\x41\x47\ \x33\x1d\x74\x3e\x93\xf0\x6e\x4a\xe5\x8a\x9d\x85\x0b\x17\x2a\x57\ \x30\xde\x53\x5c\xb9\xf2\x90\xfc\xc0\xd2\xa5\x4b\x95\x2b\x76\xe6\ \xce\x9d\x4b\x4b\xef\x1e\x21\xf1\x79\x5d\xbe\x7c\x39\x2d\x75\xbc\ \xfa\x8f\x72\xe5\x81\x30\xe0\xbe\xfb\xee\xa3\xa5\x49\x97\x2e\x5d\ \x68\x69\x5e\xaf\x25\x4b\x96\x88\xe7\x2d\x35\x35\x95\x96\xa6\xfd\ \xb2\x65\xcb\x94\x2b\x76\xd0\x91\x51\xc7\xcb\x18\xb4\x44\x87\xc9\ \x64\x91\xd0\x4c\x61\x9e\x2c\xe6\xef\xbf\xff\x56\xae\xd8\xf1\xde\ \x32\xca\x95\x0b\xa7\x81\xde\xad\x3a\x5e\x79\x57\xb9\x82\x31\xc3\ \xc7\x82\xdf\x7e\x97\x2e\x5d\x5a\xb9\xf2\xf0\x8a\x8e\xca\x15\xcc\ \xee\xdd\xbb\x95\x2b\x76\x3a\x74\xe8\xe0\xec\xdb\xb7\xcf\xf1\xea\ \x05\x24\x30\x68\xd0\x20\xc7\x2b\x5e\x90\x5b\x67\xcd\x9a\x35\x24\ \xe9\x1a\x3c\xf6\xd8\x63\xca\x95\x87\x57\x99\x0f\xf4\xd2\x35\xe9\ \xdd\xbb\xb7\x72\x05\x23\x1d\x37\x28\xc8\x39\x3e\x78\xf0\xa0\x72\ \x05\xe3\x15\x09\x95\x2b\xf1\x14\xca\x78\x0a\xbf\xcc\x12\x0d\x7c\ \x33\x98\x98\x17\x53\xba\xb8\x20\x19\x69\x83\x44\xa4\x8f\x6e\xdb\ \xe5\xcb\x97\x77\x1e\x7e\xf8\x61\xe7\xe5\x97\x5f\x76\xbc\xba\x8c\ \x78\x83\x33\xd2\x1b\x01\xfb\x75\xdc\x71\xc7\x39\x2d\x5a\xb4\x50\ \x3e\xb9\x3c\xff\xfc\xf3\xca\x95\x07\xf6\x75\xdd\xba\x75\xbe\x4f\ \xfe\x44\x1c\xa3\x1f\x7e\x69\x25\x82\x42\xc9\x14\xc9\x3c\xc0\x78\ \x52\x14\xf6\x1b\x19\xe3\xd1\x47\x1f\x75\x7a\xf4\xe8\xe1\x2c\x5e\ \xbc\x58\xf9\xca\xcc\x9e\x3d\x9b\xc6\xa4\x48\x37\xe9\x23\x8f\x3c\ \xa2\x5c\x8e\xd3\xac\x59\x33\x2a\x0a\xe9\xc7\xc7\x6e\xdd\x2e\x5a\ \x8a\xeb\xf5\x65\x0a\x25\x53\xf8\x15\x6d\xe2\x89\xdf\x6b\xd8\xef\ \x95\x1f\x0d\xa5\x4a\x95\x52\xae\x60\xbc\x8a\xa6\x72\x15\x3d\xfa\ \xf5\xeb\xa7\x5c\x79\xe0\xa6\xf5\x2a\xe7\x4e\xad\x5a\xb5\x68\x5d\ \xb2\xe1\xb7\xe2\x6b\xaf\xbd\x46\x4b\x89\x03\x07\x0e\x28\x57\x30\ \x7e\x45\xc7\x68\x30\x8b\xc1\x4c\x32\xcf\x71\x42\x33\xc5\xce\x9d\ \x3b\x69\x69\x3e\x39\x6a\xd7\xae\xad\x5c\x89\xc3\x6f\xd4\x9e\x5f\ \x05\x38\x1a\x1a\x36\x6c\xa8\x5c\xc1\x24\x73\x84\x60\xac\x4c\x9c\ \x38\x91\x96\xd2\xdb\x22\x33\x33\x93\x96\xe6\x8d\xc8\xd7\x6b\xf8\ \xf0\xe1\xb4\xf4\x63\xcb\x96\x2d\xb4\x34\xaf\x6f\x7a\x7a\xba\x72\ \xc5\x4e\xd9\xb2\x65\x95\x2b\x17\xde\xef\x3f\xfe\xf8\x83\x96\xc9\ \x20\xa1\x99\x62\xe5\xca\x95\xb4\x34\xcb\xe2\xa8\xd0\xd5\xa9\x53\ \x47\xad\x25\x06\x54\x48\x81\x7e\x33\xf0\xc5\x6b\xd2\xa4\x09\x2d\ \x63\xa5\x5b\xb7\x6e\xca\x15\x0c\x5a\x67\x8a\x32\x63\xc7\x8e\x55\ \xae\x60\xda\xb6\x6d\x4b\x6f\x6d\xae\x97\xe0\x5c\x41\x7c\xbd\x06\ \x0c\x18\x40\x4b\x3f\xb2\xb3\xb3\x69\x69\x66\xb8\x36\x6d\xda\x28\ \x57\x6c\x34\x68\xd0\x80\x32\x85\x9e\xc9\x10\x37\xde\x48\x18\xbe\ \x9a\x2c\x12\x9a\x29\x30\xd6\x79\xf3\xe6\xcd\x6a\x2d\x17\x6e\x62\ \xeb\xd3\xa7\x0f\x2d\x13\xc9\x82\x05\x0b\x94\x2b\x98\xd1\xa3\x47\ \x2b\x57\xf4\xa0\x75\xe6\xf8\xe3\x8f\x0f\x79\x2a\x82\x0f\x3f\xfc\ \x50\xb9\x8a\x26\x7e\x15\x6e\x30\x6a\xd4\x28\x6a\xe6\xbe\xed\xb6\ \xdb\x02\x45\x14\xbc\xf9\xf0\x36\xdf\xbf\x7f\x3f\xad\xfb\xc1\xcd\ \xe3\x66\xa6\xa8\x58\xb1\xa2\x72\xc5\x86\x54\xd9\x07\x59\x59\x59\ \xca\x95\x1c\x12\x9a\x29\xc0\xd4\xa9\x53\x69\xc9\x17\x81\x4f\x20\ \x2a\x8a\x4d\x9b\x36\x25\x77\x2c\x98\x17\x80\x91\xfc\xdf\x7e\xfb\ \x6d\xe5\xca\x03\xfb\xd1\xb8\x71\x63\xa7\x7b\xf7\xee\xca\x27\x32\ \xa8\x87\x48\x71\x21\xcd\x1d\x3b\x76\xa8\xb5\xa2\x0b\x9a\x6c\xe7\ \xcf\x9f\x2f\x9e\xa3\x76\xed\xda\xd1\x72\xd2\xa4\x49\x54\x67\xc2\ \xf7\x00\x68\xfd\xfa\xf5\xe4\x1f\x0e\x34\x51\xf3\x04\x0f\x88\x9b\ \xe3\x9f\x31\x63\x06\x2d\x63\xa1\x73\xe7\xce\x4e\xf3\xe6\xcd\xc5\ \x87\xce\xe4\xc9\x93\x95\x2b\x79\x60\x2f\x12\x26\x7c\x89\x64\xf8\ \x2b\xa5\xfe\xa5\x12\xbd\x2c\xa5\x70\x7e\xe2\x4e\x79\xfc\x15\x15\ \x4b\x20\xf5\xb5\x89\xd4\x43\xf7\xf6\xdb\x6f\x0f\x09\x63\x0a\xe3\ \x35\xfc\xc6\x82\x00\xbf\x41\xf7\x52\x47\x48\xe0\x55\x5c\x45\xfb\ \x44\xab\x6e\xdd\xba\x94\xbe\xbe\x3f\xbc\x4f\xde\x5b\x42\x0c\x13\ \x8d\xbc\x8c\x40\x5f\xe9\x19\xf4\x38\x90\xec\xc2\x09\x1d\x43\x19\ \x73\xdf\x40\x99\x32\x65\xc4\x70\x09\x94\xe8\x19\x57\xcd\x99\x33\ \x87\x0e\x4e\x3f\x60\xfd\xa0\xc7\x8c\x19\x13\xf5\x58\x05\x8c\xcf\ \x66\xf4\x38\xfc\x46\xc4\x0d\x1b\x36\x8c\xb6\x9b\x69\x73\x58\xaf\ \xe8\xe3\x9e\x76\xda\x69\x21\xe1\x90\xa1\xf4\xe1\x95\x52\x58\xa9\ \x2b\x35\xab\xa8\x65\x0a\xc8\xec\x22\xc3\xfb\xb4\x75\xeb\x56\xd1\ \x3e\x16\x61\x98\x2e\x8f\x1f\x47\x46\x99\x39\x73\x26\xc5\x8d\x2e\ \x3d\x78\x60\x49\xe3\xc4\x4f\x3d\xf5\x54\x3a\xff\x8c\xbe\x5f\xbc\ \x6f\xe1\xfa\x6a\x25\x50\xa2\x67\x5c\xe5\xf7\xc4\xd6\x0f\x1e\xac\ \x5e\xbd\xda\x7d\xef\xbd\xf7\x68\x60\xfc\x94\x29\x53\xa8\x0f\x0d\ \xba\x78\xdf\x79\xe7\x9d\x34\x36\x81\xe3\x43\x3f\x27\x1d\x74\x11\ \xd7\xd3\x33\x15\x69\x20\x0b\xf8\xf9\xe7\x9f\xa9\x0b\xba\x57\x4c\ \x72\xbf\xfc\xf2\xcb\xa0\x6d\x7e\x61\xd0\x81\x4d\x4a\x0f\x2a\x8a\ \x99\xe2\x9a\x6b\xae\xa1\x7d\xd0\xf7\x89\xf7\xeb\xa2\x8b\x2e\x12\ \xc3\xe4\x47\x18\x3d\x68\x82\x74\xbe\xf9\xe6\x1b\xba\xae\x1f\x7c\ \xf0\x01\x0d\x7a\x62\xcc\xfd\x81\x40\x21\x74\x04\x64\x89\x9e\x71\ \x17\x77\x0e\x04\xe6\x09\xe0\x22\x50\x24\x30\x94\x11\x13\x00\x70\ \x9c\x95\x2a\x55\x0a\x4a\xc3\x4f\x7a\xaf\x51\x2e\x76\x45\x93\xb6\ \x6e\xa7\x0b\x0c\x1a\x34\x48\x4c\x8b\x55\x14\x33\x05\xc4\x98\xfb\ \x85\x61\xc0\x92\x7d\xac\xc2\x1b\x9f\x31\xd3\x90\x30\xaf\x87\x6e\ \xab\x0f\xee\x4a\xa6\x12\x5e\xd1\x66\xd0\x55\xa0\x63\xc7\x8e\xe4\ \x46\x85\xcc\x3b\x66\x72\x03\x5e\xf7\x4e\x88\x28\xb6\x4d\x4b\x4b\ \x73\x3e\xfe\xf8\x63\x8a\x0b\x5d\x15\xa2\x6d\xbb\x46\x2b\x0a\x77\ \x6b\x40\x73\x63\x34\x69\xeb\x36\x0c\x6c\xa1\xe9\xd3\xa7\xd3\x57\ \xe5\xfc\x80\xf0\x85\x09\xba\x88\x48\x60\x56\x41\xaf\x38\xa3\xd6\ \xf2\x8f\x57\x4c\x52\xae\x60\xfc\xce\xb1\x7e\x3e\xf4\xf5\x96\x2d\ \x5b\x06\x7d\xff\x41\xcb\x5f\xe5\xca\x95\xd5\x5a\xe2\xa1\xdc\x91\ \x2c\xe9\x6f\x0c\x80\x27\x85\xf4\xb4\x08\x27\xa6\x5d\xbb\x76\x62\ \x1a\x7e\xc2\x38\x61\x7d\x52\x82\x68\xd2\xe6\xed\xcc\x3d\xf7\xdc\ \x23\xc6\x6d\xaa\xa8\xbe\x29\x20\xc6\xdc\xb7\x68\x87\xab\x46\xd2\ \xef\xbf\xff\x4e\xf1\x21\xde\x48\xe7\x98\xb7\x33\x28\x32\xd5\xa8\ \x51\x23\x28\xbe\x86\x0d\x1b\xba\x5e\x66\xa6\xae\xea\xd2\xe8\xbf\ \x04\x48\xf4\x4c\xb8\x66\xcf\x9e\xad\x4e\x43\x1e\xfa\x49\xd2\x25\ \x9d\x48\xe6\xb2\xcb\x2e\x13\xe3\x0f\x27\xcc\x9a\x67\xa2\xa7\x0d\ \xb7\x09\x26\x22\xab\x5d\xbb\xb6\x18\x9f\x24\x54\xfc\x19\x7d\x7f\ \x63\x9d\x55\x23\x11\x7a\xe1\x85\x17\x68\x5f\xf8\x7c\x32\x68\x69\ \x93\xec\x63\x95\xf7\x16\x77\x7f\xfa\xe9\x27\x15\x6b\x1e\x91\xce\ \x31\x46\x56\x4a\xf1\x61\x7a\x53\xd4\x2b\x31\x64\xb5\x43\x87\x0e\ \x6e\xf9\xf2\xe5\x45\xbb\x38\x4a\xf4\x4c\x8a\x70\x93\x61\x6e\x52\ \x0c\x0f\x8d\x04\x9f\x48\x96\x7e\xa3\xd5\xa9\x53\x47\x8c\x3f\x9c\ \x70\x62\x31\x0d\x27\x0f\x81\x94\xc0\x34\x94\xa8\x7c\xe7\x77\xa4\ \xde\xe3\x8f\x3f\xae\x62\xca\x65\xc2\x84\x09\xa2\x5d\x61\x08\x8d\ \x09\x3a\xd2\x2c\x1d\x05\xd5\x15\x57\x5c\x41\x0d\x27\x3c\x5d\x8e\ \x04\xce\x3f\x26\x57\xab\x50\xa1\x82\x18\x07\x74\xe9\xa5\x97\xd2\ \x7c\xc2\x68\xd8\x88\x66\xa2\x8b\x82\x0a\x05\x38\x38\x0a\x9d\x72\ \xe5\xca\x39\xde\xd3\x95\x3e\x1c\xa1\x5c\xea\x9d\x2f\x27\x25\x25\ \xc5\xc9\xc8\xc8\xa0\x0f\x3b\x0c\xfc\x75\x50\x06\x45\x97\x8e\x82\ \x74\x32\x44\xd7\x02\x94\xa9\x31\x30\x09\x1f\xb0\xf0\x41\x6e\xed\ \xda\xb5\x21\x5f\xe3\xf3\x03\xe2\x44\xe7\xbb\x6f\xbf\xfd\xb6\x40\ \x83\xab\x12\x01\x3e\x62\x56\xaf\x5e\xdd\x99\x37\x6f\x9e\x38\x26\ \x23\x9e\xe0\x3c\xe0\x2b\x39\xbe\x76\xa3\xdb\x06\xfa\x4d\xad\x5e\ \xbd\x3a\xea\xb1\x17\xb8\x37\xd0\x81\x71\xce\x9c\x39\x54\x1f\x49\ \x34\x41\xb9\xa4\xa8\x0a\x65\x4a\x46\x7f\x63\x40\x00\x33\xda\x49\ \xe1\xac\xac\x62\x55\xd2\x5a\x9f\x0a\xca\xd0\xa1\x43\x9d\xf3\xce\ \x3b\x8f\xdc\x66\x8b\x05\xe0\xa1\xaf\x16\x4b\x41\x29\x36\x99\x02\ \xa0\x63\x18\xf7\xd5\xe1\x8c\xc1\x3d\x3a\x3f\xfd\xf4\x53\x5a\x5a\ \x2c\xf1\x20\xe4\xf5\x51\xd4\x85\x0a\xb2\x4e\x34\xff\x6e\xb0\xb2\ \x8a\x56\x45\xa6\xa2\x1d\x2b\xf8\x0d\x18\x3e\xe6\xa1\xfb\x32\x86\ \x68\x5a\x2c\xf1\xa2\xd8\x66\x0a\x8b\x25\x51\x14\xab\x3a\x85\xc5\ \x92\x0c\x6c\xa6\xb0\x58\x0c\x6c\xa6\xb0\x58\x0c\x6c\xa6\xb0\x58\ \x0c\x6c\xa6\xb0\x58\x0c\x0e\x9b\x4c\x81\x49\x12\x78\x42\x60\xa6\ \x55\xab\x56\xca\x55\xf2\xb8\xf2\xca\x2b\x95\xcb\x92\x1f\x82\x3e\ \x5c\x94\x54\x81\x6d\xdb\xb6\x05\xd6\xf9\x7f\xcf\xf9\xf9\xa3\x51\ \x51\x17\xff\xb4\x25\x9e\x43\x4c\x0f\x27\x1d\x56\xc5\xa7\xbd\x7b\ \xf7\x2a\x57\xde\x2c\xd6\x7e\xd3\x34\x16\x67\x78\xf4\x5b\x32\x67\ \xea\x2e\x49\x94\xb8\x4c\x61\x4e\xbb\xa8\xe3\x3d\x3c\x95\x2b\xcf\ \x1d\x6d\x37\x64\x0c\x7f\x8d\x84\x39\x13\x22\x13\x6e\x9f\x62\x21\ \x52\xf7\x78\xde\x47\x9e\x1d\x51\x3f\xde\xfc\x12\xcd\x71\x97\x34\ \x4a\x44\xa6\x40\x1f\xfd\x55\xab\x56\xd1\x4d\x80\x09\xba\xb0\x8c\ \xc7\xac\x7d\xe8\xc3\x8f\x9f\x95\x20\x3e\xf4\xfb\xc7\x72\xe4\xc8\ \x91\x6a\x6b\x2e\x98\x2f\x77\xca\x94\x29\x34\x35\xfe\xa1\x43\x87\ \xc8\x06\xe3\x8b\xc1\x98\x31\x63\x82\xf6\xa9\x7f\xff\xfe\xe4\x0f\ \x78\xb6\x41\xfc\x5f\x82\x41\x7a\xf0\x6b\xdf\xbe\x3d\xad\x63\x0c\ \x02\xd6\x87\x0d\x1b\xe6\x6c\xdc\xb8\x91\xba\xb3\x60\xfd\xa1\x87\ \x1e\xa2\xed\x4c\xdf\xbe\x7d\xc9\x1f\xfb\x88\xfd\xad\x56\xad\x9a\ \xda\x22\x03\xdb\xf1\xe3\xc7\xab\xb5\x5c\x70\x5c\xf0\xe7\x8c\x7d\ \xff\xfd\xf7\x07\xe2\xc4\xd2\x9c\xe0\x0c\x7e\xfa\x04\x71\x35\x6b\ \xd6\x24\xbf\xfc\x8e\x5d\x2f\x6a\x04\xca\x52\xc5\x55\xd7\x5e\x7b\ \xad\x77\x3d\x5c\x9a\x3a\x05\x73\x48\xf1\xf4\x29\xa3\x47\x8f\x0e\ \xd8\x00\xef\xc6\x0a\xac\x63\x18\x2b\x78\xe6\x99\x67\x02\x7e\xa6\ \x06\x0f\x1e\x4c\x36\xf8\xdf\xdb\xd8\xb1\x63\x29\x3c\x78\xe0\x81\ \x07\x68\xbb\xf7\x06\xa0\x75\x80\xff\x57\x63\x94\xde\xe6\xcd\x9b\ \xdd\xfa\xf5\xeb\x07\x86\x7c\xfe\xf2\xcb\x2f\x34\x55\x0f\xea\x33\ \xc0\xbb\xd9\x28\x2c\xff\xab\x5a\xff\x21\x26\x1f\x07\x7e\xb3\x85\ \x75\x8c\x38\x63\x30\x52\x8e\xff\xc9\x0d\xf0\x9f\x6d\xd8\x60\xfc\ \x32\x83\xa9\x81\x30\x8d\x0c\xa3\xcf\x7c\xa2\x0b\xff\xa4\x03\xba\ \x1f\xc0\x8f\x2e\xe1\x6e\xd5\xaa\x55\x60\x1d\x43\x77\x79\x74\xe2\ \x1b\x6f\xbc\x41\xdb\xf9\x57\xc8\xf0\xe7\xf0\x18\x65\x07\xe6\xce\ \x9d\x1b\xf0\x2b\xc6\x12\x3d\x8b\xbd\x00\x6e\x48\x7d\x3d\xd6\x4c\ \x21\x09\x60\xaa\x1d\xb8\xf5\x1f\x5d\x7a\x4f\xd8\x10\x3b\xc0\x93\ \x80\xa5\xa4\xa4\x28\x9f\xdc\x9b\xf1\x8c\x33\xce\x20\x37\x7e\x60\ \xcf\x61\xae\xbe\xfa\x6a\xf2\xc3\x30\x56\xac\xa3\xa2\x0c\xf0\x5b\ \x5e\xb6\xe1\x09\xda\xbc\x37\x13\xad\x63\xb8\x27\xc0\x3f\xf6\xd8\ \x66\xc5\x8a\x15\xe4\xe7\x97\x29\x90\xa9\x41\xb7\x6e\xdd\x68\xbd\ \x75\xeb\xd6\xb4\x8e\x31\xd0\x58\xe7\x79\x9b\x30\xab\x20\x87\xe1\ \x9f\xd6\x63\xba\x20\x0c\xe5\x05\x2b\x57\xae\x0c\x6c\x47\x5a\x40\ \xcf\xe4\xc5\x55\x25\xa6\x4e\x71\xce\x39\xe7\xd0\x9c\xa3\xf8\x2f\ \x1c\xa6\xa0\x01\xf1\xa8\x68\xa2\x28\x84\x62\x02\x86\x41\xce\x9c\ \x39\x93\xfc\xcc\x69\x5c\x50\x64\xd1\xeb\x26\x5c\x7c\xc1\x90\x56\ \xfe\x4f\x06\x26\x9b\xe6\x5f\x13\x80\x68\xeb\x32\xc0\x7b\xfa\x2b\ \x97\xe3\x6c\xd8\xb0\x81\x96\xdc\x40\xc0\xb3\xb7\x2f\x5a\xb4\x88\ \x96\xe0\x93\x4f\x3e\x51\x2e\x19\xef\x2d\x46\xcb\x21\x43\x86\xd0\ \x12\xc5\x2f\x30\x61\xc2\x04\x5a\xa2\x18\x87\x46\x09\x7d\xf8\xec\ \xe7\x9f\x7f\x4e\x4b\x0c\x09\x45\x31\xb1\x24\x53\x22\x32\x05\x66\ \x30\xc7\x0f\x16\x3b\x75\xea\x44\xe3\xba\x79\x7e\x20\xef\xc1\x45\ \xcb\xfc\x32\x6e\xdc\x38\xca\x64\xde\x13\x9c\x7e\x34\x89\xee\xea\ \x20\xd2\x0d\xcd\x03\xa0\xcc\x1f\xc7\x48\xe1\x74\x3f\xbf\x78\xf5\ \x16\x32\x76\xf3\xb1\x71\x06\xd5\x8f\x35\xd2\x4d\x8b\x1b\x1e\xe3\ \xb2\x51\x67\xc1\x68\xc6\x4b\x2e\xb9\xc4\xd9\xb4\x69\x53\x50\x26\ \x30\xe3\xe0\x75\xbd\x31\x41\xdf\xdf\x92\x94\x51\x4a\x44\xa6\xc0\ \x2f\xa8\x70\xa1\x71\xc3\x9c\x7b\xee\xb9\x34\x51\x80\x34\x20\x5e\ \xff\xf3\x0e\xdf\xb8\x7e\x63\x31\x30\x81\xc1\x1d\x77\xdc\x41\xf1\ \xa2\xf5\x08\xf1\x42\xc0\xbc\x01\xf4\xe1\xb1\x80\x27\x01\xa8\x51\ \xa3\x06\x2d\x19\xfc\x97\x83\xe1\x9b\x0b\x13\x36\x30\xba\x3b\x5a\ \xf8\xc7\x29\xfa\x70\x5c\x4c\xc2\x10\x89\x11\x23\x46\xd0\x92\x2b\ \xcb\xfa\x6f\xbc\x72\x72\x72\xa8\xd5\x49\xcf\x00\x1c\x27\xb6\x71\ \xc6\x2c\x53\xa6\x0c\x2d\x41\xbc\x5a\xd8\x8a\x0a\x81\xb2\x54\x71\ \x15\x57\x62\xf1\x93\x77\x94\xdd\x31\x13\x38\xc3\x73\x04\x31\xd7\ \x5f\x7f\x3d\xad\xc3\x16\x60\xfe\x5a\xaf\xb8\x10\x14\x1f\xe4\xdd\ \xe8\xb4\x1d\xa4\xa5\xa5\xd1\x8f\xd7\xf1\xbf\x6c\x06\x36\x98\x27\ \x09\xa0\x72\x6d\x86\xe7\x72\x39\xa6\xf0\x41\xd9\x1c\x75\x07\x30\ \x6d\xda\x34\xda\xee\xdd\x58\xb4\x0e\x50\xb6\xe7\xfd\x01\x98\x14\ \x1a\x36\xde\x13\x9c\xd6\x51\x81\xe7\x78\x31\x15\x0d\xf0\xde\x62\ \xb4\x8e\xf9\x90\x00\xe6\x59\x42\xa5\xbb\x77\xef\xde\xb4\x0e\x22\ \x4d\xcd\x83\x89\xc7\x18\xdd\xdf\xcb\x20\xe4\x97\x9d\x9d\x4d\x8d\ \x06\x3c\xd3\xbb\x57\x74\x0b\xd8\x30\xbd\x7a\xf5\x72\xcf\x3e\xfb\ \xec\xc0\x34\x45\xb3\x66\xcd\x0a\x8a\xab\x98\x4a\xf4\x2c\x56\xca\ \xc8\xc8\xa0\x0b\xa2\x83\x56\x10\xc0\xb3\x7c\x7c\xf4\xd1\x47\xb4\ \x0e\x70\x93\xc3\x4f\x9f\x2d\x50\x8f\x8f\xd5\xb3\x67\x4f\xb5\x35\ \x0f\xaf\x6c\x4d\x4b\xa4\x09\x1b\xa0\xdf\x2c\x2c\x4c\x2a\xcd\x33\ \xe5\x31\xcb\x97\x2f\x0f\xb2\xe1\x1b\x9a\x59\xb0\x60\x01\x2d\xf9\ \x67\xf5\x8d\x1a\x35\xa2\x75\x7d\x92\x30\x6e\x19\x1a\x39\x72\x64\ \xc0\xef\x8b\x2f\xbe\x20\x3f\xc6\xab\x5f\xd0\xd2\xab\x67\x05\x6c\ \x24\x75\xed\xda\x95\xec\x5e\x7c\xf1\xc5\x90\x6d\x59\x59\x59\xb4\ \x8d\x41\x4b\x14\x1a\x16\x78\xbb\x57\x54\x55\x5b\x72\x59\xb6\x6c\ \x19\x2d\x31\x81\xb2\x1e\x4f\x31\x95\xe8\x59\xec\x84\xff\x60\xa0\ \x05\x06\x33\xc8\xf1\xc4\x5a\x5e\x79\x39\xc8\x06\x4f\x34\x7d\x6a\ \x48\xbc\x0d\x70\x73\x87\x9b\xf9\x0f\x13\x06\x63\x56\x73\xc4\x8d\ \x26\x58\xf8\xe9\x71\x60\x1a\xff\x70\x13\x79\xc1\xf6\xd6\x5b\x6f\ \x75\x9b\x36\x6d\x2a\x6e\xaf\x57\xaf\x1e\x6d\x4f\x4f\x4f\xa7\x75\ \xf3\x46\x6e\xd6\xac\x19\xb5\xf8\xe8\x7e\x7a\xfa\x2c\xb4\x54\x75\ \xee\xdc\x39\xf0\x4b\x03\x84\x33\x6d\x4c\x0d\x1c\x38\x90\x6e\x64\ \xbf\xc9\xe4\xf0\x96\xc0\xbf\x23\xf0\xc6\x92\xb6\xa7\xa6\xa6\xd2\ \xbe\x73\x5a\x38\x46\x3c\x0c\x4c\xbb\x62\x28\xd1\xd3\xaa\x04\x0b\ \x19\x39\x33\x33\x93\x32\xc4\xda\xb5\x6b\x45\x9b\xc3\x5c\xa2\xa7\ \x55\x09\x16\x3e\x26\x32\x78\x53\x49\x36\x87\xb3\xec\xc4\x05\x87\ \x21\x68\x55\xc2\x1f\x62\xf1\x4b\x83\x92\xd4\x94\x1a\x2f\x6c\xa6\ \xb0\x58\x0c\x4a\xc4\x77\x0a\x8b\x25\x9e\xd8\x4c\x61\xb1\x18\xd8\ \x4c\x61\xb1\x18\xd8\x4c\x61\xb1\x18\xd8\x4c\x61\xb1\x04\xe1\x38\ \xff\x07\xf3\x5c\x03\x68\x0a\x60\x5b\x48\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x5f\x00\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x2c\x00\x00\x01\x2c\x08\x06\x00\x00\x00\x79\x7d\x8e\x75\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\xa6\x17\x00\x00\xa6\x17\x01\x08\xbb\ \x67\x97\x00\x00\x00\x10\x74\x45\x58\x74\x54\x69\x74\x6c\x65\x00\ \x72\x65\x64\x20\x4c\x45\x44\x20\x6f\x6e\x65\x6d\x1a\x3a\x00\x00\ \x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x70\ \x61\x69\x6e\x74\x2e\x6e\x65\x74\x20\x34\x2e\x30\x2e\x31\x32\x43\ \x04\x6b\xec\x00\x00\x5e\x54\x49\x44\x41\x54\x78\x5e\xed\x9d\x07\ \xbc\x1d\x45\xd9\x87\x6f\xc8\x41\x29\x06\x94\x0f\x14\x24\x88\xa8\ \xa0\x60\x01\x0b\x4d\x40\x54\x2c\x10\x81\x80\x88\x20\x2a\xd1\xef\ \x03\x0b\x02\x81\x10\x41\x04\x84\x84\x90\xde\x43\x0a\x09\xe9\xc9\ \x4d\x08\x29\xa4\xf7\xde\x3b\x09\x09\x84\x5e\x85\xd0\x23\x06\x01\ \xb9\xf7\xcc\xf7\xff\xef\x99\xb9\x4c\x36\xef\xd9\x73\xf6\xec\xd9\ \x3d\xe5\xce\xcb\xef\xe1\x94\x9c\xb2\x3b\x33\xef\x73\x67\x66\x67\ \xf7\xd4\xb8\x68\xdc\x31\x69\xd2\x24\xd2\x04\xec\x07\x0e\x01\x47\ \x82\x13\x41\x0b\xd0\x0a\xdc\x00\xda\x81\x7e\x60\x0c\x98\x05\x56\ \x83\xed\xe0\x29\xf0\x3c\x78\x05\xbc\x01\xde\x01\xef\x81\x3a\x0d\ \xef\xf3\x39\xfe\x1b\x5f\xc3\xd7\xf2\x3d\x7c\x2f\x3f\x83\x9f\xc5\ \xcf\xe4\x67\xf3\x3b\xf8\x5d\xfc\x4e\x7e\x37\xb7\x81\xdb\xc2\x6d\ \xe2\xb6\x71\x1b\xf5\x56\xbb\x70\xe1\xa2\xaa\x83\xc9\x0e\x9a\x82\ \x83\x40\x73\x70\x1a\xb8\x1c\xb4\x01\xdd\x00\xc5\xb1\x10\x3c\x0a\ \x5e\x06\x6f\x81\xdd\xe0\x03\x90\x06\x2a\x66\xf8\x1d\xfc\x2e\x7e\ \x27\xbf\x9b\xdb\xc0\x6d\xe1\x36\x71\xdb\xb8\x8d\xdc\x56\x6e\x33\ \xb7\x9d\xfb\xc0\x7d\xe1\x3e\xe9\xbd\x74\xe1\xc2\x45\x45\x05\x93\ \x57\xf3\x31\x70\x28\xf8\x1a\x68\x09\x6e\x02\x03\xc0\x3c\xf0\x24\ \x78\x13\xb0\x07\x94\x84\x8c\x8a\x05\xb7\x95\xdb\xcc\x6d\xe7\x3e\ \x70\x5f\xb8\x4f\xdc\x37\xee\x23\xf7\x95\xfb\xcc\x7d\xf7\xca\xc1\ \x85\x0b\x17\x65\x14\x3a\x31\x39\x5c\x3a\x00\x1c\x05\xce\x01\x37\ \x82\xe1\x60\x03\xd8\x09\xd8\x6b\xa9\x07\x92\x04\xaa\x01\xee\x1b\ \xf7\x91\xfb\xca\x7d\xe6\xbe\xb3\x0c\x58\x16\x2c\x13\x96\x8d\x1b\ \x52\xba\x70\x91\x74\x30\xe9\x34\x9c\xd7\xf9\x3c\xb8\x08\xdc\x05\ \x26\x83\xc7\xc1\xbf\x40\x35\xcb\x29\x5f\x58\x06\xbb\x00\xcb\x84\ \x65\xc3\x32\x62\x59\xb1\xcc\x58\x76\x5e\x39\xba\x70\xe1\xa2\xc8\ \xa1\x93\x8b\x73\x35\x9c\x80\x3e\x15\xb4\x06\xe3\x01\x87\x45\xef\ \x02\x29\x61\x1d\x7b\xc3\xb2\x62\x99\xb1\xec\x58\x86\x2c\x4b\x96\ \xa9\x9b\x07\x73\xe1\x22\x4a\x30\x81\x40\x0a\x70\x72\xf9\x62\xd0\ \x1d\xac\x00\xaf\x03\x1e\x81\x93\x12\xd2\x91\x3f\x2c\x43\x96\x25\ \xcb\x94\x65\xcb\x32\x6e\x3e\x71\xe2\x44\x96\xb9\xae\x05\x17\x2e\ \x5c\x64\x8d\xc9\x93\x27\x93\x14\xf8\x2c\x92\x86\xc3\x97\xfe\x60\ \x1b\x70\xbd\xa8\x22\x83\x32\xf6\x3f\x7e\x17\x6c\x03\xfd\xc1\x45\ \xe0\xb3\x80\x75\xa1\x6b\xc7\x85\x0b\x17\x46\x52\xfb\x80\xc3\xc1\ \x05\xa0\x0f\xd8\x02\x98\x40\x5e\x62\x39\x12\x87\x65\xcf\x3a\x60\ \x5d\xb0\x4e\x58\x37\xac\x23\x5d\x6b\x2e\x5c\x34\xa2\x60\xc3\xd7\ \x1c\x08\x4e\x05\x1d\xc0\x46\xb0\x1b\x48\x09\xe4\x28\x1d\xac\x13\ \xd6\x0d\xeb\x88\x75\xc5\x3a\xf3\xea\xcf\x85\x8b\xaa\x0e\xdd\xd0\ \x9b\x82\xa3\x40\x2b\xc0\x78\x15\xa4\x81\x94\x2c\x8e\xf2\x81\x75\ \xc4\xba\x62\xb0\xee\x58\x87\xac\x4b\x5d\xbb\x2e\x5c\x54\x41\xd4\ \xd6\xd6\xd6\x4c\x99\x32\x85\xa2\xda\x1f\x7c\x17\x74\x01\x8f\x80\ \xf7\x81\x94\x18\x8e\xf2\x87\x75\xc7\x3a\x64\x5d\x7e\x17\xf5\xbb\ \x3f\xeb\x98\xb8\x70\x51\x91\x61\x1a\x30\xf8\x24\xb8\x00\xd4\x82\ \xd7\xd0\xc0\x1b\x7a\x53\x78\x5c\x15\x54\xd3\xbe\x84\x24\x0d\x5e\ \x03\xac\x5b\xd6\x31\xeb\xda\x89\xcb\x45\xe5\x84\x6e\xb0\x4d\xc0\ \xe1\xa0\x15\x98\x03\xde\x01\x52\x83\x77\x54\x0f\xac\x63\xd6\x35\ \xeb\x9c\x75\xcf\x36\xa0\x5b\x85\x0b\x17\x65\x16\x6c\x9c\xba\x91\ \x1e\x03\xda\x80\xb5\xe0\x7d\x20\x35\x6e\x47\xf5\xc2\x3a\x67\xdd\ \xb3\x0d\xb0\x2d\x38\x71\xb9\x28\x9f\x60\x63\xd4\x8d\xf2\x73\xa0\ \x2d\xd8\x0a\x3e\x04\x52\x63\x76\x34\x1e\xd8\x06\xd8\x16\xd8\x26\ \x3e\x87\x61\xb3\x13\x97\x8b\xd2\xc5\x43\x0f\x3d\x54\x33\x75\xea\ \xd4\x26\xb8\x6d\x8e\x86\xd8\x1a\x6c\x06\x4e\x54\x31\x81\x72\x16\ \x9f\x2f\x77\xb0\xdd\x1f\x82\xcd\xa0\x35\xdb\x0a\x60\x9b\xd1\xad\ \xc8\x85\x8b\x98\x83\x8d\x4d\x73\x04\xb8\x06\xac\x07\xff\x05\x5e\ \x52\x39\x1c\x59\x60\x1b\x61\x5b\x61\x9b\x61\xdb\xf1\xda\x91\x0b\ \x17\xb1\x84\x69\x60\xa0\x19\xb8\x02\xac\x04\x1f\x00\xa9\x71\x3a\ \x1c\xd9\x60\x9b\x61\xdb\x61\x1b\x62\x5b\x72\xe2\x72\x51\xdc\xd0\ \x8d\xea\x63\xe0\xfb\x60\x22\xd8\x0d\xa4\xc6\xe8\x70\xe4\x0b\xdb\ \x10\xdb\x12\xdb\x14\xdb\x96\x6e\x6d\x2e\x5c\x14\x18\x53\xa6\x78\ \x0b\x3e\x39\xe7\x70\x3c\xe8\x0d\x5e\x05\x52\xe3\x73\x38\x0a\x85\ \x6d\xaa\xf7\xd4\xa9\x53\x8f\x9f\x36\x6d\x5a\x13\xdc\xea\xd6\xe7\ \xc2\x45\x9e\xc1\x46\xa3\x39\x0c\xb4\x01\x3b\xd0\xa8\xd2\x6c\x60\ \xb8\x5f\x15\x54\xd3\xbe\x54\x01\x69\xb0\x03\xb0\xad\xb1\xcd\x79\ \xed\xcf\x85\x8b\x9c\xa1\x1b\xcb\xbe\xe0\x87\x60\x2e\xf8\x00\x48\ \x8d\xcc\xe1\x28\x36\x6c\x6b\x6c\x73\x6c\x7b\x6c\x83\xba\x55\xba\ \x70\xe1\x0b\x36\x0e\x4d\x73\xd0\x01\xec\x04\x52\xa3\x72\x38\xe2\ \x86\x6d\x8f\x6d\xb0\x39\xcf\x45\xc5\xad\x6e\xa5\x2e\x5c\x20\xd8\ \x20\xc0\x7e\xe0\x42\xb0\x02\xd4\x01\xa9\x21\x39\x1c\x49\xc1\x36\ \xc8\xb6\x78\xe1\xb4\x69\xd3\xf6\x03\xba\xb5\xba\x68\xb4\xc1\x46\ \x30\x6e\xdc\x38\xde\x1e\x83\x86\xd1\x07\xbc\x05\xa4\xc6\x13\x1a\ \x7c\xa6\xa3\x42\x29\xb3\xfa\x7b\x0b\xf4\x01\xc7\x00\xaf\xcd\xba\ \x68\x84\xa1\x2b\x3f\x05\xce\x03\xab\x41\x1a\x48\x0d\xc6\xe1\x28\ \x35\x6c\x9b\x6c\xa3\x6c\xab\x6c\xb3\xba\x15\xbb\xa8\xfa\x60\x65\ \x6b\x0e\x05\x77\x80\x57\x81\xd4\x48\x1c\x8e\x72\x83\x6d\x95\x6d\ \x96\x6d\xd7\x6b\xc7\x2e\xaa\x38\x74\x25\x37\x01\x27\x03\xc6\x07\ \x40\x6a\x18\x0e\x30\x7d\xfa\xf4\x3d\xe0\x73\x1c\x2e\x71\x49\x04\ \xcf\x93\xe3\x75\xb0\xec\x1f\x72\x98\x38\x71\xa2\x7a\xf0\xc1\x07\ \xd5\x84\x09\x13\x3c\x78\x9f\xcf\xd9\xaf\x31\xd7\xce\x32\xcb\x2a\ \xb2\x7d\x8f\x23\x2b\x6c\xb3\x8c\x93\x51\x7e\x6c\xcb\xba\x75\xbb\ \xa8\xaa\x40\x22\x90\x03\x50\xc1\x57\x81\x27\x81\xd4\x18\x1a\x1d\ \xb6\x28\x28\x10\x23\x22\x0a\xa7\xb6\xb6\x56\x8d\x1c\x39\x52\xdd\ \x7f\xff\xfd\xea\xbe\xfb\xee\x53\x03\x06\x0c\x50\xf7\xde\x7b\xaf\ \xea\xd3\xa7\x8f\xea\xd9\xb3\xa7\xea\xd6\xad\x9b\xea\xd2\xa5\x8b\ \x47\xa7\x4e\x9d\x1a\xe8\xd8\xb1\xa3\x87\x79\xdc\xb9\x73\xe7\x86\ \xd7\xf1\x3d\x7c\x2f\x3f\x83\x9f\xc5\xcf\xe4\x67\x0f\x1d\x3a\xd4\ \xfb\x2e\x7e\x27\x45\xc7\x6d\x30\x52\xb3\xb7\xd1\x46\xda\x9f\xc6\ \x02\xf6\xff\x49\x70\x15\x38\x00\xe8\x56\xee\xa2\xe2\x83\x95\xa9\ \x39\x1c\xf4\x02\xff\x06\x7b\x35\xfe\xc6\xc2\x8c\x19\x33\xbc\x5b\ \xca\x80\x52\x18\x3f\x7e\xbc\x27\x8a\xc1\x83\x07\x7b\x02\xe9\xd5\ \xab\x97\xea\xda\xb5\xab\x27\x9c\x7b\xee\xb9\x47\xdd\x7d\xf7\xdd\ \xaa\x7d\xfb\xf6\xaa\x5d\xbb\x76\x7b\xc1\xe7\x0b\x21\xdb\x67\xf1\ \xbb\xf8\x9d\x94\x1c\xb7\x81\xdb\xc2\x6d\x1a\x32\x64\x88\x1a\x35\ \x6a\x94\xb7\xad\x46\x64\x66\x5f\xcc\xfe\x34\x52\xd8\x96\xd9\xa6\ \xd9\xb6\xbd\x76\xee\xa2\x82\xc3\x54\x22\x38\x11\xcc\x00\x75\x40\ \xaa\xf8\xaa\xc4\x24\x34\xff\x22\xb3\xe7\xc4\x84\x1f\x3e\x7c\xb8\ \x1a\x38\x70\xa0\xea\xdd\xbb\xb7\xd7\xe3\xa1\x98\x28\x0a\xbf\x3c\ \xca\x01\xbf\xcc\xb8\xad\xdc\x66\x6e\x3b\xf7\x61\xc4\x88\x11\xea\ \x81\x07\x1e\xf0\xf6\x8d\xfb\xd8\x48\x05\xc6\x36\xcd\xb6\xcd\x36\ \xee\xa4\x55\xa9\xa1\x2b\x2f\x05\x5a\x82\xad\x40\xaa\xec\xaa\xc3\ \x08\x8a\x3d\x11\x0e\xaf\x38\xd4\x62\x2f\x85\x43\x31\xbf\x9c\xfc\ \x82\xa8\x14\xcc\xf6\x1b\x89\x71\xdf\xb8\x8f\xdc\xd7\x71\xe3\xc6\ \xed\x21\x30\xa9\x8c\xaa\x14\xb6\x71\xb6\x75\xb6\x79\x9d\x05\x2e\ \x2a\x22\x58\x61\xa0\x19\x68\x0b\x5e\x05\x52\x05\x57\x05\x26\x29\ \x39\x4c\xe2\xdc\x0f\x7b\x1d\xfd\xfb\xf7\xf7\x92\x98\xc3\x2b\x93\ \xe0\xfe\xa4\xaf\x36\xcc\x3e\x72\x9f\xb9\xef\x9c\x1b\xe3\x50\x97\ \x65\x62\xe6\xc1\x1a\x81\xc0\xd8\xd6\xdb\x62\x3f\x9b\x01\x9d\x0d\ \x2e\xca\x36\x58\x49\xa8\x30\xde\x72\x4c\x3f\x10\xfc\x07\x48\x15\ \x2b\xc2\x06\x5d\x49\x30\x11\x39\x24\xe2\xa4\x38\x87\x49\x9c\xfb\ \x31\x3d\x28\x7f\x42\x37\x36\x4c\x0f\x8c\x65\xc2\xb2\x61\x19\xb1\ \xac\x58\x66\x52\x59\x56\x11\xff\x01\x03\xc1\xe1\xc0\xcb\x09\x17\ \x65\x18\xa6\x72\xc0\x71\x60\x32\xa8\x07\x52\x85\x56\x2c\x33\x67\ \xce\xf4\x86\x3a\x3c\x82\xc7\xe1\x0f\x13\x91\x43\x22\x93\xa0\xfe\ \xa4\x75\x64\x30\x65\xc3\xb2\x62\x99\xb1\xec\x58\x86\x2c\x4b\x96\ \xa9\x54\xd6\x15\x0e\xdb\x3e\x73\x80\xb9\xe0\xa4\x55\x6e\x61\x2a\ \x05\x9c\x02\x96\x01\xa9\x12\x2b\x12\x26\x14\x7b\x7f\x5c\xc3\xc4\ \x09\x73\x27\xa9\x68\xd8\xf2\xe2\xd2\x0a\x0e\xa1\x59\xb6\xa6\xac\ \xfd\xe5\x5f\xe1\x30\x17\x98\x13\x4e\x5a\xe5\x12\xba\x32\x9a\x80\ \xf3\xc0\x36\x20\x55\x5c\x45\xc2\xe1\x0b\x27\xce\x79\x44\x8c\x47\ \xc7\xdc\x70\xaf\xb8\xb0\x2c\x59\xa6\x5c\x42\x31\x68\xd0\x20\x6f\ \xc2\xbe\x0a\x87\x8c\xcc\x09\xe6\x06\x73\x44\x67\x8d\x8b\x92\x04\ \xfe\x22\x92\x7d\x51\x11\x57\x82\x17\x81\x54\x61\x15\x83\xf9\x0b\ \xcf\x23\x7c\xec\x4d\x71\x1d\x12\x27\x91\x9d\xa4\x92\x81\x65\xcd\ \x32\x67\xaf\x8b\x47\x1a\x59\x1f\x06\x53\x3f\x95\x86\xde\xee\x17\ \xc1\x95\x60\x5f\xa0\xb3\xc7\x45\xa2\xc1\x82\x07\x1f\x07\xd7\x82\ \x37\xc1\x5e\x95\x55\x49\xb0\x61\xf1\x34\x16\x4e\x0e\xf3\x28\x97\ \xeb\x4d\x95\x06\xd3\xeb\xea\xde\xbd\xbb\x37\xd7\xc5\xe1\x22\xeb\ \x67\xd6\xac\x59\x7b\xd5\x59\x85\xc1\x1c\x61\xae\x30\x67\x74\x16\ \xb9\x48\x24\x58\xe0\x60\x7f\xd0\x16\xec\x02\x52\x05\x95\x3d\x4c\ \x02\x8a\x8a\x13\xc0\x1c\x92\x70\xd8\x67\x92\xc6\x9f\x48\xe5\x40\ \x87\xf6\x1d\xf6\xe0\x9e\x76\xf7\xa8\x8e\x77\x75\x0c\x05\xdf\xe3\ \xff\x1c\xe9\xbb\x4a\x8d\xa9\x03\xd6\x09\x4f\x1d\x62\x1d\xb1\xae\ \x2a\x5c\x5c\xcc\x15\xe6\x0c\x73\x47\x67\x93\x8b\x58\x83\x05\x0d\ \x0e\x04\xb7\x83\x77\x80\x54\x31\x65\x8d\x2d\x2a\xce\x4f\xf1\xd0\ \xbb\x3f\x61\x4a\x85\x24\xa2\x3b\xef\xb9\x53\xfd\xad\xf3\xdf\xd4\ \x4d\xdd\x6f\x52\xd7\xf7\x6a\xad\xfe\xd4\xfb\xcf\xea\xd7\x03\x7f\ \xa3\x2e\x1c\xde\x52\xfd\x60\xec\x39\xea\xac\x07\xce\x56\xa7\x4f\ \x38\x43\x7d\x67\xf2\x29\xea\xa4\x29\xdf\x52\xc7\x4f\xfd\xaa\x07\ \xef\xf3\x39\xfe\x1b\x5f\xc3\xd7\xf2\x3d\x7c\x2f\x3f\x83\x9f\xc5\ \xcf\xe4\x67\xf3\x3b\xec\xef\x34\x62\x93\xb6\xb1\x14\xf0\x7c\x48\ \xfe\x51\xe1\xba\xae\x0a\x17\x17\x73\x86\xb9\xc3\x1c\xd2\x59\xe5\ \x22\x96\x60\x01\x83\x66\xa0\x03\xd8\x0d\xa4\x0a\x29\x6b\xd8\xd8\ \xd9\xe8\xd9\xf8\x4b\x29\x2a\xd3\xbb\x31\x82\x68\x77\x77\x3b\x75\ \x4b\x97\x5b\xd4\xb5\xbd\xae\x53\xbf\x1c\x7c\x99\x3a\x6b\xdc\xd9\ \xea\xcb\x33\x8e\x57\x87\x2c\x39\x4c\xd5\xac\x6f\xaa\x6a\x1e\x4f\ \xa9\x9a\xe7\xc0\xab\xe0\x4d\xb0\x0b\xfc\x1b\xbc\x0b\xde\xb3\xf8\ \xc0\x87\xfd\x6f\x7c\x2d\xdf\xc3\xf7\xf2\x33\xf8\x59\xfc\x4c\x7e\ \x36\xbe\x83\xdf\xc5\xef\xe4\x77\x73\x1b\xb8\x2d\xdc\x26\x6e\x9b\ \xd9\x4e\xb3\xdd\xd2\x3e\x85\x81\xc3\x3e\x62\xdf\xcf\x07\x8a\x8b\ \x3d\x2e\xd6\x21\xeb\xb3\x12\xc5\x85\x6d\xde\x0d\x3a\x80\x66\x40\ \x67\x97\x8b\xa2\x06\x0b\x16\x1c\x0c\xba\x81\xf7\xa4\x8a\x28\x47\ \xb0\xad\x0d\x70\x3e\x84\x8d\x9d\x8d\xde\x9f\x40\x71\x63\x0b\x8a\ \x8f\x6f\xe9\x7a\x8b\xba\xaa\xef\xd5\xea\x9c\xda\x1f\xab\x63\x66\ \x7e\x51\xa5\xd6\x7c\x5c\xd5\xec\xd0\x12\xa1\x54\xfe\x03\xfe\x0b\ \xd2\x16\x75\x59\xe0\xeb\xf2\x41\x7a\x2f\xb1\xbf\x83\xaf\xe3\x77\ \x73\x1b\xb8\x2d\xd8\x26\x6e\x1b\xb7\x91\xdb\xca\x6d\xe6\xb6\x73\ \x1f\xfc\x02\xb3\xc5\xe2\x7f\x5c\x6c\x38\x54\xe4\x09\xe3\x3c\x40\ \x62\xd7\x71\x05\xf1\x1e\x60\x2e\x31\xa7\x74\x96\xb9\x28\x4a\xb0\ \x40\x01\xff\x1a\xb0\x80\xdf\x07\x52\x05\x94\x25\xb3\x67\xcf\xf6\ \x0e\x95\xf3\xa8\x1f\x0f\x9f\x33\x91\x92\xc2\x16\x54\xdb\xae\x6d\ \xd5\xaf\x07\xfd\x46\x7d\x7b\xf2\xc9\x6a\xff\x95\x9f\x50\x35\x4f\ \x40\x06\x6f\x01\xf6\x7a\x3e\x04\x7e\x29\xf9\x65\x93\x34\x7e\x99\ \x71\x1b\xb9\xad\xdc\x66\x6c\xfb\x01\xcb\x9b\x79\xfb\xf2\x9b\xfb\ \x7e\xab\x6e\xea\x7a\x93\x27\x91\x4e\xed\x3a\xa9\x7b\xee\xce\x5c\ \x61\xa2\x58\x74\xe8\x00\x21\x6a\xfc\x8f\x09\x27\xe7\x79\x54\x91\ \x8b\x50\x59\xd7\x52\x1b\x28\x63\x98\x4b\xcc\x29\xd7\xd3\x2a\x56\ \xb0\x20\xc1\x81\x80\x5d\x58\xfe\x55\x90\x0a\xbe\xec\x60\xe3\xe5\ \xf0\x6f\xec\xd8\xb1\xde\xa1\x72\x36\x76\xbf\x50\xe2\xc0\x48\xea\ \xb6\x4e\xb7\xa9\x3f\xf4\xfd\xa3\x3a\xe3\x81\xb3\x32\x82\x7a\x06\ \x89\xce\xa1\x18\x87\x69\xe5\x26\xa7\x7c\xf1\x4b\x8c\xfb\xf2\x36\ \x78\x16\x02\x5b\xd5\xcc\xdb\xd7\x3f\xf5\xfb\xb3\xba\xbd\xf3\xed\ \x0d\xf2\xca\x26\x30\x5b\x3a\xfe\xc7\x61\xe0\x7b\xb9\x1c\x82\x8b\ \x50\xb9\x66\xce\xcc\x6f\x55\x10\xcc\x29\xe6\x16\x73\x4c\x67\x9d\ \x8b\x82\x82\x05\x08\xf6\x03\xb7\x83\x77\x81\x54\xe0\x65\x09\xe7\ \x38\x78\x05\x01\x36\xea\xb8\x8f\xfa\x19\x49\xdd\xda\xf1\x56\x6f\ \x42\xfb\x8b\xb3\x8e\x55\x35\x5b\x9a\xaa\x9a\xd7\x90\xcc\x9c\x3b\ \x32\x89\x5e\x49\x72\xca\x17\x7b\xdf\xb8\xaf\xdc\xe7\x6d\x29\xf5\ \xa5\x19\xc7\xa9\xdf\x0c\xfa\xad\xba\xad\xf3\x6d\xaa\xd3\xdd\x9d\ \x3c\xfc\xb2\x29\x36\x9c\x93\xe4\x41\x14\x2e\x4f\x91\xda\x44\x19\ \xc3\xdc\xba\x1d\x7f\x64\x99\x6b\x3a\xfb\x5c\x84\x0a\x14\x1e\xf9\ \x18\x0a\xb0\x2d\x78\x07\x48\x05\x5d\x56\xb0\x57\xc5\xa1\xc1\xb0\ \x61\xc3\x62\x9f\xa7\xb2\x7b\x52\xbf\x1d\x78\xa5\x37\x59\x5d\xf3\ \x08\x92\x95\x93\xd9\x4c\x64\xd3\x83\xf2\x27\x78\xb5\xc3\x7d\xe6\ \xbe\x73\x08\xc9\x1e\xe5\xa3\x29\xf5\xe5\x59\xc7\xab\x2b\x07\xb5\ \x52\x77\x74\xb9\x43\x75\x6e\xdf\x59\x75\xec\xd0\x51\x14\x8e\x0d\ \x7b\x4d\x06\xff\xe3\x5c\x98\x61\x22\x4f\xa9\x62\x9b\x20\xa6\x7d\ \x84\xa1\x90\xf7\x44\xe0\x1d\xd0\x16\x7c\x0c\xe8\x2c\x74\x91\x57\ \xb0\xc0\x40\x0a\x5c\x0b\x76\x01\xa9\x80\xcb\x0a\x36\x2e\x5e\x0d\ \x80\x43\x03\x0e\x13\x24\xc9\x14\x03\x1e\xee\xe7\x2d\x97\x04\x7c\ \x67\xe2\x29\xaa\x66\x2b\x92\x92\x92\x32\x43\xbd\xc6\x28\xa9\x6c\ \x18\x79\xb1\x6c\x58\x46\x10\xfa\x69\x93\xbe\xab\x6e\xe8\x73\xa3\ \x27\xad\xce\x1d\x3a\x8b\xc2\x29\x06\x3c\x57\x91\x3d\x6c\xf6\xb4\ \xa5\xf6\x52\xa6\x30\xd7\x98\x73\xcc\x3d\x9d\x8d\x2e\x02\x83\x05\ \x05\x9a\x80\x56\xe0\x0d\x20\x15\x6c\xd9\x30\x67\xce\x1c\xaf\x57\ \xc5\x15\xea\x1c\x12\xc4\x31\xfc\xb3\x7b\x53\x97\xde\xff\xcb\xcc\ \x52\x83\x97\x90\x80\x1c\x02\x39\x49\xe5\x87\x91\x17\xcb\x0c\x65\ \x77\xc8\xd2\xc3\xd4\x65\xc3\x2e\x57\xff\xe8\xfa\x0f\xd5\xe5\xee\ \x2e\xaa\xd3\x3d\x9d\x44\xf1\x44\x81\x3d\x33\x1e\x68\x61\x8f\x9b\ \xbd\x2d\xb6\x15\xa9\x0d\x95\x19\xcc\x39\xe6\x1e\x73\x50\x67\xa5\ \x0b\x31\x58\x40\x9a\x16\xe0\x05\x20\x15\x68\x59\xc1\xbf\xa0\xbc\ \x82\x82\x24\x9a\xa8\x50\x54\x84\x47\xf8\xb8\x36\xc9\xeb\x4d\x71\ \x92\xd9\x24\xa0\x9d\x90\x8e\xfc\x31\x65\xf7\x2f\x80\x5e\xd7\xd9\ \x0f\xfc\x40\xdd\xd2\xe3\x16\xaf\xc7\x15\x87\xb8\xd8\xdb\xea\xd7\ \xaf\x9f\x37\xb7\x25\xb5\xa1\x32\x84\xb9\xd7\x02\x82\xf5\xf2\xd1\ \x85\x10\x18\x52\x19\x59\x9d\x02\xb6\x01\xa9\x20\xcb\x02\xfe\xa5\ \xe4\xd1\x20\xce\x53\x70\xae\x2a\x6a\xaf\xca\x1c\xb9\x6a\xdf\x21\ \x73\xbf\x63\xfb\xcc\xa5\x8c\xaf\xeb\x7d\xbd\xfa\xc6\xd4\x93\x32\ \x4b\x10\xb8\x36\xc9\xf5\xa6\x8a\x8b\xe9\x75\xb1\x6c\x9f\x4e\xa9\ \x93\xa6\x7f\x4b\xb5\xee\x7b\x83\x27\xad\x38\xc4\xc5\xb9\xad\xd1\ \xa3\x47\x7b\xeb\xf3\xd8\x86\xca\x15\xdd\xc6\xb7\x81\x53\x40\x0d\ \x71\x61\x85\x29\x14\x70\x2c\x58\x66\xa4\x50\x4e\xd8\xdb\xc4\x33\ \xf9\x79\x19\x62\x76\xf9\x25\x01\x11\x23\x21\x4f\x44\xbe\xc7\xd9\ \x30\x87\xe1\x29\xaa\x2f\xcc\xfa\x52\x66\xd8\x67\xe6\xa6\xa4\x84\ \x73\x14\x07\x23\x2e\x96\xf5\x8b\x29\xf5\xc5\xd9\xc7\xaa\x6b\xfb\ \x5c\x97\x53\x5c\xec\x39\x19\xfc\x8f\xb3\x61\x56\xca\x73\x6d\x9e\ \xdd\xbe\xca\x94\x65\x80\x39\xe9\xa4\x65\x87\x2e\x90\x23\xc0\x64\ \x20\x15\x5c\xd9\xc0\x89\xf5\x1e\x3d\x7a\x88\x62\x2a\x14\x23\xaa\ \xd6\xbd\x6f\x50\x5f\x99\x79\x82\xaa\x79\x41\x27\x8f\xeb\x4d\x25\ \x0f\xcb\x5c\x8b\xeb\xf8\x59\x5f\x55\x37\xf6\x6d\xa3\xba\xdc\xd3\ \x45\x75\xee\xd8\x59\x14\x50\xa1\x70\x1a\x81\xd3\x09\x52\x1b\x2b\ \x33\x98\x93\xcc\x4d\x9d\xad\x8d\x3c\x58\x10\xa0\x19\x18\x08\xea\ \x81\x54\x68\x25\x87\x47\x01\xf9\xa3\x06\x66\xb9\x82\x24\x9e\xb0\ \x50\x52\x5c\x1f\xd4\xb6\x5b\x5b\xf5\xf5\x69\x27\x7a\x0b\x20\x9d\ \xa8\xca\x04\x23\xae\xe7\x32\x43\xc5\x9b\x7b\xdc\xec\x89\x4b\x92\ \x4f\xa1\x70\x88\x38\x66\xcc\x18\xaf\x6d\x49\x6d\xae\x4c\x60\x4e\ \x32\x37\x99\xa3\x3a\x6b\x1b\x69\xb0\x00\x40\x53\xd0\x16\xbc\x07\ \xa4\x02\x2b\x39\x3c\x0a\xc8\x6e\x3c\xbb\xfd\x92\x78\xb2\x61\xd6\ \xf4\xd8\xf7\x0d\x14\xd5\x9d\x9d\xef\x54\x3f\x1a\xf7\x93\xcc\xc9\ \xbf\xef\xeb\x24\x91\x92\xc7\x51\x3a\x38\x54\x64\xdd\xa0\x8e\x7e\ \x34\xfe\x27\xaa\x5d\xd7\x76\x59\x7b\x5b\x3c\x4a\xec\x7f\x9c\x0b\ \x9e\x93\xc8\xeb\x6e\xf1\x28\xe2\xdc\xb9\x73\xc5\xf6\x57\x2a\xcc\ \xf6\xe0\xf6\x3d\xd0\x76\xde\xbc\x79\x4d\x71\xab\xb3\xb7\x91\x05\ \x77\x9c\x13\xed\x28\x90\x96\x60\xa7\x5d\x40\xe5\x00\xb7\x85\xf0\ \xe4\xd6\xbe\x7d\xfb\xee\x25\x21\x22\x89\x28\x17\x66\xd1\xe2\xe5\ \xf7\xff\x4a\xd5\x6c\x6c\x9a\x39\xc9\xd7\x89\xaa\xfc\x61\x1d\xb1\ \xae\x36\x35\x55\x57\x0c\xfb\xb5\xea\xd8\xb9\xa3\xea\xd2\x69\xcf\ \x9f\xe8\xf7\xc3\xde\x78\xbe\xf0\x67\xc9\xf8\x53\x6d\xa6\xdd\x95\ \x21\x3b\x41\x4b\xe0\xe5\x6e\xa3\x0a\xb3\xd3\xe0\x44\xb0\x15\x48\ \x05\x54\x72\x38\xc7\xd0\xb3\x67\xcf\x82\xc4\x24\xc1\xc3\xe6\x37\ \xf6\x6a\xa3\x3e\xb3\xf0\xb3\xaa\xe6\x0d\x9d\x04\x4e\x56\x95\x83\ \xa9\x2f\xd4\xdd\x11\x8b\x9b\xab\xb6\x7d\xff\xaa\xba\x75\xea\x26\ \x0a\xa8\x10\xf8\x87\x91\x57\xf4\x90\xda\x62\x99\xc0\x5c\x65\xce\ \x36\x2e\x69\xe9\x1d\x3e\x1c\x4c\x07\x52\xc1\x94\x1c\xfe\x20\x81\ \xb9\x54\xb1\x24\x9f\x20\xcc\x51\xa4\x0e\x1d\x33\xf7\x29\xaa\xf6\ \x9d\xdb\xab\x9f\xd6\x9e\xa7\x6a\x9e\x42\x83\x77\xf3\x54\x95\x0d\ \xeb\x8e\x75\xf8\x74\x4a\x9d\x3b\xbe\x85\xba\xa7\xdb\x3d\xaa\x6b\ \xe7\xae\xa2\x84\xc2\xc2\x13\xe5\x79\x60\x47\x6a\x93\x65\x02\x73\ \x96\xb9\xab\xb3\xb9\xca\x83\x3b\x0a\xf6\x07\xbd\x40\x3d\x90\x0a\ \xa5\x64\x70\xf9\x02\xd7\xca\xb0\xf1\x48\x12\xf2\x44\xe4\x7b\x1c\ \x04\x0f\x8b\xff\xa5\xdf\xb5\xea\xc0\x15\x07\xb9\xe1\x5f\xb5\xc1\ \xba\xfc\x57\x4a\x7d\x62\xcd\xc1\xea\xba\x41\xd7\x17\x4d\x5a\x9c\ \x8c\xe7\x55\x3e\xec\xa9\x89\x32\x82\x39\xdb\x6b\xde\xbc\x79\xcc\ \x61\x9d\xd5\x55\x1a\xd8\xc9\x9a\x85\x0b\x17\x52\x58\x57\x81\x7f\ \x03\xa9\x40\x4a\x06\x65\xc5\xd3\x28\x38\xff\x10\x46\x4a\x12\x14\ \x15\x7b\x58\xe7\x8e\x69\xa1\x6a\x9e\xb7\x1a\xb8\xbf\xd1\x17\x02\ \x3f\x87\xf0\x04\x5f\xfb\x79\x3e\x36\xff\x66\x90\xfe\xcd\x7e\x8f\ \x23\x1a\xa6\x3c\x5f\x48\xa9\x16\xb5\xe7\xab\x4e\x5d\x3a\x15\x45\ \x5c\xec\xdd\x8f\x1a\x35\xca\x93\x16\xf2\xa6\xdc\xf8\x37\xb8\x0a\ \x78\x39\x5d\x95\x61\x76\x0e\x9c\x0c\x9e\x04\x52\x41\x94\x0c\xca\ \x8a\x47\x6b\x78\x74\x47\x12\x50\x18\x28\xab\xdb\xba\xdd\xa6\x8e\ \x99\xff\xa5\xcc\xa9\x34\x51\x25\xc1\xf7\x1b\x39\x99\xfb\x86\xfa\ \x94\x3a\xac\xee\x08\x75\x4a\xfd\xe9\xea\x62\xf5\x0b\x75\x59\xfd\ \x15\xea\xd2\xfa\xcb\xbd\xfb\xdf\xab\xff\x81\x3a\xbe\xfe\xeb\xea\ \xc0\xba\x83\x3f\x7a\x9f\x7d\xeb\xff\x1e\x47\xe1\xb0\x3c\x51\xd7\ \x5f\x98\x7f\xac\xba\xbd\xe7\xed\x79\x49\x8b\x47\x08\x0d\xfe\xc7\ \x84\xd2\xe2\xd9\x14\x65\x2a\x2d\xe6\x30\x73\xb9\x3a\xa5\xa5\x77\ \xec\x50\x30\x15\x48\x05\x50\x32\xb8\x0e\x66\xc8\x90\x21\x45\x93\ \xd5\x1f\x06\xfc\x51\xd5\x3c\xdc\x34\xda\x52\x05\x23\x16\xde\xb7\ \xe4\x44\x09\xdd\x91\xbe\x53\x8d\xa9\xc7\x90\x41\xcd\x55\xcb\xd2\ \xcb\xd5\x06\xb5\x51\x6d\x57\x8f\x7a\x6c\x56\x0f\xab\x0d\xe9\x8d\ \x6a\x4d\x7a\xad\x5a\xa9\x56\xa9\x45\xe9\xc5\x6a\x9a\x9a\xae\x46\ \xd6\x8f\x56\x1d\xd3\x9d\xd5\xcf\xd2\x17\xaa\x8f\xd7\x1d\xf8\xd1\ \x67\x9a\xef\x70\x44\x87\x75\xc6\x3a\xdf\xd2\x54\xfd\xf9\xbe\x6b\ \x54\xf7\xce\xdd\x3d\x71\xf9\x45\x14\x06\x73\xf2\x34\xff\xa0\x4a\ \x6d\xb7\xc4\x30\x97\x99\xd3\x3a\xcb\xab\x24\xb8\x43\xa0\x29\xb8\ \x03\x7c\x08\xa4\x9d\x2f\x09\x3c\xaf\x8b\x6b\xac\xa2\xca\xca\x3b\ \x85\xa3\xd3\x3d\xea\xdc\x71\xd6\x10\xb0\x10\x8c\xe0\xb4\x4c\x8e\ \xae\xff\xa2\xba\x2a\xfd\x47\x35\x2a\x3d\xc6\x13\xd0\xa3\xea\x31\ \xfc\xb7\xc3\xbb\x35\x92\xda\xa2\xb6\x42\x59\x9b\xd4\x5a\xb5\xce\ \x7b\x0d\x25\x46\x51\xcd\x4b\xcf\x57\x33\xd5\x2c\x35\x03\xff\x9f\ \x9a\x9e\xa6\x1e\x4c\x4f\x54\x13\xea\x1f\x54\xc3\xd2\x23\xd4\x5f\ \xeb\x6f\x51\x5f\x48\x1f\x97\xf9\x3e\x83\x7f\x5b\x1c\x85\xc1\xb2\ \xe4\x10\xf1\x81\xf3\x55\xe7\xae\x18\xde\x75\xe9\x26\xca\x28\x5f\ \x28\x2d\xf6\xfe\xf9\x87\x55\x6a\xc3\x25\x84\xb9\xcc\x9c\x66\x6e\ \xeb\x6c\xaf\xf0\xe0\x8e\x68\xce\x03\x3b\x81\xb4\xe3\x25\x81\xb2\ \xe2\xaf\xd7\x48\x02\x22\x66\x01\xa0\x91\x99\xfd\xd8\x86\x0b\x09\ \x6f\xef\x7e\xbb\x3a\x66\x5e\x84\x21\xa0\xd5\xe3\x69\x92\xde\x57\ \xfd\x49\xfd\xc5\x93\x0d\x7b\x4c\xb6\xa0\x1e\x51\xdb\x1a\xa0\xa8\ \xf8\xef\xeb\xd1\xc7\x62\x8f\x6a\xb9\x5a\xa1\x96\xe1\xff\x8b\xd4\ \x62\x35\x27\x3d\x57\xcd\x48\x7f\x24\xaa\xf1\xea\x01\x35\x46\xd5\ \x7a\x3d\xad\xa1\xf5\xc3\xd5\xfd\x6a\x98\x1a\xa0\x06\xa9\xbf\xa4\ \xaf\xf3\xbe\xcf\xfb\x6e\x27\xad\xe2\xc1\xb2\xdc\x95\x52\x5f\x5c\ \x78\x9c\xba\xa3\xd7\x1d\x45\x91\x16\x2f\x61\x14\xd4\xd3\x9a\x3f\ \x7f\x7e\xa2\xe8\xef\xdc\x09\x98\xdb\x35\xb8\xd5\x59\x5f\xc1\xc1\ \x9d\x00\x5f\x00\xab\x4a\x51\xa8\x7e\xcc\x36\xb0\xe2\xf9\xab\x27\ \x92\x80\xc2\x40\x59\xfd\x71\xe0\x9f\x0a\x1f\x02\x52\x14\xbc\xc5\ \xfb\x9a\xd7\x7d\x5e\xa1\xaf\xe6\xf5\x92\x28\x29\xbf\xa0\x6c\x1e\ \x4e\x6f\x11\x7b\x55\xf3\xd5\x02\x6f\xa8\xc8\x5e\xd5\xe4\xfa\x29\ \x5e\x8f\x6a\x6c\xba\xd6\xeb\xa1\xb1\x67\x35\x38\x7d\xbf\x1a\x58\ \x7f\x9f\xea\x57\xdf\x5f\xf5\x4c\xf7\x56\x3d\xea\x7b\xa9\x3b\xeb\ \xdb\x79\x73\x5d\x4e\x5a\x45\x86\x65\x69\x0d\x11\xc3\x48\x8b\x82\ \xf2\xc3\x39\x2d\x0e\x0f\x39\xa7\xe5\x6f\xd7\x25\x66\x15\x60\x8e\ \xeb\xac\xaf\xd0\xe0\x0e\x80\x8f\x83\x3e\x20\x0d\xa4\x9d\x4d\x1c\ \x56\xb8\xb9\xe0\x9e\x24\xa1\x7c\xa1\xac\x2e\x1e\xf5\xf3\xcc\x10\ \x30\x6c\xa2\xf3\xf5\xa4\x3e\xa5\xbe\x5b\x7f\x96\xd7\xeb\xa1\x80\ \x72\x89\xca\xf4\xaa\xcc\x3c\x95\xd4\xab\x9a\x92\x7e\x48\x4d\x56\ \x90\x95\x7a\xd0\x9b\xeb\x32\xbd\xaa\x41\xe9\xc1\xea\xde\xf4\x00\ \xd5\x3b\xdd\xd7\x13\x55\x97\xfa\x6e\x0a\x7b\xa1\xee\x4e\xdf\xa3\ \x6e\x57\xff\x50\x27\xd5\x7f\xdb\x49\x2b\x0e\x58\x9e\x18\x22\xfe\ \x62\xec\xa5\xaa\x47\x97\x1e\x59\x65\x94\x0f\xe6\xf2\xcb\x3c\xaa\ \x2d\xb5\xed\x12\xc1\xdc\x66\x8e\x33\xd7\x75\xf6\x57\x58\x70\xc3\ \x35\x2d\xc1\x5b\x40\xda\xd1\xc4\x61\x45\x9b\xa5\x0b\x92\x84\xc2\ \xc0\x73\xcb\xbc\xdf\xce\x0b\x93\xe0\x7c\x2d\xa5\x00\x8e\xad\x3f\ \xde\xeb\xf9\x50\x44\x1c\xf2\xf9\xe5\xe4\xc7\x9e\xab\x5a\x95\x5e\ \xed\xf5\xaa\x96\xa6\x97\x65\xed\x55\x71\x08\x38\x42\x8d\xf2\x86\ \x7f\x76\xaf\xaa\x6b\xba\xbb\xea\x92\xee\xe6\xf5\xe6\xd8\xbb\xa2\ \xac\x6e\x4e\xff\x4d\xdd\x94\xfe\xab\x6a\x9e\xfe\xbc\x93\x56\x1c\ \xb0\x3c\x5f\x4b\xa9\x9f\x3e\x78\x9e\x28\xa2\x30\x50\x5a\x5c\xf2\ \x50\x66\xd2\x62\x8e\x33\xd7\xbd\xbc\xaf\xb8\xd0\x1b\x7e\x14\x58\ \x01\xa4\x1d\x4c\x1c\x56\x30\xff\x3a\x45\x91\x15\x7b\x55\x1d\x3a\ \x77\x50\xa7\x4e\x39\x3d\xf3\x1b\x79\x61\x12\xdb\x88\x00\x50\x14\ \x3c\xba\x97\xaf\xa8\x38\x04\x64\xaf\x6a\xb5\x5a\x93\x19\x02\xea\ \x5e\x15\x27\xd6\x67\xa7\xe7\x78\x47\x02\xf7\xea\x55\xa9\xe1\xde\ \x10\x90\x73\x55\xfd\x54\xff\x3d\x7a\x55\x77\xa5\xdb\xab\x3b\xd3\ \xed\xd4\x6d\xe9\x3b\xbc\x09\xf8\x36\xaa\xad\x6a\x9d\xbe\x51\x5d\ \xad\x30\xbc\x75\xb2\x8a\x07\x96\x2b\xda\xcc\x77\xa7\x9d\xa9\xba\ \x76\xef\xaa\x7a\x74\xeb\x21\x0a\x29\x1f\x78\x89\x23\x5e\xe9\xa1\ \x1c\xa6\x59\x2c\x98\xeb\xcc\x79\x6d\x81\x0a\x09\x6e\xf0\x82\x05\ \x0b\x52\xb8\xed\x00\xea\x81\xb4\x73\x89\xc3\x0a\xe6\x7a\x17\x49\ \x44\x94\x58\x2e\x78\xb2\x6b\xfb\xae\xed\xd5\x09\xb3\xbf\x96\xb9\ \xbc\x6e\xbe\x89\x6d\x5e\x07\x61\x71\x8d\xd4\x62\xb5\xc4\x13\x55\ \xd0\xd0\xcf\x60\x4f\xac\xb3\x57\xb5\x22\xbd\xd2\x7b\xbf\xbf\x57\ \x35\x29\x3d\xb9\x61\x62\xdd\xee\x55\xdd\x0b\x5d\x79\x43\xc0\x34\ \x64\x25\xf4\xaa\xfe\x9a\xbe\x45\xdd\x98\xbe\x49\x5d\x5b\x77\xbd\ \x37\xd1\xff\xc7\xf4\x35\xea\x1c\x85\x9e\xa3\xeb\x65\xc5\x03\xcb\ \x74\x77\x4a\x7d\x75\xde\xd7\x55\xc7\x9e\x1d\x23\x49\x8b\xe7\xb9\ \x8e\x1f\x3f\x5e\x21\xd7\xca\x85\x7a\xd0\x01\xa4\x80\xb6\x41\x99\ \x07\x37\x54\x73\x0e\x78\x05\x48\x3b\x96\x38\x13\x26\x4c\xf0\x2a\ \xd9\xc8\xc7\x5e\xc0\x97\x0f\x5c\x4f\x73\x67\xf7\x3b\x55\xf3\x25\ \x47\x7b\x0d\x2e\xef\x64\xd6\x89\xcf\x25\x04\x1c\xa6\x51\x52\xf9\ \x88\x8a\x88\xbd\x2a\x6b\xb9\x82\xdd\xab\x1a\x97\x1e\xaf\x46\xa7\ \xc7\x36\x4c\xac\xdb\xbd\xaa\xae\xaa\x7b\xc3\x5c\x95\xbf\x57\x75\ \x5d\x7d\x6b\xf5\xe7\xfa\x8c\xa8\xb8\x7c\xa2\x95\xfa\x5f\xf5\xeb\ \xfa\x2b\x3f\x3a\x72\x28\xed\x93\x23\x1a\x6c\x3b\xff\x49\xa9\xa3\ \x16\x7f\x5e\xb5\xef\xd5\x3e\x92\xb4\x78\x21\x40\x5e\x2b\x5e\x6a\ \xf3\x25\x82\x39\xcf\xdc\xf7\x3c\x50\xf6\xa1\x37\xf4\x30\x30\x17\ \x48\x3b\x94\x38\xbc\x44\x0c\xff\x1a\x49\x22\xca\x07\xca\xea\xef\ \xbd\xff\xae\x9a\xad\xfa\xe4\x47\x3f\x4c\x2a\x35\x44\x3f\x4c\x78\ \xc0\xd5\xe7\x9c\x77\xca\x67\xf8\x47\x02\x7b\x55\x59\x96\x2b\xb0\ \x57\xc5\x89\xf5\xfb\xea\x87\x7c\x34\xb1\x6e\xf5\xaa\xee\x52\xed\ \xbd\x5e\xd5\xad\xe9\xdb\xf6\xea\x55\x71\x18\xf8\xfb\xf4\x55\xea\ \xca\xf4\xef\xd5\x15\xe9\xdf\x7a\xbd\x40\x6f\x02\x9e\xfb\x99\xef\ \xbe\x3a\xc2\xc1\x72\x7d\x3f\xa5\x0e\x5a\xfd\x29\x75\x47\xbf\x3b\ \xf6\x90\x16\xe7\xa8\x0c\xfe\xc7\x12\xfc\x81\x0b\x5e\x9a\x46\x6a\ \xfb\x25\x82\xb9\x4f\x07\x68\x2b\x94\x69\x70\x03\x41\x13\xd0\x06\ \xfc\x17\x48\x3b\x93\x28\xbc\xf8\x1e\x2f\xdb\x51\x48\xaf\x8a\x50\ \x56\x37\xf7\xbb\xd9\xbb\x0e\x52\xde\x57\x59\x30\x89\x0e\x59\x75\ \x40\xdf\x86\x12\x0a\xd3\xab\x0a\x5a\x04\xda\xd0\xab\xaa\xcf\xf4\ \xaa\xec\xe5\x0a\xa6\x57\xd5\xab\xbe\x8f\x37\xb1\xce\x95\xed\x76\ \xaf\xca\x4c\xac\x73\xae\x8a\xeb\xaf\xf6\xe8\x55\xa9\x2b\x3d\x51\ \xfd\x22\x7d\x99\xba\xa8\xee\x12\xf5\x93\xfa\xf3\xbc\x23\x98\xae\ \x97\x15\x23\x6c\x23\x68\x53\x4d\x36\xa7\xd4\xad\x03\x6e\x55\x3d\ \xbb\xf7\x14\x85\x94\x0f\xbc\x9e\x16\x7f\x18\x45\xca\x81\x12\xc0\ \xdc\x6f\xb3\x64\xc9\x92\x26\x3c\x77\xb8\x6c\x03\x1b\x49\x4e\x00\ \x8f\x01\x69\x47\x12\x03\x05\xe5\xad\xb5\x62\x45\x46\x96\x15\x7f\ \x51\x39\xdf\xc4\xd5\xa2\x3a\xb8\xee\x7f\xbc\xde\x4f\x21\xbd\xaa\ \xb0\x8b\x40\xf7\x58\xae\xc0\x5e\x55\x3d\x7a\x55\xf5\xe8\x55\xa5\ \xdb\x7b\xa7\xf1\xec\xd1\xab\x52\xd7\x7b\x43\xc0\xab\xd3\xbe\x5e\ \x95\xba\x5c\x5d\x5c\xff\x0b\x75\x61\xfd\xc5\xaa\x45\xdd\x05\xea\ \xdc\xfa\x9f\x7d\x24\x5e\x69\x3f\x1d\xc5\x83\x6d\x6b\x5b\x4a\xfd\ \x2d\xa2\xb4\xb8\xae\x90\x4b\x76\xd8\xf6\x4d\x0e\xc4\x45\x1e\x9f\ \xff\x18\x38\x01\x68\x3b\x94\x59\x70\xc3\xc0\xbe\xa0\x37\x90\x76\ \x20\x32\x61\x2a\x81\x93\xec\x5c\xbe\x20\x89\x28\x1f\xcc\x30\xd0\ \xeb\x59\xe5\x2b\x2b\xbe\x0e\x7c\xbf\xfe\x1c\x4f\x36\xf9\xca\xaa\ \x58\x8b\x40\xfd\xbd\xaa\xdb\xeb\x3f\x5a\xae\x60\xf7\xaa\xfe\x17\ \x83\xc0\x56\xf5\x99\xb9\x2a\x0e\x57\x4d\xaf\xea\x82\xba\x8b\x3c\ \x51\xfd\xa8\xfe\xa7\xea\x9c\xba\x9f\x64\xce\x39\x74\xc2\x4a\x06\ \xb4\x1b\xf6\xb4\xee\xea\x77\x57\x24\x69\x71\xb9\x03\xdb\xbe\x94\ \x13\x25\x80\x2e\xa0\x13\xb4\x25\xca\x24\xb8\x41\x9a\xef\x83\x9d\ \x40\xda\xf8\x44\xa9\xad\xad\xf5\x16\xe4\x49\x32\xca\x06\x57\x18\ \xf3\xdc\x2f\xca\xaa\x5d\x8f\x76\x99\x39\x2b\x0e\x03\xa5\x06\xe6\ \x47\xcb\xea\xca\xba\xdf\x7b\x3d\xa5\x30\x47\x00\x43\x2f\x02\x55\ \x1f\xf5\xaa\xa4\xe5\x0a\x76\xaf\xaa\x4d\xfd\x47\x13\xeb\x76\xaf\ \xea\xf2\xf4\xaf\x1b\x7a\x55\x17\xa5\x2f\xf1\x7a\x55\x3f\xad\x6b\ \xe1\x89\x8a\x27\x58\x9f\x55\xf7\x7d\xf5\xa9\xfa\xc3\x9c\xb0\x92\ \x04\x6d\xed\x93\xab\xff\x47\xdd\xdd\xfb\xee\xbd\xa4\xc5\x65\x0c\ \x06\xff\x63\x1b\x73\x01\x40\x29\x27\x4a\x00\x5d\x40\x27\x78\x7e\ \x28\x9b\xd0\x1b\xd4\x0c\x4c\x04\xd2\x86\x27\x0a\x27\xd9\x59\x79\ \x46\x42\x06\xff\x63\x09\x9e\x3e\xd1\xa1\x7b\x07\xd5\x7c\xd1\xd1\ \xf9\x4f\xb0\x5b\xb2\x62\x6f\x29\x5f\x59\xc5\xbd\x08\xd4\xf4\xaa\ \xfe\x54\x77\x8d\x37\xb1\xee\xef\x55\xf1\x12\x34\x3f\xab\xbf\x50\ \xb5\xa8\xbf\xc0\x9b\xb3\xfa\x61\xfa\xc7\x9e\xa8\xbe\x9b\x3e\x4b\ \x9d\x5e\x7f\xa6\x3a\xa4\xee\xd3\x99\x7d\x73\xd2\x4a\x06\x96\xf3\ \xfb\x29\xf5\xb9\x25\xc7\xa8\xce\xbd\x3b\xef\x25\xa3\x5c\xf0\xc0\ \x12\x6f\xcd\x24\xbc\x94\x1b\x25\x80\x4e\xa0\x1b\xb4\x2d\x4a\x1c\ \xdc\x10\xcd\x15\x60\x37\x90\x36\x3a\x31\x78\x42\x33\x2b\x2c\x1f\ \x39\x49\xb0\x87\xf5\xd5\x39\x5f\xcf\x7f\xe9\x42\x01\xb2\x12\x97\ \x2b\xa0\x57\x55\xcc\x45\xa0\x76\xaf\x8a\x13\xeb\xdc\x3e\x33\xb1\ \xee\xef\x55\x71\x08\xc8\x61\xec\x99\xf5\x67\x7b\xa2\xfa\x76\xdd\ \x29\xde\x51\xc2\x4f\x7d\x88\x1e\x96\x13\x56\xb2\xb0\xac\xdf\x4d\ \xa9\x6f\xcc\x3f\x49\x75\xef\xd9\x5d\xf5\xea\xd1\xcb\x13\x91\xc1\ \x88\x29\x17\x3c\xa9\x9f\x57\x77\x58\xb4\x68\x91\x97\x17\xbc\x2d\ \x11\xbb\x01\xdd\x50\x83\x5b\x6d\x8d\x12\x06\x37\x02\x1c\x01\x56\ \x96\xaa\x60\xcc\xf7\x72\xec\xce\x73\x04\x25\x11\xe5\xcb\xe9\xd3\ \xcf\xc8\x7f\x51\xa8\x91\x15\x86\x58\xf9\xc8\x2a\xe9\x45\xa0\x7b\ \xf5\xaa\xea\x32\xbd\x2a\x6f\x62\x5d\xe8\x55\x9d\x52\x7f\xba\xfa\ \x56\xfd\xc9\xea\xc4\xfa\x6f\xa9\xaf\xa5\x4f\x72\x73\x58\xa5\x82\ \x65\x8e\x3f\x98\x67\xce\xf8\x9e\x28\xa3\x7c\xe1\xef\x68\x72\xde\ \xd7\x9f\x2f\x25\x60\x25\xa0\x23\xb4\x35\x4a\x14\xdc\x00\xcd\x35\ \xe0\xbf\x40\xda\xd8\xc4\x30\x3f\x1c\x21\x89\x28\x17\x1c\x0a\xfe\ \x64\xc2\xb9\xf9\x9f\x6e\xc3\xd7\x80\x7c\x65\x25\xf6\xaa\x0a\x5d\ \x04\xea\x5b\xae\x60\xf7\xaa\x02\x97\x2b\xa0\x57\xc5\x89\xf5\xf3\ \xea\xce\xcf\xda\xab\xfa\x5a\xfd\x89\xde\x95\x1b\x8e\x4b\x9f\xe0\ \x96\x35\x94\x12\xb6\xaf\xb7\x53\xea\xdc\xc9\x2d\x54\xef\x9e\xbd\ \x45\x21\xd9\x70\xee\x8a\xd8\xf7\xfb\xf4\xe9\xe3\xfd\xf2\x93\x94\ \x2b\x09\x43\x37\xd0\x11\x9e\x2f\x4a\x16\x7a\x03\x9a\x83\x75\x40\ \xda\xd0\x44\x58\xbc\x78\xb1\xb7\xde\x8a\x95\x24\xc9\x28\x08\x8a\ \x8a\x67\xd0\xf3\x4c\x7a\x9e\x9c\x1a\x46\x56\x4c\xfa\x5c\x13\xec\ \xd9\x7a\x55\x41\xcb\x15\xa2\x2e\x02\x65\xaf\x6a\x8f\xe5\x0a\x56\ \xaf\xca\x4c\xac\x9f\x5d\xf7\x43\xef\x2a\x11\x76\xaf\xea\xab\x90\ \x15\x45\xf5\x85\xfa\xe3\xd4\x31\xf5\xc7\x3a\x61\x95\x1a\xb6\x33\ \xb4\xc9\x4b\xc7\xff\x52\xf5\xed\xd9\xb7\x41\x44\x61\xe8\xdf\xbf\ \xbf\xb7\x3e\x4b\xca\x9b\x84\xa1\x23\xe8\x0a\x6d\x8f\x84\x83\x5f\ \xac\x69\x0d\x3e\x04\xd2\x46\x26\x02\x4f\x6a\xe6\x98\xdd\x2f\x23\ \xff\x25\x3c\x24\xba\x77\xed\xae\xae\x19\xfc\x17\xef\xf2\x1f\x79\ \xc9\x8a\xe0\x75\x3c\x82\xc6\x89\xf2\x20\x59\xb1\x57\x95\x73\x11\ \xa8\x9e\x58\x17\x17\x81\xd6\x17\xbe\x08\xb4\x61\xb9\x82\xee\x55\ \x99\xe5\x0a\xec\x55\x71\x08\x78\x7a\xdd\x99\xea\xe4\xba\xd3\xf6\ \xe8\x55\xf1\xea\x11\x14\x15\xaf\xcb\x75\x78\xba\x79\x46\x58\xf9\ \x96\x89\x23\x1e\x58\xfe\x2f\xa5\xd4\xf5\xc3\x5a\xab\x3e\xbd\xfa\ \x88\x52\xca\x05\xaf\x56\xca\x93\xa4\xa5\xdc\x49\x10\x3a\xa2\x35\ \x86\xa8\x35\xe8\x60\x68\x8b\x24\x18\xf8\x72\x72\x34\xd8\x04\xa4\ \x0d\x4c\x04\xce\x5f\xf1\x67\xb9\x24\x19\x19\xcc\x29\x0f\x7e\x78\ \x3a\xc4\x9d\x7d\xee\x54\x35\x5b\x75\xc3\x90\x1a\x8c\x1f\x3d\x09\ \xcd\x23\x77\xd9\xd6\x59\x15\x75\x11\x28\x7b\x55\x59\x16\x81\x4a\ \xcb\x15\xa4\x45\xa0\xf6\x72\x85\x3d\x7a\x55\x75\xe8\x55\xd5\x7d\ \x43\x1d\x57\x97\xe9\x55\xf1\x72\xcc\x47\xd6\x1f\xed\xc9\xaa\x59\ \xfd\xa7\x1a\xf6\x55\x2c\x07\x47\x72\xb0\x0e\x1e\x49\xa9\xbb\xfb\ \xdf\x5d\x90\xb4\x78\xbe\x21\xa7\x4b\x98\x2f\x1c\x8d\x94\x90\x4d\ \xe0\x68\xa0\x2d\x92\x50\xf0\x0b\x27\x4c\x98\xc0\xdb\xb6\xa0\xce\ \x2f\x11\x1b\xfc\x7b\xac\x98\xa1\x60\x90\x98\xb2\xc1\x4b\x7c\x7c\ \x69\xd1\x97\x33\x57\x85\x94\x1a\x8a\x1f\x26\x30\x60\x2f\x27\x9b\ \xac\xb2\xf5\xaa\xb2\x2d\x57\x60\xaf\x8a\x43\xc0\xc0\x45\xa0\x9c\ \x58\x8f\xb0\x08\xd4\x4c\xac\xb3\x57\xf5\x9d\xfa\x53\xf7\xec\x55\ \x7d\x88\x5e\x55\x5d\xa6\x57\x75\x44\xdd\x51\xde\x2f\xf0\x34\x1c\ \x1d\x24\x52\x39\x38\x92\x07\x6d\xf4\xb8\xc5\xc7\xab\x9e\xbd\x3f\ \x9a\xa3\x0a\x83\x19\x1a\x2e\x59\xb2\x44\xcc\xa3\x84\xa8\x03\x74\ \x46\xb2\xbd\x2c\xfd\x85\xc7\x80\x2d\x40\xda\xb0\x44\xe0\x51\x41\ \x9e\x8e\x50\x88\xac\xd8\xbb\x3a\xff\xc1\x0b\xbd\xeb\x6e\xe7\xd5\ \x8b\xe0\x6b\x90\xc0\xfc\xd5\x19\xf6\xa0\xfc\xa2\x32\xbd\xaa\xa0\ \x45\xa0\xe2\x72\x05\xdd\xab\xca\xb6\x5c\xa1\x18\x8b\x40\xd9\xab\ \x32\x13\xeb\xec\x55\xf1\x08\xe0\x1e\xbd\xaa\x0f\xd1\xab\xfa\xb0\ \xb9\xb7\xee\x8a\xa7\x14\x79\xbd\x2b\x37\x7f\x55\x5e\xb0\xfd\xa1\ \xad\xb6\x9c\x7c\xb1\xea\xd7\xab\x9f\x27\x21\xf6\x9c\x88\x7d\x3f\ \x08\x9e\xf9\xc1\xa3\x86\x52\x2e\x25\x08\x9d\x41\x77\x68\x9b\xc4\ \x1c\xfc\x22\x4d\x1b\x40\x63\x4a\x1b\x95\x08\xbc\x16\x10\x57\xfd\ \x4a\x42\x92\xf0\x5e\xdb\xa3\x9b\xea\xd5\xad\x97\xba\x76\xf0\x75\ \xaa\xe6\x45\xdd\x10\xa4\x06\xe2\x07\xc9\x9b\xaa\xdf\xcf\x13\x91\ \x7f\xde\x8a\xb2\x8a\xb2\x08\x94\xcb\x15\xe2\x5c\x04\xca\x5e\x95\ \x3d\xb1\xce\x5e\x15\x2f\x77\xe3\xef\x55\x1d\xf4\xe1\x21\xea\xc0\ \xf4\xc1\xaa\x49\x9d\xfb\x51\x8a\xb2\x84\xf5\xf1\x52\x4a\xb5\x1e\ \x7e\x83\xea\xdb\xbb\xaf\x28\xa5\x20\xcc\x51\x43\x29\x97\x12\x84\ \xce\xa0\x3b\x3c\x8f\xc4\x1e\xfa\x8b\x0e\x07\x6b\x80\xb4\x41\xb1\ \xc3\x6e\x2d\xbb\xb7\xbc\x0a\x83\x11\x91\x11\x97\xb9\x9f\x0d\x9e\ \xf2\x70\x57\xdf\xbb\x32\x3f\x1a\x21\x35\x0a\x09\xdd\xbb\xa2\x48\ \x78\xcd\x75\x5b\x56\x41\xcb\x15\x92\x5e\x04\x9a\x6d\xb9\x82\xe9\ \x55\xd9\x13\xeb\x5e\xaf\x2a\xfd\x51\xaf\x8a\x3f\xb6\xca\x75\x57\ \x94\xb2\xb7\xbf\x4e\x56\xe5\x09\xeb\x65\x5b\x4a\x75\x18\xd0\xa1\ \x20\x69\x0d\x1c\x38\xd0\xbb\x28\x80\x19\x1a\xf2\x36\x49\xf4\x77\ \xae\x01\x87\x03\x6d\x95\x98\x82\x5f\x80\x2f\xe4\x6d\x2b\xf0\x3e\ \xd8\x6b\x83\x92\x80\x13\xed\xec\xde\xe6\x23\x28\x3f\xec\x61\x1d\ \xbb\xf8\x2b\xf9\xcf\x5b\x11\x34\x12\xf6\x46\x28\x26\xd3\xbb\xca\ \xb6\x5c\xc1\xee\x55\x71\x62\xbd\x24\x8b\x40\x85\xe5\x0a\xa6\x57\ \x65\x26\xd6\x3f\x53\x7f\x64\xa6\x57\x95\xce\xf4\xaa\xf6\xad\xdb\ \x5f\x35\xad\xfb\xb8\x93\x55\x25\x80\xb6\xfb\xe5\xa5\x27\xa8\x5e\ \x7d\xf2\x1b\x0a\xfa\xe1\x41\x2a\xce\x2f\x4b\xb9\x95\x10\x74\x07\ \x1d\xe2\x39\x25\xb6\xd0\x5f\x70\x30\x98\x03\xa4\x0d\x89\x9d\xa5\ \x4b\x97\xaa\x29\x53\xa6\x78\xe3\x76\x49\x48\x41\xb0\x77\x75\xc1\ \x03\x2d\xf3\x9f\xb7\x22\x1c\x1a\xd5\xa7\x3c\xc9\x98\x89\xf6\xa2\ \x2d\x02\x15\x96\x2b\x14\x6d\x11\x68\x7a\xef\xe5\x0a\x76\xaf\x8a\ \xcb\x32\x38\x57\x75\x40\xfd\x41\x5e\xaf\xca\xbb\xc2\x28\xcb\xc4\ \xcd\x5d\x95\x3f\xac\x27\xb4\xe1\x8b\x26\xfe\x7c\xaf\x5e\x16\x87\ \x7d\x12\x1c\x8d\x18\xee\xbd\xf7\x5e\xef\x60\x15\x73\x49\xca\xb1\ \x84\xa0\x43\xe8\x12\x6d\x97\x22\x07\x3f\x58\x73\x01\x78\x07\x48\ \x1b\x11\x3b\x9c\x68\xe7\x2f\x35\x87\xed\x5d\x51\x56\x37\xde\xd7\ \x26\xfc\x4f\x72\x21\x79\xd9\x5b\x61\x8f\x2a\xb0\x57\x15\x61\x11\ \xe8\x5e\xd7\xac\xca\x76\x25\xd0\x02\x17\x81\x8a\xbd\x2a\x3d\x04\ \xf4\x7a\x55\x94\x94\x59\x73\xe5\x64\x55\x19\xb0\xae\x5e\x4a\xa9\ \x9b\x87\xdd\xa2\xfa\xf7\xe9\xbf\x87\x90\x72\x41\x81\x99\x09\x78\ \x29\xc7\x12\x82\x0e\xa1\x4b\xbc\x25\x52\x45\x0f\x7e\x30\xd8\x1f\ \xd4\x02\x69\x03\x12\x81\x97\xce\xe0\x09\xa0\x92\x94\x24\xbc\x93\ \x45\x21\xab\x2e\xbd\xba\xa8\x83\xd6\x7d\x4a\xae\xfc\x6c\xe8\xde\ \x15\x7b\x49\xec\x59\x95\x6a\x11\xa8\xbf\x57\x95\xf7\x22\x50\xff\ \x72\x05\xdd\xab\xda\xaf\xfe\x13\x7b\xf6\xaa\x88\x13\x56\x45\xf2\ \xa9\x75\x87\xaa\x5e\xfd\x7b\x89\x62\x0a\x82\x17\x08\x98\x34\x69\ \x92\x98\x63\x71\xc1\x1e\x9d\x41\x3f\xae\x05\xfb\x03\x6d\x99\x22\ \x06\xbe\x80\x9c\x01\x5e\xe3\x97\x25\x0d\x77\x92\x57\x53\x64\x77\ \xd6\x88\xc8\x88\xcb\xdc\xcf\x06\xcf\x78\xbf\x60\x22\x86\x82\x61\ \x7e\x3c\x82\x20\x79\x4f\x48\x7f\xc3\x13\x55\xd0\x72\x85\x3d\x7a\ \x55\xbe\xe5\x0a\xf9\x2e\x02\xcd\xf7\x4a\xa0\x61\x17\x81\xb2\x57\ \xe5\x9f\x58\xdf\xa3\x57\x65\x44\x65\x64\x15\xa6\x7c\x1c\xa5\x85\ \x75\x85\x36\x7d\xf1\x43\x97\xa8\x01\x7d\x07\x88\x62\x0a\x82\x4b\ \x82\xb8\x02\x9e\xb9\x55\x22\x5e\x03\x67\x00\x6d\x99\x22\x05\x3f\ \x10\xec\x03\xba\x02\xe9\x8b\x63\x87\xd2\xe2\xcf\x74\x49\x42\x0a\ \x82\xb2\xba\x75\xe0\xdf\x55\xcd\x33\xba\x82\xa5\x8a\x97\xd0\x09\ \xcc\x61\x1b\x85\x15\x66\x11\xa8\x74\xcd\xaa\x7c\x16\x81\x4a\xcb\ \x15\xb8\x08\x94\xcb\x15\x0a\x5e\x04\xaa\x7b\x55\x66\x62\xdd\x5b\ \xb2\xc0\x7d\x33\x18\x61\x99\x5b\xa9\x2c\x1c\xe5\x0b\xff\xc8\x3c\ \x97\x52\x77\x0c\xf9\x87\xba\xb7\xef\xbd\xa2\x98\xfc\xb0\x77\x65\ \x6e\x39\x62\x91\xf2\x2d\x41\xe8\x14\xba\x45\xdb\xa6\x08\xc1\x0f\ \x03\x47\x81\xad\x40\xfa\xd2\x58\x59\xb6\x6c\x99\x77\x28\x96\x05\ \x2c\x49\x29\x08\x5e\x53\xa8\xf9\xb2\xa3\x0b\x1b\xea\x20\x81\x39\ \xdc\x6b\x98\x58\xb7\x7a\x55\x41\x57\x02\x8d\xbc\x08\x54\xb8\x66\ \x95\xe9\x55\x49\xcb\x15\x82\x16\x81\xda\xbd\xaa\x3d\x86\x80\x06\ \xd3\xab\x22\x52\x19\x38\xca\x1f\xd4\xe1\x31\x2b\xbf\xa4\xfa\xde\ \xdb\xd7\x93\x96\x2d\xa4\x5c\x70\x3e\x98\xe7\xe2\x4a\x79\x97\x10\ \x74\x0a\xdd\xa2\x6d\x13\x31\xf8\x41\x9a\x2b\xc1\xfb\x40\xfa\xd2\ \x58\x61\xef\x8a\x87\x62\x25\x21\x05\xd1\xa7\x47\x1f\xd5\x6a\xf4\ \xef\x54\xcd\x9b\xa8\xd4\xb0\x09\x89\xd7\x73\xa8\xc5\x21\x60\xb6\ \x45\xa0\xd2\x72\x05\xd3\xab\xca\xb6\x5c\x21\x9f\x45\xa0\xa6\x57\ \x55\x8c\x45\xa0\x7b\xf5\xaa\xec\x21\xa0\x8d\x54\x06\x8e\xca\x80\ \xf5\xf7\x56\x4a\x5d\x35\xfe\x6a\x35\xb0\xdf\x40\x51\x4c\x41\x70\ \x01\xb6\x94\x77\x09\x41\xa7\xd0\x2d\xde\xb4\x53\xe4\xe0\x07\x81\ \x03\xc0\x64\x20\x7d\x61\xac\xb0\x77\xc5\x2b\x27\xb2\x60\xfd\x42\ \xf2\x5f\x13\xc8\x86\xd7\x10\xea\xd2\xb7\x4b\x66\x81\x68\xd8\x84\ \xe4\xeb\xf1\x57\x8b\x73\x4b\xec\x59\x85\x5d\x04\x6a\x7e\xb8\x34\ \xca\x22\x50\xf6\xaa\xa2\x2c\x02\xf5\x96\x2b\x7c\xe8\x9b\x58\x37\ \x98\xb9\x2b\x23\xaf\x42\x7a\x9f\x8e\xf2\x02\xf5\xd8\xe4\x91\x7d\ \x55\xcf\x81\x3d\xf7\x12\x52\x2e\x78\xa5\x13\xf6\xb2\x98\x6b\xfe\ \xfc\x4b\x02\x7c\xef\x64\x70\x00\xd0\xd6\x89\x10\xfc\x10\x70\x1a\ \x78\x55\xfa\xb2\x38\xc1\x77\x7a\xb7\xec\x5d\x49\x52\x32\x27\x76\ \x4a\xf0\x7c\xab\xf3\xa7\x5c\xe8\x5d\x6e\xd6\x4b\x4a\xa9\x92\xb3\ \xc1\x04\x06\xec\x31\x51\x56\x66\x62\xbd\x92\x16\x81\x36\xf4\xaa\ \xb8\x2f\x52\xaf\xca\x16\x96\x54\x06\x8e\xca\x82\xf5\x88\xb6\xde\ \x72\xda\xc5\x91\x7a\x59\xcc\xb9\x12\xf0\x2a\xa0\x63\xb4\x75\x0a\ \x0c\x7e\x00\x68\x02\x3a\x00\xe9\x8b\x62\x65\xf9\xf2\xe5\xde\xdc\ \x15\x8f\x0c\x4a\x52\xca\x06\x2f\xc1\x71\xe7\xa0\x3b\x55\xcd\x53\ \xa8\xc4\x42\x7a\x0f\x3a\xc9\xd9\x8b\xf2\x86\x80\x09\x2d\x02\xb5\ \x97\x2b\x64\xbb\x12\xa8\xbf\x57\x65\x4f\xac\xef\xb5\x08\xd4\x60\ \xa4\x45\x78\xdf\x3c\x57\x48\xd9\x38\xca\x17\xd6\xe7\xd3\x29\x75\ \xf7\xfd\x77\xab\xfe\xfd\xfa\x7b\x22\x62\xee\xd8\x62\xe2\x63\x09\ \x33\x97\xc5\x9c\x93\x72\x31\x01\xe8\x18\xba\x46\xdb\xa7\x80\xe0\ \x9b\xc1\xe1\x60\x23\x90\xbe\x24\x76\xc6\x8e\x1d\x2b\x4a\x29\x08\ \x0a\xeb\x3b\x73\x4f\x09\x77\xfa\x8d\x0f\xf6\x52\x28\xa9\x8a\x58\ \x04\x8a\x5e\x55\xe0\x72\x05\x83\x5f\x5a\xc2\x7e\x3b\x2a\x1c\xb4\ \xf9\xd3\x17\x9c\xa1\x06\xdc\x3b\x40\x14\x53\x10\x3c\x62\x28\xe5\ \x60\x42\xd0\x31\x74\x8d\xb6\x4f\x01\xc1\x37\x83\x0b\xc1\x6e\x20\ \x7d\x49\xac\x70\x8d\x08\x7f\xb9\x59\x92\x52\x36\x28\xab\xbf\x0f\ \xb9\x2d\x73\x05\xd1\x08\x3d\x08\xce\x07\x99\x5e\x55\x52\x57\x02\ \xf5\x7a\x55\x21\x17\x81\x36\xf4\xaa\xa4\xe5\x0a\x7e\x41\x39\x59\ \x55\x3f\xac\xdf\x17\x53\xea\xce\xa1\x77\xe5\x94\x16\xaf\x91\x65\ \xe0\xe3\x21\x43\x86\x78\x67\x92\xd8\xbd\x2c\xde\x4f\x88\xdd\xe0\ \x42\xa0\xed\x13\x32\xb0\xb1\x35\x78\xf3\x3e\xb8\xed\x63\x36\x3e\ \x09\xf4\xc6\x7b\x4c\x98\x30\xc1\x3b\x3f\x8a\x22\xb2\xcf\x97\xca\ \x06\x65\xc5\xb9\xab\x13\x17\x7c\x33\xff\x1f\x40\xcd\x42\xf3\xf4\ \xe7\xbd\xb5\x55\x59\x17\x81\xd6\x67\x5f\x04\x2a\x2d\x57\xc8\x77\ \x11\xa8\x99\x58\x17\xaf\x04\x9a\x65\xb9\xc2\x1e\x72\xca\x26\x2d\ \x23\x29\x27\xab\xea\x07\x6d\xff\xdb\x8b\x4e\x56\x83\xee\x1d\xb4\ \x87\x94\xf2\x81\xbf\xe9\x69\xe7\x60\xc2\xf4\x01\xfb\x00\x6d\xa1\ \x10\xc1\x37\x81\x23\xc1\x16\x20\x7d\x78\xac\xf0\x8a\x0c\x1c\x57\ \xe7\x2b\x2b\xc2\x13\x41\x6f\x1e\x72\x8b\xaa\xf9\x27\x2a\x2d\x42\ \xef\x8a\x70\xc8\x95\x73\x11\x28\x7a\x55\x61\xaf\x04\x6a\x96\x2b\ \xc4\xb6\x08\x54\x92\x96\xe9\x55\x11\x61\x5f\x1d\x55\x06\xeb\x1b\ \x39\x70\xe7\x88\xbb\xd4\xc0\xfe\x03\x45\x31\x19\x38\x82\x31\xf0\ \xf1\xf0\xe1\xc3\xbd\x2b\x39\x48\x39\x99\x00\x74\x0d\x9d\xa3\x2d\ \x14\x22\xf8\x26\x70\x11\x60\x57\x4d\xfa\xf0\x58\xa1\xe9\x79\x92\ \xa6\x24\xa6\x6c\x50\x58\xc7\x2f\xfc\x6a\x64\x59\x11\x0e\xb5\x28\ \xaa\x58\x16\x81\xaa\x9f\x64\x5d\xae\x10\x69\x11\x28\xf1\x4b\x8b\ \xfb\x63\x84\xe5\xdb\x47\x47\x15\x83\x5e\xd6\x89\x8b\xbf\xe9\x09\ \xcb\x96\x52\x2e\x78\xbd\x2c\x5e\xc9\x41\xca\xc9\x04\xa0\x6b\xe8\ \x1c\x6d\xa1\x3c\x83\x6f\x00\x4d\x41\x7f\x20\x7d\x70\xac\x70\xa1\ \x28\xcf\x26\x0f\xdb\xbb\xba\xf5\xfe\xbf\x17\xa5\x77\xe5\xbd\x1f\ \x70\x3d\x15\x87\x80\xec\x55\x55\xcc\x22\x50\x23\x2c\xbd\x0f\x0d\ \xf7\xa5\xfd\x74\x54\x2f\xac\x73\xe4\xc2\x5d\x23\xdb\xa9\x41\x03\ \x06\x89\x72\x92\x60\x2f\x8b\xcb\x88\xb8\xc4\x41\xca\xcd\x04\xe8\ \xbf\x62\xc5\x0a\xba\x47\xdb\x28\x8f\xe0\x8b\x41\x73\xb0\x0d\x48\ \x1f\x1a\x1b\xd8\xd8\x86\x85\xa2\x92\x98\xec\x5e\x97\xb9\xd6\x0f\ \xb9\xb7\xf7\xbd\xea\xe4\x79\xa7\x46\x9e\xbb\xf2\x60\x65\x23\xf9\ \x29\x25\x6f\x08\x88\x5e\x55\xb6\xe5\x0a\x51\x16\x81\x7a\xd7\xac\ \xca\xb1\x08\xb4\x61\x62\x3d\xd7\x22\x50\xbd\xcd\x0d\xcf\xf1\x96\ \xcf\x39\x59\x35\x5e\xde\x4f\xa9\x33\x16\x9c\xa5\x06\x0f\x18\x2c\ \xca\x29\x1b\x3c\x29\x9a\x4b\x1c\x98\x8b\x25\x60\x1b\x68\x0e\xb4\ \x8d\xf2\x08\xbe\x18\xfc\x1c\xbc\x0b\xa4\x0f\x8d\x0d\x4a\x8b\x3f\ \x49\xe4\x17\x52\x10\xfd\xfa\xf4\x53\xed\x07\xb5\xf7\x4e\x02\x2d\ \x4a\x82\xea\x64\xa7\x74\x38\x5f\x55\x16\x8b\x40\x8d\x98\x8c\x8c\ \x6c\xcc\xf3\xb6\xb4\x9c\xac\x1c\xac\xff\x67\x53\xaa\xd3\xd0\x4e\ \x5e\x2f\x8b\xc3\x3d\x5b\x4c\x7c\x9c\x0d\x5e\xfb\x5d\xca\xcf\x04\ \xa0\x73\xe8\x1e\x6d\xa3\x1c\xc1\x17\x82\x26\xa0\x3b\x90\x3e\x30\ \x56\xcc\x64\xbb\x24\xa6\x6c\xf0\x02\x66\x3f\x9e\xfe\x53\x55\xf3\ \x1f\x54\x10\x93\x55\xaa\xbc\x02\xe0\x24\x77\x31\x17\x81\x66\xfb\ \xe1\xd2\xc8\x8b\x40\xcd\xf3\x06\x3e\x16\xf6\xc7\xd1\xc8\x60\x3b\ \x40\x4e\x5c\x30\xab\xa5\x1a\x32\x70\x88\x28\xa6\x6c\x70\xf2\x9d\ \xd7\x5f\x97\x72\x34\x01\xe8\x1e\x3a\x48\x5b\x29\x20\xf8\x22\x70\ \x08\x60\x48\x1f\x16\x1b\x2b\x57\xae\xf4\x2e\x7f\xcc\x33\xcd\x25\ \x31\x49\xb0\x77\xd5\xb9\x7f\x67\x55\xf3\x38\x2a\x87\xc9\x2a\x55\ \x5c\x21\xe8\xc4\xa7\x94\x6e\x56\x7f\xcb\x7f\x11\x68\x96\xe5\x0a\ \x7b\x2c\x02\x15\xae\x59\x55\xf0\x22\x50\xde\x37\xdb\xeb\x64\xe5\ \xf0\xc3\x36\xf1\x58\x4a\xf5\x1a\xd2\x4b\x14\x53\x36\x78\x7e\xe1\ \xf4\xe9\xd3\xbd\x9c\x94\x72\x35\x66\x18\x74\x90\xb6\x52\x40\xf0\ \x45\xe0\x54\xf0\x3a\xf0\x7f\x50\xac\x70\x1d\xd6\x88\x11\x23\xf6\ \x92\x92\xb9\x8e\x8f\x04\x2f\x5c\xd6\x6a\xc2\xef\x54\xcd\x3b\xa8\ \x98\x62\x27\x2b\x3e\xef\xd3\xf5\x9f\xf5\x64\x15\x76\x11\xa8\x59\ \xae\x50\xd0\x95\x40\xc3\x2c\x02\xf5\x23\xed\x87\xa3\xf1\xc2\xb6\ \xb2\x2b\xa5\xae\x9e\xf8\x07\xb1\x97\x45\x31\x49\xf0\xdf\x6a\x6b\ \x6b\xbd\x29\x9a\x24\xa5\xc5\xef\x02\xaf\x83\x53\x81\xb6\x52\x96\ \xe0\x0b\xf0\x26\xde\xb6\x06\xf5\xfe\x0f\x8b\x13\x7c\x9f\xb7\xb2\ \x9d\x05\xe5\x97\x92\x7d\x2e\x94\x8d\xb9\x60\xd9\xa7\xd7\x1c\x91\ \xa9\x18\xa9\xc2\xa2\xa0\x85\xc1\x1e\x13\x65\x15\x76\x11\xa8\xd7\ \xab\x92\x96\x2b\xe8\x5e\x55\x51\x16\x81\x52\x52\xe6\xb1\xc3\x91\ \x85\x23\xd7\x7d\x4e\x14\x53\x10\x43\x87\x0e\xf5\xa6\x68\x98\x9b\ \x09\x53\x0f\xe8\x20\xcf\x49\x59\x43\xbf\x60\x3f\x30\x1e\x48\x1f\ \x14\x2b\x5c\x7b\x25\x89\x29\x1b\x3c\xc1\xf3\xf6\xe1\x77\xa8\x9a\ \x57\x50\x29\x71\xf5\x2e\xb4\x2c\xd8\x8b\xa2\xac\x72\x2d\x57\xf0\ \x2f\x02\x35\x13\xeb\x52\xaf\x2a\xeb\x72\x05\xfd\x9d\x0d\x72\xb2\ \x9f\x33\x82\x22\xae\x47\xe5\xc8\x07\xb6\x13\xe4\xc8\x5d\xa3\xdb\ \xa9\xc1\x83\x06\x8b\x72\xca\x06\xd7\x64\x49\xb9\x9a\x00\x74\x10\ \x5d\xa4\xed\x24\x04\xff\x11\x1c\x03\x9e\x04\xd2\x87\xc4\x06\x87\ \x83\x23\x47\x8e\x0c\xec\x51\xf9\xe1\x65\x34\xce\x9e\xfd\x83\x48\ \x27\x39\xe7\x05\x2b\x1c\xb2\xe0\x90\xcf\x0c\x01\x13\x5b\x04\x6a\ \x0b\xca\x3c\x36\x48\xdb\xea\x70\xf8\xe1\x52\x9f\x77\x53\xea\xc7\ \xf3\x7e\xaa\xee\x1f\x74\xff\x1e\x42\xe2\x01\x2e\xfb\xbe\x0d\x9f\ \xb3\x87\x85\x09\x43\x07\xd1\x45\xda\x4e\x42\xf0\x1f\xc1\x45\x60\ \x37\x90\x3e\x24\x16\x56\xad\x5a\xd5\x30\x1c\x94\xc4\x94\x0d\x5e\ \xac\xac\x66\x07\x2a\x23\x89\xe4\xe5\x77\x40\x18\x1c\xea\x51\x56\ \x25\x59\x04\x6a\x90\xb6\xcf\xe1\xf0\x43\x51\x19\xf8\x47\xfd\xb1\ \x94\xea\x33\xb4\xcf\x5e\x62\x0a\xc2\x0c\x0b\x99\xa3\x52\xee\xc6\ \x08\x1d\x44\x17\x69\x3b\xf9\x82\xff\xa0\xb9\x0b\x48\x1f\x10\x2b\ \x85\x0c\x07\xff\x32\xf6\x5a\x55\xf3\x36\x2a\x82\xc9\x2d\x55\x58\ \x1c\xe0\xbb\x38\x9c\xe3\x3c\x95\x37\x04\xf4\xf5\xaa\x0a\x5e\x04\ \xaa\x85\xd8\x20\x28\x73\xdf\xfc\xbb\xb4\x2d\x0e\x47\x36\x6c\x59\ \x19\x61\xbd\x99\x52\x37\x4c\xb8\x51\x0d\xbd\x6f\xa8\xb7\x38\x94\ \x42\xe2\x6d\x2e\x38\x2c\xa4\xb0\x4a\xc0\x5d\xa0\x86\xec\x15\xfa\ \x1f\x0e\x00\x93\x81\xf4\xe6\xd8\x60\x97\x73\xd4\xa8\x51\x9e\x88\ \xfc\x97\xc0\xc8\x06\xcf\x44\x3f\x69\xf1\xb7\x92\xef\x71\x18\xb9\ \xe0\x3e\x05\xc4\xde\x54\xd0\xc4\xba\x7f\x11\x68\xce\xe5\x0a\xfc\ \x6c\xfb\xd6\xff\xfd\x0e\x47\x2e\xfc\xb2\x7a\x4f\xf3\x9f\x94\x3a\ \x79\xc9\xa9\x6a\xd8\xe0\x61\xa2\x98\x24\x28\x35\x5e\x8d\x94\x07\ \xc6\xa4\xdc\x8d\x19\xba\x88\x4e\xd2\x96\xb2\x82\x4f\x82\xa3\xc0\ \xe3\x40\x7a\x73\x6c\xf0\xec\x70\x16\x8c\x24\xa6\x6c\x74\x1f\xd4\ \x5d\xd5\x3c\x89\x4a\x48\x5a\x58\x44\x10\x0c\xe7\xa3\x38\xec\x63\ \x8f\x8a\x43\xc0\xac\x2b\xd6\xf9\x1e\x23\x2a\x5b\x5a\xb6\xbc\xcc\ \x77\xf8\xbf\xd7\xe1\xc8\x85\x24\x2a\x03\x7b\x59\x8f\xa7\x54\xef\ \xa1\xbd\xd5\xfd\x83\xef\x17\x05\x25\xc1\x45\xa4\x3c\xbf\x57\xca\ \xdd\x98\xa1\x8b\xe8\x24\x6d\x29\x2b\xf8\x24\x38\x07\xec\x02\xd2\ \x9b\x63\x61\xf5\xea\xd5\xde\x02\x35\x9e\x74\x29\x89\x49\x82\x17\ \x26\xbb\xa6\xf6\x2f\xaa\xe6\x5f\xa8\x80\x52\x27\xb6\x2d\x18\xca\ \xcb\x96\x90\x81\x8f\xf9\x6f\xfe\x7f\x37\xcf\x11\x3e\xf6\x7f\xb6\ \xc3\x11\x86\x20\x59\x19\x61\xbd\x91\x52\xd7\x4f\x68\x1d\x4a\x58\ \xbc\xb0\x1f\x2f\x55\xce\x5c\x95\x72\x38\x46\xe8\x22\x3a\x49\x5b\ \x4a\x07\x9f\xd0\xdc\x08\xd2\x40\x7a\x73\x2c\x70\xfe\x8a\x5d\xce\ \x5c\xc3\xc1\x86\xeb\xf7\x40\x56\x1c\x0e\x7e\x63\xe9\x49\x99\x44\ \x97\x2a\xae\x54\xd8\x92\xf2\x0b\xc9\x6c\xab\xfd\xef\xfe\xf7\x3b\ \x1c\x85\x60\x8b\x2a\x9b\xac\x0c\xef\xa6\xd4\xb7\x96\x7e\xc7\x1b\ \x16\x52\x5a\x94\x51\x10\x46\x5a\x9c\x63\x66\xbe\x52\x5a\x36\xd2\ \x73\x45\x24\x0d\x6e\x04\x35\xa4\x21\xf4\x13\xfb\x82\xe1\x40\x7a\ \x63\x6c\x70\x39\x03\x2f\x25\x63\x4b\x29\x17\x3d\xee\xeb\x91\xdc\ \xd1\x41\x87\xa3\x9c\xf1\xcb\xca\x8f\x2d\x2b\x9e\x6b\xcb\xdb\xc7\ \x52\xaa\xdf\xf0\x7e\xa2\xa0\xb2\xc1\x5f\x5d\xe7\x3c\x96\x94\xc3\ \x31\x43\x27\xd1\x4d\xda\x56\x08\x3e\x00\x87\x81\x0d\x40\x7a\x53\ \x2c\xac\x59\xb3\xc6\x5b\xce\xc0\xf5\x1e\x92\x98\x24\x78\x41\xb2\ \xbf\x8d\xbe\xb5\xb0\x1f\x47\x75\x38\xaa\x09\x49\x50\x06\x5b\x54\ \x46\x56\x86\x57\x52\xea\x8e\xf1\xff\x50\x43\x87\x0c\x15\xe5\x24\ \xc1\x4e\x05\x97\x37\x48\x79\x1c\x33\x74\x12\xdd\xa4\x6d\x85\xe0\ \x03\xf0\x35\xb0\x13\x48\x6f\x8a\x05\x0a\x6b\xea\xd4\xa9\xa2\x98\ \xec\xcb\x60\xd8\x8f\x07\xdf\x3b\x58\x9d\x3b\xab\x45\xfc\x8b\x45\ \x1d\x8e\x72\x46\x92\x94\x21\x48\x56\x64\x57\x4a\x5d\x30\xbb\xa5\ \x1a\x3e\x64\xb8\x28\xa7\x6c\xcc\x98\x31\xc3\xcb\x59\x29\x97\x63\ \x84\x4e\xa2\x9b\xb4\xad\x10\x7c\x00\x5a\x82\xdd\x40\x7a\x53\x2c\ \x70\xfc\xcb\xf9\x2b\xbf\xa0\x72\xf1\x3f\x9b\x3f\xed\x86\x83\x8e\ \xc6\x89\x24\x28\x9b\x5c\xb2\xda\x0d\xde\x4d\xa9\x4f\xaf\x3f\xc2\ \x93\x10\x7b\x59\xf7\xdf\x7f\x7f\x03\x7e\x49\xd9\x4c\x9a\x34\xc9\ \xcb\xdb\x24\xa5\x85\xef\xda\x0d\x5a\x82\x8c\xac\x78\x07\xff\x40\ \x6e\xd2\x2f\x10\xdf\x58\x6c\xf8\x3d\x5c\x7f\xc5\xab\x33\x50\x42\ \xe6\xec\x71\xe2\x17\x94\xf9\xf7\xfb\x06\xde\xa7\x3a\x0e\xed\xe8\ \xfd\x8c\x91\x13\x96\xa3\xd1\x13\x46\x56\x14\x95\x81\xbf\x86\xfe\ \x6c\x4a\x75\x1f\xd5\x5d\x0d\xbb\x7f\xd8\x1e\xc2\x0a\x82\xa7\xe9\ \xf0\x20\x19\x73\x37\x61\x6e\x02\x9e\xab\xbc\xff\x81\x7d\xc0\x00\ \x20\xbd\x38\x16\xd6\xae\x5d\xeb\xad\xbf\xa2\xb9\x6d\x59\x05\x41\ \x61\x5d\x33\xe1\x2f\xf1\x5c\x4a\xc6\xe1\xa8\x24\xf2\x15\x95\x5f\ \x56\xe4\xdf\xe0\xb5\x94\xba\x61\xe2\x8d\x6a\xc4\xfd\x23\xf6\x90\ \x12\x4f\xc5\xc9\x06\xcf\xf5\xe5\x7a\x2c\x29\x9f\x63\x86\x6e\xa2\ \xa3\x1a\x84\x75\x10\x98\x07\xa4\x17\xc7\x02\x85\x35\x73\xe6\x4c\ \x6f\xc2\x5d\x92\x93\x04\xaf\xe7\xf3\xfd\xf9\x3f\x74\xf3\x57\x8e\ \xc6\x4d\x54\x59\x91\x5d\x29\xf5\xa3\x05\x3f\x51\x23\x87\x8e\x14\ \xe5\x24\xc1\x89\xf7\x39\x73\xe6\x78\xb9\x2b\xe5\x74\x8c\xd0\x4d\ \x74\x54\x83\xb0\x9a\x83\x27\x81\xf4\xe2\xd8\x98\x38\x71\x62\xc3\ \x70\x2f\x5f\xdc\xfc\x95\xa3\xd1\x62\x8b\x2a\x8a\xac\x08\x1e\x1f\ \xbe\xfe\x48\x51\x4c\x41\xf0\x20\x99\x94\xcb\x31\x43\x37\xd1\x51\ \x0d\xc2\x3a\x0d\xbc\x09\xa4\x17\xc7\x02\x27\xdc\xc7\x8e\x1d\xdb\ \x20\x2c\x73\x89\x0b\xd3\xe3\xb2\x1f\x13\x5e\xc7\xa7\xfb\xf0\xee\ \xc5\xfb\xa1\x09\x87\xa3\x92\x88\x22\x2b\x5b\x54\x84\x53\x2a\xe4\ \xc9\x94\xea\x33\xba\x8f\x1a\x31\x6c\x84\xd7\x7b\xca\x05\x85\xc5\ \x1f\xa7\xe0\x1c\x34\x7b\x59\x09\xf2\x26\x38\x0d\xd4\xd4\xf0\x7f\ \xe0\x72\xf0\x1e\x90\x5e\x1c\x0b\x5c\x84\xc6\x73\x94\x24\x39\x49\ \x50\x58\xb7\x8c\xfd\x9b\xaa\x79\x0b\x05\xed\xe6\xaf\x1c\x8d\x89\ \x30\xb2\xb2\x45\x15\x24\x2b\xb2\x33\xa5\xee\x78\xe0\x1f\x79\x0b\ \x8b\xb0\x93\xc1\x89\x77\x29\xa7\x63\x84\x6e\xa2\xa3\x1a\x84\xd5\ \x06\x48\x2f\x8c\x85\x75\xeb\xd6\x79\xbf\xc8\xc1\x49\x3e\x49\x4e\ \x12\xbc\xf0\xd8\xc5\x33\x2f\xc9\x54\x90\x13\x96\xa3\xd2\x30\xe7\ \x90\x12\xfb\xb1\xff\x75\x7e\xf2\x15\x55\x58\x59\x91\xd7\x53\xea\ \xf2\xd9\x57\xa8\x51\xc3\x46\x89\x72\x92\xe0\x55\x55\xf8\x23\xab\ \x52\x5e\xc7\x0c\x1d\xd5\x20\xac\x6e\xfa\xc9\x44\xa0\xb0\x38\x79\ \xc7\x2b\x34\x48\x72\x22\xfc\x37\x03\x7b\x57\x43\x07\x0e\x55\x27\ \x2d\x2f\xc1\xe5\x64\x1c\x8e\x20\xb2\x89\x28\x1f\xfc\x9f\xe5\xa7\ \x58\xb2\xf2\x8b\x6a\xd7\x47\x9c\xbc\xec\x54\x35\x7a\xe8\x68\x6f\ \xb4\x43\x21\xf1\x36\x08\x1e\x29\x9c\x3f\x7f\xbe\x97\xc3\x52\x6e\ \xc7\x08\x1d\xe5\x09\x6b\x3f\x30\x46\x3f\x99\x08\xdc\x59\x4e\xde\ \xf9\xc5\x14\xc4\xa0\xc1\x83\xd4\x41\x5b\x3f\xe5\x84\xe5\x48\x06\ \x5b\x2a\xb6\x64\x8a\x85\xff\xfb\x6c\x6c\x51\x85\x95\x95\x2d\xaa\ \x1c\xb2\xe2\xd5\x4e\x0e\xd9\x74\x98\x1a\x36\x22\xb7\xa8\x6c\xf8\ \xcb\xec\xcc\xe1\x84\x19\x03\xf6\xab\xc1\xff\x0e\x01\x0b\xf5\x93\ \x89\x40\x69\x71\xf2\x2e\x5f\x61\x0d\xb9\x6f\x88\xea\x39\xac\xa7\ \xb7\xd8\xcd\x09\xcb\xb1\x07\xb6\x00\x6c\x21\x94\x2b\xfe\xed\xf7\ \x93\x94\xac\x0c\x8f\xa5\x54\xdf\x31\x7d\xd5\xc8\xe1\x23\x45\x39\ \xf9\x61\x2f\x8c\x9d\x0d\x29\xaf\x63\x86\x8e\x3a\x84\xc2\x3a\x12\ \x3c\xaa\x9f\x4c\x04\x1e\x65\xe0\xaa\xd9\x5c\xc2\xe2\x65\x2d\x78\ \x4b\x61\xb5\x1b\xd3\xde\xbb\x96\x8f\x9b\xbf\x6a\x04\xf8\x13\xdc\ \x7e\x5c\xc9\xf8\xf7\xd3\x4f\xa1\xa2\x0a\x2b\x2b\x5e\x56\xdc\xf0\ \x62\x4a\x75\xae\xed\x22\x0a\x8b\x67\xa1\xd8\xf7\xcd\x63\x2e\x47\ \xe2\x91\x7e\x29\xb7\x63\x84\x8e\x3a\x92\xc2\x3a\x11\xbc\xac\x9f\ \x4c\x04\x2e\x69\xe0\xe4\x9d\x91\x52\x2e\x78\xed\x9e\x3f\x4d\xfe\ \x73\xe6\x94\x02\x27\xac\xca\xc5\x9f\xbc\xf6\xe3\x6a\xc7\x5f\x16\ \x7e\xe2\x92\x95\x2d\x2a\xbf\xac\xc8\xce\x94\x6a\x3d\xe5\x06\x35\ \x6a\xc4\xa8\x06\x29\xe5\x82\xe7\xff\xb2\xd3\x21\xe5\x76\x8c\xd0\ \x51\x27\x52\x58\x2d\xc0\x5b\xfa\xc9\x44\xe0\x39\x84\x34\xb5\x5f\ \x4c\xf6\x89\x96\xf6\x63\x9e\x55\x7e\xe1\x9c\x8b\x32\x95\xe7\x84\ \x55\x7e\xd8\x49\x69\x27\xa9\x23\x83\xbf\xbc\xfc\x14\x4b\x56\xb6\ \xa8\xf2\x91\x15\x97\x08\xbd\x9a\x52\xbf\x98\xf3\x4b\x35\x66\xc4\ \x18\x51\x4e\x36\x9c\x70\xe7\xad\x59\xda\x20\xe5\x76\x2e\xd6\xaf\ \x5f\x5f\x28\x6f\x81\x16\x14\x56\x2b\xb0\xdb\xfe\xd0\x38\xe1\x97\ \x73\x49\x03\xc7\xc2\xb6\xa0\x82\x18\x31\x78\x84\x3a\x65\xf9\x69\ \x6e\xfe\x2a\x09\xb2\x25\x9c\xf4\xbc\x23\x18\x7f\xd9\xfa\xb1\x45\ \x15\x56\x56\xb6\xa8\x0a\x91\x15\xaf\x27\x47\xde\x48\xa9\xb3\x96\ \x9c\xad\xc6\x0e\x1f\xab\x46\x8c\xfa\x48\x4c\x41\xf0\x62\x7e\xbc\ \xf0\xa6\x25\x93\x24\xd8\x0d\x5a\xd5\xe0\x7f\x37\x80\x0f\xf4\x93\ \xb1\xb3\x61\xc3\x06\xef\xa2\x7d\x5c\x35\x2b\xc9\x49\x82\x3d\xac\ \xa3\x36\x7c\xde\x09\x2b\x0a\xfe\x44\xb2\x1f\x3b\x8a\x8f\xbf\xfc\ \xfd\x84\x91\x95\x2d\xaa\x62\xca\x4a\xf3\xa5\x35\x5f\x56\x63\x47\ \x8e\x15\xe5\x24\x31\x7a\xf4\x68\xef\xc2\x05\xcc\x65\x29\xc7\x63\ \x82\x8e\xba\x81\xc2\x6a\x0f\xd2\xfa\xc9\xd8\xe1\x4e\xf2\xb0\xa8\ \x24\x26\x09\x5e\xaf\x67\xd0\xb0\x41\xea\xe3\xdb\x0f\x70\xc2\x92\ \xb0\x13\xc4\x4e\x18\x47\xe9\xf0\xd7\x91\x9f\x7c\x45\x15\x55\x56\ \x39\x44\xe5\x1d\xc4\xc2\xed\x81\x9b\x0e\x52\xc3\xc6\x0c\x53\xa3\ \x47\x8e\xf6\x84\xc4\xf9\xe5\x5c\xb0\xd3\x91\xb0\xb0\xe8\xa8\xf6\ \x14\x56\x3f\xeb\xc9\xd8\xe1\x4e\xf2\x57\x72\x28\x23\xfb\xb2\x16\ \xfe\xc7\x06\x5e\xaf\xa7\xcf\xc8\x3e\xaa\xe6\x19\x14\x6e\x63\x11\ \x96\xbf\xf1\xdb\x8f\x1d\xe5\x8d\xbf\x2e\xfd\xc4\x25\x2b\x5b\x54\ \xf9\xca\x4a\x0b\xab\xe6\xd1\x94\x1a\x38\x66\xa0\x1a\x33\x6a\x8c\ \x28\x27\x3f\x94\x1a\x7f\x45\x27\x61\x61\x91\x7e\x14\xd6\x18\xdf\ \x93\xb1\xf3\xd0\x43\x0f\x65\x15\x94\x1f\x0a\xab\xdb\x98\x6e\xaa\ \xe6\x65\x14\x6c\xa5\x0b\xcb\xdf\xb0\xed\xc7\x8e\xca\xc7\x5f\xdf\ \x36\xb6\xa8\xa2\xca\xca\x16\x55\x14\x59\x91\xd7\xc1\x13\x29\xd5\ \x7b\x5c\xef\x50\xc2\xe2\xa5\xa1\x28\xac\x84\x19\x53\x83\xff\xcd\ \xf2\x3d\x19\x08\x85\x23\x3d\x9f\x2f\x7c\x3f\x7f\x32\x28\x8c\xb0\ \x3a\x8e\xeb\x94\x29\xe8\x72\x3d\x42\x68\x37\x58\xbb\x01\x3b\x1a\ \x07\xfe\xf6\xe0\x27\x8a\xac\x6c\x51\x45\x95\x95\x2d\x2a\xf2\x1a\ \xa0\xb0\x9e\x4b\xa9\x1e\x13\x7a\x88\xc2\xe2\x7c\x95\x7d\xdf\x3c\ \xe6\x28\x29\xaa\x0b\x0a\x60\x16\x85\xb5\xda\xf7\x64\xac\xf0\x48\ \x21\x57\xb9\x4b\xc2\xe2\x44\xbc\xff\xf1\xf0\xa1\xc3\xd5\x9d\x13\ \xee\xca\x54\x46\x92\xc2\xf2\x37\x48\xfb\xb1\xc3\x61\xf0\xb7\x1b\ \x3f\x61\x64\x65\x8b\x2a\xac\xac\x82\x44\x95\x4d\x56\x46\x58\x2f\ \xa6\x54\xc7\x49\x9d\xd4\xd8\xd1\x63\x1b\xa4\x14\x04\x85\xc5\xd5\ \xee\x25\x10\xd6\x6a\x0a\x6b\xbb\xef\xc9\x58\xe1\x69\x39\x0f\x3c\ \xf0\x40\x83\x90\x72\x41\x61\xdd\x38\xa9\x4d\xa6\xc2\x8a\x21\x2c\ \x7f\x63\xb3\x1f\x3b\x1c\x61\xf0\xb7\x2d\x3f\xf9\x8a\xaa\x54\xb2\ \xb2\x84\x75\xcb\x94\xbf\x85\x12\xd6\x94\x29\x53\xbc\xce\x87\x94\ \xe3\x31\xb2\x9d\xc2\x7a\xca\xf7\x64\xac\x70\x49\x3f\x4f\xcb\x91\ \xe4\x24\xc1\x4b\xb8\xfe\xdf\x8c\xab\x32\x95\x98\x4d\x58\xfe\x46\ \x64\x3f\x76\x38\xe2\xc0\xdf\x06\xfd\x14\x4b\x56\x41\xa2\x8a\x2a\ \xab\x57\x35\x2f\xa7\xd4\x9f\x66\xfe\x59\x8d\x1b\x3d\xce\x5b\x63\ \x95\x0b\x4a\x8b\xbf\xa0\x43\x61\x6d\xdc\xb8\x31\x49\x9e\xaa\xc1\ \xff\x9e\xf7\x3d\x19\x2b\x14\x16\x57\xca\x52\x46\xe6\x1a\x3b\x36\ \x92\xb0\x2e\x9d\x7b\x59\xa6\xa2\x29\x2c\xa9\xf1\x38\x1c\x49\x22\ \x09\xca\x60\x8b\x2a\xac\xac\x6c\x51\x45\x95\x55\x90\xa8\x6c\x59\ \x91\x97\x52\xea\xb7\x73\x5a\xa9\xf1\x63\xc6\x8b\x82\x92\xe0\xf9\ \x84\x25\x10\xd6\xf3\x14\xd6\x2b\xbe\x27\x63\xc5\x08\x4b\x92\x95\ \x04\x2f\x2e\x76\xf1\xc2\x4b\x32\x95\xef\x84\xe5\x28\x25\x92\xa0\ \x6c\xc2\xc8\xca\x16\x55\x29\x65\x45\xd0\xc3\xba\x6c\xde\xaf\x42\ \x09\x8b\xf3\xd0\x9c\xde\x91\x72\x3c\x46\x5e\xa1\xb0\xde\xf0\x3d\ \x19\x2b\x14\x16\x77\xd8\x08\xc9\x9c\x0d\x4e\xfc\x8f\xc9\xe8\xe1\ \xa3\x55\x8b\x45\xe7\x67\x1a\x80\xd4\x88\x1c\x8e\x24\x90\x04\x65\ \x93\xaf\xa8\xa2\xca\x2a\x48\x54\x85\xc8\x6a\x27\xf8\x67\x4a\x5d\ \x34\xef\xe7\x95\x20\xac\x37\x28\xac\x77\x7c\x4f\xc6\x8a\x11\x96\ \x5f\x4c\xd9\xa0\xb0\x7e\xba\xf4\x3c\x27\x2c\x47\xe9\x90\x04\x65\ \x13\x97\xac\x6c\x51\x45\x95\x95\x5f\x54\x36\xaf\xa4\xd4\xf9\x0b\ \x2e\x54\x0f\x8c\x7d\xc0\x1b\xfd\xe4\xc3\x84\x09\x13\x4a\x21\xac\ \x77\x28\xac\xf7\x7c\x4f\xc6\x0a\x2f\x4b\x11\x56\x58\x3f\x58\x76\ \x4e\xa6\x61\x48\x8d\xc9\xe1\x88\x13\xbf\x9c\x6c\x6c\x51\x45\x95\ \x95\x2d\xaa\xa8\xb2\xb2\x45\x95\x4b\x56\x04\x43\xc2\xf3\x16\xfd\ \x4c\x4d\xa8\x9d\xe0\x1d\x10\xcb\x07\x0a\x8b\x73\x58\x9b\x36\x6d\ \x4a\x92\xf7\x6a\xf0\xbf\x3a\xdf\x93\xb1\x62\x0b\xcb\xbe\x74\x45\ \x36\x78\xd9\x8b\x33\x57\x7e\xcf\xcd\x5f\x39\x92\x45\x12\x94\x4d\ \x14\x59\xd9\xa2\x8a\x2a\x2b\x5b\x54\x05\xca\x8a\x43\xc2\x1f\x2e\ \xf9\x91\x7a\x70\xec\x83\xa2\x9c\x24\x4c\x0f\x4b\xca\xf1\x18\xa9\ \x2b\x99\xb0\x24\x39\x49\x38\x61\x39\x12\x47\x12\x94\x4d\x18\x59\ \xd9\xa2\x8a\x2a\x2b\x5b\x54\x51\x65\x45\x51\x19\x20\xac\x1f\x2d\ \xfe\x49\xc5\x08\xeb\x3d\xdf\x93\xb1\x62\x8e\x12\x4a\x72\x92\xa0\ \xb0\xdc\x90\xd0\x91\x18\x7e\x39\xf9\xc9\x57\x54\x51\x65\x65\x8b\ \x2a\x4e\x59\x91\x17\xc3\x0f\x09\x39\xe9\x5e\xaa\x21\xe1\x3b\xbe\ \x27\x63\x85\x56\x0e\x2b\xac\x73\x97\xb5\xc8\x34\x10\xa9\x81\x39\ \x1c\xc5\x42\x12\x94\x4d\x5c\xb2\xb2\x45\x15\x55\x56\x92\xa0\x6c\ \xfc\xb2\x42\xef\x8a\xeb\xb0\x2e\x5c\x70\x91\x7a\x70\xdc\x83\x6a\ \xdc\xb8\x71\x0d\x50\x4c\xf6\x63\x1b\xae\xc3\xe2\xa9\x39\x9b\x37\ \x6f\x2e\x2a\x74\x84\xf4\xbc\xe6\x1d\x0a\xeb\x0d\xe1\x1f\x62\x83\ \x56\x66\x41\x50\x46\xe6\x82\x60\xc4\xff\xd8\xc0\x0b\x8b\xfd\x6c\ \xf1\x05\x4e\x58\x8e\x78\x91\x04\x65\xb0\x45\x15\x55\x56\xb6\xa8\ \xa2\xca\xca\x16\x55\x58\x59\x51\x54\x86\x17\x52\xea\x92\x05\x97\ \xee\x25\xac\x20\xb8\xd2\x3d\x0e\x61\xe5\xe0\x8d\x1a\xfc\xef\x15\ \xdf\x93\xb1\xc2\x9d\xe4\x45\xec\x25\x39\x49\x50\x58\x97\x2c\xbe\ \x34\xd3\x50\xdc\x3c\x96\xa3\xd8\x48\x82\xb2\x89\x22\x2b\x5b\x54\ \x51\x65\x65\x8b\xaa\x98\xb2\xd2\xc2\xfa\xd5\xdc\x5f\xef\x25\x2c\ \xe6\xa9\xc1\xff\x98\xe7\x12\xf2\x54\x3b\x29\xc7\x63\xe4\x15\x0a\ \xeb\x79\xdf\x93\xb1\x42\x61\xf1\xe4\x67\x49\x4e\xc4\x5c\xca\x82\ \xf0\x71\xed\x88\x5a\x75\xf9\x82\x2b\x54\xcd\xfb\x28\x58\x27\x2c\ \x47\x31\x91\x04\x65\x13\x24\xab\x20\x51\x85\x95\x55\x90\xa8\xa2\ \xca\xca\x16\x95\x24\x2b\x0c\x07\x79\x79\x99\x56\xf3\x7e\xaf\x26\ \x8e\x9f\xb8\x87\x94\x82\x28\x91\xb0\x9e\xa7\xb0\x9e\xf2\x3d\x19\ \x2b\x14\x16\x27\xec\xfc\x72\xca\x46\xed\xa8\x5a\x75\xd5\xec\xab\ \x33\x8d\xc4\x09\xcb\x51\x2c\x24\x41\xd9\x64\x13\x55\x54\x59\xd9\ \xa2\x8a\x2a\x2b\x49\x50\x36\xb9\x64\xf5\x22\xd0\xc2\xba\x76\xd6\ \x75\x79\x09\x8b\x9d\x0d\xde\xf2\xf2\x32\x5c\x57\xf9\xf0\xc3\x0f\ \x27\x06\xfc\xf1\x14\x85\xb5\xdd\x16\x4a\x1c\xd8\x5f\xca\x9d\xe4\ \x05\xfc\x28\x23\xff\x65\x2b\x88\x24\xac\x9b\xa7\xdf\x92\x69\x08\ \x4e\x58\x8e\x62\x20\x09\xca\xa6\x58\xb2\xb2\x45\x55\x8e\xb2\x32\ \xc2\x7a\x36\xa5\x6e\x9b\x7e\xbb\x7a\xf0\x81\x07\x1b\xa4\x94\x8b\ \x19\x33\x66\x78\x13\xe4\x76\x6e\x27\xc0\xf6\x1a\xfc\x6f\xb5\xef\ \xc9\x58\xe1\x4e\xd2\xce\xd9\x84\xe5\x87\xd7\xe8\xb9\x67\x52\x47\ \x27\x2c\x47\x71\x90\x04\x65\xb0\x45\x15\x56\x56\xb6\xa8\xa2\xca\ \x2a\x48\x54\x61\x65\x95\x4d\x54\x86\x17\xc0\xd3\x29\xd5\x75\x4a\ \x37\x4f\x58\x92\x9c\x24\x78\x4d\x77\x7f\x67\x24\x01\x56\x53\x58\ \xb3\x7c\x4f\xc6\x0a\x77\x92\x76\x0e\x23\xac\xee\x93\x7a\x64\x2a\ \xd5\x09\xcb\x51\x28\x92\xa0\x6c\xc2\xc8\xca\x16\x55\x39\xc9\xca\ \x16\x55\xbe\xb2\x22\x8f\xa7\x54\xbf\x87\xfa\x79\xc2\xe2\x82\x50\ \x03\xc5\x64\x3f\xb6\x9f\x9f\x3b\x77\xae\x98\xdf\x31\x33\x8b\xc2\ \x1a\xe3\x7b\x32\x76\x68\x67\x5b\x58\x5c\xf9\x6e\xf0\x3f\xae\x1d\ \x53\xab\xfa\x3e\xd8\x37\x53\x21\x69\x20\x35\x46\x87\x23\x08\x49\ \x50\x36\xf9\x8a\x2a\xaa\xac\x82\x44\x55\x2a\x59\xf1\xfe\xf6\x94\ \x1a\x34\x79\x90\x9a\x38\x61\xa2\x28\x28\x3f\x14\xd6\x82\x05\x0b\ \xc4\xdc\x8e\x99\x31\x14\x56\x3f\xdf\x93\xb1\xb2\x65\xcb\x16\xef\ \x37\xcd\xfc\x62\xca\x06\x85\x35\xf0\x81\x81\x99\x82\x75\xc2\x72\ \x84\x45\x12\x94\x4d\x5c\xb2\xb2\x45\x15\x55\x56\x92\xa0\x6c\x0a\ \x95\x15\x79\x1e\x6c\x69\xaa\x86\x4d\x1e\x96\x55\x58\x3c\x48\x66\ \x30\xcf\xf1\x87\x54\x99\xcb\xc4\xe4\x75\x02\xf4\xa3\xb0\xda\x83\ \xb4\xf0\x8f\xb1\xb1\x70\xe1\x42\x51\x4e\xc4\xbe\x84\x05\xa1\xb0\ \x46\x8e\x1b\xa9\xf6\x7f\xb2\x99\x13\x96\x23\x1c\x92\xa0\x0c\xb6\ \xa8\xa2\xca\xca\x16\x55\x54\x59\xd9\xa2\x2a\xb6\xac\x6c\x51\x59\ \x1c\xb2\xfe\x30\x35\xee\xc1\x71\x7b\x88\x29\x17\x4b\x97\x2e\x55\ \x5b\xb7\x6e\x15\xf3\x3b\x26\xe8\xa8\xf6\x35\xf8\xdf\x0d\xe0\x03\ \xfd\x64\xec\x70\x27\xf9\xbb\xfc\x5c\xed\xee\x97\x53\x36\x78\x9d\ \x9e\x2f\x6c\x39\xd6\x09\xcb\x91\x1f\x92\xa0\x6c\xa2\xc8\xca\x16\ \x55\x54\x59\xd9\xa2\x8a\x2a\xab\x20\x51\x05\xc8\x8a\x3d\xac\x13\ \x56\x7f\x5d\x4d\x79\x70\x8a\x28\x26\x09\xae\x72\x5f\xb9\x72\x65\ \xd2\xc2\xa2\xa3\x6e\xa0\xb0\x5a\x81\xdd\xfa\xc9\x44\xe0\x15\x1b\ \x78\xf8\x54\x92\x93\xc4\x84\x31\x13\xd4\x99\x6b\xdd\x15\x1b\x1c\ \x79\x20\x09\xca\x26\x8c\xac\x6c\x51\x45\x95\x95\x2d\xaa\xa8\xb2\ \xb2\x45\x15\x45\x56\xe4\x99\x94\x3a\x67\xe9\x8f\xd5\x43\x13\x1e\ \x12\xe5\x24\xc1\x65\x49\x3c\x27\x58\xca\xed\x18\xa1\xa3\x5a\x51\ \x58\x2d\xc0\x5b\xfa\xc9\x44\x30\xab\xdd\x25\x39\x49\xb0\x87\x75\ \xe9\xe2\xcb\x32\x0d\xcc\x49\xcb\x91\x0d\x49\x50\x36\xf9\x8a\x2a\ \xaa\xac\x6c\x51\x95\xb3\xac\x38\x7f\xf5\x74\x4a\x5d\xb9\xf0\x77\ \xea\xa1\x89\x0f\x79\x27\x34\xe7\x82\xc2\xe2\x2f\xb7\x73\x3d\x25\ \x7b\x58\x49\x01\x6f\xd0\x51\x2d\x28\xac\x13\xc1\xcb\x14\x89\x8d\ \xf4\xa6\x62\xc1\xb5\x58\xec\x56\x52\x46\xf9\x0c\x0d\x29\xac\x1b\ \x67\xb7\xc9\x34\x24\x27\x2c\x87\x84\x24\x28\x9b\x62\xc9\x2a\x48\ \x54\x51\x65\x25\x09\xca\x26\x8c\xac\x24\x41\xd9\x3c\x0b\x28\xac\ \xa7\x52\xea\xef\xb3\x6f\xcb\x5b\x58\x84\xcb\x92\xb8\x3c\x49\xca\ \xed\x18\x79\x19\x9c\x58\x83\xff\x1d\x09\x1e\xd5\x4f\x26\x02\x8f\ \x2a\x4c\x9b\x36\xcd\x93\x11\x85\x95\x8b\xf1\xb5\xe3\x55\x8f\x87\ \x7a\xaa\x9a\xb7\x50\xc0\x4e\x58\x0e\x3f\x92\xa0\x0c\xb6\xa8\xc2\ \xca\xca\x16\x55\x54\x59\x05\x89\x2a\xac\xac\x82\x44\x95\xaf\xac\ \x8c\xb0\x1e\x4b\xa9\x7e\x53\xef\x55\x93\x27\x4e\x16\xe5\xe4\x87\ \x3d\xac\x39\x73\xe6\x78\x39\x2c\xe5\x76\x8c\xd0\x51\x47\x52\x58\ \x87\x80\x85\xfa\xc9\x44\x60\x0f\x8e\x6b\xb1\xf2\x11\x96\x77\x96\ \x38\x84\x35\xe4\xc1\x21\x99\xca\x70\x13\xef\x0e\x83\x24\x28\x1b\ \x27\xab\xbd\x31\xb2\x22\xcf\x81\x87\x9b\xaa\x11\x93\x46\x64\x15\ \x16\x47\x42\xfe\xe7\xb8\x06\x4b\xca\xeb\x98\xa1\xa3\x0e\xa1\xb0\ \xf6\x03\x63\xf4\x93\x89\xf0\xc8\x23\x8f\x78\x4b\x1b\xfc\x62\x0a\ \xa2\x76\x7c\xad\x3a\x74\xc7\x67\x9c\xb0\x1c\x19\x24\x41\xd9\x04\ \xc9\x2a\x48\x54\x61\x65\x15\x24\xaa\xa8\xb2\xb2\x45\x15\x55\x56\ \xb6\xa8\x2c\x9a\xaf\x3b\xba\x41\x4c\xf9\xc2\x25\x0d\xcc\x61\x29\ \xb7\x63\x84\x8e\xda\xaf\x06\x5f\x4c\x69\x75\xb3\xfe\x21\x76\xb8\ \xb3\x2b\x56\xac\xf0\x26\xde\x25\x39\x49\x4c\xac\x9d\xa8\x4e\x5d\ \x7f\xba\xaa\xf9\x10\x05\x2d\x35\x60\x47\xe3\x41\x12\x94\x4d\x36\ \x51\x45\x95\x95\x2d\xaa\xa8\xb2\x92\x04\x65\x93\x80\xac\x38\xe1\ \xfe\xfd\xe5\x3f\x54\xd3\x26\x4e\x13\xc5\x24\xc1\xcb\xca\xf0\x28\ \x3f\x73\x38\x61\xba\x6d\xdb\xb6\xad\xc6\x13\x16\x68\x63\xfd\x43\ \x22\xf0\xca\xa3\x1c\x0f\x9b\xcb\x56\xe4\x82\x97\xbe\xb8\x72\xe9\ \xef\xdc\x75\xb1\x1a\x3b\x92\xa0\x6c\x8a\x25\x2b\x5b\x54\x51\x65\ \x65\x8b\xaa\xd8\xb2\x92\x04\x65\x23\x89\x8a\x3c\x03\x9e\x48\xa9\ \xab\x17\xfc\x41\x4d\x9b\x3c\xcd\x5b\xaa\x40\x28\x25\x73\x5f\x82\ \x17\x2e\xe0\x75\xb0\xa4\x9c\x8e\x19\x3a\xaa\x41\x58\x97\x83\xf7\ \x80\xf4\xc2\x58\xe0\x51\x06\xda\x5a\x92\x93\xc4\x84\xf1\x13\x54\ \x87\x19\xf7\x64\x1a\x93\x13\x56\xe3\x43\x92\x93\x8d\x2d\xaa\xb0\ \xb2\xb2\x45\x15\x55\x56\xb6\xa8\xa2\xca\x2a\x48\x54\x51\x64\x45\ \x28\xac\xc7\x52\xaa\xfb\x8c\x1e\xea\xa1\xc9\x0f\x89\x72\x92\x98\ \x39\x73\xa6\x37\xe1\x2e\xe5\x74\x8c\xd0\x4d\x74\x54\x83\xb0\x4e\ \x03\x6f\x02\xe9\xc5\xb1\xc0\x89\x77\xee\x3c\x87\x7b\x92\xa0\xfc\ \x50\x58\x43\x26\x0d\xc9\x54\x9c\x9b\xc7\x6a\x5c\x48\x82\xb2\x09\ \x23\x2b\x5b\x54\xe5\x24\x2b\x5b\x54\x51\x65\x25\x09\xca\xe6\x29\ \x80\xe1\x20\xcf\x21\x1c\x39\x75\xe4\x5e\xc2\x62\x47\xc2\x60\x3f\ \xe6\x7d\x9e\x07\x6c\xa6\x75\x12\x84\x6e\xa2\xa3\x1a\x84\xd5\x1c\ \x3c\x09\xa4\x17\xc7\xc6\xfc\xf9\xf3\x45\x39\x71\x6e\x2b\x1b\x47\ \x3e\xf6\x39\x27\xac\xc6\x84\x24\x28\x9b\x7c\x45\x15\x55\x56\x41\ \xa2\xaa\x34\x59\x69\x61\x1d\xbb\xf6\x2b\x7b\xc8\x29\x1f\x96\x2c\ \x59\xa2\xb6\x6d\xdb\x96\x34\x4f\x82\xe6\xa0\x41\x58\x07\x81\x79\ \xd6\x0b\x12\x61\xf9\xf2\xe5\xde\x99\xdf\x92\x98\x24\x26\x8f\x9f\ \xac\xce\x5f\x7d\xa1\x9b\x78\x6f\x2c\x48\x82\xb2\x89\x4b\x56\xb6\ \xa8\xa2\xca\x4a\x12\x94\x4d\x29\x64\x45\x9e\x48\xa9\x5f\x2c\xf9\ \xa5\x9a\x31\x79\x86\x28\x26\x03\x57\xb5\x9b\xfb\x9c\xbf\xe2\x84\ \xfb\xf6\xed\xdb\xc5\x7c\x8e\x11\xba\xe9\x20\x50\x53\xc3\xff\x81\ \x7d\xc0\x00\x20\xbd\x38\x36\x38\x79\xc7\x49\x3e\x5b\x4a\xe6\xf2\ \x15\xf6\x7d\x03\x2f\x7f\x71\xfb\xdc\x3b\x54\xcd\xbb\x28\x70\x37\ \x8f\x55\xdd\x48\x82\x32\xd8\xa2\x8a\x2a\x2b\x5b\x54\x51\x65\x65\ \x8b\x2a\xaa\xac\xc2\x88\x8a\x48\x82\x32\xd8\xa2\x22\x4f\x82\x1d\ \x29\x75\xd7\x9c\x76\x6a\xda\x43\xd3\x1a\xc4\x94\x8b\xe9\xd3\xa7\ \x7b\x67\xa9\x48\xb9\x1c\x33\x74\x13\x1d\xd5\x20\x2c\x72\x13\x90\ \x5e\x1c\x1b\x9c\xc7\xe2\x8a\x77\x49\x4e\x12\x14\xd6\xa0\x29\x83\ \x32\x95\xed\x86\x85\xd5\x89\x24\x28\x9b\x28\xb2\xb2\x45\x15\x55\ \x56\xb6\xa8\xa2\xca\xca\x16\x55\xdc\xb2\x22\x9c\xbf\x7a\xb8\xa9\ \x1a\x39\x63\xa4\x27\x2c\x49\x4e\x12\x5c\xe1\xce\x9c\x95\x72\x39\ \x66\xe8\x26\xcf\x53\x5e\xe8\x07\x2d\xc1\x6e\x20\xbd\x21\x16\x38\ \x8f\xc5\x49\xbc\x7c\x85\x65\x68\xbe\xe3\x68\x27\xac\x6a\x44\x12\ \x94\x4d\x18\x59\xd9\xa2\x0a\x2b\xab\x20\x51\x45\x95\x95\x2d\xaa\ \xa8\xb2\x92\x04\x65\x23\xc9\x8a\x70\xfe\x6a\xf5\x57\x44\x29\x05\ \xb1\x78\xf1\x62\x31\x8f\x0b\x61\x3b\x86\x95\xf9\x80\xd7\xd2\x49\ \x74\x53\x46\x56\x0c\x3e\x00\x5f\x03\x3b\xc1\x5e\x1f\x1e\x17\xdc\ \x20\x5e\x1b\x4b\x92\x52\x36\x26\x4f\x98\xac\x7e\xb9\xe2\xf2\x4c\ \x03\x76\xc3\xc2\xea\xc1\x2f\x27\x3f\xf9\x8a\xca\xc9\x2a\x83\x24\ \x2a\xc2\xe1\xe0\xe3\x29\xf5\xbb\xc5\xff\xab\x66\x4e\x9d\xe9\xcd\ \x4b\xe5\xcb\xaa\x55\xab\xf6\x12\x4a\x02\xec\x04\x5f\x03\xda\x56\ \x08\x3e\x00\x87\x81\x0d\x40\x7a\x53\x6c\xf0\x52\x33\x3c\x5c\x6a\ \xae\xb5\x93\x0b\x5e\x68\xac\xeb\xac\x6e\x99\xc6\xe5\x84\x55\x1d\ \x48\x82\xb2\x29\x96\xac\x82\x44\x15\x55\x56\x92\xa0\x6c\xc2\xc8\ \x4a\x12\x94\x8d\x24\x28\x1b\x49\x54\x06\x0a\x6b\x7b\x4a\xf5\x99\ \xd3\x57\x4d\x9f\x3a\x5d\x14\x93\x04\xaf\xd0\xc0\x4b\xca\x30\x67\ \x13\x86\x4e\xa2\x9b\xb4\xad\x10\x7c\x00\xf6\x05\xc3\x81\xf4\xa6\ \xd8\xe0\x9a\x0e\x16\x06\x65\xe4\x3f\xc9\x52\x82\x27\x69\xd6\x4e\ \xa9\xcd\x9c\xb8\xe9\x86\x85\x95\x8f\x24\x28\x83\x2d\xaa\xb0\xb2\ \xb2\x45\x15\x55\x56\x41\xa2\x0a\x2b\xab\x20\x51\x45\x95\x95\x5f\ \x4e\x7e\x28\x2b\xdc\x7e\x6c\xe3\xfe\x6a\xc2\xf4\x09\xa2\x98\x6c\ \x38\xbf\x6c\xee\x9b\xf5\x57\xcc\xd9\x84\xa1\x93\xe8\x26\x6d\x2b\ \x04\x1f\x68\x6e\x04\x69\x20\xbd\x31\x36\x78\x22\x74\xbe\xc2\x22\ \xbc\x76\xcf\x99\x9b\xdd\x15\x48\x2b\x1a\x49\x50\x36\xd5\x20\x2b\ \x5b\x54\xe5\x20\x2b\xf2\x44\x4a\xfd\x68\xd9\x4f\xd4\xac\x69\xb3\ \xbc\x1e\x16\xa5\x94\x0f\x9c\xba\x61\xae\x26\x0c\x5d\x44\x27\x79\ \x7e\xda\x23\xf4\x93\xe7\x80\x5d\x40\x7a\x73\x2c\x3c\xfa\xe8\xa3\ \xde\xd8\x98\xcb\x1b\x24\x39\x49\x50\x58\xff\x98\x7f\x67\xa6\x71\ \x3a\x69\x55\x1e\x92\xa0\x6c\x0a\x15\x55\x58\x59\x05\x89\xaa\x9c\ \x64\x25\x09\xca\x46\x12\x94\x8d\x91\x15\xc1\x70\xb0\xc3\xbc\x7b\ \x3c\x61\xf9\xa5\xc4\x65\x0b\x06\xfb\x31\x47\x40\x3c\xf7\x97\xb9\ \x9a\x30\xbb\xc0\x39\x40\x5b\xca\x0a\xc8\x83\x1c\x05\x1e\xb7\xde\ \x20\x82\xd7\x88\xcf\x17\x8a\xb9\xa0\x1f\xa5\x95\x2f\xa3\xa6\x8c\ \xca\x54\xb4\x1b\x16\x56\x16\x92\xa0\x6c\xe2\x92\x95\x2d\xaa\xa8\ \xb2\x92\x04\x65\x53\x2e\xb2\xb2\x45\x45\xd0\xbb\xda\x67\xe3\xbe\ \xea\x81\x99\x0f\xec\x21\xa7\x5c\x98\xe5\x0c\x52\xee\xc6\x0c\x5d\ \x74\x14\xd0\x96\xb2\x82\x4f\x82\x03\xc0\x64\x20\xbd\x39\x36\x78\ \xc4\x90\xbf\x24\xcb\xde\x93\x24\x27\x89\xa9\x93\xa6\xaa\xb3\x37\ \xfd\xc0\xf5\xb0\x2a\x09\x49\x50\x36\xc5\x92\x95\x2d\xaa\xa8\xb2\ \xb2\x45\x55\x6c\x59\x49\x82\xb2\x91\x04\x65\xc3\xf5\x54\x92\xa8\ \x88\x5f\x56\x3b\xc0\x63\x29\x75\xee\xf2\x16\x6a\xf6\xf4\xd9\xa2\ \x98\xb2\xc1\xe5\x0c\xdb\x8b\xdc\x49\xc9\x13\xba\x88\x4e\xd2\x96\ \xb2\x82\x4f\x6a\xee\x02\xd2\x9b\x63\x85\xa7\xe9\x48\x62\x22\xe6\ \xa4\x4c\x62\x1e\xf3\x84\xcd\xf6\xf3\xee\x76\xab\xde\x2b\x01\x49\ \x4e\x36\xb6\xa8\xc2\xca\xca\x16\x55\x54\x59\xd9\xa2\x8a\x2a\xab\ \x20\x51\x05\xc9\x8a\x07\x93\x78\x6b\xa4\xc4\xc7\x84\x72\xca\x46\ \x3e\xb2\x42\xef\x8a\xc3\xc1\x2e\x73\xbb\x86\x12\x16\x87\x83\x3c\ \x1d\x47\xca\xd9\x04\xa0\x8b\x3c\x2f\x89\xa1\xff\xf1\x22\xb0\x1b\ \x48\x1f\x10\x1b\x5c\xf2\xcf\xa3\x11\xb6\x9c\x72\x31\x7e\xea\xf8\ \xcc\x75\xa9\xdd\xb0\xb0\x7c\x91\x04\x65\x13\x46\x56\xb6\xa8\xca\ \x49\x56\xb6\xa8\xf2\x95\x95\xfd\xd8\x48\x49\x42\x12\x94\x4d\x90\ \xac\x28\x2a\x03\x84\xb5\xff\x86\x4f\xa8\x49\xb3\x26\x79\x12\x0a\ \x82\x57\x51\x21\xbc\x6f\x86\x83\x8f\x3d\xf6\x58\xa2\xc0\x09\x74\ \x10\x5d\xa4\xed\x24\x04\xff\x11\x1c\x03\x9e\x94\x3e\x24\x4e\xb6\ \xa3\xcb\xc9\x43\xa7\xfe\x1e\x55\x36\x78\xfe\xd3\xf4\x49\xd3\xd5\ \xc5\x6b\x2f\xc9\x9c\x0c\xed\x7a\x59\xe5\x87\x24\x28\x9b\x7c\x45\ \x15\x55\x56\x41\xa2\x32\xb2\x7a\xdd\xc2\x2f\x2b\x3f\xaf\x58\xf8\ \x65\xf5\x92\x0f\x5b\x4c\x7e\x24\x41\xd9\x48\x82\xb2\xb1\x45\xf5\ \x38\x08\x90\x15\x87\x83\xbf\x59\x72\xa5\x9a\x3b\x73\x6e\x83\x90\ \xf2\x81\x57\x67\x80\x0f\xc4\x9c\x8d\x19\x3a\xe8\x18\xa0\xed\x24\ \x04\xff\x11\xec\x07\xc6\x03\xe9\x43\x62\x85\xbf\x26\x4b\x11\xd9\ \x52\x0a\x62\xea\x94\xa9\xaa\xff\x9c\x01\x99\x06\xe7\x7a\x59\xe5\ \x85\x24\x28\x9b\xb8\x64\x65\x8b\x8a\xf0\x97\x96\x6c\xfc\xb2\xb2\ \x45\x95\x4b\x56\xb6\xa8\x4a\x29\x2b\x5b\x54\xb9\x64\x45\xf8\xef\ \x0f\x37\x55\x43\xe7\x0d\x55\xb3\x67\xce\x16\xc5\x94\x0d\xfe\x60\ \xaa\x94\xab\x09\x40\x07\xd1\x45\xda\x4e\x42\xf0\x1f\x35\xad\x41\ \x3d\x90\x3e\x28\x36\x78\x15\x52\x8e\x9b\x25\x39\x05\xf1\xa5\x47\ \xbf\xec\x7a\x58\xe5\x84\x24\x28\x83\x2d\xaa\xa8\xb2\xfa\x97\x8f\ \x28\xb2\x92\x04\x65\x13\x46\x56\x92\xa0\x6c\x24\x41\xd9\x48\x92\ \x32\xf8\x65\x65\x8b\x4a\x92\x95\xe6\x9b\x2b\xbf\x2d\x0a\x29\x08\ \x1e\x08\x2b\xc5\x70\x10\xd0\x3d\x74\x90\xe7\xa3\xc0\xd0\x2f\x3a\ \x15\xbc\x0e\xa4\x0f\x8b\x0d\x0e\x0b\xf9\x13\x42\xf9\xf4\xae\x0c\ \xd3\xa7\x4c\x57\x37\x2f\xbd\xc5\x4d\xbe\x97\x03\x92\xa0\x6c\x72\ \xc9\x8a\x75\x68\x93\x4d\x54\x51\x65\x65\x8b\x2a\xaa\xac\x6c\x51\ \x45\x95\x95\x24\x28\x9b\x42\x64\x85\xa1\x60\xcd\xb6\x94\xba\x6b\ \x61\xbb\xd0\xc3\x41\xfe\x3a\x4e\x3e\xc3\xc1\x1d\x3b\x76\x14\x15\ \x7c\x26\xdd\x43\x07\x69\x2b\x05\x04\x5f\x04\x0e\x01\x2b\xc0\x5e\ \x1b\x17\x27\xdc\xd8\x35\x6b\xd6\x78\x67\x86\x53\x46\xfe\xb3\xc5\ \x25\x78\x79\x8c\xda\xe9\xb5\x99\xc6\xe2\x86\x85\xf9\x11\xc7\x05\ \x10\x25\x41\xd9\xf0\xc7\x43\x6c\x82\x64\x65\x8b\x2a\xac\xac\x82\ \x44\x15\x55\x56\xb6\xa8\xc2\xca\x4a\x12\x94\x8d\x24\x28\x9b\x20\ \x59\x49\xa2\x32\x3c\x9a\x52\x07\x6e\x38\x48\x4d\x99\x33\x45\xcd\ \x9a\x35\x2b\x6f\xf8\xbb\xa1\xbc\x5e\x9d\x5f\x26\x09\xb1\x02\x1c\ \x02\xb4\x95\x02\x82\x2f\x82\x55\x9b\xe0\xb6\x3b\x90\x3e\x2c\x56\ \x78\xc9\x19\x16\x16\x65\x64\xce\x63\xca\x05\xcf\x3a\xbf\x72\xdd\ \xef\x32\x89\xd1\x98\x7b\x59\x7e\x11\xf1\x71\x29\x08\x92\x55\x90\ \xa8\xca\x49\x56\xb6\xa8\xca\x49\x56\xb9\xe6\xab\x6c\x74\xef\xea\ \x0f\x8b\xff\xa8\xe6\xcd\x9a\x27\x8a\xc9\x86\x79\x47\x78\x9f\xa7\ \xcb\x71\x7d\xa4\x94\xa3\x09\x40\xf7\xd0\x41\xda\x4a\x39\x82\x2f\ \x04\x3f\x07\xef\x02\xe9\x03\x63\x85\xe7\x2d\x49\x62\xca\x06\xcf\ \x89\x1a\x31\x6b\x84\xaa\xd9\x89\x0a\xaa\xc6\x5e\x16\x25\x60\xdf\ \x2f\x67\xe2\x92\x55\x90\xa8\xaa\x55\x56\xb6\xa8\xc2\xca\x8a\xa0\ \x77\x55\xb3\xa9\xa9\x1a\x37\x77\xdc\x1e\x32\x32\xf7\x83\xe0\xda\ \x2b\x29\x37\x13\x80\xce\xa1\x7b\xb4\x8d\xf2\x08\xbe\x18\x34\x07\ \xdb\x80\xf4\xa1\xb1\xc2\x35\x59\x5c\x03\x22\xc9\x29\x1b\xec\x65\ \x9d\xb7\xe9\x67\x99\xa4\xb1\x93\xbd\x5c\xf1\x6f\xa7\x9d\xf4\x95\ \x48\x90\xa8\xc2\xca\xca\x16\x55\x54\x59\x85\x11\x15\x09\x92\x55\ \x18\x51\x11\x49\x50\x36\x92\xa4\x0c\x7e\x59\xd9\xa2\xca\x25\xab\ \xed\x1a\x08\xeb\xd2\xe5\x97\xa9\xf9\xb3\xe7\x8b\x52\xca\x06\x97\ \x17\x71\xb2\x5d\xca\xcd\x04\xa0\x73\xe8\x1e\x6d\xa3\x3c\x82\x2f\ \x06\x4d\x41\x7f\x20\x7d\x68\xac\x70\xa2\x8f\x93\xef\xb9\x86\x85\ \xe6\xa4\xcd\xa9\xd3\x33\xc2\x1a\x38\x6f\x50\xa6\xc1\x96\xb2\x97\ \xc5\xe4\xf5\x3f\xae\x76\xa2\xc8\xca\x16\x55\x39\xc9\xca\x16\x55\ \xb1\x65\x25\x09\xca\xa6\x48\xb2\xe2\x52\x86\xe1\x0b\x86\xab\x79\ \x73\xe6\x79\x0b\x40\x6d\x28\x26\xff\x73\xe6\x79\x8e\x70\x38\xa7\ \xfc\xf8\xe3\x8f\x27\x0e\xf2\x9f\xce\xa1\x7b\xb4\x8d\xf2\x0c\xbe\ \x01\x5c\x04\x76\x4b\x1f\x1c\x37\x3c\x3b\xdc\x93\x91\x25\xa6\x5c\ \xcc\x98\x36\x43\x9d\xb5\xe5\xec\xe0\x79\x2c\x26\x98\xf4\x3c\xf1\ \x27\xa2\x23\x37\x41\xb2\x0a\x12\x55\x54\x59\x05\x89\xaa\x94\xb2\ \x92\x04\x65\x23\x09\xca\x26\x48\x56\x92\xa0\x6c\x8c\xac\x34\x2d\ \x56\x9e\x2f\xca\x2a\x08\x2e\x65\xe0\x85\xfa\xa4\x9c\x4c\x00\xba\ \xe6\x22\xa0\x2d\x14\x22\xf8\x26\x70\x24\xd8\x02\xa4\x0f\x8f\x15\ \x2e\x71\x60\xd7\x54\x12\x93\xc8\x8c\x69\xde\x25\x33\xfa\xcf\x1b\ \x90\x69\xb0\x94\x96\x94\x60\x8e\xe2\x91\x94\xac\x6c\x51\x15\x5b\ \x56\xb6\xa8\x4a\x29\x2b\xbf\xa8\xc2\xce\x57\xd9\xb2\xca\xd1\xbb\ \xb2\xa1\xa0\xec\xc7\x66\x65\xbb\x94\x93\x09\x40\xd7\xd0\x39\xda\ \x42\x21\x82\x6f\x02\xfb\x80\x3e\x40\xfa\xf0\xd8\xe1\xc4\x1f\x17\ \x92\x1a\x29\xd9\x27\x65\x66\x63\xe6\xf4\x99\xea\x9c\xad\x3f\x96\ \x13\xcc\x51\x3c\xb2\x89\x2a\xaa\xac\x6c\x51\x45\x95\x95\x24\x28\ \x9b\x72\x95\x15\xc9\x57\x56\xb6\xa8\x2c\x5a\xae\xb8\x58\xcd\x9f\ \x3b\xbf\x41\x48\xbc\xcd\x07\x5e\xb2\x5c\xca\xc5\x84\xa0\x6b\xe8\ \x1c\x6d\xa1\x90\xc1\x37\x82\x0b\x41\x49\x86\x85\x5c\xe2\xc0\x42\ \x94\xc4\x94\x0d\x0a\x6b\xc8\xdc\xfb\x33\x0d\xd6\xf5\xb2\x8a\x8f\ \x2d\xaa\xa8\xb2\xb2\x45\x15\x55\x56\xb6\xa8\xa2\xca\x2a\x8c\xa8\ \x88\x24\x28\x1b\x49\x52\x86\x20\x51\x15\x22\x2b\xf6\xae\x36\x36\ \x55\xa3\x17\x8c\x6e\x10\x56\xbe\x98\xcb\xc8\x3c\xf1\xc4\x13\x89\ \x83\x7c\xa7\x63\xe8\x1a\x6d\x9f\x02\x82\x6f\x06\x87\x83\x8d\x60\ \x2f\xa1\x84\x41\xda\xc8\x5c\xf0\x7d\x3c\xbf\xd0\xc8\xc8\x3e\xa3\ \x3c\x08\x5e\x3e\xe3\x67\x0f\x5f\x90\x49\x28\x37\x37\x55\x3c\xa2\ \xc8\xca\x16\x55\x54\x59\xd9\xa2\x8a\x2a\x2b\x5b\x54\x61\x65\x25\ \xc9\xc9\x46\x12\x54\x36\xc2\xf4\xaa\x88\x24\xab\x6d\x19\x78\x64\ \x70\xe1\xdc\x85\x0d\x22\xe2\xd4\x0a\xb1\xef\x4b\x70\xde\x58\xca\ \xc3\x84\xd8\x08\x0e\x07\xda\x3e\x05\x04\xdf\xfc\xd8\x63\x8f\x35\ \xc1\x6d\x07\x20\x7d\x49\xec\xb0\x97\xc5\x2e\xad\x24\xa6\x6c\xcc\ \x9a\x31\x4b\x8d\x9c\x33\x32\xd3\x20\x5d\x2f\xab\x38\x04\xc9\x2a\ \x48\x54\x51\x65\x65\x8b\xca\xc9\x2a\x83\x24\x2b\xa2\x7b\x57\xe3\ \x16\x8e\x53\x0b\xe6\x2d\x10\xa5\x94\x8d\x45\x8b\x16\x79\x0b\x45\ \xa5\x1c\x4c\x08\x3a\x86\xae\xd1\xf6\x29\x30\xf8\x01\xe0\x34\xf0\ \x2a\x90\xbe\x28\x56\x4c\x2f\x4b\x12\x53\x36\x78\x1e\xd4\x9c\x19\ \x73\xd4\x1f\xd7\xfd\x39\x93\x40\xae\x97\x15\x8d\xa4\x64\x65\x8b\ \xaa\xd8\xb2\xb2\x45\x55\x8d\xb2\xe2\xaa\xf6\x47\x52\xea\xfa\xe5\ \xad\xd5\xa2\x79\x8b\x44\x29\x05\xc1\xab\x32\x48\xf9\x97\x10\x74\ \x0b\x1d\xa3\xad\x13\x21\xf8\x21\xe0\x00\x30\x19\x48\x5f\x16\x3b\ \x66\x2e\xcb\x2f\xa5\x20\x78\x19\x0d\x9e\x3f\x75\xf0\x73\x87\x38\ \x61\x45\x21\x9b\xa8\xa2\xca\xca\x16\x55\x54\x59\x49\x82\xb2\x09\ \x92\x55\x18\x51\x11\x49\x50\x36\x92\x94\xb2\x11\x46\x56\x92\xa4\ \x6c\x30\x14\x3c\x7c\xdd\x91\x6a\xfa\xfc\xe9\xa1\x7b\x57\xa5\x9c\ \xbb\xd2\xd0\x2d\x74\x8c\xb6\x4e\x84\xe0\x87\x68\xae\x04\xef\x03\ \xe9\x0b\x63\x87\xbf\xac\x23\x89\xc9\x86\xa7\x1d\xd8\x8f\xe7\xcc\ \x9a\xa3\xee\x5e\xd1\x21\x93\x2c\x6e\x68\x18\x0e\x5b\x54\x51\x65\ \x65\x8b\x2a\xaa\xac\x6c\x51\x95\x93\xac\x24\x21\x05\x61\x8b\x2a\ \x97\xac\xfc\xf8\x65\xc5\xa1\xe0\x96\xa6\xaa\xd3\xd2\xce\x6a\xf1\ \xfc\xc5\x6a\xfe\xfc\xf9\xa1\xe0\xdc\xd5\x93\x4f\x3e\x59\x2a\xde\ \x07\x57\x02\xcf\x33\x45\x09\x7e\x18\x38\x0a\x6c\x05\xd2\x97\xc6\ \x0e\xc7\xd7\x2c\x5c\x73\xa2\x66\xbe\xcc\x9c\x3d\x53\x7d\xe7\xd1\ \x53\x9d\xb0\xc2\x10\x46\x56\x41\xa2\x0a\x2b\xab\x20\x51\x45\x95\ \x95\x2d\xaa\xb0\xb2\x92\x04\xe5\x47\x92\x92\x44\xd8\x21\xa0\x1f\ \xbf\xac\x08\x7a\x57\x67\xae\xfe\x9e\x9a\xb7\x60\x5e\x83\x84\x78\ \xa6\x48\x3e\x98\x75\x57\x52\xce\x25\x04\x9d\x42\xb7\x68\xdb\x14\ \x21\xf8\x61\x60\x1f\xd0\x15\x48\x5f\x9a\x08\xbc\xf4\x8c\x24\x25\ \x09\x9e\x62\x30\x6b\xce\x2c\xef\x2c\xf5\xe1\x0b\x47\x64\x1a\xb0\ \x93\x56\x6e\x82\x64\x65\x8b\x2a\xaa\xac\x6c\x51\x15\x5b\x56\xb6\ \xa8\x92\x90\x95\x8d\x24\x29\x43\x1c\xb2\x62\xef\x6a\x73\x53\x35\ \x7a\xd1\x68\xb5\x68\xc1\x22\x51\x4a\x41\xf0\x12\x32\x52\xae\x25\ \x08\x9d\x42\xb7\x68\xdb\x14\x29\xf8\x81\xe0\x0c\xf0\x1a\x90\xbe\ \x38\x76\xf8\x97\x80\x97\xbd\x30\x42\xca\x17\x9e\xfc\x79\xed\xfa\ \xeb\x33\x57\xb0\x74\xf3\x59\xd9\x89\x4b\x56\xb6\xa8\x9c\xac\xc2\ \xcb\x4a\x12\x15\xe1\x32\x06\x0c\x05\xdb\x2c\xbd\x49\x2d\x59\xb0\ \x44\x14\x92\x81\x79\x63\x30\xcf\xf1\x97\xaa\x78\xce\xa0\x94\x6b\ \x09\x41\x97\xd0\x29\xda\x32\x45\x0c\x7e\x28\xd8\x1f\xd4\x02\xe9\ \xcb\x13\x81\x7f\x11\xb8\xcc\x41\x12\x53\x36\xe6\xce\x9e\xab\xa6\ \xcf\x9d\xae\xbe\xf8\xd4\x71\x72\xa2\x36\x76\x82\x44\x15\x56\x56\ \xb6\xa8\xa2\xca\x2a\x8c\xa8\x48\x90\xac\xc2\x88\x8a\x48\x42\xca\ \x86\x24\x28\x1b\x5b\x54\xc5\x92\x95\xe6\xc4\xb5\xdf\x52\x73\x17\ \xce\x6d\x10\x91\x2d\xa6\x20\xb8\x8c\x81\x3f\x60\xfc\xd4\x53\x4f\ \xc5\x0e\xf3\x56\x7a\x1e\xd4\x82\xfd\x81\xb6\x4c\x11\x03\x5f\x6a\ \xb8\x00\xbc\x63\x7d\x69\xa2\x70\x99\x03\x2f\xdd\x6a\x64\x64\xce\ \x81\xb2\x91\x9e\xe7\x39\x55\x83\x96\xdc\x97\xf9\xc1\x0a\x37\x34\ \xfc\x88\x28\xb2\xb2\x45\x55\x4e\xb2\xb2\x45\x55\x4e\xb2\x92\x84\ \x14\x84\x20\xa8\x06\x1e\x01\x1b\x9b\xaa\x61\x4b\x87\xab\xa5\x0b\ \x97\x8a\x52\x0a\x82\x07\xb1\x78\x30\x4b\xca\xb1\x84\xa0\x43\x2e\ \x00\x35\x4f\x3f\xfd\xb4\xb6\x4c\x91\x83\x1f\x0e\x0e\x06\x73\x80\ \xb4\x11\x89\xc0\x6b\xf5\xf0\x70\xac\x5f\x4a\xb9\x58\x30\x67\x81\ \xba\x6e\x43\xeb\x4c\xb2\xb9\xa1\x61\xb0\xac\x82\x44\x15\x55\x56\ \x41\xa2\x2a\xa5\xac\x24\x21\x05\x21\x09\xca\xe0\x1f\x02\x1a\x61\ \xe5\x2b\x2e\x49\x52\x06\xca\x6a\x6b\x4a\xdd\xbc\xfc\x96\x3d\x64\ \xc5\x5e\x13\xb1\xef\x4b\x70\xa2\x9d\x07\xb1\xa4\xdc\x4a\x10\x3a\ \x84\x2e\xd1\x76\x89\x21\xf8\xe1\x9a\x56\xe0\x7d\x20\x6d\x48\xec\ \xb0\x8b\xc9\xbf\x10\x92\x94\x72\x31\x7b\xee\x6c\xf5\xbd\x1d\x3f\ \xc8\x24\x68\x63\x96\x56\x52\xb2\xb2\x45\x55\x6c\x59\xd9\xa2\x2a\ \x77\x59\xd9\x48\x82\xb2\x91\x24\x65\xe0\xbc\x15\x84\x75\xee\xea\ \x16\x6a\xe1\xe2\x60\x31\x65\xc3\x2c\x63\x90\x72\x2b\x21\xe8\x0e\ \x3a\xc4\xf3\x49\xac\xa1\xbf\xe4\x70\xb0\x06\x48\x1b\x93\x08\x5c\ \xe8\xc6\xbf\x24\x7e\x21\x71\x81\xa9\xff\xb1\x0d\x4f\x08\x7d\x70\ \xe1\x83\xea\x13\x2f\x7d\xb2\xf1\x0a\x2b\x9b\xa8\xa2\xca\xca\x16\ \x55\x54\x59\x49\x82\xb2\xa9\x46\x59\x49\x82\xb2\x41\xaf\xca\x5b\ \x20\xba\xfe\x48\x35\x75\xd1\x54\xb5\x64\xd1\x12\x51\x48\x41\x98\ \x89\x76\x29\xa7\x12\x84\xee\xa0\x43\xb4\x55\x62\x0c\x7e\x89\xa6\ \x0d\xa8\x03\xd2\x06\x25\x02\x2f\x34\xc6\xa1\xa1\x5f\x4a\xb9\xe0\ \x89\xa1\xfd\x96\xdf\x9b\xf9\x15\xe0\xc6\x34\x9f\x65\x8b\x2a\xaa\ \xac\x6c\x51\x45\x95\x95\x2d\xaa\xa8\xb2\x0a\x23\x2a\x09\x49\x50\ \x06\x49\x50\x36\x94\x95\x4d\xbe\xa2\x22\x92\xa0\x6c\x28\x2b\x0e\ \x05\x37\x37\x55\x83\x97\x0d\x51\xcb\x17\x2f\xf7\x56\xa8\x87\x81\ \x43\x41\x4e\xa7\x3c\xfd\xf4\xd3\xa5\xa4\x0e\xb4\x79\xe6\x99\x67\ \x3c\x8f\x24\x12\xf8\x42\x72\x0c\xd8\x02\xa4\x8d\x4a\x04\x76\x6b\ \x79\x9e\xa1\x7d\x9a\x41\xbe\xf0\x7c\xab\xeb\x37\xde\x90\x49\xc4\ \xc6\xd0\xd3\x8a\x22\x2b\x5b\x54\x51\x65\x65\x8b\x2a\xaa\xac\x6c\ \x51\x45\x95\x95\x24\x28\x1b\x49\x50\x36\x49\xc8\x0a\xb7\x7f\x5d\ \x71\x73\x41\xb2\x22\x3c\x5f\x90\x39\x23\xe5\x52\x82\xd0\x19\x74\ \x87\xb6\x49\x02\xc1\x2f\xe3\x32\x7a\xdc\xb6\x05\x34\xa6\xb4\x61\ \x89\xc0\xa1\x21\xbb\xba\x92\x94\x6c\xcc\x0a\x60\x62\x56\x04\xf3\ \xf6\xec\x1d\x3f\xcc\x24\x70\x35\x4b\x2b\x48\x56\x41\xa2\x8a\x2a\ \x2b\x5b\x54\x51\x65\x65\x8b\xaa\x9c\x64\x15\x24\xaa\xa8\xb2\xa2\ \xa8\xf4\x30\x90\xc2\xfa\xe9\x9a\xf3\xd4\xa2\x25\x8b\x44\x19\xe5\ \xc2\x0c\x05\xa5\x1c\x4a\x10\xba\x82\xce\x88\xef\xc8\x60\xb6\xd0\ \x5f\x7a\x34\xd8\x04\xa4\x8d\x4b\x0c\xae\xcd\xf2\x04\xe4\x13\x53\ \x2e\x16\xce\x5f\xa8\x26\x2d\x9e\xa4\x3e\xf1\x42\x15\xcf\x67\xc5\ \x25\xab\x20\x51\x39\x59\xe5\x96\x95\x24\x28\x1b\x23\x2b\xb2\xa5\ \xa9\x37\x6f\x35\x6d\xf1\x34\xb5\x74\xf1\x52\x51\x48\x36\x1c\xfa\ \xf9\xe1\x9a\x2b\x29\x77\x12\x86\xae\xa0\x33\xb4\x45\x12\x0c\x7e\ \xa9\xa6\x35\xf8\x10\x48\x1b\x98\x08\x5c\x4f\xc2\xa1\xa1\x24\xa5\ \x5c\xf0\x64\xd1\xfe\x2b\x07\x64\x92\xaa\xda\xe6\xb3\xb2\x89\x2a\ \xac\xac\x6c\x51\x45\x95\x55\x18\x51\x91\x20\x59\xf9\x45\x65\x23\ \xc9\xc9\x8f\x24\x28\x1b\x49\x52\x86\xa4\x64\x65\xcd\x5b\xad\x58\ \xb2\x42\x94\x11\xe1\xda\x44\x3f\xe6\xdf\x78\x54\x90\x73\xbe\xcf\ \x3c\xf3\x8c\x98\x3f\xd9\xe0\xeb\x8b\xc8\x87\xa0\xf5\x73\xcf\x3d\ \xe7\x79\xa3\x24\xc1\x2f\x06\xcd\xc1\x3a\x6e\x14\x77\x32\x0a\xd6\ \xce\x85\x86\xdd\x5d\x56\x8e\x11\x91\x39\xfd\x20\x1f\x78\x0e\xd6\ \x6d\x1b\x6e\x57\x35\xef\xa0\x71\x54\x83\xb4\x6c\x51\x35\x46\x59\ \x11\x49\x50\x06\x49\x4e\x36\x92\xa0\x6c\x82\x64\x25\x09\xca\x46\ \x12\x94\x8d\x5f\x56\x0f\x37\x55\xed\x56\xb6\x57\xcb\x97\x2e\x17\ \xa5\x94\x0b\xfe\x21\xe7\x62\x6b\x29\x67\x12\x86\x8e\x68\x0e\xb4\ \x3d\x4a\x10\xfc\x72\xcd\x35\xe0\xbf\x40\xda\xd0\xc4\xe0\x11\x10\ \x2e\x75\x90\xa4\x94\x0b\x4a\xeb\xcf\x9b\xff\x92\x49\xd8\x4a\x96\ \x56\x18\x59\x05\x89\x2a\xac\xac\x82\x44\x15\x55\x56\xb6\xa8\x6c\ \x61\x99\x5b\x3f\x92\xa4\x0c\x92\xa0\x6c\x24\x41\xd9\x64\x13\x55\ \x4c\xb2\x6a\xb3\xf2\xa6\x82\x65\xc5\xdf\x17\xe4\xb5\xe4\xa4\x5c\ \x49\x18\xba\x81\x8e\xf0\x7c\x51\xd2\xd0\x1b\x71\x04\x58\x09\xa4\ \x8d\x4d\x0c\xf6\xd2\x78\x24\x44\x12\x52\x2e\x28\x2c\xca\xee\xd7\ \xdb\x7f\xab\x6a\x3e\x40\x63\xa9\xc4\x39\xad\x20\x59\xd9\xa2\x8a\ \x2a\x2b\x5b\x54\xc5\x96\x95\x2d\xaa\x6c\xb2\xb2\x49\x4a\x56\xb6\ \xa8\x8a\x2d\x2b\x5b\x54\x96\xac\xae\x5a\xfd\x07\x51\x44\x41\x50\ \x52\x06\xfe\x82\x7a\xd4\x91\x4b\x91\xa0\x1b\xe8\x08\x6d\x8d\x12\ \x06\x37\x42\x73\x05\xd8\x0d\xa4\x0d\x4e\x0c\x76\x7f\x57\xac\x58\ \x21\x4a\x89\x50\x4a\x41\xcc\x5b\x34\x4f\xfd\x6c\xc7\x05\x99\x24\ \xaf\x24\x69\xc5\x25\x2b\x5b\x54\x51\x65\x25\x09\xca\x26\x8c\xac\ \xc2\x88\x8a\x48\x82\xb2\x91\x24\x65\x88\x22\x2b\x49\x50\x36\x7e\ \x59\x6d\x69\xea\xf1\x8b\xb5\xbf\x54\x4b\x96\x2d\xd9\x43\x40\x12\ \x3c\xfa\xe7\x87\xcf\x9b\x25\x0c\xcf\x3e\xfb\xac\x97\x17\xbc\x2d\ \x05\xf8\x6e\x3a\xe1\x0a\xdc\xf7\x3c\x51\x16\xc1\x0d\x01\xcd\xc0\ \x44\xff\x06\x97\x02\x5e\x86\x86\x7f\x6d\x6c\x11\xf9\x57\xfc\x4a\ \x98\x53\x1d\xe6\x2e\x9e\xab\x4e\x7f\xfa\xcc\x4c\xe2\x97\xbb\xb4\ \x82\x44\x15\x56\x56\xb6\xa8\xa2\xca\xca\x16\x55\xa1\xb2\xca\x26\ \xad\x62\xca\x4a\x12\x94\x4d\x09\x64\xf5\x83\xb5\xe7\xa8\x45\x2b\ \x32\xab\xd2\x0b\x81\xbf\xe7\xb9\x63\xc7\x0e\x31\x37\x4a\x00\x9d\ \xd0\x0c\x68\x5b\x94\x41\x3c\xff\xfc\xf3\x35\xdc\x20\xf0\x7d\xb0\ \x13\x48\x1b\x9e\x28\x5b\xb7\x6e\xf5\x0e\xf1\xfa\xa5\x94\x0f\x3c\ \xe5\x61\xfa\x92\xe9\xea\xb8\x67\x8f\xcf\x48\xa1\x5c\xa5\x15\x45\ \x56\xb6\xa8\xca\x4d\x56\x36\x51\x64\x25\x09\xca\x46\x12\x94\x4d\ \x90\xac\x24\x41\xd9\x48\x82\xb2\x91\x64\x85\xdb\x6f\x6d\x38\x59\ \xcd\x5f\x31\x5f\xad\x5c\xbe\x52\x94\x51\x2e\x38\xc9\xce\xb5\x89\ \x52\x4e\x94\x00\xba\x80\x4e\xf0\xfc\x50\x56\xa1\x37\x6a\x5f\xd0\ \x1b\x48\x1b\x9f\x28\xe8\xed\x79\xa7\xee\x48\x42\xca\x07\x4a\x6b\ \xd2\xf2\x49\xea\xd3\x2f\x1d\x91\x99\x84\x2f\x37\x69\x05\xc9\x2a\ \x48\x54\x51\x65\x15\x24\xaa\x6a\x95\x95\x2d\xaa\xa8\xb2\xf2\x8b\ \x8a\x68\x59\x1d\xbd\xfe\x0b\x6a\xc6\x8a\x19\x05\xcb\x8a\x53\x21\ \x3c\xf0\xc4\xb6\x2f\xe5\x44\x09\xa0\x0b\xe8\x04\x6d\x89\x32\x0b\ \x6e\x18\x38\x01\x3c\x06\xa4\x1d\x48\x14\xae\x3d\xe1\x65\x95\x25\ \x21\x19\xfc\xbd\x30\x7b\x01\x1e\x17\xe9\x8d\x5f\x39\x5e\xed\xff\ \x4a\xb3\xf2\x92\x56\x52\xb2\xb2\x45\x55\x6c\x59\x49\x82\xb2\x29\ \x95\xac\x6c\x51\x25\x28\xab\xc3\x36\x1c\xae\x26\xad\x9a\xa4\x56\ \x2f\x5f\xbd\x97\x84\x88\x7d\x3f\x1b\xfc\x03\xcd\x49\x76\x29\x17\ \x4a\x00\x1d\x40\x17\x68\x3b\x94\x61\x70\xe3\x40\x13\xd0\x06\xfc\ \x17\x48\x3b\x92\x28\xe6\x17\x77\xfc\x32\xca\x17\x9e\xb7\x45\x69\ \x79\x3d\x2d\xca\xa2\xd4\xd2\xca\x26\xaa\xa8\xb2\xb2\x45\x15\x55\ \x56\x92\xa0\xfc\x50\x4a\xe6\xd6\x4f\xa1\xa2\x22\x92\xa0\x6c\x24\ \x49\x19\xa2\xc8\x4a\x12\x94\x8d\x5f\x54\x44\xcb\xea\x0b\x1b\x8e\ \x55\x93\x56\x4c\x52\xab\x56\xac\x12\x45\x94\x0f\xe6\x92\x31\xcf\ \x3d\xf7\x5c\x39\xf0\x5f\xc0\x8b\x23\xd0\x05\xda\x0e\x65\x1a\xd8\ \x50\x72\x18\x98\x0b\xa4\x9d\x49\x1c\x73\xe4\x90\x02\x32\xab\x7f\ \xc3\xb0\x6c\xc9\x32\x35\x75\xc5\x54\xf5\xe5\xe7\x4e\xc8\x88\xa2\ \x14\xd2\xb2\x45\x15\x55\x56\xb6\xa8\xa2\xca\xca\x16\x55\xbe\xb2\ \xb2\xc9\x26\xaa\x62\xcb\x4a\x12\x94\x4d\x90\xac\x24\x41\xd9\x48\ \x82\xb2\xf1\x8b\x8a\x50\x56\xe0\x5b\xeb\x4f\x56\x33\x57\xce\x54\ \x6b\x56\xac\xd9\x4b\x42\xf9\x62\x7e\x04\x55\x6a\xfb\x25\x82\xb9\ \x4f\x07\x68\x2b\x94\x71\x70\x23\x35\xe7\x80\x57\x80\xb4\x43\x89\ \xc3\x23\x87\xec\x56\x4b\x42\xca\x07\x4a\x6b\xe6\xb2\x99\xea\xbb\ \xcf\x9c\x95\x11\x46\x92\x8b\x4b\xa3\xc8\xca\x16\x55\x58\x59\x05\ \x89\x2a\xaa\xac\x6c\x51\x45\x95\x95\x24\x28\x1b\x49\x50\x36\xd9\ \x44\x15\x97\xac\xf4\x3a\xab\x1f\xae\xfb\x91\x5a\xb0\x72\x41\xa4\ \x9e\x95\x39\x22\x28\xb5\xf9\x12\xc1\x9c\x67\xee\x7b\x1e\xa8\x88\ \xd0\x1b\x9b\x02\x1d\x40\x3d\x90\x76\x2c\x71\x78\x59\x58\xae\x51\ \x91\x84\xe4\xc7\x2c\xc4\xb3\xef\x73\xc5\xf1\xfc\xe5\xf3\xd5\x05\ \x4f\xb4\xcc\x2c\x2e\x4d\x42\x5a\x41\xb2\x0a\x12\x95\x93\x55\x06\ \x49\x50\x06\x5b\x54\xc5\x96\x95\x24\x2a\xa2\x65\x75\xe9\xba\xcb\ \xd4\xe2\x95\x8b\x23\xc9\x8a\x53\x1d\xfc\x43\x2c\xb5\xf5\x12\xc1\ \x5c\x67\xce\x33\xf7\xb5\x0d\x2a\x24\xb8\xc1\xe0\x28\xb0\x02\x48\ \x3b\x97\x38\x9c\xd3\xe2\x51\x14\x23\x2d\x23\xa2\x30\x50\x5a\x8b\ \x96\x2d\x52\xbf\xdd\xde\x2a\xf3\xb3\x61\x71\x4a\x2b\x2e\x59\x05\ \x89\xaa\x9c\x64\x25\x09\xca\x46\x12\x94\x8d\x24\x29\x43\x14\x59\ \x49\x82\xb2\x91\x44\x45\xb4\xac\xae\x5e\xfb\x47\xb5\x7c\x65\x66\ \x09\x82\x24\xa2\x20\xcc\x7b\x28\x2b\xfe\x01\x66\xbb\x7e\xfe\xf9\ \xe7\xf7\x6a\xeb\x49\xa3\xb7\x81\xb9\xce\x9c\xd7\x16\xa8\xa0\xe0\ \x46\x73\x7d\x16\x6e\x5b\x82\xb7\xca\xa5\x50\x6d\x69\x51\x40\xbc\ \xf5\xe3\x97\x94\x1f\xf3\xba\xeb\x1e\x69\x9d\x11\x40\x1c\xd2\xca\ \x26\xaa\xb0\xb2\xb2\x45\x15\x55\x56\x7e\x51\xf9\x91\x04\x65\x13\ \x24\x2b\x5b\x54\x51\x65\x25\x09\xca\xa6\x14\xb2\x82\xa8\x6a\x36\ \x35\x55\x7f\x5d\x73\xb3\x27\x9d\xd5\x2b\x57\x7b\xb7\x85\xe0\x97\ \x55\x99\xc0\x1c\x6f\x09\xbc\xbc\xaf\xc8\xd0\x1b\xff\x71\xd0\x07\ \xa4\x81\xb4\xa3\x89\xc3\x8a\xe6\xf5\x81\x38\xa7\x65\x8b\x2a\x2c\ \x2b\x96\xad\x50\x77\x3e\x7c\x57\xe6\x52\xcb\x9c\x88\x2f\xc6\x64\ \xbc\x2d\xaa\x6a\x91\x55\x90\xa8\xc2\xca\x4a\x12\x94\x8d\x24\x28\ \x9b\x20\x59\x49\x82\xb2\x91\x04\x65\x23\x89\x4a\x4f\xae\x53\x56\ \x1d\xd6\xdc\x13\x49\x54\x84\xb2\xe2\x09\xcd\x65\x26\x2b\xe6\x36\ \x73\x9c\xb9\xae\xb3\xbf\x42\x83\x3b\x00\xbe\x00\x56\x01\x69\x67\ \x4b\x02\x7b\x5a\x9b\x37\x6f\x16\x45\x94\x0b\x4f\x74\x2b\x32\xb7\ \x5c\xe4\x37\x64\xfd\xfd\xea\x93\x3b\x0f\xcd\x08\x26\x4a\x6f\x2b\ \x48\x56\x61\x44\x15\x56\x56\x41\xa2\xaa\x56\x59\xd9\xa2\x8a\x2a\ \x2b\x49\x54\x84\x43\x40\xc8\xea\x88\xf5\xcd\xd5\xf0\xd5\x23\xd4\ \xda\x95\x6b\x45\x09\xe5\x0b\x65\xc5\x33\x38\xca\x4c\x56\x84\xb9\ \xcd\x1c\xd7\x59\x5f\xc1\xc1\x9d\xd0\x9c\x07\x76\x02\x69\x87\x4b\ \x82\x91\x96\xd4\xd3\xe2\x73\xf9\xc2\xc5\x7e\xb3\x56\xcd\x52\x3f\ \x7a\xe6\xa7\x85\xcf\x6b\x25\x25\x2b\x5b\x54\x8d\x45\x56\xb6\xa8\ \x92\x94\x15\x86\x81\xe7\xaf\xbf\x50\xcd\x59\x39\x47\xad\x59\xb5\ \x46\x94\x50\xbe\x50\x56\x9c\xca\x28\x43\x59\x31\xa7\x99\xdb\x5e\ \x9e\x57\x45\xe8\x9d\x69\x0a\xee\x00\x1f\x02\x69\xc7\x43\xf3\xc2\ \x0b\x2f\x14\x8c\x79\xbf\x19\x1e\x72\x22\x93\xf2\xb1\x27\x38\xb3\ \xe1\x17\x96\x79\x1f\x7b\x5d\x7f\xdd\x76\x4b\x46\x04\x61\x86\x88\ \x71\xc9\xca\x16\x55\x21\xb2\xb2\x09\x23\x2a\x12\x24\xab\x30\xa2\ \x22\x92\xa0\x6c\x24\x49\x19\xa2\xc8\x4a\x12\x94\x8d\x24\x2a\x33\ \x04\x84\xac\x6e\x5f\x7b\x87\x5a\xb9\x7a\xa5\x27\x2b\x0a\xa7\x50\ \xb8\x74\xc1\x0c\x03\xfd\xed\xb8\xc4\x7c\x08\x98\xd3\x4d\x71\xab\ \xb3\xbd\x4a\x82\x3b\x04\x0e\x05\x53\x81\xb4\xf3\x25\x83\x0d\x81\ \x5d\x6d\xfe\x25\xf3\xcb\x29\x0c\x7c\x3f\xe7\x28\x86\x6e\x1c\xa6\ \x3e\xf9\x72\x1e\x43\xc4\x20\x51\x85\x95\x95\x2d\xaa\x42\x64\x65\ \x28\xb6\xac\x6c\x51\x15\x5b\x56\x92\xa0\x6c\x92\x96\x95\x1e\x02\ \x7e\x76\xc3\x51\x6a\xe4\x9a\x51\x6a\xdd\xaa\x75\xa2\x80\xc2\x40\ \x59\x71\x82\x3d\xea\x1f\xe8\x98\x60\x2e\x33\xa7\x75\x96\x57\x51\ \xbc\xf8\xe2\x8b\x46\x5a\x27\x83\x27\x81\x54\x00\x25\x83\x0d\x82\ \x7f\xc5\x24\x69\xd9\xcf\xf1\x7e\x2e\x38\x57\x31\x67\xcd\x1c\xf5\ \xe3\x67\xcf\xcd\x3e\x44\x8c\x22\x2b\x5b\x54\xc5\x94\x15\x89\x22\ \x2b\x5b\x54\x51\x65\x25\x09\xca\x46\x12\x94\x4d\x90\xac\x24\x41\ \xd9\x48\x82\xb2\x91\x64\xc5\xa3\x80\x1c\x02\xae\xbb\x50\xcd\x5d\ \x35\xb7\x31\xc8\x8a\x39\xcc\x5c\xf6\xf2\xba\x2a\xc3\xec\x1c\xb8\ \x0a\xfc\x1b\x48\x05\x51\x32\xd8\x30\xd8\x40\xd8\x50\x24\x11\x85\ \x81\x3d\xad\x15\xab\x56\xa8\x5b\x1e\xb9\x35\x23\x09\x23\xa9\x5c\ \xb2\x0a\x12\x55\x54\x59\x49\x82\xb2\xa9\x06\x59\x05\x89\x2a\xaa\ \xac\x24\x51\x71\xf8\xc7\xdb\xcd\xc5\x1b\x02\x12\x9e\xb4\xcf\x45\ \xa1\x65\x2a\x2b\xe6\xee\x55\xa0\x7a\x65\x65\x42\xef\xe4\xfe\xa0\ \x17\xa8\x07\x52\x81\x94\x14\xfe\xa0\x05\x1b\x8c\x24\xa2\xb0\xb0\ \xb7\x35\x7a\xfd\x18\x75\xfc\x0b\x5f\xcb\xf4\xb6\xb8\x42\x3e\x09\ \x59\xd9\xa2\x8a\x2a\x2b\x49\x50\x36\xd5\x20\x2b\x49\x50\x36\x7e\ \x51\x11\xf6\xaa\x20\xac\x6f\x6f\x3c\x45\x8d\x5b\x33\xbe\x28\xbd\ \x2a\xc2\x73\x03\x79\xba\x0d\xdb\x22\x46\x26\xe5\x46\x3d\x60\xee\ \xee\x8f\x5b\x9d\xd5\x55\x1e\xdc\x51\x70\x38\x98\x0e\xa4\x42\x29\ \x39\x3c\x99\x94\x67\xc0\x4b\x0d\x2a\x2c\x6c\xc8\xcb\xd6\x2c\xcb\ \xf4\xb6\x28\x07\x4a\x8b\x14\x4b\x56\xb6\xa8\xa2\xca\xca\x16\x55\ \x54\x59\x85\x11\x15\x91\x04\x65\x23\x49\xca\x90\xa4\xac\x38\x57\ \x45\xd0\xab\xba\x75\xcd\xdf\xd5\xb2\x55\xcb\x8a\x26\xab\xf5\xeb\ \xd7\x7b\x57\x5d\x90\xda\x64\x99\xc0\x9c\x65\xee\xea\x6c\x6e\x04\ \xf1\xd2\x4b\x2f\x19\x69\x9d\x08\xb6\x02\xa9\x60\x4a\x0e\xaf\x2d\ \xc4\x6b\x0c\x49\x0d\xab\x10\xd8\xa8\x27\xad\x9f\xac\xce\x7c\xe6\ \xec\x8c\x58\x8c\xb8\xc2\xc8\xca\x16\x55\x54\x59\xd9\xa2\x8a\x2a\ \x2b\x5b\x54\xc5\x96\x95\x24\x28\x9b\x20\x59\x49\x82\xb2\x91\x04\ \x65\x63\x8b\xca\x3a\x02\x78\xce\x86\x1f\xab\x29\x6b\xa6\x14\x4d\ \x54\xc4\x5c\xcf\x4a\x6a\x8b\x65\x02\x73\x95\x39\xeb\xe5\x6f\xa3\ \x0a\xb3\xd3\xa0\x25\xd8\x09\xa4\x02\x2a\x39\x5c\xab\xc5\x65\x0f\ \x52\x03\x2b\x04\x6f\x3d\xce\xea\x95\xaa\xf7\x96\x3e\xea\x33\xff\ \xfc\x6c\x46\x3a\x76\x0f\x2b\x9b\xa8\xc2\xca\x4a\x12\x94\x4d\x14\ \x59\xd9\xa2\x8a\x2a\x2b\x49\x50\x36\x92\xa0\x6c\xb2\x89\xaa\x98\ \xb2\xd2\x3f\x15\x4f\x59\x7d\x7e\xd3\x17\x55\xef\x35\x7d\x8a\x36\ \x57\x65\x60\x1b\x63\x5b\x93\xda\x60\x99\xc0\x1c\x65\xae\x36\x3e\ \x59\x99\xd0\x3b\xdf\x14\xb4\x05\xef\x01\xa9\xa0\x4a\x8e\x99\x8c\ \xe7\xbc\x96\xd4\xd8\x0a\x81\x7f\x99\x17\xaf\x5e\xac\x6e\x7a\xf4\ \xaf\xaa\x66\x27\x92\x81\x42\xe2\x1c\x97\x93\xd5\x47\x48\x82\x32\ \xd8\xa2\x2a\xb6\xac\xec\x5e\x95\x16\x55\x93\x4d\x29\x75\xf3\xda\ \x5b\xbc\x3a\x5b\xbb\x7a\xad\x58\xa7\x85\xc0\x36\x65\x8e\x04\x4a\ \x6d\x2f\x4e\x30\xd2\x11\x9f\xb7\xd1\xaf\x61\x6e\xb6\x7d\xe1\x85\ \x17\x98\xab\x3a\x7b\x1b\x69\xb0\x00\x40\x33\x30\x10\xd4\xe7\x53\ \x88\x49\x63\xb6\x89\x17\x02\xb4\xe7\xb5\x78\x34\xb1\x50\x56\xad\ \xc9\xbc\x7f\xfd\xea\xf5\x6a\xda\xda\x69\xea\x8a\xc7\x7f\x93\x91\ \x05\xe5\xe4\x17\x56\xbe\xa2\xb2\x85\x65\x6e\xfd\x04\xc9\x4a\x12\ \x94\x4d\x90\xac\xc2\x88\x8a\x48\x82\xb2\x91\x24\x65\x88\x22\x2b\ \x49\x50\x36\xb6\xa8\x08\x86\x7f\xbf\x5d\xdf\x4a\xcd\x5a\x3b\xcb\ \xab\x2b\x7f\x3d\x46\x81\xf3\x55\x9c\x2b\x35\x6d\xac\x4c\x61\x4e\ \x0e\x04\xcd\x80\xce\xda\x46\x1e\x2c\x08\x70\x04\x98\x0c\xa4\x42\ \x2b\x1b\x38\xc7\xc0\x1f\xa8\x94\x1a\x60\xa1\xf0\x2f\x36\x93\x81\ \xf3\x5b\x17\x3f\x7e\x49\x46\x1e\xb6\xa4\xc2\xc8\xca\x26\x5f\x51\ \x95\x93\xac\x24\x41\xd9\xc4\x29\x2b\x33\xf4\xe3\x2d\x44\x75\xd9\ \xfa\x5f\xa9\x49\x6b\x26\x79\x75\xc3\x3a\x92\xea\xae\x50\xd8\x86\ \xf8\x63\x11\x52\x1b\x2b\x33\x98\x93\xcc\x4d\x9d\xad\x2e\x8c\xb0\ \xc8\xb1\x60\x19\x90\x0a\xae\x6c\xe0\xca\x78\x2e\x32\x65\x77\x5e\ \x6a\x8c\x85\x62\xc4\x35\x71\xe3\x24\x75\xe1\x93\x17\xa9\x9a\x57\ \x91\x38\xef\x58\xe4\x2b\x2b\x5b\x54\x51\x65\x15\x24\xaa\xb0\xb2\ \x92\x04\x65\x23\x09\xca\x26\x48\x56\x92\xa0\x6c\x24\x41\x19\x8c\ \xa8\x74\x8f\xea\x92\xf5\x97\xaa\x89\xab\x27\xc6\x22\x2a\x7b\x08\ \x28\xb5\xad\x32\x83\xb9\xc8\x9c\xf4\xf2\xd3\x85\x15\xa6\x50\xc0\ \x29\x60\x1b\x90\x0a\xb0\x6c\x30\x43\x44\x76\xeb\xa5\x86\x19\x05\ \x26\x09\x61\x8f\xeb\xb7\x3b\x5a\x65\x44\x41\xf1\x50\x5a\x92\xa0\ \x6c\x1a\x83\xac\x6c\x51\x45\x91\x95\x11\x15\x87\x80\x10\xd5\xef\ \x37\xfe\x9f\xd7\xa3\x32\xe5\x2f\xd5\x4d\x14\x36\x6c\xd8\x50\x09\ \x43\x40\x03\x73\x90\xb9\xe8\x64\x95\x2d\x4c\xe1\x80\x16\xe0\x05\ \x20\x15\x64\x59\xc1\x6e\x3d\x8f\xf0\x14\xa3\xb7\x65\x7f\x06\xef\ \xaf\x5b\xb3\x4e\x6d\x58\xb3\x41\xcd\x59\x3f\x47\xb5\xd9\xde\x56\ \x7d\xe2\xa5\x4f\x66\x24\x44\x31\x49\xbd\xac\x6a\x94\x95\x2d\xaa\ \x62\xc8\x8a\x92\x7a\x54\xdf\x87\xac\x0e\x7d\xf8\x33\xaa\xcd\xfa\ \x9b\xd4\xec\xb5\xb3\xbd\xb2\x66\x99\x17\x5a\x97\x7c\x5f\x36\x78\ \xa5\x05\x1e\x05\xfc\xe7\x3f\xff\x59\x09\xbc\x00\x5a\xec\xdc\xb9\ \xd3\xc9\x2a\x57\xb0\x80\xf0\x17\xa8\x09\x0a\xac\x15\x78\x43\x17\ \x60\x59\xc3\xbf\x98\x5c\x1d\xcf\xde\x96\xd4\x58\xa3\x62\xc4\xb5\ \x74\xdd\x52\xd5\x6d\x4b\x77\x75\xca\x53\xa7\x67\x8e\x2c\x1a\x71\ \xf1\x02\x82\x41\xb2\x0a\x23\x2a\x12\x24\xab\x30\xa2\x22\x92\xa0\ \x6c\x24\x49\x19\xa2\xc8\x4a\x12\x95\x99\x9f\xda\xd2\x54\x9d\xb1\ \xe9\x2c\xd5\x73\x5d\x2f\xb5\x64\xcd\x12\xb5\x7e\xed\xfa\x06\x51\ \x15\x1b\xf6\xaa\xb8\x6a\x9d\x6d\x44\x6a\x3b\x65\x08\x73\x8e\xb9\ \xc7\x1c\xd4\x59\xe9\x22\x30\x58\x50\x20\x05\xae\x05\xbb\x80\x54\ \xb0\x65\x07\xff\x82\xf2\x2f\x29\x4f\xad\x90\x1a\x6f\x54\x8c\xb8\ \x78\x9f\xc3\xc5\xab\xb7\xff\x51\x1d\xf8\xfc\xc1\x99\xb9\x2e\x8a\ \x89\x02\xb3\x45\x15\x55\x56\xb6\xa8\x8a\x2d\x2b\x49\x50\x36\x41\ \xb2\x92\x04\x65\x63\x24\xf5\x98\xbe\xd5\xb2\xfa\xd4\xc3\x87\xaa\ \x3f\x6d\xb8\xc6\x1b\xf6\xb1\x0c\xe3\x14\x15\xdb\x00\xaf\x00\x52\ \x41\xbd\x2a\xc2\x5c\x63\xce\x31\xf7\x74\x36\xba\xc8\x2b\x58\x60\ \xe0\x63\xa0\x2d\x78\x07\x48\x05\x5c\x76\x98\xb9\x2d\xfe\x65\x95\ \x1a\x72\xb1\x60\xa2\x6d\x5c\xbd\xd1\xeb\x75\xdd\xb7\x79\xb0\xba\ \x68\xc7\xcf\xd5\xc7\x5e\x38\x20\xd3\xf3\x7a\x03\x50\x56\xbc\x25\ \xf9\xc8\xca\x16\x55\x54\x59\x49\x82\xb2\x91\x04\x65\x53\xa8\xac\ \x28\x28\x33\xdc\xa3\xa4\x70\x7b\xc0\x96\x66\xea\xd2\x8d\x97\xa9\ \xc1\xeb\x86\x78\x65\xb5\x71\xed\xc6\xd8\x24\x65\xe0\x8a\x75\xb6\ \x81\x0a\xea\x55\x11\xe6\x18\x73\x8d\x39\xa7\xb3\xd0\x45\xa8\x60\ \xc1\x81\xfd\xc0\xed\xe0\x5d\x20\x15\x74\x59\x62\x8e\x24\x72\xdd\ \x96\xd4\xa8\x8b\x85\xe9\x75\x91\x45\xeb\x16\xa9\x01\x9b\x06\xaa\ \x96\x3b\x2e\x56\xfb\x3f\xdb\x2c\x23\x1e\xca\x28\x97\xb0\xca\x45\ \x56\x41\xa2\x92\x64\x45\x41\x19\x49\x19\xd0\x93\xfa\xe4\x96\xff\ \x51\x97\x6c\xba\x54\x0d\xdc\x30\x48\x2d\x59\x9b\x19\xf2\xd9\xf3\ \x53\x71\xc1\xba\x36\x47\x00\x5f\x7e\xf9\xe5\x8a\x01\xed\x95\xb9\ \xc5\x1c\x63\xae\xe9\xec\x73\x51\x50\xb0\x00\xc1\x81\xa0\x03\x78\ \x4f\x2a\x70\x09\xbc\x56\x7c\x3e\x49\xb8\x0d\x5c\xb7\x15\xe7\x30\ \xd1\xc6\x96\x17\x7b\x13\x63\x36\x8c\x55\xd7\x6f\xbd\x41\x7d\xe3\ \xa9\x6f\x66\x64\xc2\xde\x17\xa1\xa4\x38\x8c\x34\x54\x8a\xac\x9e\ \xd0\x3c\x0e\x28\x27\x23\xab\xad\x29\xf5\xcd\xcd\xdf\x51\xad\x37\ \xdd\xa8\xc6\xac\x1d\xeb\xed\x7b\x52\x92\x22\xac\x5b\xd6\x31\x0f\ \xc0\x94\x43\xbb\x0b\x09\x73\xaa\x03\x38\x10\xe8\xac\x73\x11\x29\ \x58\x90\xa0\x19\xe8\x06\xde\x07\x52\xc1\x97\x2d\x3c\x9a\xc8\xc3\ \xd9\x5c\x2c\x28\x35\xf8\x38\x60\xa2\x12\x0e\x1b\xf9\x78\xe6\xfa\ \x99\xaa\xff\xc6\x01\xea\xff\xb6\x5d\xad\xbe\xfe\xf8\x49\x19\x81\ \x50\x40\xb6\xac\x08\x85\x46\x51\xfd\x13\xe4\x2b\x2a\xe2\x97\x93\ \x1f\x49\x52\x86\x6c\xb2\x32\x72\x32\x50\x5a\xba\x17\x45\x41\xfd\ \xdf\xc6\xab\x55\xff\xf5\x03\xd4\xec\x75\xb3\xbd\x7d\x34\xc3\xbd\ \x24\x24\x65\x60\x9d\xf2\xea\x0a\xac\x63\xa9\xee\xcb\x1c\xe6\x12\ \x73\x8a\xb9\xa5\xb3\xcd\x45\x51\x82\x05\x0a\x0e\xd6\x05\x9c\x77\ \x4f\xab\x9c\x30\xd7\xda\x8a\x7b\x7e\x4b\x82\x49\xcc\x1e\x87\x11\ \xd8\xbc\x75\xf3\xd4\xc8\x8d\xa3\xd4\x2d\x5b\x6f\x55\x17\x6c\x6f\ \xa9\x8e\xdb\x71\x7c\x46\x1e\xcf\x83\x17\x34\x7e\x69\x11\xf3\x6f\ \xd9\xf0\x8b\xea\x59\x1f\x7e\x31\xd9\xc2\x32\x3d\x28\xa2\xe5\xd4\ \x64\xfb\xbe\xea\x2b\x0f\x7f\x55\x5d\xb4\xf9\xe7\xea\xd6\x4d\x7f\ \x57\xa3\xd6\x8d\xf6\xb6\x9d\xfb\x40\x41\x25\xd5\x8b\xf2\xc3\x79\ \x2a\xd6\x25\xeb\x54\xaa\xeb\x0a\x80\x39\xc4\x5c\x62\x4e\xe9\x2c\ \x73\x51\xd4\x60\xc1\x02\xfe\x35\x60\x17\x76\x37\x90\x2a\xa2\xec\ \xe1\x1c\x07\xaf\x26\x59\x0a\x71\x19\x1a\x04\x86\xa4\x27\xab\xd7\ \xae\x56\xf3\xd7\xcc\xf7\x56\xd9\xf7\xd9\xd4\x57\xdd\xb8\xe5\x26\ \x75\xe9\x23\x97\xa9\xd3\x1e\x3d\x43\x7d\xee\x89\x63\x54\x93\xa7\ \xf6\xcd\x08\xe7\x19\xc0\x5b\x5b\x4a\x94\x9c\x91\x93\x79\x8e\xf7\ \x8d\x8c\x78\x4b\x39\xd9\x62\x62\x8f\x89\xb7\x90\x52\xea\xd1\xfd\ \xd4\xe7\x1e\x39\x46\x9d\xb1\xf5\x7b\xea\xb2\x2d\xbf\x52\x37\x6d\ \xfa\xab\xea\xbd\xa1\x8f\x9a\xb8\x6e\x92\xb7\x4d\xdc\x36\xb3\x9d\ \xa5\x12\x94\x81\x75\x56\x8e\xa2\x7a\xe5\x95\x57\xc4\xe7\xfd\xe8\ \xd7\x31\x77\x98\x43\xae\x67\x15\x77\xb0\x80\x01\xc7\xdb\xb7\x83\ \x77\xf2\xad\xa8\x72\x81\xdb\x6b\xb6\x39\x9b\xb8\x38\x27\x12\x37\ \xd2\xf7\x70\xde\x87\x18\x39\x6c\x5a\xb3\xc9\xbb\x5d\xb9\x76\xa5\ \x5a\xb0\x76\x81\x37\xac\x7c\x68\xe3\x43\x6a\xdc\xa6\xf1\x6a\xe0\ \xc6\x41\xea\x9e\xcd\x1d\xd5\xcd\x9b\x6f\x51\x37\x3c\xdc\x46\x5d\ \xf3\xf0\xb5\xea\x0f\x5b\xff\xa4\x7e\xf7\xf0\xff\xaa\x2b\xb6\xfe\ \x46\xfd\x66\xcb\x95\xde\x7d\x3e\xf7\x97\xcd\xd7\xa9\x1b\x1f\xbe\ \x49\xfd\x6d\xf3\xad\xaa\xd3\xa6\xce\xde\x7b\x6b\xd7\x8f\x53\x53\ \xd6\x4d\xf1\x3e\x93\x9f\xcd\xef\xf0\xbe\x73\xdd\xa6\x86\xef\x35\ \xdb\xe3\xdf\xce\x52\x60\xf7\xa8\x4c\x1d\x56\x28\xcc\x99\xdb\xc1\ \x81\x40\x67\x95\x8b\x58\x83\x05\x0d\xf6\x07\x6d\xc1\x2e\x20\x55\ \x4c\xc5\x60\x86\x8a\x9c\x0f\x91\x92\xa5\x1c\x30\xf2\xb0\x85\xe6\ \x09\x06\x72\xf1\x24\x93\x27\xf6\x7b\xed\xcf\x94\xbe\xb3\x1c\x60\ \x9d\x98\xcb\x15\x4b\x75\x57\x61\x30\x57\x98\x33\xcc\x1d\x9d\x4d\ \x2e\x12\x09\x16\x38\xf8\x38\xb8\x16\xbc\x09\xa4\x0a\xaa\x28\xb8\ \x6e\x87\x93\xf3\x3c\xd5\x87\x87\xc8\xa5\x04\x72\xc4\x0f\xcb\x9e\ \x75\x60\xce\xfb\x93\xea\xaa\x02\x61\x8e\x30\x57\x98\x33\x3a\x8b\ \x5c\x24\x1a\x2c\x78\xb0\x2f\xb8\x12\xbc\x08\xa4\x8a\xaa\x38\x78\ \xc4\xe9\xa9\xa7\x9e\xf2\x56\x4a\xf3\x74\x1f\x29\xa9\x1c\xc5\x87\ \x43\x73\xae\x9d\x63\xd9\xb3\x0e\xa4\xba\xa9\x50\x98\x1b\xcc\x11\ \xe6\x8a\xce\x1e\x17\x25\x09\x56\x00\x68\x02\xce\x03\xdb\x80\x54\ \x61\x15\x09\xe7\xb9\xb8\x00\x95\xc3\x45\xfe\xa4\x7e\x25\xf6\xba\ \xb8\xcd\xe5\x86\x7f\xfb\x58\xb6\x1c\xf6\x99\x05\x9f\x3b\x77\xee\ \xac\x1a\xd0\x8e\x98\x13\xcc\x0d\xe6\x88\xce\x1a\x17\x25\x0d\x56\ \x84\x52\xaa\x06\x15\x74\x0a\x58\x66\x57\x58\xb5\x60\x16\xa1\x72\ \x25\x35\x27\x80\x4d\xe2\xd9\x89\xe8\xc8\x1f\xce\x4d\xb1\x2c\x59\ \xa6\x2c\x5b\xa9\xcc\xab\x00\xe6\xc2\x29\x4b\x97\x2e\x65\x6e\xe8\ \x6c\x71\x51\x16\xc1\x0a\xd1\x1c\x07\x26\x83\x7a\x20\x55\x62\x45\ \x03\x39\x7b\xf3\x2a\x5c\xac\xc8\xe1\x8b\x91\x97\x23\x37\x2c\x2b\ \x4a\x8a\x43\x3e\x33\x37\x25\x95\x71\x15\xc0\xb6\xcf\x1c\x60\x2e\ \x38\x59\x95\x6b\x98\xca\x01\x87\x83\x81\xe0\x3f\x40\xaa\xd0\xaa\ \xc0\x96\x17\x13\x91\xbd\x06\xce\x79\x49\xc9\xda\x18\x61\x59\x98\ \x9e\x94\xf9\xad\xbf\x2a\x96\x94\x81\x6d\x9e\x6d\x9f\x39\xe0\x64\ \x55\x09\xa1\x2b\xaa\x19\x68\x0b\x5e\x05\x52\xc5\x56\x15\x4c\x44\ \x4e\x14\xf3\x7c\x36\xce\x79\xf1\xdc\x36\x4e\x22\x4b\x89\x5c\xcd\ \xb0\x17\xc5\x7d\xe7\x9c\x94\xb9\x66\x7a\xb9\x4a\xea\xd5\x57\x5f\ \x2d\x2a\xf8\x4c\xb6\x75\xb6\x79\xb6\x7d\x9d\x0d\x2e\x2a\x22\x58\ \x61\x20\x05\x5a\x82\xad\x52\x05\x57\x1a\xd8\x0f\xf1\x79\x09\x26\ \x29\xd7\x0e\x71\xf8\x63\x04\xc6\x64\xae\xa6\x1e\x18\xf7\xc5\x08\ \x8a\xfb\x68\x7e\x84\x94\xfb\x2e\x95\x49\x95\xc3\x36\xde\xf2\xb5\ \xd7\x5e\x4b\xe1\x56\x67\x81\x8b\x8a\x0a\x56\xdc\x5b\x6f\xbd\xc5\ \xdb\x13\xc1\x0c\x50\x07\xa4\xca\xae\x7a\xec\x1e\x18\xaf\xd5\xc4\ \x61\x12\xd7\x1a\xd9\x12\x2b\xc7\x49\x7c\xb3\x4d\x46\x4e\xdc\x66\ \x6e\x3b\xf7\xc1\xee\x41\x49\xfb\xdc\x48\x60\x9b\x66\xdb\x66\x1b\ \xf7\xda\xbc\x8b\x0a\x0e\x53\x89\xe0\x70\xd0\x0b\xfc\x1b\x48\x15\ \xdf\xa8\x60\x6f\x8d\x87\xf0\x99\xf0\xbc\x2a\x26\xe7\x78\xd8\x4b\ \x31\x22\xe3\xdc\x0f\x87\x94\x76\x8f\xcc\x5e\x0a\x50\x0c\xec\xcf\ \xe3\xf7\x10\x7e\x27\xbf\x9b\xbd\x26\x6e\x0b\xb7\x89\xdb\xc6\xe5\ \x1d\xdc\x56\xb3\xec\x40\xda\xa7\x46\x08\xdb\x32\xdb\x34\xdb\xb6\ \x93\x55\x35\x85\xae\xd0\x03\xc0\x55\xe0\x49\x20\x35\x80\x46\x0f\ \x65\xc0\x1e\x0b\x0f\xf5\x73\x78\x45\x51\x70\xa8\x45\x69\xb0\x57\ \x43\x81\x6c\xdf\xbe\xdd\x3b\x42\x49\xa9\x50\x6e\x84\x6b\x99\x08\ \x65\xc3\x9e\x10\xe1\x7d\xf3\xbc\x79\x1d\xdf\xc3\xf7\xf2\x33\xf8\ \x59\xfc\x4c\x7e\x36\xbf\x83\xdf\xc5\xef\xa4\x94\xb8\x0d\x4e\x4c\ \x81\xb0\x0d\xb3\x2d\xb3\x4d\xeb\x56\xee\xa2\xaa\x82\x15\x0b\x9a\ \x80\x93\xc1\x34\xf0\x01\x68\x68\x04\x18\xff\x3b\x72\x60\xca\xca\ \x88\xcd\x0f\x65\x63\x23\xbd\xc6\x16\x91\xf4\x1d\x85\xd0\x88\xea\ \xef\x03\x30\x0d\x9c\x8c\xb2\x64\x5b\xd6\xad\xdb\x45\x55\x06\x2b\ \x18\x95\xcd\xdb\x43\x71\x7b\x07\x78\x15\x48\x0d\xc3\xe1\x28\x37\ \xd8\x56\xd9\x66\xd9\x76\x6b\x5e\x7f\xfd\x75\xdd\xaa\x5d\x54\x7d\ \xb0\xc2\x41\x0a\x9c\x07\x56\x83\x34\x90\x1a\x89\xc3\x51\x6a\xd8\ \x36\xd9\x46\xd9\x56\xd9\x66\x75\x2b\x76\xd1\xa8\x82\x15\xaf\x39\ \x06\xf4\x01\x6f\x01\xa9\xc1\x38\x1c\xa5\x82\x6d\x92\x6d\x93\x6d\ \xd4\x6b\xaf\x2e\x1a\x79\xe8\x86\xb0\x1f\xb8\x10\xac\x00\x75\x40\ \x6a\x3c\x8e\x46\x0e\x86\x61\x89\x80\xef\x62\x1b\x64\x5b\x64\x9b\ \x64\xdb\xd4\xad\xd5\x85\x0b\x04\x1b\x84\xa6\x39\xe8\x00\x76\x4a\ \x0d\x29\x2c\xf8\x1c\xf1\x79\x87\x23\x00\xb6\xbd\x0e\xa0\x39\x4f\ \xea\x7f\xe3\x8d\x37\x74\x2b\x75\xe1\xc2\x17\x68\x24\x64\x5f\xf0\ \x43\x30\x17\x7c\x00\xa4\x46\xe5\x70\x14\x1b\xb6\x35\xb6\x39\xb6\ \x3d\xb6\x41\xdd\x2a\x5d\xb8\x08\x08\x36\x14\xcd\x61\xa0\x0d\xd8\ \x01\xd2\x40\x6a\x64\x0e\x47\x54\xd8\xb6\xd8\xc6\xd8\xd6\xd8\xe6\ \xbc\xf6\xe7\xc2\x45\xa8\xd0\x0d\xa7\x09\x38\x1e\xf4\x06\xaf\x02\ \xa9\xc1\x39\x1c\x85\xc2\x36\xc5\xb6\xc5\x36\xc6\xb6\xa6\x5b\x9f\ \x0b\x17\x05\x06\x1b\x11\xf8\x18\xf8\x3e\x98\x08\x76\xbf\xf1\xc6\ \x1b\xca\x11\x0d\x94\xa3\xf8\x7c\x23\x81\x6d\x68\x22\x60\x9b\x62\ \xdb\xd2\xad\xcd\x85\x8b\x22\xc4\xae\x5d\xbb\x3c\x71\xa1\x81\x35\ \x03\x57\x80\x95\xe0\x03\x20\x35\x46\x87\x23\x1b\x6c\x33\x6c\x3b\ \x6c\x43\x6c\x4b\x35\x6f\xbe\xf9\xa6\x6e\x65\x2e\x5c\x14\x39\xd8\ \xc0\x34\x47\x80\x6b\xc0\x7a\xf0\x5f\x20\x35\x4e\x87\xc3\xc0\x36\ \xc2\xb6\xc2\x36\xc3\xb6\xe3\x8e\xfe\xb9\x48\x2e\x74\x83\x6b\x02\ \x9a\x83\xd6\x60\x33\xf8\x10\x48\x8d\xd5\xd1\x78\x61\x9b\x60\xdb\ \x60\x1b\x61\x5b\x61\x9b\xd1\xad\xc8\x85\x8b\x84\x83\x8d\x4f\x37\ \xc2\xcf\x81\xb6\x60\x2b\x28\x1b\x71\x61\xb8\xe1\x28\x01\x28\x7b\ \xb6\x01\xb6\x05\xb6\x09\xb6\x0d\x27\x2a\x17\xe5\x13\x6c\x8c\xaf\ \xbf\xfe\x3a\x1b\xe5\x31\x68\xb0\x6d\xc0\x5a\xf0\xbe\x69\xc0\x8e\ \x46\x03\xeb\x9c\x75\xcf\x36\x70\xcc\xdb\x6f\xbf\xdd\x84\x17\x91\ \x74\xe1\xa2\x2c\x03\x8d\x94\x34\x01\x87\x83\x56\x60\x0e\x78\x07\ \x48\x8d\xdb\x51\x3d\xb0\x8e\x59\xd7\xac\x73\xd6\x3d\xdb\x80\x6e\ \x15\x2e\x5c\x94\x79\xb0\xb1\x6a\x3e\x09\x2e\x00\xb5\xe0\x35\x90\ \x06\x52\x83\x77\x54\x1e\xac\x4b\xd6\x29\xeb\x96\x75\xcc\xba\xf6\ \xea\xdd\x85\x8b\x8a\x0c\xd3\x80\xc1\xfe\xe0\xbb\xa0\x0b\x78\x04\ \xb8\xe1\x62\x89\xc1\x50\xad\x20\xf0\x5e\xd6\x1d\xeb\x90\x75\xc9\ \x3a\x65\xdd\x3a\x51\xb9\xa8\xae\xd0\x8d\xba\x29\x38\x0a\x0d\xbf\ \x15\x98\x0c\x5e\x05\x69\x26\x82\xa3\xac\x61\x1d\xb1\xae\x58\x67\ \xac\xbb\xa3\xde\x7e\xfb\xed\xa6\x40\xd7\xae\x0b\x17\x55\x1a\x68\ \xec\x35\xff\xfe\xf7\xbf\x79\x7b\x20\x38\x15\x74\x00\x1b\xc1\x6e\ \x20\x25\x8b\xa3\x74\xb0\x4e\x58\x37\xac\x23\xd6\x15\xeb\xcc\xab\ \x43\x17\x2e\x1a\x5d\xe8\xc6\xbf\x0f\x38\x1c\x5c\x00\xfa\x80\x2d\ \xe0\x5d\x20\x25\x90\x23\x7e\x58\xf6\xac\x03\xd6\x05\xeb\x84\x75\ \xc3\x3a\xd2\xb5\xe6\xc2\x85\x0b\x23\xaf\x14\xf8\x2c\xb8\x08\xf4\ \x07\xdb\x80\x93\x57\xfc\xb0\x8c\x59\xd6\x2c\x73\x96\x3d\xeb\x80\ \x75\xa1\x6b\xc7\x85\x0b\x17\x59\x83\x89\xa2\x13\xa6\x39\xb8\x18\ \x74\x07\x2b\xc0\xeb\xa0\xee\xed\xb7\xdf\x56\x8e\xc2\x61\x19\xea\ \xb2\x64\x99\xb2\x6c\x59\xc6\x2c\x6b\x27\x29\x17\x2e\xa2\x04\x4f\ \xbc\x06\x9c\xe0\x3d\x04\x9c\x0a\x5a\x83\xf1\xe0\x49\xf0\x2e\x10\ \x93\xd2\xb1\x17\x2c\x2b\x96\x19\xcb\x8e\x65\xc8\xb2\x3c\x84\x65\ \xcb\x32\x76\xe1\xc2\x45\x91\x03\x09\x66\xd8\x0f\x7c\x1e\x5c\x04\ \xee\x02\x93\xc1\xe3\xe0\x5f\xa0\x1e\x48\x09\xdb\x98\x60\x19\xec\ \x02\x2c\x13\x96\x0d\xcb\x88\x65\xc5\x32\x63\xd9\x79\xe5\xe8\xc2\ \x85\x8b\x04\x43\x27\x5e\x13\x70\x00\xe0\xa1\xf6\x73\xc0\x8d\x60\ \x38\xd8\x00\x76\x82\xdd\xa0\x9a\x25\xc6\x7d\xe3\x3e\x72\x5f\xb9\ \xcf\xdc\x77\x96\x01\xcb\x82\x65\xc2\xb2\x61\x19\xe9\x52\x73\xe1\ \xc2\x45\x59\x04\x93\x52\xf3\x31\x70\x28\xf8\x1a\x68\x09\x6e\x02\ \x03\xc0\x3c\xc0\x61\xd1\x9b\xe0\x3d\x90\x06\x92\x04\xca\x11\x6e\ \x2b\xb7\x99\xdb\xce\x7d\xe0\xbe\x70\x9f\xb8\x6f\xdc\x47\xee\x2b\ \xf7\x99\xfb\xee\x95\x83\x0b\x17\x2e\x2a\x30\x74\x02\x73\x1e\xec\ \x20\xd0\x7c\xd7\xae\x5d\xa7\x81\xcb\x41\x1b\xd0\x0d\x8c\x01\x0b\ \xc1\xa3\xe0\x65\xf0\x16\xd8\x0d\x3e\x00\x69\xa0\x62\x86\xdf\xc1\ \xef\xe2\x77\xf2\xbb\xb9\x0d\xdc\x16\x6e\x13\xb7\x8d\xdb\xc8\x6d\ \xe5\x36\x73\xdb\xb9\x0f\x07\xfd\xeb\x5f\xff\x6a\x0a\xf4\x5e\xba\ \x70\xe1\xa2\xaa\x83\xc9\x0e\x9a\x20\xf9\xf7\x03\x9c\x80\x3e\x12\ \x9c\x08\x5a\x80\x56\xe0\x06\xd0\x0e\xf4\x03\x14\xc7\x2c\xb0\x1a\ \x6c\x07\x4f\x81\xe7\xc1\x2b\xe0\x0d\xf0\x0e\x78\x0f\xd4\x69\x78\ \x9f\xcf\xf1\xdf\xf8\x1a\xbe\x96\xef\xe1\x7b\xf9\x19\xfc\x2c\x7e\ \x26\x3f\x9b\xdf\xc1\xef\xe2\x77\xf2\xbb\xb9\x0d\xdc\x16\x6e\xd3\ \x7e\xdc\x46\x27\xa6\xc6\x1e\x35\x35\xff\x0f\x79\x73\x55\xd5\x22\ \x33\x83\x14\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x5e\x99\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x2c\x00\x00\x01\x2c\x08\x06\x00\x00\x00\x79\x7d\x8e\x75\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\xa6\x18\x00\x00\ \xa6\x18\x01\x7e\x75\xc9\x8d\x00\x00\x00\x09\x76\x70\x41\x67\x00\ \x00\x01\x2c\x00\x00\x01\x2c\x00\xfb\x38\x72\x69\x00\x00\x5d\x80\ \x49\x44\x41\x54\x78\xda\xed\xbd\x79\x94\x1c\xd7\x75\xdf\xff\x79\ \xd5\x7b\xf7\xf4\xec\xc0\xcc\x60\x25\x01\x82\x20\x08\x12\xe0\xbe\ \x88\xa2\x48\x4a\x24\x45\x52\xa4\x25\x9a\xb6\x2c\xca\xa6\x64\xed\ \xf6\x91\xe3\xc8\x71\xec\xfc\xe2\xc4\x4e\x62\x3b\x5e\x93\xe3\x1c\ \xc7\x49\x6c\xc7\xf1\x9a\x23\x39\xce\x51\xa8\x85\xa2\xb8\x8a\xa4\ \x28\x2e\xe2\xbe\x8a\x22\x01\x10\xdb\x0c\x66\x30\xfb\xde\x7b\xbd\ \xdf\x1f\xaf\xaa\xd9\xd3\xe8\xa5\xaa\xbb\xba\xaa\x7b\xa6\xbe\xe7\ \xd4\x99\x9a\xea\xaa\x57\xb7\x5e\xd7\xfb\xf6\xbd\xf7\xdd\x7b\x9f\ \xc0\xc7\x86\xc6\xd7\xbf\xfe\x75\x00\x01\x44\x80\x38\x10\x03\x06\ \x81\xad\xc0\x26\xa0\xcf\xd8\xfa\xcb\xfe\x76\x1b\xd7\x84\x80\x70\ \xd9\xdf\x90\xd1\x7c\xce\xd8\xb2\x65\x7f\x33\xc0\x22\x30\x07\xcc\ \x96\xfd\x9d\x03\xa6\x80\x31\x60\x1a\x48\x01\xab\xc6\x35\xf2\xae\ \xbb\xee\xf2\xba\xcb\x7c\x78\x08\xe1\xb5\x00\x3e\xdc\x81\x41\x4c\ \x01\x20\x81\x22\x9b\x6d\xc0\x59\xc0\x16\x60\xa4\x6c\xeb\x05\xa2\ \xac\x25\xa0\x56\xbf\x2b\x92\xb5\x04\x97\x06\xe6\x81\xf1\xb2\xed\ \x14\x70\x0c\x18\x45\x91\xde\x0a\x50\xf0\x89\x6c\x63\xc0\x27\xac\ \x75\x06\x83\x98\x40\x91\x4d\x37\x30\x0c\xec\x06\xce\x29\xf9\x7b\ \x36\x4a\x53\x8a\xa3\xb4\xa4\x4e\x79\x0f\x24\x4a\xd3\x5a\x45\x69\ \x64\x47\x81\xc3\xc0\x91\x92\xbf\x13\x28\x22\xcb\x02\xf8\x44\xb6\ \xbe\xd0\x29\x2f\xaa\x8f\x2a\x28\x31\xe9\x62\xc0\x00\x70\x2e\x70\ \xc0\xd8\x2e\x44\x69\x52\x5d\xc6\xe7\x9a\xd7\xf2\xb6\x08\x3a\xca\ \x74\x5c\x46\x69\x5e\xaf\x03\xaf\x19\xdb\x3b\xc0\x8c\xf1\xb9\x6f\ \x52\x76\x38\x7c\xc2\xea\x30\x94\x68\x50\x51\x94\xf6\x74\x91\xb1\ \x1d\x00\xf6\x1b\xc7\xba\x58\xbf\xe4\x64\x15\x3a\xb0\x04\x9c\x06\ \xde\x44\x91\xd7\x2b\xc6\x36\x81\x32\x39\x7d\x0d\xac\xc3\xe0\x13\ \x56\x07\xa0\xc4\xff\xd4\x03\xec\x01\xae\x02\xae\x06\x2e\x45\xf9\ \xa0\xe2\x5e\xcb\xd8\x21\x58\x45\xf9\xc0\x5e\x04\x9e\x01\x9e\x05\ \x0e\x01\x0b\xf8\x7e\xb0\x8e\x80\x4f\x58\x6d\x0a\x83\xa4\x82\x28\ \x8d\xe9\x72\xe0\x1a\x14\x51\xed\x45\xcd\xd2\x05\xbc\x96\xb1\xc3\ \x51\x40\xcd\x48\xbe\x8d\x22\xae\xa7\x80\xe7\xa5\x94\x13\x42\x88\ \xbc\x4f\x5e\xed\x09\x9f\xb0\xda\x08\xff\xef\xff\xfd\x3f\x50\x24\ \xb5\x59\x4a\x79\x05\x70\x13\x70\x1d\xca\x49\xee\x6b\x51\x0e\x42\ \x08\x81\x94\xb2\xf4\xff\x55\x94\x13\xff\x09\xe0\x61\xe0\x39\x60\ \x12\xc8\xff\xe4\x4f\xfe\xa4\xd7\xe2\xfa\x30\xe0\x13\x96\xc7\x30\ \x48\x4a\x03\x36\xa3\x34\xa9\x1b\x81\xeb\x51\xb3\x79\x3e\x49\x79\ \x83\x55\xd4\xac\xe3\xe3\xc0\x23\xc0\xf3\x28\xf2\xd2\x7d\xf2\xf2\ \x16\x3e\x61\x79\x00\x83\xa4\x40\xc5\x44\x5d\x00\xdc\x01\xdc\x8a\ \x32\xf7\x12\x5e\xcb\xe7\x63\x0d\x56\x50\x66\xe3\x77\x81\x6f\x03\ \x6f\x18\xc7\xf0\xc9\xcb\x7d\xf8\x84\xe5\x22\x0c\xa2\x0a\xa0\x1c\ \xe5\x1f\x04\x3e\x8a\xf2\x4d\x6d\xc2\xff\x2e\xda\x1d\x12\x15\x81\ \xff\x14\xf0\x4d\xe0\x7b\x28\x07\x7e\xc1\x27\x2e\xf7\xe0\x0f\x92\ \x16\xe3\xab\x5f\xfd\x2a\xb1\x58\x0c\x29\x65\x0c\xb8\x18\x45\x52\ \xb7\xa1\x66\xfb\x22\x5e\xcb\xe7\xa3\x21\x64\x50\xb3\x8b\xf7\x03\ \xdf\x14\x42\xbc\x8c\x8a\xf3\xe2\xce\x3b\xef\xf4\x5a\xb6\x75\x0d\ \x9f\xb0\x5a\x84\x7b\xef\xbd\xd7\xdc\xed\x05\xae\x05\xee\x06\x6e\ \x94\x52\x0e\x62\xf4\xbb\x10\xeb\xa3\xfb\xa5\x94\xeb\xe6\x59\xec\ \x3e\x3a\x2a\xdf\xf1\x11\xe0\x6b\xc0\x93\xa8\x74\x22\x9f\xb8\x5a\ \x84\x0d\xf9\x96\xb5\x12\x06\x51\x09\x60\x08\xf8\x30\x8a\xa8\xde\ \x07\x24\xbd\x96\xcd\x47\x4b\xb1\x04\x3c\x8d\x22\xae\x07\x51\x01\ \xab\xd2\x27\x2e\x67\xe1\x13\x96\x43\x28\x21\xaa\xb3\x80\x3b\x81\ \x9f\x01\x0e\xe2\x9b\x7d\x1b\x0d\x19\xe0\x55\xe0\xff\x00\xf7\xa2\ \x12\xb5\x7d\xe2\x72\x08\x3e\x61\x35\x89\x12\xa2\xda\x0e\x7c\x1c\ \xf8\x14\xb0\x0f\x15\x4f\xe5\x63\xe3\x22\x0f\xbc\x05\xfc\x3d\xf0\ \x4f\x52\xca\x93\x42\x08\x9f\xb8\x9a\x84\x4f\x58\x0d\xe2\x1b\xdf\ \xf8\x06\x42\x08\x21\xa5\xdc\x2a\xa5\xbc\x0b\xf8\x79\x54\x88\x82\ \x4f\x54\x2d\x40\x79\xa0\x67\xa7\x40\x08\x91\x47\x85\x42\xfc\x2d\ \xf0\x75\x54\x9d\x2f\xf9\xb1\x8f\x7d\xcc\x6b\xd1\x3a\x12\x3e\x61\ \xd9\xc4\x37\xbe\xf1\x0d\x73\x77\x04\x65\xfa\x7d\x06\x65\xfa\x85\ \x1a\x6c\xd2\xc7\xc6\x40\x0e\x65\x2a\xfe\x0d\xca\x54\x1c\x07\xf0\ \x89\xcb\x1e\x7c\xc2\xb2\x88\x12\xa2\x4a\xa2\x02\x3d\xbf\x0c\x5c\ \x86\xaa\x3b\xe5\xc3\x87\x55\x64\x81\x17\x80\xff\x86\x0a\x44\x5d\ \x02\x9f\xb8\xac\xc2\x27\x2c\x0b\x30\xc8\x2a\x8c\x9a\xed\xfb\x25\ \xe0\x16\xfc\x88\x74\x1f\xcd\x61\x05\x78\x00\xf8\x33\xd4\xec\x62\ \xd6\x27\xad\xfa\xf0\x09\xab\x06\xee\xbd\xf7\x5e\xa4\x94\x42\xd3\ \xb4\xf3\x80\x2f\xa1\x42\x14\x36\x7b\x2d\x97\x8f\x75\x85\x49\xe0\ \x6b\x42\x88\xbf\x10\x42\xfc\x58\x4a\x29\x3f\xfa\xd1\x8f\x7a\x2d\ \x53\xdb\xc2\x27\xac\x0a\xf8\xe6\x37\xbf\x69\xee\x6e\x02\xee\x01\ \xbe\x28\xa5\x3c\x17\x10\xeb\x25\x40\x72\x03\x07\x7b\xb6\x23\x24\ \xaa\x32\xea\x5f\x02\xff\x80\x4a\x01\xc2\x27\xae\x33\xe1\xbf\xb1\ \x65\x30\xc8\x2a\x84\x8a\x4e\xff\x57\xa8\xca\x09\xbe\x9f\xca\x87\ \x1b\xc8\xa2\x2a\x44\xfc\x21\x2a\x6a\x3e\xe7\x93\xd6\x5a\xf8\x84\ \x65\xa0\x44\xab\xda\x06\xfc\x02\xf0\x79\x54\xb4\xba\x0f\x1f\x6e\ \xe3\x34\xf0\x57\xc0\x9f\xaf\xac\xac\x8c\x26\x12\x09\x5f\xdb\x32\ \xe0\x13\x16\x45\xb2\x8a\x02\x37\x03\xbf\x8e\xaa\xec\xe9\x57\xf4\ \xf4\xe1\x25\x0a\xa8\x4a\xa8\x7f\x24\x84\x78\x08\x48\xff\xc4\x4f\ \xfc\x84\xd7\x32\x79\x8e\x0d\x4d\x58\xdf\xfa\xd6\xb7\x58\x59\x59\ \x21\x91\x48\x9c\x2d\xa5\xfc\x0a\xca\x5f\xd5\xe7\x44\xdb\xbe\x7f\ \xa8\x73\xd1\x66\xfe\xbd\x39\x94\x5f\xeb\xbf\xa0\x2a\xa2\xb2\x91\ \x89\xab\x6d\xbe\x15\xb7\xf1\xad\x6f\x7d\x0b\x54\x54\xfa\x4d\xc0\ \x6f\x01\x57\x6e\xe4\xfe\xf0\xd1\xd6\x90\xc0\x0f\x81\xdf\x46\x95\ \x6f\xce\x6f\x54\xd2\xda\x70\x03\xd4\x20\x2a\x50\xcb\xb1\xff\x22\ \x2a\xae\xca\x0f\x55\xf0\xd1\x09\x98\x44\xc5\x6d\xfd\x0f\x54\x59\ \x9b\x0d\xa7\x6d\x6d\x28\xc2\x32\xc8\x4a\xa0\x22\xd4\x7f\x13\x55\ \xfe\xc5\x9f\x01\xac\x82\x72\xb3\x48\x4a\x59\x71\xab\xf4\xb9\x79\ \xbd\xb9\x95\xb6\x59\x69\x2b\xbf\x8f\x8f\xaa\xc8\xa2\xca\xd7\xfc\ \x8e\x94\xf2\x05\x21\x84\xdc\x48\xa4\xb5\x61\x08\xeb\xdb\xdf\xfe\ \x36\x40\x5c\x4a\xf9\x49\x54\xb8\xc2\x39\x5e\xcb\xd4\x0e\x28\x25\ \x0b\x5d\xd7\xd1\x75\x1d\x29\x25\xf9\x7c\x9e\x7c\x3e\x4f\x2e\x97\ \x23\x97\xcb\x51\x28\x14\x28\x14\x0a\xe8\xba\x5e\xdc\x37\xff\x37\ \xaf\x35\x51\x4a\x58\xe6\x5f\x73\x5f\xd3\x34\x02\x81\x40\x71\x33\ \xff\x0f\x06\x83\x04\x83\x41\x42\xa1\x10\xa1\x50\xa8\xf8\x99\x10\ \x02\x4d\xab\xbc\x26\xec\x46\x26\x36\x21\xc4\x61\x54\xf8\xc3\x57\ \x81\xd5\x3b\xee\xb8\xc3\x6b\x91\xdc\x79\x6e\xaf\x05\x68\x35\x0c\ \xa2\x02\xb5\xbe\xdf\xbf\x42\x85\x2b\x74\x79\x2d\x97\x57\x30\xab\ \x1e\x98\x64\x93\xcd\x66\xc9\x64\x32\x64\x32\x19\xb2\xd9\x6c\x91\ \xa0\xf2\xf9\x3c\x52\xca\x22\x81\x55\x22\x87\x46\x1d\xd3\xd5\xda\ \x32\xc9\xc9\x24\x31\x93\xbc\x22\x91\x08\x91\x48\x84\x70\x38\x4c\ \x38\x1c\x2e\x7e\x6e\xde\x7f\x03\x13\xd7\x32\x2a\xfc\xe1\x0f\x51\ \xab\x59\xb3\xde\x89\x6b\x5d\x13\x56\x09\x59\x1d\x04\xfe\x23\x2a\ \x07\x70\xc3\x84\x2b\x98\x03\xda\xd4\x8a\x32\x99\x0c\xa9\x54\x8a\ \x74\x3a\x5d\x24\xa9\x72\x4d\xa9\xf4\x3a\xaf\x51\x6e\x5a\x9a\x5a\ \x99\x49\x60\xb1\x58\x8c\x58\x2c\x46\x38\x1c\x2e\x6a\x64\xa5\xd7\ \x6d\x10\x14\x50\x39\x89\xff\x06\x55\x0d\x62\x5d\x93\x56\x7b\xbc\ \x99\x2d\x80\x41\x56\x41\xe0\x23\xc0\xef\x00\x17\x7a\x2d\x93\x1b\ \x10\x42\xa0\xeb\x3a\xf9\x7c\x9e\x74\x3a\x4d\x2a\x95\x2a\x6e\xa6\ \x69\x67\x92\x53\xbb\x10\x93\x5d\x98\x84\x54\xaa\x89\x99\xe4\x15\ \x8f\xc7\x89\x46\xa3\x45\x02\xdb\x40\xe4\xf5\x3a\xca\x2f\xfb\x1d\ \x20\xbf\x5e\x49\xab\x33\xdf\xd8\x3a\x30\xc8\x2a\x89\x4a\x58\xfe\ \x35\xd6\xf1\x2c\x60\xa9\x89\x97\xcb\xe5\x58\x59\x59\x61\x65\x65\ \x85\xd5\xd5\x55\xb2\xd9\x2c\x85\x42\xa1\xdd\xe2\x8a\x5a\x02\xf3\ \x19\x03\x81\x00\xe1\x70\x98\x44\x22\x41\x22\x91\x20\x1e\x8f\x17\ \xcd\xc8\x4e\x2d\x02\x68\x03\x93\xc0\x1f\x0b\x21\xfe\x02\x58\xba\ \xfd\xf6\xdb\xbd\x96\xc7\x71\xac\xab\xb7\xf8\xbe\xfb\xee\x33\x5f\ \xdc\x61\x29\xe5\xbf\x03\x3e\x0d\xc4\x2c\x77\x46\x87\x0d\xea\x42\ \xa1\x40\x3a\x9d\x66\x69\x69\x89\xe5\xe5\x65\x52\xa9\x14\xf9\x7c\ \x1e\x5d\xd7\x3b\xee\x59\x9c\x86\x94\x12\x4d\xd3\x08\x06\x83\xc4\ \x62\x31\xba\xba\xba\x48\x26\x93\x45\xed\x6b\x1d\x23\x05\xfc\x1d\ \xf0\x1f\x30\xfc\x5a\xeb\x89\xb8\xd6\xcd\x5b\x7d\xdf\x7d\xf7\x99\ \xbb\xe7\x02\x7f\x80\x5a\xff\x4f\x6b\xb8\xc1\x36\x84\x10\x62\x0d\ \x49\x2d\x2d\x2d\xb1\xba\xba\x5a\x74\x90\x6f\x74\x92\xaa\x06\xb3\ \x6f\x82\xc1\x20\xf1\x78\x9c\x64\x32\xb9\x86\xbc\xd6\xa1\xd6\xa5\ \xa3\x16\x7b\xfd\xff\x50\x55\x20\xd6\x0d\x69\xad\x8b\x37\xbc\x84\ \xac\xae\x00\xfe\x13\xaa\xd2\xc2\xba\x80\xe9\x93\xca\x66\xb3\x2c\ \x2e\x2e\xb2\xb0\xb0\xe0\x93\x54\x13\x28\x25\xaf\x44\x22\x41\x4f\ \x4f\x0f\xc9\x64\x92\x48\x24\xb2\x1e\x4d\xc6\x27\x81\x7f\x09\x3c\ \x07\xeb\x83\xb4\x3a\xfe\x6d\x37\xc8\x4a\xa0\x66\x00\xff\x18\xd8\ \xef\xb5\x4c\x4e\xa1\x50\x28\xb0\xb2\xb2\xc2\xc2\xc2\x02\x8b\x8b\ \x8b\x64\xb3\x59\xdf\xdc\x73\x10\xa6\xd9\x18\x89\x44\xe8\xee\xee\ \xa6\xa7\xa7\x87\x78\x3c\xbe\xde\x4c\xc6\x37\x51\x7e\xdc\x07\x00\ \xd9\xe9\xa4\xd5\xd1\x6f\xfe\x77\xbe\xf3\x1d\x80\x90\x94\xf2\x6e\ \x54\xd8\xc2\x36\xaf\x65\x6a\x06\xe6\x2f\x7c\x36\x9b\x65\x61\x61\ \x81\xf9\xf9\xf9\xa2\x36\xe5\x93\x54\xeb\x11\x08\x04\x88\xc7\xe3\ \xf4\xf5\xf5\xd1\xd3\xd3\x43\x38\xfc\x5e\x12\x44\xa7\x6a\xb3\x86\ \xdc\xa3\xa8\xb0\x87\xaf\x01\xb9\x8f\x7c\xe4\x23\x5e\x8b\xd5\x30\ \x3a\xef\x1b\x30\x60\x90\x55\x04\xf8\x02\xca\xc1\xd8\xef\xb5\x4c\ \xcd\x40\x4a\x49\x3a\x9d\x66\x7e\x7e\x9e\xb9\xb9\x39\xd2\xe9\xb4\ \xaf\x4d\x79\x00\x53\xeb\x8a\xc5\x62\xf4\xf5\xf5\xd1\xdb\xdb\x4b\ \x34\x1a\x5d\x0f\xe6\xe2\x2c\xf0\xef\x80\xff\x09\x64\x3a\x95\xb4\ \x3a\x72\x34\x18\x64\x15\x43\xad\x5c\xf3\x6f\x81\x1e\xaf\x65\x6a\ \x04\xa6\x7f\x6a\x75\x75\x95\xd9\xd9\x59\x16\x16\x16\xc8\x64\x32\ \x6d\xfb\x6b\x2e\x2b\xc8\x24\x6d\xca\x29\x2a\x45\xb9\xb7\x21\x11\ \x98\xdf\x41\x24\x12\xa1\xb7\xb7\x97\xbe\xbe\x3e\xe2\xf1\x78\xa7\ \xc7\x76\x2d\x00\xbf\x8b\x5a\xb1\x27\xd5\x89\xa4\xd5\x7e\xa3\xa2\ \x0e\x0c\xb2\x4a\x00\xbf\x82\x2a\xb6\x97\xf4\x5a\x26\xbb\x28\x25\ \xaa\x99\x99\x19\xe6\xe7\xe7\xc9\xe5\x72\x5e\x8b\x05\x42\x60\x0e\ \xc5\x52\x22\x0a\xe6\xf3\x04\xf3\x79\x02\x85\x02\x5a\xa1\x40\x30\ \x9f\x27\x92\xc9\x14\x37\xf3\xb8\xa6\xeb\x6a\xdf\xcc\x2f\xd4\x34\ \x0a\x81\x00\xba\xa6\xa1\x07\x02\x14\x02\x01\x32\x91\x48\x71\xcb\ \x07\x83\xc5\xe3\xf9\x60\x90\x7c\xf0\xbd\x35\x68\x4d\x12\x13\x00\ \x6d\x40\x10\xe1\x70\x98\xde\xde\x5e\x06\x06\x06\x88\xc5\x62\x9d\ \x4c\x5c\x4b\xc0\x1f\x01\x7f\x02\xac\x74\x1a\x69\x75\x14\x61\x19\ \x64\x95\x44\xe5\x04\x7e\x85\x0e\x5c\x6a\x4b\x4a\x49\x2a\x95\x62\ \x66\x66\x86\xb9\xb9\x39\xcf\x88\xca\x24\x24\xf3\x6f\xa0\x50\x20\ \x94\xcb\x11\xce\x64\x48\x2e\x2d\x91\x5c\x5a\xa2\x6b\x69\x89\xae\ \xe5\x65\xf5\x77\x69\x89\xf8\xea\x2a\x91\x4c\x86\xb0\x41\x52\x01\ \x5d\x47\x2b\x14\x10\x52\x16\x89\x45\x18\x9b\xd9\xb6\x14\xa2\x48\ \x84\x52\x08\x45\x50\x06\x91\x65\x0d\xe2\x5a\x8d\xc7\x59\x4e\x26\ \xd5\xd6\xd5\xc5\x72\x32\xc9\x92\xb1\x65\x23\x11\x72\xa1\x10\x05\ \xc3\x11\x5e\x24\xb2\x26\xc9\xa2\x34\x0f\xd1\x8e\x36\x1b\x0a\x85\ \xe8\xeb\xeb\xa3\xbf\xbf\x9f\x78\x3c\xde\x91\xa6\xa2\x10\x62\x05\ \x55\x10\xf0\x0f\x81\xa5\xdb\x6e\xbb\xcd\x6b\x91\xac\xcb\xee\xb5\ \x00\x56\x71\xff\xfd\xf7\x83\x32\xfd\xfe\x2d\xf0\x4b\x52\xca\xa8\ \xd7\x32\x59\x41\xe9\x60\x48\xa5\x52\x4c\x4f\x4f\x33\x37\x37\x47\ \x36\x9b\x75\x55\x8e\x52\x82\xd2\x74\x9d\x70\x26\x43\x62\x65\x85\ \xfe\x99\x19\xfa\x67\x67\xe9\x33\xb7\xb9\x39\x62\xab\xab\x84\xf2\ \x79\x82\xb9\x1c\x81\x42\xe1\x8c\x36\xd6\xb4\xab\x1e\xd2\xa2\x10\ \xb2\xe2\x0b\x57\x4a\x3e\x85\x40\x80\x7c\x28\x44\x2e\x18\x24\x15\ \x8f\x33\xd7\xd7\xc7\x5c\x7f\x3f\x73\xfd\xfd\xcc\xf6\xf7\x33\x3b\ \x30\xc0\x4a\x22\x41\x36\x12\x41\xd7\xb4\xb5\x64\x59\x22\x47\xab\ \xcd\xea\x70\x38\x4c\x5f\x5f\x1f\x83\x83\x83\x44\xa3\x1d\xf1\x2a\ \x96\x23\x8d\xaa\xad\xf5\xbb\xc0\x42\xa7\x90\x56\x47\x10\x96\x41\ \x56\x49\x54\x65\xd0\x7f\x86\x72\xb6\x77\x04\x84\x10\x64\xb3\x59\ \x66\x67\x67\x99\x9a\x9a\x22\x9d\x4e\xbb\x76\x6f\x53\xc3\xd1\x74\ \x9d\x68\x3a\x4d\xf7\xc2\x02\x9b\x4f\x9f\x66\xf3\xe9\xd3\x0c\x4d\ \x4c\x30\x30\x3d\x4d\x2c\x95\x22\x54\x42\x4c\xe5\x9a\x97\x67\xfd\ \x56\xa6\x49\x15\x02\x01\x72\xa1\x10\xa9\x58\x8c\x99\x4d\x9b\x98\ \x1c\x1a\x62\x72\x78\x98\xc9\xa1\x21\x16\xbb\xbb\x49\xc7\x62\xef\ \x11\x98\x83\x1a\x4f\x3d\x12\x8c\x46\xa3\x0c\x0e\x0e\xd2\xdf\xdf\ \x4f\x28\x14\xea\x34\x6d\x2b\x03\xfc\x57\x54\x25\xd3\x8e\xd0\xb4\ \xda\x9e\xb0\x0c\xb2\x4a\x00\xff\x1a\xf8\x55\xd4\x62\x11\x6d\x0f\ \x33\x2a\x7d\x61\x61\x81\xc9\xc9\x49\x96\x97\x97\x5d\x79\x99\x4d\ \x92\x0a\x67\xb3\x74\x2d\x2f\x33\x34\x3e\xce\xd6\xd1\x51\xb6\x8e\ \x8e\x32\x30\x33\x43\xd4\x20\xa8\xe2\xb9\x4a\x58\xaf\xbb\xcb\xe2\ \xc3\x29\x6d\xca\x24\xa4\x5c\x28\x44\x3a\x16\x63\x76\x60\x80\xb1\ \x6d\xdb\x18\xdb\xbe\x9d\x89\x91\x11\x56\xba\xba\xc8\x86\xc3\x6b\ \xb4\xaf\x72\x38\xa5\x8d\x99\xb3\x8a\x5d\x5d\x5d\x6c\xda\xb4\x89\ \xee\xee\xee\xaa\xf5\xbb\xda\x14\x69\xe0\x3f\x03\xbf\x0f\xac\xb4\ \x3b\x69\xb5\xf5\x9b\x6a\x90\x55\x14\x15\xad\xfb\xaf\x81\xb8\xd7\ \x32\x59\xc5\xca\xca\x0a\xa7\x4f\x9f\x66\x7e\x7e\x9e\x42\xa1\xd0\ \x52\xf3\xc4\x24\xa9\x48\x26\x43\xdf\xec\x2c\x3b\x8e\x1f\x67\xfb\ \x89\x13\x8c\x9c\x3a\x45\xd7\xd2\x12\xe1\x12\xf3\xd3\x6b\xcd\xc9\ \x69\x08\x29\x15\x21\x09\x41\x36\x1c\x66\x39\x99\x64\x62\xcb\x16\ \x4e\xee\xdc\xc9\x89\xb3\xce\x62\xae\xbf\x5f\x91\x17\xad\x9f\x8d\ \x0c\x04\x02\xf4\xf6\xf6\xb2\x69\xd3\x26\xe2\xf1\x8e\x79\x55\x01\ \x56\x81\xdf\x17\x42\xfc\x27\x29\x65\xba\x9d\x49\xab\x6d\xdf\xde\ \xef\x7e\xf7\xbb\x00\x61\x29\xe5\x2f\xa3\x4c\xc1\xb6\x9f\x0d\x14\ \x42\x90\xcb\xe5\x98\x9e\x9e\x66\x72\x72\xb2\xa5\x7e\xaa\x52\x4d\ \xaa\x77\x6e\x8e\x9d\xc7\x8e\x71\xf6\xbb\xef\xb2\x65\x6c\x8c\xae\ \xa5\x25\x02\x85\xc2\x7b\x4e\xef\x0d\x04\xd3\x24\x2c\x04\x02\x2c\ \x27\x93\x9c\xda\xb6\x8d\x63\xbb\x76\x71\xe2\xac\xb3\x98\x37\xc9\ \xcb\x82\xd9\xd8\x8c\x06\x16\x89\x44\x18\x1c\x1c\x64\x60\x60\x80\ \xa0\x31\xf3\xd9\x88\x16\xe7\x72\x78\xcb\x12\xca\x34\xfc\x53\x20\ \x7b\xeb\xad\xb7\xba\x75\x5f\x5b\x68\xcb\xb7\xd9\x20\xab\x20\x6a\ \x41\xd3\xdf\xa5\x03\xe2\xac\xa4\x94\x2c\x2d\x2d\x31\x31\x31\xc1\ \xe2\xe2\x62\xcb\xcc\x3f\x29\x04\x42\x4a\xba\x96\x96\xd8\x71\xfc\ \x38\xe7\xfe\xf8\xc7\x6c\x3f\x79\x92\xae\xa5\x25\x82\xf9\xfc\x86\ \x24\xa9\x6a\x28\x92\x57\x30\xc8\x52\x32\xc9\xe8\x8e\x1d\x1c\xda\ \xb7\x8f\x13\x67\x9d\xc5\x72\x32\x59\xec\xcb\x56\xf4\x96\x10\x82\ \xee\xee\x6e\x86\x86\x86\xe8\xea\xea\x98\x02\xb7\x0b\xa8\x49\xad\ \x3f\x07\xf2\xed\x48\x5a\x6d\xf7\x66\x1b\x64\x25\x80\x4f\xa1\x6c\ \xeb\x01\xaf\x65\xaa\x05\xd3\xa9\x3e\x39\x39\xc9\xd4\xd4\x14\xd9\ \x6c\xd6\xf1\x5f\xc5\x52\x6d\x6a\xd3\xe9\xd3\xec\x79\xe7\x1d\xf6\ \xbc\xf3\x0e\x83\x53\x53\x84\xb3\x59\x9f\xa4\x2c\xc0\x24\xaf\x6c\ \x38\xcc\xf4\xe6\xcd\x1c\xd9\xbb\x97\xc3\x7b\xf7\x32\x35\x34\x44\ \x2e\x1c\x2e\x86\x64\x38\x09\x29\x25\xe1\x70\x98\xc1\xc1\x41\x36\ \x6d\xda\xd4\x29\x4e\xf9\x19\x94\xaf\xf8\xef\x01\xd9\x6e\xa4\xd5\ \x56\x6f\xb9\x41\x56\x00\xb7\xa1\x58\x7e\xbb\xd7\x32\xd5\xc3\xf2\ \xf2\x32\x63\x63\x63\x2c\x2e\x2e\x3a\xde\xb6\x19\xc3\x14\x5d\x5d\ \x65\xc7\xf1\xe3\xec\x7f\xe3\x0d\xce\x3a\x7a\x94\xc4\xf2\x32\x42\ \x4a\x9f\xa4\x1a\x84\xd9\x77\x2b\x5d\x5d\x1c\xdf\xb5\x8b\x1f\x1d\ \x38\xc0\xc9\x9d\x3b\x49\xc7\x62\xc5\xcf\x1d\xbd\x9f\x10\x24\x93\ \x49\x46\x46\x46\x48\x24\x3a\x22\x74\xf0\x24\xf0\x0b\x42\x88\xfb\ \xa5\x94\xb4\x13\x69\xb5\xcd\x1b\x7f\xff\xfd\xf7\x9b\x9a\xc9\x15\ \xc0\x5f\xd3\xc6\x55\x17\x84\x10\xe4\xf3\x79\xa6\xa7\xa7\x99\x98\ \x98\x20\x93\xc9\x34\xa5\x55\x15\xaf\x35\x49\xc8\xf8\xbf\x6b\x69\ \x89\x5d\x87\x0f\xb3\xff\xf5\xd7\xd9\x76\xe2\x04\x91\x4c\x46\x9d\ \xe6\x13\x95\x23\x30\x89\x29\x13\x8d\x32\xb6\x7d\x3b\x3f\x3a\x70\ \x80\x77\xf7\xec\x61\x39\x99\x5c\xf3\xb9\x53\x88\x44\x22\x0c\x0d\ \x0d\xd1\xdf\xdf\xdf\xd6\x15\x21\x0c\xdf\xd9\x9b\xc0\x67\x31\x4a\ \xd3\xdc\x72\xcb\x2d\x5e\x8b\x05\xb4\x09\x61\x3d\xf0\xc0\x03\xe6\ \xee\x1e\xe0\x7f\x49\x29\xaf\x6d\xb7\x5c\xba\x52\x07\x68\x2a\x95\ \xe2\xd4\xa9\x53\xcc\xcd\xcd\xad\x59\xbc\xa1\x14\x8d\x38\x6d\x4d\ \x22\x4a\x2e\x2e\xb2\xf7\xad\xb7\xb8\xf0\xd5\x57\x19\x1a\x1f\x27\ \x94\xcb\xa1\x97\x10\x99\x0f\x87\x61\x98\x83\xf9\x50\x88\xd3\x23\ \x23\xbc\x71\xd1\x45\xbc\x73\xfe\xf9\x2c\x75\x77\x03\xd5\x89\xab\ \x91\xef\x58\xd3\x34\xfa\xfa\xfa\x18\x1e\x1e\x26\x12\x69\xfb\x70\ \xc2\x27\x81\xcf\x01\x87\xa0\x3d\x48\x2b\xd8\x7c\x13\x8e\x61\x04\ \x95\x2a\xd0\x76\x64\x05\xef\xbd\x9c\x0b\x0b\x0b\x8c\x8e\x8e\xb2\ \xb2\xb2\xb2\xe6\xb8\x95\x6b\xab\x41\x96\x68\x54\xe7\xfe\xf8\xc7\ \x1c\x7c\xf9\x65\x86\x4f\x9d\x2a\xce\xf4\xe9\x9d\x15\xd7\xd3\x79\ \x30\x7c\x80\x81\x42\x81\xad\x27\x4e\x30\x7c\xea\x14\x17\xbc\xf2\ \x0a\xaf\x5f\x72\x09\xef\x9c\x7f\x3e\x2b\x16\x34\x2e\xab\xef\xac\ \xae\xeb\xcc\xcc\xcc\x90\x4a\xa5\xd8\xba\x75\x2b\xc9\x64\x5b\x4f\ \x7e\x5f\x8b\x1a\x93\x5f\x06\xc6\xbd\x16\x06\xda\x40\xc3\x32\xb4\ \xab\x24\x2a\x21\xf3\x8b\xb4\x69\x59\x63\x5d\xd7\x99\x9a\x9a\x62\ \x7c\x7c\xdc\x39\xc7\xba\x31\x50\xe2\xab\xab\x9c\xfb\xd6\x5b\x1c\ \x7c\xe9\x25\x46\xc6\xc6\x8a\xb3\x7d\x3e\xbc\x83\x39\xbb\x38\xbe\ \x75\x2b\xaf\x5e\x76\x19\x87\xf6\xed\x23\x15\x8f\x3b\x6a\x26\x86\ \xc3\x61\x86\x87\x87\xe9\xef\xef\x6f\xe7\x60\x53\x1d\xf8\x4b\x54\ \xa1\x81\x25\xaf\xb5\x2c\x4f\x47\x85\x41\x56\x01\x54\xe5\x85\xdf\ \xa1\x4d\xa3\xd8\xb3\xd9\x2c\xe3\xe3\xe3\x4c\x4f\x4f\x57\x35\x01\ \x2b\xa1\x56\x82\xad\x14\x82\x60\x2e\xc7\x59\x47\x8f\x72\xe9\xb3\ \xcf\x72\xd6\xd1\xa3\x04\xb3\x59\x64\xfb\xbe\xb8\x1b\x12\x42\xd7\ \xc9\x87\xc3\x1c\xdf\xb5\x8b\x17\xaf\xba\x8a\xe3\xbb\x76\x91\x0f\ \x85\x2a\x97\xc9\x29\x4b\x84\xb6\x6a\x22\x0e\x0e\x0e\xb2\x79\xf3\ \x66\xc2\xe1\x70\x5b\xcd\x22\x9a\xcf\x23\x84\x48\x03\xbf\x29\x84\ \xf8\x13\x29\x65\xe1\xc3\x1f\xfe\xb0\x77\x32\x79\x75\xe3\x07\x1f\ \x7c\x90\x42\xa1\x80\xa6\x69\x1f\x05\xfe\x02\x18\x6a\xa7\xcc\x77\ \xf3\x65\x5b\x59\x59\x61\x74\x74\x94\x85\x85\x85\x35\xc7\xa1\xc1\ \x60\x40\x21\x10\xba\xce\xd0\xc4\x04\x97\x3e\xf7\x1c\x7b\x7f\xf4\ \x23\x62\xab\xab\xbe\x46\xd5\xe6\x10\x52\x92\x8a\xc7\x79\x7b\xff\ \x7e\x5e\xb9\xf2\x4a\x4e\x8f\x8c\x20\x8d\xdc\xc5\xaa\xd7\xd8\xf8\ \x4e\xbb\xbb\xbb\xd9\xb2\x65\x0b\xb1\x98\xe5\x45\x9e\xdc\xc6\x69\ \xd4\xb2\x79\xdf\x04\xf0\x8a\xb4\x3c\x19\x25\x0f\x3e\xf8\xa0\xb9\ \x7b\x10\xf8\x07\xda\x74\x91\xd3\xc5\xc5\x45\x4e\x9e\x3c\xc9\xca\ \xca\x8a\x23\x26\xa0\x14\x82\xae\xe5\x65\x0e\xbe\xf8\x22\x17\xbd\ \xf0\x02\xbd\x73\x73\xc5\xe3\x3e\xda\x1f\x26\x39\xcd\xf7\xf7\xf3\ \xea\xe5\x97\xf3\xfa\x65\x97\xb1\x9c\x4c\xa2\x39\xf4\x23\x1b\x8f\ \xc7\xd9\xba\x75\x6b\x3b\x07\x9a\xbe\x0e\xdc\x83\xb1\xc2\xb4\x17\ \xa4\xe5\x25\x61\x0d\xa3\xca\xb5\xb6\x65\x55\xfc\xd9\xd9\x59\x46\ \x47\x47\x49\xa7\xd3\xb6\xc9\xaa\x34\x4c\xa1\xd4\xa1\xbb\xf3\xdd\ \x77\xb9\xea\xc9\x27\xd9\x71\xec\x18\x9a\xe1\x50\xf7\xd1\x79\x10\ \x52\xa2\x07\x02\x9c\x38\xfb\x6c\x9e\xfb\xc0\x07\x38\xb1\x7b\x37\ \x85\x40\xc0\x11\xff\x56\x24\x12\x61\xcb\x96\x2d\xf4\xf6\xf6\x7a\ \xfd\x98\xd5\x70\x1f\xaa\x2c\xf9\xc4\x86\x20\x2c\x83\xac\x62\xc0\ \xef\x01\xbf\x4c\x9b\x39\xd9\x75\x5d\x67\x7a\x7a\x9a\xb1\xb1\x31\ \xf2\xf9\x7c\xf1\x78\xa3\xa6\xa0\x14\x82\x9e\xb9\x39\x2e\x79\xee\ \x39\x0e\xbc\xf4\x12\x89\xe5\x65\x9f\xa8\xd6\x09\x84\x94\xac\x76\ \x75\xf1\xfa\xa5\x97\xf2\xf2\x55\x57\xb1\xd0\xd7\xe7\x08\x69\x05\ \x83\x41\x46\x46\x46\x18\x18\x18\x68\xc7\x52\xd9\x3a\xf0\xa7\x42\ \x88\xdf\x90\x52\xa6\xdc\x26\x2d\x57\x7b\xe3\xa1\x87\x1e\x22\x10\ \x08\x90\xcf\xe7\x3f\x8f\x2a\xd1\xda\x56\xba\xaf\xae\xeb\x4c\x4c\ \x4c\x30\x31\x31\xd1\x74\x85\x05\xb3\x0e\xd5\xce\x23\x47\xb8\xf6\ \xb1\xc7\xd8\x7a\xe2\x84\x73\xd1\xe9\xe6\xa0\xa8\x34\x38\x4a\xdb\ \x2f\xff\xdc\x8f\xe5\x72\x1c\xe6\x77\x7a\x6a\xc7\x0e\x9e\xba\xf1\ \x46\x8e\xef\xde\x5d\xac\xcb\xd5\x0c\x02\x81\x00\x43\x43\x43\x6c\ \xde\xbc\xb9\x1d\x67\x10\x97\x51\x13\x65\x7f\x05\x70\xf3\xcd\x37\ \xbb\x76\x63\xd7\xde\xde\x87\x1e\x7a\xc8\xdc\xbd\x1c\xf8\x2a\x70\ \x8e\x6b\x4f\x69\x01\x85\x42\x81\x53\xa7\x4e\x71\xfa\xf4\xe9\xa6\ \x1d\xff\x66\xa9\x97\x83\x2f\xbc\xc0\x95\x3f\xf8\x01\xc9\xc5\xc5\ \xe6\x89\xaa\xa4\x8c\x0a\xb1\x98\xda\x12\x09\x18\x1c\x44\x0c\x0d\ \xc1\xd0\x10\x0c\x0c\x40\x28\xa4\xce\x2b\x14\x60\x69\x09\xe6\xe7\ \x61\x6a\x0a\x79\xf2\x24\xcc\xcc\xc0\xe2\x22\xe4\xf3\x3e\x79\x39\ \x0c\x21\x25\x4b\xdd\xdd\x3c\xff\x81\x0f\xf0\xda\x65\x97\x91\x89\ \x46\x9b\xae\x08\xa1\x69\x1a\x9b\x36\x6d\x62\x78\x78\xb8\x1d\x49\ \xeb\x30\xf0\x49\xe0\x79\x70\x8f\xb4\xdc\x0e\x1c\x1d\x44\x65\x83\ \xb7\x1d\x59\x8d\x8d\x8d\x31\x39\x39\xe9\x08\x59\xf5\xcf\xcc\xf0\ \xbe\xc7\x1f\x67\xdf\xeb\xaf\x13\xca\xe5\x1a\x27\x2b\x33\x84\x22\ \x18\x84\x9e\x1e\xd8\xbd\x1b\x71\xf1\xc5\x70\xe0\x00\xec\xd8\x81\ \xe8\xef\x87\x78\x1c\x22\x11\xb5\x05\x02\x8a\xa8\xcc\x2d\x9f\x87\ \x4c\x06\x52\x29\xc4\xd2\x12\x72\x7c\x1c\xde\x78\x03\xf9\xf2\xcb\ \xf0\xe6\x9b\x8a\xc0\x4c\x12\xf4\xd1\x14\xa4\x10\x24\x17\x17\xf9\ \xc0\x83\x0f\xb2\x69\x62\x82\x67\x6e\xb8\x81\xb9\xc1\x41\xcb\xd5\ \x20\x2a\x69\xf3\xba\xae\x17\xdf\xc9\xe1\xe1\xe1\x76\x4b\xe7\x39\ \x07\x35\x96\x3f\x07\x4c\xbb\x75\x53\x57\xde\x54\x43\xbb\x0a\x00\ \xbf\x81\xaa\x6d\xd5\x36\x11\xf6\xf9\x7c\x9e\xd1\xd1\x51\xa6\xa7\ \xa7\x9b\x23\x2b\xa3\x54\xc9\x59\x47\x8e\x70\xed\xa3\x8f\xb2\xe5\ \xe4\xc9\xc6\xda\x31\x35\xa9\x70\x18\xb6\x6c\x41\x1c\x38\x00\x17\ \x5f\xac\x88\xea\xac\xb3\x14\x71\x05\x02\x6b\xcd\x42\x5d\x5f\x4b\ \x54\xe6\x66\x1e\x2f\xf9\x2b\x75\x1d\x56\x56\xe0\xe8\x51\x78\xfc\ \x71\xe4\x0f\x7e\x00\x13\x13\xc5\x67\xf0\xe1\x0c\xc6\xb7\x6f\xe7\ \xa9\x9b\x6e\xe2\xf8\x39\xe7\x34\x6d\x22\x0a\x21\x18\x18\x18\x60\ \xcb\x96\x2d\xed\x46\x5a\x79\x54\x0d\xad\xdf\x03\x0a\x6e\x68\x59\ \x2d\x7f\x43\x4b\x4c\xc1\x5b\x81\xbf\x01\x86\x5a\xfe\x54\x16\x91\ \xcf\xe7\x39\x79\xf2\x24\x33\x33\x33\x15\xc9\xca\xaa\xa3\x5d\x0a\ \x41\x24\x9d\xe6\xe0\x0b\x2f\x70\x45\xa3\x26\xa0\x49\x54\x89\x04\ \x5c\x78\x21\xe2\xb6\xdb\x10\x1f\xf8\x00\x0c\x0f\x2b\x2d\xca\xfc\ \xbc\x54\x4e\x93\xac\xaa\x11\x56\x19\x71\xc9\x52\x02\xd3\x75\xc8\ \xe5\xe0\xf0\x61\xe4\x37\xbe\x01\xcf\x3d\xa7\xb4\x31\x9f\xb4\x1c\ \x81\x90\x92\x65\xd3\x44\xbc\xfc\x72\x4b\x26\x62\xcd\xf6\x2c\x90\ \x96\xdb\x0e\x7a\x63\x4c\x9c\x06\x3e\x23\xa5\xfc\xae\x10\x82\x9b\ \x6e\xba\xa9\xa5\xf7\x6c\xb9\xa6\x63\x74\xe2\x2e\xe0\x37\xa5\x94\ \x43\x5e\xcf\x7a\x98\xc4\x93\xcf\xe7\x19\x1b\x1b\x63\x66\x66\xa6\ \x54\xce\x7a\xcf\x71\x66\x7b\x86\x09\x78\xf5\xe3\x8f\x73\xfe\x6b\ \xaf\x11\xb4\x6b\x02\x9a\x2f\xf1\xc0\x00\xe2\xaa\xab\xe0\xf6\xdb\ \x11\x57\x5e\x09\xfd\xfd\xef\x7d\x5e\xb2\x72\xcd\x9a\xeb\xaa\x69\ \x54\x65\xc7\x64\x8d\xcf\xd8\xb9\x13\xf1\xb9\xcf\xc1\xce\x9d\xc8\ \x6f\x7e\x53\xf9\xbd\x7c\xd2\x6a\x1a\x52\x08\xba\x16\x17\xb9\xf6\ \xc1\x07\x19\x9c\x98\xe0\xd9\x12\x13\xd1\x0a\x2a\xbd\x6f\xb3\xb3\ \xb3\x68\x9a\xc6\xc8\xc8\x48\x5b\x68\x5a\x86\x8c\x43\xa8\x28\xf8\ \xb7\x81\x77\x5b\x7e\xcf\x56\x36\xfe\xf0\xc3\x0f\x83\x5a\xe1\xe6\ \x8f\x50\xab\xdd\xb4\xc5\x48\x70\xca\x67\x25\x85\x60\xfb\xb1\x63\ \xdc\xf0\xc0\x03\x6c\x3d\x71\xa2\x31\xa2\xda\xb2\x05\xf1\xe1\x0f\ \x23\x6e\xbb\x0d\xf6\xef\x57\x1a\x96\xae\xd7\x5e\x3c\xb4\x9e\x09\ \x58\xb2\xc9\xd2\x63\xb5\xae\xcb\xe5\xe0\x07\x3f\x40\xfe\xdf\xff\ \xab\x1c\xf3\x3e\x69\x39\x06\x21\x25\xa7\x76\xee\xe4\x89\x5b\x6f\ \x65\x74\xd7\xae\xaa\x69\x3d\x96\xda\x12\x82\xc1\xc1\x41\x46\x46\ \x46\xda\xc9\x11\x2f\x51\xab\xef\xfc\x3a\x90\x69\xa5\x96\xd5\xb2\ \xb7\xd2\x20\x2b\x80\x8f\xa2\x4c\xc1\xbe\x96\x3d\x85\x0d\xe8\xba\ \xce\xd8\xd8\x98\x23\xb3\x81\xbb\xdf\x79\x87\x0f\xde\x7f\x3f\x03\ \x53\x53\xf6\xc8\x4a\xd7\x21\x99\x44\xdc\x74\x13\xe2\xd3\x9f\x86\ \x0b\x2e\x50\xb3\x7b\xf5\x88\xaa\x96\xbf\xaa\xdc\xfc\xab\xa5\x55\ \x55\xbb\x2e\x9f\x87\x47\x1f\x55\x9a\x96\x6f\x1e\x3a\x0a\x21\x25\ \x33\x9b\x37\xf3\xc4\xed\xb7\x73\xf4\xbc\xf3\x9a\x6b\x4b\x08\x36\ \x6f\xde\xcc\xd0\xd0\x50\x3b\x91\xd6\x1c\xf0\x19\x8c\xd4\x9d\x56\ \x91\x56\xab\x4d\xc2\xed\xc0\xaf\xd1\x46\x64\x35\x3e\x3e\xde\x1c\ \x59\x19\xb9\x80\xfb\x5e\x7f\x9d\xeb\x1e\x7c\x90\x9e\xf9\x79\xeb\ \x64\xa5\xeb\x8a\x98\x2e\xbd\x14\xf1\x99\xcf\x20\xae\xbf\xfe\x3d\ \x8d\xaa\x92\xd9\x57\x7e\xad\x45\xe2\x91\xf5\x88\xa9\x16\xd9\x5d\ \x79\x25\x8c\x8e\xc2\xd3\x4f\x7b\xfd\x75\xad\x2b\x48\x21\x18\x98\ \x9c\xe4\xc6\x7b\xef\xe5\xc9\x5b\x6f\xe5\xed\x83\x07\x55\xa2\x7b\ \x03\xef\xa1\x94\x92\xa9\xa9\x29\x34\x4d\x63\xf3\xe6\xcd\xed\x12\ \x5c\xda\x87\x1a\xeb\x2f\xa1\x2a\x96\xb6\x04\x2d\x79\xd2\x87\x1f\ \x7e\x18\x21\x44\x50\x4a\xf9\xef\x51\xcb\x73\xb5\xc5\xcf\xc0\xe9\ \xd3\xa7\x19\x1d\x1d\xad\x58\x71\xc1\x6a\x81\xbd\x60\x3e\xcf\x85\ \x2f\xbe\xc8\xfb\x1f\x79\xc4\x7a\xd4\xba\xf9\x52\xee\xd8\x81\xf8\ \x99\x9f\x41\xdc\x75\x97\x72\xa6\x97\x3b\xd1\xab\x5d\x6b\x91\x7c\ \x64\xf9\xac\xa0\x05\x4d\xec\x8c\x4d\x4a\x18\x1d\x45\xfe\xdd\xdf\ \xc1\xd4\x94\xaf\x65\x39\x0c\x33\x3a\xfe\xe9\x9b\x6f\xe6\xf5\xcb\ \x2f\xa7\x10\x0c\x36\xec\x8c\x0f\x04\x02\x6c\xd9\xb2\x85\xc1\xc1\ \x41\xaf\x1f\xcb\x84\x8e\x5a\xdf\xf0\xdf\x03\xf9\x1b\x6f\xbc\xd1\ \xf1\x1b\x38\xfe\x36\x3e\xf2\xc8\x23\xe6\xee\x87\x80\xff\x8d\xca\ \x19\xf4\x1c\xb3\xb3\xb3\x1c\x3f\x7e\xbc\x98\x6e\xd3\x48\x95\x85\ \x50\x36\xcb\xa5\x4f\x3f\xcd\x55\x8f\x3f\x4e\x24\x9d\xb6\x4e\x56\ \x91\x08\xe2\x96\x5b\x10\x5f\xf8\x02\x9c\x7f\x3e\x68\xda\x7b\x31\ \x56\xb5\x60\x65\x06\xb0\x34\x5c\xc1\xae\x36\x55\xeb\xb3\x47\x1e\ \x41\x3e\xfa\xa8\xd7\x5f\xdb\xba\x84\x90\x92\x4c\x2c\xc6\x73\xd7\ \x5f\xcf\x4b\xef\x7f\x3f\x39\x63\xe9\xb1\x46\x10\x0a\x85\xd8\xb6\ \x6d\x5b\x3b\xe5\x1e\x4e\x00\x3f\x07\x3c\x0a\xe0\x34\x69\xb5\xca\ \x24\xdc\x84\x72\xc0\xb5\x05\x59\x2d\x2e\x2e\x32\x3a\x3a\xda\x70\ \xba\x8d\x14\x82\x68\x2a\xc5\x95\x8f\x3f\xce\xa5\xcf\x3c\x43\xc8\ \x58\xa9\xa6\x2e\x74\x5d\x45\xa2\x7f\xee\x73\x88\x9f\xfb\x39\x15\ \x43\x65\x12\x42\xcd\x1b\x96\x69\x55\x75\xc8\x45\x36\x4b\x4e\x95\ \xb4\xac\x73\xce\x51\xa1\x0e\xbe\x03\xde\x71\x48\x21\x88\xa4\x52\ \x5c\xf5\xe8\xa3\x44\xd2\x69\x9e\xbb\xe1\x06\xd2\xb1\x58\x91\xb4\ \xec\xe4\xad\xe6\xf3\x79\xc6\xc7\xc7\x09\x06\x83\xed\x52\xe5\x61\ \x18\x35\xf6\x5f\x03\xa6\x9c\x6e\xdc\x51\x53\xcd\xd0\xae\x04\xaa\ \x04\xc5\x0d\x2e\x74\x4e\x5d\xac\xae\xae\x32\x3a\x3a\x4a\xc6\x58\ \xc0\xc1\x2e\xa4\x10\x24\x96\x97\xb9\xee\x81\x07\xb8\xfc\xa9\xa7\ \xec\x91\xd5\x79\xe7\x21\x7e\xef\xf7\x10\x5f\xfc\x22\x24\x93\xf5\ \xfd\x54\xe6\x75\x66\x94\xba\xb9\xe5\x72\x6b\xff\x37\x36\x59\x28\ \x20\xf3\xf9\x33\xcf\x6f\x76\xcb\xe5\xa0\xb7\x17\x46\x46\x1a\xf2\ \xb1\xf8\xa8\x8f\xa2\xc6\xfe\xe4\x93\x7c\xe0\xfe\xfb\x49\x2c\x2f\ \x83\xa6\x9d\x41\x4e\x56\x7e\x60\x33\x99\x0c\xa7\x4e\x9d\x22\x9d\ \x4e\x7b\xfd\x58\x26\x6e\x00\xee\x09\x06\x83\xe2\x51\x87\xb5\xf4\ \x56\x68\x58\xfb\x50\xe5\x27\x42\x2e\x74\x4c\x55\x98\xeb\x05\x9a\ \xf5\xd7\x1b\xd5\xac\x12\xcb\xcb\xdc\xf0\x9d\xef\xb0\xef\xd5\x57\ \xad\x25\x2f\x4b\xa9\x22\xd1\x3f\xf8\x41\xb4\x7f\xf1\x2f\x54\xa8\ \x82\x1d\x5f\x95\xdd\x20\x50\x2b\x5a\x54\x23\x9a\x96\x10\x88\x4d\ \x9b\x90\x6f\xbf\xed\xe5\xd7\xb8\xae\x21\x85\x40\xcb\xe7\xb9\xe0\ \xb9\xe7\x08\x65\xb3\x3c\x71\xc7\x1d\xac\x24\x93\x0d\x99\x87\xab\ \xab\xab\x9c\x3a\x75\x8a\x1d\x3b\x76\x14\xd7\x3f\x6c\xa5\x33\xbe\ \x4e\xfb\x21\xe0\x0b\x85\x42\xe1\x01\xe0\x47\x4e\xde\xd7\x31\x0d\ \xeb\xd1\x47\x1f\x45\x08\x11\x12\x42\x7c\x51\x08\x71\x9e\x10\x02\ \xa7\x37\xc0\xf2\xb9\xe6\x8c\xe0\xe2\xe2\x62\x53\x66\xe0\xfb\x1f\ \x7e\xb8\x48\x56\x16\xbe\x45\x48\x24\x10\x9f\xfd\x2c\xda\x1f\xfc\ \x81\x22\xab\x7a\xa1\x0a\xe6\x75\xa6\x96\x94\xcb\x55\xd5\xa8\x30\ \x34\x2a\x59\x49\xa3\xaa\x76\x8d\xd5\x73\xca\x3f\x2b\x14\x94\x09\ \x1b\x6c\x9b\x2c\xaa\xf5\x09\x23\xa5\x6b\xef\x2b\xaf\xf0\xbe\x87\ \x1e\x22\x92\x4a\x35\x9c\x7b\xba\xb8\xb8\xc8\xe4\xe4\x24\xba\xae\ \xb7\x7c\xe6\xd0\x42\xfb\xe7\xa1\xd6\x68\x08\x39\xa9\x65\x39\x42\ \x58\x25\x02\x5d\x03\x7c\xc2\xf9\xee\x51\xb0\xf3\x25\x4c\x4d\x4d\ \x31\x3d\x6d\x2f\x27\x53\x08\xa1\x66\x21\x84\x20\x9c\xcb\x71\xd5\ \x13\x4f\x70\xe1\x8b\x2f\x5a\x23\x2b\x33\xb6\xea\x57\x7e\x05\xf1\ \xab\xbf\x0a\x9b\x36\x59\x77\xac\x57\x20\xa6\x8a\x26\x60\x3d\xe2\ \xa9\x45\x76\x56\x4d\xc1\xd2\xfd\x48\x44\x11\x96\x6f\x16\xb6\x1c\ \x42\xd7\xd9\xff\xfc\xf3\x5c\xf1\xbd\xef\x11\xca\x66\xcf\xf0\x1b\ \x5a\xfd\xe1\x9e\x99\x99\x61\x76\x76\xd6\xeb\xc7\x31\xf1\x09\x14\ \x27\xe0\x14\x69\x39\xf9\xf3\x99\x04\x7e\x89\x36\xc8\x15\x5c\x58\ \x58\x60\x7c\x7c\xfc\x8c\x5f\x1a\x4b\x6a\xb2\xa6\x11\xc8\xe7\xb9\ \xf4\xa9\xa7\xb8\xe4\xe9\xa7\x09\x58\x59\xc1\x46\x4a\xe8\xee\x46\ \x7c\xe5\x2b\x88\x7b\xee\x79\x2f\x08\xb4\xde\x35\xad\x0a\x02\xb5\ \x62\x22\xd6\xbb\x56\xd7\x95\x69\xeb\x3b\xdc\xdd\x81\x10\x04\xf2\ \x79\x2e\x7e\xea\x29\xb2\xb1\x18\x2f\x5e\x77\x9d\xaa\x62\x5a\xf1\ \x54\x51\xa5\x09\x51\xac\xf0\x10\x89\x44\xda\x61\x09\xb1\x21\x14\ \x27\xbc\x08\x2c\x39\xd1\x60\xd3\x1a\x56\x09\x73\xde\x01\x78\xbe\ \xd2\x62\x3a\x9d\x66\x6c\x6c\x8c\x5c\x2e\xd7\x90\x03\x53\xe8\x3a\ \x17\xbe\xf0\x02\x57\x3e\xfe\xb8\x35\x07\xbb\x94\x4a\xb3\xfa\xe7\ \xff\x5c\xcd\x04\x9a\xf5\xa8\x6a\xc1\xd4\xaa\x2c\x68\x44\x0d\x3b\ \xd5\x9b\xd5\xb4\x72\x39\x25\xa7\x4f\x58\xae\xc1\x74\xc4\x5f\xfe\ \xd8\x63\x5c\xf0\xdc\x73\xaa\x56\xbc\x0d\xb7\x88\xf9\x59\x2e\x97\ \x3b\x63\x45\xf2\x56\xb8\x68\x2c\x6e\xb7\x08\x21\xee\x00\xf8\xde\ \xf7\xbe\xd7\x74\x1f\x35\xad\x61\x19\x1d\x32\x02\x7c\x59\x4a\x99\ \xf0\x22\xea\xd6\xd4\x9c\x0a\x85\x02\xe3\xe3\xe3\xac\xae\xae\x36\ \x6c\xc3\xef\x7d\xed\x35\xde\xff\xf0\xc3\xd6\xe2\xac\x4a\xc9\xea\ \x9e\x7b\x54\x49\x98\x46\x53\x6b\x5a\x11\x04\xda\xec\x67\x99\x8c\ \x35\xb3\xd6\x87\x63\x30\x43\x1e\xae\x7e\xf0\x41\xb2\xb1\x18\x6f\ \x5f\x7c\xf1\x9a\xcf\xad\xbe\xd7\xab\xab\xab\x4c\x4d\x4d\xb1\x75\ \xeb\x56\xaf\xd3\x77\x12\xc0\x97\x85\x10\x8f\xe1\xc0\x62\xac\x4d\ \x3d\x49\x09\x63\xde\x09\x5c\xee\x55\x8a\x80\x79\xdf\xe9\xe9\x69\ \xe6\x8c\x95\x68\xec\x42\x0a\xc1\xae\xb7\xdf\xe6\xba\xef\x7e\x97\ \xb8\x95\x08\x76\x29\xa1\xab\x0b\xf1\xcb\xbf\x6c\x8d\xac\x2a\x85\ \x2b\x54\xf1\x3f\xad\x71\xaa\x3b\xe9\x97\xb2\xe3\xf3\x2a\x14\x20\ \x95\xf2\xb5\x2c\x0f\x20\x85\x20\xbe\xbc\xcc\x35\xdf\xf9\x0e\x67\ \xbd\xf5\x96\x25\x27\x7c\x25\x0d\x6c\x7e\x7e\xbe\xe1\xf1\xe0\x30\ \x2e\x47\x71\x44\xd3\x5a\x96\x13\x3e\xac\x6d\xc0\xcf\xe3\x61\x18\ \x83\x10\x82\xa5\xa5\x25\x26\x26\x26\x6c\x2d\x74\x6a\x5c\x0c\x42\ \xb0\xfd\xe8\x51\xae\xff\xce\x77\xe8\xb6\x92\x1b\x28\x25\x04\x83\ \x88\x4f\x7f\x1a\xf1\xa9\x4f\xd5\x26\x2b\xab\x41\xa0\xf5\xfc\x55\ \xcd\xfa\xac\xec\xb6\x2b\x25\x72\x69\x49\x91\x97\x0f\xd7\x21\x85\ \xa0\x7b\x6e\x8e\x0f\x7c\xfb\xdb\x64\xa3\x51\x4e\xed\xde\x6d\x69\ \xf2\xa7\x54\x69\x30\xfd\x59\xb1\x58\x8c\x78\x3c\xee\xe5\xe3\x84\ \x50\x1c\xf1\x2d\x60\xb4\x99\x86\x1a\xd6\xb0\x4a\x98\xf2\x2e\xe0\ \xe2\x46\xdb\x71\x02\xd9\x6c\x96\x53\xa7\x4e\x91\xcd\x66\xd7\x1c\ \xb7\x14\x2a\x21\x04\x7d\xd3\xd3\x5c\x77\xff\xfd\x0c\x4c\x4e\x5a\ \x4f\xb7\xf9\xe0\x07\x11\x9f\xfd\xac\x9a\x49\xab\xf6\x22\xd9\x09\ \x02\x35\x35\x2b\x8b\x5a\x98\xed\x19\xc2\x42\xc1\xde\xb5\xd9\xac\ \x8a\x72\xf7\x4d\x42\xcf\x20\x85\xa0\xff\xf4\x69\xae\xbd\xef\x3e\ \x7a\xed\x56\x04\x31\x90\xcd\x66\x39\x7d\xfa\xf4\x9a\x15\xa0\x3c\ \xc2\xc5\xc0\x5d\xba\xae\xf3\xd8\x63\x8f\x35\xdc\x48\xb3\xc6\xed\ \x4e\xe0\xd3\x78\x58\xf2\x58\x4a\xc9\xe4\xe4\x64\x31\xde\xaa\xdc\ \x09\x09\x35\x9c\x94\x9a\x46\x24\x93\xe1\xaa\xef\x7d\x8f\x2d\xc7\ \x8f\xdb\x8a\x60\xd7\xbe\xf2\x15\xb5\xe8\x43\xa5\x01\x5d\x5a\x5c\ \xcf\x02\x41\x14\x4d\x40\xab\xe6\x5f\x23\x26\x62\x2e\x57\xdf\x79\ \x5f\xda\x6e\x3a\x0d\xc6\x6a\xd7\x3e\xbc\x83\x14\x82\x91\x63\xc7\ \xb8\xe2\x91\x47\x08\x5b\xcd\x5f\x2d\xc3\xd2\xd2\xd2\x9a\x42\x95\ \x1e\x6d\x41\x21\xc4\xa7\x03\x81\xc0\xce\x66\xfa\xa3\x21\xc2\x7a\ \xec\xb1\xc7\x98\x9e\x9e\x46\x08\xf1\xd3\x42\x88\x03\xb5\xce\x6d\ \x75\x47\xac\xac\xac\x14\xe3\xad\x6a\xcd\x9e\x54\x7c\x78\x5d\xe7\ \xc0\x73\xcf\x71\xde\xab\xaf\x5a\xd7\xac\xfa\xfb\x11\x5f\xf9\x8a\ \x4a\x62\xae\x45\x56\xcd\x06\x81\xd6\x23\xa5\x46\x34\x2d\x3b\xed\ \x2e\x2f\xfb\x84\xd5\x26\x90\x42\x70\xee\xcb\x2f\x73\xc1\xb3\xcf\ \xa2\x35\xa0\xf1\x4a\x29\x99\x9d\x9d\x6d\x6a\x32\xca\x21\x1c\x00\ \x7e\x1a\x68\x58\xcb\x6a\x58\xc3\xda\xb4\x69\xd3\xd9\xa8\x9c\xc1\ \x40\xbd\xe8\xf4\x56\x21\x9f\xcf\x33\x31\x31\x51\x31\x84\xa1\x1e\ \xa4\x10\xec\x38\x7c\x98\xcb\x9e\x78\x82\x60\x2e\x67\xe1\x02\x09\ \xa1\x10\xe2\xe7\x7f\x1e\x71\xe3\x8d\x95\xcd\xc0\x46\x82\x40\x5b\ \xb5\xd9\x89\x6a\xaf\x44\xa6\xd3\xd3\x7e\x11\xbf\x36\x42\x30\x97\ \xe3\x92\xc7\x1f\x67\xfb\xa1\x43\xaa\x8e\x16\x95\x1d\xed\xd5\xb6\ \x5c\x2e\xc7\xe4\xe4\xa4\xd7\xa6\x61\x00\xc5\x19\x67\x37\xda\x80\ \x6d\xc2\x2a\x61\xc6\x3b\x81\xfd\x5e\x3e\xfd\xcc\xcc\x8c\xad\xd4\ \x1b\x33\x92\x5d\x6a\x1a\x7d\x33\x33\xbc\xef\xa1\x87\xe8\xb2\xba\ \x60\x84\x94\x70\xcd\x35\x6a\x46\xb0\x3c\xfa\xbb\x54\xab\xaa\x43\ \x0e\xd2\x74\xac\x3b\xa1\x11\x59\xf9\xdc\xee\x67\x85\x82\x32\x07\ \xa7\xa6\xac\x25\x6b\xfb\x70\x05\x52\x08\xba\x16\x16\xb8\xea\x81\ \x07\xe8\x9b\x9a\x52\x25\x8a\x0c\x58\x7d\xff\x97\x96\x96\xda\x61\ \xd6\x70\x3f\xc6\x8c\x61\x23\x5a\x56\xa3\x1a\xd6\x30\xf0\x71\x14\ \x63\xba\x0e\xd3\x14\x34\x6b\xb2\x5b\xfd\xa5\x01\x45\x56\x91\x74\ \x9a\x2b\x1f\x7d\x94\x11\xab\x7e\x2b\x29\xa1\xa7\x47\x91\xd5\xc0\ \xc0\x5a\xb2\x2a\x0d\x02\xad\x43\x0e\x0d\x6b\x55\xcd\x84\x35\x34\ \xd2\xee\xe2\x22\xcc\xce\xfa\xda\x55\x9b\x41\x0a\xc1\xf0\xb1\x63\ \x5c\xde\xa0\x3f\x4b\x4a\xc9\xf4\xf4\x34\xe9\x74\xda\xb3\x80\x52\ \x94\x45\xf6\x71\x21\xc4\x70\x23\x16\x98\x2d\xc2\x7a\xfc\xf1\xc7\ \xcd\x87\xfc\xb0\x10\xe2\x22\xaf\x1c\x78\x85\x42\x81\xc9\xc9\xc9\ \x35\x91\xbc\x66\xe7\xd7\x7d\x60\x5d\xe7\xc2\xe7\x9e\xe3\xbc\x57\ \x5e\xb1\x3e\x20\xa5\x44\x7c\xe8\x43\x88\xab\xaf\x7e\xcf\x6f\x55\ \x49\xab\xaa\xa2\xf1\x58\x2a\x03\xd3\x0a\x6d\xa9\x11\x2d\x2d\x97\ \x43\x4e\x4c\x28\x73\xd0\x47\x5b\xe2\xdc\x97\x5e\x62\xff\xb3\xcf\ \x22\x1a\xf0\x67\x65\x32\x19\xa6\xa7\xa7\x5d\x49\x90\xae\x04\xe3\ \x9e\x17\x01\x1f\x86\xf7\x38\xc5\x2a\x6c\x6b\x58\x42\x88\x1e\xe0\ \x6e\xd4\x6a\x38\x9e\x3c\xf0\xe2\xe2\x22\x0b\x0b\x0b\x0d\xf9\xad\ \xb6\xdb\xf1\x5b\x81\x22\xa6\xa1\x21\xc4\x27\x3f\xa9\xea\xaf\x97\ \xc6\x55\x59\x20\x01\x57\x83\x40\x1d\xd0\xb6\xe4\xe2\x22\x9c\x3e\ \xed\x27\x3c\xb7\x2b\x84\x50\xfe\xac\xc7\x1e\x63\xc7\x3b\xef\x9c\ \xa1\x65\x55\xfb\x91\xd7\x34\xad\xb8\x2d\x2c\x2c\xb0\xbc\xbc\xec\ \xa5\x03\x3e\x82\xe2\x90\x1e\xbb\x17\x5a\x26\xac\x12\x26\xfc\x00\ \xf0\x3e\xaf\x9e\x34\x9b\xcd\x36\xe4\x3c\x34\x03\xf1\xde\xf7\xd0\ \x43\x74\x2d\x2c\xd8\x52\xa7\xc5\xed\xb7\xc3\x45\x17\xad\x0d\x55\ \xa8\x17\xf3\x64\x6a\x55\x4e\x13\x4f\xa3\xda\x94\x85\x38\x2d\x99\ \xcb\xc1\xa9\x53\x2a\xc2\xdd\x37\x07\xdb\x16\x52\x08\xba\xe6\xe7\ \xb9\xf2\xc1\x07\xe9\x9d\x9f\x47\x04\x02\x45\x32\xb2\x32\xf9\x55\ \x28\x14\x98\x9e\x9e\x26\x67\xf5\x47\xbb\x35\x78\x1f\x8a\x4b\x6c\ \x45\xbf\xdb\xd5\xb0\x62\x28\x66\xf4\x2c\x0d\x7c\x76\x76\xd6\xd6\ \xaf\x83\x19\x1c\x1a\x28\x14\xb8\xe8\xe9\xa7\xad\xfb\xad\x40\x69\ \x52\xdb\xb7\x23\x7e\xfa\xa7\x95\xa3\xdd\x22\x79\x58\x0e\x02\x75\ \xdb\x67\x55\x63\x93\x85\x82\x0a\x63\x98\x72\xbc\xaa\xad\x8f\x16\ \x40\x6a\x1a\xc3\xc7\x8e\x71\xe1\x0f\x7e\x40\xc0\xe6\xe4\x88\xe9\ \x03\x5e\x70\x39\x6c\xa5\x8c\x40\x93\x42\x88\xbb\x85\x10\x31\x3b\ \x8b\xc2\xda\x0d\xf8\xbc\x04\x70\x7e\x29\x0c\x8b\x0f\x9b\x4a\xa5\ \x98\x9a\x9a\x5a\x53\x26\xc6\x6a\xc9\x98\x1d\xef\xbc\xc3\xfe\xe7\ \x9f\xb7\x56\x35\xb4\xf4\xbe\xd7\x5e\x0b\x67\x9f\xad\x22\xbf\xdb\ \xa1\x12\xa8\xc3\xed\x16\xe5\x35\xb5\x2b\x3f\x94\xa1\x63\x20\xa4\ \xe4\xbc\x1f\xfe\x90\xd1\x3d\x7b\x38\x7e\xfe\xf9\xb6\x7c\x5a\x52\ \x4a\x66\x66\x66\x48\x26\x93\x44\x22\xee\x7b\x77\x8c\x31\x7b\x23\ \x8a\x53\x9e\xb2\x7a\x9d\x25\x0d\xeb\x89\x27\x9e\x40\x08\xa1\x09\ \x21\x3e\x2a\x84\xd8\xe4\x85\xa3\xdd\x9c\xe1\xb0\xeb\x68\x97\x42\ \x90\x58\x5c\xe4\xb2\xc7\x1e\xb3\x96\xd4\x5c\xbc\x50\xd5\xb8\xe2\ \x83\x1f\x54\x53\xc8\xf5\xcc\xa9\x7c\x83\x41\xa0\xb5\x52\x66\x9a\ \x9d\x39\xb4\x52\xba\xc6\x94\x61\x6e\x4e\x6d\x3e\x59\x75\x0c\xa4\ \x10\xc4\x17\x17\xb9\xf8\x7b\xdf\x23\x61\xc3\xcd\x61\x8e\x99\x4c\ \x26\xe3\x75\x98\xc3\x26\xd4\x42\xcb\xda\x13\x4f\x3c\x61\xe9\x02\ \x3b\x26\xe1\x56\x3c\xaa\x77\x65\x6a\x57\x8d\x74\xae\xd0\x75\xf6\ \x3f\xf7\x1c\xdb\xde\x7d\xd7\xfe\x52\xf2\xe7\x9c\x83\xd8\xb7\x4f\ \x69\x57\x56\x06\x7e\x2b\x52\x66\x9a\x8d\x5c\xaf\x62\xfe\xad\x99\ \xb5\x5c\x5e\x56\xda\x95\x1f\x77\xd5\x71\x90\x9a\xc6\xd6\xc3\x87\ \xd9\xf7\xc3\x1f\xae\xa9\x9f\x05\xf5\xeb\x66\x01\xcc\xcf\xcf\x7b\ \xbd\x78\xc5\x2d\x28\x6e\xb1\x84\xba\x84\x55\xc2\x7c\x37\x00\xe7\ \x7a\xf1\x44\xba\xae\x33\x3d\x3d\x7d\x46\x72\x73\x3d\x48\x4d\x63\ \xf3\xa9\x53\x5c\xf8\xc3\x1f\xa2\x35\x30\x18\xc5\xc1\x83\x6a\xb5\ \x1b\x93\x14\x2a\xe4\x00\x9e\xa1\x55\xb5\x3a\x65\xa6\x49\x47\xfc\ \x19\xf2\x66\x32\x8a\xac\x96\x97\xbd\xf8\x6a\x7d\x38\x00\xad\x50\ \x60\xff\xd3\x4f\xb3\x69\x6c\xac\x18\x50\x6a\xd5\xc7\x9b\xcd\x66\ \xbd\xd6\xb2\xce\x45\x71\x8b\xa5\x10\x07\xab\x1a\x56\x1c\xf8\x18\ \x1e\x84\x32\x08\x21\x58\x5d\x5d\x65\x7e\x7e\xbe\xe2\x67\x55\x37\ \x4d\x23\x94\xcb\x71\xf0\x99\x67\xe8\x99\x99\xb1\xaf\x5d\xc5\xe3\ \x70\xe1\x85\x6a\xbf\x96\x56\x55\xc9\xc4\x6b\x05\xf1\x34\x63\xfe\ \x55\x33\x59\x73\x39\x98\x9c\x54\x41\xa2\x3e\x3a\x16\x52\x08\xba\ \x67\x66\xd8\xff\x83\x1f\x10\xb4\xf9\xa3\x0e\xef\x69\x59\x1e\x85\ \x39\x44\x84\x10\x1f\x13\x42\xc4\xad\x14\x1a\xac\xeb\x74\x37\x1e\ \xe2\x00\x70\x8d\x74\x39\x36\xc7\xf4\x5d\xcd\xcc\xcc\xd8\x2e\x79\ \x2c\x35\x8d\x1d\x47\x8e\x70\xce\x6b\xaf\x35\x76\xf3\x64\x12\x61\ \x3a\xdb\x4d\x22\x32\x9c\xd5\x75\x17\x2e\x75\xa2\xa6\xba\x83\xd7\ \x56\xad\x5e\xba\xb0\xa0\x08\xcb\x8f\xb9\x5a\x17\xd8\xfd\xea\xab\ \x1c\x3d\x70\x80\x63\x17\x5c\x60\xcb\x01\x9f\xcb\xe5\x98\x9b\x9b\ \x23\x1a\x8d\x7a\x45\x5a\xd7\xa0\x38\xe6\xd9\x7a\x27\xd6\xa4\xb4\ \xef\x7f\xff\xfb\xa0\x16\x46\xbd\x1d\xd8\xec\x85\xb3\x7d\x75\x75\ \xb5\x18\x24\x6a\x35\xb1\x5a\x0a\x41\x74\x79\x99\x83\x4f\x3e\x49\ \x74\x65\xc5\x7e\x49\x0e\x29\x61\x78\x18\xba\xba\xd6\x68\x2f\x45\ \xdf\x8f\x15\x33\xae\x55\x26\x9e\x15\x4d\xab\x24\x15\xe8\x8c\xc0\ \x55\x73\x7f\x65\x05\x26\x26\xd4\xbe\x8f\x8e\x87\xf9\xce\x5f\xf8\ \xfd\xef\x13\x5d\x5e\x2e\x4e\x9e\x54\xfa\x91\xaf\xb4\x2d\x2c\x2c\ \x78\xa9\x65\x6d\x46\x71\x8c\x30\x38\xa7\x2a\xac\x98\x84\x43\xc0\ \xad\x5e\x3c\x85\x59\x16\xa3\x91\x00\xb7\xdd\x6f\xbc\xc1\xb6\xc3\ \x87\x8b\x99\xed\x76\x21\x86\x87\x55\xec\x95\xe1\x14\xf7\x24\x08\ \xb4\xd1\x76\xeb\xa5\x02\xa5\x52\x30\x3e\xae\xfe\xfa\x58\x37\x90\ \x9a\xc6\xd6\x43\x87\xd8\xf5\xfa\xeb\x55\x9d\xef\xd5\x90\xcb\xe5\ \x98\x9f\x9f\xc7\x6d\x2b\xaa\x04\xb7\x62\x61\xc5\x2d\x2b\xa3\xf9\ \x0a\x60\xaf\x17\x4f\x90\x4e\xa7\x6d\x07\xb7\x99\x61\x0c\xfb\x7f\ \xf8\xc3\x86\xec\xf9\x22\x8c\x92\xb2\x9e\x06\x81\x36\xe8\xa8\xaf\ \x39\x6b\xb9\xba\xea\x3b\xd9\xd7\x31\x82\xd9\x2c\xfb\x9e\x79\x86\ \x84\x85\x2a\x24\xe5\x44\xb6\xb8\xb8\x58\x31\x6c\xc8\xa5\x6d\xaf\ \x10\xe2\x8a\x7a\x1a\x5e\x55\xc2\xfa\xfe\xf7\xbf\x8f\x10\x42\x03\ \x3e\x84\x5a\xf9\xc2\x15\x94\x3e\xc4\xfc\xfc\x7c\x71\x66\xd0\x52\ \x26\xb8\xf1\x77\xf7\xeb\xaf\x33\x74\xf2\x64\xc3\xda\x15\x00\x91\ \x08\x12\xdc\x99\xc5\x6b\xc6\xa1\x5e\x6f\xd6\xb2\x74\x4b\xa7\x95\ \x19\xe8\x93\xd5\xba\x85\xd4\x34\x36\x9f\x38\xc1\xd9\xaf\xbd\xb6\ \x66\x4c\xd4\x73\xa9\x08\x21\xc8\x66\xb3\x2c\x2d\x2d\x15\xff\x77\ \xd9\x3c\x4c\xa0\xb8\x46\x7b\xf2\xc9\x27\xab\x9e\x54\xd5\xe9\x6e\ \x08\x3b\x22\x84\xb8\xde\x4d\xa9\x4d\x98\xd3\xad\x96\x22\xd9\xdf\ \x13\x9a\xae\xf9\x79\xce\x7f\xfe\x79\x02\xb9\x5c\x53\x84\x25\x0b\ \x05\x84\x19\x23\xe5\xd5\x42\x10\x36\xae\xad\xbb\xd8\x6a\x3a\xad\ \x1c\xec\x3e\x59\xad\x7b\x04\x72\x39\xce\x7b\xf6\x59\x8e\x5f\x78\ \x21\xcb\xbd\xbd\x35\x27\x55\x4a\xc7\x96\x94\x92\x85\x85\x05\x7a\ \x7b\x7b\x09\x85\x3c\x59\x53\xe6\x7a\xd4\x92\x81\x63\xd5\x4e\xa8\ \x37\xa2\x2f\x07\x76\x7b\x21\x79\xa3\x4e\xc0\x73\x5e\x7b\x8d\x4d\ \xa3\xa3\xcd\x69\x57\x80\x58\x5d\x55\x31\x4a\x76\xcd\xb4\x56\x98\ \x7f\x35\x36\x4b\xa5\x6b\x52\x29\x55\x81\xc1\x27\xab\x0d\x01\xa9\ \x69\x6c\x3a\x79\x92\x5d\xaf\xbc\xa2\x56\x8e\xb6\xa1\x65\xa5\xd3\ \x69\x96\xbd\x7b\x4f\x76\xa3\x38\xa7\x2a\x2a\x8e\x6a\x43\x25\x0b\ \x00\x37\xe1\xa2\x39\x68\xa2\x50\x28\x30\x3f\x3f\x6f\x6b\xc9\x2e\ \xb3\x22\xe3\x79\x2f\xbc\x40\xc0\x81\x99\x2f\x39\x3f\xaf\xb4\x12\ \x27\xe3\xa1\x9a\x9d\x5d\xac\x15\x04\x5a\xad\xdd\xe5\x65\x65\x06\ \xae\xac\xb8\xfd\x35\xfa\xf0\x10\x5a\x3e\xcf\xb9\xcf\x3f\x4f\x62\ \x61\xc1\x56\xba\x95\xae\xeb\x2c\x2c\x2c\xd8\x5f\x2e\xcf\x19\x24\ \x80\x9b\x84\x10\x81\x6a\x66\x61\x2d\x35\x64\x04\xb8\xce\x6d\x89\ \xcd\x50\x86\x95\x95\x95\x8a\xda\x55\x2d\x87\xe0\xce\xb7\xdf\x66\ \xf0\xd4\xa9\xa6\xb5\x2b\x00\xc6\xc6\x54\xe5\x4d\x8b\x2b\xdf\x38\ \xa1\x2d\x59\x22\xad\x5a\x79\x8b\xe5\x6d\xcc\xcf\x2b\xb2\xf2\x67\ \x03\x37\x1c\xa4\xa6\x31\x30\x36\xc6\xf6\xb7\xde\xb2\x45\x58\x66\ \x1a\x9c\x69\xdd\x78\xb0\x5d\x87\x72\x45\x55\x94\x2f\x58\x4d\x68\ \xd4\xec\x60\xc3\xc5\xe2\x1b\xee\x68\xc3\x8e\x2e\x14\x0a\x55\xcd\ \xc1\x33\x8e\x0b\x41\x74\x75\x95\x73\x5f\x7a\xa9\x69\xdf\x95\xd9\ \x1e\xb3\xb3\x6a\x36\x2d\x91\x28\x12\x45\xdb\x04\x81\xd6\xbb\x26\ \x9b\x55\x64\x35\x3f\xef\xaf\x2b\xb8\x81\x11\xc8\x66\xd9\xfd\xc2\ \x0b\x1c\x3d\x78\x90\x6c\x3c\xae\xd6\x33\x28\xf1\x67\x55\x1b\x5f\ \x85\x42\x81\xc5\xc5\x45\x12\x09\xd7\x8d\x2b\x50\x9c\x73\x05\x55\ \x16\x5c\x3d\x63\x64\xff\xe0\x07\x3f\x00\x15\x2c\xfa\x3e\x54\x4a\ \x8e\xab\xc8\x66\xb3\xb6\x16\x96\x00\x65\x0e\x6e\x79\xf7\x5d\x86\ \x8f\x1d\x6b\x68\xdd\xb6\x33\x20\x84\x32\xa5\x5e\x7d\xd5\xd1\x59\ \xbc\x66\xfc\x5a\x6b\xb4\xaa\x5a\x1a\xdc\xea\xaa\x72\xae\xcf\xcd\ \xf9\x64\xb5\x81\x21\x01\x5d\x08\x36\x1f\x3d\xca\xc8\x91\x23\x6b\ \x72\x0c\xad\xcc\x00\x2e\x2f\x2f\x7b\x55\xe0\x2f\x8e\xe2\x1e\x61\ \x70\xd1\x1a\x54\x53\x45\xfa\x80\xab\xdc\x96\xd4\x2c\x7f\x9c\xb1\ \x53\x4f\x5c\x08\x42\xd9\x2c\xe7\xbe\xf4\x12\x61\x27\x2b\x65\xea\ \x3a\xf2\x95\x57\x60\x7a\xda\xba\x6f\xaa\x15\x84\x56\xcb\xa9\x5e\ \x56\x8b\x1d\xb3\xbc\xf1\xf2\xb2\x9f\x6e\xb3\x81\x61\x7e\xf3\x52\ \x08\xc2\xa9\x14\xbb\x5f\x78\x81\xa0\xcd\x1a\xfd\x99\x4c\xc6\xcb\ \x32\xca\x57\xa1\x38\xe8\x0c\x54\x23\xac\x3d\x78\x10\x2c\x5a\x28\ \x14\x58\x58\x58\x38\x23\xda\xb6\x66\xec\x95\xa6\x31\x30\x3e\xce\ \xd6\x43\x87\x9c\xad\xe5\xa4\x69\x70\xfc\x38\x3c\xff\xbc\x73\xda\ \x52\x03\x8e\xf8\x22\x59\xd5\xf2\x97\xad\xac\x28\xad\x6a\x72\xd2\ \x5f\x3c\x62\x83\x43\x96\xfc\x35\xb5\xac\xe1\x77\xde\xa1\xaf\x8a\ \x6f\xb7\x56\xfd\xb9\xa5\xa5\x25\xd7\x17\xab\x28\x09\x22\xdd\x53\ \xe9\xbe\x6b\x9e\xe0\xa9\xa7\x9e\x32\x2f\xba\x4a\x08\xd1\xef\x9a\ \x94\xbc\x37\xa5\x9a\x4a\xa5\x2c\x3b\xe8\x10\x02\x21\x25\x67\xbf\ \xf9\x26\xf1\xa5\x25\x67\xcc\xc1\x52\xe4\xf3\xc8\xef\x7f\x5f\x39\ \xe0\x6d\x2c\xe7\xe5\xc4\x0c\xe1\x9a\x20\xd0\x6a\x35\xb3\x32\x19\ \x98\x99\x51\x8e\xf5\xc5\x45\xdf\x04\xdc\xe0\x90\x95\x36\x21\x88\ \x2d\x2e\xb2\xfd\x8d\x37\xd0\x4a\x96\xc4\xab\x67\x16\x9a\xce\x77\ \x3b\x81\xdb\x4e\x6c\x06\xfa\x31\x2c\x3c\x93\x93\x4c\x68\x15\x04\ \x8d\x02\x57\x03\x9a\x9b\xb3\x03\xa0\xec\xe6\x7c\x3e\x6f\xb9\x53\ \x31\xd2\x70\x76\xfe\xe8\x47\x0d\x2d\x79\x54\x17\x42\xc0\xa9\x53\ \xc8\xfb\xef\x57\x0e\x6c\x2b\x3e\x24\x07\x2a\x8c\xca\x7a\x64\x98\ \xcd\xaa\x4a\x0b\xe3\xe3\x8a\xb0\xbc\x5d\x4c\xc0\x47\x1b\xc0\x24\ \xa8\x8a\xfb\xba\xce\xb6\x37\xde\x20\x66\x73\xf1\x95\x5c\x2e\xc7\ \x8a\x37\xe1\x30\x1a\x8a\x83\xa2\x95\x3e\x28\xc7\x08\x70\xa9\xdb\ \x12\x16\x0a\x05\x96\x96\x96\xec\x25\x5f\x0a\xc1\x96\xc3\x87\xe9\ \x9f\x98\x70\x26\x94\xa1\x1a\x5e\x7d\x15\xf9\xf0\xc3\xb0\xb4\x54\ \xbf\xde\x95\x15\xd3\xb0\xda\xf2\xf5\xf5\x82\x40\x33\x19\x45\x54\ \x13\x13\xca\x57\xe5\x87\x2b\xf8\xa0\xb2\x66\xb5\xe6\xb8\xa6\xd1\ \x33\x3e\xce\xd0\xe1\xc3\x67\xb8\x4d\x6a\x85\x09\x81\x52\x22\x3c\ \x8a\xc9\xba\x14\xc5\x45\x6b\x50\x29\xac\xe1\x60\xa5\x13\x5b\x09\ \xd3\x1c\x5c\x5d\x5d\xb5\x65\x2f\x07\xb3\x59\xce\x7e\xfd\x75\x82\ \x99\x4c\x6b\x09\xab\x50\x80\x67\x9f\x45\xa6\x52\x88\x0f\x7c\x40\ \x25\x46\x9b\xa4\xd2\x4c\x58\x43\xc9\x67\x35\x17\xaf\xc8\x64\x14\ \x59\x2e\x2c\xa8\x60\x56\xdf\xf4\xf3\x41\x0d\x8d\xaa\xc2\xe7\xc1\ \x4c\x86\xed\xaf\xbe\xca\xe8\xc1\x83\x14\xca\xd2\x6e\x6a\x85\x0f\ \x99\x66\x61\x2c\x16\x73\xbb\x92\xc3\x08\x8a\x8b\x8e\x96\x1e\x2c\ \x8e\xf2\x12\x5b\xf1\x22\x5c\x8e\x6e\x97\x52\x16\xcd\x41\xcb\xd7\ \x08\x41\xcf\xf4\x34\x23\xef\xbe\xdb\xfa\x85\x13\x84\x50\xc4\xf1\ \xf2\xcb\xc8\x7b\xef\x85\x43\x87\x14\x89\xd4\x5b\x50\xd5\x82\x5f\ \xab\x62\x10\x68\xa1\xa0\xcc\xbe\xe5\x65\xa5\x49\x9d\x38\xa1\xb4\ \xaa\xd5\x55\x9f\xac\x7c\x00\xd6\xc9\xaa\x78\xbe\x10\x6c\x3a\x72\ \x84\xae\xe9\x69\x30\xd6\x2f\x84\xfa\xbe\xa9\x42\xa1\x50\x34\x0b\ \x5d\x0e\x20\x4d\x08\x63\x75\xf9\xa7\x9f\x7e\xba\xf8\x1c\x45\x0d\ \xcb\x78\x80\x38\xaa\xf2\x9f\xab\x28\x14\x0a\xc5\xfc\x25\xcb\x1a\ \x96\xa6\xb1\xe5\xc8\x11\x4b\x65\x34\x1c\x83\x94\x70\xec\x18\x72\ \x6a\x4a\x2d\x50\xb1\x67\x0f\xf4\xf7\xab\x19\x45\xbb\xc1\xa5\x95\ \x12\x96\xb3\x59\x45\x4a\xcb\xcb\x6a\xe6\x6f\x75\xd5\xf7\x4f\xf9\ \x38\x03\x56\x34\xaa\x33\xce\x15\x82\xd8\xc2\x02\x43\x87\x0e\xb1\ \xb0\x6d\x1b\x58\x2c\x2a\x20\xa5\x64\x75\x75\x15\x5d\xd7\xb1\x52\ \xc2\xd8\x61\x1c\x40\x71\xd2\xaa\x79\xa0\xdc\x24\x1c\x00\xf6\xbb\ \x2d\x55\x2e\x97\x2b\xce\x0e\x5a\x45\x28\x93\x61\xdb\xdb\x6f\xa3\ \xe5\xf3\xad\x35\x07\xcb\x21\x84\x22\x93\x57\x5f\x45\x1e\x3a\x04\ \x23\x23\xaa\xd8\xdf\xe0\x20\x44\x22\xc5\x00\xbd\xaa\xa4\x55\xea\ \x58\x37\x1d\xf4\xcb\xcb\xca\xe4\x5b\x5e\x7e\x2f\xe1\xda\x58\x01\ \xc5\x87\x8f\x52\x58\xd6\xa8\x2a\xfc\x15\xf9\x3c\x43\x3f\xfe\x31\ \xef\x5e\x7d\x35\x85\x48\xc4\x52\xac\x9e\x69\x16\xe6\xf3\x79\xc2\ \xe1\xb0\xdb\x8f\xbb\x1f\xc5\x49\x55\x09\xeb\x5c\x2c\x54\xfd\x73\ \x12\x42\xa8\x55\x68\x1b\x31\x07\x87\x8e\x1f\xf7\x66\x50\x9b\xf7\ \x5c\x5d\x85\x23\x47\x90\x47\x8f\x42\x34\xaa\xd2\x78\x92\x49\x44\ \x2c\x86\x0c\x85\xc0\x5c\xd1\xd6\x48\xa7\x11\x99\x0c\x32\x9d\x56\ \xa4\x64\x6e\xa5\x66\x60\x69\xdb\x3e\x59\xf9\x28\x41\x25\x02\x2a\ \x25\x2c\xca\x8e\x57\xda\x47\x08\xfa\x8f\x1e\xa5\x6b\x6a\x8a\xf9\ \x6d\xdb\xb0\xfa\x86\xe5\xf3\x79\x52\xa9\x14\x91\x48\xc4\x6d\x3f\ \xd6\x10\x8a\x93\x4e\x9a\x07\x82\x40\xa9\x8d\x78\x00\xe8\x76\x53\ \x22\x5d\xd7\x59\x59\x59\xa9\x1b\xa0\x66\x7e\x66\x76\xfc\x96\xc3\ \x87\x89\xdb\x9c\xa6\x75\x1c\xe6\xbd\xa5\x54\xe4\xb5\xba\x0a\x53\ \x53\x4a\x46\x4d\x53\x9f\x97\x9c\x23\xa5\x3c\xd3\x07\xe5\x13\x94\ \x8f\x3a\xa8\xe7\xaf\xaa\x75\xce\x9a\x63\x42\x10\x5d\x58\x60\xf3\ \xa1\x43\xcc\x6f\xdf\x0e\x50\x97\xb4\xa4\xf1\xde\xa6\x52\x29\x7a\ \x7a\x7a\xce\x18\xa3\xb6\xea\xd5\xd9\x47\x37\x8a\x93\x1e\x7d\xe6\ \x99\x67\xb8\xfa\xea\xab\x95\xd3\xdd\x70\x72\x85\x84\x10\x07\x84\ \x82\x6b\xce\xb5\x42\xa1\x50\x9c\x1d\xb4\x10\x50\x86\x00\x42\xd9\ \x2c\x23\x47\x8e\x10\x68\xa7\x85\x3f\x4d\x72\x32\x37\x93\x9c\x4a\ \xcd\x41\xd3\xcc\x2b\xdd\x7c\xf8\xa8\x81\x6a\xe1\x0a\xe5\xe7\x40\ \x65\x42\x2b\x3f\x26\x0a\x05\x06\x0f\x1f\x26\x94\xcd\x5a\xd2\xb0\ \xcc\xf1\x67\xfa\xb1\x2a\x7d\xde\x42\x08\x14\x61\x15\xa7\x35\x4b\ \x9d\x3f\xbd\xc0\x85\xad\xbc\x7b\xa5\x87\x4d\xa7\xd3\x64\xb3\x59\ \xcb\x0f\x6e\x2e\xcf\x3d\x78\xf2\xa4\xb7\xda\x95\x0f\x1f\x2d\x46\ \x35\x02\x82\xfa\xc4\x54\xed\x73\x29\x04\xbd\x27\x4e\x10\xb1\x39\ \x59\x95\xcd\x66\xed\xe5\xf8\x3a\x87\x0b\x51\xdc\x04\xac\x25\xac\ \x21\x60\x9b\xdb\xd2\xa4\x52\x29\x0a\x15\x34\xa5\x72\xed\xaa\x34\ \x77\x70\xd3\xd8\x18\x09\xaf\xcd\x41\x1f\x3e\x5a\x84\x5a\x04\x04\ \xf6\x34\xaa\x4a\x9f\x47\xe7\xe7\xe9\x3d\x79\xd2\x96\x86\x5f\x28\ \x14\x6c\x4f\x8c\x39\x84\x6d\x94\xf8\xd5\x4b\x09\x6b\x37\xd0\xe5\ \xa6\x24\xba\xae\x93\x32\xa2\xb5\x6b\xa5\xe3\x94\xfe\xaf\xe9\x3a\ \x43\x47\x8f\x12\x4a\xa7\xdd\xee\x38\x1f\x3e\x5a\x8e\x5a\x04\x54\ \xe9\xf3\x6a\xfb\x55\x37\x21\x08\xa4\xd3\xf4\xbf\xfb\x2e\x9a\xae\ \x9f\x51\x3e\xb9\x16\x32\x99\x4c\xab\x7d\x56\x67\x40\x08\xd1\x25\ \x84\xd8\x6d\xde\x33\xf8\xec\xb3\xcf\x9a\x9e\xff\x73\x80\x84\x99\ \xa9\xed\x82\x20\xe4\xf3\xf9\x35\x95\x0d\x4d\x54\xba\xbf\x10\x42\ \x2d\x16\xb9\xb2\xc2\xd0\xb1\x63\xae\x75\x98\x0f\x1f\x6e\xa1\x9a\ \x46\x45\x85\xe3\x35\x9d\xeb\x16\xce\xed\x7f\xf7\x5d\x42\xa9\x14\ \xb9\x44\x62\x4d\x78\x43\x2d\x32\xca\x64\x32\xe8\xba\x4e\x20\x10\ \x70\x93\xb4\x12\x28\x6e\xe2\xd9\x67\x9f\x55\xb3\x84\x42\x2d\xe7\ \x55\x5c\x6c\xc2\x0d\x61\x84\x10\xe4\x72\x39\xdb\x4b\xd0\x27\xe6\ \xe6\xe8\x99\x9c\xf4\x1d\xd6\x3e\xd6\x15\xaa\x39\xd5\xed\x92\x51\ \xbd\xf0\x07\x73\xb6\x30\x71\xfa\x34\xf1\xd9\x59\x16\xba\xba\x2c\ \x13\x96\x39\x5e\x03\x66\xb8\x8e\x7b\xd8\x8d\xb2\x06\x75\xd3\x24\ \xec\xc2\x60\x31\x37\x51\xcd\x7f\x55\x0d\x52\x08\x06\x4e\x9d\x22\ \xbc\xba\xea\xfb\xaf\x7c\xac\x1b\xd4\x22\xab\xaa\x09\xcd\xd8\x33\ \x0b\xd7\x1c\x17\x82\xe0\xea\x2a\xc9\xb1\x31\x5b\x26\x61\xa1\x50\ \xf0\x6a\x39\xfb\x73\x30\xdc\x55\x26\x61\x75\xe3\x72\xfd\x76\x33\ \xb6\xc3\x4e\x26\xb8\xa6\xeb\xf4\x8f\x8d\x35\xb7\xa2\xb3\x0f\x1f\ \x6d\x82\x6a\xc4\x02\x36\x09\x08\xfb\xda\x97\x96\xcd\xd2\x3d\x3a\ \x6a\xab\x2c\x93\x94\xb2\xe8\xc7\x72\x19\x67\x63\xc4\x87\x9a\x91\ \xee\xdb\x50\x45\xb3\x5c\x83\xae\xeb\x6b\xa6\x49\xcb\x7d\x58\x67\ \x04\xa8\x09\x55\xee\x75\x60\x6c\xcc\xf2\x3d\x7c\xf8\x68\x57\xd8\ \x49\xa9\x69\xc5\xbe\x00\x92\xa3\xa3\x84\x32\x19\xf2\xb1\x98\xa5\ \x34\x1d\x29\x25\xd9\x6c\x16\x29\xa5\xdb\x79\x85\xfd\x28\x8e\x1a\ \x0d\x1a\xc4\x70\x16\x2e\x2f\x38\xa1\xeb\x7a\x31\xfe\xca\xaa\x0f\ \x2b\xb6\xb4\x44\xef\xc4\x84\xef\xbf\xf2\xd1\xd1\x68\x24\x00\xb4\ \xd2\xbe\x9d\x73\x2b\x99\x85\x89\x89\x09\xc2\x4b\x4b\xe4\x62\x31\ \xcb\x41\xa4\xd9\x6c\xd6\x8b\x44\xe8\x38\x8a\xa3\x9e\x35\xef\xba\ \x85\x0a\xd5\xfd\x5a\x05\xd3\xe1\x5e\x6b\x29\xaf\x0a\x17\xd1\x33\ \x39\x49\x64\x65\x05\xd7\x15\x52\x1f\x3e\x1c\x42\xbd\xc0\x4f\x5b\ \xa4\x53\xe7\xba\x7a\xed\x85\x56\x56\x88\x9f\x3e\x6d\x3b\x1e\xcb\ \x4e\xde\xaf\x43\x88\xa2\x38\xaa\xe8\xc3\x72\xb5\x60\x1f\xa8\x29\ \xd2\x5a\x0e\xf7\xf2\xda\xed\x08\x41\xcf\xd4\x14\xa1\x6c\xd6\xd7\ \xb0\x7c\x74\x24\x9a\x49\xa9\x69\xda\xd1\x5e\x7e\x4c\x08\xb4\x4c\ \x86\x84\x39\xe3\x6e\xb1\x3e\x96\x69\x16\x7a\xe0\x78\x1f\x01\xe5\ \xc3\x8a\xe2\x11\x61\x59\x0d\x42\x13\xa8\x1c\xa8\xee\xa9\x29\xb4\ \x42\x01\xdd\xfd\xba\x3c\x3e\x7c\x34\x8c\x4a\x44\xe5\x94\x79\xd7\ \xe8\x75\x66\x5e\x61\x6c\x72\x12\xad\x50\xb0\x9c\xdb\xaa\xeb\x7a\ \x71\xbd\x42\x97\x49\x6b\x04\x88\x06\x85\x10\x71\x5c\x26\x2c\x93\ \xa5\x2d\x43\x08\x42\x99\x0c\xdd\x66\x25\x04\x1f\x3e\x3a\x04\x76\ \x63\xaa\xea\x7d\xee\x34\xb9\xc5\x26\x27\x09\x64\x32\x14\x6c\x38\ \xde\x3d\x5a\x60\x75\x04\x88\x6b\x40\x0c\x97\x09\xab\x94\xa5\x6b\ \xa1\xc8\xe0\x42\x10\x4a\xa7\xe9\x9e\x9e\xf6\xcd\x41\x1f\x1d\x89\ \xa6\x53\x6a\x2a\x6c\x56\xda\xa3\xd6\x75\x42\x10\x9b\x9a\x22\x58\ \x25\xcd\xad\xda\x02\x15\xb9\x5c\xce\x8b\x85\x29\x46\x80\x58\x10\ \x18\xa4\x24\x1b\xda\x0d\x48\x29\xd7\x2c\xe7\x55\x0b\x66\x4a\x4e\ \x62\x71\x91\x88\x51\x46\xd9\x87\x8f\x4e\x80\x5b\x1a\x55\xe9\xb1\ \xba\x6d\x97\xd6\x95\x03\x42\xcb\xcb\x44\x16\x17\xc9\xf4\xf7\x57\ \x9c\x29\xac\x34\x83\x9f\xcf\xe7\xbd\x88\xc5\xea\x05\x06\x35\x60\ \x2b\x2e\xce\x10\x82\x9a\x69\xa8\x34\x43\x58\xad\x42\x83\x10\x82\ \xc4\xfc\x3c\xc1\x5c\xce\x37\x09\x7d\x74\x04\xdc\x9a\xe9\x2b\x0d\ \x53\x90\x86\x1f\xaa\xf4\xff\xe2\x31\x73\xbf\xec\x3a\x91\xcb\x11\ \x99\x9b\xb3\x64\xb9\x98\xe3\xb2\x50\x28\x34\xac\x61\x35\x51\x3b\ \x2f\x2a\x84\xd8\x1a\x04\x36\x01\xae\x15\x6b\x2e\x65\x68\x2b\x15\ \x46\x31\x3a\x3f\xbe\xb0\x40\x20\x97\xf3\x4d\x42\x1f\x6d\x8f\x8a\ \x9a\x8e\x49\x24\x00\x52\x9e\x41\x1e\x76\xf6\xeb\x9e\x6b\xa1\x6d\ \x53\x26\x91\xcb\x11\x9e\x9f\x57\x29\x3a\xc6\x67\xf5\xc6\xa5\x94\ \x92\x42\xa1\xe0\x76\x8d\xf7\x30\xb0\x29\x28\x84\xe8\xa3\xa4\xa2\ \x5f\xab\x61\xda\xc0\x76\x54\x4a\x21\x25\xb1\x85\x05\xf7\x17\x9c\ \xf0\xe1\xa3\x0e\x84\x41\x44\x66\x35\x59\x4b\xa4\x63\x5e\x63\xe5\ \xdc\x26\xf7\xeb\x7d\x2e\xf2\x79\xc2\x0b\x0b\xca\x1c\x34\x48\xab\ \x1e\x4a\x5d\x3a\x2e\x9a\x86\x21\xa0\x2f\x88\x0a\x7b\x77\x8d\xb0\ \x40\x15\xb5\xb7\xac\x52\x0a\x41\x20\x9f\x27\x6e\x74\xaa\x6f\x12\ \xfa\x68\x35\xea\xa5\x89\x55\x42\xb9\x6f\xc8\x2b\x02\xb2\x7b\x9d\ \x90\x92\xb0\xa9\x0c\x04\x02\x58\x59\xfe\xcb\x24\x2c\x97\x11\x02\ \xfa\x83\x40\x1f\xf5\x6b\xd1\x3b\x0a\x33\x60\xd4\xd2\x8b\x21\x04\ \x41\x83\xb0\x7c\xb2\xf2\xd1\x0c\x1a\x21\xa2\xba\x83\x97\xf6\x22\ \x20\xdb\xfb\x42\x10\x9e\x9f\x27\x90\xcf\x53\x08\x56\x5a\x08\xbe\ \xc2\x33\x1b\x26\xa1\xcb\x10\x18\x1a\x56\x9f\x9b\x77\xad\xf6\xb0\ \xd5\x5e\x0c\x09\x68\xf9\x3c\x51\x7f\x86\x70\xc3\xa0\xd1\x80\x44\ \x3b\xd5\x30\x9b\x0d\x7a\x6c\x25\x01\xb5\x72\x16\xb1\xd2\x7e\x60\ \x79\x19\x61\x53\x63\x32\x2d\x24\x97\x83\x47\xfb\x82\x42\x08\x5b\ \x55\x1a\x9a\x2d\x91\x2a\xa5\xb4\x3d\xc3\xa0\x15\x0a\x84\x53\x29\ \xdf\xe1\xde\xe1\x28\x2e\xd5\xd6\xa2\x32\xbb\x6e\x0d\x1e\x2f\x08\ \xa8\xd1\xeb\xea\xc9\x84\x51\x1b\x4b\x54\xd1\x98\x4a\xfd\x54\xa5\ \xfd\xab\xeb\xba\xeb\xe5\x92\x29\x31\x09\x2d\xa3\xe9\x5f\xa6\x1a\ \xea\x64\xb9\x13\xcf\xcc\x23\x0c\xe6\xf3\x7e\x0d\xf7\x36\x45\x2b\ \xcc\xac\x76\x46\xbb\x13\x50\x23\x6d\x68\x99\x0c\x81\x7c\x9e\x5c\ \x15\xa7\x7b\xa5\xef\xcb\x83\xc0\x51\x30\x4c\x42\x57\x17\x4e\x35\ \x35\xac\x6a\x41\xa3\x95\x8e\x85\xd2\x69\x34\xf7\x9d\x7c\x1b\x1a\ \x1b\x8d\x88\xac\xc0\x15\x9f\x92\x83\x6d\x5b\x3d\x97\x7c\x1e\xcd\ \x58\x0c\xc6\x2a\x3c\xd2\xb0\xba\x83\x40\xc4\xcd\x3b\x9a\x1a\x96\ \x9d\xb2\x32\xe1\xd5\x55\xb4\x42\xc1\x77\xba\x3b\x80\x46\xcc\xb2\ \xf5\x4e\x44\x56\xd0\x49\x04\x64\x77\x5f\x14\x0a\xca\x2c\xb4\x18\ \xd6\x00\x9e\xf9\xb0\x22\x41\x21\x84\xab\x21\x0d\x40\x45\x9b\xb8\ \xfc\xb3\x52\x84\x32\x19\x5b\xa5\x5c\xdb\x11\xad\xf6\xdf\x34\x2a\ \x8f\x8f\xda\x70\x8b\x80\xbc\x24\x34\x0a\x05\x02\x99\xcc\x7b\x2b\ \x96\xd7\x81\xcb\xf1\x57\xa5\x08\x05\x71\x31\xca\xbd\xfc\xa1\x2d\ \x1d\x37\xe2\xb0\x84\x37\x1d\x64\xf9\x19\x7c\xb3\x69\xfd\xa1\x53\ \x09\xc8\x8e\x4c\x6a\x47\xda\x9e\x25\x94\x52\x7a\x41\x5a\xe1\x20\ \x2e\x07\x8d\x9a\x0f\x6b\xa2\xee\xa0\x17\x82\x80\xae\x2b\xc2\x72\ \x69\xb0\xfb\x44\xe4\xc3\xeb\x50\x03\x57\x49\xb1\x01\xc2\xf2\x08\ \xed\xa5\x61\x55\xd5\xba\x0a\x05\x4b\xaa\xaa\xd5\x7b\xfa\xfe\x1b\ \x1f\xb5\xd0\x4e\x1a\x50\xcb\x89\xd0\x30\x03\x45\x8d\x89\xb0\x8a\ \x7d\xe4\x8d\xc5\xe3\xbe\x86\x65\xfb\x41\x85\x40\x2b\x14\xaa\x9a\ \x84\xbe\x36\xe4\xc3\x49\x74\xea\x4c\x5f\x53\x6d\x4b\x89\x30\x26\ \xc2\xec\x8c\x0d\xbb\xe7\x3b\x80\x90\x27\x4e\xf7\xd2\x07\xae\x07\ \x09\x04\x0c\xc2\xb2\x52\x3b\xcb\x87\x8f\x46\xb0\xae\x08\xc8\xee\ \x75\x06\x61\xd9\x75\xb9\x78\xa0\x65\x85\xac\x25\x0f\xb5\x00\x96\ \x4d\xb2\xf7\x2e\xf0\x4a\x54\x1f\xeb\x1c\xed\x64\xd2\x79\xe1\xe7\ \x6a\xbf\xe9\xac\xea\x08\x02\x39\x20\xe0\xd6\x0d\x1b\x51\x23\xf5\ \x40\xc0\x27\x2c\x1f\x2d\x41\xdb\xf9\x94\xbc\x90\x49\x88\x62\xa5\ \x06\xab\xf0\xc0\x1c\x04\xc8\x99\x84\xe5\xea\x9a\x84\x76\xa1\x07\ \x83\xc5\xf2\x1d\x3e\x7c\x38\x85\x75\x4b\x40\x76\xf7\x85\x40\x06\ \x83\x67\x90\x50\x2d\x9f\x70\x79\x75\x60\xc7\xbe\x93\xda\xae\x9f\ \x5c\x10\xc8\xba\xc9\x94\xe5\x25\x90\xeb\x0a\x6a\xb2\xbf\x4f\x58\ \x3e\x1c\x42\xdb\xfb\x94\xdc\x94\xc9\xa8\x7e\x2a\x03\x67\x1a\x59\ \x56\x2b\x02\x3b\x89\x3a\xed\x66\x83\x42\x08\x57\xd7\xec\x11\x42\ \xa0\x69\x9a\xe5\xe5\xe9\x41\x99\x84\xd2\x8c\xc2\xf5\x89\xcb\x47\ \x13\x58\xf7\x04\xd4\xc0\x75\x45\x0d\xab\xac\xaf\x6a\x29\x14\x95\ \xc6\xb0\x0b\x50\x1a\x96\xdb\x77\xb5\x5c\xcb\xdd\x20\x28\x3d\x14\ \xf2\x4d\x42\x1f\x4d\x63\xc3\x10\x90\xcd\xf6\x4c\xc2\xa2\x86\x89\ \xd7\x26\x33\xf0\x59\xd3\x87\xe5\x2a\x34\xa3\x2e\xbb\xd5\x30\x85\ \x7c\x34\x5a\x51\x65\xf5\xe1\xc3\x2a\x3a\xca\xa7\xe4\xb2\x4c\x7a\ \x20\x80\x1e\x8b\x59\x4a\x7c\x36\xf3\x08\x4d\x0d\xcb\x4d\x22\x93\ \x52\xe6\x82\x40\xa6\xd5\x37\x2a\x57\x25\x03\x81\x40\xd5\x87\x2d\ \x8f\xed\x10\x40\x2e\x1e\x47\x0f\x04\xfc\x9a\xee\x3e\x6c\xa3\x95\ \x44\xd2\xe8\x75\x6d\x27\x53\x20\x80\x1e\x8f\x17\xfb\xcc\x8a\x22\ \x61\x8e\x61\x37\x21\x84\xc8\x04\x85\x10\x8b\x2e\xdf\x94\x40\x0d\ \x6d\xa9\xbc\x13\x24\x06\x61\x59\xac\x37\xed\xc3\x87\x89\x4e\x22\ \xa0\x46\xaf\x73\x42\x26\x3d\x18\x44\x8f\xc7\x8b\x2b\xe7\x58\x81\ \x17\x84\x05\x2c\x06\x81\x39\x37\xef\x58\x8f\xb0\xce\x38\x1f\x28\ \x04\x83\xe4\xa2\xae\xae\xf5\xea\xa3\xc3\xd1\x36\xda\x4b\x0b\xf6\ \x9d\xbc\x0e\x40\x8f\xc5\x90\x21\x95\xf0\x62\x65\xe6\xbe\xd4\x24\ \x74\x19\x73\x41\x60\xd6\xcd\x3b\x56\x22\xac\x5a\x9d\x64\x3a\x04\ \x73\xb1\x18\xfe\x2c\xa1\x0f\x2b\xd8\xc8\x04\x64\xbb\x0d\x29\x29\ \xc4\xe3\x60\xc4\x61\x51\xa5\x92\x4a\x39\xec\x28\x1d\x0e\x62\xd6\ \x33\x0d\xcb\x6a\x89\x64\x81\x52\x59\x33\xc9\xa4\x17\x1d\xe4\xa3\ \xc3\xb0\x2e\x7c\x4a\x2d\x68\xaf\xd6\x7e\x21\x99\x84\x1a\x2e\x97\ \x4a\x0a\x45\xa9\x86\xe5\x62\x51\xca\x39\x93\xb0\xa4\x70\x51\xbf\ \xab\x65\xff\x56\xf2\x61\xe9\xe1\x30\xa9\xde\x5e\x9c\x28\x31\xe3\ \x63\xfd\x62\xbd\xf8\x94\x5c\x95\x49\x4a\x0a\x7d\x7d\xc8\x70\xd8\ \x92\x0f\xcb\x1c\x9f\xe6\x18\x76\x91\xac\x24\x30\x17\x14\x42\xcc\ \xa2\x42\x1b\x5c\xa9\x8b\x25\x84\x20\x14\x0a\xa1\x69\x9a\xa5\x6c\ \x6f\x01\xe8\xa1\x10\xe9\xde\x5e\xdf\x1c\xf4\x51\x11\x3e\x01\x35\ \xd1\xb6\x10\xe4\x7b\x7b\x21\x14\x02\x8b\x65\xc8\x35\x4d\x23\xe8\ \xfe\x24\x58\x0e\x98\xd5\x50\x1a\x96\x6b\xb1\x58\x52\xca\x22\x61\ \x59\x86\x10\xa4\x7a\x7b\xfd\x99\x42\x1f\x67\xc0\xea\xe0\xac\xb4\ \x61\xe1\xb8\x95\x73\xec\xb4\x51\xef\x3a\xbb\xed\xd5\x93\xa9\xae\ \x1c\xc1\xa0\xd2\xb0\x6c\xd6\xc1\x0a\x06\x83\x6e\x97\x97\xc9\x61\ \x98\x84\x53\xa8\x68\xf7\x84\x5b\x77\x0e\x9a\x0e\x3e\xab\x90\x92\ \x54\x6f\x2f\x85\x50\x88\x60\x3a\xed\x6b\x5a\x3e\x80\xce\x70\x6a\ \xb7\xb5\x4c\x52\xa2\x87\xc3\x14\xfa\xfa\x10\x58\xac\x4f\x67\xcc\ \x10\xda\x1e\xc3\x4d\x42\x4a\x99\x05\xa6\x82\xc0\x18\x70\xc6\x2a\ \xa5\xad\x14\x26\x10\x08\x10\x0c\x06\xc9\xe7\xf3\x96\x56\xe0\x10\ \x40\xaa\xbf\x9f\x42\x38\x4c\x28\x9d\xc6\x55\x5e\xf7\xd1\x96\xf0\ \x7c\xb0\x3b\xd4\xb6\xd7\x32\xc9\x50\x88\x42\x7f\xbf\xe5\xe5\xbd\ \x4c\xed\xca\x96\x85\xe4\x00\x84\x10\x69\x60\x4c\x13\x42\x4c\x0b\ \x21\xe6\x4b\xcb\x45\xb4\x9a\x39\x35\x4d\x23\x14\x7a\xaf\xd0\x69\ \xf9\xbd\x2b\xc9\x92\xee\xeb\x23\xd3\xd5\xe5\x6a\x27\xf9\x68\x3f\ \x38\x65\xd2\x35\x6a\xc6\xd5\x6b\xbb\xd3\x64\x2a\x24\x93\xe8\x7d\ \x7d\x58\x9d\xd0\x92\x52\xba\xae\x5d\x19\x98\x07\xa6\x35\x20\x05\ \x8c\xbb\x79\x67\xd3\xf1\x6e\xf5\x5c\x81\xca\x27\x5c\xde\xbc\xd9\ \x72\xc7\xfa\x58\x7f\xf0\xc2\xa7\x64\xe5\x7e\x1d\x2b\x93\x94\xe4\ \x87\x86\xd0\x63\xb1\xaa\x7d\x5e\xa9\xaa\x8a\x17\x1a\x16\x8a\xa3\ \x52\x41\x60\x15\x97\x09\x4b\xd3\x34\xc2\xe1\xf0\x9a\xce\xa8\x59\ \xc1\x01\x83\xb0\x86\x87\x7d\xc2\xda\xa0\x68\x85\x09\xd6\x2e\x26\ \x9d\x67\x32\x49\x49\x7e\x78\x18\xa2\xd1\x9a\x21\x0d\xe5\x63\x33\ \x14\x0a\x79\xb1\x98\xea\x38\xb0\x1a\x14\x42\xa4\xa5\x94\xae\x12\ \x16\x40\x24\x12\x21\x10\x08\x14\x97\xbc\xae\x07\x19\x0c\xb2\xbc\ \x79\xb3\x2a\x83\xe1\x93\xd6\x86\xc2\x46\xf2\x29\xb9\x29\x13\xc1\ \x20\x85\xe1\x61\x15\x34\x5a\x28\x58\xfa\x2e\x4c\x65\x03\x5c\x2f\ \x39\x33\x2e\x84\x48\x07\x8d\x1b\xbb\x4e\x58\xe1\x70\xd8\x72\x2c\ \x96\x89\x95\x91\x11\xf2\x91\x08\xc1\x54\xca\x9f\x29\xdc\x00\x68\ \xe7\xc1\xde\xe9\x32\x21\x25\x7a\x34\x4a\x7e\x64\x04\xb0\xbe\x66\ \x67\xb9\xff\xd9\x45\x8c\x4b\x29\x31\x0d\xd1\x53\x54\x98\x29\x6c\ \x25\x42\xa1\x90\xbd\xe0\x33\x29\x59\x1a\x1e\x26\xd3\xd5\x65\x79\ \x46\xc3\x47\xe7\xc2\x8a\x03\xd9\xca\xbe\x9d\xad\xd1\xb6\x9d\x96\ \xc9\x6e\x7b\xf5\x64\x2a\x3d\x56\x3a\x76\xf4\x64\x92\xc2\x96\x2d\ \x6b\xd6\xfc\xac\xa7\x35\x05\x83\x41\x2f\x82\x46\xd3\x28\x8e\x2a\ \x12\xd6\x31\x94\x2f\xcb\x35\x98\xaa\xa5\x55\x0d\x4b\x00\x99\x9e\ \x1e\x96\xb6\x6c\xf1\x4d\xc2\x75\x8e\x76\x1c\xec\x6e\xca\x54\xaf\ \x0d\xbb\x32\x51\xe9\x33\x29\xc9\x6f\xd9\x82\xde\xdd\x5d\xf1\x3b\ \x28\x5f\x7b\xc1\xdc\xb7\x1d\xf4\xed\x0c\x56\x51\x1c\x55\x24\xac\ \x51\x5c\xae\xda\x50\xc9\xf1\x5e\xde\x59\x6b\x36\x20\x1f\x8b\xb1\ \xb0\x63\x87\xdb\x9d\xe5\xc3\x45\xb4\xe3\x60\xef\x54\x99\xca\xfb\ \xb5\xfc\xba\xfc\x59\x67\x81\x51\x07\xab\x5a\x58\x53\xf9\xbe\xe9\ \xca\xa9\x17\x8a\xe4\xf0\x36\x2b\x84\x18\x15\x42\x60\xea\x76\x8b\ \xc0\x51\x21\xc4\x39\x0e\xbf\x7f\x35\x11\x8d\x46\x6d\xf9\xb1\x64\ \x20\xc0\xfc\x8e\x1d\x14\xc2\x61\xb4\x7c\xde\x4d\x51\x7d\xb8\x80\ \x46\xfc\x34\x4e\xfb\x86\x9c\xb8\xce\xe9\xf6\x1a\xd9\xaf\xd5\xaf\ \x00\x7a\x24\x42\x7e\xe7\x4e\x08\x04\x6a\x3a\xdc\x4b\x67\x03\x35\ \x4d\x23\x12\x89\x78\x31\x43\x78\x14\xc5\x51\x68\x06\x83\x2d\x0b\ \x21\x0e\xbb\x29\x01\x40\x2c\x16\xab\x58\x1b\xab\x5c\x15\x2d\x6e\ \x52\xb2\xb8\x73\x27\xd9\x44\x62\x8d\xdd\xed\xa3\xb3\x61\xd7\x94\ \x72\x5a\x03\xaa\x25\x43\x3b\x69\x65\x56\x65\xaa\x77\x7f\x29\x25\ \x7a\x22\x41\x61\xe7\x4e\x4c\xf7\x4a\xad\xa0\x6d\x73\xdf\x24\x2c\ \x0f\x96\xa8\x3f\x0c\x2c\xc3\x7b\x26\xa1\x0e\x1c\x71\x5b\x8a\x50\ \x28\x54\x9c\x71\xa8\xa5\x8a\x16\x8f\x01\xa9\x81\x01\x96\x47\x46\ \xf0\xfd\x58\xeb\x03\x56\x06\x2d\x36\xf7\x9b\x19\xec\x56\xdb\x6e\ \x57\x99\xea\xf5\x29\x28\xc2\x2a\x6c\xd9\x82\xbe\x69\x93\xe5\x1c\ \x42\x50\xe3\xd5\xa3\xc2\x7d\x47\x50\x1c\x85\x76\xc1\x05\x17\x98\ \x07\x0f\x03\x2b\x6e\x4a\xa1\x69\x1a\x51\x3b\xa5\x8f\xa5\x24\x9b\ \x48\x30\xb3\x67\x8f\x9b\x62\xfa\x68\x11\x1a\xd1\x5e\x9c\x18\xe0\ \xf5\xee\xdd\x69\x32\xd5\xea\xd3\x6a\xd7\xe5\xcf\x3d\x17\x99\x48\ \xd8\xfa\xe1\x37\x63\x27\x9d\x80\x55\xff\x15\x8a\x93\x0e\x03\x5c\ \x70\xc1\x05\x94\xce\x4f\x1e\x41\xa9\x5d\xae\x55\x6d\x30\x09\xcb\ \x4e\x00\x9a\xd4\x34\x66\xf7\xec\x21\x1f\x8d\x12\xc8\x64\xfc\x78\ \xac\x0e\x45\xab\x7d\x39\xa5\xc7\x9c\x68\xaf\xdd\x64\x2a\xef\x4b\ \xcb\x6d\x48\x89\x8c\xc5\x28\xec\xdd\x8b\x08\x04\x2c\xd7\xc0\x02\ \x8a\xfe\x2b\x37\x21\x84\x58\xa6\xc4\xfa\x33\x03\x47\x01\x4e\xa3\ \x66\x0b\x87\xdc\x14\x28\x16\x8b\x11\x0c\x06\x29\x58\x8c\xb4\x15\ \x42\xb0\x70\xf6\xd9\xa4\xfa\xfb\x49\x8e\x8f\x63\xfd\xf7\xc1\x47\ \xbb\xc0\xeb\xc1\xde\x0a\xe2\x72\x53\x26\x2c\xb6\x51\xed\xb8\xde\ \xdf\x4f\xe1\xec\xb3\x6d\x69\x57\x81\x40\x80\x48\x24\x62\xf9\x7c\ \x07\x31\x8a\xe2\x26\xe0\x3d\x1f\x16\xa8\x6c\xe8\xd7\xdd\x96\x26\ \x12\x89\xac\x09\xf5\xaf\xbb\x01\x99\xbe\x3e\xe6\x6d\x76\xb8\x0f\ \xef\xe1\x94\x09\x86\x8d\xeb\xac\xb4\xd7\xce\x32\x95\xb7\x47\xb3\ \x32\x49\x49\x7e\xf7\x6e\x4b\x15\x1a\x4a\xb5\xa9\x70\x38\xec\x55\ \x84\xfb\xeb\x28\x6e\x02\xd6\x12\x56\x0e\x78\xad\xac\x6f\x5a\x8e\ \x40\x20\x40\xac\x46\xb6\xf8\x19\x90\x92\x7c\x24\xc2\xcc\xbe\x7d\ \x7e\x05\xd2\x0e\x82\xd7\x83\xbd\x1d\x09\xc8\x4e\xdb\x38\x25\x53\ \x30\x48\x61\xdf\x3e\x88\x46\x8b\x4b\xd3\x5b\x99\x21\x8c\x46\xa3\ \x5e\x38\xdc\x25\x8a\x93\x8a\x15\x91\x35\x80\xfd\xfb\xf7\x9b\xff\ \xbf\x86\x11\xef\xe0\x16\x84\x10\xc4\x62\x31\xdb\xd1\xb3\xd3\xfb\ \xf6\x91\xee\xed\xf5\xc3\x1b\x3a\x00\x5e\x0f\xf6\x76\x24\x20\x3b\ \x32\xe1\xa0\x4c\x7a\x7f\x3f\x85\x0b\x2e\x50\xb3\x83\x65\xdf\x53\ \xad\x70\x06\xd3\xd7\xec\xf2\xb6\x28\x84\x78\x4d\x08\x51\xe4\xa8\ \x72\x15\xe5\x1d\xe0\xb4\x10\xa2\xa7\xe6\x0b\xe8\xf0\x4a\x19\xf1\ \x78\x9c\x50\x28\x44\x2e\x67\xad\xb4\xbc\x90\x92\x95\xe1\x61\xe6\ \xce\x39\x87\xf8\xf4\xb4\xef\x78\x6f\x63\xd8\xd1\x20\x1a\x1d\xec\ \x95\xda\x70\xa2\x6d\x2f\x65\x2a\xef\xc3\xa6\x64\x12\x42\xed\xeb\ \x3a\x85\x3d\x7b\x90\xc3\xc3\xea\x87\xbe\x56\x49\xa7\x92\xcf\x82\ \xc1\xa0\x57\xfe\xab\xd3\x28\x4e\x2a\xa2\xa8\xd6\x18\x8c\x36\x23\ \x84\x78\xb3\x5e\x2b\x4e\xcf\x14\x98\x1d\x62\x27\x20\x2d\x1f\x8b\ \x31\x79\xe0\x80\x6f\x16\xb6\x31\x9a\xd5\x5e\xb0\x70\xdc\xca\x39\ \x4e\x6a\x54\x6e\xc8\x84\x55\x99\x4c\x22\x32\xf7\xcb\x36\xcc\x7d\ \xf3\x9c\x60\x90\xc2\xc1\x83\x60\xc7\x05\x83\xf2\x33\x7b\x90\xf0\ \x0c\xf0\x26\x30\x53\x7a\xa0\xdc\x0e\x5b\x45\x99\x85\xae\x42\xd3\ \x34\xe2\xf1\x78\xcd\xb5\x0a\xcf\x50\x55\x81\x99\xfd\xfb\x49\xf7\ \xf5\xf9\x66\x61\x9b\xc1\x27\xa0\xc6\x65\x32\xb5\x9e\x35\xa4\x54\ \x4e\x40\xe6\x7e\xe9\xe7\xf5\xda\x96\x52\x99\x83\xef\xb9\x7f\x2c\ \xc1\xf4\x5f\x79\x50\x12\x19\x14\x17\xad\x29\xca\x50\x24\xac\xf3\ \xcf\x3f\xdf\xdc\x7d\x05\x97\x03\x48\x01\x12\x89\x44\xb1\x56\x74\ \xad\xfa\xf2\x45\xd2\x92\x92\x95\xa1\x21\x66\xce\x3b\x0f\x7f\xb6\ \xb0\x7d\xe0\x35\x01\x59\x21\x26\xdb\x32\x95\x6a\x29\x4e\xc9\x54\ \x42\x40\xa6\xf3\xfb\x0c\x12\x2a\x27\x2f\x3b\xfd\x54\x4e\x62\x52\ \xa2\xef\xdb\x07\x86\x39\x58\xcb\x77\xa4\x69\x5a\x31\xc1\x39\x18\ \x0c\x16\x95\x09\x37\x37\x14\x07\xbd\x02\x6b\xb8\x89\x4a\x9e\xee\ \x57\x51\xd5\xfd\x5c\x15\x30\x12\x89\x10\x8b\xc5\xac\x9b\x85\x42\ \x50\x88\x46\x99\xb8\xe2\x0a\xf2\x91\x88\x4f\x5a\x6d\x80\x76\x20\ \xa0\x7a\x6d\x5b\xba\xae\xdc\xbc\xa2\xb2\xc9\x55\xd5\x04\xb3\xb0\ \x5f\xad\xef\x1c\xe9\xa7\x12\x99\x8b\xc4\x15\x8b\xa1\x5f\x79\x25\ \xc4\x62\x56\xc8\x02\xd5\x0d\x4a\xbb\xf2\x22\x9c\x41\x08\x31\x2e\ \x84\x78\xb5\x5c\x61\xd1\xca\x4e\x32\x4f\x7c\xd1\x6d\x01\x35\x4d\ \x23\x91\x48\xac\x99\x2d\xac\x17\x8f\xa5\x49\xc9\xcc\xf9\xe7\xb3\ \xb4\x7d\xbb\x6f\x16\x7a\x8c\xb6\x26\x20\x3b\x72\x54\x31\xaf\x1a\ \x95\xa9\xd2\x71\xec\xca\x64\x67\xbf\x92\x56\x26\x25\x72\xfb\x76\ \xe4\x05\x17\xd8\x1e\x27\x31\x83\xe0\x3c\xc0\x8b\x54\x58\x6b\xa2\ \x92\x86\x95\x06\x9e\xc1\x48\x36\x74\x13\xf1\x78\x7c\x8d\x59\x58\ \x17\x52\x92\xee\xeb\xe3\xf4\xa5\x97\x22\xdd\x2f\x2a\xe6\x83\xd6\ \x12\x90\x5d\x93\xae\xe9\x81\x5f\x42\x56\x4e\xc9\x44\x85\xff\x1b\ \xed\x9b\x9a\x32\x55\x30\x21\x8b\xfb\x9a\x46\xe1\xb2\xcb\x90\x36\ \x96\xf3\x02\x35\x19\x66\x2b\xd7\xd7\x39\xe8\x28\x0e\x3a\xa3\x0a\ \xf2\x9a\x51\xbe\x6f\xdf\x3e\x73\xf7\x59\x5c\x2e\xe8\x07\x2a\x9a\ \xd6\x96\x59\x88\xfa\x32\x4e\x5f\x76\x19\x99\xde\x5e\xdf\x2c\x74\ \x19\xad\x26\xa0\x7a\xed\xd9\xdd\xaf\x79\xbf\x6a\x83\xdd\x41\x99\ \xaa\xb5\xd9\x74\x3f\x55\x20\xda\xe2\xb9\x52\x22\x7b\x7b\x91\x97\ \x5f\x0e\x36\x7f\xd4\xad\x9a\x83\x2d\xf0\x5f\xcd\xa2\x38\xa8\x94\ \x93\x80\xca\x1a\x16\xc0\x21\xe0\x6d\x5b\x4f\xe7\x00\x02\x81\x00\ \x5d\x5d\x5d\x45\xb3\xd0\xca\xc3\x69\xc0\xd2\xce\x9d\x4c\x37\xa0\ \xee\xfa\x68\x1c\x5e\x11\x50\x4b\x06\x7b\xd9\x80\x77\x42\xa6\x72\ \xa2\xc2\x8e\x4c\x76\xfa\xa9\xde\x0c\xa1\x94\xc8\x0b\x2f\x84\x9d\ \x3b\xeb\x3a\xdb\xcb\x1d\xef\xa6\x8b\xc6\xaa\xcf\xcb\x29\x08\x21\ \xde\x16\x42\x1c\xaa\xd4\xb6\x56\xe1\x64\xa4\x94\x73\x42\x88\x67\ \x3d\x98\x19\x20\x91\x48\x14\xb3\xc2\xad\xe6\x16\x16\xa2\x51\xc6\ \xae\xbd\x96\x5c\x3c\xee\x6b\x59\x2e\xa0\xd5\x04\x64\xd7\xa4\x6b\ \xd9\x60\x6f\x42\xa6\xd2\xbe\x6a\x59\x3f\xd5\x33\x61\xa5\x84\x44\ \x02\xf9\x81\x0f\xa8\x54\x9c\x3a\x28\x1d\x87\xe1\x70\xd8\x2b\x73\ \x10\x94\x76\x35\x57\xe9\x83\x33\x08\xeb\xbc\xf3\xce\x43\xd3\x34\ \x09\x3c\x8d\xcb\x0b\x53\x80\x2a\x12\x96\x48\x24\x6c\x31\xb7\x90\ \x92\xd9\xf3\xcf\x67\x6e\xef\x5e\x5f\xcb\x6a\x31\xdc\x20\xa0\x7a\ \x6d\x37\x7a\x9d\xad\xc1\xde\x60\xdb\xe5\x7d\xd5\xb2\x7e\xb2\x60\ \xc2\x22\x25\x72\xef\x5e\xb8\xe0\x02\x28\xc9\x4e\xb1\x32\x3b\x68\ \xfa\x93\x3d\xc0\x2a\x8a\x7b\xe4\x79\xe7\x9d\x77\xc6\x87\xb5\x8c\ \xda\xe7\x50\xb5\x94\x5d\x47\x57\x57\x97\xbd\x44\x4b\x29\xc9\x26\ \x93\x8c\x5d\x7b\x2d\x05\xa3\xf2\x83\x0f\x67\xe1\x16\x01\xd9\xd5\ \xa8\x1a\x92\xc3\xca\x60\x6f\xa0\x6d\x2c\xb6\xd7\x54\x3f\xd9\x30\ \x61\x65\x38\xac\xb4\xab\x64\xb2\x98\x37\x68\x45\x11\x08\x04\x02\ \xc4\xe3\x71\x8b\x6f\x86\xe3\x38\x8a\xe2\x9e\x8a\xa8\x45\x58\xe3\ \xc0\x13\x5e\x48\x1c\x8d\x46\x89\x46\xa3\x75\x9d\xef\xa5\x66\xa1\ \x00\xa6\x2e\xbe\x98\xc5\xb3\xce\x42\xd8\x28\x4a\xe6\xa3\x3e\xdc\ \x24\xa0\x7a\xed\xd9\x91\xa3\xa9\xc1\x6e\xb3\xed\x7a\xfd\x64\xa7\ \xdd\xaa\x6d\xd4\x31\x61\xd7\x5c\xa7\xeb\xc8\xb3\xcf\x86\x4b\x2e\ \x01\x2a\xaf\x8a\x53\x4d\xcb\x8a\x46\xa3\xc5\x15\xad\x3c\x70\x0b\ \x3d\x41\x85\x70\x06\x13\x15\x09\xcb\x50\xc5\x0a\xc0\xc3\xc0\x8a\ \xdb\x42\x07\x02\x01\xba\xbb\xbb\xeb\x3a\xdf\x8b\x10\x02\x21\x25\ \x99\x81\x01\xc6\xae\xbf\x1e\xdd\x9b\xba\x3d\xeb\x12\xad\x20\x20\ \xbb\x64\xe4\xfa\x60\xb7\xb1\xdf\xca\x7e\x5a\x73\x9d\x85\xf8\xb0\ \x35\x5b\x28\x04\x37\xdc\x80\x18\x1c\xac\xe8\x26\xa9\xa6\x69\x55\ \x8a\x87\x74\x11\x2b\x42\x88\x87\x85\x10\x85\x4a\xe6\x20\xd4\xd0\ \xb0\x0c\x52\x78\x5e\x08\xe1\xfa\xe2\x14\xa0\x9c\xef\x76\x72\x98\ \x84\x12\x9a\xf1\xab\xaf\x66\x61\xd7\x2e\x5f\xcb\x72\x00\xad\xd2\ \x80\xea\xb5\xe1\xf9\x60\xaf\xb3\xb9\xd5\x4f\x95\xc8\xd6\x12\xf1\ \xeb\x3a\x72\xf7\x6e\xc4\xfb\xde\x57\xf7\x3b\x2e\x1f\x5f\x66\xc6\ \x89\x47\x38\x02\x3c\x5f\xeb\x84\x7a\x34\x3a\x0e\x3c\xee\x85\xe4\ \xc1\x60\x90\x64\x32\x79\x86\x33\xb0\xaa\xb6\x65\x68\x59\xe9\xc1\ \x41\x46\x3f\xf4\x21\x0a\xbe\x96\xd5\x14\x9a\xd5\x80\xec\x6a\x54\ \x6d\x33\xd8\xeb\xec\x53\xb6\xdf\xd2\x7e\xaa\x15\x0c\x5a\xab\xed\ \x70\x18\x71\xe3\x8d\x88\x4d\x9b\x8a\xf2\xd6\xb2\x52\x4a\xff\x4f\ \x24\x12\x5e\xad\x8c\x03\x8a\x6b\xc6\x6b\x9d\x50\x95\xb0\xf6\xee\ \xdd\x0b\x2a\xe2\xf4\x51\x3c\x48\x86\x06\xe5\x7c\x2f\xb5\xa5\xad\ \x40\x00\x13\x57\x5d\xc5\xc2\x9e\x3d\xbe\x96\xd5\x00\x9c\x22\xa0\ \x6a\xfb\x4d\x13\x90\x1d\x99\x6c\x0e\xf6\x7a\xe7\x36\xda\x47\x0d\ \x3d\xaf\xb0\x9e\x70\xbd\x66\x5f\xd7\x61\xcf\x1e\xb4\xab\xaf\x06\ \xb0\xb5\x8c\x57\x38\x1c\xf6\x24\xd1\xd9\x90\x6f\x05\xc5\x35\xba\ \xc1\x3d\x15\x61\xc5\x50\x7d\x0e\x07\x82\x48\x1b\x79\x88\x70\x38\ \x4c\x57\x57\x97\xad\x36\x00\x32\xfd\xfd\x9c\xbc\xe9\x26\x0a\x7e\ \x52\xb4\x2d\x78\x65\xd2\xb5\x64\xb0\x0b\xe1\x88\x4c\xe5\xfd\xe3\ \x24\x51\x57\x6d\xcf\x82\x56\x58\xf1\x3a\x29\x91\x91\x08\xe2\xe6\ \x9b\x61\x60\x80\xf2\x45\x52\x4b\xf7\x2b\x6d\x89\x44\xc2\xab\xba\ \xed\x66\xb0\xe8\x73\xf5\xc8\x55\xab\xd3\x08\xba\xae\x9f\x16\x42\ \x7c\xd7\x89\xa0\xd0\x06\x1e\x82\xee\xee\x6e\x42\xa1\x90\x2d\x0d\ \x4b\x00\xa7\xaf\xba\x8a\x99\x03\x07\xfc\xb8\x2c\x8b\x70\x92\x80\ \xea\xb5\x67\x77\xdf\x89\xc1\x6e\x57\xa6\x4a\x7d\xe3\x4a\x3f\x59\ \xf0\xb7\x55\x6b\x4f\x4a\x89\x38\x70\x80\xc0\xd5\x57\x17\x35\xab\ \x72\x97\x4a\x35\x98\x65\x64\x3c\xc4\x77\x29\x59\x1d\xa7\x1a\x6a\ \x12\xd6\xb9\xe7\x9e\x4b\x20\x10\x90\xc0\x7d\xc0\xa4\x17\x4f\x11\ \x0e\x87\x49\x26\x93\xb6\xaf\xcb\x75\x77\x73\xfc\xf6\xdb\xc9\x76\ \x77\xfb\x5a\x56\x1d\xb8\x41\x40\x56\xdb\xf5\x6c\xb0\x97\x7c\x6e\ \xe7\x79\x1d\xed\x27\x1b\x64\x5b\x51\xbb\xea\xee\x46\xfb\x89\x9f\ \x80\x9e\x1e\xdb\xef\x7c\x22\x91\x28\xae\x5e\xe5\x01\x26\x51\x1c\ \x23\xcf\x3d\xf7\xdc\x9a\x27\x5a\x9d\xbb\x7c\x0d\x78\xca\x8b\x27\ \x29\xd5\xb2\xca\x8f\xd7\x4a\xd7\x11\xc0\xcc\x81\x03\x4c\x58\x98\ \x29\xd9\xa8\x70\x9a\x80\xec\x9a\x74\x6e\x0c\x76\x3b\x32\x51\xe3\ \x3e\x2d\xed\xa7\x3a\xce\x75\x2b\xe4\x25\x01\xed\x9a\x6b\xd0\x0e\ \x1e\xb4\x4d\x56\xa1\x50\x68\x8d\xeb\xc5\x03\x3c\x85\xc5\x4a\xc7\ \x56\x09\x6b\x15\xf8\x06\x90\xf1\xe2\x69\x22\x91\x48\x71\xc6\xb0\ \x96\x89\xb9\xe6\xb8\x94\xe8\x91\x08\x27\x6f\xbb\x8d\xd4\xd0\x90\ \xef\x80\x2f\x43\x2b\x08\xa8\xda\x7e\xcb\x49\xd1\xa2\x73\xbd\x96\ \x4c\x38\x2d\x93\xd5\xe7\x15\xa2\xe9\x7e\x42\xd7\x61\x78\x98\xc0\ \xed\xb7\x23\xa2\xd1\x35\xe6\xa0\x95\xcd\xd4\xae\xbc\x70\xb6\x0b\ \x21\x32\x42\x88\x6f\x08\x21\x2c\xa5\x01\xd6\x25\xac\x73\xcf\x3d\ \xd7\x6c\xf8\x31\x21\xc4\x3b\x1e\x3d\x14\xdd\xdd\xdd\x75\x3b\x95\ \xf2\x2f\x4a\x4a\x16\x77\xed\xe2\xe4\x2d\xb7\xf8\x8b\x55\x94\xa0\ \xed\x09\xc8\x6a\xdb\xa2\x76\xe4\xba\x55\x8d\x8a\x66\xe5\xb0\xd1\ \x4f\x6b\x8e\x8b\xc6\x92\xaf\xcf\xb8\x5f\x30\x48\xe0\x96\x5b\xd0\ \x76\xed\x2a\x2e\x3d\x6f\x75\x5c\xb5\x81\x76\xf5\x0e\xf0\x18\x28\ \xae\xa9\x07\x3b\xe1\xac\x63\xc0\x03\x5e\x3d\x95\xa9\x65\x59\x85\ \x69\x1a\x12\x08\x30\x76\xf3\xcd\xcc\x5e\x78\xa1\xaf\x65\xd1\xe0\ \xc0\xb2\x70\x4e\x3b\x0e\x76\xea\xc8\x66\x47\x0e\xa7\xfa\xa9\x78\ \xdc\xa6\xbf\xad\xaa\x4c\xba\x8e\x76\xe0\x00\xc1\x5b\x6e\x41\x04\ \x02\xb6\x27\xb9\xba\xba\xba\x3c\x9b\x19\x34\xf0\x00\x8a\x5b\x2c\ \xc1\x12\x61\xed\xd9\xb3\x07\x54\x4c\xd6\x37\x81\x29\xaf\x9e\xac\ \xbb\xbb\xbb\xb8\x3e\x9a\xa5\x59\x49\x33\x65\xa7\xbf\x9f\x63\x77\ \xdd\xb5\xa1\x8b\xfc\x35\x3c\xb0\x2c\x7c\x6e\xa5\xbd\x56\x0d\x76\ \x3b\x32\x59\xe9\x0f\x27\xfa\xa9\xa6\x1c\x75\x42\x2e\x6c\xc9\x24\ \x25\xf4\xf5\x11\xfc\xa9\x9f\x42\xf4\xf7\xd7\x7c\xb7\x2b\xb9\x53\ \x22\x91\x08\x89\x44\xc2\xca\xeb\xd3\x2a\x4c\xa1\x38\x45\x37\x38\ \xa6\x2e\xec\x26\x0c\xbd\x04\x3c\xe2\xd5\xd3\x85\x42\x21\x7a\x7a\ \x7a\x6c\xe7\x39\x09\x29\x99\x39\x78\x90\xb1\x9b\x6e\xda\x90\x8b\ \xae\x3a\x45\x40\xd0\xe0\xc0\xb2\x70\x8e\xe5\x7b\x5b\x70\x4e\x57\ \x3b\x66\xa5\x3f\x1a\x92\xc9\x6a\xff\xda\xf0\x57\x59\xfa\xf1\x10\ \x82\xe0\xcd\x37\x13\xb8\xf8\xe2\x62\xf8\x8e\x95\xb0\x22\x21\x54\ \x81\xbe\x64\x32\x59\x0c\x19\x6a\x71\x50\x68\xb5\xcf\x1e\x11\x42\ \xbc\x64\x47\x23\xb4\x4b\x58\x29\xe0\x6b\xc0\x92\x57\xbe\xac\x64\ \x32\xb9\x26\xd7\xc9\x52\x07\x01\x32\x14\xe2\xe4\xed\xb7\x33\xbf\ \x6f\xdf\x86\x32\x0d\x9b\x19\x64\xae\x10\x90\x55\x39\x84\xfd\x4a\ \x0b\xe5\xfd\xe0\xb8\x4c\x76\xfa\x49\x38\x9c\x7c\xad\xeb\x68\xfb\ \xf6\x11\xba\xe3\x0e\x84\x61\xd2\xd9\x19\xf8\xd1\x68\xd4\xb5\xb8\ \xab\x2a\x72\x2d\xa1\xb8\x24\xd5\x12\xc2\xda\xb3\x67\x8f\x49\x00\ \xdf\x17\x42\x3c\xed\xca\x93\x56\x40\x20\x10\xa0\xb7\xb7\x97\x80\ \x61\xaf\x5b\xed\x20\x21\x25\xa9\xe1\x61\x8e\xfc\xec\xcf\x92\xae\ \x92\xc1\xbe\xde\xd0\x6a\x8d\xca\xce\x75\xcd\x0c\xf6\x7a\xfe\xaa\ \x4a\xd7\x95\xf7\x83\xe3\x32\xd9\xe9\x27\x0b\xfe\x2a\x5b\x32\x49\ \x09\x83\x83\x84\xef\xb9\x07\x31\x3c\x7c\x86\xa3\xbd\x74\xbf\xd2\ \x56\x5e\x0d\xc5\x23\x3c\x0d\x7c\x1f\x60\xf7\xee\xdd\x96\x2f\x6a\ \x44\xe2\x05\x14\x33\x7a\x12\xe2\x00\x6a\x75\x9d\x46\x66\x36\x84\ \xae\x33\x73\xd1\x45\x1c\xbb\xeb\x2e\x55\xe8\x6f\x1d\x93\x56\x23\ \x03\xcb\xae\x46\xe5\xc6\x60\xb7\xe2\x9c\xae\xf7\x4c\x76\xe5\x70\ \xb4\x9f\x1a\xf4\xb7\x55\xdd\x97\x12\x19\x0e\x13\xfe\xe9\x9f\x26\ \x78\xc9\x25\x6b\xea\xb4\x9b\xa8\xa7\xb1\xc4\xe3\xf1\xa2\x2f\xd8\ \x23\x64\x50\x1c\xb2\x60\xf7\x42\x5b\x84\x75\xce\x39\xe7\x98\xbb\ \x0f\x62\xac\xca\xea\x05\x84\x10\xf4\xf4\xf4\x54\x9c\xdd\xa8\x64\ \xaf\xaf\xd9\x02\x01\xc6\x6e\xb9\x85\x89\xeb\xaf\xf7\x4a\xfc\x96\ \xa3\x51\x02\xc2\xc6\x75\x56\xf6\x9d\x18\xec\x76\x65\xa2\xce\x3d\ \x9d\x20\x6a\x4b\x32\xd9\x08\x06\xb5\x2b\x53\xe8\x86\x1b\x08\xdd\ \x7a\xab\xed\x55\x70\x40\xf9\x81\xcb\xab\xa0\x78\x80\x57\x50\x1c\ \x52\xca\x29\x96\xd0\xa8\x4e\x38\x01\xfc\x13\xaa\xc8\x9f\x27\x88\ \x44\x22\xf4\xf6\xf6\x9e\xb1\xaa\x07\x54\x9e\x11\x29\x42\x4a\xf2\ \x89\x04\x47\x3f\xf1\x09\x16\xd6\x99\x3f\xab\x15\x04\xe4\xc9\x60\ \x07\x5b\x83\xdd\x6a\x1f\x34\x2d\x93\xd5\x7e\x12\xa2\x25\xfd\x24\ \x0d\xbf\x55\xe4\x93\x9f\x44\xeb\xea\xb2\x1d\x20\xaa\x69\x9a\xa5\ \x78\xc6\x16\x6f\x05\x21\xc4\x3f\x69\x9a\x36\xd1\xc8\x3b\x6e\x9b\ \xb0\xce\x39\xe7\x1c\xf3\xc6\xf7\x0a\x21\xde\xf4\xf0\xc1\xe9\xee\ \xee\x2e\x2e\x58\x61\xeb\x8b\x93\x92\xd5\x6d\xdb\x38\x72\xcf\x3d\ \xeb\xc6\x9f\xd5\x4e\x04\x64\x77\xe0\x9f\x31\xd8\x85\xb0\xdc\x5e\ \xbd\x67\x77\x92\xa8\x2d\xc9\x64\xc1\x04\x6c\x48\x26\x29\x11\x83\ \x83\x44\x3f\xfd\x69\xb4\x6d\xdb\x8a\x7e\x2b\x3b\x88\xc5\x62\x5e\ \x27\x38\x03\xbc\x09\xdc\x2b\xa5\xb4\xad\x5d\x41\xe3\x1a\x16\x85\ \x42\xe1\x28\xf0\x0f\x78\xa8\x65\x69\x9a\x46\x6f\x6f\xaf\xa5\xd5\ \x3d\xca\x67\x0d\x85\x94\xcc\x5d\x72\x09\x27\x7e\xea\xa7\x3a\xde\ \x9f\xd5\xd0\xc0\xb2\x70\x4e\xa3\x83\xbd\x61\x99\x2c\xfa\xab\xca\ \x9f\xdd\x09\x39\x9c\x20\x37\x2b\xf2\x37\x24\x93\x94\x10\x0e\x13\ \x31\xfc\x56\x8d\x90\x55\x30\x18\x6c\x07\x47\x7b\x01\xc5\x19\x47\ \x1b\x6d\xa0\x21\xe9\x77\xef\xde\x6d\x56\x25\xfc\xbf\x58\x4c\x5a\ \x6c\x15\xa2\xd1\x28\xdd\xdd\xdd\x75\x67\x47\xd6\xc0\x8c\x82\xd7\ \x34\xc6\x6e\xbd\x95\xd3\x1d\xec\xcf\x6a\x68\x60\x35\x78\x5d\x3b\ \x0c\x76\xb0\x2f\x9f\x2b\xfd\x24\x9a\x4f\xbe\xae\xb5\x1f\xba\xe1\ \x06\xc2\xb7\xdd\x66\xc9\x6f\x55\x2d\x1c\xc8\xc3\x6a\x0c\x26\x5e\ \x43\x71\x86\xad\x99\xc1\x52\x34\x4b\xb7\xc7\x81\xbf\x03\xf2\x5e\ \xf6\x42\x77\x77\x77\xb1\x52\xa2\x2d\x98\xfe\xac\xbb\xef\xee\x38\ \x7f\x56\x3d\xad\xc8\x31\xad\xc7\xe6\x7e\x43\x32\xd5\x19\xec\xe5\ \xcf\xed\x8a\x4c\x56\xfb\x49\x58\x2f\x63\xdc\x90\x4c\xba\x4e\xf0\ \xfc\xf3\x89\xd6\xf1\x5b\x69\x9a\x56\xdc\xca\x7f\xa4\xcd\x59\x75\ \xbb\xe3\xc3\x61\x17\x4e\x5e\x08\xf1\x77\x81\x40\xe0\xb8\x2d\x21\ \xca\xd0\x30\x61\x95\x30\xe4\xd7\x81\x97\x9d\x98\x75\x68\xb4\x33\ \x82\xc1\x20\xfd\xfd\xfd\x6b\x66\x0d\xed\xf8\xb3\x52\xdb\xb6\x71\ \xe4\x0b\x5f\x60\x65\xc7\x8e\x8e\x20\x2d\xab\x83\xaf\x51\x32\xb2\ \xd3\xae\x95\x36\xa8\x75\xac\xce\x60\xc7\x4a\x1b\x4e\xcb\x64\xb5\ \x9f\x84\x68\xad\x4c\xba\x8e\xb6\x73\x27\xb1\x2f\x7e\x91\xe0\xf6\ \xed\x35\x97\x9a\xaf\x04\x21\xc4\x19\xd9\x21\x76\x23\xd4\x1d\xc4\ \xcb\xc0\xd7\x75\x5d\x6f\x58\xbb\x82\x26\x35\x2c\xe3\xc1\x46\x85\ \x10\x7f\x0b\xe4\x9a\x65\xe1\x66\x10\x89\x44\xe8\xeb\xeb\x2b\xfe\ \xc2\xd8\x7a\x0e\x29\x99\xbf\xf0\x42\x0e\x7d\xe9\x4b\x6d\x5f\x8a\ \xa6\x15\xe6\x8e\xdb\x83\x1d\xb0\xe4\x5c\x07\xf7\x64\xb2\x4d\xd4\ \xa2\xb1\xe4\x6b\xcb\x32\xe9\x3a\xda\xd0\x10\x89\x5f\xf8\x05\x42\ \x07\x0e\xd0\x88\x8f\xd5\x9c\x98\xf2\x38\xb9\x19\x20\x07\xfc\x2d\ \x30\xda\x6c\x43\x4d\x11\xd6\xae\x5d\xbb\xcc\xdd\x7b\xa9\xb3\x3c\ \x8f\x1b\xe8\xea\xea\x6a\xaa\x54\xc6\xcc\x95\x57\x72\xe4\xf3\x9f\ \x27\xdb\xd7\xd7\x96\xa4\xd5\xb0\xd9\x82\x37\x83\xbd\xa6\x19\x55\ \xa3\x3d\x5c\x96\xc9\x76\x3f\xd9\x74\xae\xdb\x96\x49\xd7\x11\x7d\ \x7d\xc4\xbe\xf0\x05\x42\x57\x5e\x69\x8b\xac\x4a\x15\x80\xae\xae\ \xae\x76\x98\x15\x04\xc5\x0d\xf7\xc2\x1a\xce\x68\x08\x4e\x15\x89\ \x1a\x07\xfe\x1b\x70\x10\xf0\x2c\xfd\x5b\x08\x41\x6f\x6f\x2f\xb9\ \x5c\x8e\x74\x3a\x5d\xf5\x9c\x5a\x98\xba\xee\x3a\x82\x2b\x2b\xec\ \xfe\xab\xbf\x22\xb8\xb2\xd2\x16\xc9\xd2\xb2\xc2\xdf\x86\xb4\x9a\ \x16\xed\x5b\xf9\xdc\x84\x5e\x62\x02\x96\x9f\x5b\xfe\xcc\x5e\x3c\ \x6f\xcd\xcf\x45\x83\x2b\xd9\xd8\x39\x57\x4a\xe8\xea\x22\xfe\x99\ \xcf\x10\xb9\xe1\x86\xba\xef\x6b\xa5\xcf\xa5\x94\xc5\x72\x4c\x9a\ \xa6\xa9\x90\x08\x8f\xde\x63\x29\xe5\x0a\xf0\xdf\x84\x10\xe3\xf5\ \x56\x72\xb7\x82\xa6\xe7\x38\x4b\x18\xf3\xdb\xc0\x03\x5e\xc6\x65\ \x09\xa1\x56\xda\x31\xfd\x59\x95\x9c\x92\x35\xaf\x07\x64\x20\xc0\ \xc4\xad\xb7\x72\xe2\xee\xbb\xd1\xa3\xd1\x86\x54\x71\x27\xe1\xb6\ \x06\xd4\x4c\xdb\xd5\x8e\x99\x28\x25\xab\x4a\xe7\x34\x2b\x87\x55\ \x99\x1a\xea\xa7\x26\xc9\xca\x92\x4c\x52\x42\x34\x4a\xfc\x93\x9f\ \x24\x7a\xdb\x6d\x68\x25\xf5\xad\xec\xb8\x51\x4c\xbf\x95\x19\xee\ \xe3\x15\x59\x19\xf7\x7e\x40\x08\xf1\x6d\x68\x5e\xbb\x02\x07\x08\ \x0b\x30\x13\x91\x97\x84\x10\x7f\x86\x85\x95\x2f\x5a\x8d\x58\x2c\ \xb6\xc6\x9f\x65\xf9\x0b\x33\x49\x2b\x14\x62\xf4\xce\x3b\x19\xfd\ \xd8\xc7\xd4\x92\xdf\x1e\x91\x56\x33\x04\x44\x13\xfb\x4e\x0c\xf6\ \xd2\x67\xd0\x85\x40\x17\x95\x2b\x2d\x60\xb1\x3d\xa7\x64\x6a\xa8\ \x9f\x2c\xcc\x62\x36\x2d\x93\x94\xc8\x50\x88\xd8\x9d\x77\x12\xbb\ \xeb\xae\x62\x05\x06\xbb\x30\xa3\xd9\x3d\xce\x15\x34\x71\x1a\xf8\ \x33\x54\x65\x06\x47\xe0\x08\x61\xed\xdc\xb9\xd3\xdc\x7d\x0a\xf8\ \x47\xd7\xbb\xa5\x02\xba\xba\xba\xe8\xee\xee\x6e\xec\x62\x29\xd1\ \xa3\x51\x4e\xdc\x7d\x37\xe3\x1f\xfe\xb0\x8a\x7d\x71\x99\xb4\x5a\ \xa1\x51\x61\xe1\xb8\x95\x73\xea\x99\x3d\x6b\x9e\xa1\x82\xbf\xa7\ \xde\xb3\xb6\x9c\x80\xec\xf4\x93\xc5\x60\xd6\xa6\x64\x92\x12\x34\ \x8d\xe8\x2d\xb7\x10\xff\xd9\x9f\x45\x34\xa8\xd9\x9b\x7e\x2b\x0f\ \x97\x9a\x2f\xc7\x3f\x62\x2c\x5e\x73\xf6\xd9\x67\x3b\xd2\xa0\x63\ \x61\xaf\x86\x40\x39\xe0\x2f\x81\x1f\xbb\xdf\x37\x6b\x21\x84\x4a\ \x90\xae\xe7\x74\x2c\xd7\xbe\x4a\xcd\xc3\x7c\x32\xc9\xb1\xcf\x7c\ \x86\xc9\x0f\x7e\xd0\x55\xd2\xf2\x8a\x80\xec\x0e\xfc\x6a\x5a\x55\ \xf1\x9c\x1a\x64\xe5\x19\x01\xd9\x69\x43\xd8\x4f\xbe\xb6\x2a\x53\ \x71\x33\xc8\x2a\xf2\xa1\x0f\x91\xf8\xec\x67\x11\xc9\xe4\x9a\xf7\ \xac\xd4\x42\xa8\x67\x1e\xc6\x62\xb1\x86\xe2\xad\x5a\x84\x1f\xa3\ \xb8\x20\xe7\x14\x59\x81\x73\x4e\xf7\x52\xbc\x05\xfc\x4f\xe0\x0f\ \x00\x4f\xe7\x53\x03\x81\x00\xfd\xfd\xfd\xe8\xba\x4e\x3a\x9d\xae\ \x19\xaf\x52\xf1\xb8\x94\xe4\xfa\xfb\x39\xfc\x8b\xbf\x48\x21\x16\ \x63\xf8\x81\x07\x10\xb9\x5c\xcb\x1c\xf1\xb5\xb4\x96\x46\x06\x4b\ \xa3\xd7\xd9\x69\xbb\x9a\xfc\x95\x9c\xeb\xd8\xbc\x87\x5b\xcf\x7b\ \xc6\x31\x07\xfc\x55\x96\x64\x92\x12\x42\x21\xa2\xb7\xde\x4a\xd7\ \x67\x3f\x8b\xd6\xd7\xa7\xc8\xaa\xc2\xfb\x55\x8f\x84\xc2\xe1\x30\ \xdd\xdd\xdd\x66\x06\x8a\xd7\xc8\x01\xff\x33\x9f\xcf\xbf\xe5\xb4\ \x3c\x8e\x8f\xbc\x63\xc7\x8e\x01\x6c\x02\xfe\x37\x70\xb3\x0b\x9d\ \x53\x17\x99\x4c\x86\xa9\xa9\x29\x72\xb9\x5c\x43\xbf\x3e\x52\x08\ \x82\xcb\xcb\xec\xf8\xea\x57\xd9\x7a\xef\xbd\x68\xe9\xb4\xe3\xa4\ \xd5\x2e\x04\x64\x67\x9f\x0a\xc7\x74\xd6\x6a\x26\x34\xd8\xb6\x67\ \x44\x6d\x21\xe4\xc2\x11\x99\x4c\x07\xfb\x4f\xfe\x24\x89\x9f\xfd\ \x59\xa5\x59\x35\x18\x4a\x13\x0a\x85\xe8\xeb\xeb\x6b\x87\xd4\x1b\ \x13\x0f\x01\x3f\x07\x4c\x9d\x75\xd6\x59\x8e\x36\xdc\xaa\x4c\xc8\ \x29\xe0\x8f\x50\x65\x68\x3c\x47\x24\x12\xa1\xbf\xbf\xdf\x52\x92\ \x74\x25\x08\x29\x29\x74\x75\x71\xfc\x53\x9f\xe2\xf8\x3d\xf7\x50\ \x48\x24\x1a\x7e\xb9\x2a\xa1\x11\x93\xae\x51\x33\xae\x5e\xdb\x58\ \x6c\xbb\xd2\x79\x7a\x59\x30\x28\x0d\xc8\xd1\x8c\x4c\x4d\xf7\x93\ \x0d\x7f\x55\x53\x32\xe9\x3a\x24\x12\x24\x3e\xf5\x29\x12\x9f\xfe\ \x34\xa2\xab\xab\xe1\xf7\x29\x10\x08\xd0\xd3\xd3\xd3\x4e\x64\x35\ \x81\x1a\xfb\x2d\x59\xac\xc6\x71\xc2\x2a\x61\xd4\x27\x80\xff\x85\ \xfa\xd1\xf5\x1c\xf1\x78\xbc\x38\x73\x68\x05\x67\xf8\x0e\x00\x19\ \x8b\x31\xf6\xf1\x8f\x73\xf4\x8b\x5f\x24\xe7\x50\x70\xa9\xd5\x01\ \x87\x85\xfd\x7a\xd7\xd9\x1d\x58\x54\x39\x46\xa5\xcf\x4b\xcc\x28\ \x51\x47\xae\x56\xc8\xd4\x74\x3f\x59\x28\x0b\x63\x47\xa6\xaa\x9f\ \x1b\x41\xa1\xc9\x2f\x7d\x89\xf8\xc7\x3f\xde\xb0\x83\x1d\xd4\x8c\ \x60\x4f\x4f\x0f\xd1\x68\xb4\xa1\xeb\x5b\x00\x1d\x35\xe6\x9f\x80\ \x35\x5c\xe0\x18\x5a\xe6\x9d\x33\x4c\xc3\xed\xa8\x52\xa8\xd7\xb4\ \xea\x3e\x76\x20\xa5\x64\x71\x71\x91\x85\x85\x05\x74\x5d\x6f\xcc\ \x39\x29\x04\xa2\x50\x60\xf0\xf1\xc7\x39\xfb\x2f\xff\x92\xe8\xc4\ \x04\xb2\xc1\x92\x1d\xcd\x9a\x16\x6e\x9a\x4f\x35\xcf\x2f\x21\xab\ \x46\xe5\x70\xe2\x59\x1a\xee\x27\x0b\xc9\xcb\x4e\xc8\x24\x75\x9d\ \xc0\xf0\x30\x5d\x5f\xfa\x12\xd1\x1b\x6e\x40\x18\x41\x9d\x76\x20\ \x84\x40\x4a\x59\x0c\x5f\x30\x9d\xec\x4e\x04\x65\x36\x03\x43\x86\ \xa7\x80\xbb\x81\x93\xad\x20\x2b\x68\x8d\xd3\xbd\xf4\x21\x4e\x4a\ \x29\xff\x18\x38\x5f\x08\xd1\xe7\x75\xa7\x9a\x5f\x32\xc0\xc2\xc2\ \x42\xd5\x08\xe0\x5a\x72\x0a\x29\x91\x81\x00\x53\x1f\xfa\x10\x85\ \x44\x82\x5d\xff\xfd\xbf\x13\x3f\x7e\xdc\x16\x69\xb5\x03\x01\x59\ \x25\x29\xea\xb5\x5d\xd2\x7f\x6e\xc8\xe4\x68\x3f\x39\xe8\x5c\xaf\ \x2b\x93\xae\x13\xdc\xb9\x93\xe4\x97\xbf\x4c\xe4\xaa\xab\x94\x0f\ \xb4\xc1\x08\xf4\x72\xb2\x02\x6f\x83\x43\x0d\xcc\x09\x21\xfe\x18\ \x38\xd9\xca\x9b\xb4\xf4\x29\x8f\x1f\x3f\x0e\x10\x41\xd9\xb4\xff\ \xac\xd5\xf7\xb3\x0a\x29\x25\x0b\x0b\x0b\x2c\x2e\x2e\x36\xf7\xcb\ \x24\x04\xdd\xaf\xbd\xc6\xd9\x7f\xfe\xe7\x24\xdf\x7c\xb3\x78\xac\ \xe6\xbd\x4b\xfe\xba\x4d\x40\x76\xda\xae\x77\x4e\x39\x51\xb5\x05\ \x01\xd9\xd9\xb7\x91\x0f\xd8\x94\x4c\x52\x22\x81\xd0\xfe\xfd\x24\ \x7f\xf1\x17\x09\x37\x98\xc8\x6c\xc2\xac\x6d\xd5\x06\x75\xd9\x4b\ \x21\x81\xff\x0a\xfc\x3a\x90\x29\x89\xcb\x74\x1c\x2d\x7f\x62\x83\ \xb4\x76\xa1\x66\x0d\xaf\x6e\xf5\xfd\xac\x42\x4a\xc9\xfc\xfc\x3c\ \x4b\x4b\x4b\x0d\xa9\xe5\x48\xa9\x06\xad\x10\xc4\x46\x47\xd9\xfe\ \x0f\xff\xc0\xe0\xa3\x8f\xa2\x65\x32\x55\x8b\xac\xb5\xb5\xb6\x51\ \xb2\x5f\xaf\x3d\x29\x84\xe5\x7b\xba\xfd\x2c\x96\xda\x6e\x30\x79\ \xd9\xee\xfd\xa4\xae\x23\x22\x11\xa2\x1f\xfa\x10\x5d\xf7\xdc\x43\ \x60\xfb\xf6\xa6\x26\x6b\xcc\xc0\xd0\xd2\x82\x95\x6d\x82\x67\x50\ \xb3\x82\xef\xb6\x92\xac\xc0\x3d\xc2\x02\xb8\x15\xf8\x1b\x60\xa8\ \xd5\xf7\xb4\x0a\x5d\xd7\x99\x9f\x9f\x67\x79\x79\xf9\x0c\xd2\xb2\ \xf3\x42\x48\x4d\x23\xb8\xb2\xc2\xd0\x7d\xf7\xb1\xf5\x1f\xff\x91\ \xc8\xd4\xd4\x19\x26\xa2\x9b\x03\xb5\xf4\x98\x9d\xb6\xb1\xd2\x9e\ \x0d\xb2\x72\x42\x26\xc7\xfb\xa9\x8a\xfc\x8e\x93\xa5\xae\x13\xd8\ \xb4\x89\xf8\x27\x3e\x41\xfc\xf6\xdb\x11\x4d\xce\x2c\x0b\x21\x48\ \x24\x12\xf4\xf4\xf4\xb4\x1b\x59\x9d\x06\x3e\x03\x7c\x17\xd6\x64\ \xbd\xb4\x04\xae\x3c\xb9\x41\x5a\x01\xe0\x37\x80\xdf\xc2\x21\xdf\ \x59\x33\x5f\x9c\xe9\xbf\x2a\x27\x2d\x2b\x6d\x56\xd4\xc8\x84\x40\ \xe8\x3a\xbd\x2f\xbe\xc8\xf6\xbf\xfe\xeb\xa2\x89\xd8\xe8\x00\x6f\ \xe5\x60\xaf\xd4\x06\x56\xae\x6b\xe1\x60\x77\xf2\x59\x2a\x1e\x6f\ \xc0\x5f\xd5\x90\x1c\x86\x09\x18\xde\xbf\x9f\xae\xcf\x7e\x96\xc8\ \x65\x97\x35\x9d\x25\x61\x6a\x56\x66\xf5\x85\x36\x42\x1e\xf8\x6d\ \x29\xe5\xef\x09\x21\x0a\x3b\x76\xec\x68\xf9\x0d\x5d\xa3\xea\x13\ \x27\x4e\x00\x0c\xa2\xa6\x3d\x7f\xc2\xad\xfb\x5a\x81\xe9\xd3\x6a\ \xc4\x3c\x5c\x03\xc3\x44\x8c\x8e\x8e\xb2\xed\xef\xff\x9e\xc1\x47\ \x1f\x45\xa4\xd3\x48\x4d\x6b\x4b\x6d\x83\x2a\x6d\x54\x6c\xdb\x66\ \x19\xe0\x46\x65\x6a\x49\x3f\xb5\x28\x72\xfd\x8c\xe3\xba\x0e\xd1\ \x28\x31\x87\x4c\x40\x25\x7a\x5b\xfa\xac\x4c\x7c\x0b\xf8\x1c\x30\ \xed\x06\x59\x81\x8b\x84\x75\xf2\xe4\x49\x93\x0c\x2e\x07\xbe\x0a\ \xd8\x5f\xe3\xa7\x85\x30\x43\x1e\x2a\x39\xe2\x4b\xa7\x8d\x2d\x69\ \x60\x86\x89\xb8\xf9\xdb\xdf\x66\xe4\x6b\x5f\x23\x64\x98\x88\x6e\ \x0e\x76\xbb\x24\x55\x75\xbf\x45\x33\x69\xae\x11\xb5\x8b\xfe\xaa\ \xc0\xa6\x4d\x24\x3e\xf1\x09\xe2\x77\xdc\xd1\xb4\x09\xa8\x44\x6f\ \x6b\xb2\x3a\x0c\x7c\x12\xa3\x70\xe7\xba\x23\x2c\x28\x6a\x59\x00\ \x9f\x07\xfe\x04\x68\xbc\x3c\x68\x0b\x20\xa5\x64\x69\x69\x89\xa5\ \xa5\x25\xf4\x66\x83\x42\x85\x00\x5d\xa7\xe7\x85\x17\xd8\xf2\x37\ \x7f\x43\xd7\x1b\x6f\x60\x3a\xea\xbd\x1a\xec\xd8\xbd\xce\xa5\xc1\ \xde\xec\x75\x55\xf7\x1d\x36\xc7\x2b\xee\x1b\xb9\x7f\x21\xd3\x04\ \xbc\xf4\x52\x47\x12\xe5\xcd\xd0\x05\x73\xdd\xcd\x36\xc3\x32\xf0\ \x2b\xc0\x5f\x81\x7b\x64\x05\x1e\x84\x19\x18\xa4\x15\x03\x7e\x0f\ \xf8\x65\x5a\x97\x1e\xd4\x30\x56\x56\x56\x58\x58\x58\xa0\x50\x70\ \x60\xc9\x45\x4d\x23\x3c\x3e\xce\xe6\x7b\xef\x65\xe0\xfe\xfb\x09\ \xce\xce\x9e\x61\x22\xba\x31\xd8\xb1\xdb\x76\x1b\xfa\xde\x1a\x95\ \xbf\x65\x32\xe9\x3a\x5a\x7f\x3f\xb1\x5b\x6f\x25\x7e\xe7\x9d\x04\ \x46\x46\x1c\x49\xd9\x32\xd3\x6d\x1a\x5a\x09\xaa\xf5\xd0\x81\x3f\ \x95\x52\xfe\x86\x10\x22\xb5\x7d\xfb\x76\x57\x6f\xee\x49\x6f\x9c\ \x3c\x79\x12\x60\x18\x55\xd5\xe1\x76\x2f\x64\xa8\x87\x54\x2a\xc5\ \xfc\xfc\x3c\xf9\x7c\xf3\x2b\x98\x49\x4d\x43\xcb\xe5\x48\xbe\xf8\ \x22\x9b\xbf\xfa\x55\xba\x5e\x7e\x19\xf2\x79\xcb\xc4\xd5\xec\xc0\ \xc2\xee\x75\x6e\x0c\xf6\x26\xae\xab\x29\x93\x0b\x95\x16\xa4\xae\ \x43\x30\x48\xf8\xa2\x8b\x48\x7c\xf2\x93\x44\x2e\xb9\x04\x42\x21\ \x47\xc8\x2a\x14\x0a\xd1\xdb\xdb\xdb\x4e\xe9\x36\xe5\xb8\x0f\xf8\ \x02\x30\xe1\x36\x59\x81\x47\x84\x35\x3a\x3a\x6a\xfa\x84\x0e\xa2\ \x56\x82\xbd\xd0\x0b\x39\xea\x21\x9b\xcd\x32\x3f\x3f\x4f\x26\x93\ \x71\xa4\x3d\xa9\x69\x84\x66\x66\x18\xb8\xef\x3e\xfa\xbf\xfd\x6d\ \xc2\xa7\x4e\x15\x09\xa2\x55\x83\x1d\x8b\x6d\x14\xff\xb7\xe9\x5c\ \x6f\x39\x01\xd9\x69\xa3\x4a\xfd\x2d\xc7\x64\x32\x66\x00\x03\x23\ \x23\xc4\xef\xb8\x83\xd8\x47\x3e\x82\x36\x30\xe0\x58\x22\x7c\x24\ \x12\xa1\xb7\xb7\xb7\x9d\x12\x99\xcb\xf1\x3a\x70\x0f\xf0\x2a\xc0\ \x86\x21\x2c\x28\x6a\x59\x00\x1f\x05\xfe\x82\x36\x8a\xcf\x2a\x45\ \x3e\x9f\x67\x61\x61\x81\xd5\xd5\x55\x67\x1a\x34\x7c\x5b\xb1\x43\ \x87\x18\xf8\xc6\x37\xe8\x7e\xfc\x71\x02\x0b\x0b\x6b\x96\xbd\x02\ \x67\x08\x03\x3b\x6d\xb8\x50\x56\xa5\xa5\x5a\x59\x83\x91\xeb\x96\ \xda\x96\x52\x85\xbc\xf4\xf4\x10\xb9\xee\x3a\xe2\x1f\xfb\x18\xa1\ \x73\xce\x71\xb4\xa8\x63\x3c\x1e\x5f\x53\x87\xbd\x0d\x71\x1a\xf8\ \x12\xf0\x4d\xf0\x86\xac\xc0\xe3\x54\x19\x83\xb4\x02\x28\x07\xde\ \xef\x00\x6d\xa9\x07\xeb\xba\xce\xd2\xd2\x12\xcb\xcb\xcb\xcd\x3b\ \xe3\x0d\x48\x4d\x43\x4b\xa7\xe9\x7a\xe9\x25\xfa\xbf\xfe\x75\xe2\ \x2f\xbd\x54\x0c\x81\x80\xe6\x34\x19\xec\x5e\xe7\xc0\x44\x80\xdb\ \xd7\xd9\x35\x61\x1b\x95\x49\xea\x3a\x22\x1a\x25\x74\xf1\xc5\xc4\ \xef\xba\x8b\xf0\x25\x97\x20\x22\x11\xc7\xb4\x2a\x4d\xd3\x3c\x8b\ \xb1\xb2\x92\x34\x6d\x9c\x93\x06\x7e\x53\x4a\xf9\x27\x42\x88\x82\ \x57\x64\x05\x6d\x90\xdb\x67\x90\x56\x12\x95\x6f\xf8\x45\x21\x84\ \xe6\x75\x92\x74\x39\xcc\x2f\x76\x75\x75\x95\x85\x85\x85\xa2\x5f\ \xab\x29\x87\xa8\x99\xda\xa3\x69\x04\xe6\xe7\xe9\x7e\xf2\x49\x7a\ \xee\xbb\x8f\xe8\x5b\x6f\x41\x36\xdb\x30\x71\x51\xe5\xb8\x17\x83\ \xdd\xe9\x7d\x3b\xf2\x37\x2d\x93\xae\x43\x38\x4c\x68\xdf\x3e\x62\ \x1f\xf9\x08\x91\x6b\xaf\x45\xeb\xe9\x71\xb4\x0e\x5a\x30\x18\xa4\ \xa7\xa7\x87\x58\x2c\xd6\x8e\xce\x75\x13\x3a\xaa\xd4\xf1\xaf\x03\ \x4b\xdb\xb6\x6d\xf3\x54\x98\xb6\xe8\xa5\xd1\xd1\x51\x80\x11\xd4\ \xda\x86\x77\x7a\x2d\x4f\x2d\x64\x32\x19\x16\x16\x16\x1c\xf3\x6b\ \x01\xc5\x80\xd3\xe0\xf4\x34\x5d\x4f\x3e\x49\xf7\x77\xbe\x43\xe4\ \xed\xb7\x21\x97\x2b\xe6\x2b\x3a\xaa\x51\xd1\xd8\x60\x6f\x17\x42\ \xc3\x90\xdd\x71\x99\x0c\xd3\x8f\x50\x88\xd0\xde\xbd\x44\x6f\xbb\ \x8d\xe8\xfb\xdf\x8f\x36\x38\xa8\x4c\x3f\x07\x7f\x48\x3b\xc0\x5f\ \x65\xe2\x5e\xe0\xcb\xc0\xb8\xd7\x64\x05\xed\x45\x58\x00\x7b\x50\ \x91\xf0\xd7\x7a\x2d\x53\x2d\xe4\xf3\x79\x96\x96\x96\x58\x59\x59\ \x71\xb6\x0e\x91\x49\x5c\x53\x53\x74\x3d\xf1\x04\x5d\x0f\x3c\x40\ \xf8\xd0\x21\x44\x26\x53\x95\xb8\x28\xd9\xf7\x74\xb0\x3b\xd4\x86\ \x13\x26\xac\x6d\x39\x4c\xa2\x8a\x44\x08\xee\xd9\x43\xf4\xe6\x9b\ \x89\x5e\x77\x1d\xda\xa6\x4d\x8e\x13\x55\x69\x9a\x4d\x9b\xd4\x5f\ \xaf\x85\x27\x51\x91\xec\x87\x00\x7c\xc2\x2a\x41\x09\x69\x5d\x01\ \xfc\x35\xb0\xdf\x6b\x99\x6a\xc1\x34\x11\x17\x17\x17\x1d\x09\x7d\ \x58\x03\x43\xf3\x09\xcc\xcc\x10\xff\xe1\x0f\xe9\x7a\xe4\x11\x22\ \xaf\xbf\x8e\x58\x5e\x2e\x3a\xe7\xd7\xc8\x82\x87\x83\x1d\x07\x08\ \xc8\x46\x7b\x4e\x04\xb3\x16\xff\x37\x9d\xe9\x5d\x5d\x84\x2e\xb8\ \x80\xe8\x8d\x37\x12\xbe\xe2\x0a\x35\xf3\xa7\x4e\x70\xf4\x6b\x0d\ \x85\x42\x74\x77\x77\xb7\xbb\x09\x68\xe2\x4d\xe0\xb3\xc0\x73\xd0\ \x1e\x64\x05\x6d\x44\x58\xb0\x86\xb4\x6e\x03\xfe\x1c\x55\xb1\xb4\ \xad\x91\xcd\x66\x59\x5c\x5c\x24\x9d\x4e\x37\xad\x6d\xad\x71\x82\ \x1a\x1a\x15\x42\x10\x58\x5c\x24\xfa\xca\x2b\xc4\x1f\x79\x84\xe8\ \x8b\x2f\xa2\xcd\xce\x82\xae\x5b\x36\x17\x9b\x1d\xec\x4e\x93\x5b\ \xc3\xf7\x76\xc2\x5f\x65\x6a\x53\x9a\x86\xd6\xdf\x4f\xe8\x92\x4b\ \x88\xde\x78\x23\xa1\x83\x07\xd1\xba\xbb\x8b\x1a\x55\x23\xdf\x65\ \x2d\x12\x8a\xc5\x62\x74\x77\x77\x77\x82\x09\x08\xaa\x08\xdf\x2f\ \x04\x02\x81\xfb\xf3\xf9\x7c\xdb\x90\x15\xb4\x19\x61\x41\x31\x46\ \x4b\x68\x9a\xf6\x29\xe0\x3f\x03\x03\x5e\xcb\x54\x0f\xba\xae\xb3\ \xbc\xbc\xcc\xf2\xf2\xb2\x33\xd1\xf1\xe5\x30\x88\x49\xa4\xd3\x84\ \x8e\x1c\x21\xf6\xd4\x53\x44\x9f\x7e\x9a\xd0\xd1\xa3\x90\x4e\x5b\ \x22\xae\x56\x96\x01\x6e\xf4\x3a\xbb\x26\x6c\x53\x32\x49\xa9\x1c\ \xe9\xb1\x18\x81\xb3\xce\x22\xf2\xbe\xf7\x11\xbe\xe6\x1a\x82\xbb\ \x76\xbd\x57\x57\xbd\x05\x93\x3d\xc1\x60\x90\xae\xae\x2e\x12\x89\ \x44\xbb\x55\x5a\xa8\x86\x19\xe0\x57\x81\xbf\x07\xe4\xd6\xad\x5b\ \xbd\x96\x67\x0d\xda\x8e\xb0\x00\xc6\xc6\xc6\x40\x95\xa0\xf9\x05\ \xe0\x77\x81\x1e\xaf\x65\xb2\x02\x27\xb5\xad\x8a\x30\xb5\x2e\x5d\ \x27\x30\x33\x43\xf8\xe5\x97\x89\x3d\xf9\x24\xa1\xd7\x5e\x43\x9b\ \x9e\x46\xe4\x72\x2a\x7a\xbe\x7c\x80\x7b\x50\x69\xc1\xb1\xb6\x9b\ \x89\x4d\x33\x49\x2a\x14\x42\x1b\x1c\x24\x78\xe0\x00\x91\xf7\xbf\ \x9f\xd0\x45\x17\x29\xb3\xcf\x8c\xa3\x6a\xc1\x77\x65\x2e\x6c\x9a\ \x4c\x26\x3b\x45\xab\x02\x58\x00\xfe\x2d\xca\xba\xc9\xb7\x1b\x59\ \x41\x9b\x12\x16\x14\x49\x2b\x8c\xca\x37\xfc\x2d\x54\xe8\x43\xdb\ \x43\xd7\x75\x56\x57\x57\x59\x5a\x5a\x72\xde\xb7\x55\x0a\x23\x24\ \x42\xa4\x52\x04\xc6\xc6\x08\xbf\xf2\x0a\x91\xe7\x9f\x27\xf8\xa3\ \x1f\xa1\xcd\xcc\xa8\x19\x46\x83\xbc\xca\x57\x84\x01\x97\x49\xa7\ \x4e\x1b\x8e\x99\xb0\x86\x29\x67\xce\xf4\x69\x03\x03\x04\xf6\xed\ \x23\x7c\xf9\xe5\x04\x2f\xba\x88\xc0\x96\x2d\x88\x58\x4c\x85\x26\ \xb4\x30\x74\x26\x14\x0a\xd1\xd5\xd5\x45\x3c\x1e\xef\x14\xad\x0a\ \x60\x09\xf8\x6d\xe0\x4f\x81\x6c\x3b\x92\x15\xb4\x31\x61\x41\x91\ \xb4\xa2\xc0\xbf\x04\xfe\x35\x10\x6f\xaa\x41\x17\x91\xcb\xe5\x58\ \x5a\x5a\x22\x95\x4a\x39\x16\x6c\x5a\x11\xa6\xd6\x05\x8a\xbc\x46\ \x47\x09\xbd\xf2\x0a\xa1\x57\x5f\x25\xf8\xce\x3b\x68\x53\x53\x90\ \x4a\xad\xd5\xb4\xca\xb4\x16\xf3\x6f\x5b\x39\xda\xad\x90\x95\x91\ \x2a\x63\xa6\xcc\x88\x58\x0c\x31\x38\x48\x70\xef\x5e\x82\x07\x0f\ \x2a\x4d\x6a\xeb\x56\x45\x52\xc6\xf9\xad\x24\x2a\x4d\xd3\x88\xc7\ \xe3\x24\x93\x49\x42\x21\x4f\x17\x3d\xb7\x05\x29\xe5\x2a\xf0\xfb\ \xc0\x7f\x02\xd2\xed\x4a\x56\xd0\xe6\x84\x05\x45\xd2\x4a\xa0\x08\ \xeb\x57\x85\x10\x96\xa2\xe1\xad\x56\x0f\x6d\x25\xa4\x94\xa4\xd3\ \x69\x96\x97\x97\x5b\x67\x26\x96\xa2\x94\xbc\xd2\x69\xb4\x99\x19\ \x02\x87\x0e\x11\x7c\xe3\x0d\x82\x6f\xbe\x89\x76\xf2\x24\x62\x69\ \xa9\xe8\xf7\x2a\x12\x57\x9d\x30\x07\xd7\xb5\xb2\x6a\x26\xac\xd1\ \x7f\x45\x2d\x2a\x1a\x45\x24\x93\x68\xdb\xb7\x13\xd8\xbf\x9f\xe0\ \xfe\xfd\x04\xf7\xec\x41\x0c\x0c\x28\xbf\x94\x3a\xb9\xa5\x24\xa5\ \xba\x4f\x10\x8d\x46\x49\x26\x93\x44\x22\x11\xcf\xdf\x3b\x9b\x48\ \xa3\x7c\xc5\xbf\x0f\xac\x6c\xd9\xb2\xc5\x6b\x79\x6a\xa2\x23\x7a\ \xf6\xd4\xa9\x53\xa0\x4c\xc2\xdf\x42\xad\xbe\x13\xf1\x5a\x26\x3b\ \x30\xcd\xc4\xe5\xe5\x65\xb2\xd9\xac\x3b\x37\x35\x07\x8d\xa6\x41\ \xa1\x80\x58\x5a\x42\x9b\x9c\x24\x70\xe4\x08\xda\xe1\xc3\x04\x0e\ \x1f\x46\x3b\x71\x02\x16\x17\x21\x95\x52\xd5\x23\x60\x4d\xd8\x44\ \x2d\x67\x77\xa5\x63\x4d\xef\x9b\xf7\x2b\xd5\x9c\x4c\x92\x0a\x06\ \x21\x16\x43\x74\x77\xa3\xed\xd8\x41\xe0\x9c\x73\xd0\x76\xef\x26\ \xb0\x7b\x37\xda\xe6\xcd\x6a\xa9\xf7\x40\xe0\xbd\x48\x74\x97\xb2\ \x25\xc2\xe1\x30\xc9\x64\x92\x58\x2c\xd6\x49\xe6\x9f\x89\x0c\x6a\ \xb5\x9b\xdf\x06\x96\xda\x9d\xac\xa0\x43\x08\x0b\x8a\xa4\xd5\x83\ \x72\x0a\xfe\x12\x6d\x9a\x77\x58\x0b\xf9\x7c\x9e\x95\x95\x15\x56\ \x56\x56\x5a\xeb\xdf\xaa\x84\x92\x30\x09\x0a\x05\xc4\xea\x2a\x62\ \x6e\x4e\x69\x5d\xa3\xa3\x68\x63\x63\x88\xd1\x51\xc4\xd8\x18\x2c\ \x2c\xa8\xf4\xa0\x4c\x46\xf9\xc2\x28\x33\xd3\x6a\x39\xf1\xcb\xb5\ \x35\x93\x70\x2a\x9d\x6b\x12\x93\x79\x9e\x10\x10\x0a\x21\x23\x11\ \x08\x87\x11\x3d\x3d\x88\xad\x5b\x11\x5b\xb7\xa2\x6d\xdd\x8a\xb6\ \x6d\x1b\xda\xf6\xed\x88\xbe\x3e\x44\x3c\xae\x08\xca\xd4\xa0\x5c\ \x4e\xe7\x0a\x85\x42\xc4\xe3\x71\x12\x89\x44\x3b\x27\x2c\xd7\x42\ \x1a\xf8\x33\xd4\xa4\xd6\x42\x27\x90\x15\x74\x10\x61\xc1\x1a\x4d\ \xeb\x5f\x01\x5f\x41\x99\x8a\x1d\x87\x5c\x2e\xc7\xca\xca\x0a\xab\ \xab\xab\xee\x13\x97\x89\x52\x02\x03\xc8\xe7\x11\xe9\x34\xac\xac\ \x20\x66\x66\x60\x6a\x0a\x31\x33\x83\x98\x9e\x86\x99\x19\xb5\xcd\ \xcf\xc3\xf2\x32\x32\x95\x52\x44\x96\xcf\x43\xa1\x80\xd4\x75\x45\ \x38\xc6\xac\x5c\x91\xa4\x8c\x89\x81\xa2\xd6\xa6\x69\xc8\x40\x00\ \x82\x41\x64\x28\x04\xb1\x18\x74\x75\x21\x7a\x7b\x61\x60\x00\x31\ \x38\xa8\xcc\xb9\x81\x01\xc4\xa6\x4d\x88\xc1\x41\x88\xc7\x95\x79\ \x67\x92\x82\x47\x04\x65\x22\x18\x0c\x92\x48\x24\xda\x8e\xa8\xac\ \xae\xfe\x6c\x9c\xb7\x02\xfc\x17\xe0\x0f\xe9\x10\xcd\xaa\x28\xbf\ \xd7\x02\xd8\x85\x41\x5a\x09\x54\x85\x87\x5f\x17\x42\x24\xdb\x2d\ \x59\xba\x16\x4c\xff\x86\x94\xb2\x2a\x71\xb9\xe1\x03\xa9\xe8\xe3\ \x33\xff\x2f\xfd\x2b\x25\xe4\x72\x90\xcd\xaa\xbf\xf9\xbc\xda\x5f\ \x59\x81\xe5\x65\x58\x5d\x7d\x8f\xbc\x0c\x02\x33\xcd\x4b\x82\x41\ \xa5\x05\x05\x83\x6a\x0b\x85\x14\x01\x75\x75\x41\x22\x01\xe1\x70\ \xf1\xb8\x08\x87\xd5\xe7\xe6\x3d\x95\x90\x6b\xff\x7a\x88\x60\x30\ \x58\xd4\xa8\x3a\xc9\xa1\x5e\x01\x4b\xa8\x42\x03\x7f\x02\xac\x8c\ \x8c\x8c\x78\x2d\x8f\x2d\x74\x1c\x61\x01\x8c\x8f\x8f\x83\x2a\xb3\ \xfc\x65\x94\x89\xd8\x11\x71\x5a\xd5\x60\x12\x57\x2a\x95\x22\x97\ \xcb\x79\x2d\x4e\x65\x94\x92\x5b\xb5\x7d\x2b\x28\x25\x9f\x6a\xfb\ \x6d\x04\xd3\xf4\x8b\xc7\xe3\x9d\x4e\x54\xa0\xe2\xac\x7e\x17\x55\ \x64\x20\xd5\x69\x64\x05\x1d\x4a\x58\x50\x24\xad\x08\xaa\x5c\xeb\ \x7f\x00\xfa\xbd\x96\xa9\x59\xe4\xf3\x79\x52\xa9\x14\xab\xab\xab\ \x64\xb3\xd9\xd6\xcf\x2a\xfa\xa8\x08\x21\x04\xe1\x70\x98\x78\x3c\ \x4e\x2c\x16\x6b\x2b\xd3\xaf\x09\xcc\x02\xff\x0e\x55\x96\x3c\xd3\ \x89\x64\x05\x1d\x4c\x58\x50\x24\xad\x10\x70\x37\xf0\x1f\x81\xf6\ \x49\x7a\x6a\x02\x85\x42\x81\x74\x3a\xcd\xea\xea\x2a\x99\x4c\xa6\ \xb5\x71\x5c\x3e\x8a\x08\x04\x02\x44\x22\x11\x62\xb1\x18\xd1\x68\ \xb4\x13\xaa\x29\x58\xc5\x28\xf0\x6f\x80\xaf\x01\xb9\x4e\x25\x2b\ \xe8\x70\xc2\x82\x22\x69\x09\xe0\x16\xe0\x8f\x69\xf3\x2a\x0f\x76\ \x20\xa5\x24\x9b\xcd\x92\x4a\xa5\x48\xa7\xd3\xe4\x72\xb9\x8e\xd3\ \xba\xda\x31\x26\xa9\xb4\x0f\x85\x10\x84\x42\x21\x62\xb1\x18\xb1\ \x58\x8c\x50\x28\xd4\x89\xe1\x09\xb5\x9e\xf5\x4d\xe0\xd7\x80\x07\ \x00\xd9\xc9\x64\x05\xeb\x80\xb0\x40\x91\xd6\xf0\xf0\x30\xa7\x4f\ \x9f\xbe\x02\x15\xad\xdb\xd6\xf5\xb4\x1a\x81\xa9\x75\xa5\x52\x29\ \x32\x99\x0c\x85\x42\xa1\x2d\x82\x63\x3b\x15\xc1\x60\x90\x70\x38\ \xbc\x1e\xb5\xa9\x52\x3c\x09\xfc\xcb\xb7\xdf\x7e\xfb\xb9\xbd\x7b\ \xf7\x32\x3c\x3c\xec\xb5\x3c\x4d\x63\xdd\xbc\xed\x13\x13\x13\xe6\ \xee\xb9\xc0\x1f\xa0\x16\xb7\x58\x3f\x3f\x95\x06\xa4\x94\xe4\xf3\ \x79\xd2\xe9\x34\xe9\x74\x9a\x6c\x36\xdb\x9a\x0a\x11\xeb\x10\xa6\ \xc9\x17\x8d\x46\x89\x44\x22\x04\x83\xc1\xf5\x4a\xf8\x3a\x6a\xb1\ \x88\xff\x0f\x78\x07\x58\x17\x64\x05\xeb\x88\xb0\x60\x0d\x69\x0d\ \xa3\x1c\x8c\x9f\x46\xcd\x26\xae\x4b\x94\x92\x57\x26\x93\x29\x92\ \x57\xa7\x99\x8d\xad\x82\x10\x82\x40\x20\x40\x38\x1c\x2e\x12\xd5\ \x3a\x26\x29\x13\x29\xe0\xef\x50\x13\x51\x13\xb0\x7e\xc8\x0a\xd6\ \x19\x61\x99\x30\x88\x2b\x89\x5a\x96\xe8\xd7\x80\xcd\x5e\xcb\xd4\ \x6a\x48\x29\x29\x14\x0a\x64\xb3\xd9\x22\x79\xe5\x72\xb9\x0d\xe7\ \xb0\x0f\x04\x02\x04\x83\x41\x22\x91\x08\xe1\x70\x98\x70\x38\x4c\ \x20\x10\x68\x4b\x92\x72\x5a\x26\x29\xe5\x24\xca\x8f\xfb\x17\xc0\ \xd2\x7a\x22\x2a\x13\xed\xf7\x2d\x3a\x04\x83\xb4\x82\xc0\x47\x80\ \xdf\x11\x42\xb4\xe5\x62\xad\x76\x60\xc7\x67\xa5\xeb\x3a\xb9\x5c\ \xae\x48\x5c\xd9\x6c\x96\x7c\x3e\x8f\x5e\x12\x89\xde\xe9\x10\x42\ \xa0\x69\x5a\xd1\x1f\x65\x6e\xc1\x60\x70\x5d\x39\xce\x2d\xe2\x75\ \xe0\x37\x85\x10\xdf\x91\x52\xe6\x87\x86\xda\x72\x99\xcf\xa6\xb1\ \x6e\x09\x0b\xe0\xf4\xe9\xd3\x84\x42\x21\x72\xb9\xdc\x41\x54\xd8\ \xc3\x2d\xa8\x75\x10\x37\x1c\x74\x5d\x2f\x6a\x60\xb9\x5c\x8e\x5c\ \x2e\x47\x3e\x9f\xa7\x50\x28\x14\x49\xac\x1d\x9d\xf8\xa6\x4c\x26\ \x39\x99\x1a\x54\x28\x14\x22\x14\x0a\x15\x35\xa8\x0d\x48\x50\x26\ \x0a\xa8\x19\xc0\x7f\x83\xb1\x22\xf3\x7a\x25\x2b\x58\xe7\x84\x05\ \x8a\xb4\x0c\x0c\xa3\x72\x10\x3f\x0f\x74\x79\x2d\x97\xd7\x90\x52\ \xa2\xeb\x7a\x51\x13\xcb\xe7\xf3\x45\x02\x33\x35\xb1\x52\x22\x33\ \xaf\x01\xe7\x4c\x99\xd2\xf6\xcc\x36\x4b\x89\xc9\xdc\x4c\x82\x32\ \x35\x27\x4d\xd3\xda\x8e\x58\x3d\xc2\x32\xf0\x57\xa8\x9c\xc0\x09\ \x58\xdf\x64\x05\x1b\x80\xb0\x4c\x18\xc4\x15\x07\x3e\x89\x22\xae\ \x73\xbc\x96\xa9\x1d\x61\x12\x94\x49\x58\x85\x42\xa1\xa8\x85\x55\ \xda\xca\xc9\xac\x94\xe0\xca\x89\xc8\xfc\x6b\x92\x4e\xf9\x56\x4a\ \x52\xe6\xb5\x3e\x31\x55\xc5\x61\x14\x51\x7d\x15\x58\x5d\xef\x44\ \x65\x62\x43\xbd\x0d\x06\x69\x09\xe0\x32\xe0\x37\x81\x0f\xa3\xca\ \x30\xab\xce\xf0\x07\x47\x5d\x54\x22\xa6\x4a\x9f\x9b\xa8\xd4\xa7\ \x95\x88\xcc\x09\xb9\x36\xc8\xf7\x97\x05\x1e\x04\x7e\xa7\x50\x28\ \xbc\xa0\x69\x9a\xdc\x28\x64\x05\x1b\x8c\xb0\x40\x91\x96\x51\x62\ \x63\x50\x08\xf1\x8b\xa8\xda\x5a\xeb\x7e\x16\xd1\xc7\xba\xc0\x24\ \xaa\x86\xd5\xff\x00\xa6\x85\x10\x6c\xda\xb4\xc9\x6b\x99\x5c\xc5\ \x86\x23\x2c\x13\x93\x93\x93\xa0\x66\x11\x6f\x42\x55\x32\xbd\x72\ \x23\xf7\x87\x8f\xb6\x86\x04\x7e\x88\xaa\x0c\xfa\x30\x90\xdf\xbc\ \x79\x63\xfe\xc6\x6e\xe8\x01\x6a\x90\x16\xc0\xd9\xa8\x82\x80\xf7\ \x00\x7d\x5e\xcb\xe5\xc3\x47\x09\xe6\x80\x7f\x40\x15\xdc\x3b\x0a\ \xb0\x51\xc9\x0a\x36\x38\x61\x99\x30\x88\x2b\x0a\xdc\x0c\xfc\x3a\ \x70\x15\x1b\x34\xfc\xc1\x47\x6d\xb8\xe5\x27\x93\x52\x16\x80\x67\ \x51\xc5\xf6\x1e\x02\xd2\x1b\x99\xa8\x4c\xf8\x84\x65\xa0\x44\xdb\ \xda\x86\x5a\xc0\xf5\xf3\x42\x88\xa6\xbd\x99\x1b\xc8\x19\xec\xc3\ \x39\x9c\x46\x85\x2b\xfc\xf9\xe0\xe0\xe0\xe8\xcc\xcc\x0c\x83\x83\ \x83\x5e\xcb\xd4\x16\xf0\x47\x52\x19\xa6\xa6\xa6\x40\xd5\xd8\xba\ \x16\x15\xfe\x70\x3d\x25\x33\x89\x3e\x7c\xb4\x10\x59\xe0\x71\x54\ \xb8\xc2\x93\x40\x6e\xa3\x39\xd5\xeb\xc1\x27\xac\x0a\x30\x48\x0b\ \x60\x13\xca\xaf\xf5\x45\x54\x15\x08\xbf\xbf\x7c\xb4\x02\x12\x55\ \x55\xe1\x2f\x51\xfe\xaa\x29\x60\xc3\xcd\x00\x5a\x81\x3f\x00\x6b\ \xc0\x20\x2e\x01\x9c\x87\x4a\xa4\xbe\x1b\x3f\x04\xc2\x87\xb3\x98\ \x44\x55\x02\xfd\x0b\xe0\xc7\x80\xf4\x89\xaa\x3a\x7c\xc2\xb2\x00\ \x83\xb8\xc2\xc0\xfb\x50\x71\x5b\xb7\x08\x21\x3a\x72\x89\xb1\x76\ \xc2\x06\xf7\xef\xad\xa0\x72\x00\xff\x4c\x4a\xf9\x34\x90\xf5\x89\ \xaa\x3e\x36\xec\xdb\x62\x17\xf3\xf3\xf3\xe4\x72\x39\x84\x10\x49\ \xe0\x0e\xd4\x8a\x3d\x97\xe1\xfb\xb7\x7c\xd8\x43\x16\x78\x01\xb5\ \x72\xcd\xb7\x81\x25\x21\x04\x03\x03\x03\x5e\xcb\xd5\x11\xf0\x09\ \xcb\x26\xa6\xa7\xa7\xcd\xdd\x11\xe0\x4e\xe0\x33\xc0\x41\x94\xa3\ \xde\x87\x8f\x6a\xc8\xa1\xaa\x29\xfc\x0d\x70\x2f\x30\x0e\xf8\xb3\ \x7f\x36\xe1\x13\x56\x83\x30\x88\x4b\x00\x5b\x81\xbb\x80\x9f\x07\ \x2e\x40\x45\xcf\xfb\xf0\x61\x22\x0f\xbc\x01\xfc\x2d\xf0\x75\x60\ \x0c\x90\x3e\x51\x35\x06\x9f\xb0\x9a\x44\x09\x71\x6d\x07\x3e\x0e\ \x7c\x0a\xd8\x47\x9b\x10\xd7\x06\xf6\x11\x79\x0a\x29\x65\x1e\x78\ \x0b\xf8\x7b\xe0\x9f\x80\x93\xf8\x44\xd5\x34\xfc\xb7\xd9\x21\x4c\ \x4f\x4f\x23\xa5\x14\x42\x88\xb3\x84\x10\x77\x02\x3f\x83\x32\x15\ \x23\x5e\xcb\xe6\xc3\x55\x64\x50\xa6\xdf\xff\x01\xee\xd5\x34\xed\ \x98\x94\x52\xf6\xf7\x77\xfc\x3a\xbf\x6d\x01\x9f\xb0\x1c\xc6\xcc\ \xcc\x0c\xa8\x7e\x1d\x42\x95\xaf\xb9\x1b\x35\xbb\x98\xf4\x5a\x36\ \x1f\x2d\xc5\x12\xf0\x34\x2a\x44\xe1\x41\x54\xb4\xba\xf4\x9d\xe9\ \xce\xc2\x27\xac\x16\xc1\x20\x2e\x80\x5e\x54\xd4\xfc\xdd\xc0\x8d\ \xc0\x20\x7e\xbf\xaf\x17\x48\x60\x1a\x78\x04\x45\x54\x4f\x02\xf3\ \x80\x3f\xeb\xd7\x22\xf8\x03\xa7\xc5\x28\x21\xae\x18\x70\x31\x6a\ \xbd\xc4\xdb\x80\x3d\xf8\xe6\xa2\xa7\x68\xd4\xbf\x27\xa5\xcc\x00\ \x87\x80\xfb\x51\xeb\xff\xbd\x8c\x5a\x5e\xcb\x27\xaa\x16\xc3\x27\ \x2c\x17\x61\x90\x57\x00\xd8\x22\x84\xf8\x20\x8a\xbc\xae\x41\xa5\ \x00\xf9\xdf\x45\x7b\x43\xa2\x52\x66\x9e\x42\x91\xd4\xf7\x84\x10\ \xa7\x80\x42\x5f\x9f\x5f\x91\xc8\x2d\xf8\x83\xc4\x03\xcc\xce\xce\ \x9a\xab\xf9\x24\x50\xa1\x10\x77\x00\xb7\x02\x7b\x01\x3f\x82\xbe\ \xbd\xb0\x02\xbc\x0d\x7c\x17\x15\xe8\xf9\x86\x71\x0c\xdf\x91\xee\ \x3e\x7c\xc2\xf2\x18\xb3\xb3\xb3\x00\x1a\x2a\x47\xf1\x72\x94\x9f\ \xeb\x7a\xd4\x22\x19\x71\xaf\xe5\xdb\xa0\x58\x45\x2d\xf2\xf0\x38\ \xca\x3f\xf5\x3c\x2a\xe7\x4f\xf7\x49\xca\x5b\xf8\x84\xd5\x46\x30\ \xc8\x2b\x88\x22\xaf\x2b\x50\xe5\x9b\xaf\x43\x55\x44\xf5\xc9\xab\ \xb5\x58\x45\x55\xf4\x7c\x02\x55\x86\xf8\x39\x14\x49\xe5\x7d\x92\ \x6a\x1f\xf8\x84\xd5\xa6\x28\x21\xaf\x61\x94\xe6\x75\x0d\xaa\x12\ \xea\x5e\xa0\x4f\x08\xe1\x57\x44\x6d\x02\x46\x45\xcf\x39\x94\xb9\ \xf7\x2c\xca\x37\xf5\x3c\x6a\x7d\x3f\x9f\xa4\xda\x14\x3e\x61\x75\ \x00\xe6\xe7\xe7\x01\x02\x52\xca\x1e\xd4\xec\xe2\x55\xc0\xd5\xc0\ \xa5\xc0\x16\x7c\xed\xcb\x2a\x56\x81\x53\xc0\x8b\xc0\x33\x28\xa2\ \x3a\x24\x84\x58\x00\x0a\xbd\xbd\xbd\x5e\xcb\xe7\xa3\x0e\x7c\xc2\ \xea\x30\xcc\xcd\xcd\x99\xbb\x51\x94\xf6\x75\x91\xb1\x1d\x00\xf6\ \x1b\xc7\xba\x50\x7e\xb1\x8d\x0c\x1d\x15\xcc\x79\x1a\x78\x13\x78\ \x0d\x78\xc5\xd8\x26\x80\x34\x80\x3f\xc3\xd7\x59\xf0\x09\xab\xc3\ \x61\x10\x98\x40\xc5\x79\x0d\xa0\x2a\xa3\x1e\x30\xb6\x0b\x51\x35\ \xea\xbb\x8c\xcf\xd7\x2b\x89\xe9\xa8\x38\xa8\x65\x60\x14\x78\x1d\ \x45\x50\xaf\xa1\x2a\x79\xce\x18\x9f\x4b\x9f\xa0\x3a\x1b\x3e\x61\ \xad\x33\x94\x68\x60\x61\xa0\x1b\xa5\x71\xed\x46\xcd\x3a\x9a\x7f\ \xcf\x06\xfa\x51\xa6\x64\x84\xce\x79\x0f\x24\x2a\x57\x6f\x15\x98\ \x45\x39\xc9\x0f\x03\x47\x4a\xfe\x4e\x00\x8b\xa8\xba\x53\xbe\x06\ \xb5\xce\xd0\x29\x2f\xaa\x8f\x26\x61\x10\x59\x00\x15\xe7\xd5\x2d\ \x84\xd8\x06\x9c\x85\xf2\x81\x8d\x94\x6d\xbd\x28\x93\x33\x8c\xaa\ \xf3\x15\xa2\xf5\xef\x8a\x44\xd5\x8c\xca\xa1\xc8\x26\x8d\x4a\x73\ \x19\x2f\xdb\x4e\x01\xc7\x50\x9a\xd4\xa2\x10\x62\x05\x28\xf4\xf4\ \xf4\x78\xdd\xc5\x3e\x5c\x80\x4f\x58\x1b\x1c\x0b\x0b\x0b\x00\x42\ \x4a\x19\x41\x69\x5c\x31\x54\xbe\xe3\x56\x54\x04\x7e\x9f\xb1\xf5\ \x97\xfd\xed\x46\x69\x67\x21\xde\x23\xb6\x52\x82\x83\xb5\x04\x54\ \xfa\x37\x83\xd2\x82\xe6\x50\x9a\x52\xe9\xdf\x39\x54\x44\xf9\x18\ \x2a\x4f\x2f\x05\xac\x0a\x21\x32\x80\xf4\x89\x69\x63\xe3\xff\x07\ \xe5\x75\x7b\x96\xb2\x43\xe6\x59\x00\x00\x00\x25\x74\x45\x58\x74\ \x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x31\ \x2d\x30\x36\x2d\x30\x34\x54\x30\x32\x3a\x35\x34\x3a\x32\x38\x2d\ \x30\x37\x3a\x30\x30\x06\x18\x57\x56\x00\x00\x00\x25\x74\x45\x58\ \x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\ \x31\x2d\x30\x36\x2d\x30\x34\x54\x30\x32\x3a\x35\x34\x3a\x32\x38\ \x2d\x30\x37\x3a\x30\x30\x77\x45\xef\xea\x00\x00\x00\x19\x74\x45\ \x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\ \x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\ \x00\x00\x11\x74\x45\x58\x74\x54\x69\x74\x6c\x65\x00\x72\x65\x64\ \x20\x4c\x45\x44\x20\x6f\x66\x66\x78\x63\x15\x40\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ " qt_resource_name = b"\ \x00\x0d\ \x0f\x75\xfc\x07\ \x00\x71\ \x00\x6f\x00\x72\x00\x76\x00\x6f\x00\x5f\x00\x69\x00\x63\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x09\x1c\xe1\x27\ \x00\x51\ \x00\x6f\x00\x72\x00\x76\x00\x6f\x00\x5f\x00\x4c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0b\xc1\x8a\x47\ \x00\x67\ \x00\x72\x00\x65\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x08\xb7\x57\xa7\ \x00\x72\ \x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ \x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\xaa\xa8\ \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x19\ \x00\x00\x00\x42\x00\x00\x00\x00\x00\x01\x00\x00\x4b\xa4\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\xaa\xa8\ \x00\x00\x01\x64\xe5\x6c\xbc\x90\ \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x19\ \x00\x00\x01\x7c\x42\x3a\x8d\x1a\ \x00\x00\x00\x42\x00\x00\x00\x00\x00\x01\x00\x00\x4b\xa4\ \x00\x00\x01\x64\xe5\x6c\xbc\x90\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x7c\x42\x6d\x6a\x95\ " qt_version = 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.284128
105
0.727202
0
0
0
0
0
0
0
0
281,554
0.997859
7f5625881c7046dfae33e15d82f6f91717dbc467
430
py
Python
PYTHON/pythonDesafios/desafio062.py
Santos1000/Curso-Python
549223a1633f6f619c87554dd8078cf7841bb1df
[ "MIT" ]
null
null
null
PYTHON/pythonDesafios/desafio062.py
Santos1000/Curso-Python
549223a1633f6f619c87554dd8078cf7841bb1df
[ "MIT" ]
null
null
null
PYTHON/pythonDesafios/desafio062.py
Santos1000/Curso-Python
549223a1633f6f619c87554dd8078cf7841bb1df
[ "MIT" ]
null
null
null
print('Gerador de PA\n','==-'*10) primeiro = int(input('Primeiro termo:')) razao = int(input('Razao da PA:')) termo = primeiro c = 1 total = 0 mais = 10 while mais != 0: total = total + mais while c <= total: print(f'{termo} ->', end='') c += 1 termo += razao print('PAUSA') mais = int(input('Quantos termos voce quer mostrar a mais:')) print(f'FIM , a progressão mostrou {total} termos.')
25.294118
65
0.583721
0
0
0
0
0
0
0
0
163
0.37819
7f57b8e3e5f7d093c4f07748cc4cc4d938880d93
4,409
py
Python
codes/Lib/site-packages/RsInstrument/Internal/ConverterToScpiString.py
charlescayno/automation
a4a34d87f372d49fd69740ad3ca46ae19bf2612d
[ "MIT" ]
null
null
null
codes/Lib/site-packages/RsInstrument/Internal/ConverterToScpiString.py
charlescayno/automation
a4a34d87f372d49fd69740ad3ca46ae19bf2612d
[ "MIT" ]
null
null
null
codes/Lib/site-packages/RsInstrument/Internal/ConverterToScpiString.py
charlescayno/automation
a4a34d87f372d49fd69740ad3ca46ae19bf2612d
[ "MIT" ]
null
null
null
from enum import Enum from .Conversions import list_to_csv_quoted_str, value_to_quoted_str, list_to_csv_str, value_to_str, enum_list_to_str, enum_scalar_to_str from .Types import DataType def value_to_scpi_string(data, data_type: DataType): """Method to be used in the driver implementation. Convert data to SCPI string parameter: data -> str""" if data_type.is_list: assert isinstance(data, list), f"Expected command parameter list, actual data type: {type(data)}. Value: {data}" else: assert not isinstance(data, list), f"Expected command parameter scalar, actual data type: {type(data)}. Value: {data}" # Strings are enclosed by single quotes if data_type == DataType.StringList: assert all(isinstance(x, str) for x in data), f"Expected command parameter list of strings, detected one or more elements of non-string type. Value: {data}" return list_to_csv_quoted_str(data) elif data_type == DataType.String: assert isinstance(data, str), f"Expected command parameter string, actual data type: {type(data)}. Value: {data}" return value_to_quoted_str(data) # Raw string is not enclosed by quotes elif data_type == DataType.RawStringList: assert all(isinstance(x, str) for x in data), f"Expected command parameter list of strings, detected one or more elements of non-string type. Value: {data}" return list_to_csv_str(data) elif data_type == DataType.RawString: assert isinstance(data, str), f"Expected command parameter string, actual data type: {type(data)}. Value: {data}" return value_to_str(data) elif data_type == DataType.BooleanList: assert all(type(x) == bool for x in data), f"Expected command parameter list of booleans, detected one or more elements of non-boolean type. Value: {data}" return list_to_csv_str(data) elif data_type == DataType.Boolean: assert type(data) == bool, f"Expected command parameter boolean, actual data type: {type(data)}. Value: {data}" return value_to_str(data) # For integer and float, allow them to be mixed elif data_type == DataType.IntegerList or data_type == DataType.FloatList: assert all((isinstance(x, int) or isinstance(x, float)) and type(x) != bool for x in data), f"Expected command parameter list of numbers, detected one or more elements of non-number type. Value: {data}" return list_to_csv_str(data) elif data_type == DataType.Integer or data_type == DataType.Float: assert (isinstance(data, int) or isinstance(data, float)) and type(data) != bool, f"Expected command parameter number, actual data type: {type(data)}. Value: {data}" return value_to_str(data) # For integer and float extended, allow them to be mixed including the boolean type elif data_type == DataType.IntegerExtList or data_type == DataType.FloatExtList: assert all((isinstance(x, int) or isinstance(x, float) or isinstance(x, bool)) for x in data), f"Expected command parameter list of numbers or booleans, detected one or more elements of non-number type. Value: {data}" return list_to_csv_str(data) elif data_type == DataType.IntegerExt or data_type == DataType.FloatExt: assert (isinstance(data, int) or isinstance(data, float) or isinstance(data, bool)), f"Expected command parameter number or boolean, actual data type: {type(data)}. Value: {data}" return value_to_str(data) else: raise Exception(f"Unsupported data type: '{type(data_type)}'.") class ConverterToScpiString: """Converter from argument value to SCPI string. Provides method get_value(arg_value) -> str """ def __init__(self, data_type: DataType, enum_type: Enum = None): self.enum_type = enum_type self.data_type = data_type self.element_type = self.data_type.element_type if self.element_type == DataType.Enum: assert self.enum_type, f"For data_type {data_type.name}, you have to define the enum_type variable." def get_value(self, data) -> str: """Returns SCPI string converted from the argument data.""" if self.data_type.is_list: assert isinstance(data, list), f"Expected command parameter list, actual data type: {type(data)}. Value: {data}" else: assert not isinstance(data, list), f"Expected command parameter scalar, actual data type: {type(data)}. Value: {data}" if self.data_type == DataType.Enum: return enum_scalar_to_str(data, self.enum_type) elif self.data_type == DataType.EnumList: return enum_list_to_str(data, self.enum_type) return value_to_scpi_string(data, self.data_type)
54.432099
219
0.756181
1,057
0.239737
0
0
0
0
0
0
1,911
0.433432
7f57d7df7fd0834188bfe8a6c66e64ecd0ee8e3e
565
py
Python
examples/example_interactive_prefix/main.py
David-Lor/Python-DotEnv-Settings-Handler
ca234914a93f94f59a8a37e65ff9010ffc9c4e99
[ "Apache-2.0" ]
6
2019-06-30T14:49:28.000Z
2020-03-10T19:56:30.000Z
examples/example_interactive_prefix/main.py
David-Lor/Python-DotEnv-Settings-Handler
ca234914a93f94f59a8a37e65ff9010ffc9c4e99
[ "Apache-2.0" ]
null
null
null
examples/example_interactive_prefix/main.py
David-Lor/Python-DotEnv-Settings-Handler
ca234914a93f94f59a8a37e65ff9010ffc9c4e99
[ "Apache-2.0" ]
null
null
null
"""This example read the settings and print them out, so you can check how they get loaded. """ # noinspection PyUnresolvedReferences,PyPackageRequirements from settings import my_settings as settings print("Redis Host:", settings.redis_host) print("Redis Port:", settings.redis_port) print("Redis Port / 2:", settings.redis_port / 2) # Show that the Port is int print("API Port:", settings.api_port) print("API Port * 2:", settings.api_port * 2) # Show that the Port is int print("API Password:", settings.api_password) print("API Token:", settings.api_token)
40.357143
91
0.753982
0
0
0
0
0
0
0
0
304
0.538053
7f58ffa14e511fa65d58d25693bfa7dcc12acb63
1,109
py
Python
Datasets/Generator/Disaster/main.py
undraaa/m2bench
b661b61ca04470ed1c9c50531ce760a2cd5000d9
[ "RSA-MD" ]
null
null
null
Datasets/Generator/Disaster/main.py
undraaa/m2bench
b661b61ca04470ed1c9c50531ce760a2cd5000d9
[ "RSA-MD" ]
null
null
null
Datasets/Generator/Disaster/main.py
undraaa/m2bench
b661b61ca04470ed1c9c50531ce760a2cd5000d9
[ "RSA-MD" ]
null
null
null
import sys import table_gen import doc_gen import graph_gen import array_gen import os def main(argv): outdir = './sf1_dataset_output/' if os.path.exists(outdir): os.system("rm -rf "+outdir) os.mkdir(outdir) earthquake_dirpath = argv[1] shelter_dirpath = argv[2] gps_dirpath = argv[3] roadnetwork_dirpath = argv[4] site_dirpath = argv[5] finedust_dirpath = argv[6] print("------ Disaster Data Generation ------") print("Start Earthquake Generation") table_gen.earthquake_gen(earthquake_dirpath, outdir) print("Start Gps Generation") table_gen.gps_gen(gps_dirpath, outdir) print("Start Road Network Generation") graph_gen.roadnetwork_gen(roadnetwork_dirpath, outdir) print("Start Site Generation") doc_gen.site_gen(site_dirpath, outdir) print("Start Shelter Generation") table_gen.shelter_gen(shelter_dirpath, outdir) print("Start Finedust Generation") array_gen.finedust_gen(finedust_dirpath, outdir) array_gen.finedust_idx_gen(finedust_dirpath, outdir) if __name__ == '__main__': main(sys.argv)
25.790698
58
0.71596
0
0
0
0
0
0
0
0
240
0.216411
7f5e9b1cd835e4eff21472b20f8a3b722d2a03e6
4,450
py
Python
MultiPManager/distProc.py
sebastiantrianac/SoftTLON
3b798393efbd49b4a22acf19a056d64bef1d0ddf
[ "MIT" ]
null
null
null
MultiPManager/distProc.py
sebastiantrianac/SoftTLON
3b798393efbd49b4a22acf19a056d64bef1d0ddf
[ "MIT" ]
null
null
null
MultiPManager/distProc.py
sebastiantrianac/SoftTLON
3b798393efbd49b4a22acf19a056d64bef1d0ddf
[ "MIT" ]
null
null
null
#!/usr/bin/env python # coding=utf-8 # # A module for create a multi-agent system over Ad-hoc networks # Copyright (C) 2017-2018 # Juan Sebastian Triana Correa <justrianaco@unal.edu.co> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser Public License for more details. # # You should have received a copy of the GNU Lesser Public License # along with this program. If not, see [http://www.gnu.org/licenses/]. __author__ = "Juan Sebastian Triana Correa" __copyright__ = "Copyright 2015, TLON group" __license__ = "LGPL" __version__ = "1.2" __email__ = "justrianaco@unal.edu.co" __status__ = "Development" import multiprocessing from multiprocessing.managers import SyncManager import sys import stomp import dill as pickle import time import MultiPManager.managerImp as managerImp import MultiPManager.brokermq as brokermq import MultiPManager.multiProc as multiProc import socket if sys.version_info[0]<3: import Queue else: import queue IP = '10.203.177.194' MANAGER_PORTNUM = 9999 BROKER_PORTNUM = 61613 AUTHKEY = '' global numresults numresults=0 tlon_resources = {} def updateResourceOnSuscribers(resource, conn): msg = pickle.dumps(resource,0) conn.send(destination='/topic/TLONResources', body=msg) def updateOrderOnSuscribers(name, ip, portnum, authkey,conn): tmp = {"resourceName": name, "ip": ip, "portnum": portnum, "authkey": authkey} msg = pickle.dumps(tmp,0) conn.send(destination='/topic/TLONOrders', body=msg) def tlon_sharedJobs(f, set, chunkSize): manager = managerImp.make_server_manager(MANAGER_PORTNUM, AUTHKEY) shared_job_q = manager.get_job_q() shared_result_q = manager.get_result_q() for i in range(0, len(set), chunkSize): print('Putting chunk {}:{} in queue'.format(i, i + chunkSize)) shared_job_q.put(set[i:i + chunkSize]) return manager, shared_job_q, shared_result_q def tlon_parallelize(ipbroker, f, set): try: resultdict = {} N = 102 chunkSize = 10 conn = brokermq.BrokerConnect(ipbroker, BROKER_PORTNUM) updateResourceOnSuscribers(f, conn) manager, shared_job_q, shared_result_q = tlon_sharedJobs(f, set, chunkSize) time.sleep(2) hostname = socket.gethostname() ipsocket = socket.gethostbyname(hostname) updateOrderOnSuscribers(f.__name__, ipsocket, MANAGER_PORTNUM, AUTHKEY, conn) global numresults numresults = 0 #if 1: # multiProc.tlon_multiprocessing(shared_job_q, shared_result_q, f) while numresults < len(set): outdict = shared_result_q.get() #resultdict.update(outdict) numresults += len(outdict) #updateResourceOnSuscribers(f, conn) #for num, result in outdict.iteritems(): #print("{}({}) = {}".format(f.__name__, num, result)) print ('End of Task') except IOError as e: print ("I/O error({0}): {1}".format(e.errno, e.strerror)) except ValueError: print ("Could not convert data to an integer.") finally: time.sleep(2) manager.shutdown() def runclient(ipbroker, threads): # Setting number of threads that are going to attend the request of processing of the network multiProc.setThreads(threads) # Connecting to TLONResource Topic to receive shared resources connResources = brokermq.BrokerConnect(ipbroker, BROKER_PORTNUM) connResources.set_listener('ResourceTopic', brokermq.__resourceTopicListener__()) connResources.subscribe(destination='/topic/TLONResources', id=1, ack='auto') # Connecting to TLONOrders Topic to start executed OoW connOrders = brokermq.BrokerConnect(ipbroker, BROKER_PORTNUM) connOrders.set_listener('OrdersTopic', brokermq.__ordersTopicListener__()) connOrders.subscribe(destination='/topic/TLONOrders', id=2, ack='auto') if __name__ == '__main__': if len(sys.argv) > 1 and sys.argv[1] == 'producer': tlon_parallelize() else: runclient('192.168.0.8', 2)
32.481752
97
0.704494
0
0
0
0
0
0
0
0
1,659
0.372809
7f60669d9c8f83bdc7550f5d0401483d476b3958
1,565
py
Python
setup.py
charlesthomas/testrail_reporter
bc522ed3a66aee38c21cc45e2d3b9a786df45e02
[ "MIT" ]
null
null
null
setup.py
charlesthomas/testrail_reporter
bc522ed3a66aee38c21cc45e2d3b9a786df45e02
[ "MIT" ]
null
null
null
setup.py
charlesthomas/testrail_reporter
bc522ed3a66aee38c21cc45e2d3b9a786df45e02
[ "MIT" ]
null
null
null
#!/usr/bin/env python from setuptools import setup NAME = 'testrail_reporter' DESCRIPTION = 'Nosetests Plugin to Report Test Results to TestRail.' VERSION = open('VERSION').read().strip() LONG_DESC = open('README.rst').read() LICENSE = open('LICENSE').read() setup( name=NAME, version=VERSION, author='Charles Thomas', author_email='ch@rlesthom.as', packages=['testrail_reporter'], url='https://github.com/charlesthomas/%s' % NAME, license=LICENSE, description=DESCRIPTION, long_description=LONG_DESC, # test_suite='tests', entry_points = {'nose.plugins.0.10': ['testrail_reporter = testrail_reporter.testrail_reporter:TestRailReporter']}, install_requires=['nose >= 1.3.7', 'testrail >= 0.3.6',], classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5',], )
36.395349
98
0.645367
0
0
0
0
0
0
0
0
1,018
0.650479
7f60d515f24c5c7adbd364f7654c2e0099fc891b
871
py
Python
bleach__examples__remove_tags__clear_html/escape_protocols.py
DazEB2/SimplePyScripts
1dde0a42ba93fe89609855d6db8af1c63b1ab7cc
[ "CC-BY-4.0" ]
117
2015-12-18T07:18:27.000Z
2022-03-28T00:25:54.000Z
bleach__examples__remove_tags__clear_html/escape_protocols.py
DazEB2/SimplePyScripts
1dde0a42ba93fe89609855d6db8af1c63b1ab7cc
[ "CC-BY-4.0" ]
8
2018-10-03T09:38:46.000Z
2021-12-13T19:51:09.000Z
bleach__examples__remove_tags__clear_html/escape_protocols.py
DazEB2/SimplePyScripts
1dde0a42ba93fe89609855d6db8af1c63b1ab7cc
[ "CC-BY-4.0" ]
28
2016-08-02T17:43:47.000Z
2022-03-21T08:31:12.000Z
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'ipetrash' # SOURCE: https://github.com/mozilla/bleach # SOURCE: https://bleach.readthedocs.io/en/latest/clean.html#allowed-protocols-protocols # pip install bleach import bleach # List of allowed protocols print('List of allowed protocols:', bleach.sanitizer.ALLOWED_PROTOCOLS) # ['http', 'https', 'mailto'] print( bleach.clean( '<a href="smb://more_text">allowed protocol</a>' ) ) # <a>allowed protocol</a> print( bleach.clean( '<a href="smb://more_text">allowed protocol</a>', protocols=['http', 'https', 'smb'] ) ) # <a href="smb://more_text">allowed protocol</a> print( bleach.clean( '<a href="smb://more_text">allowed protocol</a>', protocols=bleach.ALLOWED_PROTOCOLS + ['smb'] ) ) # <a href="smb://more_text">allowed protocol</a>
21.243902
88
0.641791
0
0
0
0
0
0
0
0
578
0.663605
7f6302ecae4a93f7afb3564d0a9c878a96bd226e
4,920
py
Python
test/test_entity_builder.py
ari-bou/symro
b49a5578b4e1d95ab5ab92b06bfea2bc6ead2246
[ "MIT" ]
null
null
null
test/test_entity_builder.py
ari-bou/symro
b49a5578b4e1d95ab5ab92b06bfea2bc6ead2246
[ "MIT" ]
null
null
null
test/test_entity_builder.py
ari-bou/symro
b49a5578b4e1d95ab5ab92b06bfea2bc6ead2246
[ "MIT" ]
null
null
null
import symro import symro.src.handlers.metaentitybuilder as eb from symro.src.parsing.amplparser import AMPLParser from symro.test.test_util import * # Scripts # ---------------------------------------------------------------------------------------------------------------------- FIXED_DIM_SCRIPT = """ set I = {1, 2, 3}; set J = {'A', 'B', 'C'}; set K = {(1, 'A'), (2, 'B'), (3, 'C')}; set L = {(1, 'A'), (2, 'B'), (3, 'C')}; var x {(i,'A') in K, (i,l) in L}; """ SUB_SET_SCRIPT = """ set NUM_SET = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; set EVEN_SET = {0, 2, 4, 6, 8}; set LETTER_SET = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', "I", 'J'}; set VOWEL_SET = {'A', 'E', "I"}; set NUM_LETTER_SET = {NUM_SET, LETTER_SET}; set INDEXED_SET{i in NUM_SET} = 0..i; set INDEXED_SET_2{i in NUM_SET} = {(i,j) in NUM_LETTER_SET}; var VAR_1{i in NUM_SET} >= 0; var VAR_2{i in NUM_SET, j in LETTER_SET} >= 0; var VAR_test{i in NUM_SET: 1 in union{i1 in NUM_SET}{1..1: i == 5}}; minimize OBJ: 0; display {i in NUM_SET: 1 in union{i1 in NUM_SET}{1..1: i == 5}}; """ # Tests # ---------------------------------------------------------------------------------------------------------------------- def run_entity_builder_test_group(): tests = [("Build meta-entity with fixed dimensions", fixed_dimension_test), ("Build sub-meta-entities", sub_meta_entity_builder_test)] return run_tests(tests) def fixed_dimension_test(): problem = symro.read_ampl(script_literal=FIXED_DIM_SCRIPT, working_dir_path=SCRIPT_DIR_PATH) results = [] x = problem.get_meta_entity("x") results.append(check_str_result(x.idx_set_reduced_dim, 2)) results.append(check_str_result(x.idx_set_reduced_dummy_element, ['i', 'l'])) return results def sub_meta_entity_builder_test(): problem = symro.read_ampl(script_literal=SUB_SET_SCRIPT, working_dir_path=SCRIPT_DIR_PATH) ampl_parser = AMPLParser(problem) results = [] mv_1 = problem.get_meta_entity("VAR_1") mv_2 = problem.get_meta_entity("VAR_2") # test 1: {i in NUM_SET} VAR_1[i] idx_node = ampl_parser.parse_entity_index("[i]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=mv_1.idx_set_node, meta_entity=mv_1, entity_idx_node=idx_node) results.append(check_str_result(sub_meta_entity, "var VAR_1{i in NUM_SET}")) # test 2: {i in EVEN_SET} VAR_1[i] idx_subset_node = ampl_parser.parse_indexing_set_definition("{i in EVEN_SET}") idx_node = ampl_parser.parse_entity_index("[i]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=idx_subset_node, meta_entity=mv_1, entity_idx_node=idx_node) results.append(check_str_result(sub_meta_entity, "var VAR_1{i in NUM_SET: i in {i2 in EVEN_SET}}")) # test 3: {i in NUM_SET} VAR_1[5] idx_node = ampl_parser.parse_entity_index("[5]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=mv_1.idx_set_node, meta_entity=mv_1, entity_idx_node=idx_node) results.append(check_str_result(sub_meta_entity, "var VAR_1{i in NUM_SET: i == 5}")) # test 4: {i in EVEN_SET, j in VOWEL_SET} VAR_2[i,j] idx_subset_node = ampl_parser.parse_indexing_set_definition("{i in EVEN_SET, j in VOWEL_SET}") idx_node = ampl_parser.parse_entity_index("[i,j]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=idx_subset_node, meta_entity=mv_2, entity_idx_node=idx_node) s = "var VAR_2{i in NUM_SET, j in LETTER_SET: (i,j) in {i3 in EVEN_SET, j1 in VOWEL_SET}}" results.append(check_str_result(sub_meta_entity, s)) # test 5: {i in NUM_SET, j in INDEXED_SET[i]} VAR_1[j] idx_subset_node = ampl_parser.parse_indexing_set_definition("{i in NUM_SET, j in INDEXED_SET[i]}") idx_node = ampl_parser.parse_entity_index("[j]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=idx_subset_node, meta_entity=mv_1, entity_idx_node=idx_node) s = "var VAR_1{i in NUM_SET: i in union{i4 in NUM_SET}{j2 in INDEXED_SET[i]}}" results.append(check_str_result(sub_meta_entity, s)) # test 6: {i in NUM_SET, j in INDEXED_SET_2[i]} VAR_2[i,j] idx_subset_node = ampl_parser.parse_indexing_set_definition("{i in NUM_SET, j in INDEXED_SET_2[i]}") idx_node = ampl_parser.parse_entity_index("[j,k]") sub_meta_entity = eb.build_sub_meta_entity( problem=problem, idx_subset_node=idx_subset_node, meta_entity=mv_2, entity_idx_node=idx_node) s = "var VAR_2{i in NUM_SET, j in LETTER_SET}" results.append(check_str_result(sub_meta_entity, s)) # problem.engine.api.reset() # problem.engine.api.eval(SUB_SET_SCRIPT) return results
36.176471
120
0.641057
0
0
0
0
0
0
0
0
1,870
0.380081
7f64ce20d2bc7463fbe8a47e2e961d23f53650a4
14,042
py
Python
source/StimulationScreen.py
FelixTheoret/Ergocycle
0656e6cb43b535dd2f845420ad71742b1b85e412
[ "MIT" ]
null
null
null
source/StimulationScreen.py
FelixTheoret/Ergocycle
0656e6cb43b535dd2f845420ad71742b1b85e412
[ "MIT" ]
null
null
null
source/StimulationScreen.py
FelixTheoret/Ergocycle
0656e6cb43b535dd2f845420ad71742b1b85e412
[ "MIT" ]
2
2022-03-17T23:17:56.000Z
2022-03-23T01:08:58.000Z
""" Created on Wed March 30 11::00 2022 @author: Frédérique Leclerc """ from tracemalloc import start from numpy import number from Screen import Screen as Screen from PyQt5 import QtWidgets from PyQt5.QtWidgets import * from PyQt5.QtGui import QFont, QPixmap from PIL import Image #from Ergocycle.source.StartWindow import StartWindow from StartWindow import StartWindow from TestingWindow import TestingWindow from InstructionWindow import InstructionWindow from Parameters import Parameters from StimulationWindow import StimulationWindow from MainWindowStim import MainWindowStim from DangerPopUp import DangerPopUp import sys import datetime import time import csv from CommandButton import CommandButton as CommandButton # Take the code from main_sef.py and add getters and setters #def window(): #app = QApplication(sys.argv) #win = StartWindow() #win.show() #sys.exit(app.exec_()) #window() class StimulationScreen(Screen): def __init__(self, event_function): super(StimulationScreen, self).__init__(event_function) self.event_function = event_function self.current_menu = 0 self.danger_menu = 0 #self.now = datetime.datetime.now() ### 1.1. Permet de gérer les fenêtre apparaissant sur l'interface. ### def manage_active_window(self, stim_parameters): if self.window_counter == 0: self.current_menu = StartWindow() self.current_menu.training_button.clicked.connect(lambda : self.event_function("start_training")) self.current_menu.test_button.clicked.connect(lambda : self.event_function("start_test")) self.current_menu.show() # self.connect_buttons(self.current_menu) elif self.window_counter == -1: self.current_menu.close() self.current_menu = TestingWindow() self.current_menu.increase_amp_button.clicked.connect(lambda : self.event_function("increase_amp")) self.current_menu.increase_freq_button.clicked.connect(lambda : self.event_function("increase_frequency")) self.current_menu.increase_imp_button.clicked.connect(lambda : self.event_function("increase_imp")) self.current_menu.decrease_amp_button.clicked.connect(lambda : self.event_function("decrease_amp")) self.current_menu.decrease_freq_button.clicked.connect(lambda : self.event_function("decrease_frequency")) self.current_menu.decrease_imp_button.clicked.connect(lambda : self.event_function("decrease_imp")) self.current_menu.back_button.clicked.connect(lambda : self.event_function("back_button_clicked")) self.current_menu.show() elif self.window_counter == 1: self.current_menu.close() self.current_menu = MainWindowStim() self.current_menu.submit_button.clicked.connect(lambda : self.event_function("submit_button_clicked")) self.current_menu.submit_final_button.clicked.connect(lambda : self.event_function("submit_final_button_clicked")) self.current_menu.show() elif self.window_counter == -2: self.danger_menu = DangerPopUp(stim_parameters) self.danger_menu.show() self.danger_menu.back_to_menu_button.clicked.connect(lambda : self.back_to_menu_button_clicked()) self.danger_menu.continue_button.clicked.connect(lambda : self.continue_button_clicked(stim_parameters)) elif self.window_counter == 2: self.current_menu.close() self.current_menu = InstructionWindow(stim_parameters) self.current_menu.start_button.clicked.connect(lambda : self.event_function("start_stimulations")) self.current_menu.show() elif self.window_counter == 3: self.current_menu.close() self.current_menu = StimulationWindow(stim_parameters) self.current_menu.increase_amplitude1_button.clicked.connect(lambda : self.event_function("increase_amplitude1")) self.current_menu.increase_amplitude2_button.clicked.connect(lambda : self.event_function("increase_amplitude2")) self.current_menu.increase_amplitude3_button.clicked.connect(lambda : self.event_function("increase_amplitude3")) self.current_menu.increase_amplitude4_button.clicked.connect(lambda : self.event_function("increase_amplitude4")) self.current_menu.increase_amplitude5_button.clicked.connect(lambda : self.event_function("increase_amplitude5")) self.current_menu.increase_amplitude6_button.clicked.connect(lambda : self.event_function("increase_amplitude6")) self.current_menu.increase_amplitude7_button.clicked.connect(lambda : self.event_function("increase_amplitude7")) self.current_menu.increase_amplitude8_button.clicked.connect(lambda : self.event_function("increase_amplitude8")) self.current_menu.decrease_amplitude1_button.clicked.connect(lambda : self.event_function("decrease_amplitude1")) self.current_menu.decrease_amplitude2_button.clicked.connect(lambda : self.event_function("decrease_amplitude2")) self.current_menu.decrease_amplitude3_button.clicked.connect(lambda : self.event_function("decrease_amplitude3")) self.current_menu.decrease_amplitude4_button.clicked.connect(lambda : self.event_function("decrease_amplitude4")) self.current_menu.decrease_amplitude5_button.clicked.connect(lambda : self.event_function("decrease_amplitude5")) self.current_menu.decrease_amplitude6_button.clicked.connect(lambda : self.event_function("decrease_amplitude6")) self.current_menu.decrease_amplitude7_button.clicked.connect(lambda : self.event_function("decrease_amplitude7")) self.current_menu.decrease_amplitude8_button.clicked.connect(lambda : self.event_function("decrease_amplitude8")) self.current_menu.increase_frequency1_button.clicked.connect(lambda : self.event_function("increase_frequency1")) self.current_menu.increase_frequency2_button.clicked.connect(lambda : self.event_function("increase_frequency2")) self.current_menu.increase_frequency3_button.clicked.connect(lambda : self.event_function("increase_frequency3")) self.current_menu.increase_frequency4_button.clicked.connect(lambda : self.event_function("increase_frequency4")) self.current_menu.increase_frequency5_button.clicked.connect(lambda : self.event_function("increase_frequency5")) self.current_menu.increase_frequency6_button.clicked.connect(lambda : self.event_function("increase_frequency6")) self.current_menu.increase_frequency7_button.clicked.connect(lambda : self.event_function("increase_frequency7")) self.current_menu.increase_frequency8_button.clicked.connect(lambda : self.event_function("increase_frequency8")) self.current_menu.decrease_frequency1_button.clicked.connect(lambda : self.event_function("decrease_frequency1")) self.current_menu.decrease_frequency2_button.clicked.connect(lambda : self.event_function("decrease_frequency2")) self.current_menu.decrease_frequency3_button.clicked.connect(lambda : self.event_function("decrease_frequency3")) self.current_menu.decrease_frequency4_button.clicked.connect(lambda : self.event_function("decrease_frequency4")) self.current_menu.decrease_frequency5_button.clicked.connect(lambda : self.event_function("decrease_frequency5")) self.current_menu.decrease_frequency6_button.clicked.connect(lambda : self.event_function("decrease_frequency6")) self.current_menu.decrease_frequency7_button.clicked.connect(lambda : self.event_function("decrease_frequency7")) self.current_menu.decrease_frequency8_button.clicked.connect(lambda : self.event_function("decrease_frequency8")) self.current_menu.increase_imp1_button.clicked.connect(lambda : self.event_function("increase_imp1")) self.current_menu.increase_imp2_button.clicked.connect(lambda : self.event_function("increase_imp2")) self.current_menu.increase_imp3_button.clicked.connect(lambda : self.event_function("increase_imp3")) self.current_menu.increase_imp4_button.clicked.connect(lambda : self.event_function("increase_imp4")) self.current_menu.increase_imp5_button.clicked.connect(lambda : self.event_function("increase_imp5")) self.current_menu.increase_imp6_button.clicked.connect(lambda : self.event_function("increase_imp6")) self.current_menu.increase_imp7_button.clicked.connect(lambda : self.event_function("increase_imp7")) self.current_menu.increase_imp8_button.clicked.connect(lambda : self.event_function("increase_imp8")) self.current_menu.decrease_imp1_button.clicked.connect(lambda : self.event_function("decrease_imp1")) self.current_menu.decrease_imp2_button.clicked.connect(lambda : self.event_function("decrease_imp2")) self.current_menu.decrease_imp3_button.clicked.connect(lambda : self.event_function("decrease_imp3")) self.current_menu.decrease_imp4_button.clicked.connect(lambda : self.event_function("decrease_imp4")) self.current_menu.decrease_imp5_button.clicked.connect(lambda : self.event_function("decrease_imp5")) self.current_menu.decrease_imp6_button.clicked.connect(lambda : self.event_function("decrease_imp6")) self.current_menu.decrease_imp7_button.clicked.connect(lambda : self.event_function("decrease_imp7")) self.current_menu.decrease_imp8_button.clicked.connect(lambda : self.event_function("decrease_imp8")) self.current_menu.pauseWatch.pressed.connect(lambda : self.event_function("pause_stimulation")) self.current_menu.stop_button.clicked.connect(lambda : self.event_function("stop_stimulation")) self.current_menu.show() else: self.current_menu.close() def back_to_menu_button_clicked(self): self.danger_menu.close() # self.manage_active_window(stim_parameters) self.event_function("back_to_menu") def continue_button_clicked(self, stim_parameters): self.window_counter = 2 self.manage_active_window(stim_parameters) self.danger_menu.close() self.event_function("continue_to_instructions") ### 1.2. Création d'un fichier CSV lors de l'entraînement afin d'enregistrer les données de stimulations ### def create_csv_file(self, matrice): self.now = datetime.datetime.now() file = (self.now.strftime("%m-%d-%Y, %H;%M;%S")) path = "\\home\\pi\\Downloads\\stimulation_data_" # à commenter si vous travaillez sur votre ordinateur name_of_file = path+file+".csv" # à commenter si vous travaillez sur votre ordi #name_of_file = (self.now.strftime("%m-%d-%Y, %H;%M;%S"))+" stimulations_data.csv" # à décommenter si vous travaillez sur votre ordinateur with open(name_of_file, 'w',newline='') as f: fieldnames = ['Date and time', 'Electrode', 'Amplitude(mA)','Frequence(Hz)', 'Durée dimpulsion(us)', 'muscle'] thewriter = csv.DictWriter(f,fieldnames) thewriter.writeheader() now = datetime.datetime.now() date_time = now.strftime("%m-%d-%Y,%H:%M:%S") for i in range(8): muscle_name = self.get_muscle_traduction(matrice[3,i]) thewriter.writerow({'Date and time' : date_time, 'Electrode': str(i+1), 'Amplitude(mA)': str(matrice[0,i]) ,'Frequence(Hz)': str(matrice[1,i]), 'Durée dimpulsion(us)': str(matrice[2,i]), 'muscle': muscle_name}) f.close ### 1.3. Ajouter les modification des paramètres d'entraînement au même fichier CSV ### def save_data_in_csv_file(self, matrice): file = self.now.strftime("%m-%d-%Y, %H;%M;%S") path = "\\home\\pi\\Downloads\\stimulation_data_" # à commenter si vous travaillez sur votre ordi name_of_file = path+file+".csv" # à commenter si vous travaillez sur votre ordi #name_of_file = (self.now.strftime("%m-%d-%Y, %H;%M;%S"))+" stimulations_data.csv" # à décommenter si vous travaillez sur votre ordi with open(name_of_file, 'a+',newline='') as f: fieldnames = ['Date and time', 'Electrode', 'Amplitude(mA)','Frequence(Hz)', 'Durée dimpulsion(us)', 'muscle'] thewriter = csv.DictWriter(f,fieldnames) new_now = datetime.datetime.now() date_time = new_now.strftime("%m-%d-%Y,%H:%M:%S") if matrice == []: for i in range(8): thewriter.writerow({'Date and time' : date_time, 'Electrode': str(i+1), 'Amplitude(mA)': str(0) ,'Frequence(Hz)': str(0), 'Durée dimpulsion(us)': str(0), 'muscle': str(0)}) else: for i in range(8): muscle_name = self.get_muscle_traduction(matrice[3,i]) thewriter.writerow({'Date and time' : date_time, 'Electrode': str(i+1), 'Amplitude(mA)': str(matrice[0,i]) ,'Frequence(Hz)': str(matrice[1,i]), 'Durée dimpulsion(us)': str(matrice[2,i]), 'muscle': muscle_name}) f.close ### 1.4. Traduit les muscles de chiffre à nom pour l'enregistrements des données ### def get_muscle_traduction(self, muscle_number): if muscle_number == 0: muscle = "Aucun" if muscle_number == 1: muscle = "Biceps Brachii" if muscle_number== 2: muscle = "Triceps Brachii" if muscle_number == 3: muscle = "Deltoide Postérieur" if muscle_number == 4: muscle = "Deltoide Antérieur" return(muscle)
65.924883
230
0.703319
13,148
0.934537
0
0
0
0
0
0
3,152
0.224039
7f6557fd2c7f3025f39724cdaeb984fe7369be4f
1,412
py
Python
src/createVocabulary.py
aws-samples/aim317-uncover-insights-customer-conversations
663ba08fe9ad1cf1e520e77a88dc6a96b611619b
[ "MIT-0" ]
null
null
null
src/createVocabulary.py
aws-samples/aim317-uncover-insights-customer-conversations
663ba08fe9ad1cf1e520e77a88dc6a96b611619b
[ "MIT-0" ]
null
null
null
src/createVocabulary.py
aws-samples/aim317-uncover-insights-customer-conversations
663ba08fe9ad1cf1e520e77a88dc6a96b611619b
[ "MIT-0" ]
1
2021-12-20T16:40:55.000Z
2021-12-20T16:40:55.000Z
import boto3 import uuid import json import os def lambda_handler(event, context): record = event['Records'][0] s3bucket = record['s3']['bucket']['name'] s3object = record['s3']['object']['key'] print(s3object.split(".")[0].split("-")[2]) if s3object.split(".")[0].split("-")[2] == "EN": s3Path = "s3://" + s3bucket + "/" + s3object VocabName = "custom-vocab-EN-" + str(uuid.uuid4()) client = boto3.client('transcribe') print("S3 Path:" + s3Path) response = client.create_vocabulary( VocabularyName=VocabName, LanguageCode='en-US', VocabularyFileUri = s3Path, ) return { 'VocabularybName': response['VocabularyName'] } elif s3object.split(".")[0].split("-")[2] == "ES": s3Path = "s3://" + s3bucket + "/" + s3object VocabName = "custom-vocab-ES-" + str(uuid.uuid4()) client = boto3.client('transcribe') print("S3 Path:" + s3Path) response = client.create_vocabulary( VocabularyName=VocabName, LanguageCode='es-ES', VocabularyFileUri = s3Path, ) return { 'VocabularybName': response['VocabularyName'] } else: return { 'ErrorCode': "Language not in filename, must end in EN or ES" }
25.214286
73
0.526912
0
0
0
0
0
0
0
0
309
0.218839
7f661e451d1b0a515002a9da6f0b3193c7f5f896
773
py
Python
app/api/model/blacklist.py
ChegeBryan/politico
746ef4c76931928ef145593092c8b391421a50fd
[ "MIT" ]
1
2021-09-08T13:17:03.000Z
2021-09-08T13:17:03.000Z
app/api/model/blacklist.py
ChegeBryan/politico
746ef4c76931928ef145593092c8b391421a50fd
[ "MIT" ]
62
2019-02-04T07:08:32.000Z
2021-05-06T19:49:03.000Z
app/api/model/blacklist.py
ChegeBryan/politico
746ef4c76931928ef145593092c8b391421a50fd
[ "MIT" ]
5
2019-02-11T18:21:14.000Z
2022-02-25T07:41:07.000Z
""" Blacklist_token class method and model """ import datetime class BlacklistToken: """Blacklist token class 1. initializes the class with the user token and the time created """ def __init__(self, token): self.token = token self.blacklisted_on = datetime.datetime.now() def add_blacklist_token(self): query = """ INSERT INTO blacklist(token, blacklisted_on) VALUES (%s, %s); """ values = (self.token, self.blacklisted_on) return query, values @staticmethod def check_blacklist(auth_token): """ Check if the provided token is already in blacklisted """ sql = """SELECT * FROM blacklist WHERE token=%s;""" query = sql, (auth_token,) return query
26.655172
71
0.626132
706
0.913325
0
0
236
0.305304
0
0
344
0.445019
7f667e0c792310a6ca90389cd7acf95cb20a0aed
3,631
py
Python
matrix_procedures/load_dataset_class.py
jamiecook/AequilibraE
b1013d59cbeaf6fc4e1a944cf31f20460a2a4156
[ "MIT" ]
null
null
null
matrix_procedures/load_dataset_class.py
jamiecook/AequilibraE
b1013d59cbeaf6fc4e1a944cf31f20460a2a4156
[ "MIT" ]
null
null
null
matrix_procedures/load_dataset_class.py
jamiecook/AequilibraE
b1013d59cbeaf6fc4e1a944cf31f20460a2a4156
[ "MIT" ]
null
null
null
""" ----------------------------------------------------------------------------------------------------------- Package: AequilibraE Name: Loads datasets into AequilibraE binary files Purpose: Implements dataset creation Original Author: Pedro Camargo (c@margo.co) Contributors: Last edited by: Pedro Camargo Website: www.AequilibraE.com Repository: https://github.com/AequilibraE/AequilibraE Created: 2016-08-15 (Initially as vector loading) Updated: 2017-10-02 Copyright: (c) AequilibraE authors Licence: See LICENSE.TXT ----------------------------------------------------------------------------------------------------------- """ from PyQt4.QtCore import * import numpy as np from ..common_tools.worker_thread import WorkerThread import struct from ..aequilibrae.matrix import AequilibraEData from ..common_tools.global_parameters import * class LoadDataset(WorkerThread): def __init__(self, parent_thread, layer, index_field, fields, file_name): WorkerThread.__init__(self, parent_thread) self.layer = layer self.index_field = index_field self.fields = fields self.error = None self.python_version = (8 * struct.calcsize("P")) self.output = AequilibraEData() self.output_name = file_name def doWork(self): feat_count = self.layer.featureCount() self.emit(SIGNAL("ProgressMaxValue( PyQt_PyObject )"), feat_count) # Create specification for the output file datafile_spec = {'entries': feat_count} if self.output_name is None: datafile_spec['memory_mode'] = True else: datafile_spec['memory_mode'] = False fields = [] types = [] idxs = [] empties = [] for field in self.layer.dataProvider().fields().toList(): if field.name() in self.fields: if field.type() in integer_types: types.append('<i8') empties.append(np.iinfo(np.int64).min) elif field.type() in float_types: types.append('<f8') empties.append(np.nan) elif field.type() in string_types: types.append('S' + str(field.length())) empties.append('') else: print field.type() self.error = 'Field {} does has a type not supported.'.format(str(field.name())) break fields.append(str(field.name())) idxs.append(self.layer.fieldNameIndex(field.name())) index_idx = self.layer.fieldNameIndex(self.index_field) datafile_spec['field_names'] = fields datafile_spec['data_types'] = types datafile_spec['file_path'] = self.output_name if self.error is None: self.output.create_empty(**datafile_spec) # Get all the data for p, feat in enumerate(self.layer.getFeatures()): for idx, field, empty in zip(idxs, fields, empties): if isinstance(feat.attributes()[idx], QPyNullVariant): self.output.data[field][p] = empty else: self.output.data[field][p] = feat.attributes()[idx] self.output.index[p] = feat.attributes()[index_idx] self.emit(SIGNAL("ProgressValue( PyQt_PyObject )"), p) self.emit(SIGNAL("ProgressValue( PyQt_PyObject )"), int(feat_count)) self.emit(SIGNAL("finished_threaded_procedure( PyQt_PyObject )"), 'Done')
39.043011
108
0.56238
2,734
0.752961
0
0
0
0
0
0
1,023
0.281741
7f6761d3d7ac11e1232a9005ec969e6f67128b3e
781
py
Python
FastCAE_Linux/output/examples/example3/view.py
alleindrach/calculix-desktop
2cb2c434b536eb668ff88bdf82538d22f4f0f711
[ "MIT" ]
23
2020-03-16T03:01:43.000Z
2022-03-21T16:36:22.000Z
FastCAE_Linux/output/examples/example3/view.py
alleindrach/calculix-desktop
2cb2c434b536eb668ff88bdf82538d22f4f0f711
[ "MIT" ]
1
2020-03-17T05:50:07.000Z
2020-03-17T05:50:07.000Z
FastCAE_Linux/output/examples/example3/view.py
alleindrach/calculix-desktop
2cb2c434b536eb668ff88bdf82538d22f4f0f711
[ "MIT" ]
17
2020-03-16T01:46:36.000Z
2022-03-21T16:36:37.000Z
MainWindow.clearData() MainWindow.openPreWindow() box = CAD.Box() box.setName('Box_1') box.setLocation(0,0,0) box.setPara(10,10,10) box.create() cylinder = CAD.Cylinder() cylinder.setName('Cylinder_2') cylinder.setLocation(0,0,0) cylinder.setRadius(5) cylinder.setLength(10) cylinder.setAxis(0,0,1) cylinder.create() booloperation = CAD.BooLOperation() booloperation.setBoolType('Fause') booloperation.setIndexOfSolid1InGeo(1,0) booloperation.setIndexOfSolid2InGeo(2,0) booloperation.create() gmsher = Mesher.Gmsher() gmsher.setDim(3) gmsher.appendSolid(3,0) gmsher.setElementType("Tet") gmsher.setElementOrder(1) gmsher.setMethod(1) gmsher.setSizeFactor(1) gmsher.setMinSize(0) gmsher.setMaxSize(1.0) gmsher.cleanGeo() gmsher.startGenerationThread()
25.193548
41
0.766965
0
0
0
0
0
0
0
0
31
0.039693
7f696039cf0e21135e93815d60394b72a34a443f
1,040
py
Python
app/api/routes/server/plot_queue.py
cPoolChia/ChiaAutoplotter-Backend
8d875c1f846df395ddc76e3d84b36da45ad4d557
[ "MIT" ]
7
2021-06-01T09:20:34.000Z
2021-10-12T07:24:04.000Z
app/api/routes/server/plot_queue.py
cPoolChia/ChiaFarmerManager-Backend
8d875c1f846df395ddc76e3d84b36da45ad4d557
[ "MIT" ]
null
null
null
app/api/routes/server/plot_queue.py
cPoolChia/ChiaFarmerManager-Backend
8d875c1f846df395ddc76e3d84b36da45ad4d557
[ "MIT" ]
1
2021-05-31T13:08:14.000Z
2021-05-31T13:08:14.000Z
from typing import Any from uuid import UUID, uuid4 import celery from app import crud, models, schemas from app.api import deps from app.core.config import settings from app.utils import auth from app.core import tasks from fastapi import APIRouter, Depends, HTTPException, Body, Query from sqlalchemy.orm import Session from fastapi_utils.cbv import cbv from fastapi_utils.inferring_router import InferringRouter from app.api.routes.base import BaseAuthCBV router = InferringRouter() @cbv(router) class QueueCBV(BaseAuthCBV): @router.get("/") def get_queues_table( self, server: models.Server = Depends(deps.get_server_by_id), filtration: schemas.FilterData[models.Plot] = Depends( deps.get_filtration_data(models.Plot) ), ) -> schemas.Table[schemas.PlotQueueReturn]: amount, items = crud.plot_queue.get_multi_by_server( self.db, server=server, filtration=filtration ) return schemas.Table[schemas.PlotQueueReturn](amount=amount, items=items)
32.5
81
0.740385
537
0.516346
0
0
550
0.528846
0
0
3
0.002885
7f6a2ed067f756a98844a26933435661e374cbc1
991
py
Python
mushroom_rl/utils/eligibility_trace.py
PuzeLiu/mushroom-rl
99942b425e66b4ddcc26009d7105dde23841e95d
[ "MIT" ]
344
2020-01-10T09:45:02.000Z
2022-03-30T09:48:28.000Z
mushroom_rl/utils/eligibility_trace.py
AmmarFahmy/mushroom-rl
2625ee7f64d5613b3b9fba00f0b7a39fece88ca5
[ "MIT" ]
44
2020-01-23T03:00:56.000Z
2022-03-25T17:14:22.000Z
mushroom_rl/utils/eligibility_trace.py
AmmarFahmy/mushroom-rl
2625ee7f64d5613b3b9fba00f0b7a39fece88ca5
[ "MIT" ]
93
2020-01-10T21:17:58.000Z
2022-03-31T17:58:52.000Z
from mushroom_rl.utils.table import Table def EligibilityTrace(shape, name='replacing'): """ Factory method to create an eligibility trace of the provided type. Args: shape (list): shape of the eligibility trace table; name (str, 'replacing'): type of the eligibility trace. Returns: The eligibility trace table of the provided shape and type. """ if name == 'replacing': return ReplacingTrace(shape) elif name == 'accumulating': return AccumulatingTrace(shape) else: raise ValueError('Unknown type of trace.') class ReplacingTrace(Table): """ Replacing trace. """ def reset(self): self.table[:] = 0. def update(self, state, action): self.table[state, action] = 1. class AccumulatingTrace(Table): """ Accumulating trace. """ def reset(self): self.table[:] = 0. def update(self, state, action): self.table[state, action] += 1.
21.543478
71
0.616549
389
0.392533
0
0
0
0
0
0
430
0.433905
7f6d004764ff3c98efc96ebb1cf1f394bc32a7c1
440
py
Python
example_pkg/Parrots.py
TillWeinhold/EQUSWORKSHOPTill
95099cc8d8ebc93b53db6d9e9b4c67051fcb7763
[ "MIT" ]
null
null
null
example_pkg/Parrots.py
TillWeinhold/EQUSWORKSHOPTill
95099cc8d8ebc93b53db6d9e9b4c67051fcb7763
[ "MIT" ]
null
null
null
example_pkg/Parrots.py
TillWeinhold/EQUSWORKSHOPTill
95099cc8d8ebc93b53db6d9e9b4c67051fcb7763
[ "MIT" ]
null
null
null
class Parrot(): def __init__(self, squawk, is_alive=True): self.squawk = squawk self.is_alive = is_alive african_grey = Parrot('Polly want a Cracker?') norwegian_blue = Parrot('', is_alive=False) def squawk(self): if self.is_alive: return self.squawk else: return None african_grey.squawk() norwegian_blue.squawk() def set_alive(self, is_alive): self.is_alive = is_alive
22
46
0.652273
125
0.284091
0
0
0
0
0
0
25
0.056818
7f6f7feeb11eb05bb310cec5c813b37346f053c2
226
py
Python
Codility/python/problem2.py
rayguang/ratesbuddy
ec97f85201812967bb3380bba6de41bdb223eab6
[ "MIT" ]
null
null
null
Codility/python/problem2.py
rayguang/ratesbuddy
ec97f85201812967bb3380bba6de41bdb223eab6
[ "MIT" ]
null
null
null
Codility/python/problem2.py
rayguang/ratesbuddy
ec97f85201812967bb3380bba6de41bdb223eab6
[ "MIT" ]
null
null
null
def solution(S, K): # write your code in Python 3.6 day_dict = {0:'Mon', 1:'Tue', 2:'Wed', 3:'Thu', 4:'Fri', 5:'Sat', 6:'Sun'} return day_dict[list(day_dict.values()).index(S)+K] S='Wed' K=2 print(solution(S,K))
22.6
78
0.584071
0
0
0
0
0
0
0
0
71
0.314159
7f7137d3c4d91bf9456a8fd7ac1c27ab02193797
162
py
Python
ex030.py
MarcelleFranca/exercicios-python
e65c1d1f2d92db0e8f5035dea8062a53defa899f
[ "MIT" ]
null
null
null
ex030.py
MarcelleFranca/exercicios-python
e65c1d1f2d92db0e8f5035dea8062a53defa899f
[ "MIT" ]
null
null
null
ex030.py
MarcelleFranca/exercicios-python
e65c1d1f2d92db0e8f5035dea8062a53defa899f
[ "MIT" ]
null
null
null
n = int(input('Me diga um número qualquer: ')) re = n % 2 if re == 0: print('O número {} é PAR!'.format(n)) else: print('O número {} é ÍMPAR!'.format(n))
23.142857
46
0.567901
0
0
0
0
0
0
0
0
78
0.464286
7f71ee99f2565a596f85f7576a116d55d2f91fcd
6,927
py
Python
pyoperant/reinf.py
arouse01/pyoperant
e61de84862096720cca7dbecf517ee11c5d504d4
[ "BSD-3-Clause" ]
1
2019-01-26T17:19:47.000Z
2019-01-26T17:19:47.000Z
pyoperant/reinf.py
arouse01/pyoperant
e61de84862096720cca7dbecf517ee11c5d504d4
[ "BSD-3-Clause" ]
null
null
null
pyoperant/reinf.py
arouse01/pyoperant
e61de84862096720cca7dbecf517ee11c5d504d4
[ "BSD-3-Clause" ]
null
null
null
from numpy import random class BaseSchedule(object): """Maintains logic for deciding whether to consequate trials. This base class provides the most basic reinforcent schedule: every response is consequated. Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. Always returns True. """ def __init__(self): super(BaseSchedule, self).__init__() def consequate(self, trial): assert hasattr(trial, 'correct') and isinstance(trial.correct, bool) if trial.correct: return True else: return True class ContinuousReinforcement(BaseSchedule): """Maintains logic for deciding whether to consequate trials. This base class provides the most basic reinforcent schedule: every response is consequated. Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. Always returns True. """ def __init__(self): super(ContinuousReinforcement, self).__init__() def consequate(self, trial): assert hasattr(trial, 'correct') and isinstance(trial.correct, bool) if trial.correct: return True else: return True class FixedRatioSchedule(BaseSchedule): """Maintains logic for deciding whether to consequate trials. This class implements a fixed ratio schedule, where a reward reinforcement is provided after every nth correct response, where 'n' is the 'ratio'. Incorrect trials are always reinforced. Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. """ def __init__(self, ratio=1): super(FixedRatioSchedule, self).__init__() self.ratio = max(ratio, 1) self._update() def _update(self): self.cumulative_correct = 0 self.threshold = self.ratio def consequate(self, trial): assert hasattr(trial, 'correct') and isinstance(trial.correct, bool) if trial.correct: self.cumulative_correct += 1 if self.cumulative_correct >= self.threshold: self._update() return True else: return False elif not trial.correct: self.cumulative_correct = 0 return True else: return False def __unicode__(self): return "FR%i" % self.ratio class GoInterruptSchedule(BaseSchedule): """Maintains logic for deciding whether to consequate trials. This class implements a conditional continuous schedule, where reinforcement is provided after certain correct and incorrect responses Added 6/27/18 by AR for zebra finch isochronicity discrimination experiment. Correct Response (Resp switch to S+) = True False Alarm (Resp switch to S-) = True Miss (NR or Trial switch to S+) = False Correct Reject (Trial switch to S-) = False Probe trials are always rewarded (but handled in behavior file instead of here) Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. """ def __init__(self): super(GoInterruptSchedule, self).__init__() def consequate(self, trial): assert hasattr(trial, 'correct') and isinstance(trial.correct, bool) if trial.correct: if trial.response == 'sPlus': # Hit return True else: return False # Correct reject elif not trial.correct: if trial.response == 'sPlus': # False alarm return True else: return False # Miss else: return False class GoInterruptPercentSchedule(BaseSchedule): """Maintains logic for deciding whether to consequate trials. This class implements a conditional percent reinforcement schedule, where reinforcement is provided randomly after certain correct and incorrect responses Added 7/9/18 by AR for zebra finch isochronicity discrimination experiment. Correct Response (Resp switch to S+) = True by probability False Alarm (Resp switch to S-) = True always Miss (NR or Trial switch to S+) = False Correct Reject (Trial switch to S-) = False Probe trials are always rewarded (but handled in behavior file instead of here) Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. """ def __init__(self, prob=1): super(GoInterruptPercentSchedule, self).__init__() self.prob = prob def consequate(self, trial): if trial.responseType == "correct_response": return random.random() < self.prob elif trial.responseType == "false_alarm": return True else: return False class VariableRatioSchedule(FixedRatioSchedule): """Maintains logic for deciding whether to consequate trials. This class implements a variable ratio schedule, where a reward reinforcement is provided after every a number of consecutive correct responses. On average, the number of consecutive responses necessary is the 'ratio'. After a reinforcement is provided, the number of consecutive correct trials needed for the next reinforcement is selected by sampling randomly from the interval [1,2*ratio-1]. e.g. a ratio of '3' will require consecutive correct trials of 1, 2, 3, 4, & 5, randomly. Incorrect trials are always reinforced. Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. """ def __init__(self, ratio=1): super(VariableRatioSchedule, self).__init__(ratio=ratio) def _update(self): """ update min correct by randomly sampling from interval [1:2*ratio)""" self.cumulative_correct = 0 self.threshold = random.randint(1, 2 * self.ratio) def __unicode__(self): return "VR%i" % self.ratio class PercentReinforcement(BaseSchedule): """Maintains logic for deciding whether to consequate trials. This class implements a probabalistic reinforcement, where a reward reinforcement is provided x percent of the time. Incorrect trials are always reinforced. Methods: consequate(trial) -- returns a boolean value based on whether the trial should be consequated. """ def __init__(self, prob=1): super(PercentReinforcement, self).__init__() self.prob = prob def consequate(self, trial): assert hasattr(trial, 'correct') and isinstance(trial.correct, bool) if trial.correct: return random.random() < self.prob else: return True def __unicode__(self): return "PR%i" % self.prob
31.06278
91
0.664501
6,881
0.993359
0
0
0
0
0
0
3,764
0.543381
7f7253b551b2ff6d740c1f9d0a5085a8b1f18654
7,766
py
Python
Conditional/TextGAIL/model.py
mrazizi/TextGAIL
9b6e0e62669e0bd4fbb1a8b64098c8432b0d725d
[ "MIT" ]
19
2020-05-16T23:13:43.000Z
2022-03-08T15:01:48.000Z
Conditional/TextGAIL/model.py
MarkusSagen/TextGAIL
18ba72c6d63c3c3db1f195d118267c6e8243b4ff
[ "MIT" ]
2
2020-07-24T09:09:34.000Z
2022-02-22T11:56:31.000Z
Conditional/TextGAIL/model.py
MarkusSagen/TextGAIL
18ba72c6d63c3c3db1f195d118267c6e8243b4ff
[ "MIT" ]
10
2020-06-09T09:15:14.000Z
2022-03-20T09:36:30.000Z
from typing import Any, List, Dict, Iterator, Callable import torch import torch.nn as nn import torch.nn.functional as F from transformers import AutoTokenizer, RobertaForMultipleChoice import torchfly from torchfly.nn.transformers import GPT2LMHeadModel from torchfly.training import FlyModel from torchfly.nn.losses import SequenceCrossEntropyLoss from torchfly.metrics import CategoricalAccuracy, Average, MovingAverage, Speed from torchfly.common.download import get_pretrained_weights from torchfly.text.decode import TransformerDecoder # pylint: disable=no-member class TextGAILModel(FlyModel): def __init__(self, config): super().__init__(config) self.generator = Generator(config) self.discriminator = Discriminator(config) self._perplexity = Average() def configure_optimizers(self, total_num_update_steps) -> [List, List]: D_optimizer, D_scheduler = self.discriminator.configure_optimizers(total_num_update_steps) G_optimizer, G_scheduler = self.generator.configure_optimizers(total_num_update_steps) self.optimizers = D_optimizer + G_optimizer self.schedulers = D_scheduler + G_scheduler return self.optimizers, self.schedulers def predict(self, batch): self.generator.rl_mode = False results = self.generator.forward(batch) self.generator.rl_mode = True self._perplexity(results["loss"].exp().item()) def get_metrics(self, reset: bool = False) -> Dict[str, float]: ppl = self._perplexity.get_metric(reset) metrics = {"perplexity": ppl} return metrics class Generator(FlyModel): def __init__(self, config): super().__init__(config) self.config = config self.encoder = GPT2LMHeadModel(config.model) self.decoder = self.encoder self.tokenizer = AutoTokenizer.from_pretrained("roberta-base") # self.criterion = SequenceCrossEntropyLoss(reduce="sentence") self.criterion = nn.CrossEntropyLoss(ignore_index=config.model.pad_token_id) self._perplexity = Average() # load pretrained weights # model_weights = get_pretrained_weights("roberta-tokenized-gpt2") # print(self.encoder.load_state_dict(model_weights, strict=False)) self.rl_mode = True def forward(self, batch): batch["source_mask"] = batch["source_token_ids"] != self.tokenizer.pad_token_id batch["target_mask"] = batch["target_token_ids"] != self.tokenizer.pad_token_id batch["source_position_ids"] = batch["source_mask"].cumsum(-1) - 1 batch["target_position_ids"] = batch["source_position_ids"][:, -1].unsqueeze(-1) + batch["target_mask"].cumsum(-1) # encoder part _, past = self.encoder( input_ids=batch["source_token_ids"], position_ids=batch['source_position_ids'], attention_mask=batch["source_mask"], past=None ) joint_mask = torch.cat([batch["source_mask"], batch["target_mask"]], dim=1) logits, _ = self.decoder( input_ids=batch["target_token_ids"], position_ids=batch['target_position_ids'], attention_mask=joint_mask, past=past ) if not self.rl_mode: loss = self.compute_lm_loss(batch["target_token_ids"], logits, batch["target_mask"]) return {"loss": loss} else: logits = logits[:, :-1].contiguous() target_token_ids = batch["target_token_ids"][:, 1:].contiguous() log_probs = torch.log_softmax(logits, dim=-1) log_probs = torch.gather(log_probs, dim=-1, index=target_token_ids.unsqueeze(-1)).squeeze(-1) # mask log_probs = (log_probs * batch["target_mask"][:, 1:]).sum(-1) # / mask.sum(-1) results = {"log_probs": log_probs, "loss": 0.0} return results def compute_log_probs(self, batch): "This function is used by TextRLTrainerLoop" batch["source_mask"] = batch["source_token_ids"] != self.tokenizer.pad_token_id batch["target_mask"] = batch["target_token_ids"] != self.tokenizer.pad_token_id batch["source_position_ids"] = batch["source_mask"].cumsum(-1) - 1 batch["target_position_ids"] = batch["source_position_ids"][:, -1].unsqueeze(-1) + batch["target_mask"].cumsum(-1) # encoder part _, past = self.encoder( input_ids=batch["source_token_ids"], position_ids=batch['source_position_ids'], attention_mask=batch["source_mask"], past=None ) joint_mask = torch.cat([batch["source_mask"], batch["target_mask"]], dim=1) logits, _ = self.decoder( input_ids=batch["target_token_ids"], position_ids=batch['target_position_ids'], attention_mask=joint_mask, past=past ) if not self.rl_mode: loss = self.compute_lm_loss(batch["target_token_ids"], logits, batch["target_mask"]) return {"loss": loss} else: logits = logits[:, :-1].contiguous() target_token_ids = batch["target_token_ids"][:, 1:].contiguous() log_probs = torch.log_softmax(logits, dim=-1) log_probs = torch.gather(log_probs, dim=-1, index=target_token_ids.unsqueeze(-1)).squeeze(-1) # mask log_probs = (log_probs * batch["target_mask"][:, 1:]).sum(-1) # / mask.sum(-1) return {"log_probs": log_probs} def predict(self, batch): results = self.forward(batch) self._perplexity(results["loss"].exp().item()) def get_metrics(self, reset: bool = False) -> Dict[str, float]: ppl = self._perplexity.get_metric(reset) metrics = {"perplexity": ppl} return metrics def compute_lm_loss(self, input_ids, logits, mask): logits = logits[:, :-1].contiguous() target = input_ids[:, 1:].contiguous() #mask = mask[:, 1:].float() #return self.criterion(logits, target, mask) return self.criterion(logits.view(-1, logits.size(-1)), target.view(-1)) def prepare_model_inputs_for_generation(self, input_ids, model_inputs, num_sequences): model_inputs = {} model_inputs["attention_mask"] = (input_ids != self.tokenizer.pad_token_id) model_inputs["position_ids"] = (input_ids != self.tokenizer.pad_token_id).cumsum(-1) - 1 _, past = self.encoder( input_ids=input_ids, attention_mask=model_inputs["attention_mask"], position_ids=model_inputs["position_ids"], past=None ) model_inputs["past"] = past model_inputs["attention_mask"] = F.pad(model_inputs["attention_mask"], pad=(0, 1), value=True) # remember to add one model_inputs["position_ids"] = model_inputs["position_ids"][:, -1].unsqueeze(-1) + 1 bos_token_ids = torch.LongTensor(self.config.decode.bos_token_ids) model_inputs["input_ids"] = bos_token_ids.unsqueeze(0).expand(input_ids.shape[0], -1).to(input_ids.device) return model_inputs class Discriminator(FlyModel): def __init__(self, config): super().__init__(config) self.config = config self.model = RobertaForMultipleChoice.from_pretrained("roberta-base") def forward(self, batch, training=False): self.model.eval() logits = self.model(batch["input_ids"])[0] log_probs = F.log_softmax(logits, dim=-1) loss = -log_probs[:, 0].mean() return {"reward": log_probs[:, 1].exp(), "loss": loss}
40.873684
119
0.635076
7,184
0.925058
0
0
0
0
0
0
1,380
0.177698
7f7257441c10fd88f6708caf8a3bdeae39120b6f
5,622
py
Python
yolo_v1_inference.py
jerichosu/YOLO_V1_Pytorch
2f665f6b6b00d8cf9782bff43c5aede5aa5c3a4a
[ "MIT" ]
null
null
null
yolo_v1_inference.py
jerichosu/YOLO_V1_Pytorch
2f665f6b6b00d8cf9782bff43c5aede5aa5c3a4a
[ "MIT" ]
null
null
null
yolo_v1_inference.py
jerichosu/YOLO_V1_Pytorch
2f665f6b6b00d8cf9782bff43c5aede5aa5c3a4a
[ "MIT" ]
null
null
null
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Thu Feb 10 14:12:28 2022 @author: 1517suj """ from model import Yolov1 import torch import torch.optim as optim import torchvision.transforms as T import cv2 from utils import ( non_max_suppression, mean_average_precision, intersection_over_union, cellboxes_to_boxes, #converting boxes from relative to the cell to relative to the entire image get_bboxes, plot_image, load_checkpoint,) # inference DEVICE = 'cuda' LOAD_MODEL_FILE = "overfit.pth.tar" LEARNING_RATE = 2e-5 WEIGHT_DECAY = 0 model = Yolov1(split_size=7, num_boxes=2, num_classes=20) optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE, weight_decay=WEIGHT_DECAY) load_checkpoint(torch.load(LOAD_MODEL_FILE), model, optimizer) model.to(DEVICE) model.eval() # %% # some testing images # path = 'two_dogs_test1.png' # path = 'two_dogs_test2.jpg' # path = 'three_dogs.png' # path = 'yaz_test.jpg' path = 'town_center.png' img = cv2.imread(path) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) print(img.shape) # cv2.imshow('image', img) # cv2.waitKey(0) # cv2.destroyAllWindows() # # convert from numpy array to tensor # inputs = torch.from_numpy(img) # torch.Size([H,W,3]) # inputs = inputs.permute(2,0,1) # torch.Size([3,H,W]) # print(inputs.shape) # change the height and width to fit the model transform=T.Compose([T.ToTensor(), # TO TENSOR FIRST!!!!!!!!! T.Resize((448, 448))]) # when you use ToTensor() class, PyTorch automatically converts all images into [0,1]. inputs = transform(img) # torch.Size([3,448,448]) print(inputs.shape) # increase the dimension inputs = torch.unsqueeze(inputs, 0) # torch.Size([1,3,H,W]) print(inputs.shape) input_tensor = inputs.to(DEVICE) output = model(input_tensor) print(output.shape) # %% #convert to results bboxes = cellboxes_to_boxes(output) # convert to bboxes # plot without non_max_suppression # plot_image(input_tensor.squeeze(0).permute(1,2,0).to("cpu"), bboxes[0]) plot_image(img, bboxes[0]) # NMS bboxes = non_max_suppression(bboxes[0], iou_threshold=0.8, threshold=0.15, box_format="midpoint") # plot after NMS (this one plots the 448x448 results) # plot_image(input_tensor.squeeze(0).permute(1,2,0).to("cpu"), bboxes) # this one shows the actual image size plot_image(img, bboxes) # cap = cv2.VideoCapture(path) # retaining = True # kk = 0 # image_list = [] # clip = [] # while retaining: # retaining, frame = cap.read() # if not retaining and frame is None: # continue # # tmp_ = center_crop(cv2.resize(frame, (171, 128))) # # tmp = tmp_ - np.array([[[90.0, 98.0, 102.0]]]) # # i = 0 # # i += 1 # # if i == 0 and i % 7 == 0: # # clip.append(frame) # clip.append(frame) # if len(clip) == 16: # inputs = np.array(clip).astype(np.float32) # # inputs = np.expand_dims(inputs, axis=0) # # inputs = np.transpose(inputs, (0, 4, 1, 2, 3)) # # convert from numpy array to tensor # inputs = torch.from_numpy(inputs) # torch.Size([16, 360, 640, 3]) # inputs = inputs.permute(3,0,1,2) # torch.Size([3, 16, 360, 640]) # # print(inputs.shape) # # change the height and width to fit the model # inputs = trans_val(inputs) # torch.Size([3, 16, 224, 224]) # # increase the dimension # inputs = torch.unsqueeze(inputs, 0) # torch.Size([1, 3, 16, 224, 224]) # # Data normalization # # Divide every pixel intensity by 255.0 # inputs = inputs.type(torch.FloatTensor).div_(255.0) # # Pixel intensity from 0 ~ 255 to [-1, +1] # inputs = inputs.type(torch.FloatTensor).sub_(stats['mean'][:,None,None,None]).div_(stats['std'][:,None,None,None]) # inputs = inputs.to(device) # # inputs = torch.autograd.Variable(inputs, requires_grad=False).to(device) # with torch.no_grad(): # outputs = model(inputs).squeeze(2) # # outputs = model.forward(inputs).squeeze(2) # # compute the probability # m = nn.Softmax(dim=1) # # probs = torch.max(m(outputs)) # probs_fight = m(outputs)[0][0] # # check!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # probs = torch.max(outputs) # # print(probs_fight) # predicted_labels = torch.argmax(outputs) # # _, predicted_labels = torch.max(outputs, 1) # # print(int(predicted_labels)) # # print(outputs.shape) # # label = torch.max(probs, 1)[1].detach().cpu().numpy()[0] # cv2.putText(frame, labels[int(predicted_labels)], (5, 50), # cv2.FONT_HERSHEY_SIMPLEX, 1.5, # (0, 0, 255), thickness=2) # cv2.putText(frame, "Prob_fight: %.4f" % probs_fight, (5, 100), # cv2.FONT_HERSHEY_SIMPLEX, 1.0, # (0, 0, 255), thickness=2) # # print(len(clip)) # clip.pop(0) # # print(len(clip)) # # break # cv2.imshow('result', frame) # # make sure don't make gif too big # kk += 1 # print(kk) # # if kk > 500 and kk < 800: # # print(kk) # # frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) # # image_list.append(frame_rgb) # # if kk > 800: # # break # if cv2.waitKey(1) & 0xFF == ord('q'): # break # # cv2.waitKey(30) # cap.release() # cv2.destroyAllWindows()
26.771429
124
0.590359
0
0
0
0
0
0
0
0
4,174
0.74244
7f7260f159737945fe7bc1ae8aea08979812d974
1,812
py
Python
setup.py
sedatDemiriz/satisfy-calc
6b89226a87958dd89ed6327d9bf10bd5e9927a7b
[ "MIT" ]
null
null
null
setup.py
sedatDemiriz/satisfy-calc
6b89226a87958dd89ed6327d9bf10bd5e9927a7b
[ "MIT" ]
null
null
null
setup.py
sedatDemiriz/satisfy-calc
6b89226a87958dd89ed6327d9bf10bd5e9927a7b
[ "MIT" ]
null
null
null
import pathlib from setuptools import setup # The directory containing this file HERE = pathlib.Path(__file__).parent # The text of the README file README = (HERE / "README.md").read_text() setup( name="satisfy-calc", version="1.1.3", description="Command line crafting tree visualizer for Satisfactory Game by CoffeeStain Studios", long_description=README, long_description_content_type="text/markdown", url="https://github.com/sedatDemiriz/satisfy-calc", author="Sedat Demiriz", author_email="sedatdemiriz97@gmail.com", license="MIT", classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", ], install_requires=["bs4", "jsonpickle", "requests"], packages=["satisfy_calc"], entry_points={ "console_scripts": [ "satisfy_calc=satisfy_calc.__main__:main" ] }, ) # setup( # name="realpython-reader", # version="1.0.0", # description="Read the latest Real Python tutorials", # long_description=README, # long_description_content_type="text/markdown", # url="https://github.com/realpython/reader", # author="Real Python", # author_email="info@realpython.com", # license="MIT", # classifiers=[ # "License :: OSI Approved :: MIT License", # "Programming Language :: Python :: 3", # "Programming Language :: Python :: 3.7", # ], # packages=["reader"], # include_package_data=True, # install_requires=["feedparser", "html2text"], # entry_points={ # "console_scripts": [ # "realpython=reader.__main__:main", # ] # }, # )
30.711864
105
0.598786
0
0
0
0
0
0
0
0
1,246
0.687638
7f74399a50cac0ddf062397297d09c884bd0d887
74
py
Python
projects/InstantTeaching/models/__init__.py
txdet/Instant-Teaching
d07910c4c811d875b03200ffb1822c32556ccf9a
[ "Apache-2.0" ]
18
2021-12-14T08:37:34.000Z
2022-03-25T18:53:21.000Z
projects/InstantTeaching/models/__init__.py
txdet/Instant-Teaching
d07910c4c811d875b03200ffb1822c32556ccf9a
[ "Apache-2.0" ]
1
2022-02-16T08:06:30.000Z
2022-02-16T08:06:30.000Z
projects/InstantTeaching/models/__init__.py
txdet/Instant-Teaching
d07910c4c811d875b03200ffb1822c32556ccf9a
[ "Apache-2.0" ]
1
2022-02-08T08:30:07.000Z
2022-02-08T08:30:07.000Z
from .detectors import * from .max_iou_assigner_v2 import MaxIoUAssignerV2
37
49
0.864865
0
0
0
0
0
0
0
0
0
0
7f74c0fc275d974a627baa79ccbe3262645f2513
2,195
py
Python
components/studio/projects/migrations/0015_auto_20210301_1015.py
aitmlouk/stackn
c8029394a15b03796a4864938f9db251b65c7354
[ "Apache-2.0" ]
25
2020-05-08T22:24:54.000Z
2022-03-11T18:16:58.000Z
components/studio/projects/migrations/0015_auto_20210301_1015.py
aitmlouk/stackn
c8029394a15b03796a4864938f9db251b65c7354
[ "Apache-2.0" ]
75
2020-05-08T22:15:59.000Z
2021-11-22T10:00:04.000Z
components/studio/projects/migrations/0015_auto_20210301_1015.py
aitmlouk/stackn
c8029394a15b03796a4864938f9db251b65c7354
[ "Apache-2.0" ]
12
2020-11-04T13:09:46.000Z
2022-03-14T16:22:40.000Z
# Generated by Django 3.1.6 on 2021-03-01 10:15 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('projects', '0014_environment_appenv'), ] operations = [ migrations.RemoveField( model_name='flavor', name='cpu', ), migrations.RemoveField( model_name='flavor', name='gpu', ), migrations.RemoveField( model_name='flavor', name='mem', ), migrations.AddField( model_name='flavor', name='cpu_lim', field=models.TextField(blank=True, default='1000m', null=True), ), migrations.AddField( model_name='flavor', name='cpu_req', field=models.TextField(blank=True, default='200m', null=True), ), migrations.AddField( model_name='flavor', name='ephmem_lim', field=models.TextField(blank=True, default='200Mi', null=True), ), migrations.AddField( model_name='flavor', name='ephmem_req', field=models.TextField(blank=True, default='200Mi', null=True), ), migrations.AddField( model_name='flavor', name='gpu_lim', field=models.TextField(blank=True, default='0', null=True), ), migrations.AddField( model_name='flavor', name='gpu_req', field=models.TextField(blank=True, default='0', null=True), ), migrations.AddField( model_name='flavor', name='mem_lim', field=models.TextField(blank=True, default='3Gi', null=True), ), migrations.AddField( model_name='flavor', name='mem_req', field=models.TextField(blank=True, default='0.5Gi', null=True), ), migrations.AddField( model_name='flavor', name='project', field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='projects.project'), ), ]
30.486111
115
0.541686
2,069
0.942597
0
0
0
0
0
0
343
0.156264
7f7574b64532b1f7794103ece680d1785b89f64b
210
py
Python
tests/Auth_Test.py
PyDO-Team/PyDO-Old
a89d9d30aee72a42ce3afdd90b5b297e7b908d73
[ "BSD-3-Clause" ]
1
2021-02-23T12:54:05.000Z
2021-02-23T12:54:05.000Z
tests/Auth_Test.py
PyDO-Team/PyDO-Old
a89d9d30aee72a42ce3afdd90b5b297e7b908d73
[ "BSD-3-Clause" ]
null
null
null
tests/Auth_Test.py
PyDO-Team/PyDO-Old
a89d9d30aee72a42ce3afdd90b5b297e7b908d73
[ "BSD-3-Clause" ]
1
2021-02-23T12:54:07.000Z
2021-02-23T12:54:07.000Z
from TestOutput import LogManager class Auth_Test: def __init__(self): self.logger = LogManager('AuthTest') self.logger.writeTestEvent('AuthTest', 'Test Started') if __name__ == "__main__": Auth_Test()
21
56
0.747619
134
0.638095
0
0
0
0
0
0
44
0.209524
7f76ceea26c08de27da1840f0d593d7e2ff3c37f
298
py
Python
app/models/db.py
cdlaimin/fastapi
4acf1a1da4a1eedd81a3bdf6256661c2464928b9
[ "BSD-3-Clause" ]
null
null
null
app/models/db.py
cdlaimin/fastapi
4acf1a1da4a1eedd81a3bdf6256661c2464928b9
[ "BSD-3-Clause" ]
null
null
null
app/models/db.py
cdlaimin/fastapi
4acf1a1da4a1eedd81a3bdf6256661c2464928b9
[ "BSD-3-Clause" ]
null
null
null
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession from sqlalchemy.orm import sessionmaker from app.core.config import settings engine = create_async_engine(settings.ASYNC_SQLALCHEMY_DATABASE_URI) SessionLocal = sessionmaker(engine, class_=AsyncSession, expire_on_commit=False)
37.25
80
0.865772
0
0
0
0
0
0
0
0
0
0
7f774ce1cb63f287b074535083076da2eb2886d4
37
py
Python
src/globals.py
22PoojaGaur/COMINE-Plusplus-Algorithm-for-Finding-Correlated-Patterns-from-Transactions
3b554ab337765f8c02126c585dd025d71c539f73
[ "MIT" ]
null
null
null
src/globals.py
22PoojaGaur/COMINE-Plusplus-Algorithm-for-Finding-Correlated-Patterns-from-Transactions
3b554ab337765f8c02126c585dd025d71c539f73
[ "MIT" ]
6
2020-10-03T19:47:08.000Z
2021-04-23T10:55:19.000Z
src/globals.py
22PoojaGaur/COMINE-Plusplus-Algorithm-for-Finding-Correlated-Patterns-from-Transactions
3b554ab337765f8c02126c585dd025d71c539f73
[ "MIT" ]
null
null
null
MIN_SUPPORT = 2 MIN_ALL_CONF = 0.05
9.25
19
0.72973
0
0
0
0
0
0
0
0
0
0
7f794d62fc3c675ead0a023096a5c67f9a7ede0f
195
py
Python
1-iniciante/1038.py
marcobarone-dev/uri
82bf0b244d3966673b10a42948dcdeabcde07e76
[ "MIT" ]
1
2018-07-04T02:42:29.000Z
2018-07-04T02:42:29.000Z
1-iniciante/1038.py
marcobarone-dev/uri-python
82bf0b244d3966673b10a42948dcdeabcde07e76
[ "MIT" ]
null
null
null
1-iniciante/1038.py
marcobarone-dev/uri-python
82bf0b244d3966673b10a42948dcdeabcde07e76
[ "MIT" ]
null
null
null
produtos = {1: 4.0, 2: 4.5, 3: 5.0, 4: 2.0, 5: 1.5} produto, quantidade = [int(num) for num in input().split()] total = produtos[produto] * quantidade print('Total: R$ {:.2f}'.format(total))
39
60
0.605128
0
0
0
0
0
0
0
0
18
0.092308
7f7b9c9bf2b4a1aef51cf2613f660d03ff4d092d
1,168
py
Python
books/software-architecture-with-python/Ch04-performance-data-structures/primes.py
phiratio/lpthw
a32240d4355fb331805d515f96e1d009914e5c47
[ "MIT" ]
1
2021-04-21T09:38:38.000Z
2021-04-21T09:38:38.000Z
books/software-architecture-with-python/Ch04-performance-data-structures/primes.py
phiratio/lpthw
a32240d4355fb331805d515f96e1d009914e5c47
[ "MIT" ]
34
2019-12-16T16:53:24.000Z
2022-01-13T02:29:30.000Z
books/software-architecture-with-python/Ch04-performance-data-structures/primes.py
phiratio/lpthw
a32240d4355fb331805d515f96e1d009914e5c47
[ "MIT" ]
null
null
null
# Code Listing #3 """ Prime number iterator class """ class Prime(object): """ A prime number iterator for first 'n' primes """ def __init__(self, n): self.n = n self.count = 0 self.value = 0 def __iter__(self): return self def __next__(self): """ Return next item in iterator """ if self.count == self.n: raise StopIteration("end of iteration") return self.compute() # Uncomment next line for profiling with line profiler # or memory profiler. # @profile def is_prime(self): """ Whether current value is prime ? """ vroot = int(self.value ** 0.5) + 1 for i in range(3, vroot, 2): if self.value % i == 0: return False return True def compute(self): """ Compute next prime """ # Second time, reset value if self.count == 1: self.value = 1 while True: self.value += 2 if self.is_prime(): self.count += 1 break return self.value if __name__ == "__main__": l = list(Prime(1000))
20.137931
58
0.518836
1,054
0.902397
0
0
0
0
0
0
347
0.297089
7f7cecbd7d8387712e80404ab9516b060333f0e5
444
py
Python
timeblock/stopwatch.py
daustin391/timeblock
1895f95205100f2f191feccbb1bcb90672aae043
[ "MIT" ]
null
null
null
timeblock/stopwatch.py
daustin391/timeblock
1895f95205100f2f191feccbb1bcb90672aae043
[ "MIT" ]
null
null
null
timeblock/stopwatch.py
daustin391/timeblock
1895f95205100f2f191feccbb1bcb90672aae043
[ "MIT" ]
null
null
null
""" Stopwatch A simple stopwatch for measuring time """ from datetime import datetime class Stopwatch: """Stopwatch object for measuring time""" def __init__(self): self._start = None def start(self): """Starts watch by setting start time to now""" self._start = datetime.now() def check(self): """Check the time passed since watch started""" return self._start - datetime.now()
22.2
55
0.635135
351
0.790541
0
0
0
0
0
0
194
0.436937
7f7d50f6a8fff49e5e4da85906cece438d04d0c3
623
py
Python
src/data/mnist_converter.py
laurabondeholst/Mapping_high_dimensional_data
208c1024d3984cf60fc2f54b7bfdffaa83c60157
[ "MIT" ]
null
null
null
src/data/mnist_converter.py
laurabondeholst/Mapping_high_dimensional_data
208c1024d3984cf60fc2f54b7bfdffaa83c60157
[ "MIT" ]
null
null
null
src/data/mnist_converter.py
laurabondeholst/Mapping_high_dimensional_data
208c1024d3984cf60fc2f54b7bfdffaa83c60157
[ "MIT" ]
null
null
null
""" Takes the MNIST dataset as input (images and labels separated) and creates a new dataset only with 0's and 1's """ import numpy as np DATA_PATH = "data/raw/" OUTPUT_PATH = "data/processed/mnist/" X = np.loadtxt(DATA_PATH + "mnist2500_X.txt") labels = np.loadtxt(DATA_PATH + "mnist2500_labels.txt") X_new = [] labels_new = [] for i,label in enumerate(labels): if label < 5: labels_new.append(label) X_new.append(X[i]) if i%100 == 0: print(f"{i} labels passed") np.savetxt(OUTPUT_PATH + "mnist2500_X_01234.txt",X_new) np.savetxt(OUTPUT_PATH +"mnist2500_labels_01234.txt",labels_new)
25.958333
64
0.693419
0
0
0
0
0
0
0
0
262
0.420546
7f7df73d539af4f42bcbde355e7bdef39b43dc8a
7,364
py
Python
models/pytorch_gcn.py
SamGalanakis/FlowCompare
ed26e48298fe42cf9ddcc252c19b502b4a71d54e
[ "MIT" ]
5
2021-05-22T23:14:19.000Z
2022-02-19T14:11:27.000Z
models/pytorch_gcn.py
SamGalanakis/PointFlowChange
ed26e48298fe42cf9ddcc252c19b502b4a71d54e
[ "MIT" ]
1
2021-06-05T11:20:53.000Z
2021-06-05T12:30:44.000Z
models/pytorch_gcn.py
SamGalanakis/PointFlowChange
ed26e48298fe42cf9ddcc252c19b502b4a71d54e
[ "MIT" ]
null
null
null
import os import sys import copy import math import numpy as np import torch import torch.nn as nn import torch.nn.functional as F from models.nets import MLP # Original code from : https://github.com/WangYueFt/dgcnn/blob/master/pytorch/model.py def knn(x, k): inner = -2*torch.matmul(x.transpose(2, 1), x) xx = torch.sum(x**2, dim=1, keepdim=True) pairwise_distance = -xx - inner - xx.transpose(2, 1) # (batch_size, num_points, k) idx = pairwise_distance.topk(k=k, dim=-1)[1] return idx def get_graph_feature(x, k=20, idx=None): batch_size = x.size(0) num_points = x.size(2) x = x.view(batch_size, -1, num_points) if idx is None: idx = knn(x, k=k) # (batch_size, num_points, k) idx_base = torch.arange( 0, batch_size, device=x.device).view(-1, 1, 1)*num_points idx = idx + idx_base idx = idx.view(-1) _, num_dims, _ = x.size() # (batch_size, num_points, num_dims) -> (batch_size*num_points, num_dims) # batch_size * num_points * k + range(0, batch_size*num_points) x = x.transpose(2, 1).contiguous() feature = x.view(batch_size*num_points, -1)[idx, :] feature = feature.view(batch_size, num_points, k, num_dims) x = x.view(batch_size, num_points, 1, num_dims).repeat(1, 1, k, 1) feature = torch.cat((feature-x, x), dim=3).permute(0, 3, 1, 2).contiguous() return feature class DGCNNembedder(nn.Module): """DGCNN embedder with n_points x embedding dim as output""" def __init__(self, out_mlp_dims, emb_dim=22, dropout=0, n_neighbors=20): super().__init__() self.n_neighbors = n_neighbors self.bn1 = nn.BatchNorm2d(64) self.bn2 = nn.BatchNorm2d(64) self.bn3 = nn.BatchNorm2d(128) self.bn4 = nn.BatchNorm2d(256) self.bn5 = nn.BatchNorm1d(512) self.conv1 = nn.Sequential(nn.Conv2d(12, 64, kernel_size=1, bias=False), self.bn1, nn.LeakyReLU(negative_slope=0.2)) self.conv2 = nn.Sequential(nn.Conv2d(64*2, 64, kernel_size=1, bias=False), self.bn2, nn.LeakyReLU(negative_slope=0.2)) self.conv3 = nn.Sequential(nn.Conv2d(64*2, 128, kernel_size=1, bias=False), self.bn3, nn.LeakyReLU(negative_slope=0.2)) self.conv4 = nn.Sequential(nn.Conv2d(128*2, 256, kernel_size=1, bias=False), self.bn4, nn.LeakyReLU(negative_slope=0.2)) self.conv5 = nn.Sequential(nn.Conv1d(512, 512, kernel_size=1, bias=False), self.bn5, nn.LeakyReLU(negative_slope=0.2)) self.out_mlp = MLP(512, out_mlp_dims, emb_dim, torch.nn.GELU()) def forward(self, x): batch_size = x.size(0) x = x.permute((0, 2, 1)) x = get_graph_feature(x, k=self.n_neighbors) x = self.conv1(x) x1 = x.max(dim=-1, keepdim=False)[0] x = get_graph_feature(x1, self.n_neighbors) x = self.conv2(x) x2 = x.max(dim=-1, keepdim=False)[0] x = get_graph_feature(x2, k=self.n_neighbors) x = self.conv3(x) x3 = x.max(dim=-1, keepdim=False)[0] x = get_graph_feature(x3, k=self.n_neighbors) x = self.conv4(x) x4 = x.max(dim=-1, keepdim=False)[0] x = torch.cat((x1, x2, x3, x4),dim=1) x = self.conv5(x).permute((0, 2, 1)) x = self.out_mlp(x) return x class DGCNNembedderGlobal(nn.Module): """DGCNN embedder with single embedding vector as output""" def __init__(self, input_dim, out_mlp_dims, emb_dim=22, n_neighbors=20): super().__init__() self.n_neighbors = n_neighbors self.input_dim = input_dim self.bn1 = nn.BatchNorm2d(64) self.bn2 = nn.BatchNorm2d(64) self.bn3 = nn.BatchNorm2d(128) self.bn4 = nn.BatchNorm2d(256) self.bn5 = nn.BatchNorm1d(512) self.conv1 = nn.Sequential(nn.Conv2d(self.input_dim*2, 64, kernel_size=1, bias=False), self.bn1, nn.LeakyReLU(negative_slope=0.2)) self.conv2 = nn.Sequential(nn.Conv2d(64*2, 64, kernel_size=1, bias=False), self.bn2, nn.LeakyReLU(negative_slope=0.2)) self.conv3 = nn.Sequential(nn.Conv2d(64*2, 128, kernel_size=1, bias=False), self.bn3, nn.LeakyReLU(negative_slope=0.2)) self.conv4 = nn.Sequential(nn.Conv2d(128*2, 256, kernel_size=1, bias=False), self.bn4, nn.LeakyReLU(negative_slope=0.2)) self.conv5 = nn.Sequential(nn.Conv1d(512, 512, kernel_size=1, bias=False), self.bn5, nn.LeakyReLU(negative_slope=0.2)) self.out_mlp = MLP(512*2, out_mlp_dims, emb_dim, torch.nn.GELU()) def forward(self, x): batch_size = x.size(0) x = x.permute((0, 2, 1)) # (batch_size, 3, num_points) -> (batch_size, 3*2, num_points, k) x = get_graph_feature(x, k=self.n_neighbors) # (batch_size, 3*2, num_points, k) -> (batch_size, 64, num_points, k) x = self.conv1(x) # (batch_size, 64, num_points, k) -> (batch_size, 64, num_points) x1 = x.max(dim=-1, keepdim=False)[0] # (batch_size, 64, num_points) -> (batch_size, 64*2, num_points, k) x = get_graph_feature(x1, k=self.n_neighbors) # (batch_size, 64*2, num_points, k) -> (batch_size, 64, num_points, k) x = self.conv2(x) # (batch_size, 64, num_points, k) -> (batch_size, 64, num_points) x2 = x.max(dim=-1, keepdim=False)[0] # (batch_size, 64, num_points) -> (batch_size, 64*2, num_points, k) x = get_graph_feature(x2, k=self.n_neighbors) # (batch_size, 64*2, num_points, k) -> (batch_size, 128, num_points, k) x = self.conv3(x) # (batch_size, 128, num_points, k) -> (batch_size, 128, num_points) x3 = x.max(dim=-1, keepdim=False)[0] # (batch_size, 128, num_points) -> (batch_size, 128*2, num_points, k) x = get_graph_feature(x3, k=self.n_neighbors) # (batch_size, 128*2, num_points, k) -> (batch_size, 256, num_points, k) x = self.conv4(x) # (batch_size, 256, num_points, k) -> (batch_size, 256, num_points) x4 = x.max(dim=-1, keepdim=False)[0] # (batch_size, 64+64+128+256, num_points) x = torch.cat((x1, x2, x3, x4), dim=1) # (batch_size, 64+64+128+256, num_points) -> (batch_size, emb_dims, num_points) x = self.conv5(x) # (batch_size, emb_dims, num_points) -> (batch_size, emb_dims) x1 = F.adaptive_max_pool1d(x, 1).view(batch_size, -1) # (batch_size, emb_dims, num_points) -> (batch_size, emb_dims) x2 = F.adaptive_avg_pool1d(x, 1).view(batch_size, -1) x = torch.cat((x1, x2), 1) # (batch_size, emb_dims*2) # (batch_size, 256) -> (batch_size, output_channels) x = self.out_mlp(x) return x
38.354167
144
0.562873
5,967
0.810293
0
0
0
0
0
0
1,539
0.20899
7f8193e422f05e255a9a742b6b7c71cffa4e2519
2,794
py
Python
src/weaver/models/custom/wrn28.py
Holim0711/holim-lightning
690972c8faa587e7042bc15d4980c363163083e4
[ "MIT" ]
1
2021-03-03T08:53:49.000Z
2021-03-03T08:53:49.000Z
src/weaver/models/custom/wrn28.py
Holim0711/holim-lightning
690972c8faa587e7042bc15d4980c363163083e4
[ "MIT" ]
1
2021-03-19T09:16:05.000Z
2021-03-19T09:35:18.000Z
src/weaver/models/custom/wrn28.py
Holim0711/holim-lightning
690972c8faa587e7042bc15d4980c363163083e4
[ "MIT" ]
null
null
null
import torch.nn as nn class BasicBlock(nn.Module): def __init__(self, cᵢ, cₒ, s=1, dropout=0., activate_before_residual=False): super().__init__() self.activate_before_residual = activate_before_residual # residual path self.conv0 = nn.Conv2d(cᵢ, cₒ, 3, s, 1, bias=False) self.conv1 = nn.Conv2d(cₒ, cₒ, 3, 1, 1, bias=False) self.bn0 = nn.BatchNorm2d(cᵢ) self.bn1 = nn.BatchNorm2d(cₒ) self.relu0 = nn.ReLU() self.relu1 = nn.ReLU() self.drop = nn.Dropout(dropout) # shortcut path if (cᵢ == cₒ) and (s == 1): self.shortcut = nn.Identity() else: self.shortcut = nn.Conv2d(cᵢ, cₒ, 1, s, 0, bias=False) def forward(self, x): z = self.relu0(self.bn0(x)) if self.activate_before_residual: x = z z = self.conv0(z) z = self.relu1(self.bn1(z)) z = self.conv1(self.drop(z)) x = self.shortcut(x) return x + z def _make_layer(n, cᵢ, cₒ, s=1, activate_before_residual=False, **kwargs): layers = [BasicBlock(cᵢ, cₒ, s, activate_before_residual=activate_before_residual, **kwargs)] layers += [BasicBlock(cₒ, cₒ, 1, **kwargs) for _ in range(n - 1)] return nn.Sequential(*layers) class WideResNet(nn.Module): def __init__(self, depth, width, num_classes=10, dropout=0., activate_before_residual=False): super().__init__() assert (depth - 4) % 6 == 0 n = (depth - 4) // 6 c = [16, 16 * width, 32 * width, 64 * width] self.conv = nn.Conv2d(3, c[0], 3, 1, 1, bias=False) self.block1 = _make_layer(n, c[0], c[1], 1, dropout=dropout, activate_before_residual=activate_before_residual) self.block2 = _make_layer(n, c[1], c[2], 2, dropout=dropout) self.block3 = _make_layer(n, c[2], c[3], 2, dropout=dropout) self.bn = nn.BatchNorm2d(c[3]) self.relu = nn.ReLU() self.pool = nn.AdaptiveAvgPool2d((1, 1)) self.flatten = nn.Flatten() self.fc = nn.Linear(c[3], num_classes) # initialize parameters for m in self.modules(): if isinstance(m, nn.Conv2d): nn.init.kaiming_normal_(m.weight) elif isinstance(m, nn.BatchNorm2d): nn.init.constant_(m.weight, 1.0) nn.init.constant_(m.bias, 0.0) elif isinstance(m, nn.Linear): nn.init.kaiming_normal_(m.weight) nn.init.constant_(m.bias, 0.0) def forward(self, x): out = self.conv(x) out = self.block1(out) out = self.block2(out) out = self.block3(out) out = self.relu(self.bn(out)) out = self.pool(out) out = self.flatten(out) return self.fc(out)
35.367089
119
0.57194
2,511
0.887279
0
0
0
0
0
0
53
0.018728
7f8384a311353de10a642c69e9df0c76f447b11c
1,565
py
Python
trisicell/ul/__init__.py
faridrashidi/trisicell
4db89edd44c03ccb6c7d3477beff0079c3ff8035
[ "BSD-3-Clause" ]
2
2021-07-02T13:53:15.000Z
2021-11-16T03:14:36.000Z
trisicell/ul/__init__.py
faridrashidi/trisicell
4db89edd44c03ccb6c7d3477beff0079c3ff8035
[ "BSD-3-Clause" ]
58
2021-06-14T17:14:39.000Z
2022-03-11T19:32:54.000Z
trisicell/ul/__init__.py
faridrashidi/trisicell
4db89edd44c03ccb6c7d3477beff0079c3ff8035
[ "BSD-3-Clause" ]
null
null
null
"""Utils Module.""" from trisicell.ul._hclustering import ( dist_cosine_ignore_na, dist_dendro, dist_l1_ignore_na, hclustering, ) from trisicell.ul._packages import ( import_graph_tool, import_graphviz, import_gurobi, import_mpi4py, import_rpy2, ) from trisicell.ul._trees import ( cells_rooted_at, is_leaf, muts_rooted_at, partition_cells, root_id, to_cfmatrix, to_mtree, to_tree, ) from trisicell.ul._utils import ( calc_score_tree, cleanup, count_flips, dir_base, dirbase, executable, get_file, get_param, infer_rates, is_conflict_free, is_conflict_free_gusfield, log_flip, log_input, log_output, mkdir, remove, split_mut, stat, timeit, tmpdir, tmpdirsys, tmpfile, tqdm_joblib, with_timeout, ) __all__ = ( dist_cosine_ignore_na, dist_dendro, dist_l1_ignore_na, hclustering, import_graph_tool, import_graphviz, import_gurobi, import_mpi4py, import_rpy2, cells_rooted_at, muts_rooted_at, partition_cells, root_id, to_cfmatrix, to_mtree, to_tree, calc_score_tree, cleanup, dir_base, dirbase, get_file, get_param, infer_rates, is_conflict_free, is_conflict_free_gusfield, log_flip, log_input, log_output, mkdir, remove, stat, timeit, tmpdir, tmpdirsys, tmpfile, tqdm_joblib, with_timeout, is_leaf, executable, split_mut, count_flips, )
16.302083
39
0.651118
0
0
0
0
0
0
0
0
19
0.012141
7f83ab03f9f78c70886157722d2f935b1bea1759
2,137
py
Python
utils/pktgen/sender.py
lilyhuegerich/No-hop
2e82af6c8036312c35b3f2338c776863416ea043
[ "MIT" ]
null
null
null
utils/pktgen/sender.py
lilyhuegerich/No-hop
2e82af6c8036312c35b3f2338c776863416ea043
[ "MIT" ]
1
2021-02-15T17:29:03.000Z
2021-02-15T17:29:03.000Z
utils/utils-backup/pktgen/sender.py
guiladkatz/NetAction
436c5ac9dcf0e2064bcc9a2facca556828de6703
[ "Apache-2.0" ]
1
2021-04-18T18:24:59.000Z
2021-04-18T18:24:59.000Z
#!/usr/bin/env python import argparse, sys, socket, random, struct, time from scapy.all import sendp, send, get_if_list, get_if_list, get_if_hwaddr, hexdump from scapy.all import Packet from scapy.all import Ether, IP, IPv6, UDP, TCP sip_port=5060 def get_if(): iface=None for i in get_if_list(): # find hx-eth0 if "eth0" in i: iface=i; break; if not iface: print "Cannot find eth0 interface" exit(1) return iface def main(): parser = argparse.ArgumentParser() parser.add_argument('-v', type=str, help="Specify using (4)IPv4/(6)IPv6.") parser.add_argument('--ip', type=str, help="The destination IP address.") parser.add_argument('--loop', type=int, help="Number of loop.", default=0) parser.add_argument('--msg', type=str, help="The message which will send to dst.",default="Hello World") parser.add_argument('--dport', type=int, help="TCP/UDP source port.", default=1234) parser.add_argument('--sport', type=int, help="TCP/UDP destination port.", default=random.randint(49152,65535)) args = parser.parse_args() addr = socket.gethostbyname(args.ip) iface = get_if() # start to pack if args.v is "4": print "sending on interface {} to IP addr {}".format(iface, str(addr)) for x in range(0, args.loop): pkt = Ether(src=get_if_hwaddr(iface), dst='ff:ff:ff:ff:ff:ff') pkt = pkt / IP(dst=addr) / TCP(dport=args.dport, sport=args.sport) / args.msg # show pkt.show2() # send sendp(pkt, iface=iface, verbose=False) # sleep time.sleep(1) elif args.v is "6": print "sending on interface {} to IPv6 addr {}".format(iface, str(addr)) for x in range(0, args.loop): pkt = Ether(src=get_if_hwaddr(iface), dst='ff:ff:ff:ff:ff:ff') pkt = pkt / IPv6(dst=addr) / TCP(dport=args.dport, sport=args.sport) / args.msg # show pkt.show2() # send sendp(pkt, iface=iface, verbose=False) if __name__ == '__main__': main()
35.032787
115
0.602714
0
0
0
0
0
0
0
0
472
0.22087
7f83ea7d1cc3220adf9ebca24b106652d1d5a82a
2,898
py
Python
lib/coloraide/spaces/hsl/__init__.py
EatBreatheCode/sublime_color_helper
701d05807e51ce49088b1f0a8f55c4bf3845fa91
[ "MIT" ]
null
null
null
lib/coloraide/spaces/hsl/__init__.py
EatBreatheCode/sublime_color_helper
701d05807e51ce49088b1f0a8f55c4bf3845fa91
[ "MIT" ]
null
null
null
lib/coloraide/spaces/hsl/__init__.py
EatBreatheCode/sublime_color_helper
701d05807e51ce49088b1f0a8f55c4bf3845fa91
[ "MIT" ]
null
null
null
"""HSL class.""" from ...spaces import Space, Cylindrical from ...cat import WHITES from ...gamut.bounds import GamutBound, FLG_ANGLE, FLG_PERCENT from ... import util from ... import algebra as alg from ...types import Vector from typing import Tuple def srgb_to_hsl(rgb: Vector) -> Vector: """SRGB to HSL.""" r, g, b = rgb mx = max(rgb) mn = min(rgb) h = alg.NaN s = 0.0 l = (mn + mx) / 2 c = mx - mn if c != 0.0: if mx == r: h = (g - b) / c elif mx == g: h = (b - r) / c + 2.0 else: h = (r - g) / c + 4.0 s = 0 if l == 0 or l == 1 else (mx - l) / min(l, 1 - l) h *= 60.0 if s == 0: h = alg.NaN return [util.constrain_hue(h), s, l] def hsl_to_srgb(hsl: Vector) -> Vector: """ HSL to RGB. https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB_alternative """ h, s, l = hsl h = h % 360 def f(n: int) -> float: """Calculate the channels.""" k = (n + h / 30) % 12 a = s * min(l, 1 - l) return l - a * max(-1, min(k - 3, 9 - k, 1)) return [f(0), f(8), f(4)] class HSL(Cylindrical, Space): """HSL class.""" BASE = "srgb" NAME = "hsl" SERIALIZE = ("--hsl",) CHANNEL_NAMES = ("h", "s", "l") CHANNEL_ALIASES = { "hue": "h", "saturation": "s", "lightness": "l" } WHITE = WHITES['2deg']['D65'] GAMUT_CHECK = "srgb" BOUNDS = ( GamutBound(0.0, 360.0, FLG_ANGLE), GamutBound(0.0, 1.0, FLG_PERCENT), GamutBound(0.0, 1.0, FLG_PERCENT) ) @property def h(self) -> float: """Hue channel.""" return self._coords[0] @h.setter def h(self, value: float) -> None: """Shift the hue.""" self._coords[0] = value @property def s(self) -> float: """Saturation channel.""" return self._coords[1] @s.setter def s(self, value: float) -> None: """Saturate or unsaturate the color by the given factor.""" self._coords[1] = value @property def l(self) -> float: """Lightness channel.""" return self._coords[2] @l.setter def l(self, value: float) -> None: """Set lightness channel.""" self._coords[2] = value @classmethod def null_adjust(cls, coords: Vector, alpha: float) -> Tuple[Vector, float]: """On color update.""" coords = alg.no_nans(coords) if coords[1] == 0 or coords[2] in (0, 1): coords[0] = alg.NaN return coords, alg.no_nan(alpha) @classmethod def to_base(cls, coords: Vector) -> Vector: """To sRGB from HSL.""" return hsl_to_srgb(coords) @classmethod def from_base(cls, coords: Vector) -> Vector: """From sRGB to HSL.""" return srgb_to_hsl(coords)
21.626866
79
0.509317
1,730
0.596963
0
0
1,215
0.419255
0
0
499
0.172188
7f83fb54d3d89551adb5762f761b61b33bff3c08
950
py
Python
maze/models.py
TerryHowe/pymaze
139f15fb8e932c1cf1e63f5c5aee7895691e993f
[ "MIT" ]
1
2020-12-14T04:01:08.000Z
2020-12-14T04:01:08.000Z
maze/models.py
TerryHowe/pymaze
139f15fb8e932c1cf1e63f5c5aee7895691e993f
[ "MIT" ]
null
null
null
maze/models.py
TerryHowe/pymaze
139f15fb8e932c1cf1e63f5c5aee7895691e993f
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models # Create your models here. class Passage(models.Model): DIRECTIONS = ( ('N', 'North'), ('E', 'East'), ('S', 'South'), ('W', 'West'), ('U', 'Up'), ('D', 'Down'), ) room_x = models.IntegerField() room_y = models.IntegerField() direction = models.CharField(max_length=1, choices=DIRECTIONS) destination = models.OneToOneField('self', null=True, blank=True, on_delete=models.CASCADE) @classmethod def get_direction(cls, direction): return dict(cls.DIRECTIONS).get(direction, 'Nowhere') def __str__(self): return(self.__repr__()) def __repr__(self): dest = str(self.destination.id) if self.destination else 'None' return('Passage(id=%d, room_x=%d, room_y=%d, direction=%s, destination=%s)' % (self.id, self.room_x, self.room_y, self.direction, dest)) class Meta: unique_together = (('room_x', 'room_y', 'direction'),)
25.675676
138
0.676842
826
0.869474
0
0
104
0.109474
0
0
219
0.230526
7f85d28e2b17919468a9ea177eccdd701d33e549
3,181
py
Python
tests/varints_test.py
dargueta/binobj
00d91856678d7ecf17647a9b5cbff1810a39f275
[ "BSD-3-Clause" ]
2
2018-08-05T13:57:43.000Z
2021-06-25T15:20:16.000Z
tests/varints_test.py
dargueta/binobj
00d91856678d7ecf17647a9b5cbff1810a39f275
[ "BSD-3-Clause" ]
2
2020-10-26T11:11:17.000Z
2021-02-24T20:08:10.000Z
tests/varints_test.py
dargueta/binobj
00d91856678d7ecf17647a9b5cbff1810a39f275
[ "BSD-3-Clause" ]
1
2021-02-27T17:29:22.000Z
2021-02-27T17:29:22.000Z
"""Tests for the variable-length integers.""" import io import pytest from binobj import varints @pytest.mark.parametrize( "value,expected", ((0, b"\0"), (127, b"\x7f"), (128, b"\x81\x00"), (65535, b"\x83\xff\x7f")), ) def test_encode_vlq_basic(value, expected): assert varints.encode_integer_vlq(value) == expected def test_encode_vlq_negative_crashes(): """Passing a negative value to the VLQ encoder must always fail.""" with pytest.raises(ValueError): varints.encode_integer_vlq(-1) @pytest.mark.parametrize( "serialized,expected", ((b"\0", 0), (b"\x7f", 127), (b"\x81\x00", 128), (b"\x83\xff\x7f", 65535)), ) def test_decode_vlq_basic(serialized, expected): buf = io.BytesIO(serialized) assert varints.decode_integer_vlq(buf) == expected assert buf.read() == b"", "Buffer wasn't emptied." @pytest.mark.parametrize( "value,expected", ((0, b"\0"), (1, b"\x01"), (-32767, b"\xc1\xff\x7f"), (895484, b"\xb6\xd3\x7c")), ) def test_encode_compact(value, expected): assert varints.encode_integer_compact(value) == expected @pytest.mark.parametrize( "serialized,expected", ( (b"\0", 0), (b"\x01", 1), (b"\x41", -1), (b"\xc1\xff\x7f", -32767), (b"\xb6\xd3\x7c", 895484), ), ) def test_decode_compact(serialized, expected): buf = io.BytesIO(serialized) assert varints.decode_integer_compact(buf) == expected assert buf.read() == b"", "Buffer wasn't emptied." @pytest.mark.parametrize( "value,expected", ( (0, b"\0"), (127, b"\x7f"), (128, b"\x80\x01"), (7345004, b"\xec\xa6\xc0\x03"), (0xB1ACC0FFEE2BAD, b"\xad\xd7\xb8\xff\x8f\x98\xeb\x58"), ), ) def test_encode_uleb128(value, expected): assert varints.encode_integer_uleb128(value) == expected def test_encode_uleb128__negative_crashes(): with pytest.raises(ValueError): assert varints.encode_integer_uleb128(-1) @pytest.mark.parametrize( "serialized, expected", ( (b"\0", 0), (b"\x7f", 127), (b"\xd2\x85\xd8\xcc\x04", 1234567890), (b"\xad\xd7\xb8\xff\x8f\x98\xeb\x58", 0xB1ACC0FFEE2BAD), ), ) def test_decode_uleb128(serialized, expected): buf = io.BytesIO(serialized) assert varints.decode_integer_uleb128(buf) == expected assert buf.read() == b"", "Buffer wasn't emptied" SIGNED_LEB_VALUES = [ (0, b"\0"), (63, b"\x3f"), (64, b"\xc0\x00"), (126, b"\xfe\x00"), (127, b"\xff\x00"), (128, b"\x80\x01"), (-126, b"\x82\x7f"), (-127, b"\x81\x7f"), (-128, b"\x80\x7f"), (0xB1ACC0FFEE2BAD, b"\xad\xd7\xb8\xff\x8f\x98\xeb\xd8\x00"), (-0xB1ACC0FFEE2BAD, b"\xd3\xa8\xc7\x80\xf0\xe7\x94\xa7\x7f"), ] @pytest.mark.parametrize("value,expected", SIGNED_LEB_VALUES) def test_encode_signed_leb128(value, expected): assert varints.encode_integer_leb128(value) == expected @pytest.mark.parametrize("value,serialized", SIGNED_LEB_VALUES) def test_decode_signed_leb128(value, serialized): buf = io.BytesIO(serialized) assert varints.decode_integer_leb128(buf) == value assert buf.read() == b"", "Buffer wasn't emptied"
27.188034
85
0.636278
0
0
0
0
2,373
0.745992
0
0
845
0.26564
7f861eb33a0b220e3a89491dc68d3e6bfdddea0a
725
py
Python
src/settings/models.py
TolgaKara/prodai
a858d39226a072a2a52513d942dd046bb3787da8
[ "Apache-2.0" ]
null
null
null
src/settings/models.py
TolgaKara/prodai
a858d39226a072a2a52513d942dd046bb3787da8
[ "Apache-2.0" ]
7
2020-10-09T09:24:28.000Z
2022-03-12T00:14:07.000Z
src/settings/models.py
TolgaKara/prodai
a858d39226a072a2a52513d942dd046bb3787da8
[ "Apache-2.0" ]
null
null
null
from django.db import models from django.contrib.auth.models import User # Create your models here. class Setting(models.Model): user_id = models.ForeignKey(User, on_delete=models.CASCADE) class TimeTrackingSetting(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE) max_daily_work_time = models.TextField(max_length=50) timetracking_name = models.CharField(max_length=100) workingtime = models.IntegerField() short_break = models.IntegerField() long_break = models.IntegerField() cycle = models.IntegerField() class ActivitiesSetting(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE) block_activities = models.TextField(max_length=400)
31.521739
63
0.768276
616
0.849655
0
0
0
0
0
0
26
0.035862
7f873662ce9f9eb5dfd23f13cad81a3fb8b855d3
2,646
py
Python
python/place_molex_conn.py
willdickson/roman_led_frame
4cf54aa5ea15d9fa39ddaa1a27a83425fc449f36
[ "CC-BY-4.0" ]
null
null
null
python/place_molex_conn.py
willdickson/roman_led_frame
4cf54aa5ea15d9fa39ddaa1a27a83425fc449f36
[ "CC-BY-4.0" ]
null
null
null
python/place_molex_conn.py
willdickson/roman_led_frame
4cf54aa5ea15d9fa39ddaa1a27a83425fc449f36
[ "CC-BY-4.0" ]
null
null
null
from __future__ import print_function import os import sys import pcbnew import numpy as np import pprint def inch_to_nanometer(value): return (value*25.4)*1e6 def nanometer_to_inch(value): return value/(25.4*1.e6) def nm_to_mm(value): return value*1.e-6 def mm_to_nm(value): return value*1.e6 def print_module_info(module): ref = module.GetReference() pos = module.GetPosition() x = nanometer_to_inch(pos.x) y = nanometer_to_inch(pos.y) angle = 0.1*module.GetOrientation() print(' R: {}'.format(ref)) print(' X: {}'.format(x)) print(' Y: {}'.format(y)) print(' A: {}'.format(angle)) print() def get_placement_data(param): placement_data = {} for i, ref in enumerate(param['ref_list']): x = param['x_start'] + i*param['x_step'] y = param['y_value'] angle = param['angle'] placement_data[ref] = {'angle': angle, 'x': x, 'y': y} return placement_data def place_pcb_modules(filename, placement_data): print() print('loading pcb: {}'.format(filename)) print() pcb = pcbnew.LoadBoard(filename) print() print('done') print() for module in pcb.GetModules(): ref_str = str(module.GetReference()) try: data = placement_data[ref_str] except KeyError: continue print_module_info(module) # Move to new position pos = module.GetPosition() angle = 0.1*module.GetOrientation() x_new = data['x'] y_new = data['y'] angle_new = data['angle'] pos.x = int(mm_to_nm(x_new)) pos.y = int(mm_to_nm(y_new)) module.SetPosition(pos) module.SetOrientation(10.0*angle_new) print_module_info(module) pathname, basename = os.path.split(filename) new_basename = 'mod_{}'.format(basename) new_filename = os.path.join(pathname,new_basename) pcb.Save(new_filename) # --------------------------------------------------------------------------------------- if __name__ == '__main__': param = { 'ref_list': ['J{}'.format(i) for i in range(1,19)], 'y_value' : 56.0, 'x_start' : 50.0+39.5, 'x_step' : 13.0, 'angle' : 180.0, } placement_data = get_placement_data(param) if 0: print('led_data') print() pp = pprint.PrettyPrinter(indent=2) pp.pprint(placement_data) print() print('modules') print() filename = sys.argv[1] place_pcb_modules(filename, placement_data)
24.275229
89
0.560469
0
0
0
0
0
0
0
0
324
0.122449
7f879d970a7233907064466650bfa626b47f7750
2,199
py
Python
RaspberryPi/appMasterKey.py
colindembovsky/iot-central-firmware
29493b18b2d37090c5a071669370d4a907eb3f51
[ "MIT" ]
136
2018-05-08T08:54:22.000Z
2022-02-17T21:39:41.000Z
RaspberryPi/appMasterKey.py
colindembovsky/iot-central-firmware
29493b18b2d37090c5a071669370d4a907eb3f51
[ "MIT" ]
90
2018-05-08T22:50:26.000Z
2020-11-04T16:11:44.000Z
RaspberryPi/appMasterKey.py
colindembovsky/iot-central-firmware
29493b18b2d37090c5a071669370d4a907eb3f51
[ "MIT" ]
97
2018-05-07T20:55:28.000Z
2022-02-17T21:39:43.000Z
# Copyright (c) Microsoft. All rights reserved. # Licensed under the MIT license. import sys import iotc from iotc import IOTConnectType, IOTLogLevel from random import randint import base64 import hmac import hashlib gIsMicroPython = ('implementation' in dir(sys)) and ('name' in dir(sys.implementation)) and (sys.implementation.name == 'micropython') def computeKey(secret, regId): global gIsMicroPython try: secret = base64.b64decode(secret) except: print("ERROR: broken base64 secret => `" + secret + "`") sys.exit() if gIsMicroPython == False: return base64.b64encode(hmac.new(secret, msg=regId.encode('utf8'), digestmod=hashlib.sha256).digest()) else: return base64.b64encode(hmac.new(secret, msg=regId.encode('utf8'), digestmod=hashlib._sha256.sha256).digest()) deviceId = "DEVICE_ID" scopeId = "SCOPE_ID" masterKey = "PRIMARY/SECONDARY master Key" deviceKey = computeKey(masterKey, deviceId) iotc = iotc.Device(scopeId, deviceKey, deviceId, IOTConnectType.IOTC_CONNECT_SYMM_KEY) iotc.setLogLevel(IOTLogLevel.IOTC_LOGGING_API_ONLY) gCanSend = False gCounter = 0 def onconnect(info): global gCanSend print("- [onconnect] => status:" + str(info.getStatusCode())) if info.getStatusCode() == 0: if iotc.isConnected(): gCanSend = True def onmessagesent(info): print("\t- [onmessagesent] => " + str(info.getPayload())) def oncommand(info): print("- [oncommand] => " + info.getTag() + " => " + str(info.getPayload())) def onsettingsupdated(info): print("- [onsettingsupdated] => " + info.getTag() + " => " + info.getPayload()) iotc.on("ConnectionStatus", onconnect) iotc.on("MessageSent", onmessagesent) iotc.on("Command", oncommand) iotc.on("SettingsUpdated", onsettingsupdated) iotc.connect() while iotc.isConnected(): iotc.doNext() # do the async work needed to be done for MQTT if gCanSend == True: if gCounter % 20 == 0: gCounter = 0 print("Sending telemetry..") iotc.sendTelemetry("{ \ \"temp\": " + str(randint(20, 45)) + ", \ \"accelerometerX\": " + str(randint(2, 15)) + ", \ \"accelerometerY\": " + str(randint(3, 9)) + ", \ \"accelerometerZ\": " + str(randint(1, 4)) + "}") gCounter += 1
29.32
134
0.688495
0
0
0
0
0
0
0
0
545
0.24784
7f882238f2ac3dcd924d47d279ab3daa62b6851d
5,842
py
Python
genmod/annotate_models/variant_annotator.py
Varstation/genmod
991a0fca36936b5dde49a95e8ea1d4336288c7c0
[ "MIT" ]
null
null
null
genmod/annotate_models/variant_annotator.py
Varstation/genmod
991a0fca36936b5dde49a95e8ea1d4336288c7c0
[ "MIT" ]
null
null
null
genmod/annotate_models/variant_annotator.py
Varstation/genmod
991a0fca36936b5dde49a95e8ea1d4336288c7c0
[ "MIT" ]
1
2020-07-05T19:06:32.000Z
2020-07-05T19:06:32.000Z
#!/usr/bin/env python # encoding: utf-8 """ variant_consumer.py Consumes batches of variants and annotates them. Each batch is a dictionary with variant_id:s as keys and dictionaries with variant information. The variants will get different annotations depending on input Created by Måns Magnusson on 2013-03-01. Copyright (c) 2013 __MyCompanyName__. All rights reserved. """ from __future__ import (division, print_function, absolute_import) import logging from multiprocessing import Process from genmod.vcf_tools import get_genotypes from . import (get_haploblocks, check_genetic_models, get_model_score, make_print_version) class VariantAnnotator(Process): """ Annotates variant in batches from the task queue and puts the result in the results queue. """ def __init__(self, task_queue, results_queue, families, individuals, phased=False, strict=False, vep=False, reduced_penetrance_genes = set()): """ Initialize the VariantAnnotator Consume variant batches from the task queue, annotate them with the genetic inheritance patterns that they follow and put them in the results queue. Arguments: task_queue (Queue) results_queue (Queue) families (dict) individuals (list) phased (bool) strict (bool) vep (bool) reduced_penetrance_genes (set): Set of reduced penetrance genes """ Process.__init__(self) self.logger = logging.getLogger(__name__) self.proc_name = self.name self.logger.info("Setting up variant_annotator: {0}".format( self.proc_name)) self.logger.debug("Setting up task queue") self.task_queue = task_queue self.logger.debug("Setting up results queue") self.results_queue = results_queue # The families that should be annotated self.families = families self.logger.debug("Families found: {0}".format(self.families)) self.individuals = individuals self.logger.debug("Individuals found: {0}".format(self.individuals)) # Settings for the annotation self.phased = phased self.logger.debug("Setting phased to {0}".format(self.phased)) self.strict = strict self.logger.debug("Setting strict to {0}".format(self.strict)) self.vep = vep self.logger.debug("Setting vep to {0}".format(self.vep)) self.reduced_penetrance = reduced_penetrance_genes def run(self): """Run the consuming""" self.logger.info('%s: Starting!' % self.proc_name) # Check if there are any batches in the queue while True: # A batch is a dictionary with varints on the form {variant_id:variant_dict} self.logger.debug("Getting task from task_queue") variant_batch = self.task_queue.get() if variant_batch is None: self.logger.info('No more batches') self.task_queue.task_done() self.logger.info('{0}: Exiting'.format(self.proc_name)) break # We are now going to check the genetic models for the variants in # the batch for variant_id in variant_batch: variant = variant_batch[variant_id] variant['genotypes'] = get_genotypes(variant, self.individuals) # Check if the variant is in a gene with reduced penetrance if variant.get('annotation', set()).intersection(self.reduced_penetrance): self.logger.debug("Setting reduced_penetrance to True for"\ " variant: {0}".format(variant_id)) variant['reduced_penetrance'] = True if len(variant_batch) > 1: #If the variant are phased we want to find out which #haploblocks they belong to for compounds if self.phased: self.logger.debug("Get haploblocks for variant batch") variant_batch['haploblocks'] = get_haploblocks( variant_batch, self.individuals ) # We only need to check compound candidates if there is # more than one variant in the batch for variant_id in variant_batch: self.logger.debug("Check compound candidates") variant = variant_batch[variant_id] variant['compound_candidate'] = False if variant['annotation']: variant['compound_candidate'] = True self.logger.debug("Set compound_candidate to True") # Check the genetic models for all variants in the batch check_genetic_models( variant_batch = variant_batch, families = self.families, phased = self.phased, strict = self.strict, ) # # Now we want to make versions of the variants that are ready for printing. for variant_id in variant_batch: variant = make_print_version( variant=variant_batch[variant_id], families=self.families ) self.logger.debug("Putting variant in results_queue") self.results_queue.put(variant) self.task_queue.task_done() return
38.183007
90
0.574974
5,171
0.884991
0
0
0
0
0
0
2,260
0.386788
7f883457983496df8e066229a171bec7587a4bd5
343
py
Python
tests/context.py
SchluppiBobbz/DartsApp
3538b90db30b4c59a03d49867df58b62d2e0a84a
[ "MIT" ]
null
null
null
tests/context.py
SchluppiBobbz/DartsApp
3538b90db30b4c59a03d49867df58b62d2e0a84a
[ "MIT" ]
null
null
null
tests/context.py
SchluppiBobbz/DartsApp
3538b90db30b4c59a03d49867df58b62d2e0a84a
[ "MIT" ]
null
null
null
import os import sys sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) from dartsapp import game, player, darts_helper from dartsapp.exceptions import BullseyeHasNoTriple, FieldDoesNotExist,\ NoPlayerRegistered, OptionsNotSet,\ ValueDoesNotExist
42.875
82
0.661808
0
0
0
0
0
0
0
0
4
0.011662
7f886aba201c2234da3db891c1dca0d083b400bb
80,150
py
Python
WebApps/OrgChartPortal/tests.py
yizongk/DOTAnalysis_Django
688b59e668c6390b902d61a4aef546bd869d55ad
[ "Apache-2.0" ]
null
null
null
WebApps/OrgChartPortal/tests.py
yizongk/DOTAnalysis_Django
688b59e668c6390b902d61a4aef546bd869d55ad
[ "Apache-2.0" ]
1
2022-03-04T20:37:32.000Z
2022-03-04T20:37:32.000Z
WebApps/OrgChartPortal/tests.py
yizongk/DOTAnalysis_Django
688b59e668c6390b902d61a4aef546bd869d55ad
[ "Apache-2.0" ]
1
2022-01-06T18:20:40.000Z
2022-01-06T18:20:40.000Z
from .models import * from datetime import datetime from django.core.exceptions import ObjectDoesNotExist import json from WebAppsMain.settings import TEST_WINDOWS_USERNAME, TEST_PMS, TEST_SUPERVISOR_PMS, TEST_COMMISSIONER_PMS from WebAppsMain.testing_utils import HttpPostTestCase, HttpGetTestCase from django.db.models import Max, Q import copy ### DO NOT RUN THIS IN PROD ENVIRONMENT DEFAULT_WORK_UNIT = '1600' def get_or_create_user(windows_username=TEST_WINDOWS_USERNAME): """create or get an user and return the user object. Defaults to TEST_WINDOWS_USERNAME as the user""" try: wu = TblWorkUnits.objects.using('OrgChartWrite').get( wu__exact=DEFAULT_WORK_UNIT ) pms = TblEmployees.objects.using('OrgChartWrite').get_or_create( pms=TEST_PMS )[0] pms.lv='B' pms.wu=wu pms.save(using='OrgChartWrite') user = TblUsers.objects.using('OrgChartWrite').get_or_create( windows_username=windows_username ,pms=pms )[0] user.active = True user.save(using='OrgChartWrite') return user except Exception as e: raise ValueError(f"get_or_create_user(): {e}") def grant_admin_status(windows_username=TEST_WINDOWS_USERNAME): """create or get an user and set it up with admin status and return the user object. Defaults to TEST_WINDOWS_USERNAME as the user""" try: user = get_or_create_user(windows_username=windows_username) user.is_admin=True user.active=True user.save(using='OrgChartWrite') return user except Exception as e: raise ValueError(f"grant_admin_status(): {e}") def remove_admin_status(windows_username=TEST_WINDOWS_USERNAME): """removes the admin status of an user""" try: user = get_or_create_user(windows_username=windows_username) user.is_admin=False user.save(using='OrgChartWrite') return user except Exception as e: raise ValueError(f"remove_admin_status(): {e}") def grant_active_user_status(windows_username=TEST_WINDOWS_USERNAME): """Set user as active""" try: #TODO IMPLEMENT THIS WHEN NEW USER AND APP PERMISSION MANAGEMENT IS IN PLACE ...#TODO except Exception as e: raise ValueError(f"grant_active_user_status(): {e}") def remove_active_user_status(windows_username=TEST_WINDOWS_USERNAME): """Set user as inactive""" try: #TODO IMPLEMENT THIS WHEN NEW USER AND APP PERMISSION MANAGEMENT IS IN PLACE ...#TODO except Exception as e: raise ValueError(f"remove_active_user_status(): {e}") def set_up_permissions(windows_username=TEST_WINDOWS_USERNAME, work_units=[DEFAULT_WORK_UNIT]): """ set up permissions for a user. If user is admin, the permissions added will probably mean nothing. @windows_username is self explanatory, just one name @work_units should be a list of work units """ try: for work_unit in work_units: work_unit_obj = TblWorkUnits.objects.using('OrgChartWrite').get( wu__exact=work_unit ,active=True ) user_obj = get_or_create_user(windows_username=windows_username) permission = TblPermissionsWorkUnit.objects.using('OrgChartWrite').get_or_create( user_id=user_obj ,wu=work_unit_obj )[0] permission.save(using="OrgChartWrite") except Exception as e: raise ValueError(f"set_up_permissions(): {e}") def tear_down_permissions(windows_username=TEST_WINDOWS_USERNAME): """remove all permissions for an user. If user is admin, the permissions removed will probably mean nothing.""" try: permissions = TblPermissionsWorkUnit.objects.using('OrgChartWrite').filter( user_id__windows_username__exact=windows_username ) for each in permissions: each.delete(using='OrgChartWrite') except Exception as e: raise ValueError(f"tear_down_permissions_for_user(): {e}") def tear_down(windows_username=TEST_WINDOWS_USERNAME): """Removes admin status of @windows_username, and set all its permissions to inactive. Defaults to TEST_WINDOWS_USERNAME""" try: remove_admin_status(windows_username=windows_username) tear_down_permissions(windows_username=windows_username) except Exception as e: raise ValueError(f"tear_down(): {e}") def get_active_lv_list(): return ['B', 'C', 'K', 'M', 'N', 'Q', 'R', 'S'] def get_active_tblemployee_qryset(): """ Return a queryset filtered to contain only records with active lv status plus a subset of 'L' leave status Lv status 'L' is usually Inactive, but when it is due to 'B10' Leave Status Reason (Look up from payroll history), that employee is actually Active """ try: latest_pay_date = TblPayrollHistory.objects.using('HRReportingRead').aggregate(Max('paydate'))['paydate__max'] active_L_pms_qryset = TblPayrollHistory.objects.using('HRReportingRead').filter( lv__exact='L' ,lv_reason_code__exact='B10' ,paydate__exact=latest_pay_date ) active_L_pms_list = [each['pms'] for each in list(active_L_pms_qryset.values('pms', 'lname', 'fname'))] return TblEmployees.objects.using('OrgChartRead').filter( Q( lv__in=get_active_lv_list() ) | Q( pms__in=active_L_pms_list ) ) except Exception as e: raise ValueError(f"get_active_tblemployee_qryset(): {e}") class TestViewPagesResponse(HttpGetTestCase): @classmethod def setUpClass(self): tear_down() set_up_permissions() self.regular_views = [ 'orgchartportal_home_view', 'orgchartportal_about_view', 'orgchartportal_contact_view', 'orgchartportal_empgrid_view', 'orgchartportal_orgchart_view', 'orgchartportal_how_to_use_view', ] self.admin_views = [ 'orgchartportal_admin_panel_view', 'orgchartportal_manage_users_view', 'orgchartportal_manage_permissions_view', ] self.additional_context_requirements = [ { 'view' : 'orgchartportal_empgrid_view' ,'additional_context_keys' : [ 'emp_entry_columns_json' ,'emp_entries_json' ,'supervisor_dropdown_list_json' ,'site_dropdown_list_json' ,'site_floor_dropdown_list_json' ,'site_type_dropdown_list_json' ] ,'qa_fct' : self.__assert_additional_context_qa_empgrid } ## The below are admin views ,{ 'view' : 'orgchartportal_manage_users_view' ,'additional_context_keys' : [ 'ag_grid_col_def_json' ,'users_data_json' ] ,'qa_fct' : self.__assert_additional_context_qa_manage_users } ,{ 'view' : 'orgchartportal_manage_permissions_view' ,'additional_context_keys' : [ 'ag_grid_col_def_json' ,'permissions_json' ,'user_list' ,'division_list' ,'wu_desc_list' ] ,'qa_fct' : self.__assert_additional_context_qa_manage_permissions } ] @classmethod def tearDownClass(self): tear_down() def __assert_additional_context_qa_empgrid(self, response): ## Make sure the emp_entry_columns_json got all the required fields emp_entry_columns_dict = json.loads(response.context_data['emp_entry_columns_json']) from_api_fields = set(each['field'] for each in emp_entry_columns_dict) required_fields = set([ 'pms' ,'last_name' ,'first_name' ,'lv' ,'wu__wu' ,'civil_title' ,'office_title' ,'supervisor_pms__pms' ,'actual_site_id__site_id' ,'actual_floor_id__floor_id' ,'actual_site_type_id__site_type_id']) if len(from_api_fields) > len(required_fields): raise ValueError(f"orgchartportal_empgrid_view: context variable emp_entry_columns_json got back more fields than expected. These are the unexpected fields: {from_api_fields - required_fields}") self.assertTrue(from_api_fields == required_fields ,f'orgchartportal_empgrid_view: context variable emp_entry_columns_json is missing some fields: {required_fields - from_api_fields}') ## Make sure emp_entries_json has only WUs that client has permission to emp_entries_dict = json.loads(response.context_data['emp_entries_json']) distinct_wu = set(each['wu__wu'] for each in emp_entries_dict) user = get_or_create_user(windows_username=TEST_WINDOWS_USERNAME) if user.is_admin: permissions_wu = set(each.wu for each in TblWorkUnits.objects.using('OrgChartRead').all()) else: permissions_wu = set(each.wu.wu for each in TblPermissionsWorkUnit.objects.using('OrgChartRead').filter(user_id__windows_username__exact=TEST_WINDOWS_USERNAME, is_active=True)) if len(permissions_wu) > len(distinct_wu): missing_wus = permissions_wu - distinct_wu if get_active_tblemployee_qryset().filter(wu__wu__in=missing_wus).count() == 0: ## the missing_wus actually doesn't exists in the active list of employees, no error here, remove it from list and moving on. permissions_wu = permissions_wu - missing_wus else: raise ValueError(f"orgchartportal_empgrid_view: Did not get back any emp with these Work Units even though permission allows it: {missing_wus}") self.assertTrue(distinct_wu == permissions_wu ,f'orgchartportal_empgrid_view: Got back an entry with work unit that "{TEST_WINDOWS_USERNAME}" does not have permission to. Here are the Work Units that it got, but should not have {distinct_wu - permissions_wu}"') ## Make sure a list of all active employees is returned in supervisor dropdown supervisor_dropdown_dict = json.loads(response.context_data['supervisor_dropdown_list_json']) count_of_all_api = len([each for each in supervisor_dropdown_dict]) count_of_all_base = len([each for each in get_active_tblemployee_qryset()]) self.assertTrue(count_of_all_base == count_of_all_api ,f'orgchartportal_empgrid_view: Did not get back a list of ALL active employees in the supervisor_dropdown_list_json context variable. base {count_of_all_base} vs api {count_of_all_api}') ## Make sure a list of all sites is returned in site dropdown site_dropdown_dict = json.loads(response.context_data['site_dropdown_list_json']) count_of_all_api = len([each for each in site_dropdown_dict]) count_of_all_base = len([each for each in TblDOTSites.objects.using('OrgChartRead').all()]) self.assertTrue(count_of_all_base == count_of_all_api ,f'orgchartportal_empgrid_view: Did not get back a list of ALL sites in the site_dropdown_list_json context variable. base {count_of_all_base} vs api {count_of_all_api}') ## Make sure a list of all site floors is returned in site floor dropdown site_floor_dropdown_dict = json.loads(response.context_data['site_floor_dropdown_list_json']) count_of_all_api = len([each for each in site_floor_dropdown_dict]) count_of_all_base = len([each for each in TblDOTSiteFloors.objects.using('OrgChartRead').all()]) self.assertTrue(count_of_all_base == count_of_all_api ,f'orgchartportal_empgrid_view: Did not get back a list of ALL site floors in the site_floor_dropdown_list_json context variable. base {count_of_all_base} vs api {count_of_all_api}') ## Make sure a list of all site type site floors is returned in site type dropdown site_type_dropdown_dict = json.loads(response.context_data['site_type_dropdown_list_json']) count_of_all_api = len([each for each in site_type_dropdown_dict]) count_of_all_base = len([each for each in TblDOTSiteFloorSiteTypes.objects.using('OrgChartRead').values( 'site_type_id__site_type_id' ,'site_type_id__site_type' ,'floor_id__floor_id' ,'floor_id__site_id' ).all()]) self.assertTrue(count_of_all_base == count_of_all_api ,f'orgchartportal_empgrid_view: Did not get back a list of ALL site floor + site types in the site_type_dropdown_list_json context variable. base {count_of_all_base} vs api {count_of_all_api}') def __assert_additional_context_qa_manage_users(self, response): ## Make sure the ag_grid_col_def_json got all the required fields ag_grid_col_def_dict = json.loads(response.context_data['ag_grid_col_def_json']) from_api_fields = set(each['field'] for each in ag_grid_col_def_dict) required_fields = set([ 'pms' ,'windows_username' ,'is_admin' ,'active' ,None ]) if len(from_api_fields) > len(required_fields): raise ValueError(f"orgchartportal_manage_users_view: context variable ag_grid_col_def_json got back more fields than expected. These are the unexpected fields: {from_api_fields - required_fields}") self.assertTrue(from_api_fields == required_fields ,f'orgchartportal_manage_users_view: context variable ag_grid_col_def_json is missing some fields: {required_fields - from_api_fields}') ## Make sure users_data_json has ALL the user records, since this api is an admin api users_data_json = json.loads(response.context_data['users_data_json']) from_api_users_data = set(each['windows_username'] for each in users_data_json) required_users_data = set(each.windows_username for each in TblUsers.objects.using('OrgChartRead').all()) self.assertEqual(from_api_users_data, required_users_data ,f"orgchartportal_manage_users_view: context variable users_data_json either has more data than allowed ({from_api_users_data - required_users_data}) or has less data than allowed ({required_users_data - from_api_users_data})") def __assert_additional_context_qa_manage_permissions(self, response): ## Make sure the ag_grid_col_def_json got all the required fields ag_grid_col_def_dict = json.loads(response.context_data['ag_grid_col_def_json']) from_api_fields = set(each['field'] for each in ag_grid_col_def_dict) required_fields = set([ 'user_id__windows_username' ,'wu__wu' ,'wu__subdiv' ,'wu__wu_desc' ,None ]) if len(from_api_fields) > len(required_fields): raise ValueError(f"orgchartportal_manage_permissions_view: context variable ag_grid_col_def_json got back more fields than expected. These are the unexpected fields: {from_api_fields - required_fields}") self.assertTrue(from_api_fields == required_fields ,f'orgchartportal_manage_permissions_view: context variable ag_grid_col_def_json is missing some fields: {required_fields - from_api_fields}') ## Make sure permissions_json has ALL the permission records, since this api is an admin api permissions_json = json.loads(response.context_data['permissions_json']) from_api_permissions = set(f"{each['user_id__windows_username']}-{each['wu__wu']}" for each in permissions_json) required_permissions = set(f"{each.user_id.windows_username}-{each.wu.wu}" for each in TblPermissionsWorkUnit.objects.using('OrgChartRead').all()) self.assertEqual(from_api_permissions, required_permissions ,f"orgchartportal_manage_permissions_view: context variable permissions_json either has more data than allowed ({from_api_permissions - required_permissions}) or has less data than allowed ({required_permissions - from_api_permissions})") from_api_user_list = set(response.context_data['user_list']) from_api_division_list = set(response.context_data['division_list']) from_api_wu_desc_list = set(each['wu'] for each in response.context_data['wu_desc_list']) required_user_list = set(each.windows_username for each in TblUsers.objects.using('OrgChartRead').all()) required_division_list = set(each.subdiv for each in TblWorkUnits.objects.using('OrgChartRead').filter(subdiv__isnull=False).distinct()) ## subidv not null filters out the WU 9999 On-Loan required_wu_desc_list = set(each.wu for each in TblWorkUnits.objects.using('OrgChartRead').filter(subdiv__isnull=False)) ## subidv not null filters out the WU 9999 On-Loan self.assertEqual(from_api_user_list, required_user_list ,f"orgchartportal_manage_permissions_view: context variable user_list either has more data than allowed ({from_api_user_list - required_user_list}) or has less data than allowed ({required_user_list - from_api_user_list})") self.assertEqual(from_api_division_list, required_division_list ,f"orgchartportal_manage_permissions_view: context variable division_list either has more data than allowed ({from_api_division_list - required_division_list}) or has less data than allowed ({required_division_list - from_api_division_list})") self.assertEqual(from_api_wu_desc_list, required_wu_desc_list ,f"orgchartportal_manage_permissions_view: context variable wu_desc_list either has more data than allowed ({from_api_wu_desc_list - required_wu_desc_list}) or has less data than allowed ({required_wu_desc_list - from_api_wu_desc_list})") def test_views_response_status_200(self): """Test normal user""" remove_admin_status() self.assert_response_status_200() """Test admin user""" grant_admin_status() self.assert_response_status_200() def test_views_response_user_admin_restriction(self): #TODO IMPLEMENT THIS WHEN NEW USER AND APP PERMISSION MANAGEMENT IS IN PLACE # """Test inactive user (Normal), should have NO access to regular or admin views""" # remove_admin_status() # remove_active_user_status() # self.assert_inactive_user_no_access_on_normal_and_admin_view() # """Test inactive user (Admin), should have NO access to regular or admin views""" # grant_admin_status() # remove_active_user_status() # self.assert_inactive_user_no_access_on_normal_and_admin_view() """Test active user (Normal), should only have access to regular views""" grant_active_user_status() remove_admin_status() self.assert_user_access_on_normal_and_admin_view() """Test active user (Admin), should have access to regular and admin views""" grant_active_user_status() grant_admin_status() self.assert_admin_access_on_normal_and_admin_view() def test_views_response_data(self): """ Test views to have the required GET request context data Some views have additional context data, need to test for those here """ # Test normal user remove_admin_status() self.assert_additional_context_data(additional_requirements=self.additional_context_requirements) # Test admin user grant_admin_status() self.assert_additional_context_data(additional_requirements=self.additional_context_requirements) class TestAPIUpdateEmployeeData(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_update_employee_data' self.post_response_json_key_specifications = [] tear_down() set_up_permissions() self.test_pms = TEST_PMS self.__null_out_test_pms_obj(self) ## Sequence 0, should work anytime self.valid_payload0 = [ { 'to_pms' : self.test_pms ,'column_name' : 'Supervisor' ,'new_value' : TEST_SUPERVISOR_PMS } ,{ 'to_pms' : self.test_pms ,'column_name' : 'Office Title' ,'new_value' : 'Hello World!' } ,{ 'to_pms' : self.test_pms ,'column_name' : 'Site' ,'new_value' : 'BK.H' } ,{ 'to_pms' : self.test_pms ,'column_name' : 'Floor' ,'new_value' : 'BK.H.1' } ,{ 'to_pms' : self.test_pms ,'column_name' : 'Site Type' ,'new_value' : '13' } ] ## Sequence 1: Test auto null out of site floor and site type when site is changed self.valid_payload1 = [ { 'to_pms' : self.test_pms ,'column_name' : 'Site' ,'new_value' : 'MN.H' } ] ## Sequence 2: Test null out of site type when site floor is changed, must use a floor id that has multiple possible site type to it, so it doesn't trigger the API's auto populate of site type id if there's only one possible site type id self.valid_payload2 = [ { 'to_pms' : self.test_pms ,'column_name' : 'Site' ,'new_value' : 'BK.D' },{ 'to_pms' : self.test_pms ,'column_name' : 'Floor' ,'new_value' : 'BK.D.2' } ] ## Sequence 3: Test auto set site type when site floor has only one site type, like 'MN.H.9' self.valid_payload3 = [ { 'to_pms' : self.test_pms ,'column_name' : 'Site' ,'new_value' : 'MN.H' },{ ## Floor change to MN.H.9 should also set the actual stie type since there's only one valid floor site for that site floor. Make sure to check it in the '## Check if data was saved correctly and if tblChanges was updated correctly' section 'to_pms' : self.test_pms ,'column_name' : 'Floor' ,'new_value' : 'MN.H.9' } ] ## Sequence 4: Test site type direct update, but first will need to reset site floor to another site floor with multiple site types self.valid_payload4 = [ { 'to_pms' : self.test_pms ,'column_name' : 'Site' ,'new_value' : 'BK.B' },{ 'to_pms' : self.test_pms ,'column_name' : 'Floor' ,'new_value' : 'BK.B.1' ## Should accept 7 or 3 for site type },{ 'to_pms' : self.test_pms ,'column_name' : 'Site Type' ,'new_value' : '3' } ,{ 'to_pms' : self.test_pms ,'column_name' : 'Site Type' ,'new_value' : '7' } ] @classmethod def tearDownClass(self): self.__null_out_test_pms_obj(self) tear_down() def test_with_valid_data(self): ## Sequence 0 self.__null_out_test_pms_obj() for payload in self.valid_payload0: self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly and if tblChanges was updated correctly saved_object = TblEmployees.objects.using('OrgChartRead').get( pms=self.test_pms ) if payload['column_name'] == 'Supervisor': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.supervisor_pms.pms) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='SupervisorPMS', proposed_new_value=payload['new_value']) elif payload['column_name'] == 'Office Title': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.office_title) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='OfficeTitle', proposed_new_value=payload['new_value']) elif payload['column_name'] == 'Site': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_site_id.site_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteId', proposed_new_value=payload['new_value']) elif payload['column_name'] == 'Floor': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_floor_id.floor_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualFloorId', proposed_new_value=payload['new_value']) elif payload['column_name'] == 'Site Type': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_site_type_id.site_type_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteTypeId', proposed_new_value=payload['new_value']) else: raise ValueError(f"uncaught payload param value in test case (Remove it, or add a test case for it): '{payload['column_name']}'") ## Sequence 1 - Test auto null out of site floor and site type when site is changed self.__null_out_test_pms_obj() ### Random value set to floor and site type to test the null out test_emp = TblEmployees.objects.using('OrgChartWrite').get( pms=self.test_pms ) test_emp.actual_floor_id = TblDOTSiteFloors.objects.using('OrgChartWrite').get(floor_id__exact='BK.E.16') test_emp.actual_site_type_id = TblDOTSiteTypes.objects.using('OrgChartWrite').get(site_type_id__exact='3') test_emp.save(using='OrgChartWrite') for payload in self.valid_payload1: self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly and if tblChanges was updated correctly saved_object = TblEmployees.objects.using('OrgChartRead').get( pms=self.test_pms ) if payload['column_name'] == 'Site': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_site_id.site_id) self.assert_post_key_update_equivalence(key_name='Change Site -> Auto Null out of Site Floor', key_value=None, db_value=saved_object.actual_floor_id) self.assert_post_key_update_equivalence(key_name='Change Site -> Auto Null out of Site Type', key_value=None, db_value=saved_object.actual_site_type_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteId', proposed_new_value=payload['new_value']) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualFloorId', proposed_new_value=None) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteTypeId', proposed_new_value=None) else: raise ValueError(f"uncaught payload param value in test case (Remove it, or add a test case for it): '{payload['column_name']}'") ## Sequence 2 - Test null out of site type when site floor is changed self.__null_out_test_pms_obj() ### Random value set to site type to test the null out test_emp = TblEmployees.objects.using('OrgChartWrite').get( pms=self.test_pms ) test_emp.actual_site_type_id = TblDOTSiteTypes.objects.using('OrgChartWrite').get(site_type_id__exact='3') test_emp.save(using='OrgChartWrite') for payload in self.valid_payload2: self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly and if tblChanges was updated correctly saved_object = TblEmployees.objects.using('OrgChartRead').get( pms=self.test_pms ) if payload['column_name'] == 'Site': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_site_id.site_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteId', proposed_new_value=payload['new_value']) elif payload['column_name'] == 'Floor': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=saved_object.actual_floor_id.floor_id) self.assert_post_key_update_equivalence(key_name='Change Floor -> Auto Null out of Site Type', key_value=None, db_value=saved_object.actual_site_type_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualFloorId', proposed_new_value=payload['new_value']) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteTypeId', proposed_new_value=None) else: raise ValueError(f"uncaught payload param value in test case (Remove it, or add a test case for it): '{payload['column_name']}'") ## Sequence 3 - Test auto set site type when site floor has only one site type, like 'MN.H.9' self.__null_out_test_pms_obj() for payload in self.valid_payload3: self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly and if tblChanges was updated correctly saved_object = TblEmployees.objects.using('OrgChartRead').get( pms=self.test_pms ) if payload['column_name'] == 'Site': ## A change of Site should also null out site floor and site type. Check if data saved, and tracked in tblChanges self.assert_post_key_update_equivalence(key_name=payload['column_name'] , key_value=payload['new_value'], db_value=saved_object.actual_site_id.site_id) self.assert_post_key_update_equivalence(key_name='Change Site -> Auto Null out of Floor' , key_value=None , db_value=saved_object.actual_floor_id) self.assert_post_key_update_equivalence(key_name='Change Site -> Auto Null out of Site Type', key_value=None , db_value=saved_object.actual_site_type_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteId' , proposed_new_value=payload['new_value']) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualFloorId' , proposed_new_value=None) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteTypeId' , proposed_new_value=None) elif payload['column_name'] == 'Floor': ## 'MN.H.9' should also have set site type id to 7 self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'] , db_value=saved_object.actual_floor_id.floor_id) self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value='7' , db_value=saved_object.actual_site_type_id.site_type_id) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualFloorId' , proposed_new_value=payload['new_value']) self.__assert_delta_tracked_in_tblChanges(proposed_by_pms=self.test_pms, proposed_to_pms=payload['to_pms'], proposed_column_name='ActualSiteTypeId' , proposed_new_value='7') else: raise ValueError(f"uncaught payload param value in test case (Remove it, or add a test case for it): '{payload['column_name']}'") def test_data_validation(self): f"""Testing {self.api_name} data validation""" payloads = self.valid_payload0 parameters = [ # Parameter name # Accepted type "to_pms" # str -> int formatted str of len 7 ,"column_name" # str -> must be one of the follow ['Supervisor', 'Office Title', 'Site', 'Floor', 'Site Type'] ,"new_value" # str -> depends on the @column_name that was given ] for payload in payloads: for param_name in parameters: if param_name == 'to_pms': valid = [self.test_pms] invalid = ['a', 1, 2.3, None, True, 'a123456', '12345678'] elif param_name == 'column_name': valid = ['Supervisor', 'Office Title', 'Site', 'Floor', 'Site Type'] invalid = ['a', 1, 2.3, None, True] elif param_name == 'new_value': if payload['column_name'] == 'Supervisor': valid = [TEST_SUPERVISOR_PMS] invalid = ['a', 1, 2.3, None, True, 'a123456', '12345678'] elif payload['column_name'] == 'Office Title': valid = ['Test Office Title Input'] invalid = [1, 2.3, None, True] elif payload['column_name'] == 'Site': valid = ['BK.H'] invalid = ['a', 1, 2.3, None, True] elif payload['column_name'] == 'Floor': valid = ['BK.H.1'] invalid = ['a', 1, 2.3, None, True] elif payload['column_name'] == 'Site Type': valid = ['13'] invalid = ['a', 1, 2.3, None, True] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") def special_param_good_cond(res_content): if ( (res_content['post_success'] == True) or ( res_content['post_success'] == False and any([ 'No change in data, no update needed.' in res_content['post_msg'] ## this error message in save() only gets called when it all pass data validation ]))): return True else: return False def special_param_good_cond_for_column_name(res_content): if ( (res_content['post_success'] == True) or ( res_content['post_success'] == False and any([ 'is not an editable column' not in res_content['post_msg'] ## for column_names, it will only fail data validation if error message is a specific one ]))): return True else: return False for data in valid: if param_name == 'column_name': self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data, param_is_good_fct=special_param_good_cond_for_column_name) else: self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data, param_is_good_fct=special_param_good_cond) for data in invalid: self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) def __null_out_test_pms_obj(self): test_pms_obj = TblEmployees.objects.using('OrgChartWrite').get(pms=self.test_pms) test_pms_obj.supervisor_pms = None test_pms_obj.office_title = None test_pms_obj.actual_site_id = None test_pms_obj.actual_floor_id = None test_pms_obj.actual_site_type_id = None test_pms_obj.save(using='OrgChartWrite') def __get_latest_changes_obj_by(self, by_pms, to_pms, column_name): try: return TblChanges.objects.using('OrgChartRead').filter( updated_by_pms__exact=by_pms ,updated_to_pms__exact=to_pms ,column_name__exact=column_name ).order_by('-updated_on').first() except: raise def __assert_delta_tracked_in_tblChanges(self, proposed_by_pms, proposed_to_pms, proposed_column_name, proposed_new_value): saved_change_obj = self.__get_latest_changes_obj_by(by_pms=proposed_by_pms, to_pms=proposed_to_pms, column_name=proposed_column_name) self.assert_post_key_update_equivalence(key_name=f"tblChanges: track change of '{proposed_column_name}' failed", key_value=proposed_new_value, db_value=saved_change_obj.new_value) class TestAPIGetClientWUPermissions(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_get_client_wu_permissions_list' self.post_response_json_key_specifications = [ {'name': 'wu_permissions', 'null': True} ] tear_down() set_up_permissions() self.client_usr_obj = get_or_create_user() self.valid_payload = {} @classmethod def tearDownClass(self): tear_down() def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was queried correctly wu_permissions_query = TblPermissionsWorkUnit.objects.using('OrgChartRead').filter( user_id__windows_username=self.client_usr_obj.windows_username ,user_id__active=True ,is_active=True ) wu_permissions_required = set(each.wu.wu for each in wu_permissions_query) self.assert_post_key_lookup_equivalence(key_name='wu_permissions', key_value=set(each['wu__wu'] for each in response_content['post_data']['wu_permissions']), db_value=wu_permissions_required) grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.assert_post_key_lookup_equivalence(key_name='post_msg', key_value=response_content['post_msg'], db_value="User is Admin") def test_data_validation(self): pass ## This api doesn't take in any params class TestAPIGetClientTeammates(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_get_client_teammates_list' self.post_response_json_key_specifications = [ {'name': 'teammates', 'null': True} ] tear_down() set_up_permissions() self.client_usr_obj = get_or_create_user() self.valid_payload = {} @classmethod def tearDownClass(self): tear_down() def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was queried correctly wu_permissions_query = TblPermissionsWorkUnit.objects.using('OrgChartRead').filter( user_id__windows_username=self.client_usr_obj.windows_username ,user_id__active=True ) wu_permissions_list = wu_permissions_query.values('wu__wu') teammates_query = TblPermissionsWorkUnit.objects.using('OrgChartRead').filter( wu__wu__in=wu_permissions_list ,user_id__active=True ,is_active=True ) teammates_required = set(each.user_id.pms.pms for each in teammates_query) self.assert_post_key_lookup_equivalence(key_name='teammates', key_value=sorted(set(each['user_id__pms__pms'] for each in response_content['post_data']['teammates'])), db_value=sorted(teammates_required)) grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.assert_post_key_lookup_equivalence(key_name='post_msg', key_value=response_content['post_msg'], db_value="User is Admin") def test_data_validation(self): pass ## This api doesn't take in any params class TestAPIGetEmpGridStats(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_get_emp_grid_stats' self.post_response_json_key_specifications = [ {'name': 'supervisor_completed' , 'null': True} ,{'name': 'office_title_completed' , 'null': True} ,{'name': 'list_last_updated_on_est' , 'null': True} ,{'name': 'list_last_updated_by' , 'null': True} ,{'name': 'inactive_supervisor_list' , 'null': True} ,{'name': 'empty_or_invalid_floor_combo_list' , 'null': True} ,{'name': 'empty_or_invalid_site_type_combo_list' , 'null': True} ] tear_down() set_up_permissions() self.valid_payload = {} @classmethod def tearDownClass(self): tear_down() def __assert_stats_types(self, response_content): self.assert_post_key_lookup_equivalence(key_name='supervisor_completed', key_value=type(response_content['post_data']['supervisor_completed']), db_value=type(99.99)) self.assert_post_key_lookup_equivalence(key_name='office_title_completed', key_value=type(response_content['post_data']['office_title_completed']), db_value=type(99.99)) try: test = datetime.strptime(response_content['post_data']['list_last_updated_on_est'], "%m/%d/%Y %I:%M:%S %p") except Exception as e: self.assertTrue(False ,f"{response_content['post_data']['list_last_updated_on_est']} is not a valid datetime string in the format of '%m/%d/%Y %I:%M:%S %p': {e}") self.assert_post_key_lookup_equivalence(key_name='list_last_updated_by', key_value=type(response_content['post_data']['list_last_updated_by']), db_value=type('')) self.assert_post_key_lookup_equivalence(key_name='inactive_supervisor_list', key_value=type(response_content['post_data']['inactive_supervisor_list']), db_value=type([])) self.assert_post_key_lookup_equivalence(key_name='empty_or_invalid_floor_combo_list', key_value=type(response_content['post_data']['empty_or_invalid_floor_combo_list']), db_value=type([])) self.assert_post_key_lookup_equivalence(key_name='empty_or_invalid_site_type_combo_list', key_value=type(response_content['post_data']['empty_or_invalid_site_type_combo_list']), db_value=type([])) def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data type was returned correctly. No data accuracy check here at the moment. self.__assert_stats_types(response_content=response_content) grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.__assert_stats_types(response_content=response_content) def test_data_validation(self): pass ## This api doesn't take in any params class TestAPIEmpGridGetCsvExport(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_emp_grid_get_csv_export' self.post_response_json_key_specifications = [ {'name': 'csv_bytes', 'null': False} ] tear_down() set_up_permissions() self.client_usr_obj = get_or_create_user() self.valid_payload = {} @classmethod def tearDownClass(self): tear_down() def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## Check any byte data returned self.assertTrue(response_content['post_data']['csv_bytes'] is not None ,f"response_content['post_data']['csv_bytes'] should not be null, it should return some byte data in string form") grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.assertTrue(response_content['post_data']['csv_bytes'] is not None ,f"response_content['post_data']['csv_bytes'] should not be null, it should return some byte data in string form") def test_data_validation(self): pass ## This api doesn't take in any params class TestAPIGetCommissionerPMS(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_get_commissioner_pms' self.test_pms = TEST_COMMISSIONER_PMS self.valid_payload = {} self.post_response_json_key_specifications = [ {'name': 'dot_commissioner_pms', 'null': False} ] tear_down() set_up_permissions() @classmethod def tearDownClass(self): tear_down() def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For normal user, a 7 digit string should be returned as the commissioner pms self.assert_post_key_lookup_equivalence(key_name='dot_commissioner_pms', key_value=type(response_content['post_data']['dot_commissioner_pms']), db_value=type('')) self.assertTrue(len(response_content['post_data']['dot_commissioner_pms']) == 7 ,f"response_content['post_data']['dot_commissioner_pms'] is not len 7") try: test = int(response_content['post_data']['dot_commissioner_pms']) except Exception as e: self.assertTrue(False ,f"response_content['post_data']['dot_commissioner_pms'] is not all digits: {e}") grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admin, a 7 digit string should be returned as the commissioner pms self.assert_post_key_lookup_equivalence(key_name='dot_commissioner_pms', key_value=type(response_content['post_data']['dot_commissioner_pms']), db_value=type('')) self.assertTrue(len(response_content['post_data']['dot_commissioner_pms']) == 7 ,f"response_content['post_data']['dot_commissioner_pms'] is not len 7") try: test = int(response_content['post_data']['dot_commissioner_pms']) except Exception as e: self.assertTrue(False ,f"response_content['post_data']['dot_commissioner_pms'] is not all digits: {e}") def test_data_validation(self): pass ## This api doesn't take in any params class TestAPIOrgChartGetEmpCsv(HttpPostTestCase): @classmethod def setUpClass(self): self.api_name = 'orgchartportal_org_chart_get_emp_csv' self.test_pms = TEST_COMMISSIONER_PMS self.valid_payload = { 'root_pms': self.test_pms } self.post_response_json_key_specifications = [ {'name': 'emp_csv', 'null': False} ] tear_down() set_up_permissions() @classmethod def tearDownClass(self): tear_down() def test_with_valid_data(self): remove_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.assertTrue(response_content['post_data']['emp_csv'] is not None ,f"For a normal user, response_content['post_data']['emp_csv'] should not be null, it should return some byte data in string form") grant_admin_status() payload = self.valid_payload response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## For admins, the post_success must be true, and post_msg should be "User is Admin" self.assertTrue(response_content['post_data']['emp_csv'] is not None ,f"For an admin, response_content['post_data']['emp_csv'] should not be null, it should return some byte data in string form") def test_data_validation(self): payload = self.valid_payload parameters = [ # Parameter name # Accepted type "root_pms" # str -> string of len 7 with all digits ] for param_name in parameters: if param_name == 'root_pms': valid = [self.test_pms] invalid = ['a', 1, 2.3, False, None] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) class TestAPIAddUser(HttpPostTestCase): @classmethod def setUpClass(self): tear_down() self.user_obj = grant_admin_status() self.api_name = 'orgchartportal_add_user' self.post_response_json_key_specifications = [ {'name': 'windows_username' , 'null': False} ,{'name': 'pms' , 'null': False} ,{'name': 'is_admin' , 'null': False} ,{'name': 'active' , 'null': False} ] self.valid_username = 'SomeTestUsername' self.valid_pms = TEST_COMMISSIONER_PMS self.valid_payloads = [ { 'windows_username' : self.valid_username, 'pms' : self.valid_pms, 'is_admin' : 'False', } ,{ 'windows_username' : self.valid_username, 'pms' : self.valid_pms, 'is_admin' : 'True', } ] @classmethod def tearDownClass(self): tear_down() self.remove_test_user_if_exists(self) def test_api_accept_only_admins(self): remove_admin_status() payload = self.valid_payloads[0] content = self.post_and_get_json_response(payload) self.assertTrue((content['post_success']==False) and ("not an admin" in content['post_msg']), f"api should have detected that user is not an admin and fail\n{content['post_msg']}") def remove_test_user_if_exists(self): try: new_user = TblUsers.objects.using('OrgChartWrite').get(windows_username__exact=self.valid_username, pms__exact=self.valid_pms) except: ...#Do nothing else: new_user.delete(using='OrgChartWrite') def test_with_valid_data(self): grant_admin_status() for payload in self.valid_payloads: self.remove_test_user_if_exists() self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly saved_object = TblUsers.objects.using('OrgChartWrite').get(windows_username__exact=self.valid_username) self.assert_post_key_update_equivalence(key_name='windows_username' , key_value=payload['windows_username'] , db_value=saved_object.windows_username) self.assert_post_key_update_equivalence(key_name='pms' , key_value=payload['pms'] , db_value=saved_object.pms) self.assert_post_key_update_equivalence(key_name='is_admin' , key_value=payload['is_admin'] , db_value=str(saved_object.is_admin)) self.assertTrue(str(saved_object.active)=='True' ,f"the newly added user {saved_object.windows_username}'s active field is not True, it must be True. Current value: '{str(saved_object.active)}'") def test_data_validation(self): grant_admin_status() payload = self.valid_payloads[0] parameters = [ # Parameter name # Accepted type "windows_username" # str -> username ,"pms" # str -> 7 len, all digits ,"is_admin" # str -> 'True' or 'False' ] for param_name in parameters: if param_name == 'windows_username': valid = [self.valid_username] invalid = [1, 2.3, False, None] elif param_name == 'pms': valid = [self.valid_pms] invalid = ['a', 1, 2.3, '-1', '-1.2', '11.567', '2.2', '4.45', None, False, 'a0', '12345678', '123456'] elif param_name == 'is_admin': valid = ['False', 'True'] invalid = ['a', 1, 2.3, '-1', '-1.2', '11.567', '2.2', '4.45', None, False] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: self.remove_test_user_if_exists() self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: self.remove_test_user_if_exists() self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) class TestAPIUpdateUser(HttpPostTestCase): @classmethod def setUpClass(self): tear_down() self.user_obj = grant_admin_status() self.api_name = 'orgchartportal_update_user' self.post_response_json_key_specifications = [ {'name': 'to_windows_username' , 'null': False} ,{'name': 'column_name' , 'null': False} ,{'name': 'new_value' , 'null': False} ] self.valid_payloads = [ { 'to_windows_username' : self.user_obj.windows_username, 'column_name' : 'Is Admin', 'new_value' : 'True', } ,{ 'to_windows_username' : self.user_obj.windows_username, 'column_name' : 'Is Admin', 'new_value' : 'False', } ,{ 'to_windows_username' : self.user_obj.windows_username, 'column_name' : 'Active', 'new_value' : 'True', } ,{ 'to_windows_username' : self.user_obj.windows_username, 'column_name' : 'Active', 'new_value' : 'False', } ] @classmethod def tearDownClass(self): tear_down() def test_api_accept_only_admins(self): remove_admin_status() payload = self.valid_payloads[0] content = self.post_and_get_json_response(payload) self.assertTrue((content['post_success']==False) and ("not an admin" in content['post_msg']), f"api should have detected that user is not an admin and fail\n{content['post_msg']}") def test_with_valid_data(self): for payload in self.valid_payloads: grant_admin_status() self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly saved_object = TblUsers.objects.using('OrgChartWrite').get(windows_username__exact=self.user_obj.windows_username) if payload['column_name'] == 'Is Admin': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=str(saved_object.is_admin)) elif payload['column_name'] == 'Active': self.assert_post_key_update_equivalence(key_name=payload['column_name'], key_value=payload['new_value'], db_value=str(saved_object.active)) else: raise ValueError(f"{payload['column']} is not recognized as a valid column value in the payload") def test_data_validation(self): payload = self.valid_payloads[0] parameters = [ # Parameter name # Accepted type 'to_windows_username' # str -> windows username ,'column_name' # str -> 'Is Admin' or 'Active' only ,'new_value' # str -> 'True' or 'False' only ] for param_name in parameters: if param_name == 'to_windows_username': valid = [self.user_obj.windows_username] invalid = [1, 2.3, False, None, 'sdfds'] elif param_name == 'column_name': valid = ['Is Admin', 'Active'] invalid = [1, 2.3, False, None, 'sdfds'] elif param_name == 'new_value': valid = ['False', 'True'] invalid = ['a', 1, 2.3, None, False] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: grant_admin_status() self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: grant_admin_status() self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) class TestAPIDeleteUser(HttpPostTestCase): @classmethod def setUpClass(self): tear_down() self.api_name = 'orgchartportal_delete_user' self.post_response_json_key_specifications = [ {'name': 'windows_username' , 'null': False} ] self.valid_username = 'some_random_name' self.valid_pms = TEST_COMMISSIONER_PMS self.valid_payloads = [ { 'windows_username': self.valid_username, } ] @classmethod def tearDownClass(self): tear_down() try: test_user = TblUsers.objects.using('OrgChartWrite').get(windows_username__exact=self.valid_username) except ObjectDoesNotExist as e: ... ## Good, do nothing except: raise else: test_user.delete(using='OrgChartWrite') def test_api_accept_only_admins(self): remove_admin_status() payload = self.valid_payloads[0] content = self.post_and_get_json_response(payload) self.assertTrue((content['post_success']==False) and ("not an admin" in content['post_msg']), f"api should have detected that user is not an admin and fail\n{content['post_msg']}") def add_test_user_if_not_exists(self): test_user = TblUsers.objects.using('OrgChartWrite').get_or_create( windows_username=self.valid_username ,pms=TblEmployees.objects.using('OrgChartWrite').get(pms__exact=self.valid_pms) )[0] test_user.save(using='OrgChartWrite') def test_with_valid_data(self): for payload in self.valid_payloads: grant_admin_status() self.add_test_user_if_not_exists() response_content = self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was deleted correctly try: saved_object = TblUsers.objects.using('OrgChartWrite').get(windows_username__exact=self.valid_username) except ObjectDoesNotExist as e: ... ## Good, do nothing except Exception as e: raise ValueError(f"test_with_valid_data(): {e}") else: self.assertTrue(False, f"{saved_object.windows_username} still exists in the database, unable to delete user") ## Check that a string was returned for windows_username self.assert_post_key_lookup_equivalence(key_name='windows_username', key_value=response_content['post_data']['windows_username'], db_value=payload['windows_username']) def test_data_validation(self): payload = self.valid_payloads[0] parameters = [ # Parameter name # Accepted type "windows_username" # str -> windows username ] for param_name in parameters: if param_name == 'windows_username': valid = [self.valid_username] invalid = [1, 2.3, False, None, 'whateverhappened?'] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: grant_admin_status() self.add_test_user_if_not_exists() self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: grant_admin_status() self.add_test_user_if_not_exists() self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) class TestAPIAddUserPermission(HttpPostTestCase): @classmethod def setUpClass(self): tear_down() self.api_name = 'orgchartportal_add_user_permission' self.valid_username = TEST_WINDOWS_USERNAME self.valid_add_by_division_identifier = 'Legal' self.valid_add_by_wu_identifier = '1120' #Traffic Ops self.post_response_json_key_specifications = [ {'name': 'windows_username' , 'null': False} ,{'name': 'perm_identifier' , 'null': False} ,{'name': 'wu_added_list' , 'null': False} ] self.valid_payloads = [ { 'windows_username' : self.valid_username, 'perm_add_by' : 'division', 'perm_identifier' : self.valid_add_by_division_identifier } ,{ 'windows_username' : self.valid_username, 'perm_add_by' : 'wu', 'perm_identifier' : self.valid_add_by_wu_identifier } ] @classmethod def tearDownClass(self): tear_down() def test_api_accept_only_admins(self): remove_admin_status() payload = self.valid_payloads[0] content = self.post_and_get_json_response(payload) self.assertTrue((content['post_success']==False) and ("not an admin" in content['post_msg']), f"api should have detected that user is not an admin and fail\n{content['post_msg']}") def test_with_valid_data(self): grant_admin_status() for payload in self.valid_payloads: self.__remove_any_permissions_added_in_this_test() ## Need to remove additional permissions that is added in this api self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was saved correctly if payload['perm_add_by'] == 'wu': saved_object = TblPermissionsWorkUnit.objects.using('OrgChartRead').get( user_id__windows_username__exact = payload['windows_username'] ,wu__wu__exact = payload['perm_identifier'] ) self.assert_post_key_update_equivalence(key_name='is_active', key_value=True, db_value=saved_object.is_active) elif payload['perm_add_by'] == 'division': saved_objects = TblPermissionsWorkUnit.objects.using('OrgChartRead').filter( user_id__windows_username__exact = payload['windows_username'] ,wu__subdiv__exact = payload['perm_identifier'] ) saved_wu_permissions = set(each.wu.wu for each in saved_objects) required_wus_objects = TblWorkUnits.objects.using('OrgChartRead').filter( subdiv__exact=payload['perm_identifier'] ) required_wus = set(each.wu for each in required_wus_objects) self.assertTrue(sorted(required_wus)==sorted(saved_wu_permissions) ,f"Permissions added did not match request. In request but not in db [{required_wus-saved_wu_permissions}], and added to db but not in request [{saved_wu_permissions-required_wus}]") else: self.assertTrue(False ,f"payload['perm_add_by'] value '{payload['perm_add_by']}' not implemented in test. Wrong data or please add implementation") def test_data_validation(self): grant_admin_status() payload = self.valid_payloads[0] parameters = [ # Parameter name # Accepted type 'windows_username' # str -> username ,'perm_add_by' # str -> Either 'division' or 'wu' ,'perm_identifier' # str -> a subdiv name, or a wu ] for param_name in parameters: if param_name == 'windows_username': valid = [self.valid_username] invalid = [1, 2.3, False, None] elif param_name == 'perm_add_by': valid = ['division', 'wu'] invalid = ['a', 1, 2.3, '-1', '-1.2', '11.567', '2.2', '4.45', None, False, ''] elif param_name == 'perm_identifier': valid = [self.valid_add_by_division_identifier, self.valid_add_by_wu_identifier] invalid = ['a', 1, 2.3, '-1', '-1.2', '11.567', '2.2', '4.45', None, False, ''] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: if param_name == 'perm_add_by' and data == 'division': ## for division, the perm_id must be a sub div name payload = copy.deepcopy(payload) payload['perm_identifier'] = self.valid_add_by_division_identifier if param_name == 'perm_add_by' and data == 'wu': ## for wu, the perm_id must be a wu payload = copy.deepcopy(payload) payload['perm_identifier'] = self.valid_add_by_wu_identifier if param_name == 'perm_identifier' and data == self.valid_add_by_division_identifier: ## for perm_id with division, the add_by must be 'division' payload = copy.deepcopy(payload) payload['perm_add_by'] = 'division' if param_name == 'perm_identifier' and data == self.valid_add_by_wu_identifier: ## for perm_id with wu, the add_by must be 'wu' payload = copy.deepcopy(payload) payload['perm_add_by'] = 'wu' self.__remove_any_permissions_added_in_this_test() ## Need to remove additional permissions that is added in this api self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: self.__remove_any_permissions_added_in_this_test() ## Need to remove additional permissions that is added in this api self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) def __remove_any_permissions_added_in_this_test(self): permissions = TblPermissionsWorkUnit.objects.using('OrgChartWrite').filter( Q(user_id__windows_username__exact=self.valid_username) & ( Q(wu__subdiv__exact=self.valid_add_by_division_identifier) | Q(wu__wu__exact=self.valid_add_by_wu_identifier) ) ) for each in permissions: each.delete(using='OrgChartWrite') class TestAPIDeleteUserPermission(HttpPostTestCase): @classmethod def setUpClass(self): tear_down() self.api_name = 'orgchartportal_delete_user_permission' self.valid_username = TEST_WINDOWS_USERNAME self.valid_add_by_division_identifier = 'Legal' self.valid_add_by_wu_identifier = '1120' #Traffic Ops self.post_response_json_key_specifications = [ {'name': 'windows_username' , 'null': False} ,{'name': 'perm_identifier' , 'null': False} ] self.valid_payloads = [ { 'windows_username' : self.valid_username, 'perm_delete_by' : 'division', 'perm_identifier' : self.valid_add_by_division_identifier, } ,{ 'windows_username' : self.valid_username, 'perm_delete_by' : 'wu', 'perm_identifier' : self.valid_add_by_wu_identifier, } ] @classmethod def tearDownClass(self): tear_down() def test_api_accept_only_admins(self): remove_admin_status() payload = self.valid_payloads[0] content = self.post_and_get_json_response(payload) self.assertTrue((content['post_success']==False) and ("not an admin" in content['post_msg']), f"api should have detected that user is not an admin and fail\n{content['post_msg']}") def test_with_valid_data(self): grant_admin_status() for payload in self.valid_payloads: self.__add_any_permissions_needed_in_this_test() ## Need to add additional permissions that is removed in this api self.assert_post_with_valid_payload_is_success(payload=payload) ## Check if data was deleted correctly if payload['perm_delete_by'] == 'wu': try: saved_object = TblPermissionsWorkUnit.objects.using('OrgChartRead').get( user_id__windows_username__exact=payload['windows_username'] ,wu__wu__exact=payload['perm_identifier'] ) except ObjectDoesNotExist as e: ... ## Good, do nothing except Exception as e: raise ValueError(f"test_with_valid_data(): {e}") else: self.assertTrue(False ,f"permission object ({saved_object.user_id.windows_username}, {saved_object.wu.wu}) still exists in the database, unable to delete permission") elif payload['perm_delete_by'] == 'division': work_units = TblWorkUnits.objects.using('OrgChartRead').filter( subdiv__exact=payload['perm_identifier'] ) for work_unit in work_units: try: saved_object = TblPermissionsWorkUnit.objects.using('OrgChartRead').get( user_id__windows_username__exact=payload['windows_username'] ,wu__wu__exact=work_unit ) except ObjectDoesNotExist as e: ... ## Good, do nothing except Exception as e: raise ValueError(f"test_with_valid_data(): {e}") else: self.assertTrue(False ,f"permission object ({saved_object.user_id.windows_username}, {saved_object.wu.wu}) still exists in the database while trying to delete by division '{payload['perm_identifier']}', unable to delete permission") else: self.assertTrue(False ,f"payload['perm_delete_by'] value '{payload['perm_delete_by']}' not implemented in test. Wrong data or please add implementation") def test_data_validation(self): grant_admin_status() payload = self.valid_payloads[0] parameters = [ # Parameter name # Accepted type 'windows_username' # str -> username ,'perm_delete_by' # str -> Either 'division' or 'wu' ,'perm_identifier' # str -> a subdiv name, or a wu ] for param_name in parameters: if param_name == 'windows_username': valid = [self.valid_username] invalid = ['a', '-1', '-1.2', '11.567', '2.2', '4.45', 5.46, -1, None, False, True, ''] elif param_name == 'perm_delete_by': valid = ['division', 'wu'] invalid = ['a', '-1', '-1.2', '11.567', '2.2', '4.45', 5.46, -1, None, False, True, ''] elif param_name == 'perm_identifier': valid = [self.valid_add_by_division_identifier, self.valid_add_by_wu_identifier] invalid = ['a', '-1', '-1.2', '11.567', '2.2', '4.45', 5.46, -1, None, False, True, ''] else: raise ValueError(f"test_data_validation(): parameter test not implemented: '{param_name}'. Please remove or implement it") for data in valid: if param_name == 'perm_delete_by' and data == 'division': ## for division, the perm_id must be a sub div name payload = copy.deepcopy(payload) payload['perm_identifier'] = self.valid_add_by_division_identifier if param_name == 'perm_delete_by' and data == 'wu': ## for wu, the perm_id must be a wu payload = copy.deepcopy(payload) payload['perm_identifier'] = self.valid_add_by_wu_identifier if param_name == 'perm_identifier' and data == self.valid_add_by_division_identifier: ## for perm_id with division, the add_by must be 'division' payload = copy.deepcopy(payload) payload['perm_delete_by'] = 'division' if param_name == 'perm_identifier' and data == self.valid_add_by_wu_identifier: ## for perm_id with wu, the add_by must be 'wu' payload = copy.deepcopy(payload) payload['perm_delete_by'] = 'wu' self.__add_any_permissions_needed_in_this_test() ## Need to add additional permissions that is removed in this api self.assert_request_param_good(valid_payload=payload, testing_param_name=param_name, testing_data=data) for data in invalid: self.__add_any_permissions_needed_in_this_test() ## Need to add additional permissions that is removed in this api self.assert_request_param_bad(valid_payload=payload, testing_param_name=param_name, testing_data=data) def __add_any_permissions_needed_in_this_test(self): ## Set up permissions for 'division' delete_by work_unit_objs = TblWorkUnits.objects.using('OrgChartWrite').filter( subdiv__exact=self.valid_add_by_division_identifier ,active=True ) user_obj = get_or_create_user(windows_username=self.valid_username) for wu_obj in work_unit_objs: permission = TblPermissionsWorkUnit.objects.using('OrgChartWrite').get_or_create( user_id=user_obj ,wu=wu_obj )[0] permission.save(using="OrgChartWrite") ## Set up permission for 'wu' delete_by work_unit_obj = TblWorkUnits.objects.using('OrgChartWrite').get( wu__exact=self.valid_add_by_wu_identifier ,active=True ) user_obj = get_or_create_user(windows_username=self.valid_username) permission = TblPermissionsWorkUnit.objects.using('OrgChartWrite').get_or_create( user_id=user_obj ,wu=work_unit_obj )[0] permission.save(using="OrgChartWrite")
50.856599
255
0.62665
74,478
0.929233
0
0
14,766
0.18423
0
0
24,842
0.309944
7f89f00e8b87657252a144b19c11f0b25e549b6d
3,794
py
Python
test_net.py
reasonsolo/mtcnn_caffe
ec646c8e27af900da1380d5968970705f9e8f582
[ "MIT" ]
null
null
null
test_net.py
reasonsolo/mtcnn_caffe
ec646c8e27af900da1380d5968970705f9e8f582
[ "MIT" ]
null
null
null
test_net.py
reasonsolo/mtcnn_caffe
ec646c8e27af900da1380d5968970705f9e8f582
[ "MIT" ]
1
2019-01-15T05:56:06.000Z
2019-01-15T05:56:06.000Z
import cv2 import caffe import tools import sys import os import numpy as np from functools import partial import config def gen_scales(w, h, min_imgsize, net_imgsize): scales = [] scale = float(net_imgsize) / min_imgsize; minhw = min(w, h) * scale; while minhw > net_imgsize: scales.append(scale) scale *= 0.709 minhw *= 0.709 return scales def regularize_rect(img_shape, rect): w, h, _ = img_shape x1, y1, x2, y2, prob = rect x1 = max(0, min(x1, w)) x2 = max(0, min(x2, w)) y1 = max(0, min(y1, h)) y2 = max(0, min(y2, h)) return [x1, x2, y1, y2, prob] def load_model(model_dir, net, iter_num): proto_path = os.path.join(model_dir, '%s.prototxt' % net) model_path = os.path.join(model_dir, '%s_iter_%d.caffemodel' % (net, iter_num)) return caffe.Net(proto_path, model_path, caffe.TEST) def test_pnet(img, min_img_size, net_size, net): norm_img = (img.copy() - 127.5) / 127.5 h, w, c = norm_img.shape scales = gen_scales(w, h, min_img_size, net_size) rects = [] for scale in scales: sh = int(h * scale) sw = int(w * scale) scale_img = cv2.resize(norm_img, (sw, sh)) scale_img = cv2.transpose(scale_img) scale_img = np.swapaxes(scale_img, 0, 2) net.blobs['data'].reshape(1, 3, sh, sw) net.blobs['data'].data[...] = scale_img print(scale_img.shape) print(scale_img) out = net.forward() conv1 = net.blobs["conv1"] label_prob = out[config.NET_OUTPUTS['pnet']['label']][0] bbox = out[config.NET_OUTPUTS['pnet']['bbox']][0] print(conv1.data.shape) print(conv1.data) out_h, out_w = label_prob[1].shape out_side = max(out_h, out_w) rect = tools.detect_face_12net(label_prob[1], bbox, out_side, 1 / scale, w, h, 0.65) rects += rect break rects = tools.NMS(rects, 0.7, 'iou') return rects def test_rnet(img, rects, min_img_size, net_size, net): norm_img = (img.copy() - 127.5) / 128 h, w, c = norm_img.shape for i, rect in enumerate(rects): cropped_img = img[int(rect[1]):int(rect[3]), int(rect[0]):int(rect[2]),] resized_img = cv2.resize(cropped_img, (net_size, net_size)) resized_img = np.swapaxes(resized_img, 0, 2) net.blobs['data'].data[i] = resized_img out = net.forward() label_prob = out[config.NET_OUTPUTS['rnet']['label']][0][1] bbox = out[config.NET_OUTPUTS['rnet']['bbox']][0][1] rects = tools.filter_face_24net(label_prob, bbox, rects, w, h, 0.7) return [rect for rect in rects if rects[2] - rects[0] > 0 and rects[3] - rects[1] > 0] def test_net(net, model_dir, iter_num): model_path = os.path.join(model_dir, '%s_iter_%d.caffemodel' % (net, iter_num)) proto_path = os.path.join(model_dir, '%s.prototxt' % net) caffe_net = caffe.Net(proto_path, model_path, caffe.TEST) if net == 'pnet': return partial(test_pnet, net=caffe_net) elif net == 'rnet': return partial(test_rnet, net=caffe_net) if __name__ == '__main__': net = sys.argv[1] iter_num = int(sys.argv[2]) img_path = sys.argv[3] test_func = test_net(net, config.MODEL_DIR, iter_num) img = cv2.imread(img_path) rects = test_func(img, config.MIN_IMG_SIZE, config.NET_IMG_SIZES['pnet']) for i, rect in enumerate(rects): sub_img = img[rect[1]:rect[3], rect[0]:rect[2]] print(sub_img.shape, rect) cv2.imwrite("pnet/test/%d_%f.jpg" % (i, rect[4]), sub_img) for i, rect in enumerate(rects): cv2.rectangle(img, (rect[0], rect[1]), (rect[2], rect[3]), (255,0,0), 3) cv2.imwrite("pnet/result.jpg", img) print('%d rects generated' % len(rects))
33.875
90
0.610174
0
0
0
0
0
0
0
0
238
0.062731
7f8cfe7c21edb98148f06559139a4693716409cf
515
py
Python
SharedData/list_all_files.py
kylemcdonald/SoundParts
964de07f28ac181be2b9e8050b9e5a7e9b10a93d
[ "MIT" ]
22
2017-05-02T07:55:25.000Z
2020-12-18T00:48:03.000Z
SharedData/list_all_files.py
kylemcdonald/SoundParts
964de07f28ac181be2b9e8050b9e5a7e9b10a93d
[ "MIT" ]
null
null
null
SharedData/list_all_files.py
kylemcdonald/SoundParts
964de07f28ac181be2b9e8050b9e5a7e9b10a93d
[ "MIT" ]
2
2019-08-29T06:46:02.000Z
2020-08-31T12:56:59.000Z
import os import fnmatch # extensions can be a single tring like '.png' or '.jpg' # or a list of extensions. they should all be lowercase # but the . is important. def list_all_files(directory, extensions=None): for root, dirnames, filenames in os.walk(directory): for filename in filenames: base, ext = os.path.splitext(filename) joined = os.path.join(root, filename) if extensions is None or ( len(ext) and ext.lower() in extensions ): yield joined
39.615385
80
0.660194
0
0
350
0.679612
0
0
0
0
136
0.264078
7f8dc67d585101b5b8e1bb738d00fbeb7fa08007
452
py
Python
Capitulo_02/exercise2_6.py
thiagosouzalink/my_codes-exercices-book-curso_intensivo_de_python
841aa855a7450ad3d0ba65393ba0b6debcd6a770
[ "MIT" ]
null
null
null
Capitulo_02/exercise2_6.py
thiagosouzalink/my_codes-exercices-book-curso_intensivo_de_python
841aa855a7450ad3d0ba65393ba0b6debcd6a770
[ "MIT" ]
null
null
null
Capitulo_02/exercise2_6.py
thiagosouzalink/my_codes-exercices-book-curso_intensivo_de_python
841aa855a7450ad3d0ba65393ba0b6debcd6a770
[ "MIT" ]
null
null
null
""" 2.6 – Citação famosa 2: Repita o Exercício 2.5, porém, desta vez, armazene o nome da pessoa famosa em uma variável chamada famous_person. Em seguida, componha sua mensagem e armazene-a em uma nova variável chamada message. Exiba sua mensagem. """ famous_person = "René Descartes" message = "As paixões são todas boas por natureza e nós apenas temos de evitar o seu mau uso e os seus excessos." print(f"{famous_person} certa vez disse: {message}")
56.5
242
0.761062
0
0
0
0
0
0
0
0
426
0.918103
7f8ded4f80685086d5ad90cfec886cbe3a773f21
662
py
Python
algorithm/lin_search.py
terasakisatoshi/pythonCodes
baee095ecee96f6b5ec6431267cdc6c40512a542
[ "MIT" ]
null
null
null
algorithm/lin_search.py
terasakisatoshi/pythonCodes
baee095ecee96f6b5ec6431267cdc6c40512a542
[ "MIT" ]
null
null
null
algorithm/lin_search.py
terasakisatoshi/pythonCodes
baee095ecee96f6b5ec6431267cdc6c40512a542
[ "MIT" ]
null
null
null
import random import copy import time from numba import jit from array_creator import create_test_set from measure import get_elapsed_data @get_elapsed_data def scratch_lin_search(test_set): hit = False for key, arr in test_set: for i in arr: if i == key: break @get_elapsed_data def std_search(test_set): for key, arr in test_set: if key in arr: continue def main(): size = 100000 trial = 1 test_set = create_test_set(size, trial) original = list(range(size)) print(scratch_lin_search(test_set)) print(std_search(test_set)) if __name__ == '__main__': main()
18.914286
43
0.663142
0
0
0
0
283
0.427492
0
0
10
0.015106
7f90b833e66c95aaa6e86ee20476290414956557
3,997
py
Python
setup.py
cdeil/astroquery
1bbb9f8ea0347abb1081dba52a66772a03408f11
[ "BSD-3-Clause" ]
null
null
null
setup.py
cdeil/astroquery
1bbb9f8ea0347abb1081dba52a66772a03408f11
[ "BSD-3-Clause" ]
null
null
null
setup.py
cdeil/astroquery
1bbb9f8ea0347abb1081dba52a66772a03408f11
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst # Use "distribute" - the setuptools fork that supports python 3. from distribute_setup import use_setuptools use_setuptools() from distutils.command import sdist import glob import os import sys from setuptools import setup, find_packages #A dirty hack to get around some early import/configurations ambiguities #This is the same as setup_helpers.set_build_mode(), but does not require #importing setup_helpers if sys.version_info[0] >= 3: import builtins else: import __builtin__ as builtins builtins._PACKAGE_SETUP_ = True import astropy from astropy import setup_helpers from astropy.version_helper import get_git_devstr, generate_version_py # Set affiliated package-specific settings PACKAGENAME = 'astroquery' DESCRIPTION = 'Functions and classes to access online data resources' LICENSE = 'BSD' #version should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386) version = '0.0.dev' # Indicates if this version is a release version release = 'dev' not in version # Adjust the compiler in case the default on this platform is to use a # broken one. setup_helpers.adjust_compiler() if not release: version += get_git_devstr(False) generate_version_py(PACKAGENAME, version, release, setup_helpers.get_debug_option()) # Use the find_packages tool to locate all packages and modules packagenames = find_packages() # Treat everything in scripts except README.rst as a script to be installed scripts = glob.glob(os.path.join('scripts', '*')) scripts.remove(os.path.join('scripts', 'README.rst')) # This dictionary stores the command classes used in setup below cmdclassd = {'test': setup_helpers.setup_test_command(PACKAGENAME), # Use distutils' sdist because it respects package_data. # setuptools/distributes sdist requires duplication of # information in MANIFEST.in 'sdist': sdist.sdist, # Use a custom build command which understands additional # commandline arguments 'build': setup_helpers.AstropyBuild, # Use a custom install command which understands additional # commandline arguments 'install': setup_helpers.AstropyInstall } if setup_helpers.HAVE_CYTHON and not release: from Cython.Distutils import build_ext # Builds Cython->C if in dev mode and Cython is present cmdclassd['build_ext'] = setup_helpers.wrap_build_ext(build_ext) else: cmdclassd['build_ext'] = setup_helpers.wrap_build_ext() if hasattr(setup_helpers,'AstropyBuildSphinx') and setup_helpers.AstropyBuildSphinx is not None: cmdclassd['build_sphinx'] = setup_helpers.AstropyBuildSphinx # Set our custom command class mapping in setup_helpers, so that # setup_helpers.get_distutils_option will use the custom classes. setup_helpers.cmdclassd = cmdclassd # Additional C extensions that are not Cython-based should be added here. extensions = [] # A dictionary to keep track of all package data to install package_data = {PACKAGENAME: ['data/*']} # A dictionary to keep track of extra packagedir mappings package_dirs = {} # Update extensions, package_data, packagenames and package_dirs from # any sub-packages that define their own extension modules and package # data. See the docstring for setup_helpers.update_package_files for # more details. setup_helpers.update_package_files(PACKAGENAME, extensions, package_data, packagenames, package_dirs) setup(name=PACKAGENAME, version=version, description=DESCRIPTION, packages=packagenames, package_data=package_data, package_dir=package_dirs, ext_modules=extensions, scripts=scripts, requires=['astropy'], install_requires=['astropy'], provides=[PACKAGENAME], license=LICENSE, cmdclass=cmdclassd, zip_safe=False, use_2to3=True )
33.033058
96
0.739304
0
0
0
0
0
0
0
0
1,896
0.474356
7f910ebedcd5c2b2f971ebd3398b107397e47933
606
py
Python
dapr/serializers/base.py
mukundansundararajan/python-sdk
2ee94e31292a650135b97bc3c70e3eca885c9b47
[ "MIT" ]
null
null
null
dapr/serializers/base.py
mukundansundararajan/python-sdk
2ee94e31292a650135b97bc3c70e3eca885c9b47
[ "MIT" ]
null
null
null
dapr/serializers/base.py
mukundansundararajan/python-sdk
2ee94e31292a650135b97bc3c70e3eca885c9b47
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ Copyright (c) Microsoft Corporation. Licensed under the MIT License. """ from abc import ABC, abstractmethod from typing import Any, Callable, Optional, Type class Serializer(ABC): """Serializer base class.""" @abstractmethod def serialize( self, obj: object, custom_hook: Optional[Callable[[object], bytes]] = None) -> bytes: ... @abstractmethod def deserialize( self, data: bytes, data_type: Optional[Type] = object, custom_hook: Optional[Callable[[bytes], object]] = None) -> Any: ...
23.307692
78
0.612211
415
0.684818
0
0
348
0.574257
0
0
127
0.209571
7f91f89b2955e012b51865efdeed3fe5d4ed3284
84
py
Python
htdocs/MPM - Copy/MM/apps.py
anji-a/Apache
d08893821cb0251b8f99197a7b6893c95db4eb6e
[ "Apache-2.0" ]
null
null
null
htdocs/MPM - Copy/MM/apps.py
anji-a/Apache
d08893821cb0251b8f99197a7b6893c95db4eb6e
[ "Apache-2.0" ]
null
null
null
htdocs/MPM - Copy/MM/apps.py
anji-a/Apache
d08893821cb0251b8f99197a7b6893c95db4eb6e
[ "Apache-2.0" ]
2
2020-11-04T06:30:46.000Z
2020-11-06T11:00:53.000Z
from django.apps import AppConfig class MmConfig(AppConfig): name = 'MM'
14
34
0.678571
43
0.511905
0
0
0
0
0
0
4
0.047619
7f9293a745961e293df2ce58166bf397c0164a1c
258
py
Python
reto-05/eleloi/main.py
jlnc/reto-python
7611b5ae231812b3bde1893a303af1c22765f859
[ "MIT" ]
18
2022-02-14T19:15:21.000Z
2022-03-29T12:56:18.000Z
reto-05/eleloi/main.py
jlnc/reto-python
7611b5ae231812b3bde1893a303af1c22765f859
[ "MIT" ]
22
2022-03-05T23:48:04.000Z
2022-03-31T04:33:58.000Z
reto-05/eleloi/main.py
jlnc/reto-python
7611b5ae231812b3bde1893a303af1c22765f859
[ "MIT" ]
21
2022-02-16T17:52:05.000Z
2022-03-28T20:13:46.000Z
import _config import _utils CONFIG_PATH = "config.toml" def main(): config = _config.read(CONFIG_PATH) for path_name in [x.in_ for x in config.directorios]: _utils.list_jpg_files_in_dir(path_name) if __name__ == "__main__": main()
16.125
57
0.697674
0
0
0
0
0
0
0
0
23
0.089147
7f92bdbd76e88952ccd41f7b4bb7059cb29661bf
360
py
Python
ravel/utils/data.py
eykd/ravel
bcd4a748c74acd39f09f4eab6a8cb65660e857b5
[ "MIT" ]
1
2020-05-16T12:27:44.000Z
2020-05-16T12:27:44.000Z
ravel/utils/data.py
eykd/ravel
bcd4a748c74acd39f09f4eab6a8cb65660e857b5
[ "MIT" ]
null
null
null
ravel/utils/data.py
eykd/ravel
bcd4a748c74acd39f09f4eab6a8cb65660e857b5
[ "MIT" ]
null
null
null
def merge_dicts(*dicts): """ Given any number of dicts, shallow copy and merge into a new dict, precedence goes to key value pairs in latter dicts. """ result = {} for d in dicts: result.update(d) return result def evaluate_term(term, **kwargs): return term.evaluate(**kwargs) if hasattr(term, 'evaluate') else term
22.5
73
0.65
0
0
0
0
0
0
0
0
148
0.411111
7f92e83ec063df76628d1922d90de32e41d7fd7e
11,067
py
Python
skyline.py
MyrrhDev/skyline-telegramBot
55b0d597b0710f2ae1314e3359b08c02276f094a
[ "MIT" ]
null
null
null
skyline.py
MyrrhDev/skyline-telegramBot
55b0d597b0710f2ae1314e3359b08c02276f094a
[ "MIT" ]
null
null
null
skyline.py
MyrrhDev/skyline-telegramBot
55b0d597b0710f2ae1314e3359b08c02276f094a
[ "MIT" ]
null
null
null
import random class Skyline: area = 0 max_height = 0 xmin = 0 height = [] width = [] x_pos = [] xmax = 0 def __init__(self, xmin, height, xmax): self.xmin = xmin self.height = [height] * ((xmax - xmin) + 1) self.xmax = xmax self.x_pos = list(range(xmin, xmax + 1)) self.area = sum(self.height[:-1]) self.max_height = height times = self.xmax - self.xmin width_array = [1.0] * times width_array.append(-0.5) self.width = width_array # Devuelve una lista para hacer el plot de la(s) alturas del skyline def get_height(self): return self.height # Devuelve una lista para hacer el plot de las posicion en el eje x # e.g. [1, 2, 3] def get_x_pos(self): return self.x_pos # Devuelve una lista para hacer el plot de las width def get_width(self): return self.width # Devuelve el valor acumulado del area del Skyline def get_area(self): return self.area # Devuelve el valor maximo de altura de un Skyline def get_max_height(self): return self.max_height # Update tabla de simbolos context def update_symbols(name_id, ts_dict, value): ts_dict[name_id] = value return ts_dict # Retorna type = NoneType si no encuentra el simbolo en la ts # sino, retorna el valor def find_symbol(name_id, ts_dict): if name_id in ts_dict: return ts_dict[name_id] # Functions: # Mover el skyline a la derecha def move_right(self, num): self.xmin = self.xmin + num self.xmax = self.xmax + num self.x_pos = [x + num for x in self.x_pos] # Mover el skyline a la izquierda def move_left(self, num): self.xmin = self.xmin - num self.xmax = self.xmax - num self.x_pos = [x - num for x in self.x_pos] # Replicacion del mismo skyline def multiply_n(self, n, num): mul_heights = self.get_height().copy() mul_width = self.get_width().copy() mul_x_pos = self.get_x_pos().copy() size = len(mul_x_pos) m_max = self.xmax for i in range(n - 1): m_min = m_max m_max = m_max + size - 1 mul_x_pos += list(range(m_min, m_max + 1)) mult_skl = Skyline(0, 0, 0) mult_skl.c_skyline(mul_x_pos, mul_heights * n, mul_width * n, num) return mult_skl def sm_calculate_width(self, x_pos_mn, x_pos_mx, s_width): times = x_pos_mx - x_pos_mn sp_width = [s_width] * times sp_width.append(-0.5) return sp_width def sm_modify_heights(self, l_heights, i, j, s_height): k = 0 while i < j: if l_heights[i] < s_height[k]: l_heights[i] = s_height[k] i += 1 k += 1 return l_heights def clean_heights(self, x_pos, h_pos): n_he = {} for i, j in zip(x_pos, h_pos): n_he[i] = j return list(n_he.keys()), list(n_he.values()) # Suma una skyline def sumar_skyline(self, sky_in, s_width=1): sum_x_pos = [] sum_heights = [] sum_width = [] s_xmin = sky_in.xmin s_height = sky_in.height s_xmax = sky_in.xmax if s_xmin == 0 and s_xmax == 0 and s_height[0] == 0: return self if (s_xmin < self.xmin and s_xmax < self.xmin) or (s_xmin > self.xmax and s_xmax > self.xmax): sp_width = self.sm_calculate_width(s_xmin, s_xmax, s_width) # left add if s_xmin < self.xmin and s_xmax < self.xmin: diff = ((self.xmax - s_xmin) + 1) - len(s_height) - len(self.get_height()) sp_cero_fill = [0] * diff sum_x_pos = list(range(s_xmin, self.xmax + 1)) sum_heights = s_height + sp_cero_fill + self.get_height() sum_width = sp_width + sp_cero_fill + self.get_width() # right add elif s_xmin > self.xmax and s_xmax > self.xmax: diff = ((s_xmax - self.xmin) + 1) - len(s_height) - len(self.get_height()) sp_cero_fill = [0] * diff sum_x_pos = list(range(self.xmin, s_xmax + 1)) sum_heights = self.get_height() + sp_cero_fill + s_height sum_width = self.get_width() + sp_cero_fill + sp_width # completamente adentro elif s_xmin >= self.xmin and s_xmax <= self.xmax: sum_heights = self.get_height().copy() sum_x_pos = self.get_x_pos().copy() i = sum_x_pos.index(s_xmin) j = sum_x_pos.index(s_xmax) sum_heights = self.sm_modify_heights(sum_heights, i, j, s_height) sum_width = self.sm_calculate_width(sum_x_pos[0], sum_x_pos[-1], s_width) # completamente afuera elif s_xmin < self.xmin and s_xmax > self.xmax: sp_height = self.get_height().copy() sum_heights = s_height.copy() sum_x_pos = list(range(s_xmin, s_xmax + 1)) i = sum_x_pos.index(self.xmin) j = sum_x_pos.index(self.xmax) k = 0 while i < j: if sp_height[k] > sum_heights[i]: sum_heights[i] = sp_height[k] i += 1 k += 1 sum_width = self.sm_calculate_width(sum_x_pos[0], sum_x_pos[-1], s_width) # solo uno adentro elif (s_xmin < self.xmin and s_xmax <= self.xmax) or (s_xmin >= self.xmin and s_xmax > self.xmax): sum_heights = self.get_height().copy() if (s_xmin < self.xmin) and (s_xmax <= self.xmax): # left add sum_x_pos = list(range(s_xmin, self.xmax + 1)) s_fill = len(sum_x_pos) - len(sum_heights) zero = [0] * s_fill sum_heights = zero + sum_heights i = sum_x_pos.index(s_xmin) j = sum_x_pos.index(s_xmax) sum_heights = self.sm_modify_heights(sum_heights, i, j, s_height) else: sum_x_pos = list(range(self.xmin, s_xmax + 1)) s_fill = len(sum_x_pos) - len(sum_heights) zero = [0] * s_fill k = -1 p = self.xmax - s_xmin if s_height[p + 1] < sum_heights[-1]: k = sum_x_pos.index(self.xmax) sum_heights = sum_heights + zero i = sum_x_pos.index(s_xmin) j = sum_x_pos.index(s_xmax) sum_heights = self.sm_modify_heights(sum_heights, i, j + 1, s_height) if k > -1: sum_heights[k] = s_height[p] sum_width = self.sm_calculate_width(sum_x_pos[0], sum_x_pos[-1], s_width) new_sky_s = Skyline(0, 0, 0) new_sky_s.c_skyline(sum_x_pos, sum_heights, sum_width) return new_sky_s # Crea un skyline de la informacion de lists def c_skyline(self, c_x_pos, c_heights, c_width, m_num=-1, area=-1): self.xmin = c_x_pos[0] self.height = c_heights self.xmax = c_x_pos[-1] self.x_pos = c_x_pos if m_num > -1: self.area = sum(c_heights) - m_num elif area > -1: self.area = area else: self.area = sum(c_heights[:-1]) self.max_height = max(c_heights) self.width = c_width def inter_skyline(self, inter_sky): sum_x_pos = [] s_xmin = inter_sky.xmin s_height = inter_sky.height s_xmax = inter_sky.xmax if (self.xmin <= s_xmin) and (s_xmax <= self.xmax): sum_x_pos = list(range(s_xmin, s_xmax + 1)) s_x_pos = inter_sky.get_x_pos().copy() (c_x_pos, s_height) = self.clean_heights(s_x_pos, s_height) r_ind_i = c_x_pos.index(s_xmin) r_ind_j = c_x_pos.index(s_xmax) s_height = s_height[r_ind_i:r_ind_j + 1] # left out elif (s_xmin < self.xmin) and (s_xmax <= self.xmax): sum_x_pos = list(range(self.xmin, s_xmax + 1)) s_x_pos = inter_sky.get_x_pos().copy() (c_x_pos, s_height) = self.clean_heights(s_x_pos, s_height) l_ind = c_x_pos.index(self.xmin) s_height = s_height[l_ind:] # right out elif (s_xmin >= self.xmin) and (s_xmax > self.xmax): sum_x_pos = list(range(s_xmin, self.xmax + 1)) s_x_pos = inter_sky.get_x_pos().copy() (c_x_pos, s_height) = self.clean_heights(s_x_pos, s_height) r_ind = c_x_pos.index(self.xmax) s_height = s_height[:r_ind + 1] else: sum_x_pos = list(range(self.xmin, self.xmax + 1)) s_x_pos = inter_sky.get_x_pos().copy() (c_x_pos, s_height) = self.clean_heights(s_x_pos, s_height) r_ind_i = c_x_pos.index(self.xmin) r_ind_j = c_x_pos.index(self.xmax) s_height = s_height[r_ind_i:r_ind_j + 1] sum_width = self.sm_calculate_width(sum_x_pos[0], sum_x_pos[-1], 1) sum_heights = self.get_height().copy() m_x_pos = self.get_x_pos().copy() (m_x_pos, sum_heights) = self.clean_heights(m_x_pos, sum_heights) i = m_x_pos.index(sum_x_pos[0]) j = m_x_pos.index(sum_x_pos[-1]) sum_heights = sum_heights[i:j + 1] x = 0 while x < len(sum_heights): if sum_heights[x] > s_height[x]: sum_heights[x] = s_height[x] x += 1 inter_skl = Skyline(0, 0, 0) inter_skl.c_skyline(sum_x_pos, sum_heights, sum_width) return inter_skl def reflect_skyline(self, area): reflect_heights = self.get_height().copy() reflect_heights.reverse() reflect_heights.pop(0) reflect_heights.append(reflect_heights[-1]) r_width = self.get_width().copy() r_x_pos = self.get_x_pos().copy() reflect_skl = Skyline(0, 0, 0) reflect_skl.c_skyline(r_x_pos, reflect_heights, r_width, -1, area) return reflect_skl # n - numero de edificios creados # h - una altura de 0 a h aleatoria # w - una width de 1 a w aleatoria # xmin, xmax - una posicion de inicio/final entre xmin, xmax def random_skylines(n, h, w, xmin, xmax): temp_sky = Skyline(0, 0, 0) i = 0 while i < n: rd_xmin = random.randint(xmin, xmax - 1) rd_xmax = random.randint(rd_xmin + 1, xmax) rd_height = random.randint(0, h) rd_width = random.randint(1, w) rd_x_pos = list(range(rd_xmin, rd_xmax + 1)) rd_heights_list = [rd_height] * ((rd_xmax - rd_xmin) + 1) times = rd_xmax - rd_xmin width_array = [rd_width] * times width_array.append(-0.5) tp_sky = Skyline(0, 0, 0) tp_sky.c_skyline(rd_x_pos, rd_heights_list, width_array) temp_sky = temp_sky.sumar_skyline(tp_sky) i += 1 return temp_sky
36.524752
106
0.562393
11,050
0.998464
0
0
0
0
0
0
868
0.078431
7f94715fd95a0d6e266114d4c58a4a00c641770c
1,699
py
Python
code/default/smart_router/local/socket_wrap.py
wuyongwen/XX-Net
313aefd862b8f230f7c61dc29db1b2b93a17e6ab
[ "BSD-2-Clause" ]
null
null
null
code/default/smart_router/local/socket_wrap.py
wuyongwen/XX-Net
313aefd862b8f230f7c61dc29db1b2b93a17e6ab
[ "BSD-2-Clause" ]
null
null
null
code/default/smart_router/local/socket_wrap.py
wuyongwen/XX-Net
313aefd862b8f230f7c61dc29db1b2b93a17e6ab
[ "BSD-2-Clause" ]
null
null
null
import time class SocketWrap(object): def __init__(self, sock, ip=None, port=None, host="", target=""): self._sock = sock self.ip = ip self.port = port self.host = host self.target = target self.recved_data = 0 self.recved_times = 0 self.create_time = time.time() self.closed = False self.replace_pattern = None self.buf = [] self.buf_size = 0 self.buf_num = 0 def __getattr__(self, attr): return getattr(self._sock, attr) def close(self): self._sock.close() self.closed = True def is_closed(self): return self.closed def __str__(self): return "%s[%s]:%d" % (self.host, self.ip, self.port) def recv(self, bufsiz, flags=0): d = self._sock.recv(bufsiz, flags) if self.replace_pattern and " HTTP/1.1\r\n" in d: line_end = d.find("\r\n") req_line = d[:line_end] words = req_line.split() if len(words) == 3: method, url, http_version = words url = url.replace(self.replace_pattern[0], self.replace_pattern[1]) d = "%s %s %s" % (method, url, http_version) + d[line_end:] return d def add_dat(self, data): self.buf.append(data) self.buf_size += len(data) self.buf_num += 1 def get_dat(self): if not self.buf: return "" dat = self.buf.pop(0) self.buf_size -= len(dat) self.buf_num -= 1 return dat def restore_dat(self, dat): self.buf.insert(0, dat) self.buf_size += len(dat) self.buf_num += 1
25.742424
83
0.535021
1,685
0.99176
0
0
0
0
0
0
48
0.028252
7f94ad38bbb98e281664244307b46754d21960c0
2,859
py
Python
tests/unit/test_handler_marker.py
Rogdham/bigxml
ab983f50c49bf861c3b61e3e636db90f9ff19ed1
[ "MIT" ]
4
2020-08-24T13:31:46.000Z
2022-01-25T08:03:19.000Z
tests/unit/test_handler_marker.py
Rogdham/bigxml
ab983f50c49bf861c3b61e3e636db90f9ff19ed1
[ "MIT" ]
null
null
null
tests/unit/test_handler_marker.py
Rogdham/bigxml
ab983f50c49bf861c3b61e3e636db90f9ff19ed1
[ "MIT" ]
null
null
null
import pytest from bigxml.handler_marker import _ATTR_MARKER, xml_handle_element, xml_handle_text from bigxml.nodes import XMLText def test_one_maker_element(): @xml_handle_element("abc", "def") def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == (("abc", "def"),) assert fct(7) == 42 def test_one_maker_element_on_method(): class Klass: def __init__(self, multiplier): self.multiplier = multiplier @xml_handle_element("abc", "def") def method(self, arg): return arg * self.multiplier instance = Klass(6) assert getattr(instance.method, _ATTR_MARKER, None) == (("abc", "def"),) assert instance.method(7) == 42 def test_one_maker_element_on_static_method(): class Klass: @xml_handle_element("abc", "def") @staticmethod def method(arg): return arg * 6 assert getattr(Klass.method, _ATTR_MARKER, None) == (("abc", "def"),) assert Klass.method(7) == 42 def test_one_maker_element_on_method_before_staticmethod(): class Klass: @staticmethod @xml_handle_element("abc", "def") def method(arg): return arg * 6 assert getattr(Klass.method, _ATTR_MARKER, None) == (("abc", "def"),) assert Klass.method(7) == 42 def test_several_maker_element(): @xml_handle_element("abc", "def") @xml_handle_element("ghi") @xml_handle_element("klm", "opq", "rst") def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == ( ("klm", "opq", "rst"), ("ghi",), ("abc", "def"), ) assert fct(7) == 42 def test_one_maker_element_no_args(): with pytest.raises(TypeError): @xml_handle_element() def fct(arg): # pylint: disable=unused-variable return arg * 6 def test_one_marker_text_no_call(): @xml_handle_text def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == ((XMLText.name,),) assert fct(7) == 42 def test_one_marker_text_no_args(): @xml_handle_text() def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == ((XMLText.name,),) assert fct(7) == 42 def test_one_marker_text_args(): @xml_handle_text("abc", "def") def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == ( ( "abc", "def", XMLText.name, ), ) assert fct(7) == 42 def test_mixed_markers(): @xml_handle_element("abc", "def") @xml_handle_text("ghi") @xml_handle_element("klm", "opq", "rst") def fct(arg): return arg * 6 assert getattr(fct, _ATTR_MARKER, None) == ( ("klm", "opq", "rst"), ("ghi", XMLText.name), ("abc", "def"), ) assert fct(7) == 42
23.628099
83
0.593214
464
0.162295
0
0
982
0.343477
0
0
253
0.088492
7f94c10f45c727e1a813931dfa3f4ee01c73a848
8,073
py
Python
gamestonk_terminal/due_diligence/stockgrid_dd_view.py
brocki/GamestonkTerminal
d1505359e595a50bf22c2c5601f261686117310f
[ "MIT" ]
1
2021-06-21T23:31:20.000Z
2021-06-21T23:31:20.000Z
gamestonk_terminal/due_diligence/stockgrid_dd_view.py
brocki/GamestonkTerminal
d1505359e595a50bf22c2c5601f261686117310f
[ "MIT" ]
1
2021-04-20T00:26:20.000Z
2021-04-20T00:26:20.000Z
gamestonk_terminal/due_diligence/stockgrid_dd_view.py
alokan/GamestonkTerminal
d7bb5a9456250114da83172e5d49beb242df5eed
[ "MIT" ]
null
null
null
"""Stockgrid DD View""" __docformat__ = "numpy" import argparse from typing import List from datetime import timedelta import requests import pandas as pd import matplotlib.pyplot as plt from tabulate import tabulate from gamestonk_terminal.config_plot import PLOT_DPI from gamestonk_terminal.feature_flags import USE_ION from gamestonk_terminal.helper_funcs import ( parse_known_args_and_warn, plot_autoscale, check_positive, ) def shortview(ticker: str, other_args: List[str]): """Plot price vs short interest volume Parameters ---------- ticker: str Stock to plot for other_args : List[str] Argparse arguments """ parser = argparse.ArgumentParser( prog="shortvol", add_help=False, description="Shows price vs short interest volume. [Source: Stockgrid]", ) parser.add_argument( "-n", "--number", help="Number of last open market days to show", type=check_positive, default=10 if "-r" in other_args else 120, dest="num", ) parser.add_argument( "-r", action="store_true", default=False, help="Flag to print raw data instead", dest="raw", ) try: ns_parser = parse_known_args_and_warn(parser, other_args) if not ns_parser: return link = f"https://stockgridapp.herokuapp.com/get_dark_pool_individual_data?ticker={ticker}" response = requests.get(link) df = pd.DataFrame(response.json()["individual_short_volume_table"]["data"]) df["date"] = pd.to_datetime(df["date"]) if ns_parser.raw: df = df.sort_values(by="date", ascending=False) df["Short Vol. (1M)"] = df["short_volume"] / 1_000_000 df["Short Vol. %"] = df["short_volume%"] * 100 df["Short Exempt Vol. (1K)"] = df["short_exempt_volume"] / 1_000 df["Total Vol. (1M)"] = df["total_volume"] / 1_000_000 df = df[ [ "date", "Short Vol. (1M)", "Short Vol. %", "Short Exempt Vol. (1K)", "Total Vol. (1M)", ] ] df.date = df.date.dt.date print( tabulate( df.iloc[: ns_parser.num], tablefmt="fancy_grid", floatfmt=".2f", headers=list(df.columns), showindex=False, ) ) else: prices = response.json()["prices"]["prices"] _, axes = plt.subplots( 2, 1, figsize=(plot_autoscale()), dpi=PLOT_DPI, gridspec_kw={"height_ratios": [2, 1]}, ) axes[0].bar( df["date"], df["total_volume"] / 1_000_000, width=timedelta(days=1), color="b", alpha=0.4, label="Total Volume", ) axes[0].bar( df["date"], df["short_volume"] / 1_000_000, width=timedelta(days=1), color="r", alpha=0.4, label="Short Volume", ) axes[0].set_ylabel("Volume (1M)") ax2 = axes[0].twinx() ax2.plot( df["date"].values, prices[len(prices) - len(df) :], c="k", label="Price" ) ax2.set_ylabel("Price ($)") lines, labels = axes[0].get_legend_handles_labels() lines2, labels2 = ax2.get_legend_handles_labels() ax2.legend(lines + lines2, labels + labels2, loc="upper left") axes[0].set_xlim( df["date"].values[max(0, len(df) - ns_parser.num)], df["date"].values[len(df) - 1], ) axes[0].grid() axes[0].ticklabel_format(style="plain", axis="y") plt.title(f"Price vs Short Volume Interest for {ticker}") plt.gcf().autofmt_xdate() axes[1].plot( df["date"].values, 100 * df["short_volume%"], c="green", label="Short Vol. %", ) axes[1].set_xlim( df["date"].values[max(0, len(df) - ns_parser.num)], df["date"].values[len(df) - 1], ) axes[1].set_ylabel("Short Vol. %") axes[1].grid(axis="y") lines, labels = axes[1].get_legend_handles_labels() axes[1].legend(lines, labels, loc="upper left") axes[1].set_ylim([0, 100]) if USE_ION: plt.ion() plt.show() print("") except Exception as e: print(e, "\n") def darkpos(ticker: str, other_args: List[str]): """Plot dark pool position Parameters ---------- ticker: str Stock to plot for other_args : List[str] Argparse arguments """ parser = argparse.ArgumentParser( prog="darkpos", add_help=False, description="Shows Net Short Vol. vs Position. [Source: Stockgrid]", ) parser.add_argument( "-n", "--number", help="Number of last open market days to show", type=check_positive, default=10 if "-r" in other_args else 120, dest="num", ) parser.add_argument( "-r", action="store_true", default=False, help="Flag to print raw data instead", dest="raw", ) try: ns_parser = parse_known_args_and_warn(parser, other_args) if not ns_parser: return link = f"https://stockgridapp.herokuapp.com/get_dark_pool_individual_data?ticker={ticker}" response = requests.get(link) df = pd.DataFrame(response.json()["individual_dark_pool_position_data"]) df["dates"] = pd.to_datetime(df["dates"]) if ns_parser.raw: df = df.sort_values(by="dates", ascending=False) df["Net Short Vol. (1k $)"] = df["dollar_net_volume"] / 1_000 df["Position (1M $)"] = df["dollar_dp_position"] df = df[ [ "dates", "Net Short Vol. (1k $)", "Position (1M $)", ] ] df["dates"] = df["dates"].dt.date print( tabulate( df.iloc[: ns_parser.num], tablefmt="fancy_grid", floatfmt=".2f", headers=list(df.columns), showindex=False, ) ) else: fig = plt.figure(figsize=plot_autoscale(), dpi=PLOT_DPI) ax = fig.add_subplot(111) ax.bar( df["dates"], df["dollar_net_volume"] / 1_000, color="r", alpha=0.4, label="Net Short Vol. (1k $)", ) ax.set_ylabel("Net Short Vol. (1k $)") ax2 = ax.twinx() ax2.plot( df["dates"].values, df["dollar_dp_position"], c="tab:blue", label="Position (1M $)", ) ax2.set_ylabel("Position (1M $)") lines, labels = ax.get_legend_handles_labels() lines2, labels2 = ax2.get_legend_handles_labels() ax2.legend(lines + lines2, labels + labels2, loc="upper left") ax.set_xlim( df["dates"].values[max(0, len(df) - ns_parser.num)], df["dates"].values[len(df) - 1], ) ax.grid() plt.title(f"Net Short Vol. vs Position for {ticker}") plt.gcf().autofmt_xdate() if USE_ION: plt.ion() plt.show() print("") except Exception as e: print(e, "\n")
28.935484
98
0.484454
0
0
0
0
0
0
0
0
1,933
0.23944
7f9565f8eece01aa89f290f3687bbf816b1d2520
2,428
py
Python
tests/schema/models_no_auto_create_m2m.py
Alirezaja1384/tortoise-orm
e7ecbc81d43860a3b0b6d5d9da27497ed6234049
[ "Apache-2.0" ]
33
2018-04-07T09:50:22.000Z
2018-08-24T10:25:29.000Z
tests/schema/models_no_auto_create_m2m.py
Alirezaja1384/tortoise-orm
e7ecbc81d43860a3b0b6d5d9da27497ed6234049
[ "Apache-2.0" ]
41
2018-03-29T17:09:18.000Z
2018-08-24T16:37:38.000Z
tests/schema/models_no_auto_create_m2m.py
Alirezaja1384/tortoise-orm
e7ecbc81d43860a3b0b6d5d9da27497ed6234049
[ "Apache-2.0" ]
4
2018-06-27T08:45:11.000Z
2018-07-30T18:16:55.000Z
""" This example demonstrates SQL Schema generation for each DB type supported. """ from tortoise import fields from tortoise.fields import SET_NULL from tortoise.models import Model class Tournament(Model): tid = fields.SmallIntField(pk=True) name = fields.CharField(max_length=100, description="Tournament name", index=True) created = fields.DatetimeField(auto_now_add=True, description="Created */'`/* datetime") class Meta: table_description = "What Tournaments */'`/* we have" class Event(Model): id = fields.BigIntField(pk=True, description="Event ID") name = fields.TextField() tournament: fields.ForeignKeyRelation[Tournament] = fields.ForeignKeyField( "models.Tournament", related_name="events", description="FK to tournament" ) participants: fields.ManyToManyRelation["Team"] = fields.ManyToManyField( "models.Team", related_name="events", through="teamevents", description="How participants relate", on_delete=SET_NULL, ) modified = fields.DatetimeField(auto_now=True) prize = fields.DecimalField(max_digits=10, decimal_places=2, null=True) token = fields.CharField(max_length=100, description="Unique token", unique=True) key = fields.CharField(max_length=100) class Meta: table_description = "This table contains a list of all the events" unique_together = [("name", "prize"), ["tournament", "key"]] class TeamEvent(Model): team: fields.ForeignKeyRelation["Team"] = fields.ForeignKeyField( "models.Team", related_name="teams" ) event: fields.ForeignKeyRelation[Event] = fields.ForeignKeyField( "models.Event", related_name="events" ) score = fields.IntField() class Meta: table = "teamevents" table_description = "How participants relate" unique_together = ("team", "event") class Team(Model): name = fields.CharField(max_length=50, pk=True, description="The TEAM name (and PK)") key = fields.IntField() manager: fields.ForeignKeyRelation["Team"] = fields.ForeignKeyField( "models.Team", related_name="team_members", null=True ) talks_to: fields.ManyToManyRelation["Team"] = fields.ManyToManyField( "models.Team", related_name="gets_talked_to" ) class Meta: table_description = "The TEAMS!" indexes = [("manager", "key"), ["manager_id", "name"]]
34.685714
92
0.68575
2,232
0.919275
0
0
0
0
0
0
601
0.247529
7f957a19c84f447fc2196f4923469f1f2c048f4b
9,025
py
Python
tests/functional/wsgi/v1_1/test_claims.py
vkmc/zaqar-websocket
a93c460a28e541b5cc8b425d5fb4d69e78ab9f4b
[ "Apache-2.0" ]
1
2015-03-22T18:41:13.000Z
2015-03-22T18:41:13.000Z
tests/functional/wsgi/v1_1/test_claims.py
vkmc/zaqar-websocket
a93c460a28e541b5cc8b425d5fb4d69e78ab9f4b
[ "Apache-2.0" ]
null
null
null
tests/functional/wsgi/v1_1/test_claims.py
vkmc/zaqar-websocket
a93c460a28e541b5cc8b425d5fb4d69e78ab9f4b
[ "Apache-2.0" ]
null
null
null
# Copyright (c) 2014 Rackspace, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # See the License for the specific language governing permissions and # limitations under the License. import uuid import ddt from zaqar.tests.functional import base from zaqar.tests.functional import helpers @ddt.ddt class TestClaims(base.V1_1FunctionalTestBase): """Tests for Claims.""" server_class = base.ZaqarServer def setUp(self): super(TestClaims, self).setUp() self.headers = helpers.create_zaqar_headers(self.cfg) self.client.headers = self.headers self.queue = uuid.uuid1() self.queue_url = ("{url}/{version}/queues/{queue}".format( url=self.cfg.zaqar.url, version="v1.1", queue=self.queue)) self.client.put(self.queue_url) self.claim_url = self.queue_url + '/claims' self.client.set_base_url(self.claim_url) # Post Messages url = self.queue_url + '/messages' doc = helpers.create_message_body_v1_1( messagecount=self.limits.max_messages_per_page) for i in range(10): self.client.post(url, data=doc) @ddt.data({}, {'limit': 2}) def test_claim_messages(self, params): """Claim messages.""" message_count = params.get('limit', self.limits.max_messages_per_claim_or_pop) doc = {"ttl": 300, "grace": 100} result = self.client.post(params=params, data=doc) self.assertEqual(result.status_code, 201) self.assertSchema(result.json(), 'claim_create') actual_message_count = len(result.json()['messages']) self.assertMessageCount(actual_message_count, message_count) response_headers = set(result.headers.keys()) self.assertIsSubset(self.headers_response_with_body, response_headers) test_claim_messages.tags = ['smoke', 'positive'] def test_query_claim(self): """Query Claim.""" params = {'limit': 1} doc = {"ttl": 300, "grace": 100} result = self.client.post(params=params, data=doc) location = result.headers['Location'] url = self.cfg.zaqar.url + location result = self.client.get(url) self.assertEqual(result.status_code, 200) test_query_claim.tags = ['smoke', 'positive'] @ddt.data({}, {"grace": 100}) def test_claim_default_ttl(self, doc): """Create claim with default TTL and grace values.""" params = {'limit': 1} result = self.client.post(params=params, data=doc) self.assertEqual(result.status_code, 201) location = result.headers['Location'] url = self.cfg.zaqar.url + location result = self.client.get(url) self.assertEqual(result.status_code, 200) default_ttl = result.json()['ttl'] self.assertEqual(default_ttl, self.resource_defaults.claim_ttl) test_claim_default_ttl.tags = ['smoke', 'positive'] def test_claim_more_than_allowed(self): """Claim more than max allowed per request. Zaqar allows a maximum of 20 messages per claim by default. """ params = {"limit": self.limits.max_messages_per_claim_or_pop + 1} doc = {"ttl": 300, "grace": 100} result = self.client.post(params=params, data=doc) self.assertEqual(result.status_code, 400) test_claim_more_than_allowed.tags = ['negative'] def test_claim_patch(self): """Update Claim.""" # Test Setup - Post Claim doc = {"ttl": 300, "grace": 400} result = self.client.post(data=doc) self.assertEqual(result.status_code, 201) # Patch Claim claim_location = result.headers['Location'] url = self.cfg.zaqar.url + claim_location doc_updated = {"ttl": 300, 'grace': 60} result = self.client.patch(url, data=doc_updated) self.assertEqual(result.status_code, 204) # verify that the claim TTL is updated result = self.client.get(url) new_ttl = result.json()['ttl'] self.assertEqual(doc_updated['ttl'], new_ttl) test_claim_patch.tags = ['smoke', 'positive'] def test_delete_claimed_message(self): """Delete message belonging to a Claim.""" # Test Setup - Post claim doc = {"ttl": 60, "grace": 60} result = self.client.post(data=doc) self.assertEqual(result.status_code, 201) # Delete Claimed Messages for rst in result.json()['messages']: href = rst['href'] url = self.cfg.zaqar.url + href result = self.client.delete(url) self.assertEqual(result.status_code, 204) test_delete_claimed_message.tags = ['smoke', 'positive'] def test_claim_release(self): """Release Claim.""" doc = {"ttl": 300, "grace": 100} result = self.client.post(data=doc) self.assertEqual(result.status_code, 201) # Extract claim location and construct the claim URL. location = result.headers['Location'] url = self.cfg.zaqar.url + location # Release Claim. result = self.client.delete(url) self.assertEqual(result.status_code, 204) test_claim_release.tags = ['smoke', 'positive'] @ddt.data(10000000000000000000, -100, 1, 59, 43201, -10000000000000000000) def test_claim_invalid_ttl(self, ttl): """Post Claim with invalid TTL. The request JSON body will have a TTL value outside the allowed range.Allowed ttl values is 60 <= ttl <= 43200. """ doc = {"ttl": ttl, "grace": 100} result = self.client.post(data=doc) self.assertEqual(result.status_code, 400) test_claim_invalid_ttl.tags = ['negative'] @ddt.data(10000000000000000000, -100, 1, 59, 43201, -10000000000000000000) def test_claim_invalid_grace(self, grace): """Post Claim with invalid grace. The request JSON body will have a grace value outside the allowed range.Allowed grace values is 60 <= grace <= 43200. """ doc = {"ttl": 100, "grace": grace} result = self.client.post(data=doc) self.assertEqual(result.status_code, 400) test_claim_invalid_grace.tags = ['negative'] @ddt.data(0, -100, 30, 10000000000000000000) def test_claim_invalid_limit(self, grace): """Post Claim with invalid limit. The request url will have a limit outside the allowed range. Allowed limit values are 0 < limit <= 20(default max). """ doc = {"ttl": 100, "grace": grace} result = self.client.post(data=doc) self.assertEqual(result.status_code, 400) test_claim_invalid_limit.tags = ['negative'] @ddt.data(10000000000000000000, -100, 1, 59, 43201, -10000000000000000000) def test_patch_claim_invalid_ttl(self, ttl): """Patch Claim with invalid TTL. The request JSON body will have a TTL value outside the allowed range.Allowed ttl values is 60 <= ttl <= 43200. """ doc = {"ttl": 100, "grace": 100} result = self.client.post(data=doc) self.assertEqual(result.status_code, 201) # Extract claim location and construct the claim URL. location = result.headers['Location'] url = self.cfg.zaqar.url + location # Patch Claim. doc = {"ttl": ttl} result = self.client.patch(url, data=doc) self.assertEqual(result.status_code, 400) test_patch_claim_invalid_ttl.tags = ['negative'] def test_query_non_existing_claim(self): """Query Non Existing Claim.""" path = '/non-existing-claim' result = self.client.get(path) self.assertEqual(result.status_code, 404) test_query_non_existing_claim.tags = ['negative'] def test_patch_non_existing_claim(self): """Patch Non Existing Claim.""" path = '/non-existing-claim' doc = {"ttl": 400} result = self.client.patch(path, data=doc) self.assertEqual(result.status_code, 404) test_patch_non_existing_claim.tags = ['negative'] def test_delete_non_existing_claim(self): """Patch Non Existing Claim.""" path = '/non-existing-claim' result = self.client.delete(path) self.assertEqual(result.status_code, 204) test_delete_non_existing_claim.tags = ['negative'] def tearDown(self): """Delete Queue after Claim Test.""" super(TestClaims, self).tearDown() self.client.delete(self.queue_url)
32.581227
78
0.632244
8,320
0.921884
0
0
8,329
0.922881
0
0
2,615
0.289751
7f95f3f0fe5de4ccd5c5283999bb3a40f5d50004
1,889
py
Python
src/glyphs/utils/StringUtils.py
slorg1/glyphs
db498156897a1406545f041382913e2af69edc12
[ "MIT" ]
1
2019-05-09T14:35:31.000Z
2019-05-09T14:35:31.000Z
src/glyphs/utils/StringUtils.py
slorg1/glyphs
db498156897a1406545f041382913e2af69edc12
[ "MIT" ]
null
null
null
src/glyphs/utils/StringUtils.py
slorg1/glyphs
db498156897a1406545f041382913e2af69edc12
[ "MIT" ]
1
2019-05-10T16:06:30.000Z
2019-05-10T16:06:30.000Z
from __future__ import unicode_literals import six class StringUtils(object): """ Utility class for handling strings. """ @staticmethod def to_unicode(value): """ Returns the string representation of the given L{value} if it is not C{None}. Otherwise, returns C{None}. @postcondition: (value is None) == (return is None) @postcondition: return is None or isinstance(return, six.text_type) """ return value if value is None else six.text_type(value) @staticmethod def to_unicode_not_empty(value): """ Returns the string representation of the given L{value} if it is not C{None} and not empty. Otherwise, returns C{None} @postcondition: returns is None or isinstance(returns, six.text_type) """ return_value = StringUtils.to_unicode(value) if not return_value: return None return return_value @staticmethod def to_unicode_not_none(value): """ Returns the string representation of the given L{value} if it is not C{None}. @rtype: six.text_type @raise ValueError: raises a value error if the given L{value} is {None} """ if value is None: raise ValueError() return six.text_type(value) @staticmethod def to_unicode_not_empty_not_none(value): """ Returns the string representation of the given L{value} if it is not C{None} and not empty. @rtype: six.text_type @raise ValueError: raises a value error if the given L{value} is {None} or an empty string """ return_value = StringUtils.to_unicode_not_empty(value) if not return_value: raise ValueError() return return_value __slots__ = tuple()
26.236111
114
0.611435
1,834
0.970884
0
0
1,699
0.899418
0
0
1,069
0.565908
7f971a249f5ab865830322c937e8dd39d7142ad5
149
py
Python
Codeforces Problems/Soldier and bananas/Soldier and Bananas.py
Social-CodePlat/Comptt-Coding-Solutions
240732e6c1a69e1124064bff4a27a5785a14b021
[ "MIT" ]
null
null
null
Codeforces Problems/Soldier and bananas/Soldier and Bananas.py
Social-CodePlat/Comptt-Coding-Solutions
240732e6c1a69e1124064bff4a27a5785a14b021
[ "MIT" ]
1
2020-10-13T20:57:34.000Z
2020-10-13T20:57:34.000Z
Codeforces Problems/Soldier and bananas/Soldier and Bananas.py
Social-CodePlat/Comptt-Coding-Solutions
240732e6c1a69e1124064bff4a27a5785a14b021
[ "MIT" ]
null
null
null
arr=[int(x) for x in input().split()] sum=0 for i in range(1,(arr[2]+1)): sum+=arr[0]*i if sum<=arr[1]: print(0) else: print(sum-arr[1])
16.555556
37
0.557047
0
0
0
0
0
0
0
0
0
0
7f9732b0483bd520dbc21d4a193f8cf3d1d42f99
2,578
py
Python
ansible/terminal_plugins/aos.py
xwjiang2021/sonic-mgmt
82c446b9fb016eb070af765aa9d9999e55b27342
[ "Apache-2.0" ]
2
2021-11-24T09:33:41.000Z
2021-12-03T09:08:29.000Z
ansible/terminal_plugins/aos.py
xwjiang2021/sonic-mgmt
82c446b9fb016eb070af765aa9d9999e55b27342
[ "Apache-2.0" ]
null
null
null
ansible/terminal_plugins/aos.py
xwjiang2021/sonic-mgmt
82c446b9fb016eb070af765aa9d9999e55b27342
[ "Apache-2.0" ]
null
null
null
from __future__ import (absolute_import, division, print_function) __metaclass__ = type import re import json from ansible.plugins.terminal import TerminalBase from ansible.errors import AnsibleConnectionFailure from ansible.module_utils._text import to_bytes, to_text class TerminalModule(TerminalBase): terminal_stdout_re = [ re.compile(br"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"), re.compile(br"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$") ] terminal_stderr_re = [ re.compile(br"% ?Error"), re.compile(br"% User not present"), re.compile(br"% ?Bad secret"), re.compile(br"invalid input", re.I), re.compile(br"(?:incomplete|ambiguous) command", re.I), re.compile(br"connection timed out", re.I), # Strings like this regarding VLANs are not errors re.compile(br"[^\r\n]+ not found(?! in current VLAN)", re.I), re.compile(br"'[^']' +returned error code: ?\d+"), re.compile(br"[^\r\n](?<! shell )\/bin\/(?:ba)?sh"), re.compile(br"% More than \d+ OSPF instance", re.I), re.compile(br"% Subnet [0-9a-f.:/]+ overlaps", re.I), re.compile(br"Maximum number of pending sessions has been reached"), ] def on_open_shell(self): pass def on_become(self, passwd=None): if self._get_prompt().endswith(b'#'): return cmd = {u'command': u'enable'} if passwd: cmd[u'prompt'] = to_text(r"[\r\n]?password: $", errors='surrogate_or_strict') cmd[u'answer'] = passwd cmd[u'prompt_retry_check'] = True try: self._exec_cli_command(to_bytes(json.dumps(cmd), errors='surrogate_or_strict')) prompt = self._get_prompt() if prompt is None or not prompt.endswith(b'#'): raise AnsibleConnectionFailure('failed to elevate privilege to enable mode still at prompt [%s]' % prompt) except AnsibleConnectionFailure as e: prompt = self._get_prompt() raise AnsibleConnectionFailure('unable to elevate privilege to enable mode, at prompt [%s] with error: %s' % (prompt, e.message)) def on_unbecome(self): prompt = self._get_prompt() if prompt is None: # if prompt is None most likely the terminal is hung up at a prompt return if b'(config' in prompt: self._exec_cli_command(b'end') self._exec_cli_command(b'disable') elif prompt.endswith(b'#'): self._exec_cli_command(b'disable')
37.362319
141
0.595035
2,304
0.893716
0
0
0
0
0
0
893
0.346393
7f9760f0a2fcfb023a35bdea0182735335363c6f
1,690
py
Python
day_15-chiton/part_2.py
lucacerone/advent-of-code-2021
56c985ec5bbf1b83e74451d795331f4a05d651a3
[ "MIT" ]
null
null
null
day_15-chiton/part_2.py
lucacerone/advent-of-code-2021
56c985ec5bbf1b83e74451d795331f4a05d651a3
[ "MIT" ]
null
null
null
day_15-chiton/part_2.py
lucacerone/advent-of-code-2021
56c985ec5bbf1b83e74451d795331f4a05d651a3
[ "MIT" ]
null
null
null
from numpy.core.fromnumeric import size import utils as u import numpy as np import heapq as hq s = """\ 1163751742 1381373672 2136511328 3694931569 7463417111 1319128137 1359912421 3125421639 1293138521 2311944581 """ #cave = np.array([[int(x) for x in l] for l in s.splitlines()]) cave = u.import_data("./data/input") tile = cave.copy() nr, nc = cave.shape for i in range(1,5): tile = tile+1 tile[tile==10]=1 cave = np.concatenate([cave, tile], axis=1) tile = cave.copy() nr, nc = cave.shape for i in range(1,5): tile = tile+1 tile[tile>9]=1 cave = np.concatenate([cave, tile], axis=0) neighbors = lambda pos: u.get_adjacent_coordinates(cave, pos[0], pos[1]) start_point = (0,0) end_point = cave.shape[0]-1, cave.shape[1]-1 """ Represent the cave matrix as a graph. We define the graph as a dictionary, an entry of which looks like graph[v0] = [(v1, d1), (v2, d2)] indicating that there is an edge between v0 and v1 with d1 distance, and an edge between v0 and v2 with d2 distance """ graph = {(i,j): [(n, cave[n]) for n in neighbors((i,j))] for i in range(cave.shape[0]) for j in range(cave.shape[1])} visited = set() costs = {v: np.Inf for v in graph} costs[start_point] = 0 queue = [(costs[start_point], start_point)] while queue: current_cost , current_node = hq.heappop(queue) #if current_node in visited: # continue for neigh,d in graph[current_node]: if neigh not in visited: new_cost = costs[current_node] + d if new_cost < costs[neigh]: costs[neigh] = new_cost hq.heappush(queue, (new_cost, neigh)) visited.add(current_node) print(costs[end_point])
21.948052
117
0.661538
0
0
0
0
0
0
0
0
506
0.299408
7f977804ee14ad26b5e5c54480ba5ea17221d8c5
1,861
py
Python
aws-pentesting-with-python/kms/correct/updating_existing_kms.py
qodirovshohijahon/python-scripting
08f8492e137df37e7f9b41e9ee546f5783501c1a
[ "CNRI-Python" ]
null
null
null
aws-pentesting-with-python/kms/correct/updating_existing_kms.py
qodirovshohijahon/python-scripting
08f8492e137df37e7f9b41e9ee546f5783501c1a
[ "CNRI-Python" ]
null
null
null
aws-pentesting-with-python/kms/correct/updating_existing_kms.py
qodirovshohijahon/python-scripting
08f8492e137df37e7f9b41e9ee546f5783501c1a
[ "CNRI-Python" ]
null
null
null
from xmlrpc.client import Boolean import boto3 import logging from datetime import date, datetime from botocore.exceptions import ClientError import json from json_datetime_serializer import json_datetime_serializer from kms_client import kmsClient from search_kms_using_account_id import search_kms_using_account_id from get_arn import get_arn logger = logging.getLogger() logging.basicConfig(level=logging.INFO, format='%(asctime)s: %(levelname)s: %(message)s') # mrk-8b618d3b5c1d432aad977f31b29df64b # 862638055046 def update_kms_key_policy(target_arn, key_id): client = kmsClient() kms_policy_data = client.get_key_policy(KeyId=key_id,PolicyName='default') kms_policy = json.loads(kms_policy_data["Policy"]) policy_update = Boolean(False) for statement in kms_policy["Statement"]: if "Allow use of the key" in statement["Sid"]: if target_arn not in statement['Principal']['AWS']: if type(statement['Principal']['AWS']) is list: statement['Principal']['AWS'].append(target_arn) statement['Principal']['AWS'].sort() policy_update = True else: print('Target ARN already exists in the policy') policy_update = False if policy_update: response = client.put_key_policy( KeyId=key_id, PolicyName='default', Policy=json.dumps(kms_policy) ) print(response) return kms_policy if __name__ == '__main__': ARN = 'arn:aws:iam::862638055046:user/test-user' print(f"Arn: {ARN}") kms = update_kms_key_policy(ARN) logger.info('Getting information about KMS key...') logger.info( f'Key Details: {json.dumps(kms, indent=4, default=json_datetime_serializer)}' ) logger.info('Done!')
33.836364
85
0.667383
0
0
0
0
0
0
0
0
449
0.241268