content
stringlengths
1
1.04M
input_ids
listlengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
# ***************************************************************************** # # Copyright (c) 2020, the pyEX authors. # # This file is part of the jupyterlab_templates library, distributed under the terms of # the Apache License 2.0. The full license can be found in the LICENSE file. # # for Coverage from mock import MagicMock, patch
[ 2, 41906, 17174, 4557, 35625, 198, 2, 198, 2, 15069, 357, 66, 8, 12131, 11, 262, 12972, 6369, 7035, 13, 198, 2, 198, 2, 770, 2393, 318, 636, 286, 262, 474, 929, 88, 353, 23912, 62, 11498, 17041, 5888, 11, 9387, 739, 262, 2846, 2...
4.083333
84
from grouper.fe.handlers.template_variables import get_user_view_template_vars from grouper.fe.util import GrouperHandler from grouper.models.user import User
[ 6738, 1132, 525, 13, 5036, 13, 4993, 8116, 13, 28243, 62, 25641, 2977, 1330, 651, 62, 7220, 62, 1177, 62, 28243, 62, 85, 945, 198, 6738, 1132, 525, 13, 5036, 13, 22602, 1330, 402, 472, 525, 25060, 198, 6738, 1132, 525, 13, 27530, ...
3.333333
48
import requests from bs4 import BeautifulSoup url = "http://scholar.google.com/citations?hl=en&user=B7vSqZsAAAAJ&view_op=list_works&pagesize=100" request = requests.get(url) soup = BeautifulSoup(request.text, 'lxml') table = soup.find("table", attrs={"id" : "gsc_a_t"}) for paper in table.findAll("td", attrs={"class": "gsc_a_t"}): print(paper.a.string)
[ 11748, 7007, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 198, 198, 6371, 796, 366, 4023, 1378, 20601, 6192, 13, 13297, 13, 785, 14, 66, 20597, 30, 18519, 28, 268, 5, 7220, 28, 33, 22, 85, 50, 80, 57, 82, 17922, 41, 5, 1177, ...
2.42953
149
"""Websocket subscriber handler functions.""" import asyncio import logging from asyncio import CancelledError from typing import List from starlette.websockets import WebSocket, WebSocketDisconnect from notify_server.clients.serdes import TopicEvent from notify_server.clients.subscriber import Subscriber, create from robot_server.settings import get_settings log = logging.getLogger(__name__) async def handle_socket( websocket: WebSocket, topics: List[str]) -> None: """Handle a websocket connection.""" subscriber = create( get_settings().notification_server_subscriber_address, topics ) await asyncio.gather( receive(websocket, subscriber), route_events(websocket, subscriber) ) async def receive(websocket: WebSocket, subscriber: Subscriber) -> None: """Read data from websocket. Will exit on websocket disconnect.""" try: while True: await websocket.receive_json() except WebSocketDisconnect: log.info("Websocket subscriber disconnected.") subscriber.close() async def send(websocket: WebSocket, entry: TopicEvent) -> None: """Send entry to web socket.""" await websocket.send_text(entry.json()) async def route_events(websocket: WebSocket, subscriber: Subscriber) -> None: """Route events from subscriber to websocket.""" try: async for entry in subscriber: await send(websocket, entry) except CancelledError: log.exception("Connection to notify-server closed.")
[ 37811, 1135, 1443, 5459, 32944, 21360, 5499, 526, 15931, 198, 11748, 30351, 952, 198, 11748, 18931, 198, 6738, 30351, 952, 1330, 43780, 3353, 12331, 198, 6738, 19720, 1330, 7343, 198, 198, 6738, 3491, 21348, 13, 732, 1443, 11603, 1330, 53...
2.909774
532
import torch from naslib.search_spaces.core.primitives import AbstractPrimitive, Identity class DropPathWrapper(AbstractPrimitive): """ A wrapper for the drop path training regularization. """
[ 11748, 28034, 198, 198, 6738, 25221, 8019, 13, 12947, 62, 2777, 2114, 13, 7295, 13, 19795, 20288, 1330, 27741, 23828, 1800, 11, 27207, 628, 198, 4871, 14258, 15235, 36918, 2848, 7, 23839, 23828, 1800, 2599, 198, 220, 220, 220, 37227, 19...
3.466667
60
from version import get_version __version__ = get_version(pep440=False)
[ 6738, 2196, 1330, 651, 62, 9641, 201, 198, 201, 198, 834, 9641, 834, 796, 651, 62, 9641, 7, 431, 79, 25644, 28, 25101, 8, 201, 198 ]
2.923077
26
import logging from typing import List import yaml from kubeluigi.k8s import ( clean_job_resources, job_definition, pod_spec_from_dict, run_and_track_job, kubernetes_client, attach_volume_to_spec, FailedJob, ) from kubeluigi.volumes import AttachableVolume from kubernetes.client import ApiClient from kubernetes.client.models.v1_job import V1Job from kubernetes.client.models.v1_pod_spec import V1PodSpec logger = logging.getLogger(__name__)
[ 11748, 18931, 198, 6738, 19720, 1330, 7343, 198, 11748, 331, 43695, 198, 198, 6738, 479, 549, 417, 84, 25754, 13, 74, 23, 82, 1330, 357, 198, 220, 220, 220, 3424, 62, 21858, 62, 37540, 11, 198, 220, 220, 220, 1693, 62, 46758, 11, ...
2.586957
184
from raiden.utils import ( is_minified_address, is_supported_client, )
[ 6738, 9513, 268, 13, 26791, 1330, 357, 198, 220, 220, 220, 318, 62, 1084, 1431, 62, 21975, 11, 198, 220, 220, 220, 318, 62, 15999, 62, 16366, 11, 198, 8, 628, 628, 628, 198 ]
2.5
34
from numpy import number from settings import NORMALIZATION_NUMBER_OF_BUCKETS from dataset.raw_dataset import RawDataset from normalization.price_normalizer import PriceNormalizer if __name__ == "__main__": raw_dataset = RawDataset() size = raw_dataset.load() number_of_buckets = NORMALIZATION_NUMBER_OF_BUCKETS normalizer = PriceNormalizer(raw_dataset.books, number_of_buckets) normalizer.plot_buckets() normalizer.sample_plot()
[ 6738, 299, 32152, 1330, 1271, 198, 6738, 6460, 1330, 25273, 42126, 14887, 6234, 62, 41359, 13246, 62, 19238, 62, 33, 16696, 32716, 198, 6738, 27039, 13, 1831, 62, 19608, 292, 316, 1330, 16089, 27354, 292, 316, 198, 6738, 3487, 1634, 13,...
2.79878
164
import datetime from bson.json_util import dumps
[ 11748, 4818, 8079, 198, 6738, 275, 1559, 13, 17752, 62, 22602, 1330, 45514, 628 ]
3.571429
14
# coding=utf-8 from __future__ import absolute_import, division, print_function from oct.cli.version import VERSION from oct.tests.unit.playbook_runner_test_case import PlaybookRunnerTestCase, TestCaseParameters, show_stack_trace if not show_stack_trace: __unittest = True
[ 2, 19617, 28, 40477, 12, 23, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 198, 198, 6738, 19318, 13, 44506, 13, 9641, 1330, 44156, 2849, 198, 6738, 19318, 13, 41989, 13, 20850, 13, 1759, 2070, 6...
3.294118
85
import numpy as np import cv2 import random face_cascade = cv2.CascadeClassifier('D:\python36\Lib\site-packages\cv2\data\haarcascade_frontalface_default.xml') eye_cascade = cv2.CascadeClassifier('D:\python36\Lib\site-packages\cv2\data\haarcascade_eye.xml') #先检测人脸,存到face.jpg中 cap=cv2.VideoCapture(0) while(True): ret,frame = cap.read() img = frame gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) faces = face_cascade.detectMultiScale(gray, 1.3, 5) for (x,y,w,h) in faces: faces = face_cascade.detectMultiScale(gray, 1.3, 5) for (x,y,w,h) in faces: img = cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2) roi_gray = gray[y:y+h, x:x+w] roi_color = img[y:y+h, x:x+w] cv2.imshow('roi_color',roi_color) cv2.imwrite('face.jpg',roi_color) eyes = eye_cascade.detectMultiScale(roi_gray) for (ex,ey,ew,eh) in eyes: cv2.rectangle(roi_color,(ex,ey),(ex+ew,ey+eh),(0,255,0),2) cv2.imshow('img',img) # 按s键保存退出 if cv2.waitKey(1000)&0xFF==ord('s'): break cv2.destroyAllWindows() #下棋程序开始 ret,frame = cap.read() L=len(frame) W=len(frame[0]) print(L,W) SIZE=100 X0=int(W/2-1.5*SIZE) Y0=int(L/2-1.5*SIZE) R=int(SIZE/2) chessboard=[[0,0,0],[0,0,0],[0,0,0]] print(chessboard) playsteps=0 #顺序查找空格版本 #随机数AI版本 #j堵活二版 # 创建图像与窗口并将窗口与回调函数绑定 cv2.namedWindow('frame') cv2.setMouseCallback('frame',mouse_dclick) while(True): ret,frame = cap.read() #画棋盘和棋子 for i in range(3): for j in range(3): cv2.rectangle(frame,(i*SIZE+X0,j*SIZE+Y0),(i*SIZE+SIZE+X0,j*SIZE+SIZE+Y0),(255,128,255),2) if chessboard[i][j]==1: cv2.circle(frame,(i*SIZE+X0+R,j*SIZE+Y0+R),R,(255,0,0),-1) mychess1(frame,(i*SIZE+X0+R,j*SIZE+Y0+R),R) elif chessboard[i][j]==2: cv2.circle(frame,(i*SIZE+X0+R,j*SIZE+Y0+R),R,(255,0,0),3) mychess2(frame,(i*SIZE+X0+R,j*SIZE+Y0+R),R) cv2.imshow('frame',frame) #判断输赢,检查每行 winner=0 for i in range(3): counter1=0 counter2=0 for j in range(3): if chessboard[i][j]==1: counter1+=1 elif chessboard[i][j]==2: counter2+=1 if counter1==3: winner=1 break elif counter2==3: winner=2 break if winner !=0: print("winner=",winner) break # 判断输赢,坚持每列 for j in range(3): counter1=0 counter2=0 for i in range(3): if chessboard[i][j]==1: counter1+=1 elif chessboard[i][j]==2: counter2+=1 if counter1==3: winner=1 break elif counter2==3: winner=2 break if winner !=0: print("winner=",winner) break # 判断输赢,检查对角线。 counter1=0 counter2=0 for j in range(3): if chessboard[j][j]==1: counter1+=1 elif chessboard[j][j]==2: counter2+=1 if counter1==3: winner=1 elif counter2==3: winner=2 if winner !=0: print("winner=",winner) break # 判断输赢,检查对角线。 counter1=0 counter2=0 for j in range(3): if chessboard[j][2-j]==1: counter1+=1 elif chessboard[j][2-j]==2: counter2+=1 if counter1==3: winner=1 elif counter2==3: winner=2 if winner !=0: print("winner=",winner) break if cv2.waitKey(1000)&0xFF==ord('q'): break font=cv2.FONT_HERSHEY_SIMPLEX cv2.putText(frame,'Winnner '+str(winner),(160,70), font, 2,(255,255,255),4) cv2.imshow("frame",frame) cv2.waitKey(5000) cap.release() cv2.destroyAllWindows()
[ 11748, 299, 32152, 355, 45941, 201, 198, 11748, 269, 85, 17, 201, 198, 11748, 4738, 201, 198, 201, 198, 2550, 62, 66, 28966, 796, 269, 85, 17, 13, 34, 28966, 9487, 7483, 10786, 35, 7479, 29412, 2623, 59, 25835, 59, 15654, 12, 43789,...
1.546157
2,589
# Copyright IBM Corp. 2016 All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import time import sys import hashlib if sys.version_info < (3, 6): import sha3 from OpenSSL import crypto from OpenSSL import rand import ecdsa from collections import namedtuple from itertools import groupby from enum import Enum from google.protobuf import timestamp_pb2 from common import common_pb2 as common_dot_common_pb2 from common import configtx_pb2 as common_dot_configtx_pb2 from common import configuration_pb2 as common_dot_configuration_pb2 from common import policies_pb2 as common_dot_policies_pb2 from common import msp_principal_pb2 from msp import mspconfig_pb2 from peer import configuration_pb2 as peer_dot_configuration_pb2 from orderer import configuration_pb2 as orderer_dot_configuration_pb2 import orderer_util from contexthelper import ContextHelper import os import re import shutil import compose # Type to represent tuple of user, nodeName, ogranization NodeAdminTuple = namedtuple("NodeAdminTuple", ['user', 'nodeName', 'organization']) ApplicationGroup = "Application" OrdererGroup = "Orderer" MSPKey = "MSP" toValue = lambda message: message.SerializeToString() def computeCryptoHash(data): ' This will currently return 128 hex characters' # s = hashlib.sha3_256() s = hashlib.sha256() # s = hashlib.shake_256() #return s.digest(64) s.update(data) return s.digest() def createCertRequest(pkey, digest="sha256", **name): """ Create a certificate request. Arguments: pkey - The key to associate with the request digest - Digestion method to use for signing, default is sha256 **name - The name of the subject of the request, possible arguments are: C - Country name ST - State or province name L - Locality name O - Organization name OU - Organizational unit name CN - Common name emailAddress - E-mail address Returns: The certificate request in an X509Req object """ req = crypto.X509Req() subj = req.get_subject() for key, value in name.items(): setattr(subj, key, value) req.set_pubkey(pkey) req.sign(pkey, digest) return req def createCertificate(req, issuerCertKey, serial, validityPeriod, digest="sha256", isCA=False): """ Generate a certificate given a certificate request. Arguments: req - Certificate request to use issuerCert - The certificate of the issuer issuerKey - The private key of the issuer serial - Serial number for the certificate notBefore - Timestamp (relative to now) when the certificate starts being valid notAfter - Timestamp (relative to now) when the certificate stops being valid digest - Digest method to use for signing, default is sha256 Returns: The signed certificate in an X509 object """ issuerCert, issuerKey = issuerCertKey notBefore, notAfter = validityPeriod cert = crypto.X509() cert.set_version(3) cert.set_serial_number(serial) cert.gmtime_adj_notBefore(notBefore) cert.gmtime_adj_notAfter(notAfter) cert.set_issuer(issuerCert.get_subject()) cert.set_subject(req.get_subject()) cert.set_pubkey(req.get_pubkey()) if isCA: cert.add_extensions([crypto.X509Extension("basicConstraints", True, "CA:TRUE, pathlen:0"), crypto.X509Extension("subjectKeyIdentifier", False, "hash", subject=cert)]) #TODO: This only is appropriate for root self signed!!!! cert.add_extensions([crypto.X509Extension("authorityKeyIdentifier", False, "keyid:always", issuer=cert)]) else: cert.add_extensions([crypto.X509Extension("basicConstraints", True, "CA:FALSE"), crypto.X509Extension("subjectKeyIdentifier", False, "hash", subject=cert)]) cert.add_extensions([crypto.X509Extension("authorityKeyIdentifier", False, "keyid:always", issuer=issuerCert)]) cert.sign(issuerKey, digest) return cert # SUBJECT_DEFAULT = {countryName : "US", stateOrProvinceName : "NC", localityName : "RTP", organizationName : "IBM", organizationalUnitName : "Blockchain"} def addOrdererBootstrapAdminOrgReferences(context, policyName, orgNames): 'Adds a key/value pair of policyName/[orgName,...]' directory = getDirectory(context) ordererBootstrapAdmin = directory.getUser(userName="ordererBootstrapAdmin", shouldCreate=False) if not 'OrgReferences' in ordererBootstrapAdmin.tags: ordererBootstrapAdmin.tags['OrgReferences'] = {} policyNameToOrgNamesDict = ordererBootstrapAdmin.tags['OrgReferences'] assert not policyName in policyNameToOrgNamesDict, "PolicyName '{0}' already registered with ordererBootstrapAdmin".format( policyName) policyNameToOrgNamesDict[policyName] = orgNames return policyNameToOrgNamesDict def createConfigUpdateTxEnvelope(chainId, configUpdateEnvelope): 'The Join channel flow' bootstrapHelper = BootstrapHelper(chainId=chainId) payloadChainHeader = bootstrapHelper.makeChainHeader( type=common_dot_common_pb2.HeaderType.Value("CONFIG_UPDATE")) # Now the SignatureHeader serializedCreatorCertChain = None nonce = None payloadSignatureHeader = common_dot_common_pb2.SignatureHeader( creator=serializedCreatorCertChain, nonce=bootstrapHelper.getNonce(), ) payloadHeader = common_dot_common_pb2.Header( channel_header=payloadChainHeader, signature_header=payloadSignatureHeader, ) payload = common_dot_common_pb2.Payload(header=payloadHeader, data=configUpdateEnvelope.SerializeToString()) envelope = common_dot_common_pb2.Envelope(payload=payload.SerializeToString(), signature=None) return envelope def createGenesisBlock(context, chainId, consensusType, signedConfigItems=[]): 'Generates the genesis block for starting the oderers and for use in the chain config transaction by peers' # assert not "bootstrapGenesisBlock" in context,"Genesis block already created:\n{0}".format(context.bootstrapGenesisBlock) directory = getDirectory(context) assert len(directory.ordererAdminTuples) > 0, "No orderer admin tuples defined!!!" channelConfig = createChannelConfigGroup() for configGroup in signedConfigItems: mergeConfigGroups(channelConfig, configGroup) # (fileName, fileExist) = ContextHelper.GetHelper(context=context).getTmpPathForName(name="t",extension="protobuf") # with open(fileName, 'w') as f: # f.write(channelConfig.SerializeToString()) config = common_dot_configtx_pb2.Config( header=common_dot_common_pb2.ChannelHeader(channel_id=chainId, type=common_dot_common_pb2.HeaderType.Value("CONFIG")), channel=channelConfig) configEnvelope = common_dot_configtx_pb2.ConfigEnvelope(config=config) envelope = createConfigTxEnvelope(chainId=chainId, config_envelope=configEnvelope) blockData = common_dot_common_pb2.BlockData(data=[envelope.SerializeToString()]) # Spoke with kostas, for orderer in general signaturesMetadata = "" lastConfigurationBlockMetadata = common_dot_common_pb2.Metadata( value=common_dot_common_pb2.LastConfig(index=0).SerializeToString()).SerializeToString() ordererConfigMetadata = "" transactionFilterMetadata = "" bootstrapHelper = BootstrapHelper(chainId="NOT_USED") block = common_dot_common_pb2.Block( header=common_dot_common_pb2.BlockHeader( number=0, previous_hash=None, data_hash=bootstrapHelper.computeBlockDataHash(blockData), ), data=blockData, metadata=common_dot_common_pb2.BlockMetadata( metadata=[signaturesMetadata, lastConfigurationBlockMetadata, transactionFilterMetadata, ordererConfigMetadata]), ) # Add this back once crypto certs are required for nodeAdminTuple in directory.ordererAdminTuples: userCert = directory.ordererAdminTuples[nodeAdminTuple] certAsPEM = crypto.dump_certificate(crypto.FILETYPE_PEM, userCert) # print("UserCert for orderer genesis:\n{0}\n".format(certAsPEM)) # print("") return (block, envelope) class PathType(Enum): 'Denotes whether Path relative to Local filesystem or Containers volume reference.' Local = 1 Container = 2 class OrdererGensisBlockCompositionCallback(compose.CompositionCallback, CallbackHelper): 'Responsible for setting the GensisBlock for the Orderer nodes upon composition' def decomposing(self, composition, context): 'Will remove the orderer volume path folder for the context' shutil.rmtree(self.getVolumePath(composition)) class PeerCompositionCallback(compose.CompositionCallback): 'Responsible for setting up Peer nodes upon composition' def composing(self, composition, context): 'Will copy local MSP info over at this point for each peer node' directory = getDirectory(context) for peerService in self.getPeerList(composition): localMspConfigPath = self.getLocalMspConfigPath(composition, peerService) self._createLocalMspConfigDirs(localMspConfigPath) # Loop through directory and place Peer Organization Certs into cacerts folder for peerOrg in [org for orgName, org in directory.organizations.items() if Network.Peer in org.networks]: with open("{0}/cacerts/{1}.pem".format(localMspConfigPath, peerOrg.name), "w") as f: f.write(crypto.dump_certificate(crypto.FILETYPE_PEM, peerOrg.getSelfSignedCert())) # Loop through directory and place Peer Organization Certs into admincerts folder # TODO: revisit this, ASO recommended for now for peerOrg in [org for orgName, org in directory.organizations.items() if Network.Peer in org.networks]: with open("{0}/admincerts/{1}.pem".format(localMspConfigPath, peerOrg.name), "w") as f: f.write(crypto.dump_certificate(crypto.FILETYPE_PEM, peerOrg.getSelfSignedCert())) # Find the peer signer Tuple for this peer and add to signcerts folder for pnt, cert in [(peerNodeTuple, cert) for peerNodeTuple, cert in directory.ordererAdminTuples.items() if peerService in peerNodeTuple.user and "signer" in peerNodeTuple.user.lower()]: # Put the PEM file in the signcerts folder with open("{0}/signcerts/{1}.pem".format(localMspConfigPath, pnt.user), "w") as f: f.write(crypto.dump_certificate(crypto.FILETYPE_PEM, cert)) # Put the associated private key into the keystore folder user = directory.getUser(pnt.user, shouldCreate=False) with open("{0}/keystore/{1}.pem".format(localMspConfigPath, pnt.user), "w") as f: f.write(user.ecdsaSigningKey.to_pem()) # f.write(crypto.dump_privatekey(crypto.FILETYPE_PEM, user.pKey)) def decomposing(self, composition, context): 'Will remove the orderer volume path folder for the context' shutil.rmtree(self.getVolumePath(composition)) def createChainCreatorsPolicy(context, chainCreatePolicyName, chaindId, orgNames): 'Creates the chain Creator Policy with name' directory = getDirectory(context) bootstrapHelper = BootstrapHelper(chainId=chaindId) # This represents the domain of organization which can create channels for the orderer # First create org MSPPrincicpal # Collect the orgs from the table mspPrincipalList = [] for org in [directory.getOrganization(orgName) for orgName in orgNames]: mspPrincipalList.append(msp_principal_pb2.MSPPrincipal( PrincipalClassification=msp_principal_pb2.MSPPrincipal.Classification.Value("ByIdentity"), Principal=crypto.dump_certificate(crypto.FILETYPE_ASN1, org.getSelfSignedCert()))) policy = common_dot_policies_pb2.Policy( type=common_dot_policies_pb2.Policy.PolicyType.Value("SIGNATURE"), policy=AuthDSLHelper.Envelope( signaturePolicy=AuthDSLHelper.NOutOf( 0, []), identities=mspPrincipalList).SerializeToString()) channel = common_dot_configtx_pb2.ConfigGroup() channel.policies[chainCreatePolicyName].policy.CopyFrom(policy) # print("signed Config Item:\n{0}\n".format(chainCreationPolicyNamesSignedConfigItem)) # print("chain Creation orgs signed Config Item:\n{0}\n".format(chainCreatorsOrgsPolicySignedConfigItem)) return channel def setOrdererBootstrapGenesisBlock(genesisBlock): 'Responsible for setting the GensisBlock for the Orderer nodes upon composition'
[ 2, 15069, 19764, 11421, 13, 1584, 1439, 6923, 33876, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, ...
2.591928
5,352
from itertools import product import matplotlib.pyplot as plt import tpsim as tp import numpy as np # --------------------------------------------------------------------------- # # Simulation parameters # --------------------------------------------------------------------------- # ## ---------- Simulation time # Start time [1/wce] t_start = 0 # Stop time [1/wce] t_stop = 70 * 2 * np.pi # Time step [1/wce] dt = np.pi * 1e-3 # Number of time steps Nt = int(t_stop / dt) # Interval to save data save_interval = Nt // 1000 ## ---------- Background parameters # Background magnetic field [nT] B0 = 60 # Number density [1/cc] n = 350 # Electron cyclotron frequency wce = tp.wcs(B0, "e-") # Electron plasma frequency wpe = tp.wps(n, "e-") ## ---------- Wave parameters # w/wce w_wce = 0.15 # Obliquity [rad] theta = np.radians(65) # Amplitude [mV/m] E0 = 20.0 # Normalized amplitude E0n = tp.normalize_E(E0, B0) # Calculate polarizations Nx, Nz, pex, pey, pez, pbx, pby, pbz = tp.whistler_polarization( theta, B0, n, w_wce * wce ) """NOTE: In this coordinate system, the electric field is determined analytically as Ew = E0 ( pex cos(psi), -ey sin(psi), ez cos(psi) ). So the original electric field magnitude is Ew0 = E0n sqrt(pex^2 + pez^2) if psi0 = 0. Since we wish the wave amplitude to be E0n, we have to rescale it such that Ew0 = E0n. """ E0n /= np.sqrt(pex ** 2 + pez ** 2) # Recalculate original amplitude in physical units (just to make sure) Ew0_recal = E0n * np.sqrt(pex ** 2 + pez ** 2) * tp.c * B0 * 1e-3 Bw0_recal = E0n * pby * B0 ## ---------- Particle parameters # Speed S_range = np.linspace(0, tp.KE2S(3000), 30) / tp.c # Gyrophase G_range = np.radians(np.arange(0, 1, 20)) # Pitch angle P_range = np.radians(np.arange(0, 181, 5)) S, G, P = np.array(list(product(S_range, G_range, P_range))).T # Number of particles Np = len(S) # Normalized position xn, yn, zn = np.zeros((3, Np)) # Normalized velocity uxn, uyn, uzn = S * np.array([ np.sin(P) * np.cos(G), np.sin(P) * np.sin(G), np.cos(P), ]) ## ---------- Electromagnetic field model ## Define the electromagnetic field here (background + perturbations) def EM_model(t, x, y, z, ux, uy, uz): """Returns `Np`-dimensional arrays `Ex`, `Ey`, `Ez`, `Bx`, `By`, `Bz` in normalized units. """ psi = w_wce * (Nx * x + Nz * z - t) Ex = E0n * pex * np.cos(psi) Ey =-E0n * pey * np.sin(psi) Ez = E0n * pez * np.cos(psi) Bx = E0n * pbx * np.sin(psi) By = E0n * pby * np.cos(psi) Bz = E0n * pbz * np.sin(psi) + 1 return Ex, Ey, Ez, Bx, By, Bz # Simulation information sim_info = f""" ------------------------------------------------------------------ Simulation of particle dynamics in a single uniform whistler. ------------------------------------------------------------------ * dtwce : {dt:.4f} * Number of time steps : {Nt} ---------- * Number of particles : {Np} ---------- * Background magnetic field : {B0} nT * Background electron density : {n} cm-3 * Electron plasma frequency : {wpe:.4f} rad/s * Electron cyclotron frequency : {wce:.4f} rad/s * wpe / wce : {wpe / wce:.4f} ---------- * Original wave electric field amplitude : {Ew0_recal:.4f} mV/m * Original wave magnetic field amplitude : {Bw0_recal:.4f} nT * Wave frequency : {w_wce} wce * Wave obliquity : {np.degrees(theta)} deg ------------------------------------------------------------------ """
[ 6738, 340, 861, 10141, 1330, 1720, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 256, 862, 320, 355, 256, 79, 198, 11748, 299, 32152, 355, 45941, 628, 198, 2, 16529, 32284, 1303, 198, 2, 220, 220, 220, 22...
2.356314
1,552
""" The :class:`.Session` class provides TinyAPI's core functionality. It manages the authentication cookies and token for all requests to TinyLetter's undocumented API. """ import requests import re import json from .draft import Draft URL = "https://app.tinyletter.com/__svcbus__/" DEFAULT_MESSAGE_STATUSES = [ "sent", "sending", ] token_pat = re.compile(r'csrf_token="([^"]+)"') class Session(object): """An authenticated tinyletter.com session.""" def __init__(self, username, password=False): """Returns a logged-in session.""" self.username = username self.cookies, self.token = get_cookies_and_token() self._login(password) def request(self, service, data): """ Makes a call to TinyLetter's __svcbus__ endpoint. """ _res = self._request(service, data) res = _res.json()[0][0] if res["success"] == True: return res["result"] else: err_msg = res["errmsg"] raise Exception("Request not successful: '{0}'".format(err_msg)) def count_messages(self, statuses=DEFAULT_MESSAGE_STATUSES): """Returns the number of messages your account has sent. ``DEFAULT_MESSAGE_STATUSES`` is set to ``[ "sent", "sending" ]``. Other possible statuses include "draft", "failed_review", "failed_disabled", and "failed_schedule". """ return self.request("count:Message", [{"status": statuses}]) def get_messages(self, statuses=DEFAULT_MESSAGE_STATUSES, order="sent_at desc", offset=None, count=None, content=False): """Returns a list of messages your account sent. Messages are sorted by ``order``, starting at an optional integer ``offset``, and optionally limited to the first ``count`` items (in sorted order). Returned data includes various statistics about each message, e.g., ``total_opens``, ``open_rate``, ``total_clicks``, ``unsubs``, ``soft_bounces``. If ``content=True``, the returned data will also include HTML content of each message. """ req_data = [ { "status": statuses }, order, fmt_paging(offset, count) ] service = "query:Message.stats" if content: service += ", Message.content" return self.request(service, req_data) def get_drafts(self, **kwargs): """Same as Session.get_messages, but where ``statuses=["draft"]``.""" default_kwargs = { "order": "updated_at desc" } default_kwargs.update(kwargs) return self.get_messages(statuses=["draft"], **default_kwargs) def get_message(self, message_id): """Return stats *and* message content for a given message.""" req_data = [ str(message_id) ] return self.request("find:Message.stats, Message.content", req_data) def count_urls(self): """Returns the total number of URLs included in your messages""" return self.request("count:Message_Url", [ None ]) def get_urls(self, order="total_clicks desc", offset=None, count=None): """Returns a list of URLs you've included in messages. List is sorted by ``total_clicks``, starting at an optional integer ``offset``, and optionally limited to the first ``count`` items. """ req_data = [ None, order, fmt_paging(offset, count) ] return self.request("query:Message_Url", req_data) def get_message_urls(self, message_id, order="total_clicks desc"): """Returns a list of URLs you've included in a specific message. List is sorted by ``total_clicks``, starting at an optional integer ``offset``, and optionally limited to the first ``count`` items. """ req_data = [ { "message_id": str(message_id) }, order, None ] return self.request("query:Message_Url", req_data) def count_subscribers(self): """Returns your newsletter's number of subscribers.""" return self.request("count:Contact", [ None ]) def get_subscribers(self, order="created_at desc", offset=None, count=None): """Returns a list of subscribers. List is sorted by most-recent-to-subsribe, starting at an optional integer ``offset``, and optionally limited to the first ``count`` items (in sorted order). Returned data includes various statistics about each subscriber, e.g., ``total_sent``, ``total_opens``, ``total_clicks``. """ req_data = [ None, order, fmt_paging(offset, count)] return self.request("query:Contact.stats", req_data) def get_subscriber(self, subscriber_id): """Returns data corresponding to a specific subcriber.""" req_data = [ str(subscriber_id) ] return self.request("find:Contact.stats", req_data) def create_draft(self): """Create a new draft message.""" return Draft(self) def edit_draft(self, message_id): """Fetch a specific draft to be edited.""" return Draft(self, message_id).fetch()
[ 37811, 198, 464, 1058, 4871, 25, 44646, 36044, 63, 1398, 3769, 20443, 17614, 338, 4755, 11244, 13, 632, 15314, 262, 18239, 14746, 290, 11241, 329, 477, 7007, 284, 20443, 45708, 338, 21829, 7824, 13, 198, 37811, 198, 198, 11748, 7007, 19...
2.585736
1,977
from flask import Flask, request, abort, jsonify from pyspark import SparkContext from pyspark.sql import SQLContext from pyspark.sql.types import * import os from itertools import combinations from pyspark.sql.functions import monotonically_increasing_id app = Flask(__name__) sc = SparkContext() sqlContext = SQLContext(sc) @app.route('/') @app.route('/runq', methods=['POST']) if __name__ == '__main__': import argparse ap = argparse.ArgumentParser() ap.add_argument('-p', '--port', required=False, help='port number') args = vars(ap.parse_args()) try: port = args['port'] app.run(port=int(port), debug=True) except ValueError: app.run(port=5000, debug=True)
[ 6738, 42903, 1330, 46947, 11, 2581, 11, 15614, 11, 33918, 1958, 198, 6738, 279, 893, 20928, 1330, 17732, 21947, 198, 6738, 279, 893, 20928, 13, 25410, 1330, 16363, 21947, 198, 6738, 279, 893, 20928, 13, 25410, 13, 19199, 1330, 1635, 198...
2.725191
262
""" This is the project's main file, it has a function for each of the main classes, as well as the wikidata uploader file. The imports are above, as well as split into each file. There is a simple logger to track any critical errors. """ import logging import pandas as pd import datetime from grao_table_processing.markdown_to_df import ReadMarkdownTable from grao_table_processing.acquire_url import DataURL from grao_table_processing.ekatte_dataframe import EkatteDataframe from grao_table_processing.wikidata_codes import WikidataCodes from grao_table_processing.wikidata_uploader import upload_to_wikidata, set_old_ranks_to_normal logging.basicConfig(filename='logs/ekatte.log', filemode='a+', level=logging.CRITICAL, format='%(asctime)s %(levelname)s %(name)s %(message)s') def generate_url(url_object: DataURL()) -> str: """ Calls the DataURL class and provides a URL to extract data from Args: url_object: DataURL() class object Return: DataURL.generate_data_url(url_object): string """ return DataURL.generate_data_url(url_object) def extract_date(url: str) -> datetime.date: """ By using the result of the generate URL function, extracts the date to be used in the data loading. Args: url: a string URL that leads to a markdown table for date extraction Return: date_object: datetime.date object """ markdown_object = ReadMarkdownTable(url, '|') date_object = markdown_object.extract_date() return date_object def transformations(url: str) -> pd.DataFrame: """ This function invokes the ReadMarkdownTable class, and does all necessary transformations so that it is ready to be merged forward. Args: url: a string URL that leads to a markdown table for data extraction Return: markdown_object.markdown_df: pd.DataFrame """ markdown_object = ReadMarkdownTable(url, '|') # ''''''''''''''' Drop unused columns ''''''''''''''''' column_list = [0, 5, 6, 7, 9, 10, 11, 12] markdown_object.drop_attributes(column_list) # ''''''''''''''' Use meaningful labels ''''''''''''''''' markdown_object.markdown_df.columns = ['region', 'municipality', 'settlement', 'permanent_population', 'current_population'] # '''''''''''Cleaning initial data''''''''''''''''' atts_clean = ['region', 'municipality', 'settlement'] markdown_object.strip_columns(atts_clean) markdown_object.lower_columns(atts_clean) markdown_object.replace_letters(atts_clean, 'ь,ъ') markdown_object.replace_letters(atts_clean, 'ъо,ьо') markdown_object.change_labels('settlement', 'с.елин пелин (гара елин п', 'с.елин пелин') markdown_object.change_labels('municipality', 'добричка', 'добрич-селска') markdown_object.change_labels('municipality', 'добрич-град', 'добрич') markdown_object.change_labels('municipality', 'добрич-селска', 'добрич') markdown_object.change_labels('region', 'добрич-град', 'добрич') markdown_object.change_labels('region', 'добрич-селска', 'добрич') markdown_object.change_labels('region', "софийска", 'софия') markdown_object.change_labels('region', "столична", 'софия') markdown_object.change_labels('municipality', "софийска", 'софия') markdown_object.change_labels('municipality', "столична", 'софия') markdown_object.change_labels('municipality', "софия (столица)", 'софия') markdown_object.change_labels('region', "софия (столица)", 'софия') # ''''''''''''''' Remove neighborhoods, vacation areas, Vulchovci ''''''''''''''''' clear_settlements = [ "кв.", "ж.к.", "к.к.", "с.вълчовци" ] markdown_object.clear_kv_zk('settlement', clear_settlements) # ''''''''''''''' Clean Markdown DataFrame ''''''''''''''''' return markdown_object.markdown_df def merge_with_ekatte(dataframe: pd.DataFrame) -> pd.DataFrame: """ The function invokes the EkatteDataframe class, produces the ekatte_dataframe and merges it with the GRAO markdown table. Args: dataframe: pd.DataFrame Return: EkatteDataframe.merge_with_main(ekatte_frame): a pd.DataFrame """ ekatte_frame = EkatteDataframe(dataframe) return EkatteDataframe.remove_ambigious_names(ekatte_frame) def merge_with_q_codes(dataframe: pd.DataFrame) -> pd.DataFrame: """ The function invokes the WikidataCodes class, produces the Q code dataframe and merges it with the GRAO Dataframe with Ekatte codes. Args: dataframe: pd.DataFrame Return: matched_data: pd.DataFrame, ready to have its values uploaded to WikiData """ wikidata_codes = WikidataCodes(dataframe) matched_data = WikidataCodes.merge_with_ekatte(wikidata_codes) return matched_data def reset_ranks_to_normal(dataframe: pd.DataFrame) -> None: """ This function calls the Set old ranks to normal function from wikidata uploader, it goes through each settlement resetting its historic values to "Normal Rank" subsequently, the upload sets the most recent population values to "Preferred Rank" and they appear on Wikipedia. This repeats each subsequent time data is uploaded. Args: dataframe: pandas DataFrame Return: None """ set_old_ranks_to_normal(dataframe) def upload_data(matched_data: pd.DataFrame, url: str, date: datetime.date) -> None: """ This function invokes the Upload_to_wikidata function from the wikidata_uploader module. it carries out the functions by clearing out the ranks, uploading the data quarter by quarter for all settlements. Args: matched_data: pd.DataFrame url: string date: datetime.date Return: None """ upload_to_wikidata(matched_data, url, date) def update_date_file(url_object: DataURL()) -> None: """ If the upload concludes successfully, this function is invoked. It finally updates the date helper file with the most recent date, so that the future uploads happen on schedule. The URL is added to the processed reports log for archiving. Args: url_object: DataURL() class object Return: None """ DataURL.update_date_file(url_object) def main(): """ The main function sets the parameters for every function in the grao.py module. It carries out the entire logic of the project from data extraction to loading. Return: None """ url_object = DataURL() url = generate_url(url_object) print(url) date = extract_date(url) print(date) dataframe = transformations(url) print(dataframe.shape) ekatte_frame = merge_with_ekatte(dataframe) print(ekatte_frame.shape) matched_data = merge_with_q_codes(ekatte_frame) print(matched_data.shape) reset_ranks_to_normal(matched_data) upload_data(matched_data, url, date) update_date_file(url_object) if __name__ == "__main__": main()
[ 37811, 198, 1212, 318, 262, 1628, 338, 1388, 2393, 11, 340, 468, 257, 2163, 329, 1123, 286, 262, 1388, 6097, 11, 355, 880, 198, 292, 262, 47145, 312, 1045, 9516, 263, 2393, 13, 383, 17944, 389, 2029, 11, 355, 880, 355, 6626, 656, ...
2.540384
2,761
import requests from bs4 import BeautifulSoup import requests url = 'https://www.imdb.com/search/title/?series=tt0285335&view=simple&sort=release_date,asc&start=1' bru = 'https://www.imdb.com/search/title/?series=tt0285335&view=simple&sort=release_date,asc&start=51' for pg in range(1, 362, 50): page = requests.get(url, params={}) soup = BeautifulSoup(page.content, 'html.parser') table = soup.find('table', {"class": "wikitable sortable plainrowheaders"})
[ 11748, 7007, 201, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 201, 198, 11748, 7007, 201, 198, 201, 198, 6371, 796, 705, 5450, 1378, 2503, 13, 320, 9945, 13, 785, 14, 12947, 14, 7839, 20924, 25076, 28, 926, 15, 26279, 27326, 5, ...
2.661111
180
from __future__ import division, print_function, absolute_import import sys import math import numpy as np from numpy import sqrt, cos, sin, arctan, exp, log, pi, Inf from numpy.testing import (assert_, assert_allclose, assert_array_less, assert_almost_equal, assert_raises) import pytest from scipy.integrate import quad, dblquad, tplquad, nquad from scipy._lib.six import xrange from scipy._lib._ccallback import LowLevelCallable import ctypes import ctypes.util from scipy._lib._ccallback_c import sine_ctypes import scipy.integrate._test_multivariate as clib_test
[ 6738, 11593, 37443, 834, 1330, 7297, 11, 3601, 62, 8818, 11, 4112, 62, 11748, 198, 198, 11748, 25064, 198, 11748, 10688, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 299, 32152, 1330, 19862, 17034, 11, 8615, 11, 7813, 11, 610, 310, ...
2.959596
198
dist = 4 print(prCountDP(dist))
[ 17080, 796, 604, 198, 4798, 7, 1050, 12332, 6322, 7, 17080, 4008, 198 ]
2.461538
13
# Copyright 2020 Makani Technologies LLC # # 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. """Loadcell analog hardware monitor configuration.""" from makani.avionics.firmware.monitors import analog_types from makani.avionics.firmware.serial import loadcell_serial_params as rev # Output value = (input - input_offset) / input_divider. analog_default = { 'name': '', 'channel': -1, 'type': analog_types.kAnalogTypeVoltage, 'input_divider': 1.0, 'input_offset': 0.0, 'nominal': 0.0, 'min': 0.0, 'max': 0.0, } voltage = dict(analog_default, type=analog_types.kAnalogTypeVoltage) logic_high = dict(analog_default, type=analog_types.kAnalogTypeLogicHigh) v_5v = dict(voltage, nominal=5.0, min=5.0 * 0.95, max=5.0 * 1.05) # [V] # Allowable current range based on the allowable zero error range over temp of # +/- 60 mV on the current sensor. i_batt = dict(voltage, nominal=0.0, min=-0.5, max=0.5) # [A] v_aoa = dict(voltage, nominal=1.5, min=0.0, max=3.0) # [V] v_release = dict(voltage, nominal=0.0, min=0.0, max=30.0) # [V] rev_ab = [ dict(i_batt, name='i_batt', channel=14, input_divider=0.095, input_offset=0.357), dict(v_release, name='v_release', channel=15, input_divider=9.31 / 109.31), dict(v_aoa, name='v_aoa_1', channel=16), dict(v_aoa, name='v_aoa_2', channel=17), dict(v_5v, name='5v', channel=19, input_divider=14.3 / 43.0), dict(v_release, name='v_arm', channel=20, input_divider=9.31 / 109.31), dict(voltage, name='v_batt_test', channel=21, input_divider=9.31 / 109.31), dict(logic_high, name='eeprom_wp', channel=23), ] rev_aa = rev_ab + [ dict(v_5v, name='v_loadcell_bias', channel=18, input_divider=14.3 / 43.0), ] analog_config = (rev.LoadcellHardware, { rev.LoadcellHardware.REV_AA: rev_aa, rev.LoadcellHardware.REV_AB: rev_ab })
[ 2, 15069, 12131, 15841, 3216, 21852, 11419, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, ...
2.525918
926
#!/usr/bin/env python3 # # SPDX-License-Identifier: MIT import glob import itertools import json import os import sys import urllib.parse import urllib.request try: from lxml import etree except ImportError: import xml.etree.ElementTree as etree URI = 'https://www.gnu.org/licenses/license-list.html' TAGS = { 'blue': {'viewpoint'}, 'green': {'gpl-2-compatible', 'gpl-3-compatible', 'libre'}, 'orange': {'libre'}, 'purple': {'fdl-compatible', 'libre'}, 'red': {'non-free'}, } SPLITS = { 'AcademicFreeLicense': [ # all versions through 3.0 'AcademicFreeLicense1.1', 'AcademicFreeLicense1.2', 'AcademicFreeLicense2.0', 'AcademicFreeLicense2.1', 'AcademicFreeLicense3.0', ], 'CC-BY-NC': [ # any version (!) 'CC-BY-NC-1.0', 'CC-BY-NC-2.0', 'CC-BY-NC-2.5', 'CC-BY-NC-3.0', 'CC-BY-NC-4.0', ], 'CC-BY-ND': [ # any version 'CC-BY-ND-1.0', 'CC-BY-ND-2.0', 'CC-BY-ND-2.5', 'CC-BY-ND-3.0', 'CC-BY-ND-4.0', ], 'ccbynd': ['CC-BY-ND-4.0'], # unify (multi-tag) 'FDL': [ 'FDLv1.1', 'FDLv1.2', 'FDLv1.3', ], 'FDLOther': [ # unify with FDL (multi-tag) 'FDLv1.1', 'FDLv1.2', 'FDLv1.3', ], 'FreeBSDDL': ['FreeBSD'], # unify (multi-tag) 'NPL': [ # versions 1.0 and 1.1 'NPL-1.0', 'NPL-1.1', ], 'OSL': [ # any version through 3.0 'OSL-1.0', 'OSL-1.1', 'OSL-2.0', 'OSL-2.1', 'OSL-3.0', ], 'PythonOld': [ # 1.6b1 through 2.0 and 2.1 'Python1.6b1', 'Python2.0', 'Python2.1', ], 'SILOFL': [ # title has 1.1 but text says the same metadata applies to 1.0 'SILOFL-1.0', 'SILOFL-1.1', ], 'Zope2.0': [ # versions 2.0 and 2.1 'Zope2.0', 'Zope2.1', ], } TAG_OVERRIDES = { 'AGPLv3.0': {'libre', 'gpl-3-compatible'}, 'ECL2.0': {'libre', 'gpl-3-compatible'}, 'freetype': {'libre', 'gpl-3-compatible'}, 'GNUGPLv3': {'libre', 'gpl-3-compatible'}, 'GPLv2': {'libre', 'gpl-2-compatible'}, 'LGPLv3': {'libre', 'gpl-3-compatible'}, } IDENTIFIERS = { 'AGPLv1.0': {'spdx': ['AGPL-1.0']}, 'AGPLv3.0': {'spdx': ['AGPL-3.0-or-later', 'AGPL-3.0-only', 'AGPL-3.0']}, 'AcademicFreeLicense1.1': {'spdx': ['AFL-1.1']}, 'AcademicFreeLicense1.2': {'spdx': ['AFL-1.2']}, 'AcademicFreeLicense2.0': {'spdx': ['AFL-2.0']}, 'AcademicFreeLicense2.1': {'spdx': ['AFL-2.1']}, 'AcademicFreeLicense3.0': {'spdx': ['AFL-3.0']}, 'Aladdin': {'spdx': ['Aladdin']}, 'apache1.1': {'spdx': ['Apache-1.1']}, 'apache1': {'spdx': ['Apache-1.0']}, 'apache2': {'spdx': ['Apache-2.0']}, 'apsl1': {'spdx': ['APSL-1.0']}, 'apsl2': {'spdx': ['APSL-2.0']}, 'ArtisticLicense': {'spdx': ['Artistic-1.0']}, 'ArtisticLicense2': {'spdx': ['Artistic-2.0']}, 'BerkeleyDB': {'spdx': ['Sleepycat']}, 'bittorrent': {'spdx': ['BitTorrent-1.1']}, 'boost': {'spdx': ['BSL-1.0']}, 'ccby': {'spdx': ['CC-BY-4.0']}, 'CC-BY-NC-1.0': {'spdx': ['CC-BY-NC-1.0']}, 'CC-BY-NC-2.0': {'spdx': ['CC-BY-NC-2.0']}, 'CC-BY-NC-2.5': {'spdx': ['CC-BY-NC-2.5']}, 'CC-BY-NC-3.0': {'spdx': ['CC-BY-NC-3.0']}, 'CC-BY-NC-4.0': {'spdx': ['CC-BY-NC-4.0']}, 'CC-BY-ND-1.0': {'spdx': ['CC-BY-ND-1.0']}, 'CC-BY-ND-2.0': {'spdx': ['CC-BY-ND-2.0']}, 'CC-BY-ND-2.5': {'spdx': ['CC-BY-ND-2.5']}, 'CC-BY-ND-3.0': {'spdx': ['CC-BY-ND-3.0']}, 'CC-BY-ND-4.0': {'spdx': ['CC-BY-ND-4.0']}, 'ccbysa': {'spdx': ['CC-BY-SA-4.0']}, 'CC0': {'spdx': ['CC0-1.0']}, 'CDDL': {'spdx': ['CDDL-1.0']}, 'CPAL': {'spdx': ['CPAL-1.0']}, 'CeCILL': {'spdx': ['CECILL-2.0']}, 'CeCILL-B': {'spdx': ['CECILL-B']}, 'CeCILL-C': {'spdx': ['CECILL-C']}, 'ClarifiedArtistic': {'spdx': ['ClArtistic']}, 'clearbsd': {'spdx': ['BSD-3-Clause-Clear']}, 'CommonPublicLicense10': {'spdx': ['CPL-1.0']}, 'cpol': {'spdx': ['CPOL-1.02']}, 'Condor': {'spdx': ['Condor-1.1']}, 'ECL2.0': {'spdx': ['ECL-2.0']}, 'eCos11': {'spdx': ['RHeCos-1.1']}, 'eCos2.0': {'spdx': ['GPL-2.0+ WITH eCos-exception-2.0', 'eCos-2.0']}, 'EPL': {'spdx': ['EPL-1.0']}, 'EPL2': {'spdx': ['EPL-2.0']}, 'EUDataGrid': {'spdx': ['EUDatagrid']}, 'EUPL-1.1': {'spdx': ['EUPL-1.1']}, 'EUPL-1.2': {'spdx': ['EUPL-1.2']}, 'Eiffel': {'spdx': ['EFL-2.0']}, 'Expat': {'spdx': ['MIT']}, 'FDLv1.1': {'spdx': ['GFDL-1.1-or-later', 'GFDL-1.1-only', 'GFDL-1.1']}, 'FDLv1.2': {'spdx': ['GFDL-1.2-or-later', 'GFDL-1.2-only', 'GFDL-1.2']}, 'FDLv1.3': {'spdx': ['GFDL-1.3-or-later', 'GFDL-1.3-only', 'GFDL-1.3']}, 'FreeBSD': {'spdx': ['BSD-2-Clause-FreeBSD']}, 'freetype': {'spdx': ['FTL']}, 'GNUAllPermissive': {'spdx': ['FSFAP']}, 'GNUGPLv3': {'spdx': ['GPL-3.0-or-later', 'GPL-3.0-only', 'GPL-3.0', 'GPL-3.0+']}, 'gnuplot': {'spdx': ['gnuplot']}, 'GPLv2': {'spdx': ['GPL-2.0-or-later', 'GPL-2.0-only', 'GPL-2.0', 'GPL-2.0+']}, 'HPND': {'spdx': ['HPND']}, 'IBMPL': {'spdx': ['IPL-1.0']}, 'iMatix': {'spdx': ['iMatix']}, 'imlib': {'spdx': ['Imlib2']}, 'ijg': {'spdx': ['IJG']}, 'intel': {'spdx': ['Intel']}, 'IPAFONT': {'spdx': ['IPA']}, 'ISC': {'spdx': ['ISC']}, 'JSON': {'spdx': ['JSON']}, 'LGPLv3': {'spdx': ['LGPL-3.0-or-later', 'LGPL-3.0-only', 'LGPL-3.0', 'LGPL-3.0+']}, 'LGPLv2.1': {'spdx': ['LGPL-2.1-or-later', 'LGPL-2.1-only', 'LGPL-2.1', 'LGPL-2.1+']}, 'LPPL-1.2': {'spdx': ['LPPL-1.2']}, 'LPPL-1.3a': {'spdx': ['LPPL-1.3a']}, 'lucent102': {'spdx': ['LPL-1.02']}, 'ModifiedBSD': {'spdx': ['BSD-3-Clause']}, 'MPL': {'spdx': ['MPL-1.1']}, 'MPL-2.0': {'spdx': ['MPL-2.0']}, 'ms-pl': {'spdx': ['MS-PL']}, 'ms-rl': {'spdx': ['MS-RL']}, 'NASA': {'spdx': ['NASA-1.3']}, 'NCSA': {'spdx': ['NCSA']}, 'newOpenLDAP': {'spdx': ['OLDAP-2.7']}, 'Nokia': {'spdx': ['Nokia']}, 'NoLicense': {'spdx': ['NONE']}, 'NOSL': {'spdx': ['NOSL']}, 'NPL-1.0': {'spdx': ['NPL-1.0']}, 'NPL-1.1': {'spdx': ['NPL-1.1']}, 'ODbl': {'spdx': ['ODbL-1.0']}, 'oldOpenLDAP': {'spdx': ['OLDAP-2.3']}, 'OpenPublicL': {'spdx': ['OPL-1.0']}, 'OpenSSL': {'spdx': ['OpenSSL']}, 'OriginalBSD': {'spdx': ['BSD-4-Clause']}, 'OSL-1.0': {'spdx': ['OSL-1.0']}, 'OSL-1.1': {'spdx': ['OSL-1.1']}, 'OSL-2.0': {'spdx': ['OSL-2.0']}, 'OSL-2.1': {'spdx': ['OSL-2.1']}, 'OSL-3.0': {'spdx': ['OSL-3.0']}, 'PHP-3.01': {'spdx': ['PHP-3.01']}, 'Python2.0': {'spdx': ['Python-2.0']}, 'QPL': {'spdx': ['QPL-1.0']}, 'RPSL': {'spdx': ['RPSL-1.0']}, 'Ruby': {'spdx': ['Ruby']}, 'SGIFreeB': {'spdx': ['SGI-B-2.0']}, 'SILOFL-1.0': {'spdx': ['OFL-1.0']}, 'SILOFL-1.1': {'spdx': ['OFL-1.1']}, 'SPL': {'spdx': ['SPL-1.0']}, 'StandardMLofNJ': {'spdx': ['SMLNJ', 'StandardML-NJ']}, 'Unlicense': {'spdx': ['Unlicense']}, 'UPL': {'spdx': ['UPL-1.0']}, 'Vim': {'spdx': ['Vim']}, 'W3C': {'spdx': ['W3C']}, 'Watcom': {'spdx': ['Watcom-1.0']}, 'WTFPL': {'spdx': ['WTFPL']}, 'X11License': {'spdx': ['X11']}, 'XFree861.1License': {'spdx': ['XFree86-1.1']}, 'xinetd': {'spdx': ['xinetd']}, 'Yahoo': {'spdx': ['YPL-1.1']}, 'Zend': {'spdx': ['Zend-2.0']}, 'Zimbra': {'spdx': ['Zimbra-1.3']}, 'ZLib': {'spdx': ['Zlib', 'Nunit']}, 'Zope2.0': {'spdx': ['ZPL-2.0']}, 'Zope2.1': {'spdx': ['ZPL-2.1']}, } if __name__ == '__main__': dir = os.curdir if len(sys.argv) > 1: dir = sys.argv[1] tree = get(uri=URI) root = tree.getroot() licenses = extract(root=root, base_uri=URI) unused_identifiers = { key for key in IDENTIFIERS.keys() if key not in licenses} if unused_identifiers: raise ValueError('unused IDENTIFIERS keys: {}'.format( ', '.join(sorted(unused_identifiers)))) save(licenses=licenses, base_uri='https://wking.github.io/fsf-api/', dir=dir)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 198, 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 17168, 198, 198, 11748, 15095, 198, 11748, 340, 861, 10141, 198, 11748, 33918, 198, 11748, 28686, 198, 11748, 25064, 198, 1174...
1.747017
4,609
# -*- coding: utf-8 -*- # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you 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 unittest from airflow.orm import DagBag from airflow import models from airflow import settings from airflow.api.common.experimental.delete_dag import delete_dag from airflow.exceptions import DagNotFound, DagFileExists from airflow.operators.dummy_operator import DummyOperator from airflow.utils.dates import days_ago from airflow.utils.state import State DM = models.DagModel DS = models.DagStat DR = models.DagRun TI = models.TaskInstance LOG = models.Log if __name__ == '__main__': unittest.main()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 198, 2, 49962, 284, 262, 24843, 10442, 5693, 357, 1921, 37, 8, 739, 530, 198, 2, 393, 517, 18920, 5964, 11704, 13, 220, 4091, 262, 28536, 2393, 198, 2, 9387, 351,...
3.639344
366
#!/usr/bin/env python # remoteobj v0.4, best yet! # TODO: This will get wrecked by recursive sets/lists/dicts; need a more picklish method. # TODO: Dict/sets/lists should get unpacked to wrappers that are local for read-only access, # but update the remote for write access. Note that __eq__ will be an interesting override. import marshal import struct import socket import sys, exceptions, errno, traceback from types import CodeType, FunctionType from os import urandom from hashlib import sha1 DEBUG = False class Proxy(object): # GC isn't useful anyway... """ def __del__(self): if object.__getattribute__(self, '_proxyparent') is not None: return if not marshal or not struct or not socket: return # Reduce spurious messages when quitting python object.__getattribute__(self, '_proxyconn').delete(self) """ # hash and repr need to be handled specially, due to hash(type) != type.__hash__() # (and the same for repr). Incidentally, we'll cache the hash. # Special methods don't always go through __getattribute__, so redirect them all there. for special in ('__str__', '__lt__', '__le__', '__eq__', '__ne__', '__gt__', '__ge__', '__cmp__', '__rcmp__', '__nonzero__', '__unicode__', '__len__', '__getitem__', '__setitem__', '__delitem__', '__iter__', '__reversed__', '__contains__', '__getslice__', '__setslice__', '__delslice__', '__add__', '__sub__', '__mul__', '__floordiv__', '__mod__', '__divmod__', '__pow__', '__lshift__', '__rshift__', '__and__', '__xor__', '__or__', '__div__', '__truediv__', '__radd__', '__rsub__', '__rmul__', '__rdiv__', '__rtruediv__', '__rfloordiv__', '__rmod__', '__rdivmod__', '__rpow__', '__rlshift__', '__rrshift__', '__rand__', '__rxor__', '__ror__', '__iadd__', '__isub__', '__imul__', '__idiv__', '__itruediv__', '__ifloordiv__', '__imod__', '__ipow__', '__ilshift__', '__irshift__', '__iand__', '__ixor__', '__ior__', '__neg__', '__pos__', '__abs__', '__invert__', '__complex__', '__int__', '__long__', '__float__', '__oct__', '__hex__', '__index__', '__coerce__', '__enter__', '__exit__'): exec "def {special}(self, *args, **kwargs):\n\treturn object.__getattribute__(self, '_proxyconn').callattr(self, '{special}', args, kwargs)".format(special=special) in None, None # Note: must send after non-info_only packing, or objects will be left with +1 retain count in self.vended # Define a function on the remote side. Its __globals__ will be # the local client-side func.__globals__ filtered to the keys in # func_globals, underlaid with the remote server-side globals() # filtered to the keys in remote_globals. None is a special value # for the filters, and disables any filtering. __all__ = [Connection,] # For demo purposes. if __name__ == "__main__": from sys import argv if len(argv) <= 3: print >> sys.stderr, "Usage:", argv[0], "server <address> <port> [<password>]" print >> sys.stderr, " python -i", argv[0], "client <address> <port> [<password>]" print >> sys.stderr, "In the client python shell, the server's module is available as 'proxy'" print >> sys.stderr, "A good demo is `proxy.__builtins__.__import__('ctypes').memset(0,0,1)`" exit(64) hostport = (argv[2], int(argv[3])) password = argv[4] if len(argv) > 4 else 'lol, python' if argv[1] == 'server': import SocketServer SocketServer.TCPServer.allow_reuse_address = True SocketServer.TCPServer(hostport, Server).serve_forever() exit(1) elif argv[1] == 'client': connection = Connection(socket.create_connection(hostport), password) proxy = connection.connectProxy() print >> sys.stderr, "`proxy` and `connection` are available for you to play with at the interactive prompt." else: exit(64)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 6569, 26801, 410, 15, 13, 19, 11, 1266, 1865, 0, 198, 2, 16926, 46, 25, 770, 481, 651, 44770, 416, 45115, 5621, 14, 20713, 14, 11600, 82, 26, 761, 257, 517, 2298, 1836, 2446, ...
2.75997
1,354
from .voc import VOC
[ 6738, 764, 18893, 1330, 569, 4503, 198 ]
3
7
import pandas as pd from unittest import mock import fhirpipe.transform.dataframe as transform from fhirpipe.analyze.attribute import Attribute from fhirpipe.analyze.sql_column import SqlColumn from fhirpipe.analyze.concept_map import ConceptMap from fhirpipe.analyze.cleaning_script import CleaningScript from fhirpipe.analyze.merging_script import MergingScript from test.unit.conftest import mock_config, mock_api_get_maps @mock.patch("fhirpipe.analyze.cleaning_script.scripts.get_script", return_value=mock_get_script) @mock.patch("fhirpipe.analyze.concept_map.fhirpipe.global_config", mock_config) @mock.patch("fhirpipe.analyze.concept_map.requests.get", mock_api_get_maps) @mock.patch("fhirpipe.analyze.merging_script.scripts.get_script", return_value=mock_get_script)
[ 11748, 19798, 292, 355, 279, 67, 198, 6738, 555, 715, 395, 1330, 15290, 198, 198, 11748, 277, 71, 343, 34360, 13, 35636, 13, 7890, 14535, 355, 6121, 198, 6738, 277, 71, 343, 34360, 13, 38200, 2736, 13, 42348, 1330, 3460, 4163, 198, ...
2.847273
275
import sdi_utils.gensolution as gs import sdi_utils.set_logging as slog import sdi_utils.textfield_parser as tfp import pandas as pd import numpy as np try: api except NameError: inports = [{'name': 'inData', 'type': 'message.DataFrame'}, {'name': 'inCoef', 'type': 'message.DataFrame'}] outports = [{'name': 'log', 'type': 'string'}, {'name': 'output', 'type': 'message.DataFrame'}] api.set_port_callback([inports[0]['name'], inports[1]['name']], call_on_input)
[ 11748, 264, 10989, 62, 26791, 13, 70, 641, 2122, 355, 308, 82, 198, 11748, 264, 10989, 62, 26791, 13, 2617, 62, 6404, 2667, 355, 25801, 198, 11748, 264, 10989, 62, 26791, 13, 5239, 3245, 62, 48610, 355, 256, 46428, 198, 198, 11748, ...
2.586957
184
message = "Hello Python World!" print(message)
[ 20500, 796, 366, 15496, 11361, 2159, 171, 120, 223, 1, 198, 4798, 7, 20500, 8, 198 ]
2.9375
16
from django.shortcuts import render from django.http import HttpResponse from django.http import HttpResponseRedirect import json from django.http import JsonResponse from urllib import urlencode from urllib import quote import requests from django.template import RequestContext, loader import re from django.shortcuts import redirect from django.views.decorators.csrf import csrf_exempt from config import GENOMICSCOPE, GENOMIC_ID, testJ, INDENTIFIER,REPORT,testJson, ID_SRCRET_BASE64, redirect_uri, API_BASE, AUTH_BASE, CLIENT_ID, REDIRECT_URI, SCOPES from whoosh.index import create_in, open_dir from whoosh.fields import * from whoosh.qparser import QueryParser from whoosh.query import * import os.path import string @csrf_exempt @csrf_exempt @csrf_exempt @csrf_exempt @csrf_exempt
[ 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 7738, 1060, 198, 11748, 33918, 198, 6738, 42625, 14208, 13, 4023, 13...
3.101167
257
"""SINDy-BVP Logic collection.""" # Import Python packages import pickle import warnings # Third-Party Imports from sklearn.model_selection import train_test_split # Package Imports from sindy_bvp.variables import DependentVariable, IndependentVariable from sindy_bvp.library_builders import TermBuilder, NoiseMaker from sindy_bvp.differentiators import BaseDifferentiator from sindy_bvp.optimizers import GroupRegressor, SGTR from sindy_bvp.analysis.plotter import Plotter from sindy_bvp.groupers import PointwiseGrouper class SINDyBVP: """Collection of all logic associated with SINDy-BVP.""" def __init__(self, file_stem: str, num_trials: int, differentiator: BaseDifferentiator, outcome_var: str, noisemaker: NoiseMaker = None, known_vars: list = None, dep_var_name: str = 'u', ind_var_name: str = 'x'): """Initialize the attributes from parameters. Keyword arguments: file_stem -- num_trials -- differentiator -- outcome_var -- noisemaker -- known_vars -- dep_var_name -- ind_var_name -- """ self.file_stem = file_stem self.num_trials = num_trials self.differentiator = differentiator self.outcome_var = outcome_var self.noisemaker = noisemaker self.known_vars = known_vars self.dv_name = dep_var_name self.iv_name = ind_var_name def sindy_bvp(self, report_results: bool = False): """Execute the core logic of SINDy-BVP. Keyword argument: report_results -- boolean if results should be printed. Returns: coeffs -- a dictionary containing key-np.ndarray pairs of the terms with nonzero coefficients pltr - a Plotter instance for generating analysis plots. """ # Step 1. Load in the data x_vector, ode_sols, forcings, sl_coeffs = self.load_data() # Step 2. Split data into testing and training # I've put a warning catch here because train_test_split will give # a future warning about test size being complement of train size # which is desired in our case and not worth warning the user about with warnings.catch_warnings(): warnings.filterwarnings("ignore") data_split = train_test_split(ode_sols, forcings, train_size=self.num_trials, random_state=0) # Random state is set to 0 for consistency sol_train, sol_test, f_train, f_test = data_split # Step 3. Build DataFrames containing data from each trial dfs = self.build_dataframes(sol_train, f_train) # Step 4. Prepare regression # Create the group regressor (Uses SGTR regression function above) aggregator = PointwiseGrouper(lhs_term=self.outcome_var) self.groupreg = GroupRegressor(aggregator, dfs, self.iv_name, sgtr=SGTR()) # Step 5. Execute group regression self.groupreg.group_regression(known_vars=self.known_vars) if report_results: self.groupreg.report_learning_results() # Step 6. Return learned coefficients and Plotter instance # which can generate analysis plots. coeffs = self.groupreg.return_coefficients() # Construct a plotter object with groupreg (which stores results) pltr = Plotter(groupreg=self.groupreg, x_vector=x_vector, true_coeffs=sl_coeffs, dependent_variable=self.dv_name, ode_sols=sol_train, is_sturm_liouville=True, show_legends=False) return coeffs, pltr def load_data(self): """Load in the saved data based on the provided file stem. Returns: x_vector -- the vector of x values used ([0,0.01,...,10]) ode_sols -- the solutions to BVP given different forcings forcings -- the forcings used for the ode solutions sl_coeffs -- the true coefficients used for the BVP model """ x_vector = pickle.load(open(self.file_stem + "x.pickle", "rb")) ode_sols = pickle.load(open(self.file_stem + "sols.pickle", "rb")) forcings = pickle.load(open(self.file_stem + "fs.pickle", "rb")) sl_coeffs = pickle.load(open(self.file_stem + "coeffs.pickle", "rb")) return x_vector, ode_sols, forcings, sl_coeffs def build_dataframes(self, ode_sols: list, used_fs: list): """Build dataframes containing evaluated symbolic functions. Keyword arguments: ode_sols -- the differential equation solutions to use used_fs -- the corresponding forcing functions for the solutions Returns: dataframes -- a list of dataframes containing the evaluated symbolic functions generated from each trial. """ # Create empty lists to house the stacked theta's and u's dataframes = [] # Create the dataframes for sol, f in zip(ode_sols, used_fs): # Prepare independent variable x_data = sol.t x = IndependentVariable(self.iv_name, x_data, poly_deg=0) # And prepare the dependent variable signal = sol.y[0] if self.noisemaker is not None: signal = self.noisemaker.apply_noise(signal) u = DependentVariable(self.dv_name, signal, nonlinear_deg=5) # TermBuilder instance builds dataframe from the trial data tb = TermBuilder([x], [u], self.differentiator) # Inject the forcing function into the dataframe tb.register_custom_term("f", f) # build_library_terms method computes symbolic functions for all # functions in the library and the outcome variable matrices at # all spatial coordinates in the system dataframe = tb.build_library_terms(lhs_term=self.outcome_var) # Add the dataframe to dataframes list dataframes.append(dataframe) # Return the dataframes return dataframes
[ 37811, 50, 12115, 88, 12, 33, 8859, 30146, 4947, 526, 15931, 198, 198, 2, 17267, 11361, 10392, 198, 11748, 2298, 293, 198, 11748, 14601, 198, 198, 2, 10467, 12, 33553, 1846, 3742, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 45...
2.320574
2,717
#INSERTION SORT - PART 2 #!/bin/python3 import math import os import random import re import sys # Complete the insertionSort2 function below. if __name__ == '__main__': n = int(input()) arr = list(map(int, input().rstrip().split())) insertionSort2(n, arr) #INSERTION SORT - PART 2 #!/bin/python3 import math import os import random import re import sys # Complete the insertionSort1 function below. if __name__ == '__main__': n = int(input()) arr = list(map(int, input().rstrip().split())) insertionSort1(n, arr) #RECURSIVE DIGIT SUM #!/bin/python3 import math import os import random import re import sys # Complete the superDigit function below. if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') nk = input().split() n = nk[0] k = int(nk[1]) result = superDigit(n, k) fptr.write(str(result) + '\n') fptr.close() #VIRAL ADVERTISING #!/bin/python3 import math import os import random import re import sys # Complete the viralAdvertising function below. if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') n = int(input()) result = viralAdvertising(n) fptr.write(str(result) + '\n') fptr.close() #NUMBER LINE JUMPS #!/bin/python3 import math import os import random import re import sys # Complete the kangaroo function below. if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') x1V1X2V2 = input().split() x1 = int(x1V1X2V2[0]) v1 = int(x1V1X2V2[1]) x2 = int(x1V1X2V2[2]) v2 = int(x1V1X2V2[3]) result = kangaroo(x1, v1, x2, v2) fptr.write(result + '\n') fptr.close() #BIRTHDAY CAKE CANDLES #!/bin/python3 import math import os import random import re import sys # # Complete the 'birthdayCakeCandles' function below. # # The function is expected to return an INTEGER. # The function accepts INTEGER_ARRAY candles as parameter. # if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') candles_count = int(input().strip()) candles = list(map(int, input().rstrip().split())) result = birthdayCakeCandles(candles) fptr.write(str(result) + '\n') fptr.close() #POLYNOMIALS import numpy print(numpy.polyval(numpy.array(input().split(),float),int(input()))) #INNER AND OUTER import numpy a=numpy.array([input().split()], int) b=numpy.array([input().split()], int) print (int(numpy.inner(a,b))) print (numpy.outer(a,b)) #DOT AND CROSS import numpy n=int(input()) a=numpy.array([input().split() for _ in range (n)],int) b=numpy.array([input().split() for _ in range (n)], int) print(numpy.dot(a,b)) #MEAN, VAR AND STD import numpy n,m=map(int,input().split()) arr=numpy.array([input().split() for _ in range (n)], int) numpy.set_printoptions(sign=' ') numpy.set_printoptions(legacy='1.13') print (numpy.mean(arr, axis=1)) print (numpy.var(arr, axis=0)) print (numpy.std(arr, axis= None)) #MIN AND MAX import numpy n,m=map(int,input().split()) arr=numpy.array([input().split() for _ in range (n)], int) minimum=numpy.min(arr, axis=1) print(numpy.max(minimum)) #SUM AND PROD import numpy n,m=map(int,input().split()) arr=numpy.array([input().split() for _ in range (n)], int) somma=numpy.sum(arr, axis=0) print (numpy.prod(somma)) #FLOOR, CEIL AND RINT import numpy a=numpy.array(input().split(), float) numpy.set_printoptions(sign=' ') print(numpy.floor(a)) print(numpy.ceil(a)) print(numpy.rint(a)) #ARRAY MATHEMATICS import numpy n,m=map(int,input().split()) a=numpy.array([input().split() for i in range(n)],dtype=int) b=numpy.array([input().split() for i in range(n)],dtype=int) print (a+b) print (a-b) print (a*b) print (a//b) print (a%b) print (a**b) #EYE AND IDENTITY import numpy n,m=map(int,input().split()) print (str(numpy.eye(n,m,k=0)).replace('1',' 1').replace('0',' 0')) #ZEROS AND ONES import numpy num = tuple(map(int, input().split())) print (numpy.zeros(num, dtype = numpy.int)) print (numpy.ones(num, dtype = numpy.int)) #CONCATENATE import numpy n,m,p=map(int,input().split()) arr1 = numpy.array([input().split() for _ in range(n)],int) arr2 = numpy.array([input().split() for _ in range(m)],int) print(numpy.concatenate((arr1, arr2), axis = 0)) #TRANSPOSE AND FLATTEN import numpy n, m = map(int, input().split()) mat = numpy.array([input().strip().split() for _ in range(n)], int) trans=numpy.transpose(mat) print (trans) print (mat.flatten()) #SHAPE AND RESHAPE import numpy print (numpy.reshape(numpy.array(input().split(),int),(3,3))) #ARRAYS #DECORATORS 2 - NAME DIRECTORY #STANDARDIZE MOBILE NUMBER USING DECORATORS #XML2 - FIND THE MAXIMUM DEPTH maxdepth = 0 #XML1 - FIND THE SCORE k=[] #MATRIX SCRIPT #!/bin/python3 import math import os import random import re import sys x,y = list(map(int,input().split())) rows =[input() for i in range(x)] text = "".join([row[i] for i in range(y) for row in rows]) text = re.sub('([A-Za-z1-9])[^A-Za-z1-9]+([A-Za-z1-9])', r'\1 \2', text) text = re.sub(' ', ' ', text) print(text) first_multiple_input = input().rstrip().split() n = int(first_multiple_input[0]) m = int(first_multiple_input[1]) matrix = [] for _ in range(n): matrix_item = input() matrix.append(matrix_item) #VALIDATING POSTAL CODES regex_integer_in_range = r"^[1-9][\d]{5}$" # Do not delete 'r'. regex_alternating_repetitive_digit_pair = r"(\d)(?=\d\1)" # Do not delete 'r'. #VALIDATING UID # Enter your code here. Read input from STDIN. Print output to STDOUT import re for _ in range(int(input())): u = ''.join(sorted(input())) try: assert re.search(r'[A-Z]{2}', u) assert re.search(r'\d\d\d', u) assert not re.search(r'[^a-zA-Z0-9]', u) assert not re.search(r'(.)\1', u) assert len(u) == 10 except: print('Invalid') else: print('Valid') #DETECT HTML TAGS, ATTRIBUTES AND ATTRIBUTE VALUES # Enter your code here. Read input from STDIN. Print output to STDOUT from html.parser import HTMLParser html = '\n'.join([input() for _ in range(int(input()))]) parser = MyHTMLParser() parser.feed(html) parser.close() #HTML PARSER - PART 2 from html.parser import HTMLParser import re html = "" for i in range(int(input())): html += input().rstrip() html += '\n' parser = MyHTMLParser() parser.feed(html) parser.close() #HTML PARSER - PART 1 # Enter your code here. Read input from STDIN. Print output to STDOUT from html.parser import HTMLParser html = "" for i in range(int(input())): html += input() parser = MyHTMLParser() parser.feed(html) parser.close() #HEX COLOR CODE # Enter your code here. Read input from STDIN. Print output to STDOUT import re reg = re.compile(r"(:|,| +)(#[abcdefABCDEF1234567890]{3}|#[abcdefABCDEF1234567890]{6})\b") n = int(input()) for i in range(n): line = input() items = reg.findall(line) if items: for item in items: print( item[1] ) #VALIDATING AND PARSING EMAIL ADDRESSES # Enter your code here. Read input from STDIN. Print output to STDOUT import re import email.utils pattern = re.compile(r"^[a-zA-Z][\w\-.]*@[a-zA-Z]+\.[a-zA-Z]{1,3}$") for _ in range(int(input())): u_name, u_email = email.utils.parseaddr(input()) if pattern.match(u_email): print(email.utils.formataddr((u_name, u_email))) #VALIDATING PHONE NUMBERS # Enter your code here. Read input from STDIN. Print output to STDOUT import re n= int(input()) for i in range(n): if (re.search(r"^[789]\d{9}$",input())): print ('YES') else: print ('NO') #VALIDATING ROMAN NUMERALS regex_pattern = r"^(?=[MDCLXVI])M{0,3}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$" # Do not delete 'r'. #REGEX SUBSTITUTION ## Enter your code here. Read input from STDIN. Print output to STDOUT import re N = int(input()) for i in range(N): print (re.sub(r'(?<= )(&&|\|\|)(?= )', lambda x: 'and' if x.group() == '&&' else 'or', input())) #RE.START() & RE.END() # Enter your code here. Read input from STDIN. Print output to STDOUT import re S = input() k = input() pattern = re.compile(k) r = pattern.search(S) if not r: print ("(-1, -1)") while r: print ("({0}, {1})".format(r.start(), r.end() - 1)) r = pattern.search(S,r.start() + 1) #RE.FINDALL() & RE.FINDITER() # Enter your code here. Read input from STDIN. Print output to STDOUT import re consonanti = 'qwrtypsdfghjklzxcvbnm' vocali = 'aeiou' match = re.findall(r'(?<=['+consonanti+'])(['+vocali+']{2,})(?=['+consonanti+'])',input(),flags = re.I) if match: for i in match: print (i) else: print (-1) #GROUP(), GROUPS() & GROUPDICT() # Enter your code here. Read input from STDIN. Print output to STDOUT import re m = re.search(r'([A-Za-z0-9])\1+',input()) if m: print (m.group(1)) else: print (-1) #RE.SPLIT() regex_pattern = r"[,.]" # Do not delete 'r'. #DETECT FLOATING POINT NUMBER # Enter your code here. Read input from STDIN. Print output to STDOUT import re for i in range(int(input())): k = input() print (bool(re.match(r'^[+-]?\d*?\.{1}\d+$',k))) #GINORTS # Enter your code here. Read input from STDIN. Print output to STDOUT low=[] upper=[] odd=[] even=[] for i in sorted(input()): if i.isalpha(): x = upper if i.isupper() else low else: x = odd if int(i)%2 else even x.append(i) print("".join(low+upper+odd+even)) #ATHLETE SORT #!/bin/python3 import math import os import random import re import sys if __name__ == '__main__': nm = input().split() n = int(nm[0]) m = int(nm[1]) arr = [] for _ in range(n): arr.append(list(map(int, input().rstrip().split()))) k = int(input()) s = sorted(arr, key = lambda x: x[k]) for i in range(n): print (str.join(' ', map(str, s[i]))) #ZIPPED! # Enter your code here. Read input from STDIN. Print output to STDOUT n,x= list(map(int,input().split())) C=[] for i in range (x): C.append(list(map(float, input().split()))) for j in list(zip(*C)): print (sum(j)/len(j)) #PILING UP! # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import defaultdict,deque T = int(input()) D = defaultdict(list) for i in range(T): k = input() D[i].append(list(map(int,input().split()))) for y in D: l = D[y][0].index(min(D[y][0])) if ordAsc(D[y][0][l:]): print ('Yes') else: print ('No') #COLLECTIONS.DEQUE() # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import deque d = deque() for i in range(int(input())): com = input().split() if com[0]=='append': d.append(int(com[1])) elif com[0]=='appendleft': d.appendleft(int(com[1])) elif com[0]=='pop': d.pop() else: d.popleft() for i in (d): print (i,end=' ') #WORD ORDER # Enter your code here. Read input from STDIN. Print output to STDOUT import collections; N = int(input()) d = collections.OrderedDict() for i in range(N): word = input() if word in d: d[word] +=1 else: d[word] = 1 print(len(d)) for k,v in d.items(): print(v,end = " ") #COLLECTIONS.ORDEREDDICT() # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import OrderedDict N = int(input()); d = OrderedDict(); for i in range(N): item = input().split() itemPrice = int(item[-1]) itemName = " ".join(item[:-1]) if(d.get(itemName)): d[itemName] += itemPrice else: d[itemName] = itemPrice for i in d.keys(): print(i, d[i]) #COLLECTIONS.NAMEDTUPLE() # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import namedtuple n = int(input()) col = input() a = 0 student = namedtuple("student", col) for i in range (n): stud = student._make(input().split()) a += int(stud.MARKS) print ("{:.2f}".format(a/n)) #DEFAULTDICT TUTORIAL # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import defaultdict n, m = map(int, input().split()) d = defaultdict(lambda: -1) for i in range(1, n+1): word = input() d[word] = d[word] + ' ' + str(i) if word in d else str(i) for _ in range(m): print(d[input()]) #EXCEPTIONS for test in range(int(input())): try: a,b = map(int,input().split()) division_result = a // b print(division_result) except ZeroDivisionError as e: print("Error Code:", e) except ValueError as e: print("Error Code:", e) #COLLECTIONS.COUNTER() # Enter your code here. Read input from STDIN. Print output to STDOUT from collections import Counter X = int(input()) shoes = [int(val) for val in input().split()] N = int(input()) shoe_collection = Counter(shoes) total_money = 0 for i in range(N): size, money = [int(val) for val in input().split()] if shoe_collection.get(size): total_money += money shoe_collection[size] -= 1 print(total_money) #CHECK STRICT SUPERSET # Enter your code here. Read input from STDIN. Print output to STDOUT set_A = set(input().split()) n= int(input()) cnt = 0 check = True for _ in range(n): if not set_A.issuperset(set(input().split())): check = False break print(check) #CHECK SUBSET # Enter your code here. Read input from STDIN. Print output to STDOUT test_case=int(input()) for _ in range(test_case): line_1, line_2 = int(input()), set(input().split()) line_3, line_4 = int(input()), set(input().split()) print(line_2.issubset(line_4)) #THE CAPTAIN'S ROOM # Enter your code here. Read input from STDIN. Print output to STDOUT k = input() set_a= set() set_b= set() for room in (input().split()): if room not in set_a: set_a.add(room) else: set_b.add(room) set_a.difference_update(set_b) print(set_a.pop()) #SET MUTATIONS # Enter your code here. Read input from STDIN. Print output to STDOUT n=int(input()) a=set(map(int,input().split())) m=int(input()) for _ in range (m): com=(input().split()) s=set(map(int,input().split())) if com[0]=='intersection_update': a.intersection_update(s) elif com[0]=='update': a.update(s) elif com[0]=='symmetric_difference_update': a.symmetric_difference_update(s) elif com[0]=='difference_update': a.difference_update(s) print (sum(map(int,a))) #SET .SYMMETRIC_DIFFERENCE() OPERATION # Enter your code here. Read input from STDIN. Print output to STDOUT n =int(input()) e=set(input().split()) m=int(input()) f=set(input().split()) tot=len(e.symmetric_difference(f)) print (tot) #SET .DIFFERENCE() OPERATION # Enter your code here. Read input from STDIN. Print output to STDOUT n =int(input()) e=set(input().split()) m=int(input()) f=set(input().split()) tot=len(e.difference(f)) print (tot) #SET .INTERSECTION() OPERATION # Enter your code here. Read input from STDIN. Print output to STDOUT n =int(input()) e=set(input().split()) m=int(input()) f=set(input().split()) tot=len(e.intersection(f)) print (tot) #SET .UNION() OPERATION # Enter your code here. Read input from STDIN. Print output to STDOUT n =int(input()) e=set(input().split()) m=int(input()) f=set(input().split()) tot=len(e.union(f)) print (tot) #SET .DISCARD(), .REMOVE() & .POP() n = int(input()) s = set(map(int, input().split())) N = int(input()) for _ in range(N): x = input().split() if len(x) == 1: s.pop() elif x[0] == 'remove': try: s.remove(int(x[1])) except: next elif x[0] == 'discard': s.discard(int(x[1])) print(sum(s)) #MAP AND LAMBDA FUNCTION cube = lambda x: x*x*x# complete the lambda function #SET .ADD() # Enter your code here. Read input from STDIN. Print output to STDOUT n=int(raw_input()) stamps=set(raw_input() for i in range (n)) tot=len(stamps) print tot #NO IDEA! # Enter your code here. Read input from STDIN. Print output to STDOUT n_m = map(int,raw_input().split()) n = map(int, raw_input().split()) A = set(map(int, raw_input().split())) B = set(map(int, raw_input().split())) happiness = 0 for i in n: if i in A: happiness += 1 elif i in B: happiness -= 1 print happiness #SYMMETRIC DIFFERENCE # Enter your code here. Read input from STDIN. Print output to STDOUT M = int(raw_input()) set_M = set(map(int,raw_input().split())) N = int(raw_input()) set_N = set(map(int,raw_input().split())) diff = (set_M.difference(set_N)).union(set_N.difference(set_M)) for i in sorted(list(diff)): print i #INTRODUCTION TO SETS #CALENDAR MODULE # Enter your code here. Read input from STDIN. Print output to STDOUT import calendar import calendar k = map(int,raw_input().split()) m = calendar.weekday(k[2],k[0],k[1]) w = ['MONDAY','TUESDAY','WEDNESDAY','THURSDAY','FRIDAY','SATURDAY','SUNDAY'] print w[m] #MERGE THE TOOLS! #THE MINION GAME #CAPITALIZE! # Complete the solve function below. #ALPHABET RANGOLI #STRING FORMATTING #DESIGNER DOOR MAT # Enter your code here. Read input from STDIN. Print output to STDOUT N, M = map(int,raw_input().split()) for i in xrange(0,N/2): print ('.|.'*i).rjust((M-2)/2,'-')+'.|.'+('.|.'*i).ljust((M-2)/2,'-') print 'WELCOME'.center(M,'-') for i in reversed(xrange(0,N/2)): print ('.|.'*i).rjust((M-2)/2,'-')+'.|.'+('.|.'*i).ljust((M-2)/2,'-') #TEXT WRAP #TEXT ALIGNMENT # Enter your code here. Read input from STDIN. Print output to STDOUT thickness = int(input()) # This must be an odd number c = 'H' # Top Cone for i in range(thickness): print((c * i).rjust(thickness - 1) + c + (c * i).ljust(thickness - 1)) # Top Pillars for i in range(thickness + 1): print((c * thickness).center(thickness * 2) + (c * thickness).center(thickness * 6)) # Middle Belt for i in range((thickness + 1) // 2): print((c * thickness * 5).center(thickness * 6)) # Bottom Pillars for i in range(thickness + 1): print((c * thickness).center(thickness * 2) + (c * thickness).center(thickness * 6)) # Bottom Cone for i in range(thickness): print(((c * (thickness - i - 1)).rjust(thickness) + c + (c * (thickness - i - 1)).ljust(thickness)).rjust(thickness * 6)) #STRING VALIDATORS if __name__ == '__main__': s = raw_input() print (any(c.isalnum() for c in s)) print (any(c.isalpha() for c in s)) print (any(c.isdigit() for c in s)) print (any(c.islower() for c in s)) print (any(c.isupper() for c in s)) #FIND A STRING #MUTATIONS #WHAT'S YOUR NAME? #STRING SPLIT AND JOIN #SWAP CASE #TUPLES if __name__ == '__main__': n = int(raw_input()) integer_list = map(int, raw_input().split()) t = tuple(integer_list) print(hash(t)) #LISTS if __name__ == '__main__': N = int(raw_input()) lista = [] for i in range(N): option = raw_input().split() if option[0] == 'print': print(lista) elif option[0] == 'sort': lista.sort() elif option[0] == 'remove': lista.remove(int(option[1])) elif option[0] == 'append': lista.append(int(option[1])) elif option[0] == 'insert': lista.insert(int(option[1]),int(option[2])) elif option[0] == 'reverse': lista.reverse() elif option[0] == 'pop': lista.pop() #VALIDATING CREDIT CARD NUMBERS # Enter your code here. Read input from STDIN. Print output to STDOUT import re for i in range(int(raw_input())): S = raw_input().strip() pre_match = re.search(r'^[456]\d{3}(-?)\d{4}\1\d{4}\1\d{4}$',S) if pre_match: processed_string = "".join(pre_match.group(0).split('-')) final_match = re.search(r'(\d)\1{3,}',processed_string) print 'Invalid' if final_match else 'Valid' else: print 'Invalid' #LINEAR ALGEBRA # Enter your code here. Read input from STDIN. Print output to STDOUT import numpy n=int(raw_input()) m=[] for i in range(n): m.append(map(float,raw_input().split())) print round(numpy.linalg.det(numpy.array(m)),2) #FINDING THE PERCENTAGE if __name__ == '__main__': n = int(raw_input()) student_marks = {} for _ in range(n): line = raw_input().split() name, scores = line[0], line[1:] scores = map(float, scores) student_marks[name] = scores query_name = raw_input() l=list(student_marks[query_name]) length=len(l) s=sum(l) average=s/length print('%.2f'%average) #LIST COMPREHENSIONS if __name__ == '__main__': x = int(raw_input()) y = int(raw_input()) z = int(raw_input()) n = int(raw_input()) result=[[i,j,k] for i in range (x+1) for j in range (y+1) for k in range (z+1) if (i+j+k!=n)] print (result) #NESTED LISTS from __future__ import print_function score_list = {} for _ in range(input()): name = raw_input() score = float(raw_input()) if score in score_list: score_list[score].append(name) else: score_list[score] = [name] new_list = [] for i in score_list: new_list.append([i, score_list[i]]) new_list.sort() result = new_list[1][1] result.sort() print (*result, sep = "\n") #FIND THE RUNNER-UP SCORE! if __name__ == '__main__': n = int(raw_input()) arr = map(int, raw_input().split()) s1 = max(arr) s2 = -9999999999 for i in range(n): if arr[i] != s1 and arr[i] > s2: s2 = arr[i] print s2 #COMPRESS THE STRING! # Enter your code here. Read input from STDIN. Print output to STDOUT from __future__ import print_function from itertools import * for i,j in groupby(map(int,list(raw_input()))): print(tuple([len(list(j)), i]) ,end = " ") #COMPANY LOGO # Enter your code here. Read input from STDIN. Print output to STDOUT S = raw_input() letters = [0]*26 for letter in S: letters[ord(letter)-ord('a')] += 1 for _ in range(3): max_letter = max(letters) for index in range(26): if max_letter == letters[index]: print chr(ord('a')+index), max_letter letters[index] = -1 break #PRINT FUNCTION from __future__ import print_function if __name__ == '__main__': n = int(input()) for i in range (n): print (i+1,end="") #WRITE A FUNCTION #LOOPS if __name__ == '__main__': n = int(raw_input()) for i in range (n) : if i<n: print (i*i) #PYTHON: DIVISION from __future__ import division if __name__ == '__main__': a = int(raw_input()) b = int(raw_input()) print (a//b) print (a/b) #ARITHMETIC OPERATORS if __name__ == '__main__': a = int(raw_input()) b = int(raw_input()) print (a+b) print (a-b) print (a*b) #PYTHON IF-ELSE #!/bin/python import math import os import random import re import sys if __name__ == '__main__': n = int(raw_input().strip()) if n in range (2,5): if n%2==0: print ("Not Weird") else: print ("Weird") elif n in range (6,20): #if n%2==0: #print ("Not Weird") #else: print ("Weird") print ("Weird") elif n > 20: if n%2==0: print ("Not Weird") else: print ("Weird") else : print ("Weird") #SAY "HELLO, WORLD!" WITH PYTHON if __name__ == '__main__': print "Hello, World!" #SOLVE ME FIRST num1 = int(input()) num2 = int(input()) res = solveMeFirst(num1,num2) print(res)
[ 2, 20913, 17395, 2849, 311, 9863, 532, 16652, 362, 201, 198, 2, 48443, 8800, 14, 29412, 18, 201, 198, 201, 198, 11748, 10688, 201, 198, 11748, 28686, 201, 198, 11748, 4738, 201, 198, 11748, 302, 201, 198, 11748, 25064, 201, 198, 201, ...
2.166358
11,337
import json from termcolor import colored from dcplib.component_entities import EntityBase class Project(EntityBase): """ Model an Ingest Project entity """ @classmethod @classmethod @property @property @property @property @property @property """ Yields [name, role] for contributors that have a role """ class SubmissionEnvelope(EntityBase): """ Model an Ingest Submission Envelope entity """ UNPROCESSED_STATUSES = ['Invalid', 'Draft', 'Valid', 'Pending', 'Validating'] @classmethod @classmethod @property @property @property @property @property @property def project(self): """ Assumes only one project """ projects = self.projects() if len(projects) != 1: raise RuntimeError(f"Expect 1 project got {len(projects)}") return projects[0] def upload_credentials(self): """ Return upload area credentials or None if this envelope doesn't have an upload area yet """ staging_details = self.data.get('stagingDetails', None) if staging_details and 'stagingAreaLocation' in staging_details: return staging_details.get('stagingAreaLocation', {}).get('value', None) return None def bundle_count(self): """An optimized version of bundle counting, using the fact that the HAL API returns 'totalElements' in the first response. """ bundle_manifest_url = self.data['_links']['bundleManifests']['href'] data = self.api.get(bundle_manifest_url) return data['page']['totalElements'] class File: """ Model an Ingest File entity """ @property @property
[ 11748, 33918, 198, 198, 6738, 3381, 8043, 1330, 16396, 198, 198, 6738, 30736, 489, 571, 13, 42895, 62, 298, 871, 1330, 20885, 14881, 628, 198, 4871, 4935, 7, 32398, 14881, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9104, 281...
2.680982
652
#!/usr/bin/python import numpy as np import time import matplotlib.pyplot as plt import random NUM = 30 if __name__ == '__main__': XX,YY,dx,dy = gen_lattice(1.0,1.0,NUM) vmin = 0.0 vmax = 2.0 #start = 2.0*np.exp(-10.0*(np.power(XX-0.5,2)+np.power(YY-0.5,2))) start = np.zeros((NUM,NUM)) for j in range(2000): start[random.randrange(0,NUM-1,1)][random.randrange(0,NUM-1,1)] = random.random()+1 fig, ax = plt.subplots() im = ax.imshow(start,origin='lower',vmin=vmin,vmax=vmax) step = start for i in range(600): step = update(step,0.0004,dx,dy) ax.cla() im = ax.imshow(step,origin='lower',vmin=vmin,vmax=vmax) ax.set_title("frame {}".format(i)) plt.pause(0.0001)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 640, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 4738, 198, 198, 41359, 796, 1542, 220, 198, 197, 198, 197, 198, ...
1.936869
396
# mathematical imports - import numpy as np from matplotlib import pyplot as plt from sklearn import metrics from math import sqrt import seaborn as sns sns.set() import torch # load network imports - import os import sys sys.path.insert(0, '/Users/chanaross/dev/Thesis/MachineLearning/forGPU/') from CNN_LSTM_NeuralNet_LimitZerosV2 import Model def createEventDistributionUber(previousEventMatrix, my_net, eventTimeWindow, startTime, endTime): """ this function calculates future events based on cnn lstm network :param previousEventMatrix: event matrix of previous events :param my_net: learned network :param eventTimeWindow: time each event is opened (for output) :param startTime: start time from which events are created :param endTime: end time to create events (start and end time define the output sequence length) :return: eventPos, eventTimeWindow, outputEventMat """ # previousEventMatrix is of size: [seq_len, x_size, y_size] if endTime - startTime == 0: # should output one prediction out_seq = 1 else: out_seq = endTime - startTime x_size = previousEventMatrix.shape[1] y_size = previousEventMatrix.shape[2] netEventOut = torch.zeros([out_seq, x_size, y_size]) for seq in range(out_seq): tempEventMat = previousEventMatrix input = getInputMatrixToNetwork(previousEventMatrix, my_net.cnn_input_dimension) k = 0 for x in range(x_size): for y in range(y_size): # calculate output for each grid_id testOut = my_net.forward(input[:, :, :, :, k]) _, netEventOut[seq, x, y] = torch.max(torch.exp(testOut.data), 1) k += 1 previousEventMatrix[0:-1, :, :] = tempEventMat[1:, :, :] previousEventMatrix[-1, :, :] = netEventOut[seq, :, :] # in the end netEventOut is a matrix of size [out_seq_len, size_x, size_y] eventPos = [] eventTimes = [] for t in range(out_seq): for x in range(x_size): for y in range(y_size): numEvents = netEventOut[t, x, y] # print('at loc:' + str(x) + ',' + str(y) + ' num events:' + str(numEvents)) #for n in range(numEvents): if numEvents > 0: eventPos.append(np.array([x, y])) eventTimes.append(t+startTime) eventsPos = np.array(eventPos) eventTimes = np.array(eventTimes) eventsTimeWindow = np.column_stack([eventTimes, eventTimes + eventTimeWindow]) return eventsPos, eventsTimeWindow, netEventOut.detach().numpy() if __name__ == '__main__': main() print('Done.')
[ 2, 18069, 17944, 532, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 2603, 29487, 8019, 1330, 220, 12972, 29487, 355, 458, 83, 198, 6738, 1341, 35720, 1330, 20731, 198, 6738, 10688, 1330, 19862, 17034, 198, 11748, 384, 397, 1211, 355, 3...
2.457379
1,091
#!/usr/bin/env python import chainercv # import cv2 import fcis from fcis.datasets.coco import COCOInstanceSegmentationDataset import numpy as np from train import get_keep_indices from train import remove_zero_bbox if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 11748, 6333, 2798, 85, 198, 2, 1330, 269, 85, 17, 198, 11748, 277, 66, 271, 198, 6738, 277, 66, 271, 13, 19608, 292, 1039, 13, 66, 25634, 1330, 327, 4503, 46, 33384, 41030, 14...
2.784946
93
import zlib import io from .datatypes import * from .utils import * class TypeString: """Representation of `qtype`.""" def __getitem__(self, x): """Index/slice typestring""" if isinstance(x, slice): if x.step is not None: raise NotImplementedError( "Type string slice does not handle stepping") if x.stop is None: return self._typestring[self._pos + x.start:] else: return self._typestring[self._pos + x.start:self._pos + x.stop] return self._typestring[self._pos + x] def __len__(self): """Get the length of the typestring""" return len(self._typestring) - self._offset def __iadd__(self, n): """Increment stream position""" self._pos += n return self def seek(self, n): """ ptr+=n """ self._pos += n def get(self): """ ptr_copy = ptr """ return TypeString(self._typestring, self._pos) def peek_db(self, pos=0): """ u8 val = *(u8*)ptr """ return self[pos] def read_db(self, pos=0): """ u8 val = *(u8*)ptr++""" data = self[pos] self.seek(1) return data def read_dt(self): """ Reads 1 to 2 bytes. Value Range: 0-0xFFFE Usage: 16bit numbers Returns: int: Arbitrary value. """ val = self.read_db() if val & 0x80: val = ((val & 0x7f) | (self.read_db() << 7)) return val - 1 def read_de(self): """ Reads 1 to 5 bytes Value Range: 0-0xFFFFFFFF Usage: Enum Deltas Returns: int: Delta value """ val = 0 while True: b = self.read_db() hi = val << 6 sign = (b & 0x80) if not sign: lo = b & 0x3f else: lo = 2 * hi hi = b & 0x7f val = lo | hi if not sign: break return val def read_da(self): """ Reads 1 to 9 bytes. ValueRange: 0x-0x7FFFFFFF, 0-0xFFFFFFFF Usage: Arrays Returns: (bool, int, int): Status, number of elements, and base. """ a = 0 b = 0 da = 0 base = 0 nelem = 0 while True: c = self.peek_db() if c & 0x80 == 0: break self.seek(1) da = (da << 7) | c & 0x7f b += 1 if b >= 4: z = self.peek_db() if z != 0: base = 0x10 * da | z & 0xf nelem = (self.read_db() >> 4) & 7 while True: c = self.peek_db() if (c & 0x80) == 0: break self.seek(1) nelem = (nelem << 7) | c & 0x7f a += 1 if a >= 4: return True, nelem, base return False, nelem, base @staticmethod class TypeInfo: """Representation of tinfo_t.""" @staticmethod class TypeData: """Represents the serialized type data.""" def get_name(self): """ Get the name for this type. Returns: str: Type name. """ return self._name.decode("ascii") def get_ordinal(self): """ Get the type's ordinal/value. Returns: int: Ordinal or value for symbols. """ return self._ordinal def get_type_string(self): """ Get the serialized type info string. Returns: TypeString: Serialized type info string. """ return self._typestr def get_fields(self): """ Get the serialized field name p-list. Returns: TypeString: Serialized field names. """ return self._fields def get_field_comments(self): """ Get the serialized field comments p-list. Returns: TypeString: Serialized field comments. """ return self._fieldcmts def get_comment(self): """ Get the serialized comment p-list. Returns: TypeString: Serialized comments. """ return self._cmt def set_type_info(self, tinfo): """ Set TypeInfo object. Args: tinfo (TypeInfo): Input type info object. """ self._tinfo = tinfo def get_type_info(self): """ Get TypeInfo object. Returns: TypeInfo: Type info object. """ return self._tinfo class Macro: """Represents a macro loaded from a bucket. TODO: Should probably be merged with TypeData. """ # TIL values for `flags` TIL_ZIP = 0x0001 TIL_MAC = 0x0002 TIL_ESI = 0x0004 TIL_UNI = 0x0008 TIL_ORD = 0x0010 TIL_ALI = 0x0020 TIL_MOD = 0x0040 TIL_STM = 0x0080 TIL_SLD = 0x0100 class TILBucket: """Handle's unpacking a single TIL bucket.""" def __iter__(self): """Yields a type from the type list. Returns: Union[TypeData,Macro]: Serialized type data. """ for typ in self._types: yield typ class TILHeader: """Parses the TIL header.""" class TIL: """Represents a single TIL file.""" def _read_header(self): """Read the TIL header.""" self._stream.seek(0) self._header = TILHeader(self._stream) def _read_buckets(self): """Read each bucket.""" self._syms = TILBucket(self._header.flag & 0xCF, self._stream) self._types = TILBucket(self._header.flag, self._stream) self._macros = TILBucket(self._header.flag & 0xCF, self._stream) self._load_bucket(self._syms) self._load_bucket(self._types) self._load_macros(self._macros) self._process_bucket(self._syms) self._process_bucket(self._types) def deserialize(self, typestr, fields, fieldcmts): """ Deserialize a TypeString into a TypeInfo object. Args: typestr (TypeString): Input serialized type string. fields (TypeString): Input serialized fields p-list. fieldcmts (TypeString): Input serialized field comments p-list. Returns: TypeInfo: Output TypeInfo object. """ typ = typestr.peek_db() base = typ & TYPE_BASE_MASK flags = typ & TYPE_FLAGS_MASK if base <= BT_LAST_BASIC: typestr += 1 return TypeInfo(typ) if base > BT_LAST_BASIC: typedata = None if base == BT_COMPLEX and flags != BTMT_TYPEDEF: t = typestr.get() t += 1 N = t.read_complex_n() if N == 0: typedata = TypedefTypeData() typedata.name = t.read_pstring().decode("ascii") # I don't like this, we're going to need to come up with a # way to do this automatically typestr += t.pos() return TypeInfo.create_type_info(typ, typedata) if base == BT_PTR: typedata = PointerTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif base == BT_ARRAY: typedata = ArrayTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif base == BT_FUNC: typedata = FuncTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif base == BT_COMPLEX: if flags == BTMT_STRUCT or flags == BTMT_UNION: typedata = UdtTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif flags == BTMT_ENUM: typedata = EnumTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif flags == BTMT_TYPEDEF: typedata = TypedefTypeData() \ .deserialize(self, typestr, fields, fieldcmts) elif base == BT_BITFIELD: typedata = BitfieldTypeData() \ .deserialize(self, typestr, fields, fieldcmts) return TypeInfo.create_type_info(typ, typedata) def serialize(self, tinfo, typestr): """ Serialize a TypeInfo object into a TypeString. Args: tinfo (TypeInfo): Input TypeInfo object. typestr (TypeString): Output TypeString. """ typ = tinfo.get_decl_type() base = typ & TYPE_BASE_MASK if base <= BT_LAST_BASIC: typestr.append_db(typ) return if base > BT_LAST_BASIC: details = tinfo.get_type_details() if details is not None: details.serialize(self, tinfo, typestr) def get_header(self): """ Get header information. Returns: TILHeader: The header information. """ return self._header def get_syms(self): """ Get the symbol bucket. Returns: TILBucket: The symbol bucket. """ return self._syms def get_types(self): """ Get the type bucket. Returns: TILBucket: The type bucket. """ return self._types def get_macros(self): """ Get the macro bucket. Returns: TILBucket: The macro bucket. """ return self._macros def get_named_type(self, name, is_type): """ Get named typeinfo. Args: name (str): The name of the type. is_type (bool): True if this is a type and otherwise for symbols. Returns: TypeData: The serialized type data. """ bucket = self._types if is_type else self._syms for type_data in bucket.get_types(): if name == type_data.get_name(): return type_data return None
[ 11748, 1976, 8019, 198, 11748, 33245, 198, 6738, 764, 19608, 265, 9497, 1330, 1635, 198, 6738, 764, 26791, 1330, 1635, 628, 198, 4871, 5994, 10100, 25, 198, 220, 220, 220, 37227, 40171, 341, 286, 4600, 80, 4906, 63, 526, 15931, 628, 2...
1.93919
5,213
# -*- mode: python; encoding: utf-8 -*- # # Copyright 2012 Jens Lindström, Opera Software ASA # # 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. from subprocess import Popen as process, PIPE from sys import argv, stderr, exit import re from dbutils import find_file, describe_file import gitutils import syntaxhighlight import syntaxhighlight.request from diffutils import expandWithContext from htmlutils import htmlify, jsify from time import strftime import diff import diff.analyze import diff.parse import diff.merge import load import dbutils import client
[ 2, 532, 9, 12, 4235, 25, 21015, 26, 21004, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 198, 2, 15069, 2321, 449, 641, 9329, 2536, 9101, 76, 11, 26049, 10442, 49599, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, ...
3.646048
291
# -*- coding: utf-8 -*- """ Defines the the logger object to track execution Logs are stored into logs/emotion_YYYY-mm-dd.log files Default logger level is set to INFO, use --logger-level DEBUG tag to get more information about execution trace. To setup logger : >>> from log import stetup_custom_logger >>> logger = setup_custom_logger() To log log into file : >>> logger.info("my first log message") Content of logs/emotion_YYYY-mm-dd.log > YYYY-mm-dd HH:MM:SS,sss - INFO - <module> - my first message """ import logging import time import os
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 7469, 1127, 262, 262, 49706, 2134, 284, 2610, 9706, 198, 198, 11187, 82, 389, 8574, 656, 17259, 14, 368, 9650, 62, 26314, 26314, 12, 3020, 12, 1860, 13, 64...
3.118644
177
############################################################################### ## Jesse Engreitz ## September 29, 2021 import pybedtools from pybedtools import BedTool import pandas as pd import numpy as np import argparse from pandas.io.parsers import read_table from Bio.SeqFeature import FeatureLocation from collections import OrderedDict from Bio import SeqUtils from itertools import product from random import sample ############################################### ############################################## ############################################## if __name__ == '__main__': args = parseargs() main(args)
[ 29113, 29113, 7804, 4242, 21017, 198, 2235, 18033, 1985, 260, 4224, 198, 2235, 2693, 2808, 11, 33448, 198, 198, 11748, 12972, 3077, 31391, 198, 6738, 12972, 3077, 31391, 1330, 15585, 25391, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748...
4.28
150
from lib.types import * from lib.graph import * from lib.command import * from lib.parser import * import inspect import os import doctest import sys def parser_tests(): ''' >>> variable.parseString('?a', parseAll=True)[0] ?a >>> literal.parseString('1.0', parseAll=True)[0] 1.0 >>> literal.parseString('1', parseAll=True)[0] 1 >>> print literal.parseString('"abc"', parseAll=True)[0] "abc" >>> expression.parseString(':a :b 3 .', parseAll=True)[0] :a :b 3 . >>> expression.parseString('?a <http://www.example.com> abc:def .', parseAll=True)[0] ?a ( <http://www.example.com> abc:def ) >>> [s for s in expression.parseString('<a> a <b> ; <c> <d>, <e> .', parseAll=True)] [<a> rdf:type <b> ; <c> <d>, <e> .] >>> expression.parseString('@reinit', parseAll=True)[0] @reinit >>> expression.parseString('@draw <test.png>', parseAll=True)[0] @draw <test.png> >>> expression.parseString('@import <test.ttl>', parseAll=True)[0] @import <test.ttl> >>> expression.parseString('@load <test.xml>', parseAll=True)[0] @load <test.xml> >>> expression.parseString('?a = :a :b 3 .', parseAll=True)[0] ?a = :a :b 3 . >>> expression.parseString('@prefix ex: <http://www.example.com/example#> .', parseAll=True)[0] @prefix ex: <http://www.example.com/example#> >>> expression.parseString('@for ?obj in (1 <a> ?x b:c "five") { <a> <b> ?obj . }', parseAll=True)[0] @for ?obj in ( 1 <a> ?x b:c "five" ) <a> <b> ?obj . >>> expression.parseString('@out', parseAll=True)[0] @out >>> expression.parseString('@out <test.ttl>', parseAll=True)[0] @out <test.ttl> >>> expression.parseString('@reinit', parseAll=True)[0] @reinit >>> expression.parseString('@base <abc.org>', parseAll=True)[0] @base <abc.org> >>> expression.parseString('<a> <b> true .', parseAll=True)[0] <a> <b> true . >>> expression.parseString('<a> <b> false .', parseAll=True)[0] <a> <b> false . >>> expression.parseString('?a :b :c ; :d :e .', parseAll=True)[0] ?a :b :c ; :d :e . ''' def w3_tests(): ''' >>> g = Graph() >>> g.parse(text='@import <test.nt>') 1 >>> g.reinit() >>> for i in range(14): ... uri = 'http://www.w3.org/2001/sw/DataAccess/df1/tests/test-%s.ttl' % str(i).zfill(2) ... p = g.parse(text='@import <%s> .' % uri) ... assert(p == 1) >>> g.parse(text='@import <http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfs-namespace.ttl>') 1 >>> g.parse(text='@import <http://www.w3.org/2001/sw/DataAccess/df1/tests/manifest.ttl>') 1 ''' def graph_tests(): ''' >>> g = Graph() >>> g.execute(Statement(Uri('node1'), [(QUri('p:node2'), [Uri('node3'), Uri('node4')])])) >>> g.statements {<node1>: {p:node2: set([<node3>, <node4>])}} >>> prefix = PrefixCommand(prefix='ex', uri=Uri('http://www.example.com/example#')) >>> g.execute(prefix) >>> g.prefixes {'rdf': <http://www.w3.org/1999/02/22-rdf-syntax-ns#>, 'ex': <http://www.example.com/example#>} >>> str(Uri('http://www.example.com/example#sample').apply_prefix(g)) 'ex:sample' >>> try: os.remove('test.png') ... except OSError: pass >>> os.path.exists('test.png') False >>> g.draw('test.png') >>> os.path.exists('test.png') True >>> g.parse(text='@load <test.xml>') 1 >>> g.parse(text='@import <test.bvr>') 1 >>> g.parse(text='<a> a <b>, <c> .') 1 >>> g.reinit() >>> g.parse(text='@load <http://www.nexml.org/nexml/examples/trees.rdf>') 1 >>> sorted([str(s) for s in g.statements.keys()])[:5] ['<http://example.org/e1>', '<http://example.org/e2>', '<http://example.org/e3>', '<http://example.org/e4>', '<http://example.org/e5>'] >>> g.reinit() >>> g.parse(text='@for ?x in (1 2 3 4 5) { <a> <b> ?x . }') 1 >>> g.statements[Uri('a')][Uri('b')] set([1, 2, 3, 4, 5]) >>> g.parse(text="?cat ?name = { ?name a example:cat . <ben> <has_cat> ?name . }") 1 >>> g.parse(text="@for ?name in (<whiskers> <socks> <oreo>) ?cat ?name .") 1 >>> g.statements[Uri('ben')][Uri('has_cat')] set([<socks>, <whiskers>, <oreo>]) >>> g.reinit() >>> g.parse(text='?a ?b = { <things> <not_a_one> ?b } . ?a 1 = { <things> <is_a_one> 1 } .') 2 >>> g.parse(text='@for ?x in (1 2 <bob> "1") ?a ?x .') 1 >>> g.statements[Uri('things')][Uri('is_a_one')] set([1]) >>> g.statements[Uri('things')][Uri('not_a_one')] set(["1", 2, <bob>]) >>> g.parse(text='@for ?x in (2 <bob> "1") @del <things> <not_a_one> ?x . @del <things> <is_a_one> 1 .') 2 >>> g.statements {} >>> g.base_uri is None True >>> g.parse(text='@base <http://www.example.org> .') 1 >>> g.base_uri <http://www.example.org> ''' if __name__ == '__main__': if len(sys.argv) > 1: verbose = eval(sys.argv[1]) else: verbose=False run_tests(verbose=verbose)
[ 6738, 9195, 13, 19199, 1330, 1635, 198, 6738, 9195, 13, 34960, 1330, 1635, 198, 6738, 9195, 13, 21812, 1330, 1635, 198, 6738, 9195, 13, 48610, 1330, 1635, 198, 11748, 10104, 198, 11748, 28686, 198, 11748, 10412, 395, 198, 11748, 25064, ...
2.166522
2,306
"""Python 3 Unicode test."""
[ 37811, 37906, 513, 34371, 1332, 526, 15931, 628 ]
3.75
8
"""Represent the IPX800V5 base entity.""" from pypx800v5 import IPX800 from pypx800v5.const import EXTENSIONS, IPX from voluptuous.util import Upper from homeassistant.const import ( CONF_DEVICE_CLASS, CONF_ENTITY_CATEGORY, CONF_ICON, CONF_ID, CONF_NAME, CONF_UNIT_OF_MEASUREMENT, ) from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC from homeassistant.helpers.update_coordinator import ( CoordinatorEntity, DataUpdateCoordinator, ) from homeassistant.util import slugify from .const import ( CONF_COMPONENT, CONF_EXT_NAME, CONF_EXT_NUMBER, CONF_EXT_TYPE, CONF_IO_NUMBER, CONF_IO_NUMBERS, CONF_TRANSITION, DEFAULT_TRANSITION, DOMAIN, ) class IpxEntity(CoordinatorEntity): """Representation of a IPX800 generic device entity.""" def __init__( self, device_config: dict, ipx: IPX800, coordinator: DataUpdateCoordinator, suffix_name: str = None, device_name: str = None, ) -> None: """Initialize the device.""" super().__init__(coordinator) self.ipx = ipx self._transition = int( device_config.get(CONF_TRANSITION, DEFAULT_TRANSITION) * 1000 ) self._component = device_config[CONF_COMPONENT] self._ext_type = device_config[CONF_EXT_TYPE] self._ext_number = device_config.get(CONF_EXT_NUMBER) self._io_number = device_config.get(CONF_IO_NUMBER) self._io_numbers = device_config.get(CONF_IO_NUMBERS, []) self._io_id = device_config.get(CONF_ID) self._attr_name: str = device_config[CONF_NAME] if suffix_name: self._attr_name = f"{self._attr_name} {suffix_name}" self._attr_device_class = device_config.get(CONF_DEVICE_CLASS) self._attr_native_unit_of_measurement = device_config.get( CONF_UNIT_OF_MEASUREMENT ) self._attr_icon = device_config.get(CONF_ICON) self._attr_entity_category = device_config.get(CONF_ENTITY_CATEGORY) self._attr_unique_id = "_".join( [DOMAIN, self.ipx.host, self._component, slugify(self._attr_name)] ) if device_name: self._device_name = device_name elif self._ext_type == IPX: self._device_name = coordinator.name else: self._device_name = device_config.get( CONF_EXT_NAME, f"{Upper(self._ext_type)} N°{self._ext_number}" ) configuration_url = f"http://{self.ipx.host}:{self.ipx.port}/" self._attr_device_info = { "identifiers": {(DOMAIN, slugify(self._device_name))}, "default_name": self._device_name, "manufacturer": "GCE Electronics", "via_device": (DOMAIN, slugify(coordinator.name)), "configuration_url": configuration_url, } if self._ext_type in EXTENSIONS: self._attr_device_info.update({"model": Upper(self._ext_type)}) else: self._attr_device_info.update({"model": "IPX800 V5"}) if self._ext_type == IPX: self._attr_device_info.update( { "sw_version": self.ipx.firmware_version, "connections": {(CONNECTION_NETWORK_MAC, self.ipx.mac_address)}, } )
[ 37811, 40171, 262, 6101, 55, 7410, 53, 20, 2779, 9312, 526, 15931, 198, 6738, 279, 4464, 87, 7410, 85, 20, 1330, 6101, 55, 7410, 198, 6738, 279, 4464, 87, 7410, 85, 20, 13, 9979, 1330, 27489, 16938, 11053, 11, 6101, 55, 198, 6738, ...
2.090062
1,610
# generic, util import click import logging from pathlib import Path import random # website download and parsing import json import requests from bs4 import BeautifulSoup from lxml.html.soupparser import fromstring # reading and writing files import sys import csv import os import pandas as pd # # Classify posts # # presentation: pres_type # * fullscreen # * regular # * leftright # * album # # description type: desc_type # * caption # * paragraph # # simple and pragmatic approach # enumerate blog posts by the day in relation to a reference date # default: the tour start # # A rather generic function # to encapsulate the concrete one ############################################# # Main ############################################# @click.command() @click.argument('post_file', type=click.Path(exists=True, dir_okay=False) ) @click.argument('blog_file', type=click.Path(exists=False, dir_okay=False, writable=True) ) @click.argument('blog_date', type=click.DateTime(formats=['%Y-%m-%d']) ) @click.option('--no-filter', '-f', required=False, is_flag=True, help='Do not filter <post_file> entries by <blog_date>.') def blogpost(post_file, blog_file, blog_date, no_filter): """Creates a blog post file \b <post_file> Filepath containing all relevant information for each Instagram post. <blog_file> Filepath containing the blog post, usually a .md markdown file. <blog_date> Blog entry date [YYYY-MM-DD]; only <post_file> entries matching the date will be included. You may disable the date filtering using -f switch. The blog post file will then contain all <post_file> entries. """ logger = logging.getLogger(__file__) logger.info('Start creating blog post') blog_date = pd.to_datetime(blog_date).date().strftime('%Y-%m-%d') post_info_df = load_post_info(post_file, blog_date, no_filter) post_entry_df = create_post_entries(post_info_df) post_frontmatter = create_post_frontmatter(post_info_df, blog_date) store_blog(blog_file, post_frontmatter, post_entry_df) if len(post_frontmatter) < 1: logger.info('No blog post created.') else: logger.info('Blog post created.') pass ############################################# # Entry ############################################# if __name__ == '__main__': log_fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' logging.basicConfig(level=logging.INFO, format=log_fmt) # not used in this stub but often useful for finding various files project_dir = Path(__file__).resolve().parents[2] # start the crawler blogpost()
[ 2, 14276, 11, 7736, 198, 11748, 3904, 198, 11748, 18931, 198, 6738, 3108, 8019, 1330, 10644, 198, 11748, 4738, 198, 198, 2, 3052, 4321, 290, 32096, 198, 11748, 33918, 198, 11748, 7007, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 1...
2.847046
948
import websocket import thread import json import requests import urllib import wave import audioop from time import sleep import StringIO import struct import sys import codecs from xml.etree import ElementTree doItAgain = "yes" #Control While loop #End GetToken #End GetTextAndTranslate() if __name__ == "__main__": finalToken = GetToken() while (doItAgain == 'yes') or (doItAgain == 'Yes'): GetTextAndTranslate(finalToken) print ' ' doItAgain = raw_input('Type yes to translate more, any other key to end: ') #end while goodBye = raw_input('Thank you for using Microsoft Translator, we appreciate it. Good Bye') #end main
[ 11748, 2639, 5459, 198, 11748, 4704, 198, 11748, 33918, 198, 11748, 7007, 198, 11748, 2956, 297, 571, 198, 11748, 6769, 198, 11748, 6597, 404, 198, 6738, 640, 1330, 3993, 198, 11748, 10903, 9399, 198, 11748, 2878, 198, 11748, 25064, 198, ...
3.022422
223
__version__ = "3.9.0"
[ 834, 9641, 834, 796, 366, 18, 13, 24, 13, 15, 1 ]
1.909091
11
# Numpy_functions # (Own code) # Why use Numpy? # Because it's quicker (python libraries can be writen in C which can be much faster) # It also makes the code much cleaner # I still tried to recreate some Numpy function # Dotproduct vector # Transposition # Dotproduct with matrices # Adding vector # Random (np.random.randn()) # Normal (gaussian) distribution with mean 0 and variance (1) # and * 0.01 small enough to not affect training??? # Parameters are the dimension of the output matrix # np.zeros() creates a matrix with the dimension being the parameters # and all values being zero # Numpy maximum (ReLU avtivation function) # Sum function (axis=1) # Highest value in a matrix (list wise) # Average (mean) # Clipping on both side # Creating a list/array with steps # Creating a array filled with zeros and the same shape # Eye function: turning a list in one-hot vector # Eye function but a vector as a diagonal import random print(random_binomial(1,0.2,10)) # Gives the absolute value back # Gives the sign in return # Calculates the standard deviation to the mean
[ 2, 399, 32152, 62, 12543, 2733, 201, 198, 201, 198, 2, 357, 23858, 2438, 8, 201, 198, 2, 4162, 779, 399, 32152, 30, 220, 201, 198, 2, 4362, 340, 338, 20061, 357, 29412, 12782, 460, 307, 1991, 268, 287, 327, 543, 460, 307, 881, 5...
3.104558
373
# ---------------------------------------------------------------------------- # Copyright (c) 2016-2020, empress development team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # ---------------------------------------------------------------------------- from empress.tree import validate_tree, bp_tree_tips from empress.tools import ( match_inputs, match_tree_and_feature_metadata, shifting, filter_feature_metadata_to_tree ) from empress.compression_utils import ( remove_empty_samples_and_features, compress_table, compress_sample_metadata, compress_feature_metadata ) import pkg_resources import os import pandas as pd from shutil import copytree from emperor import Emperor from jinja2 import Environment, FileSystemLoader SUPPORT_FILES = pkg_resources.resource_filename('empress', 'support_files') TEMPLATES = os.path.join(SUPPORT_FILES, 'templates') EMPEROR_CALLBACK_PATH = os.path.join(SUPPORT_FILES, 'js', 'emperor-callbacks.js')
[ 2, 16529, 10541, 198, 2, 15069, 357, 66, 8, 1584, 12, 42334, 11, 795, 8439, 2478, 1074, 13, 198, 2, 198, 2, 4307, 6169, 739, 262, 2846, 286, 262, 40499, 347, 10305, 13789, 13, 198, 2, 198, 2, 383, 1336, 5964, 318, 287, 262, 2393...
3.32622
328
""" Используя цифры 1, 2, 3, 4, 5, 6, 7, 8, 9 по одному разу, составить два натуральных числа А и В, таких, что A корень из B. Найти все решения. """ second_exercise()
[ 37811, 201, 198, 140, 246, 21727, 140, 123, 25443, 119, 45367, 140, 115, 35072, 40623, 220, 141, 228, 18849, 141, 226, 21169, 45035, 352, 11, 362, 11, 513, 11, 604, 11, 642, 11, 718, 11, 767, 11, 807, 11, 860, 12466, 123, 15166, 1...
1.084337
166
import unittest import numpy as np from numpy.testing import assert_array_equal from pixeldrift import Cells, tile_size if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 299, 32152, 13, 33407, 1330, 6818, 62, 18747, 62, 40496, 198, 6738, 279, 844, 68, 335, 35357, 1330, 39794, 11, 17763, 62, 7857, 628, 198, 361, 11593, 3672, 834, 6624...
2.913793
58
import sys import json import requests from flask import Flask, jsonify from flask import request from tracing import init_tracer, flask_to_scope, parse_baggage import opentracing from opentracing_instrumentation.client_hooks import install_all_patches from flask_opentracing import FlaskTracer from flask_cors import CORS, cross_origin app = Flask('garden-scorer') init_tracer('garden-scorer') CORS(app) install_all_patches() flask_tracer = FlaskTracer(opentracing.tracer, True, app) @app.route("/flower_scorer", methods=['GET', 'POST']) @cross_origin() if __name__ == "__main__": app.run(port=3004)
[ 11748, 25064, 198, 11748, 33918, 198, 11748, 7007, 198, 6738, 42903, 1330, 46947, 11, 33918, 1958, 198, 6738, 42903, 1330, 2581, 198, 6738, 35328, 1330, 2315, 62, 2213, 11736, 11, 42903, 62, 1462, 62, 29982, 11, 21136, 62, 65, 9460, 496...
2.909953
211
import pytest from os.path import join from webtest.debugapp import debug_app from restiro import DocumentationRoot, clean_examples_dir from restiro.tests.helpers import package_dir, mockup_resources examples_dir = join(package_dir, 'examples') @pytest.fixture('session', autouse=True)
[ 11748, 12972, 9288, 198, 198, 6738, 28686, 13, 6978, 1330, 4654, 198, 198, 6738, 3992, 9288, 13, 24442, 1324, 1330, 14257, 62, 1324, 198, 198, 6738, 1334, 7058, 1330, 43925, 30016, 11, 3424, 62, 1069, 12629, 62, 15908, 198, 6738, 1334, ...
3.255556
90
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: run_params.proto from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import descriptor_pb2 # @@protoc_insertion_point(imports) DESCRIPTOR = _descriptor.FileDescriptor( name='run_params.proto', package='run_params', serialized_pb='\n\x10run_params.proto\x12\nrun_params\"\xa1\x02\n\nDataParams\x12\x17\n\tuse_delta\x18\x01 \x02(\x08:\x04true\x12\x45\n\rnormalization\x18\x02 \x02(\x0e\x32(.run_params.DataParams.NormalizationType:\x04\x43MVN\x12\x1d\n\x11num_frames_per_pt\x18\x03 \x02(\x05:\x02\x31\x35\x12$\n\x18num_output_frames_per_pt\x18\x04 \x01(\x05:\x02\x31\x35\x12 \n\x11smooth_alignments\x18\x05 \x01(\x08:\x05\x66\x61lse\"L\n\x11NormalizationType\x12\x07\n\x03\x43MN\x10\x00\x12\x08\n\x04\x43MVN\x10\x01\x12\x12\n\x0eGLOB_NORMALIZE\x10\x02\x12\x10\n\x0cNO_NORMALIZE\x10\x03\"\x82\x01\n\x06params\x12+\n\x0b\x64\x61ta_params\x18\x01 \x02(\x0b\x32\x16.run_params.DataParams\x12\x17\n\nbatch_size\x18\x02 \x02(\x05:\x03\x31\x32\x38\x12\x1a\n\x0emax_bad_epochs\x18\x03 \x02(\x05:\x02\x31\x30\x12\x16\n\nmax_epochs\x18\x04 \x02(\x05:\x02\x34\x30') _DATAPARAMS_NORMALIZATIONTYPE = _descriptor.EnumDescriptor( name='NormalizationType', full_name='run_params.DataParams.NormalizationType', filename=None, file=DESCRIPTOR, values=[ _descriptor.EnumValueDescriptor( name='CMN', index=0, number=0, options=None, type=None), _descriptor.EnumValueDescriptor( name='CMVN', index=1, number=1, options=None, type=None), _descriptor.EnumValueDescriptor( name='GLOB_NORMALIZE', index=2, number=2, options=None, type=None), _descriptor.EnumValueDescriptor( name='NO_NORMALIZE', index=3, number=3, options=None, type=None), ], containing_type=None, options=None, serialized_start=246, serialized_end=322, ) _DATAPARAMS = _descriptor.Descriptor( name='DataParams', full_name='run_params.DataParams', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='use_delta', full_name='run_params.DataParams.use_delta', index=0, number=1, type=8, cpp_type=7, label=2, has_default_value=True, default_value=True, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='normalization', full_name='run_params.DataParams.normalization', index=1, number=2, type=14, cpp_type=8, label=2, has_default_value=True, default_value=1, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='num_frames_per_pt', full_name='run_params.DataParams.num_frames_per_pt', index=2, number=3, type=5, cpp_type=1, label=2, has_default_value=True, default_value=15, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='num_output_frames_per_pt', full_name='run_params.DataParams.num_output_frames_per_pt', index=3, number=4, type=5, cpp_type=1, label=1, has_default_value=True, default_value=15, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='smooth_alignments', full_name='run_params.DataParams.smooth_alignments', index=4, number=5, type=8, cpp_type=7, label=1, has_default_value=True, default_value=False, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), ], extensions=[ ], nested_types=[], enum_types=[ _DATAPARAMS_NORMALIZATIONTYPE, ], options=None, is_extendable=False, extension_ranges=[], serialized_start=33, serialized_end=322, ) _PARAMS = _descriptor.Descriptor( name='params', full_name='run_params.params', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='data_params', full_name='run_params.params.data_params', index=0, number=1, type=11, cpp_type=10, label=2, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='batch_size', full_name='run_params.params.batch_size', index=1, number=2, type=5, cpp_type=1, label=2, has_default_value=True, default_value=128, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='max_bad_epochs', full_name='run_params.params.max_bad_epochs', index=2, number=3, type=5, cpp_type=1, label=2, has_default_value=True, default_value=10, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='max_epochs', full_name='run_params.params.max_epochs', index=3, number=4, type=5, cpp_type=1, label=2, has_default_value=True, default_value=40, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), ], extensions=[ ], nested_types=[], enum_types=[ ], options=None, is_extendable=False, extension_ranges=[], serialized_start=325, serialized_end=455, ) _DATAPARAMS.fields_by_name['normalization'].enum_type = _DATAPARAMS_NORMALIZATIONTYPE _DATAPARAMS_NORMALIZATIONTYPE.containing_type = _DATAPARAMS; _PARAMS.fields_by_name['data_params'].message_type = _DATAPARAMS DESCRIPTOR.message_types_by_name['DataParams'] = _DATAPARAMS DESCRIPTOR.message_types_by_name['params'] = _PARAMS # @@protoc_insertion_point(module_scope)
[ 2, 2980, 515, 416, 262, 8435, 11876, 17050, 13, 220, 8410, 5626, 48483, 0, 198, 2, 2723, 25, 1057, 62, 37266, 13, 1676, 1462, 198, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 43087, 355, 4808, 20147, 1968, 273, 198, 6738, 23645, 1...
2.27533
2,724
#!/usr/bin/env python3 from setuptools import setup import setuptools setup_dict = dict( name="feititfy", version="0.0.2a0", author="cjsoft", author_email="egwcyh@gmail.com", description="Notify you using feishu custom bot by webhook", long_description="""Notify you using feishu custom bot by webhook Plese refer to project homepage to get usage introduction.""", url="https://github.com/cjsoft/feitify", python_requires=">=3.5", packages=setuptools.find_packages(where=".", include=("feitify.*")), scripts=["bin/feitify"], install_requires=["requests"], ) setup(**setup_dict)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 6738, 900, 37623, 10141, 1330, 9058, 198, 11748, 900, 37623, 10141, 198, 198, 40406, 62, 11600, 796, 8633, 7, 198, 220, 220, 220, 1438, 2625, 5036, 270, 270, 24928, 1600, 198,...
2.683761
234
import ldap from .. import auth # Required when using self-signed certificates. ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER)
[ 11748, 300, 67, 499, 198, 198, 6738, 11485, 1330, 6284, 198, 198, 2, 20906, 618, 1262, 2116, 12, 32696, 20835, 13, 198, 335, 499, 13, 2617, 62, 18076, 7, 335, 499, 13, 3185, 51, 62, 55, 62, 51, 6561, 62, 2200, 49128, 62, 34, 173...
2.396825
63
total = totmil = cont = menor = 0 barato = '' while True: produto = str(input('Nome do produto: ')) preco = float(input('Preço: R$ ')) cont += 1 total += preco if preco > 1000: totmil += 1 if cont == 1 or preco < menor: barato = produto menor = preco resp = ' ' while resp not in 'SN': resp = str(input('Quer continuar: [S/N] ')).upper().strip()[0] if resp == 'N': break print('{:-^40}'.format(" Fim do programa ")) print(f'O total da compra foi R$ {total:.2f}') print(f'Temos {totmil} produtos custando mais de R$1.000 ') print(f'O produto mais barato foi {barato} que custa R${menor:.2f}') # Meu código # Faltou fazer o nome do produto mais barato """ nome_produto = str(input('Nome do produto: ')).strip() preco_produto = float(input('Preço: ')) resp = 'S' valor_total_produtos = 0 cont_preco = 0 while True: if preco_produto > 1000.0: cont_preco += 1 valor_total_produtos += preco_produto resp = str(input('Quer continuar [S/N]: ')) if resp in 'Ss': nome_produto = str(input('Nome do produto: ')).strip() preco_produto = float(input('Preço: R$ ')) else: break print(f'Gasto total em compras: R${valor_total_produtos:.2f}') print(f'{cont_preco} produtos custam acima de MIL Reais') """
[ 23350, 796, 2006, 25433, 796, 542, 796, 1450, 273, 796, 657, 198, 5657, 5549, 796, 10148, 198, 4514, 6407, 25, 198, 220, 220, 220, 40426, 9390, 796, 965, 7, 15414, 10786, 45, 462, 466, 40426, 9390, 25, 705, 4008, 198, 220, 220, 220,...
2.15935
615
import sys import traceback from contextlib import suppress from discord.ext.commands import *
[ 11748, 25064, 198, 11748, 12854, 1891, 198, 6738, 4732, 8019, 1330, 18175, 198, 198, 6738, 36446, 13, 2302, 13, 9503, 1746, 1330, 1635 ]
4.130435
23
"""Support for monitoring juicenet/juicepoint/juicebox based EVSE sensors.""" from __future__ import annotations from homeassistant.components.sensor import ( STATE_CLASS_MEASUREMENT, SensorEntity, SensorEntityDescription, ) from homeassistant.const import ( DEVICE_CLASS_CURRENT, DEVICE_CLASS_ENERGY, DEVICE_CLASS_POWER, DEVICE_CLASS_TEMPERATURE, DEVICE_CLASS_VOLTAGE, ELECTRIC_CURRENT_AMPERE, ELECTRIC_POTENTIAL_VOLT, ENERGY_WATT_HOUR, POWER_WATT, TEMP_CELSIUS, TIME_SECONDS, ) from .const import DOMAIN, JUICENET_API, JUICENET_COORDINATOR from .entity import JuiceNetDevice SENSOR_TYPES: tuple[SensorEntityDescription, ...] = ( SensorEntityDescription( key="status", name="Charging Status", ), SensorEntityDescription( key="temperature", name="Temperature", unit_of_measurement=TEMP_CELSIUS, device_class=DEVICE_CLASS_TEMPERATURE, state_class=STATE_CLASS_MEASUREMENT, ), SensorEntityDescription( key="voltage", name="Voltage", unit_of_measurement=ELECTRIC_POTENTIAL_VOLT, device_class=DEVICE_CLASS_VOLTAGE, ), SensorEntityDescription( key="amps", name="Amps", unit_of_measurement=ELECTRIC_CURRENT_AMPERE, device_class=DEVICE_CLASS_CURRENT, state_class=STATE_CLASS_MEASUREMENT, ), SensorEntityDescription( key="watts", name="Watts", unit_of_measurement=POWER_WATT, device_class=DEVICE_CLASS_POWER, state_class=STATE_CLASS_MEASUREMENT, ), SensorEntityDescription( key="charge_time", name="Charge time", unit_of_measurement=TIME_SECONDS, icon="mdi:timer-outline", ), SensorEntityDescription( key="energy_added", name="Energy added", unit_of_measurement=ENERGY_WATT_HOUR, device_class=DEVICE_CLASS_ENERGY, ), ) async def async_setup_entry(hass, config_entry, async_add_entities): """Set up the JuiceNet Sensors.""" juicenet_data = hass.data[DOMAIN][config_entry.entry_id] api = juicenet_data[JUICENET_API] coordinator = juicenet_data[JUICENET_COORDINATOR] entities = [ JuiceNetSensorDevice(device, coordinator, description) for device in api.devices for description in SENSOR_TYPES ] async_add_entities(entities) class JuiceNetSensorDevice(JuiceNetDevice, SensorEntity): """Implementation of a JuiceNet sensor.""" def __init__(self, device, coordinator, description: SensorEntityDescription): """Initialise the sensor.""" super().__init__(device, description.key, coordinator) self.entity_description = description self._attr_name = f"{self.device.name} {description.name}" @property def icon(self): """Return the icon of the sensor.""" icon = None if self.entity_description.key == "status": status = self.device.status if status == "standby": icon = "mdi:power-plug-off" elif status == "plugged": icon = "mdi:power-plug" elif status == "charging": icon = "mdi:battery-positive" else: icon = self.entity_description.icon return icon @property def state(self): """Return the state.""" return getattr(self.device, self.entity_description.key, None)
[ 37811, 15514, 329, 9904, 7544, 291, 268, 316, 14, 14396, 501, 4122, 14, 14396, 501, 3524, 1912, 8696, 5188, 15736, 526, 15931, 198, 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 6738, 1363, 562, 10167, 13, 5589, 3906, 13, 82, 22854, ...
2.282523
1,522
import numpy as np import matplotlib.pyplot as plt from PyNomaly import loop import pandas as pd # import the multiple gaussian data # df = pd.read_csv('../data/multiple-gaussian-2d-data-only.csv') print(df) # fit LoOP according to the original settings outlined in the paper # m = loop.LocalOutlierProbability(df[['x', 'y']], n_neighbors=20, extent=3).fit() scores = m.local_outlier_probabilities print(scores) # plot the results # # base 3 width, then set as multiple threshold = 0.1 color = np.where(scores > threshold, "white", "black") label_mask = np.where(scores > threshold) area = (20 * scores) ** 2 plt.scatter(df['x'], df['y'], c=color, s=area.astype(float), edgecolor='red', linewidth=1) plt.scatter(df['x'], df['y'], c='black', s=3) for i in range(len(scores)): if scores[i] > threshold: plt.text(df['x'].loc[i] * (1 + 0.01), df['y'].loc[i] * (1 + 0.01), round(scores[i], 2), fontsize=8) plt.show()
[ 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 9485, 45, 24335, 1330, 9052, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 2, 1330, 262, 3294, 31986, 31562, 1366, 1303, 198, 75...
2.524457
368
""" TENSIONS ON THE CABLE CAR TRANSPORTATION SYSTEM - This interactive web app computes the cable tensions of the cable car system for a user defined axial location of the carriage car Created on Tue Jun 1 22:53:14 2021 @author: Ramsubramanian Pazhanisamy """ ################################# ## IMPORTS ## ################################# # general imports import numpy as np import sympy as sp # bokeh imports from bokeh.io import curdoc from bokeh.plotting import figure from bokeh.models import ColumnDataSource, Arrow, OpenHead, Range1d, TeeHead from bokeh.models.glyphs import ImageURL from bokeh.models.widgets import Button from bokeh.layouts import column, row # latex integration import os from os.path import dirname, join, split, abspath import sys, inspect currentdir = dirname(abspath(inspect.getfile(inspect.currentframe()))) parentdir = join(dirname(currentdir), "shared/") sys.path.insert(0,parentdir) from latex_support import LatexDiv, LatexLabelSet, LatexSlider # ----------------------------------------------------------------- # ################################################### ## APP THEORETICAL DESCRIPTION ## ################################################### #Theoretical description of the app in Latex description_filename1 = join(dirname(__file__), "description1.html") #Part I of the description description1 = LatexDiv(text=open(description_filename1).read(), render_as_text=False, width=1000) description_filename2 = join(dirname(__file__), "description2.html") #Part II of the description description2 = LatexDiv(text=open(description_filename2).read(), render_as_text=False, width=1000) description_filename3 = join(dirname(__file__), "description3.html") #Part III of the description description3 = LatexDiv(text=open(description_filename3).read(), render_as_text=False, width=1000) #Figures_static # Plot #Kinematics of the cable car kinematics_img=os.path.join(os.path.basename(os.path.dirname(__file__)), "static", "Kinematics.svg") figure_kin = figure(height=235, width=298) figure_kin.toolbar.logo = None # do not display the bokeh logo figure_kin.toolbar_location = None # do not display the tools figure_kin.x_range=Range1d(start=0, end=1) figure_kin.y_range=Range1d(start=0, end=1) figure_kin.xaxis.visible = None figure_kin.yaxis.visible = None figure_kin.xgrid.grid_line_color = None figure_kin.ygrid.grid_line_color = None figure_kin.toolbar.active_drag = None figure_kin.toolbar.active_scroll = None figure_kin.toolbar.active_tap = None kinematics_src = ColumnDataSource(dict(url = [kinematics_img])) figure_kin.image_url(url='url', x=0, y = 1, h=1, w=1, source=kinematics_src) figure_kin.outline_line_alpha = 0 # Free boy diagram of the cable car fbd_img=os.path.join(os.path.basename(os.path.dirname(__file__)), "static", "Free_Body_Diagram.svg") figure_fbd = figure(height=385, width=450) figure_fbd.toolbar.logo = None # do not display the bokeh logo figure_fbd.toolbar_location = None # do not display the tools figure_fbd.x_range=Range1d(start=0, end=1) figure_fbd.y_range=Range1d(start=0, end=1) figure_fbd.xaxis.visible = None figure_fbd.yaxis.visible = None figure_fbd.xgrid.grid_line_color = None figure_fbd.ygrid.grid_line_color = None figure_fbd.toolbar.active_drag = None figure_fbd.toolbar.active_scroll = None figure_fbd.toolbar.active_tap = None fbd_src = ColumnDataSource(dict(url = [fbd_img])) figure_fbd.image_url(url='url', x=0, y = 1, h=1, w=1, source=fbd_src) figure_fbd.outline_line_alpha = 0 ################################# ## INITIALIZATION ## ################################# # Initial parameters & its limits # Cable car dimensions & user inputs H_max =525.0 #Verical distance between the supports (m) -H H_min= 475.0 H=500.0 B_max=525.0 #Horizontal distance between the supports (m) -B B_min=475.0 B=500.0 c_max=1.9 #Cable length stretch factor -c c_min=1.00001 c=(c_min+c_max)/2 M_max=300.0 #Mass of the cable car - M (Kg) M_min=200.0 M=250.0 x=0.55*B #Axial location of the cable car D=np.sqrt(H*H+B*B) #Diagonal distance between the supports (m) L=c*D #Length of the cable (m) - cable length should be always higher than the distance between the supports W=M*9.81 #Weight of the car (N) #Symbolic constants theta1=sp.Symbol('theta1',real=True) theta2=sp.Symbol('theta2',real=True) #Kinematic equations eq1= sp.Eq(((L-x/sp.cos(theta1))*sp.cos(theta2))+x-B,0) eq2= sp.Eq(((x/sp.cos(theta1))*sp.sin(theta1))+((L-x/sp.cos(theta1))*sp.sin(theta2))-H,0) #Solving the system of equations numerically [t1,t2]=sp.nsolve((eq1,eq2),(theta1,theta2),(0.25,0.75)) #Effective angles on the Cable theta_total1=float(t1) #Actual angle at S1 for a specific car position on the rope theta_total2=float(t2) #Actual angle at S2 for a specific car position on the rope Lx=x/np.cos(theta_total1) #Length of the bottom cable segement #Tensions on the Cable T1= W/(np.sin(theta_total2)-(np.cos(theta_total2)*np.sin(theta_total1)/np.cos(theta_total1)))*(np.cos(theta_total2)/np.cos(theta_total1)) # Cable tension in the bottom T2= W/(np.sin(theta_total2)-(np.cos(theta_total2)*np.sin(theta_total1)/np.cos(theta_total1))) # Cable tension in the top # ----------------------------------------------------------------- # ################################# ## CALLBACK FUNCTIONS ## ################################# # Div to show tension and distance values value_plot_distance_cable_length= LatexDiv(text="", render_as_text=False, width=400) value_plot_angles = LatexDiv(text="", render_as_text=False, width=400) value_plot_tensions = LatexDiv(text="", render_as_text=False, width=400) #Display the results #Slider change call back function for H, c, M, X #Slider change call back function for B #Call back function for reset button # ----------------------------------------------------------------- # #################################### ## SLIDERS & BUTTONS ## #################################### #Sliders #Vertical Distance between the supports H_slider = LatexSlider(title="\\text{Vertical distance between supports (H)}=", value_unit="\\text{m}", value=H, start=H_min, end=H_max, step=1.0, width=400, css_classes=["slider"]) H_slider.on_change('value',slider_cb_fun) # callback function is called when value changes #Horizontal Distance between the supports B_slider = LatexSlider(title="\\text{Horizontal distance between supports (B)}=", value_unit="\\text{m}", value=B, start=B_min, end=B_max, step=1.0, width=400, css_classes=["slider"]) B_slider.on_change('value',slider_cb_fun_b) # callback function is called when value changes #Cable length stretch factor to compute the length of the cable from the distance between the supports c_slider=LatexSlider(title="\\text{Cable length stretch factor (c = L/D)=}", value=float("{:.5f}".format((c))), start=c_min, end=c_max, step=0.005, width=400, css_classes=["slider"]) c_slider.on_change('value',slider_cb_fun) # callback function is called when value changes #Mass carried by the cable car container M_slider = LatexSlider(title="\\text{Mass carried by the system (M)}=", value_unit="\\text{Kg}", value=M, start=M_min, end=M_max, step=1.0, width=400, css_classes=["slider"]) M_slider.on_change('value',slider_cb_fun) # callback function is called when value changes #Axial location of the carriage X_slider = LatexSlider(title="\\text{Horizontal location of the carriage (X)}=", value_unit="\\text{m}", value=int(0.55*B_slider.value), start=int(0.2*B_slider.value), end=int(0.9*B_slider.value), step=1.0, width=400, css_classes=["slider"]) X_slider.on_change('value',slider_cb_fun) # callback function is called when value changes #Reset Button button_width = 400 Reset_button=Button(label='Reset', button_type='success', width=button_width) Reset_button.on_click(callback_reset) # ----------------------------------------------------------------- # #################################### ## ANIMATED PLOT ## #################################### # Plot plot = figure(title="", tools="", x_range=(-150,B+200), y_range=(min(-200,Lx * np.sin(theta_total1)-320),H+150),aspect_scale=2.0) plot.plot_height=700 plot.plot_width=850 plot.toolbar.logo = None plot.axis.axis_label_text_font_style="normal" plot.axis.axis_label_text_font_size="14pt" plot.axis.major_label_text_font_size="14pt" plot.xaxis.axis_label='x (m)' plot.yaxis.axis_label='y (m)' plot.outline_line_width=1.5 plot.outline_line_color="#333333" plot.outline_line_alpha=0.9 #Column Data Sources definition # Support source support_source_bottom = ColumnDataSource(dict(x = [0], y = [0+10.0] , src = [os.path.join(os.path.basename(os.path.dirname(__file__)), "static", "fixed_support.svg")])) support_source_top = ColumnDataSource(dict(x = [B], y = [H+5.0] , src = [os.path.join(os.path.basename(os.path.dirname(__file__)), "static", "fixed_support.svg")])) #Line source for the cable line_source_bottom = ColumnDataSource(dict(xs = [0, Lx * np.cos(theta_total1)], ys =[0, Lx * np.sin(theta_total1)] )) line_source_top = ColumnDataSource(dict(xs = [Lx * np.cos(theta_total1), B], ys =[Lx * np.sin(theta_total1), H] )) # Carriage line_source_carriage = ColumnDataSource(dict(xs = [Lx * np.cos(theta_total1),Lx * np.cos(theta_total1)], ys= [Lx * np.sin(theta_total1)-120,Lx * np.sin(theta_total1)] )) mass_source_carriage=ColumnDataSource(dict(x = [Lx * np.cos(theta_total1)], y = [Lx * np.sin(theta_total1)-120], size=[int(M/M_max*80)] )) connecting_pt_circle=ColumnDataSource(dict(x = [Lx * np.cos(theta_total1)], y = [ Lx * np.sin(theta_total1)] )) #Annotations B_dist_source = ColumnDataSource(dict(xS=[0], xE=[B], yS=[min(-200+50,Lx * np.sin(theta_total1)-320+50)], yE=[min(-200+50,Lx * np.sin(theta_total1)-320+50)], xL=[B*0.5], yL=[min(-200+60,Lx * np.sin(theta_total1)-320+60)], text=["B"])) H_dist_source = ColumnDataSource(dict(xS=[B+100], xE=[B+100], yS=[0], yE=[H], xL=[B+70], yL=[0.5*H], text=["H"])) D_dist_source = ColumnDataSource(dict(xS=[+0], xE=[B-20], yS=[0+30], yE=[H+10], xL=[B*0.5-30], yL=[H*0.5+30], text=["D"])) x_pt_circle=ColumnDataSource(dict(x = [Lx * np.cos(theta_total1)], y = [min(-200+25,Lx * np.sin(theta_total1)-320+25)] )) y_pt_circle=ColumnDataSource(dict(x = [-150+15], y = [ Lx * np.sin(theta_total1)] )) #Cable Tensions & Load T1_source = ColumnDataSource(dict(xS=[0], xE=[-(np.cos(theta_total1)*150*T1/(T1+T2))], yS=[0], yE=[-(np.sin(theta_total1)*150*T1/(T1+T2))], xL=[-50-0.5*(np.cos(theta_total1)*150*T1/(T1+T2))], yL=[-50-0.5*(np.sin(theta_total1)*150*T1/(T1+T2))], name=["T_1"])) T2_source =ColumnDataSource(dict(xS=[B], xE=[B+(np.cos(theta_total2)*150*T2/(T1+T2))], yS=[H], yE=[H+(np.sin(theta_total2)*150*T2/(T1+T2))], xL=[+25+B+0.5*(np.cos(theta_total2)*150*T2/(T1+T2))], yL=[-25+H+0.5*(np.sin(theta_total2)*150*T2/(T1+T2))], name=["T_2"])) #Labels and arrows for annotations & cable tensions B_dist = Arrow(end=TeeHead(line_color="#808080", line_width=1, size=10), start=TeeHead(line_color="#808080",line_width=1, size=10), x_start='xS', y_start='yS', x_end='xE', y_end='yE', line_width=1, line_color="#808080", source=B_dist_source) B_dist_label = LatexLabelSet(x='xL', y='yL', text='text', source=B_dist_source) H_dist = Arrow(end=TeeHead(line_color="#808080", line_width=1, size=10), start=TeeHead(line_color="#808080",line_width=1, size=10), x_start='xS', y_start='yS', x_end='xE', y_end='yE', line_width=1, line_color="#808080", source=H_dist_source) H_dist_label = LatexLabelSet(x='xL', y='yL', text='text', source=H_dist_source) D_dist = Arrow(end=TeeHead(line_color="#808080", line_width=1, size=10), start=TeeHead(line_color="#808080",line_width=1, size=10), x_start='xS', y_start='yS', x_end='xE', y_end='yE', line_width=1, line_color="#808080", source=D_dist_source) D_dist_label = LatexLabelSet(x='xL', y='yL', text='text', source=D_dist_source) T1_arrow_glyph = Arrow(end=OpenHead(line_color="#333333", line_width=4, size=10), x_start='xS', y_start='yS', x_end='xE', y_end='yE', line_width=4, source=T1_source,line_color="#333333") T2_arrow_glyph = Arrow(end=OpenHead(line_color="#333333", line_width=4, size=10), x_start='xS', y_start='yS', x_end='xE', y_end='yE', line_width=4, source=T2_source,line_color="#333333") T1_label_glyph=LatexLabelSet(x='xL', y='yL', text='name', text_font_size="15pt", level='glyph', source=T1_source) T2_label_glyph=LatexLabelSet(x='xL', y='yL', text='name', text_font_size="15pt", level='glyph', source=T2_source) #Adding all glyps into the plot - lines, carriage, supports, tensions & annotations plot.line(x='xs', y='ys', source=line_source_bottom , line_width=10, color='#3070B3') plot.line(x='xs', y='ys', source=line_source_top , line_width=10, color='#3070B3') plot.circle(x='x', y='y', source=connecting_pt_circle, size=20, color="#e37222") plot.line(x='xs', y='ys', source=line_source_carriage, line_width=10, color="#e37222") plot.square(x='x', y='y', size='size', source=mass_source_carriage, color="#e37222") plot.circle(x='x', y='y', source=x_pt_circle, size=20, color="#a2ad00") plot.circle(x='x', y='y', source=y_pt_circle, size=20, color="#a2ad00") plot.add_glyph(support_source_top,ImageURL(url="src", x='x', y='y', w=60, h=60, anchor="top_center")) plot.add_glyph(support_source_bottom,ImageURL(url="src", x='x', y='y', w=60, h=60, anchor="top_center")) plot.add_layout(T1_arrow_glyph) plot.add_layout(T2_arrow_glyph) plot.add_layout(T1_label_glyph) plot.add_layout(T2_label_glyph) plot.add_layout(B_dist) plot.add_layout(B_dist_label) plot.add_layout(H_dist) plot.add_layout(H_dist_label) plot.add_layout(D_dist) plot.add_layout(D_dist_label) # ----------------------------------------------------------------- # #################################### ## LAYOUT ## #################################### curdoc().add_root(column( description1, figure_kin, description2, figure_fbd, description3, column(column( row(H_slider,B_slider,c_slider), row(M_slider,X_slider,Reset_button), row(plot), row(value_plot_distance_cable_length,value_plot_angles, value_plot_tensions) )))) curdoc().title = split(dirname(__file__))[-1].replace('_',' ').replace('-',' ') # get path of parent directory and only use the name of the Parent Directory for the tab name. Replace underscores '_' and minuses '-' with blanks ' ' # ----------------------------------------------------------------- #
[ 37811, 198, 51, 16938, 11053, 6177, 3336, 327, 17534, 17368, 48213, 4303, 9863, 6234, 36230, 532, 770, 14333, 3992, 598, 220, 198, 5589, 1769, 262, 7862, 15733, 286, 262, 7862, 1097, 1080, 329, 257, 2836, 5447, 7877, 498, 198, 24886, 28...
2.564781
5,673
from GPnet import logpdf import math import numpy as np import os import sys from time import time sys.path.append('Probabilistic-Backpropagation-master/c/PBP_net') import PBP_net # pass the name of the UCI Dataset directory as argument try: data_directory = sys.argv[1] except: data_directory = 'bostonHousing' _UCI_DIRECTORY_PATH = "DropoutUncertaintyExps-master/UCI_Datasets/" subfolders = [f.name for f in os.scandir(_UCI_DIRECTORY_PATH) if f.is_dir()] subfolders.sort() if data_directory not in subfolders: raise ValueError("data directory must be one of the following " + repr(subfolders) + " but was " + data_directory) _DATA_DIRECTORY_PATH = _UCI_DIRECTORY_PATH + data_directory + "/data/" data = np.loadtxt(_DATA_DIRECTORY_PATH + "data.txt") index_features = np.loadtxt(_DATA_DIRECTORY_PATH + "index_features.txt") index_target = np.loadtxt(_DATA_DIRECTORY_PATH + "index_target.txt") X = data[:, [int(i) for i in index_features.tolist()]] y = data[:, int(index_target.tolist())] n_splits = int(np.loadtxt(_DATA_DIRECTORY_PATH + 'n_splits.txt')) n_hidden = int(np.loadtxt(_DATA_DIRECTORY_PATH + "n_hidden.txt")) n_epochs = int(np.loadtxt(_DATA_DIRECTORY_PATH + 'n_epochs.txt')) def _get_index_train_test_path(split_num, train=True): """ Method to generate the path containing the training/test split for the given split number (generally from 1 to 20). @param split_num Split number for which the data has to be generated @param train Is true if the data is training data. Else false. @return path Path of the file containing the requried data """ if train: return _DATA_DIRECTORY_PATH + "index_train_" + str(split_num) + ".txt" else: return _DATA_DIRECTORY_PATH + "index_test_" + str(split_num) + ".txt" perf = np.nan * np.zeros((n_splits, 2, 3)) for n_layers in (1, 2): np.random.seed(1) for split in range(n_splits): # We load the indexes of the training and test sets print('Loading file: ' + _get_index_train_test_path(split, train=True)) print('Loading file: ' + _get_index_train_test_path(split, train=False)) index_train = np.loadtxt(_get_index_train_test_path(split, train=True)) index_test = np.loadtxt(_get_index_train_test_path(split, train=False)) X_train = X[[int(i) for i in index_train.tolist()]] y_train = y[[int(i) for i in index_train.tolist()]] X_test = X[[int(i) for i in index_test.tolist()]] y_test = y[[int(i) for i in index_test.tolist()]] net = PBP_net.PBP_net(X_train, y_train, [n_hidden] * n_layers, normalize=True, n_epochs=n_epochs) # We make predictions for the test set t = -time() m, v, v_noise = net.predict(X_test) t += time() # We compute the test RMSE and ll perf[split, n_layers - 1, :2] = (np.sqrt(np.mean((y_test - m)**2)), logpdf(y_test - m, v + v_noise).mean()) perf[split, n_layers - 1, 2] = t np.save('results/PBP/' + data_directory, perf)
[ 6738, 14714, 3262, 1330, 2604, 12315, 198, 11748, 10688, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 25064, 198, 6738, 640, 1330, 640, 198, 17597, 13, 6978, 13, 33295, 10786, 2964, 65, 14991, 2569, 12, 7282, 22930, ...
2.297888
1,373
import pygame, random from random import randint from pygame.locals import * UP = 0 RIGHT = 1 DOWN = 2 LEFT = 3 pygame.init() screen = pygame.display.set_mode((600, 600)) pygame.display.set_caption('Snake') snake = [(200, 200, (210, 210), (200, 200))] snake_skin = pygame.Surface((10, 10)) snake_skin.fill((255, 255, 255)) apple_pos = (random, randint(0, 590), random.randint(0, 590)) apple = pygame.Surface((10, 10)) apple.fill((255, 0, 0)) my_direction = LEFT while True: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() if my_direction == UP: snake[0] = (snake[0][0], snake[0][1] - 10) if my_direction == DOWN: snake[0] = (snake[0][0], snake[0][1] + 10) if my_direction == RIGHT: snake[0] = (snake[0][0] + 10, snake[0][1]) if my_direction == LEFT: snake[0] = (snake[0][0] - 10, snake[0][1]) for i in range(len(snake) - 1, 0, -1): snake[i] = (snake[i][0], snake[i][1]) screen.fill((0, 0, 0)) screen.blit(apple, apple_pos) for pos in snake: screen.blit(snake_skin, pos) pygame.display.update()
[ 11748, 12972, 6057, 11, 4738, 198, 6738, 4738, 1330, 43720, 600, 198, 6738, 12972, 6057, 13, 17946, 874, 1330, 1635, 198, 198, 8577, 796, 657, 198, 49, 9947, 796, 352, 198, 41925, 796, 362, 198, 2538, 9792, 796, 513, 198, 198, 9078, ...
2.176583
521
from __future__ import print_function """ Simple routines that provide a uniform interface for reading fits hdus via either astropy.io.fits or fitsio. Three functions are provided: read_image, read_table, read_metadata Warning: A copy of data is returned to detach any backreference to the original fits library. Use with caution with extremely large files. (> half of avail memory on machine) """ __author__ = "Yu Feng and Martin White" __version__ = "0.9" __email__ = "yfeng1@berkeley.edu or mjwhite@lbl.gov" __all__ = ['read_image', 'read_table', 'read_metadata', 'size_table'] import numpy def use_astropy(): """ select the astropy backend """ global read_image global read_table global size_table global read_metadata global backend backend = "astropy" from astropy.io import fits def read_image(filename, hdu=0): """ Read the zeroth image HDU from a fits file """ file = fits.open(filename) # A copy of data is made before the file object # is dereferenced. This is to ensure no back references # to the fits object and file gets closed in a timely # fashion. return numpy.array(file[hdu].data, copy=True) def read_table(filename, hdu=1, subset=None): """ Read the first HDU table from a fits file """ file = fits.open(filename) if subset is not None: column, start, end = subset return numpy.array(file[hdu][column][start:end], copy=True) return numpy.array(file[hdu].data, copy=True) def size_table(filename, hdu=1): """ Read the first HDU table from a fits file """ file = fits.open(filename) return file[hdu].shape[0] def read_metadata(filename, hdu=0): """ Read the metadata of a HDU table """ file = fits.open(filename) return dict(file[hdu].header) def use_fitsio(): """ select the fitsio backend """ global read_image global read_table global size_table global read_metadata global backend backend = "fitsio" from fitsio import FITS def read_image(filename, hdu=0): """ Read the zeroth image HDU from a fits file """ file = FITS(filename, upper=True) # A copy of data is made before the file object # is dereferenced. This is to ensure no back references # to the fits object and file gets closed in a timely # fashion. return numpy.array(file[hdu].read(), copy=True) def read_table(filename, hdu=1, subset=None): """ Read the first HDU table from a fits file """ file = FITS(filename, upper=True) if subset is not None: column, start, end = subset return numpy.array(file[hdu][column][start:end], copy=True) else: return numpy.array(file[hdu].read(), copy=True) def size_table(filename, hdu=1): """ Read the first HDU table from a fits file """ file = FITS(filename, upper=True) return file[hdu].get_nrows() def read_metadata(filename, hdu=0): """ Read the metadata of a HDU table """ file = FITS(filename, upper=True) return dict(file[hdu].read_header()) _priorities = [use_fitsio, use_astropy] for backend in _priorities: try: backend() break except ImportError: continue if __name__ == '__main__': use_fitsio() im0 = read_image('depth-370143-g.fits.gz') meta0 = read_metadata('depth-370143-g.fits.gz') tbl0 = read_table('tractor-370143.fits') assert backend == 'fitsio' use_astropy() im1 = read_image('depth-370143-g.fits.gz') meta1 = read_metadata('depth-370143-g.fits.gz') tbl1 = read_table('tractor-370143.fits') assert backend == 'astropy' assert (im0[...] == im1[...]).all() assert set(tbl0.dtype.names) == set(tbl1.dtype.names) assert set(meta0.keys()) == set(meta1.keys()) for k in meta0.keys(): if k == "COMMENT": continue print (k, '::::', meta0[k], '::::', meta1[k]) assert meta0[k] == meta1[k]
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 37811, 198, 220, 220, 220, 17427, 31878, 326, 2148, 257, 8187, 7071, 329, 3555, 198, 220, 220, 220, 11414, 289, 67, 385, 2884, 2035, 6468, 28338, 13, 952, 13, 21013, 393, 11414,...
2.334776
1,849
#!/usr/bin/env python3 import logging from pathlib import Path from datetime import datetime from Pegasus.api import * logging.basicConfig(level=logging.DEBUG) PEGASUS_LOCATION = "/usr/bin/pegasus-keg" # --- Work Dir Setup ----------------------------------------------------------- RUN_ID = "black-diamond-metadata-" + datetime.now().strftime("%s") TOP_DIR = Path.cwd() WORK_DIR = TOP_DIR / "work" try: Path.mkdir(WORK_DIR) except FileExistsError: pass # --- Configuration ------------------------------------------------------------ print("Generating pegasus.conf at: {}".format(TOP_DIR / "pegasus.properties")) conf = Properties() conf["pegasus.catalog.site.file"] = "./conf/sites.yml" conf["pegasus.catalog.site"] = "YAML" conf.write() # --- Replicas ----------------------------------------------------------------- print("Generating replica catalog at: {}".format(TOP_DIR / "replicas.yml")) # create initial input file with open("f.a", "w") as f: f.write("This is sample input to KEG\n") fa = File("f.a", size=1024).add_metadata({"raw_input": "true"}) ReplicaCatalog().add_replica("local", fa, TOP_DIR / fa.lfn).write() # --- Transformations ---------------------------------------------------------- print( "Generating transformation catalog at: {}".format(TOP_DIR / "transformations.yml") ) preprocess = Transformation( "preprocess", namespace="pegasus", version="4.0", site="condorpool", pfn=PEGASUS_LOCATION, is_stageable=False, arch=Arch.X86_64, os_type=OS.LINUX ).add_metadata(size=2048, transformation="preprocess") findrange = Transformation( "findrange", namespace="pegasus", version="4.0", site="condorpool", pfn=PEGASUS_LOCATION, is_stageable=False, arch=Arch.X86_64, os_type=OS.LINUX ).add_metadata(size=2048, transformation="findrange") analyze = Transformation( "analyze", namespace="pegasus", version="4.0", site="condorpool", pfn=PEGASUS_LOCATION, is_stageable=False, arch=Arch.X86_64, os_type=OS.LINUX ).add_metadata(size=2048, transformation="analyze") TransformationCatalog().add_transformations(preprocess, findrange, analyze).write() # --- Workflow ----------------------------------------------------------------- print("Generating workflow") wf = Workflow("diamond") wf.add_metadata(label="keg-diamond", group="test") fb1 = File("f.ƀ1") fb2 = File("f.β2") fc1 = File("f.Ҫ1") fc2 = File("f.Ͻ2") fd = File("f.Ɗ").add_metadata(final_output=True) preprocess_job = Job(preprocess)\ .add_args("-a", "preprocess", "-T", "60", "-i", fa, "-o", fb1, fb2)\ .add_inputs(fa)\ .add_outputs(fb1, fb2, register_replica=True)\ .add_metadata(time=60) findrange_1_job = Job(findrange)\ .add_args("-a", "findrange", "-T", "60", "-i", fb1, "-o", fc1)\ .add_inputs(fb1)\ .add_outputs(fc1, register_replica=True)\ .add_metadata(time=60) findrange_2_job = Job(findrange)\ .add_args("-a", "findrange", "-T", "60", "-i", fb2, "-o", fc2)\ .add_inputs(fb2)\ .add_outputs(fc2, register_replica=True)\ .add_metadata(time=60) analyze_job = Job(analyze)\ .add_args("-a", "analyze", "-T", "60", "-i", fc1, fc2, "-o", fd)\ .add_inputs(fc1, fc2)\ .add_outputs(fd, register_replica=True)\ .add_metadata(time=60) wf.add_jobs(preprocess_job, findrange_1_job, findrange_2_job, analyze_job) try: wf.plan( dir=WORK_DIR, verbose=3, relative_dir=RUN_ID, sites=["condorpool"], force=True, submit=True, ) except PegasusClientError as e: print(e.output)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 11748, 18931, 198, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 48188, 13, 15042, 1330, 1635, 198, 198, 6404, 2667, 13, 35487, 16934, ...
2.100201
1,986
import os import pickle from PIL import Image import torch import torch.utils.data as data
[ 11748, 28686, 198, 11748, 2298, 293, 198, 6738, 350, 4146, 1330, 7412, 198, 11748, 28034, 198, 11748, 28034, 13, 26791, 13, 7890, 355, 1366, 198 ]
3.64
25
import uuid import discord import logging from discord.ext import commands from asyncio import TimeoutError logger = logging.getLogger(__name__)
[ 11748, 334, 27112, 198, 11748, 36446, 198, 11748, 18931, 198, 6738, 36446, 13, 2302, 1330, 9729, 198, 6738, 30351, 952, 1330, 3862, 448, 12331, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198 ]
3.609756
41
# Generated by Django 2.2.10 on 2020-05-12 08:44 from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 362, 13, 17, 13, 940, 319, 12131, 12, 2713, 12, 1065, 8487, 25, 2598, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
2.935484
31
import logging from flask_restx import Resource, fields, marshal logger = logging.getLogger(__name__)
[ 11748, 18931, 198, 198, 6738, 42903, 62, 2118, 87, 1330, 20857, 11, 7032, 11, 22397, 282, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628 ]
3.28125
32
A=[] print("Enter array(exit to end)") while 1: x=input() if x=='exit': break A.append(int(x)) best=0 tempsum=0 for x in A: tempsum=max(tempsum+x,x) best=max(best,tempsum) print("Max sum="+str(best)) #complexity is O(n)
[ 32, 28, 21737, 198, 4798, 7203, 17469, 7177, 7, 37023, 284, 886, 8, 4943, 198, 4514, 352, 25, 198, 220, 220, 220, 2124, 28, 15414, 3419, 198, 220, 220, 220, 611, 2124, 855, 6, 37023, 10354, 198, 220, 220, 220, 220, 220, 220, 220, ...
1.968254
126
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from ... import _utilities from . import outputs from ._enums import * __all__ = [ 'AuditConfigResponse', 'AuditLogConfigResponse', 'BindingResponse', 'ConfigFileResponse', 'DeploymentLabelEntryResponse', 'DeploymentUpdateLabelEntryResponse', 'DeploymentUpdateResponse', 'ExprResponse', 'ImportFileResponse', 'OperationErrorErrorsItemResponse', 'OperationErrorResponse', 'OperationResponse', 'OperationWarningsItemDataItemResponse', 'OperationWarningsItemResponse', 'TargetConfigurationResponse', ] @pulumi.output_type class AuditConfigResponse(dict): """ Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts jose@example.com from DATA_READ logging, and aliya@example.com from DATA_WRITE logging. """ @staticmethod def __init__(__self__, *, audit_log_configs: Sequence['outputs.AuditLogConfigResponse'], service: str): """ Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts jose@example.com from DATA_READ logging, and aliya@example.com from DATA_WRITE logging. :param Sequence['AuditLogConfigResponse'] audit_log_configs: The configuration for logging of each type of permission. :param str service: Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. """ pulumi.set(__self__, "audit_log_configs", audit_log_configs) pulumi.set(__self__, "service", service) @property @pulumi.getter(name="auditLogConfigs") def audit_log_configs(self) -> Sequence['outputs.AuditLogConfigResponse']: """ The configuration for logging of each type of permission. """ return pulumi.get(self, "audit_log_configs") @property @pulumi.getter def service(self) -> str: """ Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. """ return pulumi.get(self, "service") @pulumi.output_type class AuditLogConfigResponse(dict): """ Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging. """ @staticmethod def __init__(__self__, *, exempted_members: Sequence[str], log_type: str): """ Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging. :param Sequence[str] exempted_members: Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. :param str log_type: The log type that this config enables. """ pulumi.set(__self__, "exempted_members", exempted_members) pulumi.set(__self__, "log_type", log_type) @property @pulumi.getter(name="exemptedMembers") def exempted_members(self) -> Sequence[str]: """ Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. """ return pulumi.get(self, "exempted_members") @property @pulumi.getter(name="logType") def log_type(self) -> str: """ The log type that this config enables. """ return pulumi.get(self, "log_type") @pulumi.output_type class BindingResponse(dict): """ Associates `members`, or principals, with a `role`. """ def __init__(__self__, *, condition: 'outputs.ExprResponse', members: Sequence[str], role: str): """ Associates `members`, or principals, with a `role`. :param 'ExprResponse' condition: The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). :param Sequence[str] members: Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. :param str role: Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. """ pulumi.set(__self__, "condition", condition) pulumi.set(__self__, "members", members) pulumi.set(__self__, "role", role) @property @pulumi.getter def condition(self) -> 'outputs.ExprResponse': """ The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). """ return pulumi.get(self, "condition") @property @pulumi.getter def members(self) -> Sequence[str]: """ Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. """ return pulumi.get(self, "members") @property @pulumi.getter def role(self) -> str: """ Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. """ return pulumi.get(self, "role") @pulumi.output_type @pulumi.output_type class DeploymentLabelEntryResponse(dict): """ Label object for Deployments """ def __init__(__self__, *, key: str, value: str): """ Label object for Deployments :param str key: Key of the label :param str value: Value of the label """ pulumi.set(__self__, "key", key) pulumi.set(__self__, "value", value) @property @pulumi.getter def key(self) -> str: """ Key of the label """ return pulumi.get(self, "key") @property @pulumi.getter def value(self) -> str: """ Value of the label """ return pulumi.get(self, "value") @pulumi.output_type class DeploymentUpdateLabelEntryResponse(dict): """ Label object for DeploymentUpdate """ def __init__(__self__, *, key: str, value: str): """ Label object for DeploymentUpdate :param str key: Key of the label :param str value: Value of the label """ pulumi.set(__self__, "key", key) pulumi.set(__self__, "value", value) @property @pulumi.getter def key(self) -> str: """ Key of the label """ return pulumi.get(self, "key") @property @pulumi.getter def value(self) -> str: """ Value of the label """ return pulumi.get(self, "value") @pulumi.output_type @pulumi.output_type class ExprResponse(dict): """ Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. """ def __init__(__self__, *, description: str, expression: str, location: str, title: str): """ Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. :param str description: Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. :param str expression: Textual representation of an expression in Common Expression Language syntax. :param str location: Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. :param str title: Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. """ pulumi.set(__self__, "description", description) pulumi.set(__self__, "expression", expression) pulumi.set(__self__, "location", location) pulumi.set(__self__, "title", title) @property @pulumi.getter def description(self) -> str: """ Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. """ return pulumi.get(self, "description") @property @pulumi.getter def expression(self) -> str: """ Textual representation of an expression in Common Expression Language syntax. """ return pulumi.get(self, "expression") @property @pulumi.getter def location(self) -> str: """ Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. """ return pulumi.get(self, "location") @property @pulumi.getter def title(self) -> str: """ Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. """ return pulumi.get(self, "title") @pulumi.output_type @pulumi.output_type @pulumi.output_type class OperationErrorResponse(dict): """ [Output Only] If errors are generated during processing of the operation, this field will be populated. """ def __init__(__self__, *, errors: Sequence['outputs.OperationErrorErrorsItemResponse']): """ [Output Only] If errors are generated during processing of the operation, this field will be populated. :param Sequence['OperationErrorErrorsItemResponse'] errors: The array of errors encountered while processing this operation. """ pulumi.set(__self__, "errors", errors) @property @pulumi.getter def errors(self) -> Sequence['outputs.OperationErrorErrorsItemResponse']: """ The array of errors encountered while processing this operation. """ return pulumi.get(self, "errors") @pulumi.output_type class OperationResponse(dict): """ Represents an Operation resource. Google Compute Engine has three Operation resources: * [Global](/compute/docs/reference/rest/{$api_version}/globalOperations) * [Regional](/compute/docs/reference/rest/{$api_version}/regionOperations) * [Zonal](/compute/docs/reference/rest/{$api_version}/zoneOperations) You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. Operations can be global, regional or zonal. - For global operations, use the `globalOperations` resource. - For regional operations, use the `regionOperations` resource. - For zonal operations, use the `zonalOperations` resource. For more information, read Global, Regional, and Zonal Resources. """ @staticmethod def __init__(__self__, *, client_operation_id: str, description: str, end_time: str, error: 'outputs.OperationErrorResponse', http_error_message: str, http_error_status_code: int, insert_time: str, kind: str, name: str, operation_group_id: str, operation_type: str, progress: int, region: str, self_link: str, start_time: str, status: str, status_message: str, target_id: str, target_link: str, user: str, warnings: Sequence['outputs.OperationWarningsItemResponse'], zone: str): """ Represents an Operation resource. Google Compute Engine has three Operation resources: * [Global](/compute/docs/reference/rest/{$api_version}/globalOperations) * [Regional](/compute/docs/reference/rest/{$api_version}/regionOperations) * [Zonal](/compute/docs/reference/rest/{$api_version}/zoneOperations) You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. Operations can be global, regional or zonal. - For global operations, use the `globalOperations` resource. - For regional operations, use the `regionOperations` resource. - For zonal operations, use the `zonalOperations` resource. For more information, read Global, Regional, and Zonal Resources. :param str client_operation_id: The value of `requestId` if you provided it in the request. Not present otherwise. :param str description: A textual description of the operation, which is set when the operation is created. :param str end_time: The time that this operation was completed. This value is in RFC3339 text format. :param 'OperationErrorResponse' error: If errors are generated during processing of the operation, this field will be populated. :param str http_error_message: If the operation fails, this field contains the HTTP error message that was returned, such as `NOT FOUND`. :param int http_error_status_code: If the operation fails, this field contains the HTTP error status code that was returned. For example, a `404` means the resource was not found. :param str insert_time: The time that this operation was requested. This value is in RFC3339 text format. :param str kind: Type of the resource. Always `compute#operation` for Operation resources. :param str name: Name of the operation. :param str operation_group_id: An ID that represents a group of operations, such as when a group of operations results from a `bulkInsert` API request. :param str operation_type: The type of operation, such as `insert`, `update`, or `delete`, and so on. :param int progress: An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses. :param str region: The URL of the region where the operation resides. Only applicable when performing regional operations. :param str self_link: Server-defined URL for the resource. :param str start_time: The time that this operation was started by the server. This value is in RFC3339 text format. :param str status: The status of the operation, which can be one of the following: `PENDING`, `RUNNING`, or `DONE`. :param str status_message: An optional textual description of the current status of the operation. :param str target_id: The unique target ID, which identifies a specific incarnation of the target resource. :param str target_link: The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from. :param str user: User who requested the operation, for example: `user@example.com`. :param Sequence['OperationWarningsItemResponse'] warnings: If warning messages are generated during processing of the operation, this field will be populated. :param str zone: The URL of the zone where the operation resides. Only applicable when performing per-zone operations. """ pulumi.set(__self__, "client_operation_id", client_operation_id) pulumi.set(__self__, "description", description) pulumi.set(__self__, "end_time", end_time) pulumi.set(__self__, "error", error) pulumi.set(__self__, "http_error_message", http_error_message) pulumi.set(__self__, "http_error_status_code", http_error_status_code) pulumi.set(__self__, "insert_time", insert_time) pulumi.set(__self__, "kind", kind) pulumi.set(__self__, "name", name) pulumi.set(__self__, "operation_group_id", operation_group_id) pulumi.set(__self__, "operation_type", operation_type) pulumi.set(__self__, "progress", progress) pulumi.set(__self__, "region", region) pulumi.set(__self__, "self_link", self_link) pulumi.set(__self__, "start_time", start_time) pulumi.set(__self__, "status", status) pulumi.set(__self__, "status_message", status_message) pulumi.set(__self__, "target_id", target_id) pulumi.set(__self__, "target_link", target_link) pulumi.set(__self__, "user", user) pulumi.set(__self__, "warnings", warnings) pulumi.set(__self__, "zone", zone) @property @pulumi.getter(name="clientOperationId") def client_operation_id(self) -> str: """ The value of `requestId` if you provided it in the request. Not present otherwise. """ return pulumi.get(self, "client_operation_id") @property @pulumi.getter def description(self) -> str: """ A textual description of the operation, which is set when the operation is created. """ return pulumi.get(self, "description") @property @pulumi.getter(name="endTime") def end_time(self) -> str: """ The time that this operation was completed. This value is in RFC3339 text format. """ return pulumi.get(self, "end_time") @property @pulumi.getter def error(self) -> 'outputs.OperationErrorResponse': """ If errors are generated during processing of the operation, this field will be populated. """ return pulumi.get(self, "error") @property @pulumi.getter(name="httpErrorMessage") def http_error_message(self) -> str: """ If the operation fails, this field contains the HTTP error message that was returned, such as `NOT FOUND`. """ return pulumi.get(self, "http_error_message") @property @pulumi.getter(name="httpErrorStatusCode") def http_error_status_code(self) -> int: """ If the operation fails, this field contains the HTTP error status code that was returned. For example, a `404` means the resource was not found. """ return pulumi.get(self, "http_error_status_code") @property @pulumi.getter(name="insertTime") def insert_time(self) -> str: """ The time that this operation was requested. This value is in RFC3339 text format. """ return pulumi.get(self, "insert_time") @property @pulumi.getter def kind(self) -> str: """ Type of the resource. Always `compute#operation` for Operation resources. """ return pulumi.get(self, "kind") @property @pulumi.getter def name(self) -> str: """ Name of the operation. """ return pulumi.get(self, "name") @property @pulumi.getter(name="operationGroupId") def operation_group_id(self) -> str: """ An ID that represents a group of operations, such as when a group of operations results from a `bulkInsert` API request. """ return pulumi.get(self, "operation_group_id") @property @pulumi.getter(name="operationType") def operation_type(self) -> str: """ The type of operation, such as `insert`, `update`, or `delete`, and so on. """ return pulumi.get(self, "operation_type") @property @pulumi.getter def progress(self) -> int: """ An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses. """ return pulumi.get(self, "progress") @property @pulumi.getter def region(self) -> str: """ The URL of the region where the operation resides. Only applicable when performing regional operations. """ return pulumi.get(self, "region") @property @pulumi.getter(name="selfLink") def self_link(self) -> str: """ Server-defined URL for the resource. """ return pulumi.get(self, "self_link") @property @pulumi.getter(name="startTime") def start_time(self) -> str: """ The time that this operation was started by the server. This value is in RFC3339 text format. """ return pulumi.get(self, "start_time") @property @pulumi.getter def status(self) -> str: """ The status of the operation, which can be one of the following: `PENDING`, `RUNNING`, or `DONE`. """ return pulumi.get(self, "status") @property @pulumi.getter(name="statusMessage") def status_message(self) -> str: """ An optional textual description of the current status of the operation. """ return pulumi.get(self, "status_message") @property @pulumi.getter(name="targetId") def target_id(self) -> str: """ The unique target ID, which identifies a specific incarnation of the target resource. """ return pulumi.get(self, "target_id") @property @pulumi.getter(name="targetLink") def target_link(self) -> str: """ The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from. """ return pulumi.get(self, "target_link") @property @pulumi.getter def user(self) -> str: """ User who requested the operation, for example: `user@example.com`. """ return pulumi.get(self, "user") @property @pulumi.getter def warnings(self) -> Sequence['outputs.OperationWarningsItemResponse']: """ If warning messages are generated during processing of the operation, this field will be populated. """ return pulumi.get(self, "warnings") @property @pulumi.getter def zone(self) -> str: """ The URL of the zone where the operation resides. Only applicable when performing per-zone operations. """ return pulumi.get(self, "zone") @pulumi.output_type @pulumi.output_type @pulumi.output_type
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 17202, 39410, 25, 428, 2393, 373, 7560, 416, 262, 21624, 12994, 26144, 35986, 13, 17202, 198, 2, 17202, 2141, 407, 4370, 416, 1021, 4556, 345, 821, 1728, 345, 760, 644, 345, 389, 1804, 0, 17202, ...
2.91507
10,750
"""Provides convenience functions for interacting with files and directories """ import os def file_is_not_readable(file_path: str) -> bool: """Returns True if the given file is not readable """ if os.access(file_path, os.R_OK): return False return True def directory_is_not_readable(directory_path: str) -> bool: """Returns True if the given directory is not readable """ if os.access(directory_path, os.R_OK): return False return True def directory_is_not_writeable(directory_path: str) -> bool: """Returns True if the given directory is not writeable """ if os.access(directory_path, os.W_OK): return False return True
[ 37811, 15946, 1460, 15607, 5499, 329, 24986, 351, 3696, 290, 29196, 198, 37811, 198, 11748, 28686, 628, 198, 4299, 2393, 62, 271, 62, 1662, 62, 46155, 7, 7753, 62, 6978, 25, 965, 8, 4613, 20512, 25, 198, 220, 220, 220, 37227, 35561, ...
2.917012
241
# -*- coding:utf-8 -*- # Copyright (c) 2020 Huawei Technologies Co.,Ltd. # # openGauss is licensed under Mulan PSL v2. # You can use this software according to the terms # and conditions of the Mulan PSL v2. # You may obtain a copy of Mulan PSL v2 at: # # http://license.coscl.org.cn/MulanPSL2 # # THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OF ANY KIND, # EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, # MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. # See the Mulan PSL v2 for more details. # ---------------------------------------------------------------------------- import os from gspylib.common.Common import DefaultValue from gspylib.inspection.common.CheckItem import BaseItem from gspylib.inspection.common.CheckResult import ResultStatus
[ 2, 532, 9, 12, 19617, 25, 40477, 12, 23, 532, 9, 12, 198, 2, 15069, 357, 66, 8, 12131, 43208, 21852, 1766, 1539, 43, 8671, 13, 198, 2, 198, 2, 1280, 35389, 1046, 318, 11971, 739, 17996, 272, 6599, 43, 410, 17, 13, 198, 2, 921,...
3.213439
253
#!/usr/bin/python3 #imports import os,json,urllib.request,urllib.parse,glob,zipfile,sys,shutil from os.path import expanduser #functions #Variablen brautecversion='3' mcversion='1.6.4' forgeversion='9.11.1.953' modpackdownload='http://users.minecraft.name/maha' modpackversiondownload=modpackdownload+'/Brautec'+brautecversion+'.json' modpackmodsdownload=modpackdownload+'/mods' modpackconfigdownload=modpackdownload+'/config' if os.name=='nt': minecraftlauncherdownload='https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.exe' minecraftclient=os.path.abspath(module_path()+'/minecraft_launcher.exe') mcpath=os.path.abspath(os.getenv('APPDATA')+'/.minecraft') elif os.name=='mac': minecraftlauncherdownload='https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar' minecraftclient=os.path.abspath(module_path()+'/minecraft_launcher.jar') mcpath=os.path.abspath(expanduser('~')+'/Library/Application Support/minecraft') else: minecraftlauncherdownload='https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar' minecraftclient=os.path.abspath(module_path()+'/minecraft_launcher.jar') mcpath=os.path.abspath(expanduser('~')+'/.minecraft') mcprofiles=os.path.abspath(mcpath+'/launcher_profiles.json') modpackpath=os.path.abspath(mcpath+'/modpacks/brautec3') modspath=os.path.abspath(modpackpath+'/mods') configpath=os.path.abspath(modpackpath+'/config') versionspath=os.path.abspath(mcpath+'/versions') modpackversionfile=os.path.abspath(modpackpath+'/Brautec'+brautecversion) print('Lade aktuelle Versionsinformationen herunter...') getmodpackjson=urllib.request.urlopen(modpackversiondownload) modpackjson=getmodpackjson.read().decode() if modpackjson: j_modpackjson=json.loads(modpackjson) mcversion=j_modpackjson['MinecraftVersion'] forgeversion=j_modpackjson['ForgeVersion'] else: print('Updateserver nicht erreichbar') if os.path.exists(modpackpath): print('Installation nicht moeglich: Abbruch!') exit(1) forgedownload='http://files.minecraftforge.net/maven/net/minecraftforge/forge/'+mcversion+'-'+forgeversion+'/forge-'+mcversion+'-'+forgeversion+'-installer.jar' minecraftjardownload='https://s3.amazonaws.com/Minecraft.Download/versions/'+mcversion+'/'+mcversion+'.jar' minecraftjsondownload='https://s3.amazonaws.com/Minecraft.Download/versions/'+mcversion+'/'+mcversion+'.json' forgeversionspath=os.path.abspath(versionspath+'/'+mcversion+'-Forge'+forgeversion) mcversionspath=os.path.abspath(versionspath+'/'+mcversion) #Code print('Suche Minecraft Ordner') print(mcpath) if os.path.isfile(mcprofiles): fo = open(mcprofiles, 'r') j_mcprofiles = json.loads(fo.read()) fo.close() auth = list(j_mcprofiles['authenticationDatabase']) if not auth: print("Kein Minecraft Profil gefunden. Bitte den Minecraft Launcher starten und einloggen!") exit(1) if os.name != 'nt' or os.path.exists(os.getenv('programfiles(x86)','C:\\this dir does not exist')): j_mcprofiles['profiles']['Brautec'+brautecversion]={'name':'Brautec'+brautecversion, 'gameDir':modpackpath, 'javaArgs':'-XX:InitialHeapSize=512M -XX:MaxHeapSize=2G -XX:MaxPermSize=256M -XX:+AggressiveOpts -XX:+UseFastAccessorMethods','lastVersionId':mcversion+'-Forge'+forgeversion,'playerUUID':auth[0]} else: j_mcprofiles['profiles']['Brautec'+brautecversion]={'name':'Brautec'+brautecversion, 'gameDir':modpackpath, 'javaArgs':'-XX:InitialHeapSize=512M -XX:MaxHeapSize=1024M -XX:MaxPermSize=256M','lastVersionId':mcversion+'-Forge'+forgeversion,'playerUUID':auth[0]} j_mcprofiles['selectedProfile'] = 'Brautec3' fo = open(mcprofiles, 'w+') fo.write(json.dumps(j_mcprofiles)) fo.close() else: print('Du musst Minecraft wenigstens einmal mit dem aktuellen Minecraft Client starten und dich einloggen.') print('Diesen bekommst du auf der Seite https://minecraft.net/download') exit(1) #Hier wird die Minecraft Version heruntergeladen if not os.path.exists(mcversionspath): print('Erstelle Versionsordner') os.makedirs(mcversionspath) print('Lade Minecraft Version '+mcversion+' herunter...') mcjarfile=os.path.abspath(mcversionspath+'/'+mcversion+'.jar') urllib.request.urlretrieve(minecraftjardownload,mcjarfile ) print(mcjarfile+' herunter geladen') print('Lade Minecraft Profil '+mcversion+' herunter...') mcjsonfile=os.path.abspath(mcversionspath+'/'+mcversion+'.json') urllib.request.urlretrieve(minecraftjsondownload,mcjsonfile ) print(mcjsonfile+' herunter geladen') #Hier wird die Forge Version heruntergeladen if not os.path.exists(forgeversionspath): print('Lade Forge Installationsassistent herunter...') print('Der Assistent wird im Anschluss gestartet.') print('Bitte fuehre anschliessend eine Clientinstallation durch') forgeinstallerfile=os.path.abspath(module_path()+'/minecraftforge-installer-'+mcversion+'-'+forgeversion+'.jar') urllib.request.urlretrieve(forgedownload,forgeinstallerfile ) print(forgeinstallerfile+' herunter geladen') print('Forge Installationsassistent wird nun ausgefuehrt') if os.name == 'nt': os.system('"'+forgeinstallerfile+'"') else: os.system('chmod -x "'+forgeinstallerfile+'"') os.system('java -jar "'+forgeinstallerfile+'"') os.remove(forgeinstallerfile) if not os.path.exists(forgeversionspath): print('Forgesetup wurde scheinbar abgebrochen oder es trat ein Fehler auf.') print('Brautec'+brautecversion+' Installation wird abgebrochen') exit(1) else: print('Benoetigte Forge Version ist bereits installiert: '+mcversion+'-Forge'+forgeversion) #Versionscheck if os.path.isfile(modpackversionfile): fo = open(modpackversionfile, 'r') localmodpackversion=fo.readline() fo.close() else: localmodpackversion='0' print('Aktuell installierte Version: '+localmodpackversion) if modpackjson: if (int(j_modpackjson['version']) > int(localmodpackversion)): if os.path.exists(modspath): installedmods=glob.glob(modspath+'/*') for installedmod in installedmods: if (installedmod.lower().find('jar') != -1) or (installedmod.lower().find('zip') != -1): if not any(os.path.basename(installedmod).lower() == mod['file'].lower() for mod in j_modpackjson['mods']): print(os.path.basename(installedmod).lower()+' wird geloescht') os.remove(installedmod) if os.path.exists(modspath+'/'+mcversion): if os.name == 'nt': os.system('CMD /C RMDIR /S /Q "'+modspath+'/'+mcversion+'"') else: shutil.rmtree(modspath+'/'+mcversion) else: os.makedirs(modspath) for mod in j_modpackjson['mods']: if os.path.isfile(os.path.abspath(modspath+'/'+mod['file'])): print(mod['name']+' ist aktuell') else: print(mod['name']+' wird heruntergeladen') urllib.request.urlretrieve(urllib.parse.quote(modpackmodsdownload+'/'+mod['file'],safe="%/:=&?~#+!$,;'@()*[]"),os.path.abspath(modspath+'/'+mod['file'])) print('Einstellungen werden heruntergeladen') for config in j_modpackjson['config']: configdownloadpath=os.path.abspath(module_path()+'/'+config['file']) print('Downloade '+config['name']) print(urllib.parse.quote(modpackconfigdownload+'/'+config['file'],safe="%/:=&?~#+!$,;'@()*[]")) urllib.request.urlretrieve(urllib.parse.quote(modpackconfigdownload+'/'+config['file'],safe="%/:=&?~#+!$,;'@()*[]"),configdownloadpath) print('Entpacke '+config['name']) if config['overwrite']==0: overwrite=0 zippedfiles=zipfile.ZipFile(configdownloadpath,'r').namelist() for zippedfile in zippedfiles: if not os.path.isfile(os.path.abspath(modpackpath+'/'+zippedfile)): overwrite=1 else: overwrite=1 if overwrite==1: zipfile.ZipFile(configdownloadpath,'r').extractall(modpackpath) else: print(config['name']+' existiert bereits und wird nicht ueberschrieben') os.remove(configdownloadpath) fo = open(modpackversionfile, 'w+') fo.write(str(j_modpackjson['version'])) fo.close() else: print('Version ist aktuell') else: print('Modpackinformationen konnten nicht geladen werden.') print('Brautec wird trotzdem gestartet.') if not os.path.isfile(minecraftclient): urllib.request.urlretrieve(minecraftlauncherdownload,minecraftclient) if os.name == 'nt': os.system('"'+minecraftclient+'"') else: os.system('chmod -x "'+minecraftclient+'"') os.system('java -jar "'+minecraftclient+'"')
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 198, 198, 2, 320, 3742, 198, 11748, 28686, 11, 17752, 11, 333, 297, 571, 13, 25927, 11, 333, 297, 571, 13, 29572, 11, 4743, 672, 11, 13344, 7753, 11, 17597, 11, 1477, 22602, 198, 6738, 286...
2.38383
3,723
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.11.2) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x12\x61\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\xe1\x00\x00\x00\xe1\x08\x03\x00\x00\x00\x09\x6d\x22\x48\ \x00\x00\x00\xf3\x50\x4c\x54\x45\x2e\xa9\xd3\xff\xff\xff\x25\x87\ \xa9\xf0\xf0\xf0\x2b\x41\x4d\xd8\xd8\xd8\x47\x5f\x6c\xc0\xc0\xc0\ \x1e\x2d\x36\x2c\xa2\xcb\xef\xef\xef\x00\x7e\xa3\x2c\x42\x4e\xf3\ \xf3\xf3\xd6\xd6\xd6\x56\x62\x68\xf9\xf4\xf2\xe6\x87\x7f\xe5\xe5\ \xe5\x41\x58\x65\x21\x3a\x47\xf9\xf9\xf8\x18\xa5\xd1\xde\xde\xde\ \xe0\xdb\xd8\x3d\x54\x61\x35\x4c\x58\xe9\xe9\xe9\x23\x35\x3f\x18\ \x34\x42\x27\x3b\x46\xa6\xac\xb0\x74\x7f\x85\x00\x2a\x3a\xf2\xf9\ \xfc\xcd\xcd\xcd\x87\xc8\xe3\xb4\xdc\xec\xdf\xf0\xf7\x7d\xc4\xe0\ \x6c\xbe\xdd\x5c\xb9\xdb\x1c\x37\x44\x93\x9b\x9f\x84\x8d\x93\x63\ \x6f\x76\x4d\xb3\xd8\xe4\xeb\xee\xcf\xe3\xeb\xaa\xd7\xea\x6f\xab\ \xc3\xa5\xc9\xd8\xa0\xa7\xab\x92\xc1\xd6\xc6\xe4\xf1\x99\xd0\xe6\ \xb9\x6c\x66\x4b\x99\xb6\x81\xb5\xca\xb9\xd6\xe2\xe5\x7d\x74\xe7\ \x95\x8e\xec\xe3\xe3\xc5\x82\x7d\x3b\x48\x4f\xce\x9b\x98\x9c\xc5\ \xd6\xd2\x7b\x74\xed\xcf\xcc\xe9\xaf\xaa\x34\x90\xb0\x49\x55\x5c\ \x77\xa5\xb8\xb5\xbe\xc2\xa9\xc0\xca\x92\xb5\xc3\x5c\xa0\xba\xc5\ \xd7\xdf\x8e\xb8\xca\xe8\xa1\x9c\xcd\x6c\x64\xbe\xa4\x50\xc3\x00\ \x00\x11\x29\x49\x44\x41\x54\x78\x9c\xd5\x9d\x09\x77\xda\xb8\x16\ \x80\x0d\xa9\x5f\xfb\x30\xa6\xd4\x09\x86\x40\xc9\x02\x09\x4b\x9a\ \xb2\x24\x4d\x52\xc2\x4c\xa7\x93\x99\xd2\x25\x24\x33\xff\xff\xd7\ \x3c\xc9\x0b\xde\x24\x59\xf7\x4a\x26\xbc\x7b\xce\x9c\x99\x09\x60\ \xeb\xf3\xdd\xa4\xab\xc5\x46\xa9\x70\xe9\x0d\x6e\xcf\xe7\x77\x67\ \xa3\xf1\x64\x32\x31\xa8\x90\x7f\x8f\x47\x67\x77\xf3\xf3\xdb\x41\ \xaf\xf8\xdb\x1b\x45\x5e\x7c\x70\x7e\x36\x9a\x18\xae\x2f\x46\x52\ \xc2\xbf\x4e\x46\x67\xe7\x83\x22\x1b\x51\x14\x21\x81\x1b\x33\xb8\ \x58\x42\xbf\x36\x2e\x0e\xb3\x08\xc2\xc1\x7c\x64\xc8\xc1\x25\x30\ \x8d\xd1\xbc\x08\x4a\xdd\x84\xbd\xdb\xa1\x01\x84\x8b\x63\x1a\xc3\ \x5b\xdd\xae\xa9\x95\xb0\x77\x3e\x86\xea\x8e\xa1\xcb\xf1\xb9\x56\ \x48\x8d\x84\x14\x4f\x89\x2e\xa2\x1c\x9f\xeb\x6b\x96\x2e\xc2\xc1\ \x50\x13\x5e\x08\x39\x9c\x69\x6a\x99\x1e\xc2\xf9\x44\x2b\x9f\xcf\ \x38\x99\x6b\x69\x9b\x06\xc2\xc1\x99\x76\xbc\x10\xf2\x4c\x43\x70\ \x55\x26\x1c\x8c\x0a\xe2\xf3\x19\x47\xca\x8c\x8a\x84\xb3\x71\x71\ \x78\x01\xe4\x58\xd1\x21\x95\x08\x07\x85\xf3\xf9\x8c\x4a\x7a\x54\ \x20\xdc\x0e\x9f\x32\x23\x9a\xb0\x37\xdc\x16\x9f\xc7\x38\x44\xf7\ \x02\xb0\x84\xf3\x02\xe3\x0b\x13\xd1\xc5\xe6\x0e\x1c\xe1\x60\xb2\ \x5d\x3e\x8f\x71\x82\x33\x55\x14\xe1\x56\x0d\x34\xc6\x38\xdc\x12\ \xe1\xf9\x96\x0d\x34\x86\xe8\xde\x6e\x81\xb0\x37\x7a\x29\x3e\x8f\ \x71\x04\x8e\x38\x50\xc2\xdb\x17\x53\x60\x80\x08\x56\x23\x90\xf0\ \xec\x65\xf9\x3c\xc6\xb3\x02\x09\x7b\x2f\x10\x42\xb3\xe2\x4e\x40\ \x96\x0a\x21\xbc\xdd\x05\x3e\x2a\x20\x4b\x05\x10\xde\xed\x0a\x20\ \x41\xbc\x2b\x82\x70\x6b\xbd\x50\x19\x71\xc7\xda\x09\x77\xc3\x05\ \x23\x91\x77\x46\x49\xc2\xc1\x6e\xf1\x51\x71\x25\x3b\x71\x72\x84\ \x3b\x13\x63\xe2\x22\x19\x6f\xa4\x08\xcf\x77\x11\x90\x20\x4a\xd5\ \x1c\x65\x08\xe7\xbb\x09\x48\x10\x65\x46\x54\x12\x84\x3b\x94\x25\ \xd2\x22\x93\x35\xf2\x09\x77\x18\x50\x0a\x31\x97\x70\xa7\x01\x65\ \x10\xf3\x08\x77\x1c\x50\x02\x31\x87\x70\x67\x83\x4c\x24\x79\xe1\ \x46\x4c\xf8\x7f\x00\x98\x8b\x28\x24\xdc\xc9\x44\x9f\x15\x71\xea\ \x17\x11\xee\x60\x57\x8d\x2d\xc2\x0e\x9c\x80\xb0\xa7\x1d\xd0\x75\ \xd9\xeb\x32\xd4\x2f\x2c\xe8\x86\x0b\x08\x27\xfa\x1a\xe0\x51\x8d\ \x47\xc3\xbb\xbb\xbb\x39\xf9\x67\x38\x1a\x1b\x7a\x49\x27\x18\x42\ \x4d\xe3\x41\xc2\x31\x19\xce\x67\xd3\x3d\xbb\xee\x49\xf8\xaf\xbd\ \xe9\x6c\x3e\x9c\xe8\xa2\x14\x8c\x17\xb9\x84\x5a\x12\x21\xa1\xbb\ \xbb\x9d\x52\x1e\x96\x10\xd8\xe9\xec\x4e\xcf\xf4\x31\x3f\x2d\xf2\ \x08\x35\x84\x51\xd7\x1d\x9d\x13\x3a\x26\x5c\x24\x84\xf2\x5c\xc7\ \x24\x2b\x37\xa0\x72\x08\x95\xa3\x0c\x9d\x86\x9f\x72\x74\x97\xd5\ \xe5\x54\xc3\x42\x00\x5e\xb4\xe1\x10\x2a\x46\x19\xba\x94\x42\x12\ \x2f\x84\x9c\x29\x2f\xe6\xe0\x44\x1b\x36\xa1\x9a\x13\xba\xee\xdd\ \x94\x63\x9c\x36\x15\x8e\xb9\x4e\xef\xd4\x18\x39\xae\xc8\x24\x54\ \x72\x42\xc2\x57\xe1\x39\x9f\xfd\xe5\xdb\x3f\xdf\xbe\xf0\x94\x5b\ \xaf\xa8\x31\xb2\x5d\x91\x49\xa8\x70\x17\xc3\x1d\xf2\xf4\x47\x00\ \xbf\xfd\xf6\xee\xdd\xbb\xdf\xbe\x71\xed\xb7\x3e\x55\x9b\xb8\x93\ \x25\x54\x98\x5d\x72\x27\x33\x7e\xf0\xb4\xff\xa6\x80\x04\xf1\x6f\ \xbe\x8b\xd6\x67\x0a\x65\x4b\x77\x24\x47\xa8\x60\xa3\xee\x9d\x28\ \xbe\xd8\xbf\xbf\xf3\xe5\x77\xd1\x97\xea\x0a\x41\x80\x65\xa7\x0c\ \x42\xf4\x0d\xdc\x09\xdf\x40\xa9\xf4\xfe\x0d\x08\xff\xed\x89\xbe\ \x56\x9f\xe2\xd5\xe8\xca\x10\xa2\x3d\x81\x28\x50\xd4\x70\x42\xf8\ \x39\x20\xfc\x2c\x24\x24\x8c\x68\x35\x32\x26\xc2\x33\x84\x33\xf4\ \xc5\x05\x1e\xe8\x8b\xfd\xe7\xe7\xbf\x08\xdf\x5f\x9f\xff\xcc\x4b\ \x95\x75\x85\x56\xe4\x12\x62\xaf\x3c\x99\xe6\x67\xf8\xce\x67\x5f\ \x3a\xb9\xdf\xb4\xf1\x96\x9a\x47\x88\xac\x5b\xb8\x23\x99\x1e\x8c\ \xfd\xe5\x0f\xc2\xf7\x07\x37\x21\x26\xbe\x8b\x8c\xe8\x99\x9a\x46\ \x8a\x10\xd9\x1f\x75\xcf\xf2\x2c\x34\x68\x76\xef\x4b\xeb\x4b\x4f\ \xae\x3b\x57\x47\xce\xa8\xa7\xfb\xa7\x29\x42\x5c\x98\xc9\x8d\x31\ \x71\x48\xe9\x6f\x22\xe3\x4d\x3a\xd8\x24\x09\x71\x95\x19\x77\x2e\ \x0f\x08\x91\x3a\xce\x65\x52\x55\x9b\x24\xe1\x78\x97\x00\xd1\x88\ \x23\x3e\x21\x4a\x85\x10\x13\x05\x23\xa2\x0c\x35\xa9\xc4\x04\x21\ \x46\x85\xb2\x41\x06\x89\x88\x0a\x37\x63\x1e\x21\x26\xcd\xba\xa3\ \x22\x01\x09\x22\x26\x69\x24\xd2\x7e\x9c\x10\x33\xb0\x1f\x17\x0b\ \x48\x10\x51\xad\x62\x13\xa2\xbc\x70\x2a\xdf\x56\x32\xba\x6f\xf8\ \xc2\x1d\xe7\xb3\x64\x8a\x68\x55\xdc\x13\x63\x84\x23\xc4\x95\x66\ \x92\xb5\x26\xc2\xe6\xf4\x8f\x3f\x5c\x9e\x9c\x7c\x3c\x39\xb9\xfc\ \x70\xdc\x77\x28\xa7\xdc\x6f\x31\xce\x33\x62\x11\x22\x54\x28\x19\ \x46\xed\x46\xf3\xf8\xa4\xdd\xed\x76\x2f\x0e\x7c\xb9\x20\xff\xdd\ \x3e\x39\x6e\x36\xa4\x18\x31\x01\x35\xa6\xc4\x88\x10\x11\xb5\x26\ \x12\x80\x76\xc3\xf9\xf4\xfd\xb4\x7b\xf0\x2a\x2d\x07\xdd\xd3\xef\ \x9f\x1c\x19\x48\x84\x2b\xc6\x16\x30\x46\x84\x88\x07\x95\xef\x84\ \x76\xa3\x76\xd2\x65\xe0\x85\x90\xdd\x93\x9a\x04\xe3\x14\xd1\xb6\ \x2c\x21\xbc\xfb\x90\xdf\x97\x21\x7c\x1f\x4f\x79\x78\x01\xe4\xe9\ \xc7\x7c\x46\x44\xdf\x26\x1a\x62\x6c\x08\xe1\x96\x90\x6b\xa3\x0d\ \xe7\x24\x87\xcf\x67\x3c\x71\x1a\x79\x88\x88\xd6\xa5\x09\xe1\x01\ \xcb\x9d\xe5\x29\xf0\xf8\x22\x9f\xcf\x37\xd6\xe3\x3c\x35\x62\x9a\ \x97\x22\x04\x0f\x9b\xdc\xa1\x58\x85\xb6\xf3\xb6\x2b\xc5\x47\xa5\ \xfb\xd6\x11\x23\xd6\x11\xed\x4b\x11\xc2\x9f\x91\x38\xcc\x34\xfa\ \x07\x72\x0a\x0c\xd4\xf8\xaa\x2f\xb6\x54\x78\xb0\x71\x93\x84\xe0\ \xb5\x79\x39\x1d\xee\xc6\xf1\x69\x86\xa2\xda\x6e\x1f\x1e\xee\xef\ \xef\x1f\x1e\xb6\xdb\xd5\xcc\xa7\xa7\xc7\x42\x44\x78\x17\x3c\x5c\ \xd7\x17\x10\x82\x47\x15\x62\x15\x36\x2e\xd3\x80\xed\xc3\xff\x24\ \xe5\xb0\x9d\x46\xfc\x20\x44\x84\x2b\x71\x1c\x27\x04\x97\x67\xc4\ \x2a\x6c\x5c\x26\x5d\xb0\x9a\xc6\x0b\x20\x93\x9a\xec\x5e\x8a\x10\ \x11\x4a\xec\xc5\x08\xe1\x46\x2a\x52\x61\xe3\x43\x02\xb0\xba\xcf\ \xe4\xa3\xb2\x9f\x60\xec\x0a\xb5\x08\x56\x62\x60\xa6\x06\xca\x48\ \x85\x81\x34\xe5\x83\x6c\xfd\x6d\xf4\x28\xed\x8b\xf5\x21\xb0\x91\ \x81\x99\x1a\x38\x23\x15\xe4\x42\xbb\x1f\x07\x6c\x0b\xf9\xa8\xc4\ \xfd\xf1\xb4\x2f\x48\x1a\xe0\x9c\xe8\x9b\xa9\x47\x08\x9e\x6d\x12\ \x74\x67\x6c\x27\x9e\x25\xc4\x0a\xcc\xaa\xb1\xda\x11\x4c\xbc\x41\ \x3b\x36\xfe\x4c\x94\x81\x49\xf7\xee\x9c\xdf\x8e\xc6\xdb\x18\x61\ \xc2\x03\xf7\x83\x2c\x41\xb3\x46\xf2\x83\xe8\x07\x07\x6f\xf9\x76\ \x6a\x43\x7b\xa7\x7e\xd2\xf7\x08\x61\x3f\x14\xc6\x99\xc6\x71\x97\ \x0d\x98\x4a\x81\xd5\x36\x1b\xb1\x2b\x70\x45\x78\xc2\x08\x09\xc1\ \x63\x5f\x7e\x71\xc6\x76\xd8\x80\xe9\xe4\x97\x72\xd1\x18\xe2\x05\ \xbf\xff\x56\x07\x07\xc4\x41\x40\x08\xd6\x3e\xdf\x48\x1b\x27\x07\ \x0c\x40\x16\x5f\x92\x31\x42\x3c\x38\xe1\x2a\x11\x6e\xa6\xf3\x80\ \x10\x5a\xa0\xe1\x1b\xa9\x5d\x8b\xe2\x68\x14\x64\xb2\x5d\xb4\x8d\ \xad\x32\xc2\xcd\x69\x8d\xfb\xfc\xc0\x66\x3a\x0a\x08\x81\x3f\x13\ \x44\xd2\xc6\xc7\x8d\x0a\xdb\x59\xf5\xb0\x64\xa3\xe8\x8d\x9e\x0f\ \x3e\x72\x95\x08\x1f\x26\xfa\x84\x50\x37\xe4\xd7\x9f\xe2\xa9\x50\ \x0e\x30\x86\x28\xa1\x44\x70\x4d\x8a\x3a\xa2\x01\xef\xb2\xb9\xb7\ \xbc\x16\xc4\xbc\xf0\x50\x12\x30\x42\xdc\xd8\x29\xdf\x13\x6d\x68\ \xe2\xa6\x1d\x37\x03\x5e\x64\xe3\xbb\x61\x14\x48\xab\x19\xcd\xf0\ \x25\xe3\xae\x5d\x87\x77\x03\xa8\x23\xd2\x92\x9b\x01\xaf\xd0\x70\ \xdd\xd0\xfe\xb4\x21\xdc\x4f\xb7\x5a\x20\xd5\xb4\xba\xbb\x9f\xb8\ \x66\x0a\x6e\xab\x47\x08\xee\x29\xf0\x08\xa3\xee\x4c\xd8\xe8\x4c\ \x9a\xa8\x52\x49\xff\xb1\x9d\x7a\x1c\x47\xdc\x8e\x0d\xb8\x98\xe1\ \x52\x42\x70\xa0\xe1\x65\x43\xdb\xd9\xc4\x99\x43\xa6\x8d\x56\x5f\ \x1d\xbd\xa7\x72\xf4\x2a\x05\x99\xf6\xc4\x53\x5e\xd6\x87\x67\xc4\ \x01\x21\x04\x7b\x2f\x6f\x5c\x61\x47\x1d\x36\x96\x0a\xab\xaf\xde\ \xbf\x09\xe5\x7d\x92\xb1\x9d\x7a\x20\xdd\x63\x1e\x21\xb8\xb1\xb7\ \x84\x10\x1c\x81\x79\x81\x26\x8a\xa4\xe9\x16\x7b\x80\x07\xef\xbf\ \x7e\x8d\x18\x8f\x12\x88\xa9\x27\xc2\x8f\xa6\xe0\x50\x73\x47\x08\ \xc1\x3d\x1a\xce\xcd\xf7\x1a\x1b\x95\x1d\x66\x55\x58\x7d\xff\xfd\ \x2d\x91\xef\x6c\xc4\x76\xca\x4c\xdb\xdc\x6e\x0d\xbc\x57\x63\xe8\ \x0b\xa5\x4e\xda\x48\x63\x0c\xd5\x23\x0f\x90\x87\x58\x4d\x9b\x29\ \x2f\x5f\xd8\xf0\x60\x6a\x80\xfb\x6c\xe3\x56\xd3\xe9\x54\x18\x37\ \xef\x77\x93\xed\x4d\x24\xfb\xf7\x6f\x03\x89\x0c\x35\xfe\xf1\x7e\ \xf2\x99\x74\x59\x63\xfd\x4a\xc7\x69\xb6\xc0\x45\xc1\x92\x01\xae\ \x60\x8c\x5a\x26\x15\x8a\x99\x68\x46\x14\x68\xd2\x36\x47\x6d\xf4\ \x6b\x48\xf8\x35\x0a\x37\x31\x25\xa6\xec\x3a\x15\x6a\x6c\x0a\xe7\ \xdd\xb5\x05\xf6\xa9\x9e\x01\x4e\x16\x37\x3e\x21\x91\x9a\xd9\x8c\ \xa9\xb3\xf1\xe1\x82\xef\x86\x6f\x18\x84\x71\x25\xa6\x1e\xca\xc5\ \xa6\xea\x46\xd9\x9a\xe4\x4e\x81\xb4\x6e\xc0\xe9\xc2\x00\xc7\xdf\ \x1b\x33\x2d\x3e\x67\xe3\xf2\x20\x49\x18\x53\xd1\xd1\x1b\x86\x95\ \xbe\x39\xca\x38\x62\x48\x78\x70\xd9\x08\xd8\xd2\x02\x26\xbc\x35\ \xc0\xfd\xee\x9b\xd8\x23\x8d\xa4\x56\x6b\x6e\x46\x4e\xfb\x69\xc2\ \x2a\xc1\xca\x44\x9a\x84\x99\xa6\x5c\xf7\xe0\x63\xb3\xc6\xba\x89\ \xd9\x04\x13\x9e\x1b\xe0\x74\x78\x53\x27\x8f\x97\xf1\x74\x33\x84\ \xaf\x12\x84\x6f\xbe\xa7\x01\x13\x8e\x98\x21\x64\x58\x0a\x31\x94\ \x3a\x98\x70\x6e\x80\x47\x16\x37\x9e\xe3\xd9\x9e\x15\xc5\xb5\x29\ \x22\xf4\x81\xe2\x19\xdf\x13\x39\xc2\x9a\x17\xd5\xfc\x45\x8d\x15\ \x30\xe1\x9d\x71\x06\xfb\x05\x21\x4c\xac\xf0\xed\x84\x51\x2e\x57\ \x87\x59\x91\xd0\x21\x61\x4b\xde\x0e\x4a\x48\xf8\xc0\xe1\xf7\x26\ \x93\x8d\x3d\x7d\x3a\x8e\xd8\x0f\xc5\x84\x19\x3f\x24\xd7\x0b\xf5\ \x16\x17\x07\x4c\x38\x32\xc0\x15\xba\x2c\x61\x90\x2d\xf8\xb1\xb4\ \x7a\xc4\x24\x3c\xca\x10\xc6\x63\x29\x53\xc0\x91\x86\xf0\x81\x4b\ \xe5\x37\x2d\x76\xa7\x51\x9c\x0f\x59\x12\xfb\x9c\x9b\x0f\x53\xd6\ \x02\xce\x87\x84\x0f\x5c\xbe\x1a\xb5\x18\x5d\xb6\xbd\xbc\x3e\x4d\ \x8e\x1b\xa6\xfb\x34\x3f\xd9\x4f\xb1\x02\xee\xd3\xc0\xf9\x68\xbf\ \x94\xbd\x99\x40\xdc\x2f\x15\xab\x50\xaa\x5f\x4a\xa4\x03\xef\x97\ \x22\x64\xd2\xe2\x38\xa2\x78\x6c\x21\xf2\x42\xe9\xb1\x85\xd3\xd2\ \xb7\xc1\x5c\x20\x66\x93\x7d\xfb\x68\x7c\xb8\x9f\x75\xc4\x0c\x22\ \x6b\x7c\xb8\xd1\x7a\x9b\x13\x68\x4c\x73\x1b\x80\xae\x59\x63\x3b\ \x62\xce\x18\xff\x88\x0f\x28\x3b\xc6\xaf\xd4\xcc\x6d\x1c\xf3\xe0\ \x2e\x4d\xb6\x0d\x15\x5f\xa7\x71\xcc\xe5\x56\x08\xaf\x39\x66\x2a\ \x57\x6b\x7b\xa3\x50\x6b\x6b\x9a\x0f\x5b\x21\x1c\xb6\x4c\x8e\x99\ \x6a\xaa\x97\xf2\x26\x82\x2b\x66\x0b\xb3\xa7\x07\xb1\xea\xaf\xc5\ \x33\xd3\x82\x6b\xde\x8e\x89\x08\xa5\x88\x8c\x4f\x82\xa9\x69\x72\ \x9a\x50\xe8\xbc\x85\x6d\x62\x42\xe9\x04\xdc\x2f\x25\x66\xfa\x64\ \xd6\xd8\x49\xbf\xd8\xb9\xa7\x4e\xcd\x7c\x82\x1b\xe9\x18\x3c\xb6\ \xf0\x2b\x35\x9c\x58\x53\xe8\xfc\x61\x13\x5e\xa5\x31\xe8\xd8\x02\ \x3a\x3e\x34\x3c\x47\xe4\xc5\x9a\x02\xe7\x80\x2b\x26\xc6\x0d\x09\ \x1f\x62\x89\xbe\x4b\x1c\x82\xe3\x2a\x05\xce\xe3\xd3\x31\x31\xa2\ \xad\x67\x06\x62\x03\x1c\xc9\x88\x5c\x25\x16\xb6\x16\x83\xa8\xd0\ \xbc\x46\xb4\x75\x0e\xae\xb5\x51\x19\xb7\xb8\x4a\x2c\x6c\x3d\x0d\ \x51\x21\x66\x60\xe1\x9e\x83\xeb\xa5\x9e\xd4\xf8\x4a\xe4\xad\x89\ \x4a\x2d\x26\x4d\x2c\x39\x95\x58\x13\x45\x55\x58\x43\xb4\xd4\xbd\ \x05\xd7\xbc\xbd\x9f\x51\x33\x6d\x72\x86\xfa\xa2\x75\x6d\x55\xec\ \xba\x36\xbb\x89\x33\x52\x5a\xf3\x46\xed\xde\xa6\xd1\x94\x93\x13\ \xed\x4e\x5c\x55\xd0\xb5\x89\xaf\x38\x6b\x13\x49\x2e\x44\x45\x52\ \x3a\x6f\x81\x3a\x62\x80\x24\x7d\x93\x37\x4c\x2c\x64\x7d\x29\xad\ \x2c\x22\xd2\xbd\x41\xe7\x9e\x50\xfb\x2a\x69\xef\x9b\x17\x6c\x8a\ \x58\x23\xec\x90\xbb\xa1\x7a\xdd\xde\xfc\x21\x62\xdb\xa1\xe1\xc7\ \x1a\x4e\xb0\xd1\xbf\xce\xbb\xe2\x95\xbe\x91\xfb\xba\xe1\xf3\xf8\ \x9e\xf8\x73\x6c\x1c\x3b\xd5\xbe\x56\x9f\x86\x19\x4c\x8f\x2d\x98\ \xc7\x47\x1e\xf4\xec\x15\xdd\x79\x93\xd1\x8d\x0f\x99\xfd\x16\x69\ \x45\xee\xcb\xef\xb7\x70\xbc\x7b\xe1\x4e\x1f\xb8\x45\xac\xa7\x09\ \x7e\xea\x4f\x94\xf2\x4e\x29\x61\xef\x99\xf1\xb6\xcc\x78\x9b\x66\ \x20\x7b\x66\x3a\x26\x5a\x85\xfe\x7a\x1a\xec\x99\x42\xfe\xb4\x13\ \xc7\x15\x35\xee\x7b\xaa\xf8\x13\x50\xb8\x46\xba\xa8\x75\x6d\xc1\ \x6f\xbd\x70\xca\x75\x45\x7d\x7b\xd7\x3c\x40\x5c\x20\x0d\xd7\xb5\ \x61\x4f\x49\x79\xf2\xe7\xbf\x78\x4d\xb3\x49\x07\x4e\x72\xff\xe1\ \x85\x60\xff\xa1\x3f\xcd\x86\xcb\x85\xe1\xda\x44\xec\x99\xf2\x63\ \x7f\xc9\x02\xff\xe9\x6b\xd8\x43\x6a\x07\x4b\x30\x90\xc5\xfc\x60\ \x7d\x29\xf6\x30\x5d\xf7\xda\x43\xac\xf1\x11\x95\xf7\x01\xdb\x8e\ \xe7\xed\x2d\x6c\x11\x31\x58\x23\x8c\x3f\x62\xcf\x0f\x36\x9c\x0e\ \x6a\xc8\xa8\xb2\x97\xdb\xa9\xa9\x84\x19\x23\x5c\xe7\x8d\xec\xd5\ \x18\x1b\x3b\x15\x68\x91\x32\x76\x04\xfb\xf1\x3b\x22\xbe\x40\x83\ \x68\x1b\x8d\xd6\xea\xa3\x4f\xed\x76\x1f\x24\x10\xd1\x67\x2a\x6c\ \x00\x71\xa9\xd0\x88\xed\xb7\xc0\x9f\x6a\x1d\xc4\xd3\x3c\x44\x7a\ \x2e\x86\x9d\x3a\x17\xc3\xce\x3d\x17\xa3\x19\x2c\xf4\x40\xc6\x51\ \x23\xb6\x67\x46\xe5\xac\xcb\xcd\x5a\x13\x71\x6b\x7d\x4c\xd0\xd9\ \x26\x9b\xf5\x26\x0a\xad\x43\xef\x5d\x8b\xc4\x1d\xb7\xe4\x11\x21\ \x52\x09\x01\x15\x66\x7d\x63\x7b\xd7\x54\x4e\xbb\x1c\x6d\x16\xf2\ \xe5\x9f\xa4\x27\x2f\x9d\xf0\xa2\x2d\x95\xa3\x46\xa3\xfd\x87\x2a\ \xe7\x22\xc7\xd6\x2a\xe6\x38\x23\x40\x9c\x70\xad\x15\x3e\xca\x18\ \x89\x3d\xa4\xb8\x53\xcc\xc2\xeb\x3c\x6c\x10\x9b\xbc\x7e\x38\x4c\ \x2a\xe6\x46\x83\x4a\xf3\x85\xb1\x7d\xc0\x6a\x2f\x03\x0a\xfa\x36\ \xc2\x01\x23\x44\x9c\x08\x10\x53\x5d\x8b\xda\x15\xdf\xcb\xad\x76\ \x7c\x77\x1c\xb1\x59\x51\x33\x55\x7b\xe3\x81\xaa\x80\xc9\xfd\xf8\ \xf8\x6e\x8d\x7f\xad\xc8\x50\xcd\x9a\x92\xa9\x56\x9a\xd1\x6a\x47\ \x35\x13\xdd\x9c\x15\x15\x9e\x8b\xf1\x5f\x35\x79\x8e\x10\x15\x4c\ \xb5\xe2\xc4\xae\xd2\x7a\x56\x6c\x53\xf2\x5c\x8c\x9e\x55\x56\x12\ \xeb\x47\x1c\xd1\x74\x30\x7a\x4c\xf0\x99\xad\xb5\x6a\x93\x7a\x09\ \xc2\xd2\x95\xda\xe5\xca\xd6\xc2\x4c\x08\xd4\x1f\xed\x4e\x72\x55\ \x70\x6d\xa1\x08\x58\xbe\x2a\x25\x09\x67\xaa\x17\x2c\x97\x9f\x12\ \x6a\xac\x11\x45\xca\x42\xda\x44\x7d\x89\x65\xdd\xad\x27\xe5\xd6\ \x58\xe9\x33\x86\x4a\x2b\xf5\x6b\x3e\x26\x10\xa9\x22\xa5\xac\xb5\ \xe2\xa4\x17\x75\xb7\x1e\xd5\x9f\xf7\xaa\x94\x26\x7c\x50\xbf\xa8\ \xb5\xae\xa5\xdb\x5a\xcb\x6c\x3c\x49\xd1\x75\x9c\xcc\xca\xff\x96\ \xba\x85\x92\xb6\x5c\x67\x08\x55\x63\x8d\x2f\xbf\xd2\x6a\x0c\x74\ \xc9\xd8\x46\xb4\xd9\x07\x93\x51\xa0\x8e\x86\x58\xbd\x0c\x61\xe9\ \x5e\xcb\x85\x17\x4f\x4c\x46\xaa\xa8\x66\xb3\xe9\xf8\xd2\xa4\x9b\ \x19\x18\xfb\x29\x3c\x0f\xd4\xa0\x40\x22\xf7\xa5\x2c\xe1\x40\xcb\ \x95\x49\xde\xa8\xb1\x19\x65\xa4\x55\xfb\xa1\xa9\x15\xac\x73\x13\ \x4b\x6b\x2d\xd7\x26\xf2\x68\x32\xcd\x2f\x9f\xcf\xd4\x62\xa0\x54\ \xd6\x25\x16\xa1\x86\x84\xe1\x8b\x55\x7e\x44\xe8\xb1\x55\x7b\x2c\ \x6b\x6b\xc1\x8c\x49\x58\x5a\x68\xba\x3e\x65\xfc\xd1\x87\x31\xb6\ \xfa\x3f\xb4\xf1\x95\xcb\x8b\x12\x9b\x50\x9b\x12\xa9\x58\x8b\x5f\ \xa6\x2c\x64\xab\xf6\x4b\x4f\x7c\x09\xef\xcd\x3b\x47\x58\xa3\x12\ \xbd\xfb\x94\xd7\xbf\xa4\x00\x7f\xad\x35\xaa\x8f\x4a\x5c\x85\x49\ \x42\xad\x4a\x24\x5a\x7c\xfc\xf9\xfa\x75\x9f\x9d\x15\x42\xa9\xf5\ \x5f\xbf\xfe\xf9\xa8\x55\x83\x49\x15\xa6\xce\x64\xd7\x16\x4e\x89\ \xfc\x20\x78\x81\xf4\x99\x98\xb5\x7e\x7f\xf3\x8d\x9f\x3f\x34\xde\ \x79\x5d\xe2\x13\x6a\xca\x89\x44\x1e\x5f\x67\xa5\x1f\x09\xe3\x53\ \x6d\x8c\x96\xe8\x5c\x7d\xe5\x41\x54\x70\x8f\x1f\x0c\x82\x7c\xd1\ \x94\xed\xaf\x4a\x22\x42\x1d\xbd\x53\x6b\x31\xad\xb3\x94\x94\x27\ \xfd\xfa\x4c\x87\x3f\x5a\xe2\xf7\x5b\x68\x18\x62\x58\x0f\x75\xba\ \xd0\x14\x0c\x68\xda\x7b\x76\xfd\x59\xc3\xed\x4b\x62\xc2\x92\xea\ \x1d\xca\x4f\x75\x7f\xcc\x0e\x53\x63\xdf\x5f\xd0\x56\x7f\x52\x46\ \x4c\x03\x65\xdf\x15\xa4\x76\x8b\xd5\xe6\x85\x3a\xb6\x23\xcf\xd8\ \xdf\x94\xcb\xeb\x53\x35\x3e\x2b\xff\x5d\x41\x6a\xc1\x66\x15\x7f\ \x63\x90\xdd\x91\xb3\xd5\x5a\x7c\x41\xa2\xad\x86\x78\x95\xe1\xc9\ \x12\x2a\x05\x9b\xd4\x2b\x91\x6c\xbb\x63\x8a\x35\xd9\x37\x3b\xa9\ \xa9\x36\x7b\xaa\xd0\x80\x74\x98\x61\x12\x96\x96\xe8\x3b\x58\x4f\ \xd9\x82\x05\x69\xbf\xd3\x64\x26\xc0\x7e\xbf\xe9\xec\x31\x66\x12\ \xeb\x0a\x0d\x58\x66\x71\x58\xef\xce\xc3\xf6\x6c\xac\x7b\xc1\x7b\ \x1d\xe9\x76\xef\xe0\x9c\x02\x3a\xd6\xef\x54\x04\xef\x7a\x44\x3b\ \xca\x9a\x41\xc3\x22\x44\xdb\x69\x6e\xf5\xd0\xb6\x05\x2f\xb1\x8c\ \xa4\x82\x6c\x00\xc3\x46\x39\x6f\x78\xc4\x99\x89\x75\xad\x6b\xfe\ \xb0\xfe\x8c\x03\x64\xd8\x28\xef\x3d\xa4\xf7\x18\x44\xab\xd4\xd0\ \x34\x7f\xd8\x40\x05\x1b\xeb\x9e\xc9\xc2\x79\x97\x2c\xa6\x3e\x4c\ \x02\x75\x63\x4f\x9d\xb1\xb2\xd7\xc0\x8d\x54\x57\x6c\x14\x0e\x21\ \xe2\x21\xfa\x35\x58\xbb\xa2\xc6\x58\xa9\xd8\xf4\x32\x08\x33\xb5\ \xa6\x20\x42\x84\x2b\x86\xbd\x09\x5b\x41\x8f\x95\x3d\x1b\x7d\x7b\ \xa6\x13\x0a\x08\xe1\xae\x18\x3d\xc3\x06\x4e\x91\x44\x7d\x8d\xf0\ \x12\xe0\xbe\x23\xc7\x09\x45\x84\x60\x57\x48\xf4\x08\x1b\x44\x93\ \x10\x4a\xf2\xe5\x08\x0f\x43\xb8\x48\x37\x5f\x82\x10\x1a\x6d\xa2\ \xb9\x90\x38\x65\x3e\x66\x25\x4d\x47\xe5\x1a\x48\xc8\x89\x32\x39\ \x84\xd0\xc4\xcf\xbc\x8b\xb7\x7a\xad\xe2\x49\x9a\xcb\xfb\x93\x9d\ \x81\xf3\x04\x76\x67\x76\xaa\xcf\x27\x04\x9b\x4a\xb6\x5f\x1f\x81\ \x06\xcb\xd9\x42\xf1\xfe\x9f\xff\x75\x60\xbf\x31\x3b\x64\x92\x24\ \x84\x46\x34\x8b\xd5\x2d\xc4\x08\x70\x0a\x9f\x1b\x46\xf3\x09\xe1\ \xee\xf0\xa4\x81\x0f\x3a\xc3\x9d\x09\x00\x10\x42\x70\xd9\xc6\x5a\ \x88\x0c\x46\x46\xc0\xd5\xa8\x4c\x61\x06\x46\x58\x02\x97\x86\xac\ \xb5\xd0\x66\x72\x64\x09\xae\xb6\x59\xcf\x39\x97\xcc\x23\x84\x23\ \x96\x2d\xeb\xea\x49\x10\xdb\xb8\xd2\x5b\x5e\x59\xf0\x9b\xe5\x01\ \xe6\x13\xa2\xc6\x19\x56\x79\xfd\x00\x33\xd7\xd9\xc3\x02\x8e\x27\ \xea\xca\x00\x08\x71\x43\x29\xa2\x49\x6b\x71\x7f\x3d\xcb\x57\xe6\ \x74\x76\x7d\x45\xe8\x70\x37\xc9\xd5\xa0\x14\xa1\x42\x95\x98\x36\ \x7c\xb5\x7e\x7e\x58\xce\x66\xd3\x64\xfa\xeb\x4d\x67\x4f\xcb\x87\ \xfb\xf5\xaa\x8c\x84\xf3\x2e\x9f\x13\x64\xa4\x09\xc1\x49\x83\x01\ \x1a\x72\xac\x56\xab\xe8\x2f\xaa\x97\x15\xa7\x09\x08\xa1\x42\xf9\ \xad\x40\x11\x27\x7a\x20\xa1\xe6\xb9\x53\x2d\x22\xec\xaa\xc1\x09\ \x4b\x3d\xf5\x75\x6f\x7a\x65\x25\x9b\x90\x64\x09\xc9\x78\x71\x97\ \xd4\x68\xf1\xc7\x83\x78\x42\x64\xd6\x28\x44\x24\xd2\x20\x86\x70\ \x77\xe2\x8d\x64\x8c\x81\x13\x96\xa6\xab\x5d\x60\xb4\x56\x9c\xaa\ \x9a\x06\xc2\x9d\xb0\x54\x88\x85\x22\x08\x5f\xde\x52\x41\x16\x8a\ \x21\x2c\xf5\x54\xd7\xd0\xab\xf1\xad\xc1\xa3\x16\x30\xe1\x8b\xaa\ \x11\xac\x40\x1c\x61\xa9\x77\xf5\x32\x8c\xd6\x15\x66\xd8\x89\x21\ \x24\x9d\xb8\x17\x08\xaa\xd6\x0a\x57\x20\xc1\x11\x6a\x59\xda\x0f\ \x04\x94\x19\x29\xe9\x24\xdc\xb2\xa9\xe2\x0c\x54\x8d\x90\x98\xea\ \xd6\xa2\xaa\xb5\x56\xa8\xe0\x29\x10\x22\x2a\x7f\x38\x3e\xb5\x0a\ \xa5\x12\xe1\x36\x18\x95\x2b\xb0\x8a\x84\x45\xdb\xaa\x92\x7d\x6a\ \x22\x2c\x95\x06\xf7\xaa\x05\x17\x1e\x9e\x75\x3f\xc8\xbf\xfd\x16\ \x08\x49\x5c\xbd\x2e\x20\x3f\x5a\xab\x6b\x74\xfc\x8c\x8b\x16\x42\ \x22\x33\x44\xbd\x5a\x84\x67\x5d\x29\x9b\x67\x20\xba\x08\x69\x51\ \x7e\xad\x09\xd2\xb2\xd6\x4b\x2d\xea\xf3\x44\x1f\x61\x89\x5a\x2b\ \xaa\x34\x9f\xc2\x5b\xe8\xb1\xce\x50\xb4\x12\x96\xbc\xe9\x95\x32\ \x9a\x92\xfc\xf0\x4a\xa3\xf6\x7c\xd1\x4d\x48\x65\xf6\xb0\x86\x53\ \x5a\xf0\xd9\x1c\x39\x29\x82\x90\xca\x60\x79\xb5\x92\x2d\xdb\x93\ \xef\xad\xae\x96\x1a\x12\x03\x53\x8a\x22\xf4\x64\xb6\x7c\x5e\x78\ \x53\x2f\x6c\x52\xef\x83\xd5\xe2\x79\x59\x84\xea\x36\x52\x28\xa1\ \x27\xbd\xde\x6c\x79\x7d\x73\x7f\xbf\x5e\x44\x65\xf3\xd5\x62\x7d\ \x7f\x7f\x73\xbd\x9c\xf5\x74\x7b\x5d\x56\xfe\x07\x1e\xb1\xab\xd2\ \x50\x53\x1c\x5d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x9a\xeb\ \xff\ \xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ \x01\x00\x00\xff\xfe\x00\x3b\x43\x52\x45\x41\x54\x4f\x52\x3a\x20\ \x67\x64\x2d\x6a\x70\x65\x67\x20\x76\x31\x2e\x30\x20\x28\x75\x73\ \x69\x6e\x67\x20\x49\x4a\x47\x20\x4a\x50\x45\x47\x20\x76\x36\x32\ \x29\x2c\x20\x71\x75\x61\x6c\x69\x74\x79\x20\x3d\x20\x38\x35\x0a\ \xff\xdb\x00\x43\x00\x05\x03\x04\x04\x04\x03\x05\x04\x04\x04\x05\ \x05\x05\x06\x07\x0c\x08\x07\x07\x07\x07\x0f\x0b\x0b\x09\x0c\x11\ \x0f\x12\x12\x11\x0f\x11\x11\x13\x16\x1c\x17\x13\x14\x1a\x15\x11\ \x11\x18\x21\x18\x1a\x1d\x1d\x1f\x1f\x1f\x13\x17\x22\x24\x22\x1e\ \x24\x1c\x1e\x1f\x1e\xff\xdb\x00\x43\x01\x05\x05\x05\x07\x06\x07\ \x0e\x08\x08\x0e\x1e\x14\x11\x14\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\ \x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\ \x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\ \x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\xff\xc2\x00\x11\x08\x03\ \x84\x07\x94\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\ \x1b\x00\x01\x01\x00\x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x01\x02\x04\x03\x05\x06\x07\xff\xc4\x00\x1a\x01\x01\ \x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x01\x02\x03\x04\x05\x06\xff\xda\x00\x0c\x03\x01\x00\x02\x10\x03\ \x10\x00\x00\x01\xf4\xb2\xcf\x57\xe6\xc0\x00\x0a\x00\xa0\x80\x00\ \x00\x2d\x00\x05\x96\x00\x0a\xa2\x00\x00\x00\x00\x00\x14\x05\x82\ \x80\x00\x16\x0a\x00\x00\x05\x00\x00\x00\x00\x00\x00\x58\x28\x50\ \x16\x50\x00\x00\x00\x14\x00\x2a\x58\x0a\x02\x80\x00\x00\x00\x00\ \x00\x00\x00\x00\x58\x28\x50\x16\x0a\x20\x00\x02\x80\x00\x00\x02\ \x50\xb2\xa5\x50\x80\x16\x52\x54\x2c\xa0\x96\x80\x00\x00\x94\x00\ \x00\x00\x00\x2a\x5a\x00\x05\x82\x89\x41\x00\x05\x00\x00\x2a\x50\ \x00\x00\x00\x05\x82\xca\x00\x00\x0c\x83\x5d\x6c\xb3\x5e\x40\x80\ \x00\x59\x40\xa0\x02\x00\x00\x28\x14\x00\x28\x80\xa5\x94\x08\x00\ \x00\x00\x00\x14\x00\x2a\x50\x00\x00\xa9\x40\x00\x00\x14\x00\x00\ \x00\x00\x00\x01\x65\x01\x40\xa9\x40\x00\x00\x00\x50\x16\x0a\x20\ \x29\x60\xa0\x4a\x00\x00\x00\x00\x00\x00\x00\x01\x65\x50\x00\x58\ \x28\x80\x00\x0a\x00\x00\x00\x05\x04\xa9\x54\x20\x0a\x95\x65\x44\ \xb2\x82\x5a\x00\x00\x02\x50\x00\x00\x00\x00\xa9\x68\x00\x16\x0a\ \x25\x04\x00\x14\x00\x00\xa9\x40\x00\x00\x00\x16\x0a\x09\x50\xa0\ \xc8\x35\xd6\xcb\x35\xe4\x08\x00\x00\x28\x02\x82\x00\x00\x00\xb4\ \x00\x16\x58\x00\x2a\x88\x00\x00\x00\x00\x00\x50\x16\x0a\x00\x00\ \x58\x28\x00\x00\x14\x00\x00\x00\x00\x00\x00\x0a\x00\x55\x82\x80\ \x00\x00\x05\x00\x05\x94\x00\x0a\x94\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\xa9\x54\x00\x2a\x58\x00\x00\x02\x80\x00\x00\x50\x01\x2a\ \x59\x40\x02\xa5\x00\x12\xa8\x00\x00\x00\x94\x00\x00\x00\x00\x2a\ \x5a\x00\x05\x82\x89\x41\x00\x05\x00\x00\x16\x0a\x00\x00\x00\x00\ \x2a\x52\x54\x33\x0d\x75\xb2\xcd\x79\x01\x02\x50\x00\x59\x40\x02\ \x82\x00\x00\x28\x14\x00\x28\x80\xa5\x82\x88\x00\x00\x00\x00\x00\ \x50\x2a\x50\x00\x00\xa9\x40\x00\x00\x14\x00\x00\x00\x00\x00\x01\ \x60\xa1\x40\x59\x40\x00\x00\x00\x50\x00\xa9\x60\x28\x0a\x00\x00\ \x00\x00\x00\x00\x00\x00\x01\x60\xa1\x40\x02\xa5\x80\x00\x00\x28\ \x00\x00\x09\x42\x96\x12\x89\x40\x02\xca\x52\x54\x95\x2a\x80\x00\ \x00\x09\x40\x00\x00\x00\x02\xa5\xa0\x00\x58\x28\x94\x10\x00\x50\ \x00\x01\x60\xa0\x00\x00\x00\x02\xa5\x28\x6b\xae\x96\x6b\xc8\x08\ \x12\x80\x00\x14\x01\x41\x00\x00\x00\x5a\x00\x0b\x28\x10\x15\x52\ \xc0\x00\x00\x00\x00\x02\x80\xb0\x50\x00\x02\xc1\x40\x00\x00\xa0\ \x00\x00\x00\x00\x00\x00\x54\xa0\x28\x15\x28\x00\x00\x00\x0a\x02\ \xc1\x44\x05\x2c\x14\x00\x12\x80\x00\x00\x00\x00\x00\x00\x2c\x14\ \x28\x0b\x05\x10\x00\x12\x94\x00\x00\x00\x12\x85\x8b\x05\x12\x80\ \xb0\x59\x4a\x4a\x92\xa5\x50\x00\x00\x01\x28\x00\x00\x00\x00\x54\ \xb4\x00\x0b\x05\x12\x82\x00\x0a\x00\x00\x2c\x14\x00\x00\x00\x00\ \x64\x1a\xeb\xa5\x9a\xf2\x02\x00\x12\x80\x02\xca\x00\x14\x10\x00\ \x01\x40\xa0\x01\x44\x05\x2c\x14\x40\x00\x00\x00\x00\x02\x80\xb2\ \x80\x00\x02\xca\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x50\xa0\ \x2c\x14\x00\x00\x00\x28\x00\x2c\xa0\x00\x54\xa0\x00\x00\x00\x00\ \x00\x00\x00\x00\x02\xca\xa0\x00\xb0\x51\x00\x00\x14\x00\x00\x00\ \x12\x85\x8b\x0b\x44\x00\xb0\x59\x4a\x4a\x92\xa5\x50\x00\x00\x01\ \x28\x00\x00\x00\x00\x54\xb4\x00\x0b\x05\x12\x82\x00\x0a\x00\x00\ \x2c\x15\x28\x00\x00\x01\x90\x5e\xba\x59\xaf\x28\x20\x01\x28\x00\ \x01\x40\x14\x10\x00\x00\x05\xa0\x00\xb2\x81\x01\x55\x2c\x00\x00\ \x00\x00\x00\x28\x00\x50\x00\x00\x14\x00\x00\x00\x28\x00\x00\x00\ \x00\x00\x02\xca\x02\x81\x52\x80\x00\x00\x00\xa0\x01\x52\x8d\x3d\ \xaf\x94\x3b\x7a\x6d\x4e\x89\x7d\x7f\x44\xee\x3e\x77\xf4\x3c\xf9\ \xa8\xbe\x79\x40\x00\x00\x00\x00\x00\x00\x00\x2a\x55\x00\x05\x94\ \x08\x00\x00\xa0\x00\x00\x00\x94\x2c\x58\x5a\x20\x05\x82\xca\x00\ \x95\x2a\x80\x00\x00\x09\x40\x00\x00\x00\x02\xa2\xa8\x00\x58\x28\ \x94\x10\x00\x01\x40\x00\x0a\x94\x00\x00\x32\x0b\xd7\x4b\x35\xe4\ \x00\x00\x02\x50\x00\x59\x40\x04\xaa\x20\x00\x00\x0b\x40\x02\xa5\ \x80\xa5\x82\x88\x00\x00\x00\x00\x00\x50\x16\x0a\x00\x00\x58\x28\ \x00\x00\x14\x00\x00\x00\x00\x00\x00\x0a\x94\x05\x02\xa5\x00\x00\ \x00\x01\x40\x02\x7c\x9b\xeb\x7f\x30\x7a\xb4\xee\x5f\x52\xc7\xbf\ \x97\x3e\x59\xcb\x1c\x43\xd1\xf2\x40\x00\x00\x00\x00\x00\x00\x00\ \x00\x28\x50\x00\xa9\x60\x00\x12\x80\xa0\x00\x00\x00\x50\x4a\x95\ \x42\x00\x58\x28\x00\x95\x2a\x80\x00\x00\x09\x40\x00\x00\x00\x01\ \x62\xa8\x00\x58\x28\x80\x00\x05\x00\x00\x00\xa8\x28\x00\xc8\x2f\ \x5d\x2e\x3a\xf2\x50\x00\x00\x4a\x00\x00\x54\xa0\x50\x40\x00\x00\ \x14\x0a\x02\xc1\x44\x05\x54\xb0\x00\x00\x00\x00\x00\xa0\x01\x52\ \x80\x00\x05\x4a\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x0b\x05\x0a\ \x02\xc1\x40\x00\x00\x02\x80\x03\xc3\xfb\x8e\x39\xdb\xe5\x5f\x56\ \xeb\x7b\x9e\x3f\x5f\xb1\xea\xf6\xb5\xaf\x8a\x59\x7b\x7c\xf0\x12\ \x80\x00\x00\x00\x00\x00\x00\x00\x58\x28\x50\x00\xa9\x60\x00\x00\ \x0a\x00\x00\x00\x05\x04\xa9\x54\x20\x05\x82\x80\x09\x52\xa8\x00\ \x00\x00\x94\x00\x00\x00\x00\x16\x2a\x80\x00\x2a\x58\x00\x00\x01\ \x40\x00\x05\x82\x83\x20\xbd\x76\x39\x63\xaf\x25\x4a\x00\x00\x01\ \x28\x00\x2c\x14\x01\x41\x00\x00\x00\x5a\x00\x15\x2c\x05\x01\x44\ \x00\x00\x00\x00\x00\x28\x0b\x05\x00\x00\x01\x40\x00\x00\xa0\x00\ \x00\x00\x00\x00\x00\x2c\xa0\x28\x0b\x28\x00\x00\x00\x0a\x03\xcf\ \x7a\x1f\x97\x3d\x1d\xd7\x2f\x97\x8f\x6f\xd7\x1d\x7f\x60\xf9\x60\ \xcd\x4a\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x05\x0a\x00\x15\ \x2c\x00\x00\x01\x40\x00\x00\x00\xa0\x95\x2a\x84\x00\xb0\x50\x01\ \x2a\x55\x00\x00\x00\x12\x80\x00\x00\x00\x02\xc1\x45\x00\x05\x4a\ \x04\x00\x00\x28\x00\x00\xb0\x66\x85\xeb\xf1\xcb\x1d\x79\x16\x0a\ \x00\x00\x09\x40\x00\x0a\x94\x0a\x00\x20\x00\x02\x81\x40\x58\x28\ \x80\xa5\x96\x00\x00\x00\x00\x00\x00\x50\x16\x50\x00\x00\x59\x40\ \x00\x00\x14\x00\x00\x00\x00\x00\x00\x0a\x94\x05\x02\xa5\x00\x00\ \x00\x01\x7a\xcf\x9c\x7a\x2f\x3b\x7d\xe0\xed\xef\xbb\xdf\x2f\xea\ \x27\xce\x07\x30\x2a\x50\x01\x0a\x00\x00\x00\x00\x00\x00\x00\x16\ \x50\x14\x05\x82\x88\x00\x00\x02\x80\x00\x00\x50\x01\x2a\x55\x08\ \x01\x60\xa0\x02\x54\xaa\x00\x00\x00\x25\x00\x00\x00\x00\x05\x82\ \xa5\xa0\x00\x58\x28\x94\x12\x50\x05\x00\x00\x32\x0b\xd7\xe3\x96\ \x3a\xf2\x01\x52\x80\x00\x00\x4a\x00\x0b\x05\x00\x50\x40\x00\x00\ \x16\x80\x05\x4b\x00\x05\x51\x00\x00\x00\x00\x00\x0a\x00\x14\x00\ \x00\x05\x4a\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x50\xa0\x2c\ \x14\x00\x00\x03\x83\x9f\xc9\x3a\x79\x5c\x0b\xf4\x80\xf5\x9e\xbf\ \xc4\x7b\x69\xe0\xa2\x71\x0a\x58\x4a\x14\x09\x40\x00\x00\x00\x00\ \x00\x00\x00\x2a\x55\x00\x05\x82\x88\x00\x01\x2a\x80\x00\x00\x05\ \x00\x12\xa5\x50\x80\x16\x0a\x00\x25\x4a\xa0\x00\x00\x02\x50\x00\ \x00\x00\x00\x02\xa5\xa0\x00\x58\x28\x94\x10\x00\x01\x40\xc8\x2f\ \x5d\x2c\xd7\x90\x05\x82\x80\x00\x02\x01\x40\x02\xa5\x02\x80\x08\ \x00\x00\xa0\x50\x00\xa2\x02\x96\x0a\x20\x00\x00\x00\x00\x01\x40\ \x58\x28\x00\x01\x60\xa0\x00\x00\x50\x00\x00\x00\x00\x00\x00\x16\ \x0a\x14\x05\x82\x80\x00\x31\xf9\x7f\xb0\xf1\x8f\x6f\x13\x73\x4d\ \xe9\x0a\xee\xfd\xff\x00\xcd\xbe\x93\x3c\x4b\x0f\x3d\x10\x14\xb0\ \x50\x00\x4a\x00\x00\x00\x00\x00\x00\x00\x05\x4a\xa0\x00\xb0\x51\ \x00\x01\x29\x40\x00\x00\x00\xa0\x02\x54\xaa\x10\x02\xc1\x40\x04\ \xa9\x54\x00\x00\x00\x4a\x00\x00\x00\x00\x00\x54\xb4\x00\x00\x54\ \xb0\x00\x00\x02\xe4\x17\xae\x96\x6b\xc8\x00\x0b\x28\x00\x00\x04\ \xa0\x00\xb0\x50\x05\x04\x00\x00\x01\x68\x00\x2c\xa0\x40\x55\x4b\ \x00\x00\x00\x00\x00\x0a\x00\x15\x28\x00\x00\x2c\xa0\x00\x00\x0a\ \x00\x00\x00\x00\x00\x00\x05\x4a\x02\x81\x52\x80\x01\xe0\xb6\x3b\ \x4f\x32\xf7\x61\xd7\xf6\x9d\x5b\xb0\x5d\x72\xfd\x5b\xe4\x7f\x58\ \x79\x33\x13\xcb\x52\x80\x01\x52\xa0\x2a\x50\x4a\x00\x00\x00\x00\ \x00\x00\x00\x05\x4a\xa0\x00\xb0\x51\x00\x00\x14\x00\x00\x00\x0a\ \x00\x25\x4a\xa1\x00\x2c\x14\x04\xa4\xa9\x54\x00\x00\x00\x4a\x00\ \x00\x00\x00\x00\x2c\x55\x00\x00\x54\xa0\x40\x00\x64\x1a\xeb\xa5\ \x9a\xf2\x00\x00\x14\x00\x00\x00\x4a\x00\x0b\x28\x14\x00\x40\x00\ \x05\x02\x80\x05\x4b\x01\x40\x51\x00\x00\x00\x00\x00\x0a\x00\x14\ \x00\x00\x05\x4a\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x54\xa0\ \x28\x15\x28\x06\x1f\x2f\xfa\x9f\x8e\x7a\x7a\x1d\x4a\xbe\xd8\x09\ \xf5\x2f\x97\x7d\x35\xe6\xdd\x13\xc6\x05\x4a\x00\x05\x4a\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x01\x52\xa8\x00\x2c\x14\x40\x00\x05\ \x00\x00\x00\x02\x80\x09\x52\xa8\x40\x0b\x05\x94\xa4\xa9\x2a\x55\ \x00\x00\x00\x0a\x10\x00\x00\x00\x00\x0b\x05\x14\x00\x0b\x05\x12\ \x82\x64\x17\xae\x96\x6b\xca\x08\x0a\x02\xca\x00\x00\x01\x28\x00\ \x01\x40\x14\x10\x00\x00\x05\x02\x80\xb0\x51\x01\x4b\x2c\x00\x00\ \x00\x00\x00\x00\xa0\x2c\x14\x00\x00\xb0\x50\x00\x00\x28\x00\x00\ \x00\x00\x00\x00\x0b\x05\x0a\x02\xc1\x40\xd2\xdd\x2f\xc9\xe7\x71\ \xd3\xdf\xa9\x16\x4a\xfa\x5f\xcc\xfe\x9f\x7c\xdb\x82\x78\xc0\x02\ \x88\x0a\x02\xa5\x00\x10\xa0\x00\x00\x00\x00\x00\x00\x01\x60\xa1\ \x40\x02\xa5\x80\x00\x00\x28\x00\x00\x00\x14\x00\x4a\x95\x42\x00\ \x58\x2c\xa5\x25\x49\x52\xa8\x00\x00\x00\x50\x80\x00\x00\x00\x00\ \x02\xa5\xa0\x00\x58\x2a\x58\xc8\x35\xd7\x4b\x35\xe4\x04\x05\x00\ \x0a\x00\x00\x00\x25\x00\x05\x82\x80\x28\x20\x00\x00\x0b\x40\x01\ \x65\x80\x02\xaa\x58\x00\x00\x00\x00\x00\x50\x00\xa9\x40\x00\x01\ \x65\x00\x00\x02\x55\x00\x00\x00\x00\x00\x00\x01\x60\xa1\x40\x58\ \x28\x3c\xf7\x87\xf6\x1e\x41\xf4\x24\xb2\xf6\x9f\x54\xf9\x6f\xd5\ \xe7\x97\x20\xf2\x00\x02\xc1\x44\x05\x2c\x25\x0a\x04\xa0\x00\x00\ \x00\x00\x00\x00\x00\x0b\x05\x0a\x00\x15\x2c\x00\x00\x01\x40\x00\ \x00\x00\xa0\x02\x54\xaa\x10\x02\xc1\x65\x29\x2a\x25\x04\xb4\x00\ \x00\x00\x12\x80\x00\x00\x00\x00\x15\x15\x40\x00\x19\xa2\x5e\xbe\ \x59\xaf\x28\x22\x50\x0a\x02\xc1\x40\x00\x01\x28\x00\x01\x52\x81\ \x40\x04\x00\x00\x50\x28\x00\x51\x01\x4b\x05\x10\x00\x00\x00\x00\ \x00\xa0\x01\x40\x00\x00\x54\xa0\x00\x00\x0a\x00\x00\x00\x00\x00\ \x00\x05\x4a\x02\x81\x52\x9e\x43\xa3\xfa\x5f\x9c\x7a\xbc\x4c\xb8\ \xdf\x67\xa7\xf6\x9c\x5c\xb3\xe6\x83\x98\x28\x00\x2c\x14\x40\x52\ \xc1\x40\x04\xa0\x00\x00\x00\x00\x00\x00\x00\x0b\x05\x0a\x00\x15\ \x2c\x00\x00\x01\x40\x00\x00\x00\x02\x82\x54\x2d\x10\x02\xc1\x52\ \x82\x16\x50\x4b\x40\x00\x00\x01\x28\x00\x00\x00\x00\x00\xb0\x54\ \xb4\x06\x41\x7a\xf9\x65\xf2\x82\x00\x00\x28\x15\x28\x00\x00\x04\ \xa0\x00\xb0\x50\x05\x04\x00\x00\x01\x68\x00\x2c\x14\x40\x52\xcb\ \x00\x00\x00\x00\x00\x00\x28\x0b\x05\x00\x00\x2c\x14\x00\x00\x21\ \x42\x80\x00\x00\x00\x00\x00\x01\x52\x80\xa0\x5f\x39\xe8\xbc\xe3\ \xaf\x8b\xc7\x2c\x6f\xd1\xfa\xaf\x2f\x17\x2c\xf9\x40\x80\x02\x80\ \x05\x4a\x00\x02\xc1\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\ \x50\xa0\x01\x52\xc0\x00\x00\x14\x00\x00\x00\x00\x4a\x16\x2c\x2d\ \x10\x00\x15\x2a\xca\x89\x65\x04\x55\x00\x00\x00\x0a\x10\x00\x00\ \x00\x00\x00\x54\xb5\x90\x5e\xbe\x5c\x6f\x96\x84\x00\x00\x50\x16\ \x0a\x00\x00\x08\x05\x00\x05\x94\x0a\x00\x20\x00\x00\x0b\x40\x02\ \xa5\x80\x02\xaa\x58\x00\x00\x00\x00\x00\x50\x00\xa9\x40\x00\x01\ \x60\xa0\x00\x00\x50\x00\x00\x00\x00\x00\x00\x16\x0a\x14\x07\x9c\ \xf4\x7e\x71\xd3\xc5\xe3\x94\x7d\x2f\xaa\xf2\x71\xf2\x3e\x48\x00\ \x00\x0a\x00\x15\x28\x00\x15\x2a\x02\xa5\x04\xa0\x00\x00\x00\x00\ \x00\x00\x00\x2c\x14\x28\x00\x54\xb0\x00\x00\x05\x00\x00\x00\x00\ \x12\x85\x8b\x0b\x44\x00\x05\x4a\x4a\x00\x4a\x95\x40\x00\x00\x00\ \x12\x80\x00\x00\x00\x00\x19\x05\xd0\xc7\x2c\x75\xe5\xa9\x50\x00\ \x04\x28\x50\x2a\x50\x00\x00\x09\x40\x00\x0a\x00\xa0\x80\x00\x00\ \x28\x14\x00\x28\x80\xa5\x82\x88\x00\x00\x00\x00\x00\x50\x00\xa0\ \x00\x00\x2a\x50\x00\x12\x80\x50\x00\x00\x00\x00\x00\x00\x16\x0a\ \x15\xe7\x7d\x17\x9d\x74\xf1\x78\xf2\x71\xbe\x97\xd5\x79\x30\xcd\ \xf2\x40\x00\x00\x01\x40\x02\xa5\x00\x04\xa9\x54\x04\xa0\x94\x00\ \x00\x00\x00\x00\x00\x00\x05\x82\x85\x00\x0a\x96\x00\x00\x09\x52\ \xa8\x00\x00\x00\x02\x50\xb1\x60\xa2\x50\x00\x58\x2c\xa5\x25\x49\ \x52\xaa\x50\x00\x00\x00\x25\x00\x00\x00\x00\x0c\x82\xe8\x63\x96\ \x3a\xf2\x82\x50\x00\x00\x28\x00\x50\x00\x00\x01\x28\x00\x2c\x14\ \x01\x41\x00\x00\x00\x5a\x00\x0b\x05\x10\x15\x52\xc0\x00\x00\x00\ \x00\x00\x0a\x02\xc1\x40\x00\x00\x50\x00\x00\x00\xa0\x00\x00\x00\ \x00\x00\x00\x2c\xa3\xce\xfa\x2f\x3a\xeb\xe4\xb5\xf7\x35\x1f\x4b\ \xea\x99\xe1\x93\xe4\xd0\x00\x00\x00\x02\x80\x05\x4b\x01\x40\x54\ \xa0\x09\x41\x28\x00\x00\x00\x00\x00\x00\x00\x0b\x05\x0a\x00\x15\ \x05\x10\x00\x01\x40\x00\x00\x00\x04\xa1\x40\x95\x2a\x84\x00\xb0\ \x59\x4a\x08\x94\x12\xd0\x00\x00\x00\x28\x40\x00\x00\x06\x41\x74\ \x31\xcb\x1d\x79\x41\x16\x50\x00\x00\x05\x01\x65\x00\x00\x00\x94\ \x00\x00\xa9\x40\xa0\x02\x00\x00\x28\x14\x00\x2a\x58\x00\x2a\xa5\ \x80\x00\x00\x00\x00\x00\x14\x05\x94\x00\x00\x16\x0a\x00\x00\x00\ \x14\x00\x00\x00\x00\x00\x00\x0b\xe7\x7d\x07\x9a\x76\xf3\xfa\x1b\ \xba\x6f\xa1\xf5\x3c\x7c\xbf\x16\xfc\x9e\x8b\x57\xa7\x5e\x9d\x8e\ \xd7\x4a\x6b\xd3\xec\xf8\xfe\x49\xc7\xd6\xbc\xf6\xee\x79\x76\x8e\ \x0e\x79\xcc\x00\x00\x58\x28\x80\xa0\x2a\x50\x04\xa0\x94\x00\x00\ \x00\x00\x00\x00\x00\x05\x82\x85\x00\x05\x82\x88\x00\x00\x02\x80\ \x00\x00\x02\x50\xa0\x4a\x95\x42\x00\x02\xa5\x59\x51\x2c\xa0\x4a\ \xa0\x00\x00\x00\x09\x40\x00\x0c\x82\xe8\x63\x96\x3a\xf2\x82\x01\ \x52\x80\x01\x28\xa0\x01\x52\x80\x00\x00\x4a\x00\x0b\x05\x00\x50\ \x40\x00\x00\x14\x0a\x00\x14\x40\x52\xc1\x44\x00\x00\x00\x00\x00\ \x28\x00\x54\xa0\x00\x00\xb2\x80\x00\x00\x28\x00\x00\x00\xc4\xc9\ \xa3\xa9\x7a\x77\x37\xcc\xea\x5e\x9e\xab\x4f\xce\x5b\xd7\xb7\xd4\ \xd3\x5e\xb9\x69\xed\xe9\xcd\xea\x6b\x6d\x6b\x67\x5e\x85\x1d\x33\ \x6c\x15\x29\x50\x5b\x8d\x2f\x2f\x0d\x4e\xcb\x77\xa0\x4e\x7e\xaf\ \x97\xc8\x73\xce\x5e\xa1\xd2\x6e\x67\x96\xfb\x0c\xe7\x35\x82\x88\ \x0a\x02\xa5\x00\x4a\x09\x40\x00\x00\x00\x00\x00\x00\x00\x58\x28\ \x50\x00\x58\x28\x80\x00\x00\x28\x00\x00\x00\x14\x00\x45\x85\xa2\ \x00\x02\xa5\x00\x25\x25\x4a\xa0\x00\x00\x00\x09\x40\x03\x20\xba\ \x18\xe5\x8e\xbc\xa0\x80\x2c\x14\x00\x00\x0a\x02\xc1\x40\x00\x00\ \x04\xa0\x00\xb2\x80\x05\x04\x00\x00\x01\x68\x00\x2c\x14\x40\x52\ \xcb\x00\x00\x00\x00\x00\x00\x28\x00\x50\x00\x00\x15\x28\x00\x00\ \x1c\x7a\x4d\xf6\x2e\x8b\x4e\xf4\xf5\x1a\xfe\x4f\x0b\xd7\xd1\xe9\ \xf5\x0b\xd3\x6f\x5a\x2f\x4a\x95\xa5\x82\xa5\x00\xba\x9b\x5a\xb1\ \xaf\xab\xb7\xab\x9d\x77\xc8\xe9\x9a\x96\x2a\x2a\xd8\x2a\x51\x60\ \xa9\x4a\x83\x24\x17\x6b\x54\x9d\xb6\xe7\x9d\xb3\x97\xad\xcb\xc8\ \xed\xe7\x97\xa3\x75\x1b\x93\x96\xda\x59\x80\x28\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x58\x2a\x55\x00\x05\x82\x88\x00\x00\x09\ \x68\x00\x00\x00\x00\x94\x2c\x58\x28\x94\x00\x16\x0b\x29\x41\x12\ \x82\x5a\x00\x00\x00\x00\x25\xc8\x2e\x86\x39\x63\xaf\x28\x20\x00\ \x54\xa0\x00\x00\x0a\x02\xca\x00\x00\x01\x28\x00\x01\x52\x81\x40\ \x04\x00\x00\x50\x28\x00\x54\xb0\x00\x55\x4b\x00\x00\x00\x00\x00\ \x00\x28\x0b\x05\x00\x03\x85\x79\x9d\x66\x95\xe9\xe8\x67\x92\xd4\ \xbd\x7d\x6e\x97\x9d\x5e\x9d\xb6\x96\xb5\xbd\x56\x1a\xa0\x02\xa0\ \xa0\xa8\x28\x2a\x0a\x16\xea\xec\xeb\x47\x0e\xae\xde\xb6\x75\xdc\ \x93\xa6\x6d\x88\xa8\x32\x41\x92\x2a\xa5\x2a\x0a\x0a\x83\x24\x16\ \xc1\x6e\x34\xa9\x4c\xb7\x34\x4c\xf7\x5b\x9e\x65\x9e\x5e\xbe\xf9\ \x3d\xc9\xcb\xd0\x3a\xbd\xd9\xcb\x9d\x2c\xc8\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x15\x2a\x80\x02\xc1\x44\x00\x00\x01\x40\x00\x00\ \x00\x04\xa1\x40\x95\x2a\x84\x00\xb0\x54\xab\x2a\x25\x04\xa9\x54\ \x00\x00\x00\x19\x09\xad\x0c\x72\xc7\x5e\x50\x40\x00\x02\x80\x00\ \x01\x40\x02\x80\x00\x00\x09\x40\x01\x60\xa0\x0a\x08\x00\x00\x02\ \x81\x40\x02\x88\x0a\x58\x28\x80\x00\x00\x00\x00\x05\x35\xf4\xae\ \xfb\x57\x9c\xd3\x74\xf5\xda\x7e\x46\x5e\xbe\x8b\x4b\xab\x5e\xbc\ \xfc\x03\x74\x5a\x02\xc1\x40\xb0\x54\xa5\x41\x52\x80\x54\x15\x28\ \xb0\x54\xa5\xd6\xd8\xd7\x97\x8f\x5b\x3e\x2c\x6b\xb9\x75\x3c\xdb\ \x9d\x83\x8b\x96\xc5\x42\xdc\x69\x50\x64\x82\xd8\x2a\x5a\xa8\x28\ \x2a\x0b\x60\xb7\x1a\x54\x19\x20\xa0\x03\x9b\x73\xad\x4c\x77\xdb\ \xbe\x51\x39\x7a\xfb\xe5\xf7\x27\x3e\xf1\xa1\xb9\x9e\x59\x86\x40\ \x00\x00\x00\x00\x00\x00\x02\xa5\x50\x00\x02\xa5\x80\x00\x00\x4a\ \xa0\x00\x00\x00\x09\x42\x81\x2a\x16\x88\x00\x0a\x82\xca\x09\x48\ \xa0\x96\x80\x00\x0c\x84\xba\x18\xd9\xaf\x30\x20\x00\x00\xb2\x80\ \x00\x94\x02\x80\xb0\x50\x00\x00\x40\x28\x00\x2c\xa0\x01\x41\x00\ \x00\x00\x5a\x00\x0b\x05\x10\x14\xb0\x51\x00\x13\x55\x76\xdd\x36\ \x95\xeb\xe9\xb0\xf1\xda\xb7\xaf\xae\xd1\xf3\xe7\x4e\xcf\x4b\x86\ \xde\xa0\xd2\xc1\x52\x96\x05\x00\x15\x05\x4b\x40\x01\x52\x8b\x05\ \x41\x6c\x15\x28\x02\xce\x35\xe5\x68\xeb\xc6\xf6\xae\x3b\x32\xea\ \x73\xef\x64\x6b\x6c\x9a\x95\x28\xb0\x54\xa2\xc1\x52\x95\x05\xb0\ \x5b\x8d\xaa\x83\x24\x15\x28\xb0\x5b\x8d\x2a\x52\xa0\xc9\x05\x4a\ \x00\x00\x1b\x5b\xbd\x42\x63\xd1\xed\xf9\x1b\x39\x7a\xf7\x9b\xdd\ \x9c\xbb\x76\xae\xd6\x79\x02\x00\x00\x00\x00\x00\x15\x2a\x80\x00\ \x15\x2c\x00\x00\x00\x05\x00\x00\x00\x02\x80\x08\xb0\xb4\x40\x00\ \x2c\x15\x28\x21\x65\x12\xa5\x50\x01\x90\x97\xaf\x96\x6b\xcc\x08\ \x00\x00\x01\x52\x80\x00\x00\x28\x15\x28\x00\x00\x04\xa0\x00\x05\ \x4a\x05\x00\x10\x00\x00\x05\xa0\x01\x51\x15\xa5\xa3\x7a\x77\x6f\ \x2d\xa5\x7a\x7b\x2d\x1f\x25\x5d\x7b\xed\x1e\xbd\x7a\x67\x80\xe9\ \x52\x80\x02\x80\xb0\x54\x14\x0b\x05\x41\x6c\x15\x28\x02\xc1\x52\ \xd0\x0b\x05\x41\x41\x5c\x5a\xf2\xee\x70\x69\xd8\xcf\x8b\x6b\x65\ \x74\xf6\x79\x96\x05\x95\x05\x05\x41\x6c\x15\x2a\xac\x15\x28\xb2\ \x84\x19\x20\xa9\x4a\x83\x24\x55\xb0\x54\xa2\xc1\x52\x95\x06\x48\ \x2d\xc6\x95\x28\x00\x00\x00\xcb\x12\x6f\xee\x74\x89\x8f\x51\xb1\ \xe3\xf9\x27\x2f\x58\xe8\x37\x73\xcb\xb2\x70\xf3\x4e\x60\x80\x00\ \x00\x15\x0b\x40\x00\x15\x28\x10\x00\x00\x05\x00\x00\x00\x00\x12\ \x85\x02\x54\xaa\x10\x00\x15\x28\x01\x29\x14\x12\xd6\x42\x5e\xbf\ \x1c\xb1\xd7\x9a\xa5\x40\x00\x00\x05\x82\x80\x00\x01\x40\x02\x80\ \x00\x00\x09\x40\x01\x60\xa0\x0a\x08\x00\x00\x02\x81\x5d\x5f\x69\ \xe0\x5d\xb6\x35\x78\x9a\xf7\x72\xe5\xc0\x5e\x77\x16\x46\x69\x40\ \x5a\x84\xa0\x58\x2a\x50\x00\x50\x00\xa8\x28\x00\xa8\x2d\x81\x65\ \x00\x58\x2a\x61\x5c\x93\x57\x82\x5d\xbd\x7c\x79\xe3\x5b\x9b\x6f\ \x2a\xe2\xe6\x96\xca\x82\xa5\x2a\x0a\x00\x2a\x0a\x0a\x82\x82\xa0\ \xa1\x6a\x0a\x0a\x82\xd8\x2a\x52\xa0\xc9\x15\x52\x95\x05\x05\x41\ \x92\x0b\x60\xb7\x1a\x54\x14\x00\x00\x00\x00\x39\xb8\x49\xd9\xee\ \xf9\xf4\xe7\xeb\x39\x3c\x7e\xce\x79\x7a\x77\x4b\xb9\x39\x6f\x31\ \xca\x60\x10\x05\x82\x85\x00\x0a\x82\x88\x00\x00\x02\x80\x00\x00\ \x00\x09\x42\x81\x16\x16\x88\x00\x05\x82\xa5\x04\x28\x32\x42\xe8\ \x63\x96\x3a\xf3\x2c\x25\x00\x00\x00\x02\xca\x00\x00\x00\xa0\x2c\ \x14\x00\x00\x10\x0a\x00\x0b\x05\x00\x50\x40\x00\x00\x15\xd7\xf8\ \xaf\x4b\xe6\xaf\xbc\x2f\x70\x00\x58\x33\xcb\x88\x73\x5e\x0a\x73\ \x38\xf2\x33\x41\x40\x05\x41\x40\x0a\x00\x15\x05\x4a\x01\x50\x57\ \x1f\x09\xb5\xc1\xac\x97\x2c\x36\x39\xcd\x4d\x8e\x65\x2c\x59\x40\ \x02\xc1\x52\x8b\x05\x4a\x54\x15\x28\x02\xc1\x52\x8b\x05\x4a\x54\ \x14\x2d\x41\x41\x48\x54\xa5\x41\x6c\x16\xe3\x4a\x96\xaa\x0a\x0a\ \x82\xd8\x2d\xc6\x95\x06\x48\x28\x00\x00\x00\x00\x00\x0b\xb5\xa8\ \x4e\xe3\x73\xcd\xb3\xcb\xd7\xdf\x21\xb9\x39\x7a\x37\x53\xbb\x39\ \xec\xd8\x9c\xe8\x50\x00\x58\x2a\x58\x00\x00\x02\x80\x00\x00\x00\ \x00\x25\x0b\x00\xa9\x54\x20\x00\x2a\x0b\x28\xaa\x5e\xbf\x1c\xb1\ \xd7\x98\x11\x65\x00\x00\x00\x00\xa9\x40\x00\x00\x14\x0a\x94\x00\ \x00\x02\x50\x00\x02\xa5\x02\x80\x08\x00\x00\x3c\xa7\x4b\xd9\x75\ \xba\xfa\x61\x76\x00\x00\x00\x00\x0b\x06\x79\x71\x0e\x7b\xaf\x91\ \xcc\xe3\xc8\xc9\x29\x50\x50\x02\x80\x30\x33\x6b\x71\x1b\x3c\x18\ \xf3\x4b\xc1\xc9\xb3\x99\xc3\xcc\x59\x52\x96\x05\x4a\x00\xb0\x54\ \xb4\x00\x15\x05\xb0\x54\x16\xc1\x52\x80\x2c\x15\x28\xb0\x54\x16\ \xc1\x52\xaa\xc1\x52\x8b\x05\x4a\x54\x55\xb1\x15\x2d\x54\x16\xc1\ \x52\x8b\x05\xb8\xd2\xa5\x2a\x0c\x90\x54\xa0\x00\x00\x00\x00\x00\ \x00\x19\xee\xf5\xe6\x7b\xcd\xdf\x2c\xcf\x2f\x62\xf2\x7b\xb3\x9f\ \x7e\xeb\x77\x67\x2e\x51\x32\x05\x4b\x00\x00\x00\x01\x40\x00\x00\ \x00\x04\xa1\x40\x8b\x0b\x44\x00\x02\xc1\x9a\x1a\xd0\xc7\x2c\x75\ \xe5\x04\x02\x80\x00\x00\x01\x60\xa0\x00\x00\x50\x00\xa0\x00\x00\ \x02\x50\x00\x02\x80\x28\x00\x80\x00\xf0\xda\x7b\x3a\xda\xfa\xa1\ \x68\x00\x00\x00\x00\x00\x00\x00\x32\xc4\x72\x65\xc2\x36\x1c\x19\ \x1c\xb7\x8f\x88\xd8\xe2\xe0\x4b\x71\xe5\xe5\x5d\x7e\x6e\x65\x92\ \x82\xc1\x50\x50\x2c\x15\x05\xb0\x54\xa0\x0b\x15\x52\x80\x01\x50\ \x50\x54\x14\x15\x05\x00\x15\x05\x05\x41\x6c\x15\x05\xb0\xb5\x28\ \x28\x41\x6c\x55\x4b\x15\x06\x48\xab\x60\xa9\x45\x82\xa0\xc9\x06\ \x48\x2d\xc6\x95\x28\x00\x00\x00\x00\x00\x00\x01\x31\x33\x71\xd3\ \x6b\x77\x4f\x76\x71\xed\xf9\x78\xb9\x79\xf9\x01\x2a\x0a\x20\x00\ \x00\x0a\x00\x00\x00\x00\x14\x20\x2c\x02\xa5\x50\x80\x32\x0b\xa1\ \x8e\x58\xeb\xca\x00\x0b\x05\x00\x00\x00\x02\xca\x00\x00\x00\xa0\ \x2c\x14\x00\x00\x00\x4a\x00\x0b\x05\x00\x50\x40\x00\x78\x2d\x7d\ \x9d\x6d\x7d\x50\xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x26\ \x78\x8e\x6c\xb5\xc6\xcb\x5f\x33\x95\x86\x45\x0a\x00\x15\x05\x00\ \x15\x05\xb0\x2c\x14\x00\x54\x55\x00\x0b\x05\x4a\x54\x15\x29\x50\ \x50\x01\x50\x50\x54\x16\xe3\x4a\x82\x85\xa8\x28\x2a\x0b\x71\xa5\ \x4a\x54\x16\xc5\x54\xa5\x41\x41\x50\x64\x82\xd8\x2d\xc6\x95\x05\ \x00\x03\x03\x37\x07\x1a\x6d\xce\x0e\xd7\x37\xae\xc7\xd5\x76\xd8\ \xd7\xcf\x37\x3e\x9d\xcf\xcf\x7e\x03\xb7\xf5\x17\x9e\xbc\x66\xd6\ \x58\xfa\x3e\x3d\x43\x34\x28\x00\x2c\x15\x2c\x00\x00\x12\x80\x50\ \x00\x00\x00\x01\x28\x50\x22\xc2\xd1\x19\x05\xd0\xc7\x2c\x75\xe5\ \x00\x00\x2a\x50\x00\x00\x00\x0a\x94\x00\x00\x01\x40\xa9\x40\x00\ \x00\x25\x00\x00\x2a\x50\x28\x00\x80\x3c\x36\x9f\x63\xd7\x6b\xea\ \x05\xd0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\ \x97\x18\xe6\xcb\x82\x1b\x2e\x1c\x8e\x46\x39\x28\x0b\x05\x4a\x01\ \x50\x54\xa5\x41\x40\x05\x45\x50\x01\x50\x54\xa2\xc1\x52\x8b\x05\ \x4a\x00\xb0\x54\xa2\xc1\x52\x95\x05\x4a\xb5\x05\x02\xc1\x52\x95\ \x05\xb0\x5b\x8d\xaa\x94\xa8\x28\x2a\x0b\x78\x78\xd3\x6a\xf5\xfc\ \xf1\xcf\xc7\xd9\xf7\x38\xd7\x8f\xe3\xfa\x5f\x6f\xcf\x5f\x2d\xed\ \xfd\xfb\x9e\xfc\xbf\x71\xd8\x31\xaa\x33\x40\x01\x48\xf3\x18\xe5\ \x8f\xb7\xe2\x02\x2c\x15\x2a\x80\x02\xc1\x52\xc0\x00\x00\x94\x05\ \x00\x00\x00\x00\x00\x4a\x14\x09\x9a\x26\xb4\x71\xcb\x1d\x79\x40\ \x00\x00\x28\x00\x00\x00\x16\x0a\x00\x00\x05\x00\x0a\x94\x00\x00\ \x02\x50\x00\x02\xa5\x02\x80\x08\xf2\x5d\x3f\xa2\xf3\xba\xfa\x41\ \x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\ \x05\x08\x06\x59\x71\x97\x9b\x2d\x6a\x6c\x38\x73\x33\xb8\xd5\xa9\ \x40\x16\x0a\x94\xa8\x2a\x50\x05\x8a\xa9\x40\x00\xa8\x2d\x82\xa0\ \xb6\x0a\x94\x01\x60\xa9\x45\x82\xa0\xb6\x0a\x95\x56\x0b\x71\xa2\ \xc1\x52\x95\x8e\x07\x2d\xd5\xe2\x4d\xfc\x5d\xb6\x6f\x4b\xc5\xed\ \xfb\x9e\x7a\xf9\x7f\x67\xf5\x1b\x8d\xf8\x4e\xe3\xd1\xb9\xeb\x57\ \x77\x1b\x8d\x00\xa0\x00\xa0\x00\x01\x44\x79\x8c\x72\xc7\xdb\xf1\ \x01\x00\x02\xa5\x50\x00\x01\x60\xa2\x00\x00\x09\x4a\x00\x00\x00\ \x00\x00\x94\x2b\x21\x2e\x8e\x39\x63\xaf\x28\x20\x28\x00\x2c\x14\ \x00\x00\x00\x0b\x28\x00\x09\x40\x28\x0b\x05\x00\x00\x00\x12\x80\ \x02\xc1\x40\x14\x11\xd4\x79\x1f\x7f\xe0\x35\xed\x0b\xe9\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x28\x40\ \x00\x02\x65\x06\x79\x71\x17\x62\xea\xe4\x6c\x38\x73\x33\x0a\xb0\ \x54\x16\xc1\x52\x84\xa2\xc5\x54\xb0\x14\xb0\x54\x14\x15\x05\x05\ \x41\x40\x05\x41\x41\x50\x5b\xc3\xc6\x6d\x34\xfb\x18\xe0\xe3\xf4\ \x3d\xc6\x35\xe0\xb3\xfa\x97\x61\x8d\x7c\xcb\xb8\xf6\xae\x7a\xe8\ \xbb\x8e\x66\x37\x44\xab\x2c\x00\xb2\x94\x02\x80\x00\xa0\x00\x0b\ \x2c\x01\xe6\x31\xcb\x1f\x6f\xc4\x04\x00\x00\x16\x0a\x14\x00\x16\ \x0a\x20\x00\x00\x4a\x02\x80\x00\x00\x00\x03\x21\x35\xa3\x8e\x58\ \xeb\xca\x08\x0a\x00\x00\x54\xa0\x00\x00\x00\x15\x28\x00\x02\x14\ \x28\x0b\x28\x00\x00\x04\x02\x80\x02\xc1\x40\x95\x4f\x17\xed\x3a\ \xf7\x6f\x14\xcb\x1d\x7d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x16\x0a\x10\x00\x00\x00\x00\x26\x78\x8e\ \x4c\xf5\xea\xec\xb5\xb2\x39\xdc\x79\x2e\x68\x2d\x82\xa0\xa0\x02\ \xa0\xa2\x80\xa8\x2a\x52\xa0\xac\x70\x39\x9a\xd4\xd8\xc3\x7b\xb5\ \xc5\xf3\x3c\x7f\x41\xed\xf1\xaf\x98\x76\xbf\x45\x63\x5e\x47\xb7\ \xed\xee\x37\x32\x33\x54\x55\x0a\x58\x14\x02\x88\x01\x94\xa0\x0b\ \x28\x00\xa0\x00\x01\x44\x01\xe6\x31\xcb\x1f\x6f\xc4\x04\x00\x00\ \x00\x58\x2a\x55\x00\x00\x2a\x0a\x20\x00\x00\x94\x02\x80\x00\x00\ \x32\x13\x5a\x38\xe5\x8e\xbc\xa0\x80\x02\x80\x00\x14\x00\x00\x00\ \x0b\x05\x00\x00\x02\x80\x05\x4a\x00\x00\x01\x28\x00\x01\x53\x03\ \x92\x70\x60\xbc\xdc\x78\x97\x1d\x1d\xf3\x5d\x16\x87\xac\x3a\xf8\ \x67\xb7\xd0\xbd\x7c\xbb\xb9\xd0\xbd\x75\x45\xd8\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\x14\x20\x00\x00\x00\x00\ \x25\x04\xa0\x0c\xf0\x2f\x2e\x7a\xe3\x69\xad\x99\xcc\xe3\xcd\x72\ \x41\x48\x53\x13\x37\x16\x06\xc3\x1e\xca\x3a\xcc\x7d\x57\x69\x9d\ \x7c\xfb\x77\xe9\x5c\xb8\xd7\x84\xed\xbd\x2d\xc6\xba\xfe\xca\x5c\ \xe9\x65\x96\xd9\x4b\x49\x68\x29\x45\x94\x59\x61\x41\x65\x05\x80\ \x05\x14\x00\xa0\x01\x65\x00\x00\x58\x00\x0f\x31\x8e\x58\xfb\x7e\ \x20\x20\x00\x00\x00\x00\x54\x2d\x00\x00\x2c\x14\x40\x00\x00\x00\ \x50\x00\x01\x90\x9a\xd1\xc7\x2c\x75\xe5\x04\x00\x00\x50\x00\x58\ \x28\x00\x00\x00\x16\x0a\x00\x00\x25\x50\x00\xa0\x00\x00\x04\x96\ \xb8\xf8\xce\x6e\x3e\x32\xd8\x28\x00\x01\x28\x45\x2c\x58\x71\x68\ \x76\x86\xbc\xe6\x87\xb2\xb7\xaf\x85\x7b\x2d\x07\x5f\x38\xed\x34\ \x2f\x5e\x21\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\ \x14\x20\x00\x00\x00\x00\x25\x04\xa0\x00\x02\x82\x65\x97\x1f\x2a\ \xa7\xbf\xec\xb9\xf4\xf9\xf7\x65\xec\x6e\x75\xd1\x76\x9b\x57\x1a\ \xc9\x2e\x6d\xb2\xad\xb2\x94\xb0\xa1\x6c\xa3\x29\x4b\x65\x95\x65\ \x16\x51\x42\x96\x00\xa0\xa2\x00\x55\x00\x59\x40\x00\xa0\x00\x05\ \x20\x00\x3c\xc6\x39\x63\xed\xf8\x80\x80\x00\x00\x00\x00\x02\xc1\ \x52\xa8\x00\x00\xb0\x51\x00\x00\x00\x01\x40\x64\x26\xb4\x71\xcb\ \x1d\x79\x41\x00\x00\x14\x00\x00\x59\x40\x00\x00\x00\x2a\x50\x00\ \x00\x05\x01\x60\xa0\x31\xe3\x39\x71\xe1\x2e\x58\x92\x82\xa5\x11\ \x44\xb2\x80\x45\x11\x60\x0a\x00\x09\x40\x11\x51\xa9\xa1\xdd\x4b\ \xbf\x2f\xa3\xed\x97\xaf\x86\x7a\xdd\x0b\xd7\xa1\x6f\xe8\xba\xc1\ \x68\x00\x00\x00\x00\x00\x00\x00\x00\x02\xc1\x42\x00\x00\x00\x00\ \x02\x50\x4a\x00\x00\x2b\xd2\xf9\x9f\x73\x8d\x77\xb5\x78\xf7\xb6\ \x74\xf3\x7d\xd7\x0f\x89\xd7\xf3\x7d\x9f\x67\xd9\xfc\xef\x6d\xaf\ \x76\xe0\xd8\xf4\x7c\x36\x52\xa2\x91\x6c\xa2\xa9\x6c\xb0\xa2\xd0\ \x50\x52\xc2\xca\x2c\xa0\xa0\x40\x16\x80\x0a\x40\x52\xca\x00\x00\ \x14\x40\x0b\xc1\xd6\x69\xe7\xb6\xfc\xa6\x3e\xef\x9f\xec\xde\x53\ \x76\x72\xef\x9c\x5c\xb9\xe2\x08\x00\x00\x00\x00\x00\x54\x2d\x00\ \x00\x01\x52\xc0\x00\x00\x00\x19\x06\xb4\x71\xcb\x1d\x79\x41\x00\ \x00\x00\x50\x00\x02\xa5\x00\x00\x00\x00\xa0\x00\x01\x0a\x60\xb9\ \xce\x3c\x57\x3c\x12\x14\x54\xa2\x28\x80\x29\x60\x00\x00\x00\x00\ \x05\x94\x22\x88\xb0\x08\x00\x08\xaa\x63\x91\x7a\xfd\x0e\xfc\xe9\ \xe4\x74\xfd\xd7\x1d\xe9\xe2\x5e\xa3\xaf\xbd\x7a\x76\xce\xb3\xa0\ \x5a\x00\x00\x00\x00\x00\x00\x02\xc1\x42\x00\x00\x00\x00\x02\x50\ \x4a\x00\x04\xfa\x2f\xce\xbe\x9b\xcf\xae\xd6\x52\xf2\xea\xe9\xbb\ \xae\xa6\x3a\x4e\xbb\xbf\xe9\x3c\xdf\x7f\x01\xe6\xfb\x5d\xcf\xae\ \xf1\xbe\xcf\xd9\xf9\xa5\x97\xa7\xcc\xb6\x52\x94\x59\x91\x4b\x2a\ \xca\x2c\xa2\xca\x29\x14\x0a\x0b\x2c\x00\xb2\x94\x02\x80\x00\xa0\ \x35\x8d\x97\x41\xd5\x6f\x3e\xd1\xf3\x6e\xaf\xa6\x7e\x99\xd5\x78\ \x36\xf3\xe9\xfa\xbe\xb3\x9f\xa6\x30\xbb\x3b\x57\x9f\x59\x9f\xa0\ \xdb\x9c\xfc\xee\xff\x00\x73\x67\x2e\x3e\x42\x72\x04\x00\x00\x00\ \x00\x00\x00\x58\x2a\x55\x00\x00\x2a\x0a\x96\x00\x00\x0c\x82\xe8\ \xe3\x96\x3a\xf3\x02\x00\x00\x00\x02\x80\x02\xc1\x40\x00\x00\x00\ \xb0\x53\x13\x29\x86\x2b\xc9\x84\x28\x4a\x04\x51\x28\x25\x10\x00\ \x00\x02\x51\x14\xa0\x45\x11\x60\x00\xa4\x58\xa0\x00\x94\x45\x44\ \x00\x51\x4b\x14\x40\x38\x79\x87\x55\xa1\xe9\x0e\x9e\x33\x83\xdd\ \x6b\xde\xbe\x35\xe8\xb4\x2f\x5e\xb1\xc9\xc7\x7a\x00\x00\x00\x00\ \x00\x0b\x05\x08\x00\x00\x00\x00\x00\x00\x06\x3f\x53\xf9\x67\xd5\ \x79\x75\xe4\xab\xcf\xab\xad\xec\xfa\xf8\xd1\xf3\xfe\x93\xcb\x79\ \xfe\xdd\x1e\x5f\xbd\xdf\xfa\x9e\x9b\xb9\xf6\xfe\x52\xd9\x77\xe2\ \xa5\x16\x52\xd5\x85\x95\x54\x14\x28\x2d\x96\x05\x00\xa2\x00\x65\ \x28\x29\x2e\x97\x51\xa9\xe9\x1e\x17\xaa\xde\x7e\x9b\xd5\xfc\xc7\ \x0e\x99\xf7\x7d\x57\x97\xcb\x78\xec\x34\xb9\x36\xb5\xcf\x47\x1e\ \xe7\x69\x8e\x87\x63\xb9\xce\x63\xab\xd9\xec\xf6\x27\x2e\xbb\x63\ \x7a\xb1\xc3\xcb\x63\x34\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x54\x14\x28\x00\x01\x50\x51\x00\x64\x17\x42\x59\xaf\x30\x20\x00\ \x00\x00\x00\xa0\x00\xb0\x50\x00\x01\x31\x33\xc7\x02\xd9\x52\xc0\ \x00\x00\x28\x00\x00\x04\x51\x16\x02\x91\x60\x00\x00\xa0\x01\x28\ \x02\x82\x45\x11\x62\x80\x00\x12\x80\x28\x11\x44\x51\x16\x05\x13\ \x53\x6c\xbd\x2e\x87\xa9\x5e\x9e\x1f\x1f\x73\xa6\xeb\xe4\x9d\xee\ \x85\xeb\xa2\xb2\xec\x00\x00\x01\x60\xa1\x00\x00\x00\x00\x00\x00\ \x31\xfa\xb7\xca\x7e\xaf\xcb\xae\x76\x5e\x5d\x6e\x9e\xee\xa9\xd4\ \x79\xce\xf7\xa3\xf1\xfe\x9d\x8e\x59\x72\xfa\x3e\xfb\x64\xf7\xfe\ \x26\x95\x14\x2d\x94\xb4\x96\x94\x14\x14\x59\x61\x41\x41\x5d\x71\ \xd8\xbc\xc7\x53\xbc\xfb\xee\x3f\x97\x75\xbb\xc7\xd3\x7a\x9f\x0d\ \x8e\xf3\xe9\x7a\x8d\x3d\xad\xf3\xd7\x9d\x9e\xdd\xe7\xe7\xf9\xfd\ \x26\x53\x1d\x16\xdf\x64\x98\xd7\xe7\xb9\xcc\x71\xb7\x39\xd3\xaf\ \xd8\xdd\x33\xc5\xca\x59\x50\x94\x28\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x15\x2a\x80\x00\x00\x54\x46\x61\x7a\xf9\x66\ \xfc\xb4\x40\x00\x00\x00\x00\xa0\x00\x05\x48\x65\x31\x17\x1a\x58\ \x00\x02\x50\x12\x88\xa2\x2a\xa2\xc0\x14\x20\x00\x00\x00\x00\x12\ \x88\xa1\x29\x62\x88\xb0\x02\xca\x22\x88\xb0\x01\x29\x62\x88\x00\ \x0a\x22\xc5\x00\x00\x00\x4a\x22\x88\xb2\x5c\x74\x7b\x05\xbd\x07\ \x5f\xeb\xd7\xaf\x85\x7b\x6d\x07\x4f\x30\xee\x3a\xfb\xd7\x5c\x5d\ \x00\xb0\x50\x80\x00\x00\x00\x00\x06\x3f\x55\xf9\x5f\xd4\x39\x75\ \xda\xb2\xf2\xeb\x78\x39\xf0\x3c\xcf\x4b\xeb\x3c\x97\x8f\xf5\x16\ \x5c\xb9\x7d\x0f\x73\xbd\xf3\xdf\x73\xeb\xfc\xce\xd5\x3a\x7c\xeb\ \x65\x19\x4c\xa1\x65\x55\x94\x54\x2d\xea\xfa\x9d\x67\xd5\xdf\x9e\ \xf5\x1a\xcf\xd4\xba\x8f\x9a\xcd\xe7\xda\xf5\x3e\x7b\x93\x78\xe7\ \xd7\xdc\xdb\xd7\x2e\x9e\x7a\x5d\xb9\x8f\x2f\xb7\xdf\x26\x3a\xcd\ \xce\x74\xc0\x32\x39\x0e\x39\xb7\xb0\x9a\x1c\xfb\x6b\x38\xf9\x04\ \x58\x28\x80\xa0\x16\x0a\x00\x12\x81\x0a\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x16\x0a\x95\x40\x00\x0c\xd1\x2e\x84\xb3\x7e\x55\ \x82\x88\x00\x00\x00\x00\x14\x82\xc4\x00\x05\x14\x80\x4a\x22\x88\ \xa2\x2a\x58\x00\xa2\xa2\x02\x28\x95\x2a\x89\x62\x88\xb0\x00\xa2\ \x2c\x00\x00\x14\x00\x22\x89\x40\x00\x25\x42\xca\x58\xa2\x00\x00\ \x00\x8a\x25\x14\x08\xa2\x2c\x00\x09\x62\x88\xb2\x96\x53\x83\x43\ \xb6\x35\xe6\x74\x3d\xaa\xf4\xf0\x77\xd9\x75\xee\xbe\x76\xf6\x5a\ \x17\xa6\x09\x6d\x00\x00\x00\x00\x07\xd2\x7e\x6d\xf4\x0e\x7d\x3b\ \xab\x2f\x1e\xd6\x5b\x18\xf9\x4f\x5d\x31\xea\xf9\xcf\xbc\xf3\x1e\ \xd7\x97\xd1\xe2\xd5\xec\x1d\xbe\x4d\xb2\xde\x6b\x8f\x57\x67\x71\ \x7c\x97\x53\xa9\xf4\x5d\x4f\x97\xe9\xeb\x1f\x46\xea\x7c\x7e\x3b\ \xcf\x7b\xd4\xb6\xf5\xcf\x42\x77\x9b\xb7\x9f\x96\xda\xf5\x36\x63\ \xa0\xdd\xec\x93\x1c\x1c\xd5\x31\x00\x00\xe4\x38\xe6\xdf\x3b\x3a\ \x3c\xfb\x4b\x38\xf9\x04\x00\x14\x00\x00\xa9\x40\x80\xa0\x2a\x50\ \x00\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xa0\xa1\ \x40\xc8\x2e\x84\xb3\x5e\x50\x2a\x58\x00\x00\x00\x00\x00\x22\x96\ \x2c\x13\x28\x4a\x02\xcb\x25\x54\x51\x16\x01\x28\x58\x94\x4a\x00\ \xa1\x11\x44\x51\x02\x85\x00\x10\x02\x51\x14\x45\x80\x00\x02\x80\ \x00\x00\x4a\x00\xa0\x01\x14\x45\x80\x00\x00\x0a\x00\x09\x44\x51\ \x04\x05\x00\x0a\x04\x51\xa7\xd7\xf7\x86\xfc\xa6\x8f\xb9\x97\xa7\ \x85\xbe\xaf\x42\xf4\xe8\xdb\x9a\x6e\x81\x68\x00\x3d\xaf\x8a\xf4\ \xb8\xdf\xb6\xb2\xf9\xfb\xda\xe3\x39\x2f\x4f\xd5\x6a\x7a\xec\xbe\ \x79\xd4\xeb\x3f\x4d\xea\xbc\x04\xd6\x7d\x5f\x55\xd4\xec\xef\x1c\ \x38\xf6\x9b\x97\x97\x9e\xcb\xd6\x6c\xcc\x79\x5d\xde\xf5\x31\xd7\ \x6e\x72\xa7\x38\x10\x01\x48\xa2\x1c\x87\x1c\xdb\xe6\xb3\x4b\x9b\ \x64\x98\xe7\x2a\x00\x00\x00\x00\x0a\x00\x00\x54\x14\x40\x50\x22\ \xc2\xd0\x00\x94\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x54\x2e\x61\x74\x25\x9a\xf2\x80\x05\x10\x00\x00\x00\x00\x00\xa0\ \x01\x14\x4a\x09\x4a\x09\x0a\x45\x8b\x14\x45\x44\x0a\x14\x54\x45\ \x94\x00\x42\x52\xc5\x11\x65\x04\x00\x00\x00\x25\x11\x44\x00\xab\ \x16\x00\x00\x00\x28\x00\x00\x04\x51\x16\x02\x82\x02\xac\x58\x0a\ \x40\x25\x11\x44\xb2\x91\x52\xc5\x94\x00\x05\x90\xc3\x35\x75\xba\ \x1e\x84\xe9\xe3\xf5\x3d\xdf\x15\xe9\xe2\x9e\x9b\xaf\xbd\x3a\x8d\ \xee\x1e\x17\x4f\x71\xd5\xf9\xb6\x77\xd8\x68\x6d\x6e\x6b\x9f\x51\ \x3d\x2e\xec\xe7\xe4\xb7\x3d\x41\x8e\x8f\x73\xb0\x93\x9e\x39\x13\ \x25\x24\x00\x00\x02\x8e\x43\x89\xb5\xcd\x73\xa7\xcd\xce\x49\x94\ \xa8\x0a\x00\x15\x28\x00\x00\x00\x00\x00\xa0\x00\xb0\x54\xb0\x14\ \x02\xc2\x54\xaa\x00\x12\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x01\x98\x6b\x42\x59\xaf\x28\x00\x54\x45\x00\x00\x00\x00\x00\ \x02\x80\x00\x02\x91\x44\x58\x25\x12\x8b\x14\x45\x82\x50\x00\x4a\ \x04\x51\x28\x45\x10\x50\x01\x2a\x51\x14\x45\x85\x4a\x25\x11\x44\ \x94\x02\x81\x14\x45\x08\xa4\x52\xc5\x80\x20\xab\x00\x00\x00\x00\ \x94\x08\x54\xaa\x04\x51\x16\x00\x04\xa9\x44\x50\x8a\x01\x14\x45\ \x94\x03\x83\x9d\x2e\x8e\xe6\x4b\x62\xc9\x95\x82\xca\x58\xa2\x02\ \x50\x01\x2f\x21\xc4\xda\xe5\xb3\x53\x9b\x98\x92\x88\x00\x00\x2c\ \x14\x28\x00\x54\x14\x00\x00\x00\x00\x02\x80\x00\x15\x28\x10\x14\ \x05\x41\x40\x02\x50\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\ \x86\xb4\x25\x9a\xf2\x80\x00\x0b\x11\x40\x00\x00\x00\x00\x00\xa0\ \x00\x05\x00\x00\x45\x11\x4b\x14\x40\x25\x11\x4b\x16\x00\x04\x0a\ \x40\x05\x45\x44\x51\x02\x80\x00\x00\x00\x94\x45\x2c\x58\x00\x00\ \xa4\x02\x51\x14\x02\x81\x14\x45\x80\x00\x00\x00\x28\x00\x01\x14\ \x45\x90\x0a\x00\x01\x41\x01\x51\x64\x14\x40\x00\x14\x10\x39\x0e\ \x39\xb3\xc9\x5a\xdc\xbc\xc4\x94\x40\x00\x00\x00\x00\x01\x60\xa9\ \x40\x50\x16\x0a\x00\x00\x00\x00\x01\x40\x00\x05\x82\x88\x0a\x01\ \x60\xa9\x40\x00\x94\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x0d\ \x68\x4b\x35\xe5\x00\x00\x00\xa9\x60\x00\x00\x00\x00\x00\x05\x00\ \x05\x82\x80\x00\x00\x14\x81\x52\x88\xa2\x00\x15\x28\x8a\x02\x12\ \xaa\x28\x80\x16\x24\xa5\x8a\x20\x2a\x52\x28\x8b\x00\x05\x22\xc2\ \x29\x62\x80\x22\x88\xa2\x00\x14\x00\x00\x8a\x22\x88\x00\x05\x22\ \xc5\x00\x00\x00\x4a\x22\xa2\x58\x52\x88\xb0\x0a\x00\x20\x72\x1c\ \x4d\x9e\x4b\x35\xb9\x39\x89\x28\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x54\xa0\x28\x00\x54\xa0\x00\x00\x00\x00\x02\x80\x00\x15\x28\ \x10\x14\x05\x41\x40\x02\x50\x21\x40\x00\x00\x00\x00\x00\x00\x06\ \x68\x9a\xd1\x96\x6b\xca\x14\x00\x00\x01\x44\x00\x00\x00\x00\x00\ \x28\x00\x00\xb0\x50\x00\x00\x15\x28\x04\x51\x14\xb0\x11\x44\x58\ \x02\x80\x10\x00\x50\x09\x52\xc5\x10\x50\x40\x00\x4a\x00\x25\x11\ \x44\x58\x02\x80\x04\x58\x54\xa2\x51\x16\x28\x00\x01\x14\x45\x04\ \xa0\x2c\x51\x00\x01\x60\x00\x00\x04\xa3\x3b\x38\xef\x3e\x67\x07\ \x27\x21\x14\x40\x00\x4a\x09\x54\x00\x00\x00\x00\x00\x00\x00\x00\ \x02\xa0\xa1\x40\x02\xa0\xa0\x00\x00\x00\x00\x14\x00\x00\x58\x28\ \x80\xa0\x01\x2a\x55\x00\x00\x09\x40\x00\x00\x00\x00\x00\x0c\x84\ \xd6\x8c\xb3\x5e\x50\x02\x80\x00\x05\x82\x88\x00\x00\x00\x00\x00\ \x50\x00\x02\xa5\x00\x00\x00\x2a\x50\x00\x00\x05\x8a\x22\xc2\x50\ \x4a\x58\xa8\x8b\x00\x00\x0b\x40\x01\x2a\x12\x88\xa2\x00\xa2\x2c\ \x00\x01\x29\x62\x88\x00\x01\x40\x01\x29\x22\x96\x28\x8a\x20\x00\ \x00\x00\x50\x00\x8b\x99\xc7\x79\xb3\x4e\x1c\xf9\x04\xa2\x00\x02\ \xc1\x40\x00\x00\x02\x80\x00\x00\x00\x00\x00\x00\x00\x00\x2c\x14\ \x00\xa0\x2c\x15\x28\x00\x00\x00\x00\x00\xa0\x00\x05\x41\x44\x05\ \x00\xb0\x95\x2a\x80\x04\xa0\x00\x00\x00\x00\x00\x64\x26\xb4\x65\ \x9a\xf2\x80\x14\x00\x00\x00\xb1\x14\x00\x00\x00\x00\x00\x0a\x00\ \x00\x54\xa0\x00\x00\xb0\x50\x00\x00\x28\x00\x00\x00\x11\x44\x58\ \x4a\x4a\x04\x51\x16\x01\x41\x28\x00\x25\x00\x12\x90\xa4\x58\x0a\ \xb0\x09\x44\x51\x14\x45\x10\x00\xa2\x91\x60\x02\x50\x02\x52\xc5\ \xcd\x38\xef\x2e\x69\xc3\x9e\x60\x00\x16\x0a\x00\x00\x01\x60\xa0\ \x00\x00\x01\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa9\x40\x50\ \x00\xa9\x40\x00\x00\x00\x00\x05\x00\x00\x16\x0a\x96\x02\x80\x04\ \xa8\x5a\x00\x00\x10\xa0\x00\x00\x00\xc8\x4d\x68\xcb\x35\xe5\x00\ \x00\xa0\x00\x00\x0a\x96\x00\x00\x00\x00\x00\x14\x00\x00\x02\xa5\ \x00\x00\x05\x82\x80\x00\x01\x40\x00\x05\x82\x82\x28\x8b\x09\x42\ \x2a\x58\xa2\x01\x2a\xa2\xa5\x80\x00\x00\x00\x01\x28\x01\x28\x8a\ \x58\x01\x48\xb0\x02\x28\x05\x02\x2e\x46\x17\x97\x24\xe2\xcf\x20\ \x08\x00\x00\xa0\x00\xb0\x50\x00\x00\x0b\x05\x4a\x00\x00\x12\x80\ \x28\x00\x00\x00\x00\x00\x00\x00\x00\x02\xc1\x42\x80\x02\xc1\x40\ \x00\x00\x00\x00\x00\xa0\x00\x05\x41\x44\x05\x00\x09\x52\xa8\x00\ \x25\x02\x14\x00\x01\x90\x6b\x46\x59\x7c\xa0\x00\x00\x50\x00\x00\ \x05\x4b\x00\x00\x00\x00\x00\x0a\x00\x00\x2c\x14\x00\x00\x02\xc1\ \x40\x00\x00\xa0\x00\x02\xc1\x40\x00\x11\x44\x54\xb0\x11\x44\x14\ \x0a\x94\x45\x44\xa8\x50\x45\x80\x00\x00\x00\x00\x02\x80\x97\x23\ \x07\x2e\x47\x1e\x59\x00\x40\x00\x00\x00\x00\x05\x00\x05\x82\x80\ \x00\x00\x02\xa5\x00\x00\x00\x01\x40\x00\x00\x00\x00\x00\x00\x00\ \x00\x16\x0a\x94\x05\x00\x0a\x94\x00\x00\x00\x00\x00\x50\x00\x00\ \x0a\x94\x08\x0a\x01\x60\xa9\x40\x00\x00\x00\x32\x13\x5a\x30\xd7\ \x94\x00\x00\x0a\x00\x00\x00\x52\x00\x00\x00\x00\x00\x14\x00\x00\ \x01\x40\x00\x00\x02\x80\x00\x00\x05\x00\x00\x28\x00\x00\x00\x94\ \x04\x00\xa0\x10\x50\x00\x08\x02\x00\x05\x00\x20\x00\x0a\x72\x12\ \xd1\x60\x14\x40\x00\x00\x00\x00\x00\x00\x28\x00\x28\x00\x00\x00\ \x01\x40\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\ \x00\x28\x00\x50\x00\x00\x00\x00\x00\x28\x00\x00\x02\x80\x40\x50\ \x00\x94\x28\x00\x01\x28\x64\x26\xbf\xff\xc4\x00\x30\x10\x00\x01\ \x04\x00\x05\x02\x05\x04\x02\x03\x00\x03\x00\x00\x00\x00\x02\x00\ \x01\x03\x04\x05\x11\x31\x50\x60\x12\x32\x10\x13\x33\x40\x70\x20\ \x21\x30\x34\x06\x14\x22\x23\x41\x15\x24\x35\xff\xda\x00\x08\x01\ \x01\x00\x01\x05\x02\x7d\x7e\x71\x64\xfa\xfc\xe2\xc9\xf5\xf9\xc5\ \x93\xeb\xf3\x8b\x27\xd7\xe7\x16\x4f\xaf\xce\x2c\x9f\x5f\x9c\x59\ \x3e\xbf\x38\xb2\x7d\x7e\x71\x64\xfa\xfc\xe2\xc9\xf5\xf9\xc5\x93\ \xeb\xf3\x8b\x27\xd7\x9a\x59\xb3\x0d\x71\x9f\x18\x37\x41\x8a\xdb\ \x67\xa3\x88\x43\x67\x9d\x32\x7d\x79\x99\x3e\x42\x64\x46\x5e\x18\ \x55\x23\xb9\x3f\x39\x64\xfa\xf3\x32\x6c\xc7\xc7\x07\x01\x0c\x31\ \xfe\xc5\xce\x19\x3e\xbc\xd2\xe0\x79\x76\xc7\x2e\xac\x5a\xa0\xdc\ \xa5\x46\x22\x82\x94\xdd\xfc\xe1\x93\xeb\xcd\x31\xe8\xfa\x6d\xac\ \x11\xdd\xf0\xae\x74\xc9\xf5\xe6\x85\x42\x3b\xea\x5f\xe3\x6a\xac\ \x25\x4a\x93\x4c\xbf\xef\x38\x64\xfa\xf3\x4c\x4f\x11\x9e\xa4\xbf\ \xf9\xcc\x55\x47\x8d\xdc\x23\xe7\x4c\x9f\x5e\x69\x6a\x5f\x3a\xcf\ \x86\x1c\x7e\x65\x1e\x72\xc9\xf5\xe6\x78\xa4\xbe\x4d\x1f\x1c\x0c\ \xb3\xa1\xce\x59\x3e\xbc\xcf\x1d\x9f\xae\xc7\x8f\xf1\xe7\xff\x00\ \x47\x39\x64\xfa\xf3\x2b\x12\xb4\x30\x11\x39\x97\x8f\xf1\xd7\xfb\ \xf3\x96\x4f\xaf\x32\xc7\xe7\xfa\x7f\x8f\xbf\xfe\xd7\x39\x64\xfa\ \xf3\x12\x26\x11\xb1\x2b\xcd\x3f\xd1\x81\xbe\x58\x87\x39\x64\xfd\ \xdc\xc7\x1c\x9f\xa2\xbc\x60\x52\x49\x70\x1a\x2b\x5e\x38\x61\x74\ \xe2\x1c\xe5\x91\x6b\xcc\x71\xae\xbf\xef\x60\x31\x89\x58\xc4\xbf\ \xfa\x1e\x30\x97\x4c\xdc\xe5\x91\x6b\xcc\x71\xc8\x7a\xeb\x61\xb3\ \x79\x17\x31\x56\xcb\x10\xfa\x01\xf3\x0e\x70\xc8\xb5\xe6\x26\x2c\ \x63\x3c\x6f\x14\xb6\x64\xf3\x4f\xc7\xfe\x55\x7c\xea\xf3\x86\x45\ \xaf\x32\xc7\xa1\xca\x4f\xa6\x87\xe9\x73\x86\x45\xaf\x32\xbb\x0f\ \x9f\x57\xe9\xc3\xff\x00\x47\x9c\x32\x2d\x79\x9e\x2f\x0f\x95\x73\ \xe8\xa3\xfa\x5c\xe1\x91\x6b\xcc\xf1\xe0\x17\xa9\xe2\xfa\x57\x6c\ \xab\xf3\x86\x45\xaf\x33\xfe\x40\x7f\xeb\xfa\x05\xb2\x1e\x70\xc8\ \xb5\xe6\x78\x9d\x5b\x76\x2d\xd8\xab\x3c\x03\xe1\x5f\x0a\x95\xdf\ \x9c\xb2\x2d\x79\xa6\x3f\xfa\xc9\xf4\x87\xd1\xe7\x2c\x8b\x5e\x69\ \x8f\xfe\xb2\x7d\x22\xf4\xb9\xcb\x22\xd7\x9a\x63\xff\x00\xac\x9f\ \x48\xbd\x2e\x72\xc9\xf5\xe6\x98\xff\x00\xeb\x27\xd2\x3f\x4f\x9c\ \xb2\x7d\x79\xa6\x3f\xfa\xc9\xd4\x7e\x9f\x39\x64\xfa\xf3\x4c\x7b\ \xf5\x93\xa8\xfd\x3e\x72\xc9\xf5\xe6\x98\xf7\xeb\x0f\x72\x0e\xce\ \x72\xc9\xf5\xe6\x98\xf7\xeb\x43\xeb\x21\xed\xe7\x2c\x9f\x5e\x69\ \x8f\x7e\xb5\x4f\xbd\xa4\x3d\xbc\xe5\x93\xeb\xcd\x31\xef\xd6\xa1\ \xf7\xba\xfa\x8f\x69\x18\x0a\x2b\x70\xb2\x2b\xae\x9a\xdc\xd9\x85\ \xd6\x41\x3c\x45\xcd\x19\x3e\xbc\xcd\xdd\x99\x63\x72\x01\x41\x4c\ \xba\x2d\xbe\xa5\x2c\x85\xf5\x89\x90\xa0\xb7\x2b\x20\xb8\x0e\x82\ \x58\xcf\x98\x32\x7d\x79\x79\xcb\x10\x22\xbb\x13\x22\xbc\x48\xac\ \xcc\x49\xdf\x35\x6f\xd3\xaf\xeb\xbe\xbf\x8c\x24\x30\x41\x72\x46\ \x41\x72\x37\x41\x20\x1f\x2c\x64\xfa\xf2\xa2\x21\x14\x56\xa0\x14\ \x57\xd9\x15\xc9\x9d\x14\x86\x5f\x55\xaf\x4e\xb7\xae\xfd\xdf\x9c\ \x26\x94\x50\x5c\x34\x16\xe2\x74\x24\x25\xca\x19\x3e\xbc\x98\xe7\ \x84\x11\xde\x89\x91\x5e\x91\xd1\xd8\x98\xbf\x1d\xae\xca\xde\xb1\ \x77\xfb\x30\x9e\x51\x43\x71\xd0\x59\x84\x93\x3b\x3f\x24\x64\xfa\ \xf2\x12\x30\x14\x77\x20\x64\x77\xd1\x5c\x9c\x91\x11\x17\xe7\xb3\ \xd9\x5b\xd5\x3e\xff\x00\x6c\xdf\x64\x36\x66\x14\x17\x50\x58\x84\ \x93\x7d\xf9\x03\x27\xd7\x8e\x3f\xd9\x1d\x98\x05\x15\xf8\xd1\xde\ \x95\xd1\xcf\x31\xfb\x4b\x3d\x95\xbd\x43\xf5\x3d\xd0\xbb\x8a\x0b\ \x52\x8a\x0b\x82\x82\x78\x8b\x8e\xb2\x7d\x78\xc1\xcb\x18\x23\xbd\ \x03\x23\xc4\x09\x1d\xbb\x04\x89\xdc\xbd\xc5\x8e\xca\xdd\xe7\xea\ \x7b\xe1\x33\x14\x16\xe5\x64\x37\x01\xd0\x4b\x19\xf1\x96\x4f\xaf\ \x13\x77\x61\x47\x6e\xb8\xa3\xc4\x05\x1d\xe9\x9d\x1c\xb2\x9f\xbd\ \xb1\xd9\x5f\xb8\xfd\x5d\x88\x24\x90\x10\x5c\x91\x90\x5b\x8d\xd0\ \x98\x17\x15\x64\xfa\xf0\xf3\x9e\x10\x47\x7e\x16\x47\x88\x1a\x3b\ \x53\x92\x7f\xbe\xc3\x3f\x68\x93\x82\x77\xcd\xfc\xd9\x13\x4c\x64\ \x83\xaf\x64\x09\xa5\x14\x17\x09\x05\xa8\x9d\x09\x09\x71\x16\x4f\ \xaf\x0a\x22\x11\x47\x72\xb8\xa3\xc4\x59\x1d\xd9\xc9\x1c\x92\x1e\ \xca\x53\x0b\x22\x90\x89\x7d\xdd\x0c\x24\xe8\x61\x14\xdf\x6d\xa4\ \x2c\x4c\x28\x2e\xa0\xb3\x09\x26\x76\x7e\x1a\xc9\xf5\xe0\xc7\x62\ \x00\x47\x88\x44\xc8\xf1\x09\x5d\x1d\x89\xcf\x67\x23\x11\x45\x33\ \xa7\xcd\xd0\x8b\x92\x18\x53\x33\x36\xde\xce\xec\x82\xcc\xc2\x82\ \xea\x0b\x10\x97\x0a\x64\x5a\xf0\x13\x92\x30\x47\x7a\xb8\xa3\xc4\ \x51\xdd\xb0\x48\x88\x8b\x69\x29\x45\x91\x19\x97\x80\xc6\x4e\x86\ \x31\x6d\xd8\x48\x85\x05\xb9\x85\x05\xd1\x41\x34\x47\xc1\x99\x16\ \xbb\xe3\xbb\x32\x3b\x55\xc1\x1e\x23\x1a\x3b\xf3\x3a\x39\xe6\x3d\ \xac\x8c\x59\x3c\xae\x9f\x37\x4c\xce\xe8\x62\x42\xcc\xdb\xe0\x99\ \x82\x0b\x72\xb2\x0b\x91\xba\x09\x63\x3e\x04\xc8\xb5\xde\xaf\xda\ \xf2\x18\xae\x59\x74\xe6\xe4\xb3\x6d\xaf\x44\xf2\xb2\x73\x27\xf0\ \x10\x27\x43\x18\xb7\x03\x09\x64\x04\x17\x0d\x90\x5b\x89\xd0\x98\ \x16\xfc\xc8\xb5\xde\x74\x53\xc8\xf2\xcd\xf4\x66\xb3\xd9\x9c\x85\ \x93\xca\xe9\xf3\x74\xcd\x9a\x68\x93\x0b\x37\x09\x09\xe5\x14\x17\ \x49\x05\xa8\x49\x0b\xb1\x6f\x4c\x8b\x5d\xe7\x11\x3e\x8a\x9f\x87\ \x35\x9e\xc0\xf2\x32\x73\x27\xf0\x60\x27\x4d\x1b\x70\xf6\xfb\x20\ \xb1\x30\xa1\xba\x82\xcc\x24\x99\xd9\xf7\x66\x45\xae\xf3\x8c\x97\ \xf8\x7e\x4c\xd7\x52\xcd\xbd\xcb\x93\x32\x79\x1d\x6a\x99\xb3\x4d\ \x1b\xa6\x16\x6e\x2a\xce\xe2\x82\xd4\xc2\x82\xeb\x20\xb1\x09\x6e\ \x6c\x8b\x5d\xe7\x18\x7c\xec\xfb\x0c\xdd\x75\x2c\xdb\xd9\xbc\x8c\ \x9c\x9d\xfc\x18\x5d\xd3\x46\xdc\x70\x48\x85\x05\xb9\x59\x05\xd0\ \x41\x34\x47\xb7\xb2\x2d\x77\x9c\x4d\xf3\xbb\xed\x33\x75\xd4\xb3\ \x6f\xc8\xe4\xcc\x9e\x47\xf1\x60\x74\xc2\xcd\xc8\x82\x43\x04\x17\ \x24\x64\x17\x23\x74\x12\x46\x7b\x5b\x22\xd7\x79\xbb\xfb\x9e\xe3\ \x37\x5d\x4b\x3f\xa9\xcd\x39\x3b\xf8\x30\xbb\xa6\x04\xdc\xa0\x26\ \x94\x10\x5d\x35\x11\xf9\x91\xec\xec\x8b\x5d\xe6\xd7\xed\x7b\xce\ \xa5\xd4\x9c\xdf\xc5\x81\xd3\x0b\x37\x27\xcd\x97\x52\xea\x4d\x99\ \x20\xad\x39\x20\xa4\x4a\x20\xf2\xe3\xd9\xd9\x16\xbb\xcd\x9f\xd9\ \xd8\x19\xf2\x5d\x4d\xc9\x3a\xc5\x75\xae\xb7\x51\x55\xb5\x32\x8b\ \x06\xb4\x4a\x2c\x16\x16\x4d\x56\x00\x76\x66\x6d\xad\x93\xeb\xbc\ \xda\xfd\xad\x8f\x37\x5d\x4b\x36\xe3\x6e\x42\xcb\xcd\x64\xf2\xba\ \x01\x9e\x57\x8b\x09\xbc\x6a\x2c\x09\xd4\x58\x4d\x20\x51\x43\x0c\ \x5e\x2c\x8b\xbb\x6b\x64\xfa\xef\x37\x7f\x6f\x67\xcd\xd7\x52\xcd\ \xb8\x93\xbb\x32\x79\x45\x3c\xcb\xac\xc9\x45\x42\xf4\xca\x2c\x0e\ \xc3\xa8\xb0\x4a\xa2\xa1\xa5\x4e\x25\xa3\x7d\x4c\x8b\xbb\x6b\x64\ \xfa\xef\x38\x93\x65\x77\x6b\xcd\xd7\x52\xcd\xb8\x53\x98\xb2\x79\ \x99\x3c\xc4\xa3\x82\xdc\xea\x2c\x16\xe9\xa8\xb0\x18\xd4\x58\x55\ \x08\xd0\x00\x47\xf9\x4b\xbb\x6b\x64\xfa\xef\x38\xbb\x65\x6b\x6f\ \xea\x75\xd4\xb3\x6e\x02\xe4\xcc\x9e\x51\x4f\x32\x17\x9a\x47\x8b\ \x0b\xc4\x25\x51\x60\x32\x28\xb0\x5a\x40\xa1\xad\x5a\x15\x9f\xb1\ \x2e\xed\xad\x93\xeb\xbc\xe3\x43\xf7\xdc\xfa\x97\x56\xf4\xf2\x0a\ \x79\x57\x9a\x4e\xa2\xa7\x76\x75\x16\x07\x6c\x94\x58\x15\x76\x51\ \x61\xd4\x62\x43\xfe\x2d\xed\x4b\xbb\x6b\x64\xfa\xef\x38\xb0\xf5\ \x54\xdd\xb3\x75\xd4\xba\x9b\x71\x72\x16\x4f\x20\xa7\x95\xd4\x61\ \x62\x67\x8b\x07\xbd\x22\x8b\x01\x50\xe1\x14\x01\x47\x14\x51\x7b\ \xb2\xee\xda\xd9\x3e\xbb\xcc\xe1\xe6\x43\xbd\x66\xeb\xa9\x75\x36\ \xd3\xd6\x29\xe5\x4c\x46\x6f\x1e\x1d\x7e\x55\x16\x05\x33\xa8\xb0\ \x4a\x82\xa1\xa7\x52\x25\xff\x00\x3d\xf1\x77\x6d\x6c\x9f\x5d\xeb\ \x11\x8b\xca\xb5\xbe\xe6\xeb\xa9\x66\xdb\x03\x90\xaf\x31\x93\xca\ \xea\x2a\xf6\xe7\x51\x60\xb7\x09\x45\x81\x44\xca\x2c\x32\x8c\x68\ \x18\x41\xb6\x32\xee\xda\xd9\x3e\xbb\xd5\xea\xff\x00\xd8\x88\x84\ \x81\xf8\x07\x53\xae\xa5\x9b\x7b\x7c\xd9\x75\x8a\x79\x10\x79\xd2\ \x3c\x78\x5d\xe9\x14\x58\x19\x28\xb0\x8a\x40\xa2\x82\x08\xb6\x92\ \xee\xda\xd9\x17\x76\xf2\xe4\xc9\xc9\xd3\xb3\x3a\x3a\x90\x12\x3c\ \x3d\x1d\x59\xc1\x3f\xdb\x80\xf5\x3a\xea\x59\xb7\xe7\xea\x65\xd6\ \xba\xc9\xd4\x74\xee\xca\xa2\xc1\x6c\x12\x8b\x05\xae\xca\x2a\x34\ \xe2\x4d\xf6\x6d\xb0\xbb\xb6\xb6\x45\xdd\xbb\x39\x32\x72\x7f\xc0\ \x42\x24\x8e\x94\x04\x8e\x81\x23\xaf\x30\x70\x1c\xd7\x52\xea\x6f\ \xaf\x36\x5d\x6c\x9e\x45\x1c\x76\x25\x51\xe1\x57\x0d\x45\x82\x8a\ \x8b\x0c\xa4\x0a\x30\x08\xf7\x22\xee\xda\xd9\x17\x76\xe6\xee\xc9\ \xcb\xf3\x9c\x60\x68\xe8\xc2\xe8\xe8\x48\xc8\xe1\x94\x38\x0e\x6e\ \xba\x97\x5a\x17\x33\x78\xe8\x5d\x91\x47\x83\xc8\xea\x3c\x26\xa8\ \xa8\xab\x57\x8b\x77\x2e\xed\xad\x91\x77\x6e\x3d\x4b\x37\xf6\xa7\ \x0c\x46\x8e\x84\x6e\x8e\x8c\xcc\x8e\x39\x03\x7e\x82\x32\x9a\x68\ \xa8\x54\x8d\x85\x98\x5b\x7a\x2e\xed\xad\x91\x77\x6d\xdd\x4b\x37\ \xf7\x87\x5e\x13\x47\x40\x11\xd3\x9c\x51\x09\x0e\xf5\x80\x47\x9c\ \x9f\x49\xcd\x08\x2f\xef\x55\xea\x67\x67\x6d\xcd\xb5\xfe\xe4\x7e\ \x60\x4b\x19\xed\x6c\x8b\xbb\x6b\xcd\x97\x56\xc5\xaa\x3a\xb0\x1a\ \x3c\x3d\x91\xd4\x9c\x53\xb3\xb6\xed\x81\x8e\x54\x7c\x6f\x4b\x30\ \x1c\x92\xcc\x6f\xe1\x56\xc4\x95\xca\x09\x42\x68\xb7\x19\x25\x8a\ \x34\x78\xa5\x30\x72\x7c\xcd\x04\xb2\x02\x0b\xa6\xca\x23\xf3\x23\ \xd9\xd9\x17\x76\xd1\x9a\xea\xda\x49\x98\x91\xd3\x80\x91\xe1\xee\ \x8e\xb4\xe1\xb9\xe1\x8d\x96\x1f\xe3\x7b\xd6\x9a\x3e\xa1\xf1\xc1\ \xcd\xda\xce\xd8\xff\x00\x66\x96\xfd\x38\xd4\x98\xd4\x0c\xa4\xc6\ \x2c\x92\x96\xe5\xa9\x7c\x33\x59\xa6\x62\x74\x15\xe5\x24\x14\x94\ \x60\xd1\x86\xce\xc8\xbb\xb6\x6c\xd6\x6f\xb7\x90\x09\xa3\xa5\x01\ \x23\xa0\x6c\x8e\x09\x83\x6f\xa8\xd9\x54\xf1\xb9\xea\xe4\xa4\x6c\ \xa4\xf0\xc2\x7f\x7b\x68\x96\x78\x22\x52\xe2\xf4\xc1\x4b\x8d\x9a\ \x97\x13\xbb\x22\x33\x23\x7c\xd9\x75\x26\xcd\xd3\x45\x23\xa6\xae\ \xe8\x2b\x33\xa0\xac\xcc\x86\x30\x6d\xad\x91\x77\x6c\x79\xac\xf7\ \x63\x8e\x33\x47\x46\x17\x47\x42\x56\x47\x14\xa1\xb5\x3e\x90\xfa\ \x3e\x36\xbd\x4c\x94\xde\xb7\x86\x08\x3f\xed\xd8\xc9\xc4\x14\xb8\ \x95\x28\xd4\xb8\xdc\x4c\xa5\xc6\x2d\x92\x96\xcd\x89\x57\xd9\x75\ \x2e\xa4\xc1\x21\x21\xad\x23\xa1\xaa\x28\x61\x8d\x90\x83\xba\x18\ \x50\xc6\x0d\xb7\x32\x2e\xed\x83\x35\x9e\xfa\x70\xc4\x68\xe8\x46\ \xe8\xe8\xcc\x28\xc0\xc3\x66\x75\x1f\xa7\xe3\x63\xbd\xfe\xcd\xaf\ \x8e\x0e\x1d\x35\x3d\xfc\xb6\xea\xc4\xa5\xc6\x6a\x0a\x97\x1c\x99\ \xd4\xb8\x8d\xd9\x11\x3f\x53\xf5\x32\xea\x4d\xd6\x48\x6b\xcc\x48\ \x6a\x21\xad\x13\x21\x11\x1f\x01\x12\x74\x30\xa1\x8c\x5b\x71\x64\ \xfa\xfb\xec\xf8\x21\xd6\x80\xd1\xe1\xe2\x8e\x9c\xe2\x88\x48\x76\ \x30\xf4\xfc\x67\xef\xb8\xfd\x35\xbc\x6b\x07\x97\x5f\xdd\x48\x61\ \x1a\x97\x15\xa3\x1a\x97\x1c\x15\x2e\x2f\x74\xd4\xb3\xcf\x2a\xcd\ \x97\x52\xea\x74\x31\x4c\x48\x69\xc8\x86\x98\x21\x86\x21\xfa\x18\ \x49\xd0\xc2\x84\x05\xb7\x46\x4f\xdd\xee\xf3\x59\xf0\x97\xfb\xa3\ \xab\x01\x23\xc3\xd1\xd4\x9c\x53\xe6\xcf\xef\xa3\xf4\xfc\x65\xee\ \xc4\xdf\xfc\x3c\x03\xef\x23\xeb\xed\x74\x69\x6e\xd3\x89\x4b\x8d\ \xd6\x15\x2e\x37\x61\xd4\xb7\xee\x4a\x9d\xd7\x53\x2e\xa4\x2d\x21\ \xa1\xa9\x31\x21\xa4\x86\xac\x2c\x84\x44\x7e\x96\x12\x74\xd0\xa1\ \x01\x6d\xdd\x91\x6b\xee\x73\xe2\x04\xcc\x48\xe9\xc0\x48\xf0\xf7\ \x47\x5a\x70\xf7\x6f\xa4\x5e\x8f\x89\xeb\x8b\x77\x78\xd2\x9d\xac\ \x57\xf6\x32\x4d\x0c\x4a\x5c\x5e\x88\x29\x71\xd7\x52\xe2\xd7\xa4\ \x52\x49\x24\x8f\x9b\x2e\xa5\x9b\xba\x18\x27\x24\x34\x4d\x0d\x28\ \x99\x0c\x31\x0f\xd6\xc0\x4e\x9a\x14\xc0\x2d\xbd\x32\x2d\x7d\xb6\ \x7c\x5c\xc0\x0d\x1d\x28\x09\x1d\x09\x19\x1c\x13\x07\xb8\xaa\xf9\ \xd5\xf1\x2d\x71\x18\x5e\x58\x3c\x3a\x4b\xa6\xb4\xe5\x5e\x5a\xd3\ \xc7\x60\x3f\x19\x7f\x8b\x4b\x88\x52\x8d\x4b\x8d\xc0\xca\x5c\x6a\ \xd9\x29\xae\x5a\x99\x7d\x96\x6b\xa9\x08\x4a\x68\x69\xcc\xe8\x68\ \x8a\x1a\xb0\x0a\x66\x66\xfc\x0c\x04\xe9\xa2\x4c\x02\xdb\xeb\x22\ \xd7\x98\x9c\x51\x9a\x3a\x11\x3a\x3a\x32\xb2\x38\xa4\x0f\x69\x86\ \xbe\x78\x7f\x8b\xf8\x62\x55\xbc\xa2\x54\x03\xcb\xa8\x71\x44\x69\ \xa9\x57\x13\xfa\xb2\x52\xd8\xaf\x12\x93\x18\xa6\x0a\x5c\x70\xdd\ \x4b\x89\xde\x91\x19\x11\xbe\x6c\xba\x93\x75\x12\x1a\xb6\x09\x05\ \x02\x43\x4a\x16\x41\x14\x61\xf8\x98\x09\xd3\x44\x98\x45\xb8\x03\ \x22\xd7\x9a\x9c\x10\x9a\x3a\x00\xe8\xe9\x4c\x28\xc0\xc3\xd8\x60\ \xaf\x9e\x1d\xf4\xbb\x31\x0d\xca\x65\x0c\xba\x7d\x26\xe2\x0a\x5c\ \x4a\x94\x6a\x5c\x6e\x36\x52\xe3\x17\x0d\x4b\x66\xc4\xab\xec\xb3\ \x59\xa1\x8a\x63\x43\x46\x57\x41\x40\x10\xd6\x80\x53\x7d\xbf\x1b\ \x01\x3a\x68\x93\x0b\x37\x03\x64\x5a\xf3\x93\xad\x01\xa3\xc3\xd9\ \x1d\x39\xc5\x13\x38\xfe\x4f\xe3\xc5\x9d\x7f\xc1\x2d\xaa\xb1\x29\ \x71\x8a\xa2\xa5\xc6\xa6\x75\x2e\x21\x76\x44\x4e\xee\xb3\x59\xa1\ \x63\x24\x35\x2c\x12\x0a\x08\x69\xc0\x28\x40\x07\xf2\xb0\x13\xa6\ \x89\x30\xb3\x70\x66\x45\xaf\x3c\x76\x67\x47\x52\x02\x47\x87\xa3\ \xab\x38\xa7\xfb\x7e\x0f\xe3\xe7\x95\xaf\x13\x38\xe3\x69\x31\x3a\ \x40\xa4\xc6\x99\x49\x8a\xdc\x35\x24\xd3\x4a\xbe\xcb\x35\x9e\x68\ \x60\x9c\xd0\x50\x91\xd0\xd0\x89\x90\x57\x84\x3f\x3b\x01\x3a\x68\ \x93\x33\x37\x09\x64\x5a\xfc\x00\x42\x24\x8e\x94\x04\x8f\x0f\x24\ \x75\xe7\x0f\xa6\x9c\xbe\x45\xa9\x71\x7a\xe2\xa4\xc6\x2c\x3a\x96\ \xed\xb9\x53\xf8\x66\x84\x24\x34\x34\xa7\x24\x18\x7b\x20\xa7\x00\ \xa1\x11\x1f\x60\xc0\x4e\x9a\x34\xcc\xcd\xc3\x19\x16\xbf\x02\x1c\ \x60\x68\xe8\xc2\x48\xe8\x48\xc8\xe1\x94\x13\x78\x36\x6e\x82\xb5\ \x82\x43\x40\xd0\x51\x85\x90\x43\x10\x7b\x26\x02\x74\xd1\xb2\x66\ \x66\xe1\xec\x8b\x5f\x82\x0e\x28\x8d\x0d\x4a\xec\xec\xcc\xde\xcd\ \x80\x9d\x34\x6c\x99\x99\xb8\x93\x22\xd7\xe1\xa6\x07\x4d\x1b\x26\ \x66\x6e\x2a\xc8\xb5\xf8\x5d\x81\xd3\x46\xc9\x99\x9b\x8c\x32\x2d\ \x7e\x14\x61\x74\xc0\xcb\x2c\xb8\xdb\x22\xd7\xe1\x16\x07\x4c\x0d\ \xc7\xd9\x16\xbf\x07\x30\xba\x60\x6e\x44\xc8\xb5\xf8\x2d\x85\xd3\ \x03\x72\x56\x45\xaf\xc1\x1d\x2e\xba\x5b\x94\x32\x2d\x7e\x05\x61\ \x75\xd2\xdc\xad\x91\x6b\xf0\x17\x4a\xe9\x6e\x5c\xc8\xb5\xe7\xec\ \x2e\xba\x5b\x98\xb2\x2d\x79\xe7\x4a\xe9\x6e\x68\xc8\xb5\xe7\x3d\ \x2b\x2e\x6e\xc8\xb5\xe6\xd9\x2c\xb9\xd3\x22\xd7\x99\xe4\xb2\xe7\ \xac\x8b\x5e\x61\x92\xcb\xe0\x06\x45\xaf\x2e\xcb\xe0\x36\x5f\xff\ \xc4\x00\x2f\x11\x00\x01\x03\x01\x07\x03\x04\x02\x01\x05\x01\x00\ \x00\x00\x00\x00\x01\x00\x02\x03\x11\x04\x10\x12\x31\x41\x50\x60\ \x13\x40\x51\x05\x21\x30\x32\x20\x22\x23\x33\x61\x80\x81\x90\x91\ \xff\xda\x00\x08\x01\x03\x01\x01\x3f\x01\xff\x00\xa2\xd0\xc5\x8d\ \x74\x99\xe1\x4f\x16\x0a\x11\xce\x2c\xa7\x30\x9a\xcc\x40\xab\x73\ \x3f\x88\x1f\x1c\xe2\xcf\xfd\x40\x13\x3f\x8e\xae\x72\xb7\x4a\xc9\ \x03\x70\x9e\x71\x67\x6d\x5d\x54\x7d\xc5\x0a\x22\x86\x9c\xe2\x06\ \xe1\x6d\xd2\xfd\xcf\x37\x8d\xb8\x9d\x4b\xe7\xfb\xf3\x7b\x3b\x68\ \x31\x5f\x69\xfb\x73\x76\x9c\x71\x7b\x26\xfd\x45\xd6\xad\x39\xbd\ \x99\xd4\x34\x59\x5d\x69\xc8\x73\x70\x68\x6a\x9a\x6a\x2b\x75\xa7\ \x2e\x71\x67\xfa\x5d\x6a\xc8\x73\x88\xa6\x35\x0d\xba\x47\x97\x1f\ \x7e\x71\x0f\xdc\x5c\x73\xe7\x10\xfd\xc5\xc7\x3e\x71\x0f\xdc\x5c\ \x79\xc4\x3f\x70\xb5\xe7\x30\x0f\xdc\x2d\x50\xb3\xf9\x28\x40\xc0\ \x8c\x4c\x3a\x23\x66\x1a\x23\x0b\xc2\xa1\x19\xf2\xf1\x13\xce\x88\ \x59\xce\xa8\x59\xdb\xaa\x11\xb4\x68\x87\xc0\x61\x69\x46\xcf\xe1\ \x18\x9e\x39\x38\x69\x39\x21\x03\x8a\x16\x6f\x25\x08\x58\x10\x00\ \x7e\x23\xe3\x20\x1c\xd1\x85\xa5\x1b\x39\xd1\x18\xdc\x38\xf5\x2a\ \x84\x2f\x3a\x21\x66\x3a\x94\x2c\xed\x41\x8d\x19\x0f\x88\x2d\x7e\ \x62\xd0\x73\x46\x06\x94\x6c\xe7\x44\x58\xe1\x9f\x16\x0c\x71\xd1\ \x0b\x3b\x90\xb3\x0d\x50\x89\x83\x4f\x9c\x5d\x4e\xc4\xb1\xa7\x34\ \x6c\xed\xd1\x18\x1d\xa2\x2d\x23\x3e\x1a\x01\x39\x21\x0b\xca\x16\ \x6f\x25\x08\x18\x10\x68\x19\x76\x54\xba\xbd\xb1\x8d\xa5\x1b\x38\ \xd1\x18\x5c\x11\x04\x67\xc1\x44\x6e\x3a\x21\x66\x76\xa8\x59\xdb\ \xaa\x11\x30\x69\xda\xd1\x55\x57\xbc\x31\x34\xa3\x67\xf0\x8c\x2e\ \x0a\x94\xdf\xe0\x66\x23\xee\x80\x03\x2e\xda\x97\x57\x62\xa2\x30\ \xb4\xa3\x67\xf0\x8c\x4e\x1b\xe5\x9c\x51\x9d\xad\x36\xa2\x01\xcd\ \x18\x5a\x51\xb3\x9d\x11\x8d\xc3\x78\x8f\xea\x3b\x4a\xed\xe5\xa0\ \xe6\x8c\x0d\x46\x03\xa2\x2c\x70\xcf\x74\x6e\x5d\x85\x37\x77\x74\ \xf5\x47\x3f\x6d\xc9\xb9\x70\x2a\x12\xb0\x15\xd3\x41\x81\x38\x93\ \xba\x33\xea\x37\xec\x25\x74\xca\xe9\x85\x84\x0f\xc4\xee\x91\x1a\ \xb0\x6f\x34\x25\x74\xca\xe9\x20\xc1\xf1\x1d\xd2\xcc\x7f\x5a\x6e\ \xb8\x1c\x84\x6b\xa6\x15\x00\xf9\x8e\xe9\x0b\xf0\xbb\x70\xa1\x5d\ \x32\xba\x61\x61\x1d\x99\xdc\xe9\x70\x71\x19\x21\x3b\x82\x16\x81\ \xaa\x12\x34\xec\xf4\x2b\x01\x5d\x34\x18\x3b\x83\xb8\x51\x53\xe0\ \x0f\x70\xc9\x09\xdd\xaa\x13\xb5\x07\x03\x96\xc1\x81\x60\x0a\x83\ \xbc\x3b\x75\x3e\x71\x23\x82\x16\x83\xaa\x13\xb4\xa0\xe0\x7b\xb6\ \x67\x73\x5b\x88\xd2\xb4\x51\xfa\x3d\x7d\xdc\xff\x00\xfc\x53\x7a\ \x40\xc3\xfc\x47\xdf\xfb\xa7\x34\xb4\xd0\xf7\x35\xa2\x74\x0d\x28\ \xc0\xed\x16\x5b\xf8\x95\xc1\x0b\x47\x94\x26\x69\x40\xd7\xb7\x8e\ \xff\x00\x48\x9c\xb8\x18\x8e\x97\x7a\xb0\x02\x7f\xf5\xda\xe2\x0b\ \xa8\xba\x85\x17\xf9\x28\xc8\xd0\x8c\xe3\x44\x66\x71\xd9\xe9\xde\ \x56\x88\x4a\xe0\x85\xa3\xca\x12\xb4\xf6\x91\xdf\xe8\xcc\xfd\x9c\ \xeb\xbd\x41\xf8\xed\x0e\xec\x2a\x17\x50\x2e\xa2\x2f\x28\xbc\x23\ \x30\x46\x62\x8c\xa5\x62\xe1\x40\x90\x84\xce\x08\x4e\x35\x42\x46\ \x9e\xc2\x3b\xfd\x29\x98\x60\xaf\x95\x92\x2e\xc4\x6a\x7e\x4c\x61\ \x75\x17\x50\xa2\xff\x00\x28\xca\xd4\x66\x46\x47\x22\x56\x25\x8b\ \x88\x87\x11\x92\x13\x39\x09\xc6\xa8\x3d\xa7\xe4\x8e\xff\x00\x4c\ \x90\x3a\xce\x07\x85\x55\x6e\xb1\x18\x1d\x88\x7d\x7f\x3c\x41\x75\ \x02\xea\x14\x5e\x51\x90\x23\x30\x46\x52\x8b\x89\xbe\xaa\xbd\xf9\ \xde\x43\xdc\x10\x9c\xea\x84\xcd\x41\xc0\xe5\xf0\x47\x9d\xf6\x5b\ \x4b\xac\xef\xc4\x17\xaa\x4e\xd9\x23\x66\x1c\x8a\x6c\xcf\x6f\xb0\ \x37\x55\x63\x0b\xa8\xba\x85\x17\xf9\x28\xcc\x11\x99\x19\x1c\x7f\ \x1a\xaa\xec\x47\x7d\x12\x38\x21\x39\xd5\x09\x9a\x50\x20\xfe\x0c\ \xce\xfc\x41\x75\x02\xea\x14\x5f\xe5\x19\x1a\x11\x9b\xc2\x32\xb9\ \x62\x27\xf2\xaa\xae\xca\x78\x08\x91\xc1\x09\xfc\xa1\x2b\x4a\x05\ \x17\x94\x5e\x35\x28\xcc\x11\x98\xa3\x23\x8f\xc1\x55\x5d\xa0\xf0\ \x4a\xa2\xe2\x7e\x1a\xaa\xed\x67\x85\xd5\x57\x9b\x55\x57\x9b\x55\ \x57\x9b\x57\x9b\xd7\xfc\xa9\xff\xc4\x00\x29\x11\x00\x02\x01\x03\ \x02\x05\x04\x02\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x11\x02\ \x03\x12\x10\x60\x30\x31\x40\x41\x50\x13\x20\x21\x22\x51\xa0\x32\ \x61\x90\xff\xda\x00\x08\x01\x02\x01\x01\x3f\x01\xff\x00\x46\x27\ \xb6\xf9\xaa\xbc\x59\x69\xfd\x9e\xf8\x6e\x0b\x95\x2a\xd4\x22\xd5\ \x2e\x9e\x7b\xe6\x17\xec\x67\x89\x04\x18\x91\xbc\x20\xc4\x82\x07\ \xcb\x81\x08\xc4\x87\xba\x20\xc4\x8f\x73\xe4\x76\xe1\xe2\x62\x46\ \xdf\x82\x08\x23\x84\xf9\x1d\xb8\xf8\x98\x91\xb5\xe0\x82\x38\xef\ \x91\xd8\x9e\x86\x0c\x4c\x76\x7c\x10\x47\x47\x27\x32\x3a\x68\x31\ \x31\xd8\xf0\x41\x1d\x24\x92\x41\x1d\x64\x23\x12\x1e\xd7\x9d\x23\ \xc1\xc2\x31\x21\xf9\xc5\xd2\xcf\x8b\xc4\xc4\x8d\x95\x3a\x47\x90\ \xc4\xc7\x63\xc7\x95\xf8\xde\xae\xa4\x87\x7a\x91\xdf\xfc\x0e\xed\ \x4f\x79\x48\xee\xd2\x87\x7c\x77\xaa\x1d\x4d\xef\x27\x5a\x43\xbc\ \x87\x79\x8e\xe5\x4f\xcf\x2f\x29\x29\x0e\xed\x23\xbc\x3b\xb5\x12\ \xde\xf2\x75\xa1\xdd\x43\xba\xc7\x5b\xd9\x32\x4f\x88\x94\x87\x71\ \x1e\xa8\xeb\x7b\x4a\x49\xf0\x3e\xa1\x9b\x25\xed\x99\x24\x9e\xb2\ \xbe\x5a\x31\xdf\xfe\x8a\x6f\xfe\x7a\xa5\x4b\x7c\x8c\x4c\x76\x0c\ \x93\xd4\x5c\xd6\xfd\x3d\xf4\xb3\xfc\x7a\x55\x6e\xa6\x2b\x0f\xb8\ \xac\xd2\x2a\x69\x46\x46\x44\xbd\x89\x24\x93\xd2\x5c\xd6\xfb\xd2\ \xda\x8a\x7a\x05\x4b\x62\xb3\x50\xac\x2e\xe2\xb7\x4a\x25\x23\x23\ \x23\xe7\x66\x49\x24\xf4\x17\x35\xbc\xfe\xdc\x58\x91\x5b\xa9\x8a\ \xcf\xe4\x56\xa9\x22\x94\x64\x64\x4e\xd5\x92\x78\xb7\x35\xbc\xbe\ \xda\x5b\xaf\x2f\x7a\xa5\xb1\x5a\x62\xb2\x8c\x29\x44\x99\x13\xb7\ \xa4\x9e\x0d\xce\x5a\xd7\x4e\x48\xb5\x4b\x4d\x90\xb4\x89\x3d\x3a\ \x85\x64\x56\xe9\x3e\x11\x24\x93\xb9\xa4\x9f\x6d\x7c\xb5\xc5\x9e\ \x93\x3d\x34\x62\x91\x24\x93\xbb\xe4\x9d\x30\x47\xc1\x24\xfe\x8f\ \x9f\xff\xc4\x00\x3a\x10\x00\x01\x02\x04\x02\x06\x08\x05\x04\x02\ \x02\x03\x00\x00\x00\x00\x01\x00\x02\x03\x21\x22\x71\x11\x60\x12\ \x23\x31\x50\x72\x81\x04\x10\x20\x32\x40\x51\x70\x91\x30\x33\x41\ \x61\xa1\x13\x42\x52\x62\x92\xb1\x34\x82\xa2\xc1\xd1\xff\xda\x00\ \x08\x01\x01\x00\x06\x3f\x02\x3e\xb9\x9f\x5c\xcf\xae\x67\xd7\x33\ \xeb\x99\xf5\xcc\xfa\xe6\x7d\x73\x3e\xb9\x9f\x5c\xcf\xae\x67\xd7\ \x33\x9d\x71\x8a\xfc\x3c\x87\xd4\xac\x20\xc2\x0d\x1e\x6e\x55\x68\ \x3c\x79\x68\xad\x1e\xe4\x4f\xe2\x73\xd9\xce\x84\xf9\x04\x5e\xf2\ \x4b\x8f\xd4\xf5\xfd\x5b\x0d\x93\x7b\xb3\xd9\xce\x84\x79\x8e\xc4\ \x00\xd1\x86\x2d\xd2\x37\x44\x67\xa3\x9d\x62\xb3\xc9\xc8\x69\x77\ \x71\x9a\xd1\x82\x1b\xa4\xd9\xc2\xff\x00\xe2\x85\x05\xe4\x17\x31\ \xb8\x1c\x33\xd9\xce\xa2\x27\xf3\x6f\x54\x0c\x7c\xbf\xf7\x9f\x0e\ \x75\xfd\x38\x81\xd4\xcc\x60\x70\x5a\xb8\xd1\x05\xdb\x8a\x87\x01\ \xf3\x73\x7f\x2a\x6d\xcf\x67\x3a\xb5\x9d\x16\x26\x83\xb0\xa8\xe1\ \x8a\xff\x00\x95\xff\x00\x80\x40\x74\xa8\x82\x2c\x3c\x67\x48\x18\ \x67\xc3\x9d\x5f\x17\xf9\x1e\xb8\x2e\x3f\xc7\x3d\x9c\xe9\x10\xfd\ \x48\xd1\x1d\x80\x3c\x9c\x46\x7b\x39\xd0\x41\x1b\x21\xed\xbf\x62\ \x28\xfe\xd9\xec\xe7\x37\xc5\x3f\xb4\x22\xe7\x6d\x27\x13\xd8\x8c\ \xdb\x1c\xf6\x73\x9b\x3a\x38\xe2\x77\x66\x20\xf3\x66\x7b\x39\xc8\ \xb9\xdb\x04\xca\x7c\x53\xfb\x8f\x64\x0f\x36\x9c\xf6\x73\x90\x82\ \x36\xc4\xdb\x64\xd8\x6d\xda\xe3\x80\x51\x21\xb7\x63\x4e\x1d\x88\ \x3c\x58\x67\xb3\x9c\x8e\x96\xcc\x06\x8d\x93\xe2\x1d\xac\x12\x0a\ \x3f\x17\x61\x8e\xf2\x70\xcf\x67\x39\x08\xa3\x6c\x3f\xf4\x98\xe3\ \xdd\x34\xb9\x45\xbf\x65\xa7\xcc\x67\xa3\x9c\x8b\x5d\xb0\x8c\x0a\ \x7c\x27\x6d\x69\xc1\x08\x9f\x5d\x10\x0f\x66\x11\xfe\x83\x3d\x1c\ \xe6\xc8\xe3\xf7\x52\xee\xd4\x1e\x01\x9e\x8e\x73\x7c\x3f\xa9\x12\ \xbf\x6a\x0f\x06\x7a\x39\xd0\x91\xdd\x7d\x43\xb3\x07\x80\x67\xa3\ \x9d\x03\xce\xd6\xba\x5d\x98\x63\xfa\x0c\xf4\x73\xa4\x28\x5e\x67\ \x1e\xc8\x1e\x43\x3d\x1c\xe8\x5c\xd8\x78\xb0\x0c\x1b\x34\x1d\x15\ \x9a\x20\x9c\x36\xf5\xb2\x23\xa2\xb3\x09\x3b\x0c\xf6\x73\xab\x38\ \xfa\xd9\xc2\x33\xd9\xce\xac\xe3\xeb\x67\x08\xcf\x67\x3a\xb3\x8f\ \xad\x9c\x23\x3d\x9c\xea\xce\x3e\xb6\xd8\x67\xb3\x9d\x59\xc7\xd6\ \xdb\x67\xb3\x9d\x59\xc7\xd6\xdb\x67\xb3\x9d\x59\xc6\x87\x53\x6d\ \x9e\xce\x75\x67\x1a\x65\xfa\x85\xb3\xd9\xce\xac\xe3\x50\xb8\xba\ \x85\xb3\xd9\xce\xac\xe3\x50\x47\xf6\x5c\xd0\xb2\xa9\xe0\x29\x62\ \xeb\x05\x4b\x3d\xd7\xed\xf6\x55\xb0\x8b\x29\x3c\x73\xce\xa7\x3a\ \x4c\xe0\x98\xd6\xb8\x13\xa4\xa1\xbb\x0c\x70\x2b\x9a\xa9\xee\xed\ \xd2\xe2\x14\xf0\x72\xa9\xa4\x2a\x5e\x33\x89\xce\x15\x3d\xa1\x4b\ \x49\xca\x96\x01\x75\xdf\xc2\xca\x67\x14\x2e\x9a\xb9\xfc\x4a\x5e\ \x42\xa8\x07\x2a\x81\x6a\xa5\xc0\xe6\xd3\x9a\xea\x20\x2e\xfe\x36\ \x54\xc3\xf7\x52\x21\xb6\x0a\xa7\xb8\xf3\xed\x0b\xa0\x8d\xfc\x04\ \x9e\x55\x4d\x05\x4f\x16\xdd\x52\xe0\x73\x49\xcc\xf5\x44\x6a\xa5\ \xae\x72\xa5\xad\x0a\x71\x0f\x2f\x86\x2e\x82\x37\xf0\x92\x7f\xba\ \xa9\x9e\xcb\x6e\x17\x52\x20\xe6\x53\x98\xaa\x70\x1c\xd7\x78\xba\ \xc1\x51\x0f\xdc\xae\xf6\x8d\x82\xa9\xc4\xdc\xfc\x71\x75\xc9\x1b\ \xf8\x79\x1c\x17\x7b\x1b\xaa\xd9\xec\xbb\xf8\x5d\x4b\x30\x9c\xbb\ \x35\x38\x83\x92\xa5\x8e\x2a\x90\xd6\xaa\xa2\x3b\xc2\x0b\xae\x48\ \xdf\xc5\xd2\x48\x5b\x43\xae\xaa\x61\x16\x52\x78\xcb\xc7\x2c\xd4\ \xf6\x8e\x6a\x58\xba\xc1\x51\x0c\x0b\x95\xdf\xc2\xca\xa2\x4d\xfc\ \x40\xba\x36\x46\xfe\x3e\x97\x10\xa7\x83\x95\x4d\x21\x52\xf1\x96\ \x8e\x54\x99\x01\x7c\xcc\x6c\xa8\x86\x4d\xd4\xb4\x5b\xc9\x55\x11\ \xc7\x9f\x8d\x17\x45\x1b\xee\x3a\x5e\x55\x40\x39\x4f\x16\xaa\x5c\ \x0e\x56\x39\x42\xa8\x8d\x0a\x90\xe7\x2a\x58\xd1\x75\x38\x84\x59\ \x4c\xe3\xb8\xa4\xb1\x5d\xe5\x83\x59\x8a\xaf\x47\x96\xe4\x93\xca\ \xa9\x80\xd9\x4c\x96\xdd\x52\x41\xca\x47\x25\xd4\xe0\x2e\xbb\xfa\ \x56\x0a\x88\x5e\xe5\x48\x86\xd8\x2a\x9e\xe3\xcf\x72\xca\x6a\x7d\ \x53\x92\x9c\xd4\xb7\x4f\x7f\x1b\xaa\xd9\xec\xbb\xd8\x5d\x48\xe3\ \x93\x8e\x47\x9c\x56\xaa\x5a\xe7\x7e\x15\x2d\x6b\x54\xe2\xbb\x96\ \xe7\x99\x54\x85\x33\x8a\x90\x55\x15\x21\xbb\xe4\x70\x5d\xec\x6e\ \xab\x67\xb2\xef\xe1\x7c\x96\x72\x15\x4f\x68\xe6\xa4\x4b\xac\x15\ \x10\xbd\xca\xef\xe8\xd8\x2a\x9c\x4d\xce\xe9\x94\xd6\xdc\x3a\xbc\ \x97\x9e\xf6\xa5\xc4\x29\xe0\xeb\xaa\x98\x42\x93\xc6\x47\x3b\xf6\ \x67\x05\x38\x83\x92\xa1\x8e\x37\x92\xa4\x35\xaa\xa8\x8e\xdd\x73\ \x2a\x90\xa6\x54\x82\xa8\xa9\x0d\xf9\x4b\x88\x53\xc1\xca\xa0\x5a\ \xa9\x78\x39\x0c\xef\xbd\x16\xce\x21\xfc\x2f\x9a\x79\x2a\x89\x3b\ \xb6\x53\xeb\xf2\x5e\x79\x0e\x97\x95\x53\x43\x94\xf1\x6a\xa5\xc0\ \xef\xf3\xbe\xb1\x29\xd1\x0f\xd4\xee\xcd\xaa\x52\x53\x52\x0a\x65\ \x48\x64\x99\x3c\xf3\x55\xb0\x1b\x2d\xba\x37\x54\x90\x77\xd9\xdf\ \x4f\xf3\x32\xdd\x72\x9f\x62\x73\xc9\xf2\x5d\xfc\x6e\xab\x67\xb2\ \xef\x61\x75\x29\xef\x73\xbe\xa1\xb3\xef\x8e\xe8\xda\xa5\x2e\xb9\ \xe5\x69\x12\x17\x7b\x4a\xea\xb6\x7b\x29\x3c\x73\xde\x87\x7d\x34\ \x79\x37\x73\x4a\x7d\x89\xe5\xca\x5c\x42\x9e\x0e\x55\x34\x85\x4b\ \xc6\xf0\x3b\xe9\xfc\xb7\x24\xa5\xd7\x3c\xc7\x4b\xc8\x55\x00\xe5\ \x50\x2d\x54\xbc\x1d\xd8\x77\xd4\x5e\x2d\xc3\x2e\xc4\xf3\x4d\x2f\ \x2a\xa6\x82\x83\xc0\xc3\x1d\xd2\x77\xd4\x5e\x23\xe3\xfc\xb3\x74\ \xb1\x36\x5d\xcc\x2e\xaa\x78\x16\x41\x80\xe3\x86\xe9\x3b\xea\x2f\ \x11\xdc\x3b\x33\x36\xce\xaa\x20\x44\x3f\x7c\x15\x66\x1c\x3e\x78\ \xad\x6c\x67\xba\xd2\x52\x86\x39\xa9\x0c\x37\x61\xdf\x51\x78\x8f\ \xa0\x3b\x56\xc5\xf4\x0b\x08\x6c\x7b\xf8\x42\x9c\x30\xce\x32\xb5\ \xbd\x27\xfc\x1a\xa6\xc7\x44\xe2\x72\xd5\xc2\x63\x2c\x3b\x06\xfb\ \xb4\xef\xa8\xbc\x59\xf2\x65\x79\xa9\x35\x60\xdf\xc0\x52\xe8\xef\ \xbb\xa4\xb5\xb1\xa1\xb2\xd3\x5a\xc8\x91\x22\x7e\x15\x1d\x1a\x1f\ \x31\x8a\xc0\x48\x7c\x03\x7d\xda\x77\xd3\xf3\xc6\xd5\x20\xbe\x81\ \x6a\xe0\xc5\x7d\x82\xa8\x32\x1f\x13\x96\xb7\xa4\x38\xfd\x9a\x17\ \xc8\xd3\xe3\x38\xac\x21\xb1\xac\xe1\x18\x7c\x53\x7d\xda\x77\xd6\ \x3e\x6d\xce\x73\x21\x79\xad\x8b\x06\x07\x3b\x84\x2f\x90\x5b\xc6\ \x70\x5a\xee\x90\xd6\xf0\x8c\x55\x5f\xa9\x10\xfd\xdc\xb5\x5d\x1e\ \x1b\x7f\xeb\xe0\x8d\xf7\x69\xdf\x50\x9d\x71\x9b\xf6\xa9\x05\x80\ \xfc\x2a\x20\x45\x23\xcc\x8c\x16\xb1\xf0\xa1\xf3\xc5\x6b\x63\x44\ \x7d\xa4\xa9\xe8\xcc\x27\xcd\xd3\x58\x34\x06\x8f\xb7\x86\x37\xdd\ \xa7\x7d\x63\xfc\x4e\x39\xab\x6a\xfa\xaf\xa2\xc2\x1c\x38\x8f\xe1\ \x6a\xa9\x8d\x87\xc6\xe5\xae\xe9\x3f\xe0\xd5\x38\x46\x27\x1b\x96\ \xae\x13\x19\x66\xf8\xb3\x7d\xda\x77\xd3\xd9\xe6\x33\x3c\x82\xc1\ \xa3\x1b\x05\x28\x0f\x03\xcd\xd2\x5a\xd8\xf0\xd9\x69\xaa\xdd\x16\ \x27\x3c\x16\xaf\xa3\x43\x1f\x7c\x31\x58\x78\xf3\x7d\xda\x77\xdb\ \xbc\x9d\x50\xcc\x1b\x7a\xbe\x8b\x57\x06\x2b\xb9\x2a\xff\x00\x4e\ \x1d\xce\x2b\x5b\xd2\x1e\xee\x11\x82\x94\x00\xee\x33\x8a\xc1\x8d\ \x6b\x78\x46\x1b\x90\xdf\x76\x9d\xf7\x2e\xf8\xd8\xb0\x70\x2d\x3f\ \x7c\xb5\xb7\xab\x62\xc2\x1b\x5c\xee\x10\xbe\x56\x87\x19\xc1\x6b\ \x7a\x40\x1c\x01\x54\xd7\xc4\xe2\x72\xd5\x41\x86\xcb\x37\x74\x9b\ \xee\xd3\xbf\x26\x31\x5d\xcd\x1b\x2a\x22\x7b\xae\xe6\x36\x53\x96\ \x52\xda\xb6\x29\x2a\x60\x44\xc3\xcc\xc9\x6b\x22\x43\x67\xe5\x6b\ \x22\x44\x7f\xe1\x51\xd1\xd9\x73\x35\x80\x90\xfb\x6e\xd3\x7d\xda\ \x72\x05\x4d\x06\xea\x40\xb6\xca\x87\x83\x75\x38\x67\x96\x4a\xdb\ \xd7\xab\x84\xf7\x58\x2a\x83\x59\xc4\xe5\xad\xe9\x07\xfe\xa1\x7c\ \xad\x3e\x22\xb5\x6c\x6b\x2c\x37\x91\xbe\xed\x39\x12\xb6\x02\xa9\ \xc5\xaa\x87\x35\xdf\x85\x54\x37\x0c\x89\x83\x01\x36\x0b\xe4\x91\ \xc5\x25\xac\x8c\xd6\xf0\x8c\x55\x5f\xa9\x12\xe7\x05\xab\x81\x0c\ \x72\xde\xe6\xfb\xb4\xe4\x8a\xa1\xb4\xaa\x5c\xe6\xaa\x74\x5c\xab\ \x63\x86\xfe\x6c\x26\xed\x71\x43\x08\x41\xc7\xcd\xcb\x06\x80\xdb\ \x6f\xb3\x7d\xda\x72\x65\x50\xc7\x25\x43\xc8\xba\x90\x0e\xb2\xa9\ \xa4\x5f\x7d\x44\x8d\xfc\x46\x88\xed\x57\x15\x83\x9a\xc3\x4f\x9e\ \x12\x58\x83\x88\xde\xae\x0e\x05\xb3\x54\xbc\x1d\xd8\x72\x7c\xd4\ \xd9\x85\x95\x11\x3d\xd7\x73\x4a\xca\x60\x8b\xef\x6d\x2f\xe4\xe3\ \xd8\xd1\x84\xe0\xd9\x79\x2d\x64\x47\x9e\x7d\x74\x4d\xbf\x56\xfd\ \x10\x88\xcd\x9f\xeb\x79\x6b\x22\x31\xb7\x2a\x4f\x2f\xe1\x09\xc7\ \xcc\xf5\x52\xf2\xaa\x68\x72\x0f\xc3\x0c\x77\x49\xca\x75\x00\x6e\ \xbb\xba\x36\x54\x44\xf7\x53\x86\x4d\xb7\x9c\x1e\x1e\xc0\xb2\xc4\ \x6d\x1d\x82\xcf\xa3\x9b\xbb\x71\x74\x87\xdd\x55\xd2\x1b\x8f\x93\ \x66\xb5\x70\xa2\x3e\xf2\x54\x36\x1c\x3f\xca\xae\x3b\xcf\xdb\x1c\ \x3b\x1b\x0a\xd8\xab\x7f\xb2\x0d\x1b\x06\xe9\x39\x5e\xa6\x83\x75\ \x20\x5b\x65\x43\xc1\xba\xaa\x19\xe5\xbb\xe0\x8f\xe8\x3b\x02\xdd\ \x4e\x1f\x7e\xb1\xc2\x77\x4e\xb2\x34\x36\xf3\x54\x97\xc4\xb0\x5a\ \xae\x8e\xd1\xc4\x57\xce\xd1\xe1\x18\x2c\x5e\xf7\x3a\xe7\xae\x4b\ \xbb\xee\xa6\xe5\xb0\x95\xf4\x0b\x66\xec\x39\x6e\xb6\x34\xaa\x4b\ \x9a\xa9\x73\x5d\xf8\x55\x43\x70\xdd\x70\xf8\x07\xfa\xec\x72\xea\ \x7d\xfa\xe2\x3f\xc8\x61\xb9\x31\x7b\x83\x6e\x70\x53\x8e\x1c\x7f\ \xa8\xc5\x6a\xa0\x39\xdf\x77\x1c\x15\x1f\xa7\x0e\xc3\x15\xac\x8f\ \x11\xdc\xfb\x12\x6b\x94\xf0\x0a\x6e\x25\x77\x55\x2d\x53\x2b\x66\ \xef\x39\x7e\xa8\x6d\x54\x39\xcd\xfc\xaa\x74\x5c\xab\x61\x1b\x9d\ \x9c\x23\xb1\xc9\x13\xe4\xb1\xeb\xd2\xfe\x6e\xdc\x1a\xce\x91\x0c\ \x73\x54\x08\x91\x39\x60\xb5\x50\x18\xdb\xcd\x4e\x3b\x87\x0c\x96\ \x2e\x71\x37\x3d\x74\x82\x6c\xbb\xb8\x5d\x54\xff\x00\x65\xb0\x9b\ \xa9\x34\x0e\xa9\x05\x32\xb6\x6f\x23\x98\xe7\x0c\x72\x54\x3c\x8b\ \xad\x81\xd6\x55\x34\x8b\xee\x36\xf0\x8e\xcb\xbe\xf2\xec\x43\x67\ \x93\x7c\x5e\xb1\xed\x65\xca\xf9\xda\x7c\x03\x15\xaa\xe8\xe4\xfd\ \xdc\xe5\x27\x36\x18\xfe\xad\x5a\xd8\xcf\x7d\xdd\xd8\x93\x1c\xaa\ \x2d\x0a\xa7\x38\xa9\x30\x76\x24\x14\xca\xd9\xbd\x4e\x66\x9c\xd7\ \x73\x0b\x2a\x22\x7b\xae\xe6\x95\x94\xc6\x1e\x3d\x9c\x23\xb2\xc6\ \xfd\xfa\xdb\x8f\xf2\x1e\x1f\x13\x20\xab\xe9\x10\xec\x0e\x2b\x57\ \x0e\x24\x4f\xc2\xd5\xc2\x86\xcf\xca\xaf\xa4\x3f\x0f\x21\x25\x33\ \x8d\xfa\xe9\x6b\x8d\x82\x98\x02\xe5\x55\x13\xd9\x77\x71\xba\xa4\ \x01\xd9\x90\x53\x2b\x66\xf8\x39\xaa\xa0\x0d\xd7\x77\x46\xca\x88\ \x80\xdd\x4e\x19\xe5\xe3\x21\xf0\x0f\xf5\xd9\x85\x63\xd8\x0e\xfd\ \xc2\x4e\xbf\x82\xd6\x45\x63\x2e\xe5\x27\xba\x27\x0b\x56\xab\xa3\ \x7f\x9b\x97\xcd\x0c\x1f\xd0\x2c\x62\x44\x7b\xae\x7a\xe4\xbb\x87\ \x9a\xa9\xe0\x29\x97\x39\x53\x0d\xbd\xbd\x8a\x65\x48\x6f\xb3\x9b\ \xab\x68\x37\x52\xc5\xb6\x54\x3c\x3a\xea\xa8\x6e\xf1\x10\x4f\xf4\ \x1d\x9c\x5b\xde\x64\xc7\x5e\x96\x8b\xb0\xf3\xc1\x69\xb3\x98\xf3\ \x5a\x50\xcd\xc7\xd4\x7c\x4c\x5c\x43\x47\xdd\x55\xd2\x1a\x4f\x93\ \x66\xb5\x50\x62\x3e\xf2\x54\x36\x1c\x3e\x58\xad\x67\x48\x88\x7e\ \xd8\xf6\x29\x63\x8f\x25\x3c\x1b\x72\xaa\x88\x4d\x97\x73\x1b\xa9\ \x00\x3e\x06\xc5\x32\xa4\x37\xf1\xce\x55\xb1\xa5\x52\x5c\xd5\x49\ \x6b\x95\x6c\x70\xf0\x90\x38\x7b\x5f\xaa\xc1\xab\x76\xdf\xb1\xea\ \x86\xdf\xea\xab\x86\xc7\x72\x5a\x70\xda\x61\xbb\xcd\x87\xe0\x6b\ \x23\xc3\x6f\xfd\x95\x3a\x71\x2c\x16\xab\xa3\xb5\xbc\x47\x15\xf3\ \xf4\x78\x06\x0b\x17\xb8\xba\xe7\xae\x90\x4d\x97\x73\x0b\xaa\xe2\ \x01\x65\x3c\x5d\x72\xa9\x63\x47\x2f\x85\xb1\x4c\xa9\x0c\x82\x73\ \xb5\x50\xc2\xa1\xe5\xaa\x58\x3a\xca\xb6\x91\x71\xe0\x19\xf6\x24\ \x76\x8b\x5c\x31\x07\x68\x4d\x0d\xaa\x1b\xdd\x80\x3e\x4b\x0e\xcd\ \x6e\x6b\x6e\x70\x5f\x3f\x4b\x80\x62\xb5\x5d\x1d\xce\xfb\xb8\xe0\ \xa9\xd0\x87\x60\xb5\x91\xe2\x3b\x9f\x62\x98\x6e\x55\x16\xb5\x54\ \xf7\x15\x28\x63\x9a\x97\xc3\xd8\xa6\x54\x86\x44\x39\xea\x70\xc7\ \x25\x44\x42\x2e\xbb\xba\x56\x55\x02\x2f\xf1\x22\xb3\xc9\xf8\xfc\ \x0c\x56\xb3\xa4\x43\x1c\xf1\x54\x36\x24\x4e\x58\x2d\x5c\x16\x32\ \xf3\x53\xe9\x0e\x03\xc9\xb2\x55\x12\x6f\xd7\x4b\x49\xb0\x5d\xdc\ \x2e\x55\x71\x3d\x82\xd8\x5d\x72\xa9\x60\x1c\xbe\x2e\xc5\x32\xa4\ \x32\x39\xcf\xb3\x18\xae\xe6\x8d\x95\x11\x3d\xd7\x73\x1b\x29\xcb\ \xe0\x3e\x1f\xf2\x67\xfa\xec\x6b\x1e\xd6\x5c\xaf\x9a\x5f\xc2\x16\ \xab\xa3\xff\x00\x91\x52\x73\x61\x8f\xea\x16\xb2\x2b\xdd\x73\xd7\ \x25\x28\x6e\xe6\xaa\x73\x5a\xaa\x73\x9c\xa5\x0d\xbe\x02\x65\x48\ \x64\xa3\xe8\x0d\x4d\x06\xea\x40\xb6\xca\x88\x80\xdd\x4e\x19\xe5\ \xd9\x87\x17\xe8\x0c\xec\xb5\x70\xe2\x3f\xf0\xb5\x70\xe1\xb3\xf2\ \xab\x8e\xfc\x3c\x84\x94\xfa\xe9\x63\x8f\x25\x30\x1b\x72\xab\x89\ \xec\x17\x73\x1b\xaa\x5a\x05\xbc\x06\xc5\x35\x21\x93\x4f\xa0\xb5\ \xb0\x15\x4e\x2c\xb2\xa1\xcd\x77\xe1\x55\x0d\xdd\x72\x18\xaf\x96\ \x45\xd5\x51\x00\xb2\xab\x49\xca\x98\x6d\x1e\x0e\x6a\x59\x40\xfa\ \x13\x53\x1a\x56\x3f\xa7\x8d\xd4\x80\x1e\x12\x6a\x59\x4c\xfa\x39\ \x3c\xae\x7d\x73\x3e\xb9\x9f\x5c\xcf\xae\x67\xd7\x33\xeb\x99\xf5\ \xcc\xfa\xe6\x7d\x73\x3e\xb9\x9f\x5c\xcf\xae\x67\xd7\x33\xeb\x99\ \xf5\xcf\xff\xc4\x00\x2c\x10\x00\x01\x03\x02\x05\x02\x06\x03\x01\ \x01\x01\x00\x00\x00\x00\x00\x01\x00\x11\x31\x21\xa1\x41\x51\x60\ \x61\x71\x50\x91\x10\x20\x40\x81\xb1\xf0\x30\x70\xd1\xc1\xe1\xf1\ \xff\xda\x00\x08\x01\x01\x00\x01\x3f\x21\xbe\xfd\xe5\x05\x7d\xfb\ \xca\x0a\xfb\xf7\x94\x15\xf7\xef\x28\x2b\xef\xde\x50\x57\xdf\xbc\ \xa0\xaf\xbf\x79\x41\x5f\x7e\xf2\x82\xbe\xfd\xe5\x05\x7d\xfb\xca\ \x2a\xfb\xf7\x94\x55\xf7\xef\x28\x2b\xed\x6a\xd6\xc4\x61\xaf\x00\ \x45\x8f\x2a\x27\xb2\x7d\x96\x70\xcf\x84\x44\x7b\xe2\x78\x38\xeb\ \xa8\x2b\xee\x8c\x34\x76\xf7\x85\x15\x8a\xb9\x25\x7c\x59\x60\x96\ \x00\xe1\xb0\xdd\x45\x03\xb0\xa5\x75\xcc\x15\xf6\xb4\xde\xf0\x26\ \x62\x46\x45\xbc\x08\x21\x9c\x10\xe1\xc3\x89\x08\x0e\x3d\xd0\x52\ \x50\xec\x07\x5c\xc1\x5f\x6b\x40\xb2\xf8\xad\xc1\xaa\x8f\xbb\x1e\ \xdc\x50\x43\x16\x0b\x01\xb7\x64\x42\x7a\x75\x08\x4a\x64\x4c\x8a\ \xeb\x98\x2b\xed\x6a\xc3\x0a\x5e\x14\xfe\x78\x10\xc8\x96\x21\x5e\ \x5e\x10\xe3\x7d\x73\x05\x7d\xad\x4d\x82\x0d\x79\xf0\x52\x70\x62\ \x0b\x22\x70\x1e\x00\x58\x81\x53\xa0\x62\x7b\x23\x52\x39\x9d\x73\ \x05\x7d\xad\x47\xd0\xaf\x69\x46\x02\xab\xec\xfe\x2a\x2b\x04\x24\ \x6e\x04\x20\x41\x0e\x0b\x8d\x75\x05\x7d\xad\x09\x00\x39\x2c\x04\ \xa3\x1a\xc5\x6e\x30\xf0\x30\x8d\x2a\x60\x3e\xd4\xd7\x50\x57\xdd\ \x28\x68\xaa\x82\xde\xe9\x3e\x4f\xb6\x65\x7f\xdd\x75\x05\x7d\xad\ \x1c\xdd\x2e\xef\xfc\xf2\x3f\x93\x13\xdc\x6b\xa8\x2b\xed\x67\x16\ \x6e\x72\x70\x08\xd7\x39\xc4\xdf\xc9\xf5\xd6\x3a\xea\x0a\xfb\x59\ \xcc\xfe\x94\x1e\x56\xbe\x90\x1d\x75\x05\x7d\xac\x8d\xd3\x0d\xcd\ \x94\xd9\xb8\x06\x43\x01\xe5\xd9\x2b\xfe\xeb\xa8\x2b\xce\x9a\x34\ \x2b\xd9\xad\xd9\x40\x45\xc4\x46\x1d\xdd\xdb\xc8\xf0\xce\xe0\x6d\ \x75\x05\x75\xac\x84\x0d\x37\xda\xe5\xd1\xa1\x17\xb6\x3e\x51\x6b\ \xf1\xd7\x46\x75\xcc\x15\xd6\xb2\x6e\x55\xab\xca\x53\x8a\x6e\xc8\ \x53\x4f\x30\x36\xf2\x1a\x55\x6d\x6a\x6d\xae\x60\xae\xb5\x90\x2e\ \x73\xb8\x14\xac\x0f\xfa\x4f\x74\xf9\x90\x1b\xc8\x64\xb7\x8b\xe1\ \xd7\x30\x57\x5a\xcd\xb9\xd0\x3d\xc1\x1e\x62\x7f\xbd\x4d\x73\x05\ \x75\xac\xc5\x9d\x8e\x28\x55\xc6\x87\x1f\x28\xb7\x1b\x5c\xc1\x5d\ \x6b\x46\x78\xdf\xf5\x2f\xe4\x28\x18\x3f\x66\xd7\x30\x57\x5a\xd2\ \x07\x3f\x74\xf9\x26\x5b\x4d\xf0\xeb\x98\x2b\xad\x68\xc8\x06\x43\ \xf6\xf2\x33\x90\x33\x2c\xb6\x24\x1a\xe6\x0a\xeb\x5a\x30\x3c\x8c\ \xd5\x47\xba\x0b\x0d\x7c\x0d\x03\xa1\x8a\xbd\x80\x24\xb4\xeb\xa8\ \x2b\xad\x6b\xf7\xb6\xf0\x9b\x84\x0c\x1f\xa3\x6b\xa8\x2b\xad\x6b\ \xf7\xb6\xf0\x9f\x85\xf7\x19\x6b\xa8\x2b\xad\x6b\xf7\xb6\x3e\x13\ \xf0\xbe\xe3\x2d\x75\x05\x7d\xad\x7e\xb6\xde\x12\x2a\x47\xf6\x6d\ \x75\x05\x7d\xad\x7e\xb6\xde\x10\x56\x1f\x8d\x75\x05\x7d\xad\x7e\ \xf6\xde\x10\x56\x1f\x8d\x75\x05\x7d\xad\x7e\xf6\xc8\x1c\x19\x94\ \x61\x52\x2d\xbf\x1a\xea\x0a\xfb\x5a\xfd\xed\x90\xb8\x33\x14\x55\ \xbb\x5d\x41\x5f\x6b\x5f\xad\xb2\x06\x19\x8a\x33\xee\xad\xda\xea\ \x0a\xfb\x5a\xfd\x6d\x90\x6e\x82\xa4\xfa\x94\x14\x36\x2b\xf9\x15\ \x3a\x41\x82\xc7\x24\x13\xcb\x86\x48\x4f\x70\x27\x50\xe0\xe5\x42\ \x15\x0e\x35\x9c\x15\xf6\xb4\x00\xe2\x0d\xca\x0f\x34\xf2\xdc\x2c\ \xc3\x36\x52\xfd\x4a\x93\x5b\x3f\x9e\xd7\xe5\x60\x6b\x70\xac\x97\ \x55\x2c\x4e\x4e\xc7\x58\x41\x5f\x6b\x0f\x94\x45\xf1\x50\x32\x36\ \xfc\x75\x34\x7d\x84\x43\x73\x16\xe5\xfc\x02\xf5\x4f\xf9\x1d\x98\ \x9d\x41\x17\x62\xa4\x8b\xb8\x56\x2e\x3a\xb2\x0a\xfb\x55\x80\x7e\ \x54\xb2\xcf\x1d\xae\xb1\x91\xdc\x94\x59\x22\xf7\xbe\x74\x7c\x9f\ \x43\x18\x0f\xc8\xd5\x05\x6d\xa2\x93\x13\x62\x0a\xfc\x09\xd5\x10\ \x57\xda\x98\xd0\x39\x58\xa2\xc8\x17\x5f\xc4\x05\x7c\xda\xac\x0e\ \xe5\x42\x25\xcb\x92\x49\xdf\xf1\xa5\xb1\x5f\x43\x7f\x46\x28\x5c\ \x50\xa9\x70\x8c\xaa\x58\x7c\xee\x4a\x50\xcf\x62\x1a\xe2\x36\x3a\ \x92\x0a\xfb\x51\x0d\xef\xe9\x0e\x84\x5f\xf5\x54\x50\x02\x8f\xbf\ \xa0\xf3\x23\xe4\xbe\xae\xfe\x9c\x89\x39\x0b\x62\xb2\x8f\x63\xaf\ \xe8\x9a\x85\x02\xca\x84\x40\x1c\x81\x1b\x6a\x08\x2b\xed\x3a\x40\ \x1c\x80\x1b\xa9\x16\x72\xa9\x0d\x79\xa2\xf8\x66\x75\x20\x86\x40\ \xb0\x5b\xfa\x50\xdf\x6f\x75\x8f\xaa\x2c\xe5\x76\x2a\x48\x0d\x88\ \xae\xf1\x52\xc4\xd6\x46\x9a\x76\x0a\xfb\x4c\xdc\xb5\x24\x67\x41\ \x1f\x29\x2c\x87\xda\xc8\xb3\x95\xdc\xfe\xae\x13\x4c\xfa\xeb\x4f\ \x95\x80\xed\xc3\x2f\xef\x5a\x92\x3b\x3e\x99\x82\xbe\xd2\x83\x9c\ \x6e\xe5\x94\x88\x1e\x42\xe8\x3e\xe4\x4c\xbe\x1e\xbb\xe7\xd7\xa5\ \x02\xdf\xc2\x71\xe8\x50\x87\x67\x5f\xc0\x62\xa1\xfc\xc1\xc2\xb6\ \xb1\xd2\xb0\x57\xda\x43\xb0\x73\xba\x93\x3d\x83\x04\x5f\x7d\x27\ \x50\x69\x95\x28\x89\xb9\x8b\x72\xfd\x06\x1e\x51\xc2\x59\x5c\xd1\ \x8a\x72\x4b\xaa\xd5\x26\xd9\x1e\x62\x4b\x15\x8d\xba\x23\x05\xd9\ \x1a\xa0\xfb\xc5\x0a\x5c\x36\x20\x0f\xc2\x9d\x23\x05\x7d\xa2\xc7\ \xbf\x36\x65\xfd\x42\x58\x80\xee\xa8\x67\x45\xc3\x7a\x20\x90\x03\ \x92\xc3\x75\x88\x4e\xcb\x0a\x01\x92\xa8\xc2\xa7\x65\x90\x37\x41\ \xcc\xa8\x00\x60\x00\x64\x3a\x40\xa1\x71\x43\xb2\x81\x20\xca\xa4\ \x4c\x13\xb9\xac\xd1\xda\xc8\x4b\x88\x36\x3a\x36\x0a\xfb\x43\x1a\ \x07\x34\x1b\xac\x72\x64\x0b\xfc\x78\x07\x2e\x1d\x52\xb0\x69\x95\ \x01\x1a\x97\x35\x3b\xf4\x6c\xc0\xc8\x22\x28\xd6\xe5\x19\x5c\xe4\ \xbe\x4b\x40\x97\x36\x08\x6b\x08\x74\xf3\x2e\x62\xd8\xb2\xc9\x1d\ \xa8\x18\xa3\x72\x50\xa0\x59\x50\x81\x04\x38\x2e\x34\x4c\x15\xd6\ \x82\x01\xde\x52\x61\x54\x5c\x05\x40\x80\x71\x23\xef\xef\xe7\x48\ \x24\x00\xe4\x80\x14\x25\xf6\x52\x8c\x6c\xa9\xc9\x52\xf4\xee\xa5\ \xc3\xb7\xea\xc4\x1f\x81\x2a\x40\x0d\x88\x9e\xf6\x2a\xb1\x4f\x91\ \xa6\x86\x82\xba\xeb\xa0\x5c\x41\xb9\x53\x8c\xe5\x52\x01\x29\xf0\ \xe6\xea\x61\x8c\x9d\x87\x4b\xcc\x4c\x82\x3e\x8c\x72\x88\x8e\x62\ \x54\xec\x56\x2f\xb0\x14\x38\x3a\xe5\xbb\x8a\x84\xda\x5f\xd4\x60\ \xbe\x40\xb4\x14\x15\xd7\x5b\x6f\x08\xa9\x0f\x01\x9a\x0e\xc4\x1c\ \x00\x46\x1c\xde\xe5\xd0\xcc\xe9\x64\x80\x72\x40\x08\x58\xa6\x36\ \xc3\x20\xa8\xb0\x46\x6e\xa5\x2a\xdd\x71\xa0\xa1\x98\xc9\xdc\x2b\ \x35\x50\xac\x57\x6e\x10\x97\xe3\xcf\x5e\x82\xba\xeb\x44\x80\x24\ \x60\x2a\x56\xda\x96\xc3\x0f\x20\x24\x20\x68\x0a\x04\x1c\x7a\x2c\ \xed\x59\x04\x64\x50\x88\xe4\x4f\x28\xc5\x50\xa3\x65\x6c\x17\xcd\ \x9a\x23\x17\x58\x1e\xca\xa4\x07\x70\x26\x52\x84\x5b\x10\x67\x0b\ \xb1\xeb\x50\x57\x5d\x69\xdc\x0b\x51\xfb\xfe\x10\x48\xc5\x03\x40\ \x50\x20\xc7\xae\x24\x00\xe4\xb2\x1a\x09\x32\x58\x64\x3c\x30\x86\ \x19\x94\x2a\x05\x03\x00\xda\x38\x89\x39\x10\x76\x2a\x14\x83\x21\ \x74\x7f\xf5\x35\x9a\x79\x0b\x20\x0e\x40\x36\x3d\x5a\x0a\xeb\xad\ \x35\x9a\x22\xfc\xa0\x86\x28\x66\x08\x28\x1f\x51\x3d\x56\x41\x1d\ \x04\x24\x93\x92\x4a\x21\x30\x0e\x8e\x9b\x28\xb1\xef\xa5\x4c\x39\ \xdd\x8b\x29\x00\x0d\xa8\x89\x46\xe4\xea\x05\x1c\xa8\x42\xa1\xc5\ \x47\x52\x82\xba\xeb\x5f\x51\xdc\xfa\x11\x98\x86\x60\x81\xbd\x11\ \x20\x07\x25\x90\x90\x49\xa3\x4c\x87\x84\x70\xa6\x65\x09\x27\x41\ \x80\x60\x1b\x4d\x9f\xed\x65\x60\x6b\x70\x88\xb7\xd5\x48\x33\x91\ \x2c\x7a\x7c\x15\xd7\x5a\xe0\x00\x2d\xe9\x42\x86\x60\x81\x31\xfc\ \x93\xc7\xb2\x22\x08\x5c\x97\x25\xd0\x0e\x68\x1d\x1d\x91\x45\x0a\ \xef\xa8\xbe\x4a\x97\xf0\x88\xaf\xeb\x10\x5f\x29\x5d\x2e\x0a\xeb\ \xad\x1b\x93\xd4\x01\x21\x0e\x64\x03\x10\x80\x1c\x7c\xa4\x81\x25\ \x90\x70\x3a\x92\x3e\x10\x01\x07\x13\xa0\x00\x50\x36\xa8\x80\x63\ \x22\x5c\x20\x29\xbf\x8a\x21\x90\x03\x01\xe9\x10\x57\x5d\x68\xdc\ \x9e\xb2\x04\x88\x28\x17\x29\x99\x15\x85\x08\x5c\xd4\x97\x40\x22\ \x26\x8b\x06\x7e\x75\x39\x04\x90\x99\x87\x81\xf3\x09\x36\x28\x03\ \xe5\x64\x5d\xb8\xe8\x46\x00\xc4\x7a\x44\x15\xd7\x5a\xfb\xac\xfa\ \x03\x05\x96\x21\xc0\x81\x06\x0e\xa2\x24\x09\x20\x22\x0c\x5f\x84\ \x72\xf7\x27\x0b\x03\xec\x15\x58\x5e\x66\x0b\xa8\x2c\xdd\xcb\x23\ \x83\x87\x10\x08\x94\x10\xc4\xd6\xa4\x05\x80\x1b\x0e\x97\x05\x7d\ \xd6\xa9\xfa\x55\xe8\x80\x18\xa1\x98\x20\x65\x3a\x6a\x50\x51\xc1\ \x22\xb2\x08\x7d\x0b\x22\x94\xd2\x42\x9c\x42\x2c\xa4\x08\x6d\xfe\ \x85\x4b\xf7\xb5\xd8\x20\x0d\xc7\x2e\x89\x26\x4f\x84\x95\xfb\xa6\ \x41\x5f\x75\xa1\x61\xee\xe9\x03\x39\x0c\xc1\x03\x63\xa4\xa1\x01\ \xee\x81\x82\x78\x05\xff\x00\x40\xa0\x7d\x42\x72\x79\x32\x16\xa7\ \x63\x74\xda\x41\xe4\xe3\x55\xc2\x5c\x81\xb2\x85\x87\x37\x17\x42\ \xc0\x0a\x79\xe4\x15\xfb\xa6\x41\x5f\x75\xae\x42\xc6\xdd\x30\x0b\ \x74\x33\x84\x09\x8e\x89\x34\x9a\x29\x61\xf6\x58\x94\xa8\x01\x17\ \x82\x59\x56\x85\xf2\x1e\xc1\x08\xc7\x8d\x77\x2b\x38\x33\x2a\x08\ \x61\x6c\xfe\x40\x90\xaf\xdd\x32\x2a\xfb\xad\x32\xe4\xcf\x4f\x04\ \x88\x28\x72\x20\x18\x84\x09\x07\x40\xc1\x24\x0c\x3a\x13\x00\x1c\ \x94\xf2\x76\x4e\xaa\xa3\x1c\xc6\x87\x57\x66\x39\x5d\x35\x11\xe1\ \x43\xb0\x5d\xd0\xc0\x13\xdc\xa2\x46\x49\xf4\x02\x42\xbf\x74\xc8\ \xab\xee\xb5\xf4\x26\x7d\x4c\x12\x20\xa0\x58\xd5\x00\xe1\x02\x0c\ \x1e\xb0\x48\x12\x40\x40\xe6\xe1\x07\x17\xdd\x12\xa8\x3e\x40\xe5\ \x57\x8a\xb2\x0b\xaa\xe0\x5f\x76\xca\xba\x5f\x21\x03\xfe\xa6\x82\ \x21\xb9\xba\x01\xb0\x80\xb0\xf2\x0f\x42\x24\x2b\xf7\x4c\x82\xbe\ \xeb\x5c\x25\xff\x00\x1d\x5c\x02\x0a\x07\x88\x40\x9b\x20\x41\x83\ \xd4\x24\x05\x05\x00\x96\x08\x07\x2b\xdc\xc8\x13\x51\x09\x98\x1f\ \xb2\x1f\xf8\xff\x00\xa1\x52\x25\x99\x0d\x83\x21\xcd\xc5\x41\x12\ \x4c\x97\xf5\x22\x42\xbb\x74\xc8\x2b\xee\xb5\xb8\x38\x55\xc6\x7a\ \xd0\x16\x28\x67\x08\x13\x16\x40\xf4\x72\x40\x92\x02\x23\xc5\xf8\ \x5f\xf4\x4a\x76\x22\xc9\xe5\x59\x28\xc5\x6d\xd5\x78\x46\x42\x4f\ \xf8\xa7\xf7\x76\x6c\xa5\x4b\x33\xd7\x4e\x72\x06\x43\xf2\x0f\x44\ \x24\x2b\xb7\x4c\x82\xbe\xeb\x74\x00\x6f\xfb\x17\xeb\xc0\x58\xa1\ \x9c\x20\x6c\x7a\x00\x12\x08\xe0\x02\x53\x86\x0c\x50\x4b\x98\x68\ \x55\x32\x0f\x3b\xb0\x55\xad\xa4\x21\xdd\x56\xca\x8c\x48\xad\xa4\ \xe4\x0f\x87\x43\x12\x15\xdb\xa6\x41\x5f\x75\xba\x4b\x45\x53\xff\ \x00\x11\x88\xe2\x40\x68\x00\x48\x84\x01\xba\x03\x88\x40\xd8\xfa\ \x72\x09\x00\x88\xb3\x2b\x24\x07\x25\x03\xa3\x64\x52\xab\x65\x8c\ \xc3\x62\x95\xb7\x3b\xf2\x9b\x89\x1f\x60\xfb\x04\x1f\xb2\x0f\xdd\ \x39\x32\x49\x43\xd1\x8f\x46\x24\x2b\xb7\x4c\x82\xb8\xeb\x24\x81\ \x2b\x05\x54\x4e\x2c\x84\xb0\x83\x70\xeb\x3b\x33\x36\x46\xff\x00\ \x31\x53\x46\x39\xd6\x80\x93\x01\x2c\x8e\x80\x04\x88\x28\x73\x20\ \x38\x84\x09\x04\x7e\x72\x14\x23\x81\x27\x2c\x2e\x72\x01\xd5\x65\ \xe3\x05\x97\x55\x0d\x9c\x12\x76\x4c\x64\xbe\x41\x85\x34\x17\x63\ \x05\xf7\x50\x11\x90\x0c\x3a\x60\x90\xae\xdd\x32\x0a\xe3\xab\x81\ \xba\x2a\x28\x8d\x67\xce\x25\x85\xec\x75\x30\xbb\xd0\xf5\xdb\x41\ \x96\x15\x73\xa8\x2c\x5b\x40\x02\x10\x50\x3c\x40\x28\x63\x38\x40\ \x83\x07\xcc\x41\x20\x88\x73\x2b\x60\x0e\x51\xf6\x57\xd7\xc3\xe7\ \x53\xb0\x52\x88\xd9\xbb\x95\x51\x79\x66\x72\x81\x37\x0d\x84\xe4\ \xcf\xe0\x08\x74\x71\x21\x5d\xba\x64\x15\xc7\x54\x0b\x15\x92\x11\ \x24\xc9\xfc\xc2\xfb\x98\x55\x92\x3e\xc5\xc2\x8a\x4d\xea\x51\x71\ \x9b\x38\xd0\x20\x10\x50\x3c\x42\x3b\x13\x80\xb9\x3c\xaa\xac\xf3\ \x34\xae\x6d\xc4\x25\x5a\x32\x70\x3b\x05\x34\x39\xd6\x6e\x9c\xb3\ \x3d\x32\xea\xa2\x42\xbb\x74\xc8\x2b\x8e\xa2\x48\x12\x51\xca\x11\ \x36\x3e\x97\xbc\xc3\x55\x4d\x4f\x70\xa6\x41\xd8\xb1\x46\x7b\x88\ \xeb\xd8\x2a\xc1\xb6\xe8\x48\x1f\xbe\x4a\x60\x03\x20\x6f\xc8\x3c\ \xa3\xa4\x89\x0a\xed\xd3\x20\xae\x3a\x79\x0c\x2a\x89\xb6\xf5\x98\ \xd9\xce\x82\x8a\xec\xe0\xea\x30\x77\xa3\xec\x6f\x67\x5a\x19\x61\ \x07\x21\xff\x00\x88\x78\x0f\x00\x15\xe4\x50\x18\x5f\x6c\xe6\x82\ \x43\x12\x08\x2e\x0f\xe4\x1d\x22\x0e\x53\xcc\x38\xc3\xc8\x95\xd8\ \xb9\xfa\x5c\x15\xc7\x4c\x22\x44\xb0\xa2\x25\xe7\xa0\x90\x01\x80\ \x11\x91\x55\x80\x96\x74\xa9\x86\x1b\x0a\xcb\xcc\xcd\xd1\x96\x33\ \xb1\xba\xb6\xfc\x3b\xb5\x3c\x83\xd3\x46\x24\x40\x08\x64\x50\x00\ \x20\x78\x3b\x89\xc9\x65\xfc\x28\xe8\xd5\x20\xc9\x64\x7f\x08\xe9\ \x00\x13\x01\x09\x7e\x17\x0a\xbe\x71\xbf\xf2\x9a\x98\x21\xbf\x84\ \x73\xd9\xdc\x2b\x15\x50\xa1\x88\x20\xc0\x7a\x44\x15\xc7\x49\x20\ \x31\x47\x20\x44\x93\x27\xa4\x06\x60\xb9\x03\xac\xee\xcc\xd9\x4c\ \x11\xd8\x54\x70\x67\x5a\x34\x2c\x68\x72\x3d\x49\xbb\x9b\xbb\x93\ \xe4\x07\x46\x80\x65\x6f\xb7\x91\xf6\xd7\x12\x37\x1f\x84\x21\xd0\ \xcc\x3c\x0c\xe2\x60\x9c\x41\x21\xb9\xb2\xef\x58\xc1\x51\xd9\xc3\ \xae\xa8\x43\xb2\x31\x64\x48\x77\x35\x39\xa6\x78\x23\x0d\xec\xa0\ \x69\x46\x96\x36\x47\xa3\xdc\xe9\x10\x57\x1d\x18\x94\x72\xa2\x4e\ \x9e\x29\x87\xec\x53\x17\xb9\x57\xb6\x70\x62\xb0\xf3\x9d\x43\xa7\ \x18\x5b\x59\xf1\x21\xe2\x0f\xe0\x4d\x7c\x0f\x10\x3e\xc9\x7d\x68\ \xfc\x60\x13\x01\x06\xf6\xd2\x2f\xd9\x39\x02\x1c\x63\xb9\x45\x77\ \x97\xfe\x16\x44\xe4\x24\x7a\x23\x99\x30\xb8\x22\x8c\x4f\x01\x63\ \xe1\xc9\x61\xa1\xc0\x51\x9c\xf8\x53\x83\x80\x2c\xd4\x73\x3d\x2e\ \x0a\xe3\xa2\x10\x44\xfa\xb0\xde\xea\x15\x74\x8e\xc5\xc2\xac\x89\ \xee\x5d\xf6\x1a\x9d\x2a\x4e\x10\xb0\xf2\xf8\x5e\x41\xa7\xc0\x27\ \x27\x89\xdc\x9b\xdd\xf8\x07\xac\x18\xc3\xcc\x48\xe6\x32\x41\x91\ \xd0\x6c\xc0\x3b\x28\x70\x79\x5d\xca\x8f\xcc\x8b\x42\x71\x2e\xe1\ \xd3\x30\x05\x3b\x05\x36\xbd\x99\x4a\x7d\xf7\x40\x5a\x28\xa0\xc7\ \xde\xaa\x95\x43\xb2\x29\xc3\xe1\x40\xb8\xe6\x7a\x74\x15\xc7\x41\ \x20\x11\xca\x8d\x7a\xe4\xfc\x39\xb3\x15\x7c\x4a\x16\x14\x76\x2c\ \x51\x66\xe4\xc7\x46\x81\x51\xbe\xcc\x3c\x82\xe2\x8d\x3b\x00\xe9\ \xe4\xc6\xbe\x2e\x06\x2a\x43\xec\x29\xf8\x02\x1e\x8c\x78\xb1\x67\ \x6a\x66\xa6\x47\x2a\xcd\x95\x1c\xbe\xcc\x5d\x50\x01\xe6\x64\xd5\ \x3c\x6e\x42\xdb\x23\xb8\x9c\xde\xf0\x0e\xd4\xf1\xb8\x02\x94\xf7\ \x08\xbf\xc4\xa5\x39\x25\x66\x81\xe1\x2a\xa2\xe5\xf0\xa0\xdc\x73\ \x3d\x46\x0a\xfb\xd7\x12\x16\xc4\x49\x3a\x0b\x06\x30\xab\x02\x9c\ \xe8\x28\xde\xd8\x2e\xa3\x85\xde\x8c\xb1\x9d\x8d\xd0\x8c\x2f\xb4\ \xcb\xc4\x20\x70\xe1\x7d\x89\x5f\x13\x0b\x60\x61\xe7\x1e\x8c\x02\ \x60\x20\xee\x3b\x6c\x2c\x48\x79\x15\x02\x71\xc6\x2b\x04\xec\x3d\ \xf8\x77\x28\xeb\xf2\x52\x67\x2f\x64\xdc\x02\x70\xb0\xb2\xc1\xc6\ \x66\x88\xcf\xea\xa1\x7f\x82\xbe\x71\xd5\x45\x07\x8c\xea\x8b\xfe\ \x41\x43\xd7\x99\xea\x90\x57\x9e\xb0\xa1\x2d\x12\x00\x18\x00\x64\ \x54\xf8\x9e\x74\xac\x6f\x6c\x56\x56\x66\x6e\x85\x91\x8b\x22\x1b\ \xd7\x18\x5f\x41\x97\x90\x5c\x38\x4d\x66\x88\xf8\x88\x06\x05\xce\ \xea\x4f\x38\x43\xf3\x1b\x80\x68\x16\x3a\xb7\x5b\x29\x26\xdd\x85\ \x3b\x81\x79\x97\x34\xf4\x1d\xb1\x59\x64\xf1\x77\x99\x93\xaf\x71\ \x1d\xbe\x2c\x01\x08\x3c\x6e\x01\x7f\xb6\x9d\x00\x6e\x10\x79\x67\ \x55\xff\x00\x2d\x43\x8b\xe6\x7a\xbc\x15\xd2\x1e\xa1\xf4\x88\x33\ \x05\xd8\xea\x3c\x8f\x7a\x16\xbb\x40\xb2\x98\x03\x3a\x91\xa1\x63\ \x43\xbf\xaa\x91\x56\x4c\xfe\x17\x80\xf0\x1b\x50\x11\x95\xfc\x3c\ \x9b\x43\x1c\xbd\x08\x02\x60\x3a\x10\xfc\x74\xfd\x94\xcf\x7b\x5d\ \xca\xc0\x43\x77\x2c\x13\xc0\x04\xb0\x08\xba\x7e\x37\x7c\xa6\x71\ \xec\x88\xe0\x10\x3d\x85\xf8\x0e\xa1\xc6\x3d\x88\xcb\x58\x75\xf3\ \x10\xca\x24\x7b\x79\xe2\x4f\xdd\x7f\x2c\x28\x93\x9e\xb5\x05\x75\ \xab\x81\x1b\x87\x28\xc9\xf7\x51\x76\xc2\xa0\xa8\x98\x33\x01\xc7\ \xa7\x30\x56\xf2\x7c\x7e\x40\x46\x48\xe4\x6b\x31\x88\xf1\x8c\x36\ \x51\x32\x0c\x38\x78\x3c\x0e\x4a\x73\x04\xf7\x7c\xa3\xce\x43\x71\ \x03\x60\xa8\xfc\xb0\xd9\x51\x77\x43\x03\xfe\xa7\x40\x3f\x67\x2e\ \xa0\x83\x23\x45\x91\x2e\x72\x6a\x9a\x8e\xd0\xad\xc0\x9f\xef\xe1\ \x0d\xda\x01\x96\x11\x2d\xee\x86\xb0\x8d\x83\x7e\x08\x9e\xe5\xff\ \x00\x39\x44\x9d\x76\x0a\xeb\xd2\x3e\x9e\xef\x6a\x45\x54\xde\xf7\ \x0a\x3f\x7b\x15\xde\xd5\xa9\xe9\x1e\x9c\x7b\x13\xe4\x07\x40\x27\ \xda\xc2\x81\xf6\x62\x8d\x02\x24\x05\x04\xfb\xd5\x5c\x50\x50\x00\ \x9e\x09\x08\x45\x4b\xef\xe5\x08\x11\x80\x57\x6d\x92\x0f\xd8\x2a\ \x51\x9f\x8c\x77\x2a\x95\xbd\x1c\xac\xa8\x84\x87\x20\x2b\xf1\xf9\ \xbc\x98\x44\x32\x4f\x9b\x84\x3a\xc6\x5c\xac\x88\xb0\x1f\xc2\xf1\ \x60\xcf\xc4\x89\xee\x5f\xf3\x94\x69\xa0\x20\xae\xb5\xb4\xe9\x39\ \x80\xc5\x57\xb6\x23\x50\xa3\xa3\xdc\xc6\xe8\x83\x7e\x77\x02\x6e\ \x7f\xef\x79\x87\x04\x66\x26\x21\x3b\x40\x4d\xd0\xc1\x4c\x18\x10\ \x28\x3c\x81\x04\x71\xbb\x5f\x25\x26\x07\x91\x11\xd8\x70\x4d\xd8\ \x2a\x23\x7e\x73\xdc\xae\xd7\x24\xd9\x51\x92\x6a\x9b\x09\x53\xc4\ \x66\xcc\x17\xcd\xa3\xa0\x6d\x34\x53\x24\xe7\x52\x00\x0c\x00\x0d\ \xbf\x1c\x47\x72\x1f\xf2\x51\x66\x83\x82\xba\xd7\x24\x02\x18\xd4\ \x2a\xe0\x07\x3a\x51\xb5\xda\x05\xd4\x58\x0e\xf4\x59\x8a\xec\x6f\ \xc6\x16\xc2\x5d\xc3\xfe\x7e\x06\x2d\x93\x35\x28\x19\x07\x2c\xa8\ \xe6\xb6\x62\xe9\xd0\x0e\xcc\xc9\xff\x00\x15\x17\x88\x1b\x22\x2e\ \x57\x32\x74\xc4\x54\xab\x2b\x26\x40\x54\x54\xd3\xca\x16\xdb\xfc\ \xa8\x86\x72\x85\xfc\x94\x59\xa1\xa0\xae\xb5\xe8\x96\x10\x64\x43\ \xaa\xfd\x4c\xcd\x96\x37\xb6\x2a\x7c\xc7\x33\x74\x04\x98\x09\x64\ \x69\xf8\x1c\xa3\x8c\x39\x2f\x10\x09\x80\x9f\x1c\x36\x14\x49\x3b\ \xe5\x0d\x42\x1d\xff\x00\xcc\x27\xe1\xef\xc7\xb9\x46\x1f\x9f\x55\ \x19\x26\x20\x44\xc0\xe7\x65\x87\x0c\xe8\x56\x2c\xaa\xfe\x41\x2c\ \x4b\x66\x43\xa1\x40\xc2\x83\xf3\x60\x0d\xca\x16\x77\x0a\x38\x1a\ \x26\x0a\xeb\xf4\x08\x96\x13\xb1\xd4\xd2\xef\x42\xd7\x69\x16\x53\ \x9c\x67\x50\x58\xb1\xa1\xf2\x3c\xff\x00\x58\x53\xb0\xdc\x4b\x0a\ \xa4\xee\x2c\xfb\xaa\x06\xec\x32\xca\xa2\xf5\x1c\xca\x70\x8a\x5b\ \xb5\x22\x89\x18\x84\xec\xac\xc9\xde\xe8\x0b\x70\x66\xf4\x19\x03\ \x94\x3c\x4e\xa1\x81\xa3\x22\xae\xbf\x42\x83\x6e\x4c\x2a\xd3\xad\ \xce\x17\x6e\x43\x52\x8f\x83\x36\x70\x8b\x04\x4a\x72\xc6\x2d\x83\ \xa8\x50\x3d\xa8\xfb\x59\xd4\xa8\xbb\x96\x0b\xbb\x63\x7a\x2c\x01\ \xb9\x58\xa3\xa8\x40\x1a\x3e\x2a\xeb\xf4\x4f\x7d\xc6\xaa\xa0\x82\ \xdc\xe8\x4b\x08\xd8\x37\xa3\xc0\x1b\x95\x8c\x12\xa0\x00\x69\x28\ \xab\xaf\xd3\x64\xe0\xdc\xac\x41\xd4\x00\x03\x4a\xc5\x5d\x7e\x98\ \x27\x6e\x50\x12\x5d\x40\x06\xd3\x11\x57\x5f\xa5\x4b\xdb\x94\x14\ \x97\x40\x20\x1b\x4d\xc5\x5d\x7e\x91\xe1\x13\xb2\x02\x6a\x80\x02\ \x03\x69\xe8\xab\xaf\xd1\xcc\xf0\x8b\x9a\x20\x26\xa8\x00\x20\x6a\ \x18\x2b\xaf\xc6\x3f\x40\x33\xc2\x2a\x68\x80\x9a\xa0\x00\x8d\x49\ \x05\x75\xfa\x20\x07\x80\x81\xa6\x88\x0a\x6a\x80\x02\x35\x3c\x15\ \xd7\xe8\x51\x58\x45\x4d\x10\x14\xd5\x0a\x6a\xa8\x2b\xaf\xd0\x41\ \xcc\x20\x46\x68\x80\x37\x43\x56\xc1\x5d\x6b\xf0\x1e\x16\x22\x88\ \x03\x7d\x63\x05\x75\xaf\x00\x78\x40\xb1\xa2\x00\xdf\x5a\x41\x5d\ \x6b\x90\x09\x84\x0b\x14\x04\x6b\x78\x2b\xad\x6c\xc4\xa0\x78\xa0\ \x23\x5d\x45\x5d\x6b\x30\x09\x84\x0d\x01\x1a\xf6\x2a\xeb\xd1\x0d\ \x3c\xc5\x05\x01\xfa\x02\x0a\xeb\x57\x04\x03\xc8\x35\xfc\x17\xff\ \xda\x00\x0c\x03\x01\x00\x02\x00\x03\x00\x00\x00\x10\xac\x20\x92\ \x08\x05\xbe\xfb\xef\x3c\xf3\xae\xfc\x0c\x30\xc3\x0c\x30\xc2\x0c\ \x70\xc3\x0e\x70\xc3\x0c\x20\x96\xfb\xef\xbe\xfb\xeb\xb6\xfa\xa0\ \x82\x08\x30\x82\x48\xa0\x12\x08\x20\x83\x0f\xff\x00\xff\x00\xff\ \x00\xff\x00\xff\x00\xbf\xff\x00\xed\x0c\x30\xc1\x0c\x30\xc1\x08\ \x30\x02\x0a\x39\xd2\x28\x20\x82\xdb\xef\xbe\xfb\xef\x98\xfb\xeb\ \x42\x08\x30\x82\x09\x22\x82\x08\x20\x83\x0d\x30\xc3\x0c\x0a\x02\ \x08\x28\x80\x03\xef\xbe\xf7\xcf\x3c\xdf\x4a\x03\x0c\x30\xc3\x0c\ \x20\xc3\x2c\x30\xc3\x2c\x30\xc3\x08\x2d\xbe\xfb\xef\xbe\xfb\xbf\ \xbe\x28\x20\x82\x0c\x20\x84\x08\x21\x82\x48\x30\xd3\xff\x00\xff\ \x00\xff\x00\xff\x00\xff\x00\xfa\xff\x00\xfb\x43\x0c\x30\x43\x0c\ \x30\x40\x4c\x80\x92\x2a\x74\x8b\x08\x20\xf6\xfb\xef\xbe\xfb\xe6\ \x3e\xfa\xd0\x83\x0c\x20\x82\x48\x20\x82\x08\x20\xc3\x0e\x70\xc0\ \xa0\x20\x82\x48\x20\x16\xfb\xef\xbc\xf3\xce\xbb\xb0\x30\xc3\x0c\ \x30\xc3\x08\x31\xc3\x0c\x31\xc3\x0c\x30\x82\x4b\xef\xbe\xfb\xef\ \xbe\xdf\xeb\x82\x08\x20\x82\x08\x28\x00\x08\x20\x82\x0c\x35\xff\ \x00\xff\x00\xff\x00\xff\x00\xff\x00\xf7\xbf\xfc\xb0\xc3\x0c\x30\ \xc3\x0c\x00\x13\x28\x24\x8b\x0c\x40\x82\x08\x1d\xbe\xfb\xef\xbe\ \xf9\x8f\xbe\xb4\x20\xc3\x08\x20\x82\x98\x20\x82\x08\x30\xc3\x9c\ \x0a\x01\x08\x20\xa2\x08\x0f\xbe\xfb\xdf\x3c\xf3\x7f\x0c\x0c\x30\ \xc3\x0c\x30\xc3\x0c\xb0\xc3\x0c\xb0\xc3\x0c\x20\xb6\xfb\xef\xbe\ \xfb\xeb\xbe\xfa\xa0\x82\x08\x30\x82\x48\xa0\x12\x08\x20\x83\x0f\ \x7f\xff\x00\xff\x00\xff\x00\xff\x00\xbf\x6f\xf9\x2c\x30\xc3\x04\ \x30\xc3\x08\x00\xc2\x09\x24\x8a\x90\x20\x82\x47\xef\xbe\xfb\xef\ \xbe\x63\xef\xad\x08\x30\xc2\x08\x20\xa6\x08\x20\x82\x0c\x30\xfc\ \xa0\x00\x82\x09\x20\x80\x5b\xef\xbe\xf3\xcf\x38\xfe\xc2\xc3\x0c\ \x30\xc3\x0c\x20\xc7\x0c\x30\xc3\x0c\x30\xc2\x08\x2f\xbe\xfb\xef\ \xbe\xf9\xbf\xbe\x28\x20\x82\x0c\x20\x84\x08\x20\x82\x08\xb0\xd3\ \xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xef\xff\x00\xf3\x43\x0c\ \x38\x43\x0c\x30\x42\x06\x50\x82\x1d\x22\xa4\x08\x20\x91\xfb\xef\ \xbe\xfb\xef\x98\xfb\xeb\x42\x0c\x30\x82\x08\x29\x82\x08\x20\x82\ \x0f\xca\x00\x04\x20\x82\x88\x20\x3e\xfb\xef\x7c\xf3\xcd\xdc\x30\ \x30\xc3\x0c\x30\xc3\x0c\x38\xc3\x0c\x38\xc3\x0c\x30\x82\x5b\xef\ \xbe\xfb\xef\xbe\xdb\xeb\x82\x08\x20\x82\x08\x28\x00\x08\x20\x82\ \x0c\x34\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfe\xbf\xfe\xd0\ \xc3\x0c\x10\xc3\x0c\x10\x83\x90\x20\xa7\x48\xa9\x02\x08\x24\x7e\ \xfb\xef\xbe\xfb\xe6\x3e\xfa\xd0\x83\x0c\x20\x82\x08\x22\x82\x08\ \x20\xb1\xa0\x00\x02\x08\x24\x82\x01\x6f\xbe\xfb\xcf\x3c\xa2\xfb\ \x0b\x0c\x30\xc3\x0c\x30\x83\x4c\x30\xc3\x4c\x30\xc3\x0c\x20\xb6\ \xfb\xef\xbe\xfb\xea\xfe\xf8\xa0\x82\x08\x30\x82\x48\x85\xb5\x28\ \x28\x83\x0f\x7f\xff\x00\xff\x00\xff\x00\xff\x00\xfd\xaf\xef\x84\ \x30\xc3\x04\x30\xc3\x04\x20\xe4\x08\x29\xd3\x0a\x50\x82\x09\x1f\ \xbe\xfb\xef\xbe\xf9\xcf\xbe\xb4\x20\xc2\x0c\x20\x82\x48\xa0\x82\ \x08\x08\x40\x00\x10\x82\x0a\x20\x84\xfb\xef\xbf\xf3\xcf\x1f\x70\ \xc0\xc3\x0c\x30\xc3\x0c\x30\xe7\x0c\x30\xc7\x0c\x30\xc2\x09\x2f\ \xbe\xfb\xef\xbe\xf9\xbf\xbe\x28\x20\x82\x0c\x20\x92\x0e\x6a\x42\ \x08\x20\xc3\xdf\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xdb\xff\ \x00\xcb\x0c\x34\xc1\x0c\x30\xc1\x00\x30\x02\x0a\x70\xc2\x94\x20\ \x82\x47\xef\xbe\xfb\xef\xbe\xf3\xef\x8c\x0c\x30\xc2\x08\x20\x92\ \x18\x20\x80\x14\x00\x00\x08\x20\x82\x28\x05\xbe\xfb\xef\x7c\xf2\ \xcb\xfc\x2c\x30\xc3\x0c\x30\xc2\x0c\x32\xc3\x0c\x32\xc3\x0c\x30\ \x82\xdb\xef\xbe\xfb\xef\xae\xdb\xeb\x82\x08\x20\x82\x08\x29\xe4\ \xa2\x20\x92\x0c\x34\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfb\ \xf6\xff\x00\xd2\xc3\x0c\x30\xc3\x0c\x30\x40\x4c\x80\x82\x9c\x30\ \xa5\x08\x20\x91\xfb\xef\xbe\xfb\xef\xac\xdb\xef\x8b\x0c\x20\xc2\ \x08\x20\xa6\x08\x00\x48\x00\x00\x42\x08\x21\x82\x03\xef\xbe\xff\ \x00\xcf\x3c\x7f\x8e\x03\x0c\x30\xc3\x0c\x30\x83\x1c\x30\xc3\x4c\ \x30\xc3\x08\x20\xbe\xfb\xef\xbe\xfb\xea\xfe\xfa\xa0\x82\x08\x30\ \x82\x1a\x52\x03\x08\x20\x83\x0d\x3f\xff\x00\xff\x00\xff\x00\xff\ \x00\xfe\xff\x00\xff\x00\x64\xb0\xc3\x0c\x30\xc3\x0c\x10\x13\x20\ \x20\xa7\x0c\x29\x42\x08\x24\x7e\xfb\xef\xbe\xfb\xeb\xb6\xfb\xe2\ \x43\x08\x30\x82\x08\x28\x8c\x04\x40\x00\x00\x20\x82\x08\xa0\x10\ \xfb\xef\xbd\xf3\xcb\x37\xd2\x30\xc3\x0c\x30\xc3\x0c\x30\xe3\x0c\ \x30\xe3\x0c\x30\xc2\x09\x2f\xbe\xfb\xef\xbe\xf9\xbf\xbe\x28\x20\ \x82\x0c\x2a\x41\x20\x04\x8a\x08\x60\xc3\xdf\xff\x00\xff\x00\xff\ \x00\xff\x00\xff\x00\xef\xff\x00\xed\x0c\x30\xc3\x0c\x30\xc3\x00\ \x04\xc8\x08\x29\xc3\x0a\x50\x82\x09\x1f\xbe\xfb\xef\xbe\xfa\xef\ \xbe\xba\xd0\x83\x8c\x20\x82\x08\x00\x40\x20\x00\x01\x08\x20\x86\ \x08\x0d\xbe\xfb\xff\x00\x3c\xf1\xae\xfc\x0c\x30\xc3\x0c\x30\xc2\ \x0d\x30\xc3\x0c\x32\xc3\x0c\x30\x82\xdb\xef\xbe\xfb\xef\xbe\xdb\ \xeb\x82\x08\x20\x86\x34\x11\x82\x00\x30\x82\x88\x30\xf7\xff\x00\ \xff\x00\xff\x00\xff\x00\xff\x00\xda\xff\x00\xfb\x43\x0c\x31\x43\ \x0c\x30\xc0\x01\x32\x02\x0a\x70\xc2\x94\x20\x82\x07\x6f\xbe\xfb\ \xef\xbe\xfb\x8f\xbe\xb4\x20\xc2\x0c\x20\x80\xa4\x01\x00\x00\x00\ \xc2\x08\x22\x80\x43\xef\xbe\xf7\xcf\x3c\xdf\xc3\x03\x0c\x30\xc3\ \x0c\x30\x83\x1c\x30\xc3\x1c\x30\xc3\x08\x20\xbe\xfb\xef\xbe\xfb\ \xeb\xbe\xfa\xe0\x82\x09\xad\x81\xaa\x40\x82\x18\x20\x8b\x0c\x3f\ \xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xf6\xbf\xfe\x50\xc3\x0e\ \x10\xc3\x0c\x30\x00\x4c\x80\x82\x9c\x30\xa4\x08\x20\x81\xdb\xef\ \xbe\xfb\xef\xbe\x63\xef\x9c\x2c\x30\x83\x08\x00\x00\x02\x80\x00\ \x04\x20\x82\x08\x20\x36\xfb\xef\xbc\xf3\xca\x2f\xb0\xb0\xc3\x0c\ \x30\xc3\x08\x30\xcb\x0c\x30\xe3\x0c\x30\xc2\x09\x2f\xbe\xfb\xef\ \xbe\xf9\xbf\xbe\x28\x20\x9f\xfe\x9a\x42\x00\x00\x83\x09\x22\xc3\ \x4f\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfd\xef\xef\xb4\x30\ \xc3\x04\x30\xc3\x0c\x00\x13\x20\x20\xa7\x0c\xa9\x02\x08\x20\xb6\ \xfb\xef\xbe\xfb\xef\xbc\xdb\xef\x89\x0c\x30\xc0\x00\x00\x14\x00\ \x00\x01\x08\x20\xa2\x00\x0f\xbe\xfb\xdf\x3c\xf1\xf7\x38\x0c\x30\ \xc3\x0c\x30\xc2\x0d\x30\xc3\x0d\x32\xc3\x0c\x30\x82\xdb\xef\xbe\ \xfb\xef\xbe\x7f\xef\x8a\x0b\x6e\x2d\x50\x24\x88\x00\x20\x82\x08\ \x30\xd3\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfb\xfb\ \xe5\x0c\x30\xc1\x0c\x30\xc3\x00\x04\xc8\x08\x29\xd2\x2a\x40\x82\ \x08\x2d\x3e\xfb\xef\xbe\xfb\xeb\xb6\xfb\xeb\x42\x0c\x10\x01\x00\ \x08\x00\x00\x00\x82\x09\x20\x80\x5b\xef\xbe\xf7\xcf\x2c\xdf\x4a\ \x83\x0c\x30\xc3\x0c\x30\xc3\x9c\x30\xc3\x1c\x30\xc3\x08\x20\xb6\ \xfb\xef\xbe\xfb\xeb\xb6\xfa\xe0\x92\x33\x76\x42\x09\x20\x80\x48\ \xa0\x86\x0c\x34\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfb\xf6\ \xff\x00\xf2\xc3\x0c\x30\x43\x0c\x30\xc0\x01\x32\x02\x0a\x74\x8b\ \x90\x20\x82\x09\x0f\xbe\xfb\xef\xbe\xfb\xee\x3e\xfa\xc2\xc0\x00\ \x10\x00\x40\x00\x00\x04\x20\x82\x98\x20\x3e\xfb\xef\xfc\xf3\xce\ \xbf\xb0\xb0\xc3\x0c\x30\xc3\x08\x30\xcb\x0c\x30\xe3\x0c\x30\xca\ \x09\x2f\xbe\xfb\xef\xbe\xfa\xff\x00\xbe\xb8\x2e\xd5\x9c\x20\x82\ \x10\x20\x03\x08\x28\x83\x0f\x7f\xff\x00\xff\x00\xff\x00\xff\x00\ \xfe\xfd\xbf\xfc\xb0\xc3\x0c\x10\xc3\x0c\x30\x00\x4c\x00\x82\x8d\ \x22\xd3\x28\x20\x82\x47\xef\xbe\xfb\xef\xbe\xf9\xcd\xbe\xf8\xf0\ \x01\x44\x00\x24\x00\x00\x02\x08\x20\x8a\x01\x0f\xbe\xfb\xdf\x3c\ \xf3\x77\x0c\x0c\x30\xc3\x0c\x30\xc2\x0d\x30\xc3\x0c\x32\xc3\x0c\ \x30\x82\x5b\xef\xbe\xfb\xef\xbe\x6f\xef\x8a\xcf\xd8\x83\x08\x20\ \xa4\x08\x20\x82\x0a\x20\x43\xd7\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xbf\x6f\xff\x00\x2c\x30\xc3\x04\x30\xc3\x0c\x10\x03\x10\ \x20\x82\x2c\x74\x88\x08\x20\x81\xdb\xef\xbe\xfb\xef\xbe\xbb\xef\ \xbd\x20\x10\x41\x01\x02\x00\x00\x10\x82\x08\x60\x80\xdb\xef\xbe\ \xf3\xcf\x2c\xbf\xc8\xc3\x0c\x30\xc3\x0c\x30\xc3\x9c\x30\xc3\x0c\ \x30\xc3\x1c\x20\xb6\xfb\xef\xbe\xfb\xef\x9f\xfb\xe3\x81\xa8\x20\ \xc2\x08\x20\x00\x0a\x60\x82\x0c\x30\xf7\xff\x00\xff\x00\xff\x00\ \xff\x00\xff\x00\xef\xdb\xff\x00\xcb\x0c\x30\xc1\x0c\x30\xc3\x04\ \x20\xe4\x08\x24\x8a\x9d\x23\x42\x08\x20\xb4\xfb\xef\xbe\xfb\xef\ \xbe\x63\xd1\x01\x04\x10\x00\x10\x00\x00\x0c\x20\x82\x88\x04\x3e\ \xfb\xef\xfc\xf3\xc6\xba\xf0\xb0\xc3\x0c\x30\xc3\x08\x30\xcb\x0c\ \x30\xe7\x0c\x30\xc2\x08\x2f\xbe\xfb\xef\xbe\xfa\xed\xbe\xff\x00\ \xb2\xc2\x08\x30\x82\x08\x80\x02\x0c\x24\x8b\x0c\x3d\xff\x00\xff\ \x00\xff\x00\xff\x00\xff\x00\xfb\xf7\xff\x00\xf2\xc3\x0c\x30\x43\ \x0c\x30\xc1\x08\x39\x02\x09\x20\xe3\x0a\x40\x82\x08\x24\x7e\xfb\ \xef\xbe\xfb\xef\xbf\x50\x90\x41\x14\x00\x08\x00\x00\x42\x08\x24\ \x82\x01\x6f\xbe\xfb\xdf\x3c\xf3\x7f\x0c\x0c\x30\xc3\x0c\x30\xc2\ \x0d\x30\xc3\x0c\x30\xc3\x0d\x30\x82\x4b\xef\xbe\xfb\xef\xbe\xbf\ \x6a\xdf\x8c\x20\x82\x0c\x20\x92\x20\x00\xc2\x09\x22\xc3\x0f\x7f\ \xff\x00\xff\x00\xff\x00\xff\x00\xfe\xfd\xff\x00\xfc\xb0\xc3\x0e\ \x40\xc3\x0c\x30\x42\x0e\x30\x82\x0a\x74\x8a\x90\x90\x82\x09\x1d\ \xbe\xfb\xef\xbe\xfb\xf5\x3d\x04\x10\x40\x01\x00\x00\x00\x10\x82\ \x0a\x60\x80\xdb\xef\xbe\xf3\xcf\x2c\xbf\xc0\xc3\x0c\x30\xc3\x0c\ \x30\x83\x1c\x30\xc3\x4c\x30\xc3\x0c\x20\x92\xfb\xef\xbe\xfb\xef\ \xbb\xfd\x29\xc2\x08\x20\x83\x08\x24\x8a\x00\x20\x82\x48\xb0\xd3\ \xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xbf\x6f\xff\x00\ \x34\x30\xc3\x04\x30\xc3\x0c\x10\x80\x4c\x80\x82\x9d\x20\xd2\x20\ \x20\x82\x0b\x4f\xbe\xfb\xef\xbf\x53\xda\x41\x04\x10\x00\x80\x00\ \x00\x08\x20\x82\x28\x04\x3e\xfb\xef\x7c\xf3\xc6\xbb\xf0\xb0\xc3\ \x0c\x30\xc3\x0c\x30\xe3\x0c\x30\xc7\x0c\x30\xc3\x08\x2d\xbe\xfb\ \xef\xbe\xfb\xe7\xbf\xa2\xd4\x39\x2c\x20\x82\x08\x20\x80\x08\xa0\ \x92\x2c\x34\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xef\ \xdf\xfb\xe5\x0c\x30\xc3\x0c\x30\xc3\x04\x20\x13\x20\x20\x92\x2a\ \x74\x84\x08\x20\x82\x47\xef\xbe\xfb\xc5\x3d\xf4\x90\x41\x80\x04\ \x08\x00\x00\x42\x08\x20\x82\x01\x6f\xbe\xfb\xdf\x3c\xf3\x7f\x0c\ \x0c\x30\xc3\x0c\x30\xc2\x0d\x32\xc3\x0c\x38\xc3\x0c\x30\x82\x0b\ \x6f\xbb\xe2\x96\x24\x9d\xd5\x30\xe0\xca\x99\x93\x41\x8e\x18\x20\ \x12\x28\x24\x8b\x0d\x3f\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\ \xfb\xf6\xff\x00\xf9\x43\x0c\x30\xc1\x0c\x30\xc1\x00\x00\xe4\x08\ \x24\x83\x0c\xa9\x00\x08\x20\x81\xdb\xef\xbc\x53\xdf\x6d\x04\x10\ \x40\x00\x40\x00\x00\x10\x82\x0a\x20\x80\xdb\xef\xbe\xf3\xcf\x2c\ \xbf\xc8\xc3\x0c\x30\xc3\x0c\x30\x83\x4c\x30\xc3\x0c\xb0\xc3\x0c\ \x60\xf2\x74\x56\xa2\xeb\x67\xd5\x01\xa1\x20\xe2\xce\x14\x5a\x0e\ \x43\x14\x84\x82\x08\x20\xc3\x4f\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xfe\xff\x00\xbf\xbe\xd0\xc3\x0c\x32\x43\x0c\x30\xc1\x08\ \x39\x42\x08\x29\xd2\x0d\x22\x02\x08\x20\x91\xfb\xc5\x3d\xf7\xd2\ \x41\x04\x10\x00\xa0\x00\x00\x08\x20\x82\x28\x04\x3e\xfb\xef\x7c\ \xf3\xc6\xbf\xb0\xb0\xc3\x0c\x30\xc3\x0c\x30\xe7\x0c\x33\x94\x21\ \x56\x27\x0f\x31\xf3\x3f\x33\xf2\x7d\x4d\x22\x79\x60\x38\xd3\x47\ \x86\x8a\xae\xa5\x6c\x32\x4a\x08\x30\xd3\xff\x00\xff\x00\xff\x00\ \xff\x00\xff\x00\xff\x00\xff\x00\xef\xff\x00\xb4\x30\xc3\x0c\x10\ \xc3\x0c\x30\x42\x01\x32\x02\x08\x22\xa7\x0a\x50\x82\x08\x20\x72\ \x53\xdf\x7d\xf4\x10\x41\x00\x04\x00\x00\x00\x42\x08\x20\x82\x01\ \x6f\xbe\xfb\xdf\x3c\xf3\x77\x08\x0c\x30\xc3\x0c\x30\xc6\x01\xb7\ \x10\x5d\x0d\x2c\xc2\xe6\x86\x2d\x31\xfb\xbf\xb7\xd3\xb3\xa9\xaa\ \x78\x68\x98\x53\x47\x22\xa9\xe5\xb6\xb9\xfa\xe4\x08\x34\xff\x00\ \xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\x6b\xff\x00\xfd\ \x2c\x30\xc3\x14\x30\xc3\x0c\x10\x80\x4c\x40\x82\x48\x74\xca\xcc\ \xa0\x82\x08\x37\x3d\xf7\xdf\x69\x04\x14\x40\x02\x40\x00\x00\x30\ \x82\x0a\x20\x80\xdb\xef\xbe\xf3\xcf\x2c\xdf\x4b\x03\x0c\xf2\x28\ \x7e\xa5\xae\x69\x20\xd2\x09\x84\x3c\x62\x67\xa2\x2c\x39\x0d\x3d\ \x25\x1a\x9b\xab\xba\x1a\x2a\x1c\x03\x8b\x2a\x69\x61\xba\xf3\xcf\ \xae\x71\x8c\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xda\ \xff\x00\xf7\x4b\x0c\x30\xc3\x0c\x30\xc3\x04\x00\x03\x90\x20\x82\ \x8c\xb1\xd2\x94\x20\x83\xa3\xdf\x7d\xf7\xd2\x41\x04\x10\x00\x20\ \x00\x00\x08\x20\x82\x28\x04\x3e\xfb\xef\xfc\xf3\xc6\xf4\xa4\x24\ \x72\x2c\x30\xb2\xb9\xed\xae\x38\x22\x82\x88\x8c\x2c\x77\x43\xbf\ \x78\x2c\xdf\xdd\xf9\xca\x89\xa8\x9e\x1b\xa7\x84\x83\x8b\x38\x58\ \x6a\xba\xfb\xcf\x3c\xf5\xcd\x33\xfb\xff\x00\xff\x00\xff\x00\xf7\ \xbf\xff\x00\xf2\x43\x0c\x30\xc1\x0c\x30\xc3\x04\x20\x13\x20\x20\ \x92\x0c\x32\xb3\x20\x3f\x1d\xf7\xdf\x7d\xb4\x10\x41\x00\x04\x00\ \x00\x00\x42\x08\x20\x82\x01\x6f\xbe\xfb\xdf\x23\xc2\x53\x53\xc8\ \xf0\xe3\x2c\x30\x92\xd9\xec\xbe\x3a\x68\xc2\x88\x84\x11\x14\x93\ \xba\x1c\x34\xc7\xcc\xfc\xcf\xc9\xed\x8e\x89\xa5\x84\xe1\x4d\x1e\ \x1a\x2a\x9e\xdb\xcf\x3c\xf3\xc7\x6c\xef\x7f\xbf\xfe\xfd\xbf\xfc\ \x50\xc3\x0c\x30\x43\x0c\x30\xc1\x08\x00\xe4\x08\x20\xa3\x2c\x70\ \x8d\xf2\xdd\x7d\xf7\xdf\x69\x04\x10\x40\x02\x40\x00\x00\x30\x82\ \x0a\x60\x80\xdb\xef\xbe\xf4\x90\x41\x04\x10\x75\xcc\x70\xf3\x1c\ \x30\x92\xc8\xee\xbe\x39\x95\xe1\x82\x44\x34\xb3\x8b\x9a\x18\xbc\ \xe7\xee\x7e\xcf\x49\x6c\x86\xe9\xe9\xaa\x61\x4d\x1c\x8a\xa7\x96\ \xdb\xcf\x3c\xf3\xcf\x3c\x31\xff\x00\xf0\xbf\x6f\xff\x00\xb4\xb0\ \xc3\x0c\x10\xc3\x0c\x30\xc1\x08\x14\xc8\x08\x24\x87\x4f\x1f\x3d\ \xe7\xdf\x7d\xf7\xd2\x41\x04\x10\x00\x20\x00\x00\x08\x20\x82\x28\ \x04\x3e\xfb\xef\xc2\x04\x10\x41\x04\x10\x51\xc6\x90\xdb\x1c\x30\ \x82\xcb\xd6\x26\xf9\xa4\x82\x4a\x22\x30\xf1\xc9\x9e\x88\xb0\xe3\ \x6e\x77\xe7\x6a\x6e\xae\x68\x48\x98\x52\x0e\x2c\xa9\xa5\x86\xeb\ \xcf\x3c\xf3\xcf\x3c\xf2\xcb\x3b\x4b\x1d\xf9\x2c\x30\xc3\x0c\x10\ \xc3\x0c\x30\x42\x00\x39\x02\x08\x28\xcc\xf3\xdf\x55\xf7\xdf\x7d\ \xb4\x10\x41\x00\x04\x00\x00\x00\x42\x08\x24\x82\x01\x0f\xbe\xfa\ \xa0\x41\x04\x10\x41\x04\x10\x41\x07\x1c\x53\x94\x39\x21\xca\x67\ \xb6\xb8\xe8\x8b\x0a\x02\x30\xe1\xcd\x0e\xc8\xf0\xf3\x7f\x37\xe7\ \x3e\x2e\xb2\x7a\x4e\x96\x12\x0e\x2c\x71\x61\xaa\xeb\xef\x3c\xf3\ \xcf\x3c\xf3\xcd\xac\xa5\x7f\xc5\x0c\x30\xc3\x04\x30\xc3\x0c\x10\ \x02\x05\x32\x02\x08\x3d\x7d\xf6\xdf\x7d\xf7\xdf\x69\x04\x10\x40\ \x02\x40\x00\x00\x10\x82\x08\x60\x80\xdb\xef\xe2\x04\x10\x41\x04\ \x10\x41\x04\x10\x41\x04\x10\x71\x04\xb1\xc2\x4b\x67\xb2\xf8\xe8\ \xa3\x0b\x21\x10\xd2\xde\x0e\x68\x60\xd3\x1f\x33\xeb\x3f\x27\xb2\ \x3a\xa6\x86\x81\x85\x34\x70\x68\xaa\x7b\x6f\x3a\xc7\x39\x54\xb2\ \xf3\xf6\xfe\xfb\x4b\x0c\x30\xe3\x0c\x30\xc3\x0c\x10\x80\x0e\x40\ \x83\x57\xdf\x7d\x67\xdf\x7d\xf7\xd2\x41\x04\x10\x00\x20\x00\x00\ \x08\x20\x82\x08\x00\x36\xf8\x20\x41\x04\x10\x41\x04\x10\x41\x04\ \x10\x41\x04\x10\x41\x05\x0d\x03\x4b\x2b\xba\xf8\xe6\x86\x09\x21\ \x10\xd0\x4e\x27\x6a\x62\xd3\x9f\xb9\xfb\x1d\xa5\xb2\xbb\xa7\xa2\ \xa1\x84\x30\x22\x9b\x79\x75\xad\x83\x0c\x5d\xfd\xfe\xff\x00\xbf\ \xfc\x92\xc3\x0c\x34\xc1\x0c\x30\xc3\x04\x10\x80\x4c\xe5\x3c\xf7\ \xdf\x75\xf7\xdf\x7d\xb4\x10\x41\x00\x04\x08\x00\x00\x42\x08\x24\ \x8a\x01\x0f\xa2\x04\x10\x41\x04\x10\x41\x04\x10\x41\x04\x10\x41\ \x04\x10\x41\x00\x10\x50\xf7\xbb\xba\xda\xe6\x86\x0d\x28\x08\xc3\ \xc7\x26\x3a\x22\xc3\x8d\xb9\xdf\x9d\xa8\xaa\x99\xa2\xa3\xd5\xf3\ \x3e\x2c\x78\x43\x6c\x30\xd5\x7f\xdf\xff\x00\xfd\xaf\xff\x00\xfe\ \x50\xc3\x0c\x38\x43\x0c\x30\xc3\x04\x20\x32\x53\xdf\x7d\xf6\xdf\ \x7d\xf7\xdf\x69\x04\x14\x40\x00\x40\x00\x00\x10\x82\x08\x20\x80\ \x4a\x10\x41\x04\x10\x41\x04\x10\x41\x04\x10\x41\x04\x10\x41\x04\ \x10\x40\x04\x10\x41\x87\x03\xdf\xda\xe3\xa2\x2c\xa8\x0a\xc2\x87\ \x30\x3b\x23\xc3\xcd\xfc\xdb\x91\x92\x51\x9d\x18\x2b\x5e\xf0\xd1\ \x04\x38\xc3\x0e\xff\x00\xfd\xff\x00\xff\x00\xff\x00\xbf\x6f\xff\ \x00\xb4\x30\xc3\x0d\x30\x43\x0c\x30\xc3\x04\x35\x3d\xf3\xdf\x7d\ \x67\xdf\x7d\xf7\xd2\x41\x04\x50\x00\x80\x00\x00\x0c\x20\x82\x98\ \x24\x20\x20\x10\x41\x04\x10\x41\x04\x10\x41\x04\x10\x41\x04\x10\ \x41\x04\x10\x01\x04\x10\x41\x04\x18\x68\xdf\x67\x82\x08\x3c\x86\ \x43\x43\x38\x39\xc0\x1f\x0e\x3f\x91\x93\x46\x10\x10\x3f\xe3\x0e\ \x90\xd3\x0c\x35\x57\xff\x00\xdf\xff\x00\xff\x00\xff\x00\xef\xeb\ \xff\x00\xff\x00\x14\x30\xc3\x0e\x30\x43\x0c\x30\xc3\x5b\xdf\x7c\ \xf7\xdf\x75\xf7\xdf\x7d\xb4\x10\x41\x00\x04\x08\x00\x00\x02\x08\ \x20\x86\x3b\x27\xcf\x8c\xb0\x41\x04\x10\x41\x04\x10\x41\x04\x10\ \x41\x04\x10\x41\x04\x00\x41\x04\x10\x41\x05\x12\x41\x83\x12\xda\ \x38\x65\x86\x0e\x54\xeb\x86\xc3\x36\x71\x00\x0e\x82\x86\xc7\xee\ \x35\xc1\x0e\xb0\xc3\x6f\xff\x00\xfd\xff\x00\xff\x00\xff\x00\xff\ \x00\xff\x00\xde\xdf\xff\x00\xe9\x0c\x30\xc3\x0c\x10\x43\x0c\x35\ \xbd\xf7\xdf\x7d\xf6\xdf\x7d\xf7\xdf\x6d\x04\x10\x48\x01\x00\x00\ \x00\x11\x87\xec\xff\x00\xfb\xfe\xde\x36\xff\x00\x92\xc3\x04\x10\ \x41\x04\x10\x41\x04\x10\x41\x04\x10\x41\x00\x10\x41\x04\x10\x41\ \x44\x90\x41\x42\xd5\x14\xf5\xeb\xce\x19\x3d\x88\x96\x8a\x28\x91\ \x01\x01\x0d\xfc\xc3\x24\x11\xc3\x0c\x5d\xff\x00\xff\x00\xdf\xff\ \x00\xff\x00\xff\x00\xff\x00\xff\x00\xfb\xfa\xff\x00\xff\x00\xed\ \x0c\x30\xc3\x0c\x10\xc3\x5b\xdf\x7d\xf3\xdf\x7d\xe7\xdf\x7d\xf7\ \xd2\x41\x04\x10\x00\x90\x01\x69\x8c\x24\xb2\xac\x3c\xd7\x7b\xc3\ \x9e\x13\xb9\x69\x04\x60\x41\x04\x10\x41\x04\x10\x41\x04\x10\x40\ \x04\x10\x41\x04\x10\x51\x24\x10\x50\x7f\x03\x27\x05\x18\x37\x23\ \x03\xf4\x11\x44\xa8\x21\x11\xff\x00\x0c\x78\xc3\x2c\x30\xd5\x7f\ \xfa\x2d\xd7\x6f\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xf7\xb7\ \xff\x00\xfe\x4b\x0c\x30\xc3\x0c\x25\xbd\xf7\xdf\x7c\xf7\xdf\x5d\ \xf7\xdf\x7d\xf4\x10\x41\x14\x50\x37\xad\x38\xdf\x88\xe0\x86\x2c\ \x30\xc0\x8b\x2d\xbe\xf8\xee\x70\xfb\x51\x4b\x04\x10\x41\x04\x10\ \x41\x04\x10\x01\x04\x10\x41\x04\x14\x49\x04\x11\x21\x8e\x50\xb0\ \xfc\xe4\x3d\x62\x82\x28\xd8\x08\x6b\x5e\xf0\xd1\x04\x38\xcb\x0f\ \x92\xa9\xb9\x6e\x9e\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\ \x00\xfe\xfe\xbf\xff\x00\xf3\x4b\x0c\x30\xc1\x5b\xdf\x7d\xf7\xdf\ \x7d\xf6\xdd\x7d\xf7\xdf\x6d\x15\xc4\x02\x0b\x20\x83\x38\x20\xc3\ \x4e\x20\xb3\x1c\xbe\xc6\x28\x24\x32\xfb\xdc\x92\xf1\xdb\xcb\x34\ \x80\x41\x04\x10\x41\x04\x00\x41\x04\x10\x41\x04\x10\x41\x7b\x19\ \x54\x09\x63\xd0\xb1\x3b\x20\x91\x42\x10\x54\x3f\xe3\x0e\x52\xbc\ \xed\xa6\x04\x95\x85\xc3\x0c\x3d\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xff\x00\xff\x00\xfd\xfd\xff\x00\xff\x00\xd1\x43\x0c\x1d\ \xbd\xf7\xdf\x7d\xf7\xdf\x7d\xb7\xdf\x79\xc4\xcc\xbe\xbb\xfb\x8e\ \x08\x20\xb2\x9b\xb1\xcb\x0c\x62\xc3\x8c\xa0\xf3\x18\xe0\x00\x8c\ \x20\xb2\xc3\x5c\x9c\x36\xb3\x01\x04\x10\x41\x00\x10\x41\x04\x10\ \x41\x04\x1e\xef\x97\x25\x6f\x6a\x43\x76\x61\x06\x0e\x82\x01\x90\ \x2f\x26\xdd\x94\xd7\x74\xce\x21\xc2\x08\x20\xc3\x0d\x3f\xff\x00\ \xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xfd\xaf\xbf\xff\ \x00\x93\xc1\xe7\x5f\x7d\xf7\xdf\x7c\xf7\xdf\x55\xc5\x0f\x0c\x7a\ \xe7\xb2\xc7\x5f\x2e\xf8\xa0\x82\xdc\xf6\xf3\x4b\x21\x9b\x4c\x31\ \xc1\x72\x23\xb7\xc4\x62\x80\x30\xa4\xb1\xda\xd7\x0f\x38\x10\x40\ \x04\x10\x41\x04\x10\x41\xd8\xce\x41\x07\xcd\x88\xee\x8a\x24\x84\ \x6c\xa6\x57\xff\x00\xfe\x34\x96\xc0\x8a\x00\x80\x08\x20\x82\x48\ \x60\xc3\x0f\x5f\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xbf\xaf\xff\x00\xfc\xfa\x54\xf7\xdf\x7d\xf7\xdf\x39\x17\ \x93\x28\x31\x8c\x31\xcb\xef\x32\x3b\xb9\x46\xe8\x66\xb3\xdf\xfb\ \xce\x08\x2c\xab\x0c\x39\xd2\x88\xe0\x00\x07\x18\x00\xc8\x62\x42\ \xcb\x4a\x20\x86\x30\xc1\x04\x10\x41\x04\x11\x4c\x3c\xe4\xc7\x33\ \xd1\x17\xd9\xea\x30\x82\x33\x80\x01\xb8\x62\x0c\x20\x82\x48\x80\ \x82\x48\x20\x82\x88\x30\xc3\x4f\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xff\x00\xff\x00\xff\x00\x3f\x6f\xfd\xa4\x04\xfd\xf7\xdf\ \x7d\xb4\xde\x65\x54\x1a\x98\xc0\x52\x81\x46\x10\x02\xcb\x2f\xbc\ \x31\xef\xdf\xef\x7f\xef\x39\xeb\x43\x0e\x32\x82\x0b\x01\x08\x00\ \x11\x02\x09\x08\x4f\x04\x52\x00\xc1\x0c\x69\x2c\x10\x41\x08\xa0\ \xf6\x98\x68\x11\xca\x24\xee\x28\x28\xcb\x47\xca\x82\x08\x20\x83\ \x08\x20\x82\x10\x20\x03\x88\x20\x92\x0c\x30\xc3\xdf\xff\x00\xff\ \x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\x7b\x1a\x40\ \x43\x7f\x7d\xf7\xdf\x7d\xf3\xd3\x79\x85\x00\x49\x13\x90\xca\xd3\ \x21\x08\x0d\xac\xb4\xfb\xef\xbf\x3d\xfc\xff\x00\xeb\x7b\xcf\xd7\ \xeb\x8a\x08\x0c\x04\xe4\x5e\x86\x20\xc6\xa3\xa7\x21\x08\x40\x66\ \x62\x10\xda\xc3\x83\x31\x1d\x7b\x3f\xff\x00\x3c\xe0\xb9\xb5\xbd\ \xbe\xf8\xa0\x82\x08\x20\x83\x08\x20\xa0\x28\x00\x83\x08\x20\xa2\ \x0c\x30\xd3\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\ \x00\xff\x00\xc1\xa4\x00\x07\x57\xdf\x7d\xf7\xdf\x7c\xf7\xdf\x79\ \xe6\x56\x60\xc0\x47\x41\x08\x2c\xa2\xcc\xd2\x46\x4b\x2d\x8b\x4e\ \x37\xf6\x3b\xac\xdf\xeb\x6f\xea\x38\xa0\x01\x35\x31\xc8\x02\x01\ \x09\x09\x2c\x9a\x0b\x21\x09\xcc\x0d\xef\x48\x3f\xe7\x9d\xbc\x6c\ \x7f\xef\xbe\xbf\x6f\xbe\x38\x20\x82\x08\x20\xc2\x08\x24\x80\x08\ \x00\x86\x08\x24\x82\x0c\x30\xf3\xff\x00\xff\x00\xff\x00\xff\x00\ \xff\x00\xff\x00\xfc\x1a\x40\x00\x0d\xbd\xf7\xdf\x7d\xf7\xdf\x3d\ \xf7\xdd\x7d\x37\x9d\x20\x31\x0c\x04\x20\x28\xcf\x07\x30\xca\x08\ \x21\xcb\x0d\x3c\xb6\xfa\xee\xbf\x7f\xb5\x8e\xe8\x6f\x3d\xbc\xf1\ \x8a\x00\x0c\x47\x28\x20\x88\x08\x05\xa3\x3c\x30\x4b\x2d\xcd\x3e\ \xfb\xef\xbe\xfb\xef\xae\xef\xef\xae\x08\x20\x82\x08\x30\x82\x08\ \x29\x02\x00\x20\x82\x08\x28\x83\x0c\x34\xf7\xff\x00\xff\x00\xff\ \x00\xff\x00\xff\x00\xc1\xa4\x00\x00\x01\xbf\x7d\xf7\xdf\x7d\xf7\ \xdf\x7d\xb7\x5f\x7d\xf7\x9b\x1c\xc3\xda\x1c\x40\x64\x20\x34\xb7\ \xa2\x78\xac\xc7\x2f\xb1\xfa\xc8\x3c\xf3\xff\x00\xef\xbe\x3b\xac\ \xbe\xff\x00\xbd\xae\x3b\x63\x1d\x0c\xec\x86\x30\x03\xcb\xc5\x30\ \x82\x0b\x6f\xbe\xfb\xef\xbe\xfb\xef\x9b\xfb\xef\x8a\x08\x20\x82\ \x08\x30\x82\x09\x22\x02\x00\x20\x82\x09\x21\x83\x0c\x34\xff\x00\ \xff\x00\xff\x00\xff\x00\xfc\xea\xc0\x00\x00\x10\xd7\xdf\x7d\xf7\ \xdf\x7c\xf7\xdf\x7d\xf7\xdf\x7d\x24\x1c\x70\x33\x95\x7c\xf0\xe2\ \x80\x05\x28\x8c\x38\xa0\xa3\x0d\x3c\xc7\x2c\x30\xf7\x2d\x3d\xbe\ \xf2\xcf\xb2\x6c\xee\xbe\xfb\x6f\xac\x34\x63\x6c\x18\x30\xc3\x4c\ \xa0\x82\xcb\xef\xbe\xfb\xef\xbe\xfb\xe7\xf6\xfb\xe3\x82\x08\x20\ \x82\x0c\x20\x82\x0a\x40\x80\x09\x30\x82\x08\x22\xc3\x0c\x3c\xff\ \x00\xff\x00\xff\x00\xfe\xa0\x20\x00\x00\x01\x35\xf7\xdf\x7d\xf7\ \xdf\x3d\xf7\xd6\x7d\xf7\xdf\x49\x04\x10\x40\xc0\x4b\x5c\xcb\x63\ \x8f\x20\x00\x12\x48\x22\x83\x1c\x30\xd3\x8c\xf0\xce\x38\x24\xf2\ \xcb\x2b\xbd\xf7\xdb\x9a\x3b\xeb\xd2\x8c\x30\xe7\x0c\x30\xc3\x08\ \x20\x92\xfb\xef\xbe\xfb\xef\xbe\xfa\xfd\xfe\xfa\xe2\x82\x08\x20\ \x83\x0c\x20\x82\x48\x40\x80\x0a\x32\x82\x0a\x20\xc3\x0c\x3d\xff\ \x00\xff\x00\xea\x00\x00\x00\x00\x03\x6f\x7d\xf7\xdf\x7d\xf7\xcf\ \x7d\xf5\x9f\x7d\xf6\xd0\x41\x04\x20\x00\x00\x43\x78\x17\xa3\xbb\ \x9d\xdb\x8e\x09\x30\xcb\xac\x7a\x8e\x4f\x3c\xf3\xbc\xee\x06\x29\ \x20\xd0\xe6\xbc\xc3\x0e\x70\xc3\x0c\x38\xc3\x0c\x30\xc2\x08\x24\ \xbe\xfb\xef\xbe\xfb\xef\xbe\xf9\xbf\xbe\xf8\xa0\x82\x08\x20\x83\ \x08\x20\x82\x80\xa0\x00\x0c\x60\x82\x08\x60\xc1\x0d\x3d\xfe\xa0\ \x00\x80\x00\x00\x00\x5f\xdf\x7d\xf7\xdf\x7c\xf7\xdf\x7d\xf7\xdf\ \x7d\xb4\x10\x41\x00\x00\x00\x90\x0c\x04\xa7\x2c\x8e\x77\x2f\xbe\ \x7a\xfb\xcf\x6c\x34\xe2\x3b\xb1\xcb\xcc\x20\xbe\x0e\x20\xc3\x0c\ \x20\xc3\x9c\x30\xc3\x0c\x32\xc3\x0c\x38\xc2\x08\x2d\xbe\xfb\xef\ \xbe\xfb\xef\xbe\xbf\x6f\xbe\xb8\x20\x82\x08\x20\xc3\x08\x20\x92\ \x10\x20\x02\x4c\x20\x82\x48\x60\xc3\x0c\xca\x00\x00\x20\x00\x00\ \x04\x3f\xf7\xdf\x7d\xf7\xdf\x7d\xf7\xdb\x75\xf7\xdf\x6d\x04\x10\ \x40\x00\x00\x24\x00\x00\x31\x88\xec\xbd\xb1\xce\xa6\x8f\xef\xff\ \x00\xbc\xf0\xc3\x08\x34\x92\x08\x30\xc3\x0c\x30\xc3\x08\x30\xe7\ \x0c\x30\xc3\x4c\xb0\xc3\x0c\x30\x82\x0b\x2f\xbe\xfb\xef\xbe\xfb\ \xef\xae\xef\xef\xbe\x28\x20\x82\x08\x20\xc2\x08\x20\x92\x20\x20\ \x02\x08\xa0\x82\x08\x30\xf2\x88\x00\x00\x00\x00\x00\x00\x2f\x7d\ \xf7\xdf\x7d\xf3\xdf\x7d\xf6\x1f\x7d\xf7\xd0\x41\x04\x10\x00\x00\ \x00\x00\x00\x00\x82\x08\x00\x5c\xf2\x07\xa2\xfb\xe8\xc3\xfe\x30\ \x62\x73\xc0\xc3\x0c\x30\xc3\x0c\x30\xc2\x0c\x38\xc3\x0c\x30\xdf\ \x0c\x30\xc3\x0c\x20\x82\x7b\xef\xbe\xfb\xef\xbe\xfb\xef\x9f\xfb\ \xef\x82\x08\x20\x82\x08\x30\x82\x08\x20\xa0\x08\x00\x83\x08\x20\ \x82\x88\x2f\xff\xc4\x00\x29\x11\x00\x01\x03\x04\x02\x02\x01\x04\ \x03\x01\x01\x00\x00\x00\x00\x00\x01\x00\x11\x31\x10\x20\x30\x40\ \x21\x41\x50\x51\x71\x61\x91\xb1\xc1\x81\xa1\xd1\x60\xf0\xff\xda\ \x00\x08\x01\x03\x01\x01\x3f\x10\x33\x94\x23\xe0\xc6\x11\xb6\x3c\ \x20\x46\x71\x0b\x86\x88\xc4\x3c\xf3\x68\x04\x67\x30\x47\x74\x5c\ \x37\xc6\xcb\x21\x98\x23\x38\xc5\xc3\xc1\x0c\x23\xc6\xbd\x0a\x07\ \x13\xd4\x23\x39\xc6\x21\x88\x62\x1f\xf0\x0f\x90\x23\x34\x18\x85\ \x81\x14\x3f\xe6\xd9\x3e\x27\x40\xa3\x3a\x03\x10\xc4\x34\x45\xa0\ \x32\x49\xe0\x20\x00\xc8\x11\x84\x5f\xfa\xde\x08\xe9\x9c\x61\x19\ \xca\x2d\x28\x6e\x0c\x7c\x88\x39\x83\xa4\xf7\xb4\xfc\x8c\xc3\x44\ \x1d\xe0\x8c\xf9\x61\x61\x96\x1d\xf0\x87\xa8\x00\x22\xe3\xc4\x3f\ \xeb\x68\x5c\x0e\xe8\x46\x73\x0b\x02\x3a\x63\x44\x57\xe2\x29\xe6\ \x27\x05\x3d\x7a\x78\x10\x75\x9e\xe0\x8c\xea\x8d\xc1\x78\xa3\x29\ \x32\x79\xa0\xb7\x82\x01\xd3\x7a\x14\xf6\x84\x67\x38\xb0\x23\x84\ \x6e\x37\x54\x2c\x7f\xc5\xc3\x74\x1d\x37\xbc\x23\x37\x0d\x01\xa4\ \x34\x5f\x4b\xbf\xc2\x05\xc0\x34\x06\x03\xf4\xf0\x80\xeb\xbd\x02\ \x33\xe4\xc5\xc4\x66\x4c\xc8\xdf\xe0\x14\x09\x7c\xf8\x50\x53\x6a\ \xb2\x08\x42\x32\x85\xc3\x10\xb4\xe1\x1a\xa2\xd7\x53\xed\x00\x01\ \x86\xb6\x1e\x19\xe8\xc8\x23\x3b\x03\x48\x67\x20\x83\xa4\x11\x07\ \x74\x8f\xe7\xce\x84\x66\x82\xe1\x88\x58\x3c\x20\x10\x2f\x42\xe0\ \xc4\x37\x9f\x54\x14\x67\x60\xa1\x80\x6a\x8b\x0d\x60\x1a\x9f\x47\ \x10\xc4\x3c\x90\x46\x6a\x3c\x48\xd0\x53\x50\x62\x1e\x44\x23\x38\ \x86\x21\x60\x47\x50\x67\x52\x78\x87\xb1\xf0\x3e\x10\x8c\xed\x8c\ \x03\x65\x48\xf8\xd0\x74\x02\x33\x68\xb8\x79\x0c\x0a\x19\xf1\x2d\ \x6b\xe7\x10\x8c\xeb\x0b\x02\x3a\x83\x19\x09\x19\x31\x79\xf8\xfd\ \xa7\x4b\xa3\xa8\x7a\x23\xb8\x5d\x63\xa3\xc0\x0f\x26\xf6\x88\x46\ \x6e\x1b\xe3\x18\xb4\x02\x61\x44\xa1\xf2\x64\x34\x9d\x45\xa4\x97\ \x77\x10\x08\x62\xba\xa6\x5e\xf2\xeb\x1d\x10\x44\xf8\x87\xc8\x21\ \x19\xca\x34\x46\x9c\x79\x4f\x70\x84\x8e\xa1\x40\x06\xb6\x4b\xbc\ \x50\x87\x51\xc1\x90\x92\x53\xe3\xc3\x3e\x17\xa0\x84\x67\x60\x58\ \x34\x01\x70\x02\xb0\x80\xb3\xca\x89\x28\xf8\x25\x9d\x06\x75\x1d\ \xc2\x16\x4e\xa3\x5b\xcd\x9c\x1e\x11\x9c\x03\x58\xe1\x0a\x35\x0d\ \x9e\x10\xb2\x51\x88\x00\x1c\x0c\x0f\x74\x93\x72\xe9\xc3\x46\x24\ \x8c\x93\x20\xbd\x94\x7b\xc0\xba\x6b\xc2\x33\x9c\x68\x8a\xc2\x1d\ \x75\x8c\x8e\x89\xce\x54\x39\xb3\xbd\x42\x70\x11\x52\x49\x9d\x59\ \x90\x8c\x93\x28\xee\x54\x21\xb5\xde\xaf\x63\xde\x11\x9c\x23\x44\ \x58\x14\x3a\x19\x20\x10\xd2\x75\x12\x80\x34\x69\x80\xe8\x23\x04\ \x6e\x08\x75\x34\x10\xbb\x2e\xa9\xd1\x22\x62\x35\x9a\xe7\x4d\x60\ \x46\x77\x42\xfc\x02\x84\x35\x8d\x6b\xa7\xc8\x3d\x97\x01\x14\x77\ \xb1\xf7\x48\x10\xc5\x75\x4c\x8d\xd9\x75\x48\x82\x27\x55\xec\x7b\ \x04\x23\x3a\x23\x27\x29\xee\xe7\xbd\xef\x64\x11\xc2\x24\xe1\x7d\ \xf8\x43\xa8\xee\x10\x92\x53\x63\x61\xd3\x20\x8c\xe3\x1a\x21\x0b\ \x0b\xe9\x9d\xea\xcb\x81\x9c\xfe\x06\x3c\x8c\x8e\x10\x32\x75\x12\ \xd1\x7b\x1d\x03\xc2\x33\xb8\x14\x7f\x19\xc7\x28\x23\x80\x9d\xfc\ \xa9\xfa\x3f\xf7\xc2\x6b\xba\x65\x7b\xc4\x23\x3a\x63\x08\x50\xfc\ \x6a\x3e\x9b\xed\x3a\x10\x02\x07\x43\xdc\xa0\xfa\x45\x0b\x9d\x47\ \xa0\x84\x67\x28\xd0\x27\x27\xd0\x6a\xba\x7d\x37\xd3\x74\x0b\xc2\ \x07\xe9\x0e\xe2\x80\x65\x08\x02\xd9\x1a\xbe\x8b\x50\x1e\x11\x94\ \x32\x8c\xef\x0d\x87\x4e\x9f\x79\xc2\x10\x82\x05\x9e\x10\x0e\xca\ \x07\xa4\x03\x46\x19\x1d\x60\x38\x46\x75\x46\x07\x4b\xd3\x59\xae\ \x74\xe9\xf4\x1e\xd7\x08\x39\x80\x81\x3a\x45\xec\xa0\x19\xe5\x08\ \x83\x34\x8e\xb0\x84\x67\x58\x5e\x3e\x68\x28\x17\xdf\x74\xe9\xf2\ \xba\x07\x80\x81\x64\xa1\xdc\x50\x1c\x0d\x39\x1d\x61\x08\xcd\x46\ \x51\x8c\x07\x41\x00\x01\x4c\x94\xc7\x28\xd8\x32\x89\x3e\x01\xd3\ \xa7\xb1\xc2\x04\x80\x81\x50\xf7\x28\x3e\x90\x00\x45\xe7\x42\x47\ \x58\x42\x33\xb2\x09\x00\xb5\xeb\x32\x43\x41\xd1\xd3\xc2\x9f\x6f\ \x87\x40\xfb\x28\x0a\x50\x14\x0b\x23\x08\xcf\x23\x89\xf2\x08\x46\ \x75\x99\x0a\x1a\x8f\x8e\x24\xa1\x20\xea\x6b\x85\x00\x76\xc1\xe9\ \x10\x4c\x1d\xd9\x76\xfe\x81\x41\x00\xeb\xe1\xfb\x3f\xe2\xe7\x8a\ \xce\x99\xcf\xf2\xc1\xbf\x1f\x08\x84\x6c\x44\x8a\x1d\x72\x12\x28\ \x83\x8e\x10\xd2\x74\x41\x26\x3a\x80\xf0\x8c\xda\x33\x32\x64\x38\ \xb5\xe8\xd8\x1e\xd0\x54\x59\x46\xe8\xbb\xa6\x40\xe4\x0e\xbc\x8d\ \x02\x24\xaf\x21\xf1\xd8\xfb\xb7\xdc\xd1\xc2\x3b\x07\xfe\xc7\xe0\ \x04\x2a\x2d\x2a\x71\x42\x23\xed\x10\xe8\x22\x48\x44\x47\x68\x86\ \x82\x86\xe1\x12\x49\x73\x8d\xf0\x84\x67\x44\x23\x5e\xf6\x3d\xcf\ \x88\x17\x20\xbb\xe7\x5e\xa2\xee\x90\x20\xc6\x9c\x8d\x02\x27\xd1\ \x80\x3e\xfc\xfe\xa8\xea\xe8\x16\xfb\x06\xfc\xba\x38\x05\xe4\x52\ \x51\x0c\x22\x7d\x05\xed\x20\xe4\xa0\x20\x2e\x87\x08\xce\xd1\x22\ \x9f\x5c\x23\x39\x99\x01\x63\xdc\xf7\x3d\xef\x8e\x10\xa9\xee\x51\ \xd0\x51\x27\x42\x66\x81\x34\xfb\x09\xfd\x7e\x91\x2c\x72\x8c\x69\ \x8f\x3f\x7c\x06\xa4\x81\x28\x8f\xb4\x47\xa0\x89\x61\x7b\xc8\x08\ \x44\xe8\x22\xbb\x45\x32\x51\x00\x89\x1d\x57\xb8\x23\x37\x8c\x22\ \xc7\xb1\xf1\x3e\x27\xc3\x26\x43\x4f\x28\xd8\x32\x89\x39\x26\x68\ \x10\xb3\x2e\x07\xf9\x24\x8f\xca\x20\x25\x1b\x07\x94\x7d\x3e\x87\ \xf4\x7f\x77\x90\xc9\x47\xa9\x1e\xa0\xbb\x45\x03\xda\xe8\x04\x5c\ \x29\x62\x9d\x3a\x22\x89\xe2\x7d\x07\xb0\x42\x92\x18\x9d\x3d\xaf\ \x73\xe2\x7a\x36\x47\xb4\x5b\x12\x50\xb0\x74\x74\xf0\xa4\xd8\xc1\ \x3e\x60\x78\x23\xd8\xff\x00\x7d\x7f\x8e\x9d\xeb\x90\x9f\xb7\x1f\ \xb2\x81\xbb\x03\xd3\x96\xfb\x45\x08\x09\x28\x8d\x1f\x50\x89\x50\ \xd0\x0c\x22\x98\x0b\xb0\x44\x93\x35\x76\x44\x42\x26\x9f\x79\xe8\ \x21\x4b\x4d\xa8\xf9\xde\xd7\x4f\x46\xc4\xf7\xc4\x14\x04\x14\xc7\ \x0a\x10\xd8\x4c\x35\x23\xed\x11\x40\x44\x90\x8d\xd9\x76\x88\x3d\ \x11\x51\xc2\x32\x0d\xa4\xb2\x22\x89\xe9\xbe\x83\xa1\x0a\x58\x85\ \xee\x9d\x3a\x7c\x8f\x8d\xa8\xf6\xba\x7b\x9d\x3d\xae\x81\x68\x5d\ \xb2\xf5\x17\x60\x85\x21\x13\xda\x1d\x01\xc7\x28\xa8\x0b\xb0\x44\ \x93\x46\xa3\xd0\x96\x44\x51\x34\xf8\x5f\x74\x42\x95\x5f\x00\xc6\ \xe9\xee\x7c\x8f\x57\xc0\xd4\x7c\x4d\x60\x21\x0a\x40\xd5\xed\x76\ \x44\x51\x2d\xc7\xcc\x21\x4b\x71\xe8\xd8\x9e\x8d\x8d\xef\x7b\x5e\ \x8d\x7b\xb2\x2a\x4b\x13\xe1\x7d\xa1\x08\xce\xab\xa7\xab\xdc\xe9\ \xed\x7b\x9e\xe7\xc0\xf6\xba\x7c\x0e\xc8\xab\xb5\xdf\x33\xe3\x08\ \xce\xcb\xd5\xf2\x3a\x7c\x6f\x73\xde\xe9\xe8\xf4\x3b\x71\xf3\x3e\ \x10\x8c\xf8\x77\xc8\xf4\x6c\x0f\x63\xd0\xe7\x5d\xf0\xbe\xb0\x46\ \x6f\x1a\x82\xf7\x4f\x47\xb9\xed\x74\xf6\xba\x7b\x5e\xc3\xe5\x7d\ \x87\xd4\x08\xce\xe0\xd7\x74\xf7\xba\x74\xf6\x3f\x85\x7c\xef\x60\ \x84\x67\xc8\x3e\x07\x4e\x9f\xc2\x3e\x27\xce\xf4\x10\x8c\xe1\x17\ \x8d\xa1\x94\xd0\x62\x1b\x83\x10\xce\x10\x85\xff\xc4\x00\x22\x11\ \x00\x02\x01\x04\x03\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\ \x01\x11\x00\x10\x20\x30\x40\x31\x41\x50\x21\x51\x60\x61\x81\xff\ \xda\x00\x08\x01\x02\x01\x01\x3f\x10\xb8\xde\x60\xf2\x06\x89\xc0\ \x6a\x7c\xd1\x68\xb8\xfb\x83\xcd\x30\x66\x30\x78\xe7\x70\x78\xe6\ \x0b\x85\xa2\xe3\xe3\x8f\xe0\x4c\x19\xcf\xb6\x7d\x01\x78\xb4\x5c\ \x7c\x63\xe4\x1d\x93\x06\x13\x79\xf2\x84\x51\x09\x4d\x41\x61\xa9\ \xf0\x8c\x18\x05\xa2\xd1\xe4\x08\x20\x03\xdc\xff\x00\xad\xb8\x7c\ \x13\x06\x23\x79\xf2\x40\x0c\xc0\x0e\x57\x0d\x10\x1e\xe9\x83\x08\ \xb4\x58\x60\xf1\xd3\xe6\x2b\xaf\x78\xc1\x8c\xe2\x3e\x28\xa1\x83\ \x48\xf9\x46\x0d\x33\x07\x8c\x28\x75\x0e\xfb\xaa\xbc\xc1\x71\xb4\ \x43\x60\xb8\xf8\x62\xa6\x1f\x70\xc1\xa8\x7c\x6e\xa8\x68\x7d\x37\ \x80\xc1\x79\xb4\x5a\x2d\x1e\x18\xa0\x86\xc1\xeb\x2a\x98\x33\x1c\ \x47\xc4\x3e\x7a\xc2\xed\x30\x60\x36\x8b\x45\xa3\xf9\x55\x85\xd8\ \x44\x19\xcd\x82\xd1\x0f\x84\x2e\x3e\xc1\x83\x5c\xd4\xf9\x07\xc1\ \x57\xbc\xe6\x0c\x46\xd1\x68\xb0\xc1\xfc\xba\xc4\x34\x4e\x23\xfc\ \x3a\xce\xb0\x8c\x67\x31\xa9\xf2\x87\xa6\xe0\xd1\x10\xd8\x2c\x30\ \x78\x23\xf5\x00\xc2\x26\x1f\xc4\x26\x2f\x1b\xef\x32\xb4\xc1\xba\ \x76\x41\x18\x0a\x01\x80\x28\x75\x72\x84\xd0\xfe\x61\x17\x8a\xb4\ \x0c\x19\x4d\xa3\x09\xd6\x00\x98\x0e\x80\x31\x2d\x08\x40\x30\x81\ \x84\xfa\x84\xc6\xd3\xd5\x54\x30\x6a\x1b\x06\xa8\x28\x25\x60\x01\ \x8b\x9a\x74\xb1\xe2\x20\x1e\x61\x08\x4b\xa8\x48\x69\x2c\x4b\x1b\ \xb9\x41\xbc\x31\x23\x1e\x94\xab\xc9\xcd\x18\x41\x00\x9b\x14\x79\ \x08\x1e\x61\x0e\xa1\x28\x41\x1c\xed\xba\x2c\xa3\x39\xb4\x64\x36\ \x35\x29\x10\xd2\x33\xf6\x00\xf7\x00\x02\xd7\xa0\x40\xf5\x08\x75\ \x09\x42\xc7\x3e\x13\xda\x38\x40\x31\xa9\x4d\x42\x02\x37\x51\x8f\ \x30\x00\xc4\xea\xf3\x93\x43\xf9\x30\x8b\xf8\x00\x1c\x1f\x23\x8f\ \x4c\xd0\xc9\x82\x12\xd1\x7a\x1c\xc2\x68\x7f\x30\x8b\x51\xd1\x6d\ \x1c\x9c\x2e\x79\x98\xa1\x13\x00\x15\x7a\x2e\x2d\x32\x01\xe6\x10\ \x84\xfa\x84\x85\xab\x54\xec\x0b\x87\x18\x9e\x17\xd3\x04\x2d\x95\ \xaa\x40\x3c\xc2\x10\x94\x20\x8e\x72\xaa\x3a\x2d\xf3\x60\xca\xe3\ \x8e\x38\x89\x83\x79\xce\xb3\x84\xf7\x87\xc8\x38\x86\x8b\x8f\xcf\ \x62\x72\x86\x05\xc7\xd8\x5e\x93\xb6\x51\x92\x3e\xda\xb1\xaa\x3d\ \xe1\x60\xe3\x55\xc7\xbc\xe2\xbd\x88\x44\x73\x3b\x08\x0e\x84\x23\ \x8f\x93\x96\x35\x34\x1c\x64\x77\x2a\x3f\x00\x71\xb2\xe3\xdc\x74\ \x62\x72\xc6\x07\xc7\xd8\x57\x02\x76\x10\x92\x7e\x9b\xcd\x07\x1f\ \xc8\x1c\x7a\xce\x1e\x64\x03\xb9\xf8\x08\x47\x1f\x21\xe6\x1b\x8c\ \x17\x8e\x30\xac\x8b\x7c\x7c\x3e\x03\x8f\x2b\x8c\x40\xfb\x9d\x21\ \x09\xe2\x13\xc9\xc6\x6d\x35\x1c\x7a\x6e\xad\x04\x31\xe0\x38\xee\ \x3c\xc3\x02\x84\xba\x10\xbe\xe1\x24\xf3\x53\x61\xa9\xb4\x60\x1c\ \x64\x57\x3f\x1c\x31\x1a\x00\x8c\x6f\xb5\x08\x74\x21\x34\x26\xe4\ \xc3\x61\xcc\x60\xb0\xd8\x38\xd4\x7b\x2f\x1b\xb4\x10\x82\x52\x37\ \xb6\x4a\x92\x41\xa8\xbf\x82\x08\xfe\x60\x20\x86\x21\xa1\xa1\xb0\ \xd4\xe2\x35\xe0\xce\x2a\x84\xba\xcc\xaf\x7a\xae\xc7\x85\x5e\xe8\ \xc8\x83\xf7\x00\x6c\x70\x15\x00\x43\x43\x27\xef\xf7\x40\xc1\x50\ \x09\xe2\x74\xd3\xb4\x81\x73\xf6\x70\xa0\x42\x13\xfc\x88\x74\x25\ \x69\xf1\xd5\xca\x8c\x29\x4d\x4e\x02\xbf\x20\x28\xa6\x87\x37\x0e\ \x21\x1c\xfc\x9d\x84\xe9\xa0\xf8\x04\x23\x09\x18\xca\x2d\x83\xac\ \xf4\xd6\x26\x14\x80\x3a\x1d\x21\xa3\x97\xf2\x08\x02\x0a\xc3\x61\ \xa8\x2e\x02\x74\x90\xbd\xa0\x5c\xfd\x83\x82\x21\x0a\x09\x4e\x62\ \x80\x6c\xaa\x18\x35\x1d\x16\xb3\xb1\xd5\x50\x15\x01\x45\x8c\x64\ \xe0\x2a\x40\x47\xf6\x01\x02\x08\xf3\x0d\xdc\x30\x85\xf3\xf2\x03\ \xc9\x83\xa9\x10\x50\x4e\x12\x4d\x54\x56\x3d\xa2\x20\xcc\xea\xa2\ \xb5\xeb\x2a\x3c\x2a\x7d\x10\x1c\x58\x08\x38\x02\xa0\xa8\xc7\xa4\ \x26\xe4\x50\x17\x01\x01\xba\x9f\xa1\x81\x74\xe0\x1c\x1f\x22\xc7\ \x8d\x6a\x31\x78\x26\x0d\x37\x55\x15\x8e\x28\xb0\xbc\x4a\x8e\xaa\ \x2b\x54\x51\x91\x04\x80\x9c\xd8\x0c\xe1\xa0\x3f\x50\x13\x93\x00\ \xb9\x83\xa5\x12\x92\x51\x9b\x94\x58\xd5\x1e\xc0\xd3\x51\x55\xd5\ \x6a\xac\x0e\xd7\x1d\x8c\x8a\x40\x42\x88\x50\x07\xa8\x13\x88\xb0\ \x9c\x67\x02\x8b\xc7\x30\x6b\xab\x9e\xaa\xa3\xaa\x8a\x8f\x03\xab\ \xc4\xb5\x15\x1e\xa1\x82\xc3\xac\xa2\xaa\xd6\x58\x15\xeb\x02\x8b\ \x69\xe9\x98\x3d\xe5\x15\xae\xc5\xbc\xa8\xf4\x86\xf2\xa3\xa2\x8b\ \x4d\x63\x51\x51\x45\xe2\x3d\x1e\xa0\xdf\x56\x3d\x75\x3e\xc7\xe6\ \x2a\x3c\xfd\x5e\x76\xd4\x5b\x6b\xdc\xeb\xfa\xc5\x47\x93\xaf\x2d\ \x45\xfc\x12\xa3\xcc\x2d\x3e\x00\xd0\x3e\xb1\xa0\xc3\xff\xc4\x00\ \x2a\x10\x01\x00\x02\x00\x04\x05\x05\x00\x03\x01\x01\x01\x00\x00\ \x00\x00\x01\x00\x11\x10\x20\x30\x31\x21\x40\x41\x51\xa1\x61\x71\ \x81\x91\xb1\x50\xc1\xf0\xd1\xe1\xf1\xff\xda\x00\x08\x01\x01\x00\ \x01\x3f\x10\xf3\x9f\xb9\xcc\xa7\x26\x70\x79\xb3\x50\xd7\x32\x8e\ \xb9\x98\xd2\x39\x01\xca\x68\x1a\xc6\x83\x89\xcb\x99\x87\x9f\xbc\ \xef\xca\x79\xcf\xde\x6c\xc1\xdb\x13\x93\x34\x0d\xb5\x0d\x71\xca\ \x6b\x9c\x81\xca\x9c\xb1\x94\xc5\xd3\x35\xcc\xc3\x8b\xfc\x17\xed\ \x3c\xe7\xee\x81\x94\xe4\xce\x6c\xdf\xf9\x03\x29\xbe\x53\x6f\xe4\ \x0c\xc3\x8a\x69\x8e\xb9\x98\x71\x75\x4e\x53\xf6\x9e\x73\xf7\x9c\ \x30\x76\xc4\xe4\xcd\x03\x50\xd7\x32\x9a\xe6\x63\x48\xe4\x0c\xde\ \xb9\xce\x1a\xc6\x63\x17\x4c\xd7\x33\x0f\x20\x72\x06\x3f\xb4\xf3\ \x9f\xba\x26\x53\x93\x39\x43\x39\xce\x19\x4d\x73\x90\x39\x01\xca\ \x72\xc3\x98\xd6\x1d\x73\x30\xf2\x03\xc8\x18\x7e\xd3\xce\x7e\xf3\ \xa6\x0e\xd8\x8f\x26\x68\x1a\x86\xb9\x94\xe4\x0c\xa6\xff\x00\xc0\ \x1a\x06\xb0\xe6\x32\x8e\x88\xeb\x99\x87\x90\x1e\x42\xe7\xed\x3c\ \xe7\xee\x91\x94\xe4\xce\x50\xe5\x0d\x73\x29\xae\x66\x34\x8e\x40\ \xdf\x31\xcb\x0f\x28\x3a\xe6\x61\xe4\x07\x90\xfd\xa7\x9c\xfd\xe7\ \x8c\xa6\xdc\xd9\xfc\x09\xb6\xb9\xc8\x1c\x81\x97\xad\xf2\xe6\x83\ \x89\xa2\x3a\xe6\x61\xe4\x07\x5f\xf6\x9e\x73\xf7\x4c\xca\x72\x67\ \x0e\x50\xe5\x0d\x73\x28\xf1\xe4\x0c\xa6\xfa\x67\x20\x39\x4d\xf4\ \x07\x58\xcc\x62\xe2\x68\x8e\xb9\x98\x79\x01\xd6\xfd\xa7\x9c\xfd\ \xe7\xcc\xa7\x27\xb6\x81\xbf\x38\x39\x47\x5c\xcc\x6f\x94\xdb\xf9\ \x13\x30\xe2\xea\x0e\xb9\x98\x6b\x36\xdc\xbe\xe7\xbc\xf3\x9f\xba\ \x86\x53\x5c\xc1\xc3\xad\xf2\x86\x81\xa8\x72\xa6\xda\xe7\x20\x72\ \xc3\xa0\x6b\x19\x8c\x5d\x43\x5c\xcc\x70\xc9\x5a\xa3\xa7\xb9\xef\ \x3c\xe7\xef\xf0\x06\x53\x6e\x50\xce\x6a\x9a\xe6\x53\x90\x32\x9b\ \xe9\x9c\x81\xbf\x38\x39\x8c\x53\x50\xd7\x33\x19\x1d\x51\xd2\xfd\ \xa7\x9c\xfd\xd5\x32\x9a\xe6\x0e\x04\xbe\x1c\x99\xa0\x3c\xe1\x94\ \xd7\x32\x0a\x0a\x58\x3e\x01\xc7\xe7\x69\xd0\xe4\x9a\xff\x00\x5a\ \x70\x3c\xce\x2e\x83\x88\xbc\xe8\xc4\x4d\xa9\xd7\x1f\xec\xe1\xc1\ \xf4\xc8\x6d\x98\xe4\x0c\xdd\x2f\x96\x1c\xc6\x29\xa8\x6b\x99\xcc\ \x5c\x47\x48\x74\x7f\x69\xe7\x3f\x79\x3d\xf5\x8e\x64\x72\x86\xb9\ \x98\xdb\x5c\xc1\xcd\x2d\xa1\xf6\x16\x71\x7e\xa1\x0b\xff\x00\x3d\ \x30\x21\xfe\x1c\x03\x7a\xc7\xef\xe9\xd8\xe3\x00\xea\x82\x2d\x6d\ \x1c\x0b\x7a\xbe\xbc\xd1\x94\xe5\xc7\x31\xae\x72\xc3\x78\xba\xa3\ \xa1\xfb\x4f\x39\xfb\xac\x65\x35\xcc\x1c\x36\x87\x26\x6f\xa0\x6a\ \x9a\xe6\x53\x90\x27\xff\x00\x58\x11\x22\x99\xe0\xa2\xf8\x60\x77\ \x85\xad\xfc\x43\xd4\x2f\x73\xd6\x04\xb6\xd4\x38\xb1\xb3\xbb\xc0\ \x3d\x82\x3a\x5d\x5f\xdb\xd2\x39\x63\x40\x75\xc7\x31\xae\x72\xc3\ \x8b\xca\x7e\xd3\xca\x7e\xf2\x86\xda\xc6\x51\xe5\x0d\x01\xd4\x39\ \x03\x29\xc8\x2a\x46\x70\x96\x93\xf7\x14\xf0\xc4\x55\x85\x81\xbb\ \x73\xf1\x71\x2a\x41\xa9\xc0\x94\x3a\x2a\xfd\x10\x74\x0d\xd5\x6d\ \x9e\x0b\xe8\x87\xc4\x01\xa0\xd0\x83\xa3\xa6\x72\x06\xf9\x87\x97\ \x1c\xc6\xb9\xcb\x0f\x22\x39\x7f\x69\xe7\x3f\x75\xcd\xf2\x9a\xe6\ \x0e\xd8\x8f\x36\x6a\x9a\xe6\x6b\xe1\xae\x47\x68\xab\x6f\x4d\xf7\ \x88\x08\x84\x51\x95\x68\x00\x1e\xc1\x12\xca\x76\x4a\x81\x6e\xc2\ \x3e\x98\x39\x4d\xb3\x1c\x81\x98\xdb\x40\xd6\xdb\x39\xae\x72\x07\ \x1c\xc3\xdf\x36\xda\x63\x93\xf6\x9e\x73\xf6\x1a\xe6\xd9\x4d\xb9\ \x33\x87\x28\x68\x0f\x38\x65\x39\x06\x06\x20\xa4\x3c\x1e\x28\x89\ \xe9\x06\xd2\x1d\x3e\xde\x43\xe2\x00\x07\x26\xe8\xf6\x3c\x78\x0c\ \xa1\xc0\x3e\xa1\x23\xa3\x28\x46\xbd\xf9\xd3\x2e\xd3\xa5\xe8\x1a\ \xdb\x7f\x0c\x39\x87\x25\x6a\xde\x3f\xb4\xf3\x9f\xbc\x81\xbe\x53\ \x39\xa0\x65\x1e\x50\xd0\x35\x0e\x40\xca\x6b\xa5\xe6\x5e\xd6\x76\ \x42\x1b\x5f\xd6\x1f\xb5\xd8\x3b\x09\xd6\x0d\x9d\x9e\x09\x00\x01\ \x0b\x11\xe0\x9d\xf5\x8e\x44\x72\xf5\xb9\xd2\xff\x00\x8c\x1e\x40\ \x73\x1c\x32\x38\x8e\x98\xcf\xda\x79\xcf\xdc\x0d\x73\x29\xc8\xbc\ \xb1\xbe\x81\xaa\x6b\x99\x8d\x54\x06\x05\xa7\xa0\x6f\x13\x75\x10\ \x5e\x87\x80\xfa\x0c\x00\xa1\xea\x47\x92\xdb\x5e\xa9\xfe\x99\x0d\ \x31\xe5\x8d\xf9\x73\x96\x1e\x40\xce\x38\xba\xcf\xca\x79\xcf\xdc\ \x4e\x4c\xd7\x32\xae\x9c\xa1\xa0\x3c\xe1\x94\xd5\x10\xfe\x6d\x70\ \x7f\x2d\xf8\x81\x40\x1b\x06\x37\x4b\xc7\xe2\xac\xca\x0e\x98\xf2\ \xc7\x2e\x72\xc3\xc8\x0e\x71\xcc\x3a\x5f\xb4\xf3\x9f\xb8\x9a\xe6\ \x53\x5c\xc1\xc3\x68\x72\x87\x28\x72\x03\x94\x75\x38\xd4\x5e\xa7\ \x50\xe3\xf5\x43\xe5\xc9\xc4\x1d\xb3\xfc\xfa\x66\x32\x99\x8e\x40\ \xdf\x9d\x39\x61\xe5\xc7\x25\x69\xfe\xd3\xce\x7e\xe4\x39\x33\x5c\ \xca\x3c\xa1\xbe\x81\xaa\x72\xa3\xa5\xc4\x45\xf5\xff\x00\x05\xb4\ \x44\x8e\xf0\x75\x4d\xb9\x28\xee\x8f\xa2\x9f\xdc\x3f\x81\x33\x1a\ \x07\x0d\x73\x96\x39\x71\xc8\xe9\x7e\xd3\xce\x7e\xe4\x35\xcc\xa6\ \xb9\x83\xb6\x23\xc3\x94\x34\x07\x9c\x33\x1a\x3c\x0d\xde\xab\xfa\ \xfd\x9f\xac\x1c\x6d\xe7\x65\x0f\x67\xfe\xc3\x31\xa6\x72\x26\x6b\ \xd0\x1d\x73\x96\x1e\x44\x73\x0c\xbc\x5d\x1f\xda\x79\xcf\xdc\xa7\ \x29\xbf\x26\x70\x9b\xff\x00\x10\x72\x03\x94\xd0\x01\x2c\xf6\x00\ \xb6\x5e\xc8\xb6\x7b\x1f\x01\x58\x38\xa7\x4e\xfa\x53\xfe\x30\x33\ \x1b\xe9\x8f\x22\x39\x76\x86\x80\xeb\x99\xcd\x73\x91\x1c\xde\xb0\ \x74\xff\x00\x69\xe6\x3f\x79\x43\x29\xae\x65\x5c\xa1\xa0\x6a\x9c\ \x81\x94\x73\xf0\x85\xdb\x37\x38\x8f\xdb\x47\xdc\xa4\x13\x2f\x55\ \xab\xf8\xdf\xe2\x5b\x4e\xe3\xeb\x43\x8f\xcb\x6f\xce\x0f\x0c\x38\ \x97\x5c\x6f\xc9\xfd\xb1\x33\x19\x4d\xb3\x0f\x22\x3c\xe9\x9c\xd7\ \x1e\x44\x73\x8e\x47\x11\xc7\xf6\x9e\x53\xf6\x19\x4e\x50\xdb\x5c\ \xc1\xc3\x68\x6d\xca\x1a\x07\x38\x66\x33\x3d\xb6\xd5\x36\x29\xc4\ \xf7\xdc\x8a\xf4\x41\x37\xde\x3f\x10\xaf\x99\xe4\xff\x00\x0c\x1c\ \x11\xa5\x36\x7e\xc6\x52\xd8\x8e\x99\x98\xe4\x47\x2f\x5b\x9d\x2f\ \x40\xd7\x33\x9f\xc3\x8d\x64\x72\xfe\xd3\xca\x7e\xf2\xa6\xf9\x4d\ \x73\x28\xf2\x87\x2a\x72\x06\x53\x37\x11\x2b\x6c\xeb\x51\xf4\x69\ \xfb\x87\x74\x8e\x23\xc3\x6e\xdf\x66\x9f\x88\xaf\x7f\xd1\x39\x15\ \x3d\x1c\x7e\xa7\x5f\xfc\x98\x7f\x94\x35\xcc\xe6\x29\x88\xf3\x63\ \x9c\x73\xfe\xd3\xca\x7e\xe0\x65\x35\xcc\xa6\xb8\xe0\xed\x89\xca\ \x1a\x06\xa9\xc8\x0e\x51\xcb\x49\x42\x1d\xd1\x4c\xba\x2e\x2c\xee\ \x1b\x7c\x8a\x63\xb5\xb7\xde\xf7\xaf\xc8\x0f\xce\x2f\x08\x6c\x3d\ \x25\x12\xdd\xaf\x1c\x86\x63\x4c\xe6\x37\xd0\x35\xcc\xe6\x29\x88\ \xe9\x0f\x22\x66\xda\x0e\x47\x0f\xda\x79\x4f\xdf\xe3\xfa\xdc\xdf\ \x94\x34\x0f\xe0\x87\x2f\x58\x58\x1e\xf3\x7d\xcb\x3e\x23\x8b\x1d\ \xa5\x81\x6d\xdd\xca\x1c\xc6\x99\xcb\x9a\x26\xb9\x9c\xc5\xd5\x1e\ \x44\xce\x70\xc8\xcf\xda\x79\x4f\xdc\x4c\xa6\xb9\x94\xd7\x32\x8f\ \x4e\x50\xdf\x40\xd5\x39\x03\x31\x92\x94\x9c\x61\xdb\x89\xe5\xc3\ \xe6\x20\x50\x20\xd0\x7a\x3d\x48\xe0\xc7\x68\xc1\x78\x36\xf8\xcc\ \x39\x87\x4c\xe4\x4d\xf3\x0e\x89\xcb\x0e\x2e\xa8\xf3\x23\x8f\xed\ \x3c\xa7\xef\x3a\x6b\x98\x38\x9c\x4e\x50\xd0\x35\x4e\x40\xd1\xdb\ \x8c\xe1\x52\xf8\x7b\x0b\xc0\xfe\xbe\x70\x77\xc3\x80\x65\xd0\xda\ \x71\x7e\x19\xc7\x31\x94\xcc\x3c\x89\x98\xd1\x35\xc8\x66\x31\x71\ \x1d\x23\x92\x1c\xe3\xdf\x0f\xda\x79\x4f\xdc\x9d\x72\x9a\xe6\x53\ \x94\x1a\x79\x53\x40\x75\x4e\x40\x74\x50\xaa\x21\xf7\x38\x47\x81\ \xf8\x8e\xf8\xf0\x7b\x0c\xf4\xae\x78\xf2\x66\x61\xe4\x4c\xc6\x89\ \xc8\x19\x87\x17\x58\xe4\x4c\xe4\x7e\x53\xca\x7e\xe9\x1a\xe6\xd9\ \x4d\x73\x28\xf0\xe5\x0d\xff\x00\x8b\x31\x30\x0b\x37\xe8\x28\xf2\ \xbf\x51\x8e\x03\x24\xb4\x01\xee\xc0\x0b\x6f\xa1\x2b\x40\xcc\x73\ \xa6\x63\x44\xe4\x07\x31\xc8\xdf\x24\x39\xef\x29\xfb\x94\x72\x9a\ \xe6\xf9\x4e\x49\xc0\x9d\x39\x43\x40\xd5\x39\x03\x31\x83\x27\x40\ \x06\xc3\x8a\xd2\xf5\x56\x01\x0d\xc1\x4a\x5d\x50\xe0\x84\x5d\x0b\ \x8a\xb1\xa9\x63\x82\x9d\x01\x8b\x6a\xf7\xd1\x1c\xc7\x3a\x66\x34\ \x4e\x40\x73\x1c\x88\xf2\x43\x9a\xf2\x9f\xb9\x8c\xa6\xb9\x94\xd7\ \x32\x8f\x2a\x68\x0e\xa8\xf2\x06\x87\x8f\xfd\xc6\x79\x68\x40\x6c\ \x1f\x8e\x98\xe6\x39\xd3\x31\xa2\x72\x03\xa5\x58\x9a\x47\x2f\x79\ \x4f\xdf\xe0\x0d\x73\x07\x6c\x47\xf9\xa1\xca\x38\x78\xff\x00\xdc\ \x67\x9a\x9f\xe3\x76\xea\x19\x87\x4c\x79\x23\x31\xa2\x72\x03\x9c\ \xc5\xd6\x39\x21\xc6\xf2\x9f\xb9\xcc\xa6\xb9\x94\xe5\x3a\xdc\x39\ \x43\x40\xd5\x39\x13\x28\xcf\x1f\x85\xe6\xa7\xf8\xdd\xba\xa6\x63\ \x4c\xe4\x8c\xc6\x89\xc8\x0e\x71\xc5\xc7\x6d\x31\xe4\x89\xfb\x4f\ \x39\xfb\xce\x1b\x65\x35\xcc\xa3\xc7\x95\x34\x07\x54\xe4\x0c\xdc\ \x5e\xdf\xf7\x18\x6c\x3b\x8c\x3e\x8c\x5e\x1c\xc9\xb6\x61\xe4\x87\ \x31\xcc\xde\x7b\xc5\xd6\x1e\x4b\xf6\x9e\x73\xf6\x1b\xea\x1a\xe6\ \xfc\xa9\x83\xb6\x23\x7c\xa6\xda\x26\xa8\xf2\x06\x5f\x0f\xfb\x8c\ \xdd\xf6\x9f\xe7\xf6\x6b\x1a\x86\x61\xe4\x87\x31\xcc\x99\xcc\xe3\ \xcd\xfe\xd3\xce\x7e\xe8\x99\x4d\x73\x29\xca\x10\xe5\x0d\x03\x9e\ \x32\x78\xbf\xdc\x66\xec\xff\x00\x3f\xb3\x5c\xcc\x6f\x98\xcc\x72\ \x43\x98\xd1\x1e\x44\xd2\xac\x4d\x3b\xd7\xfd\xa7\x9c\xfd\xc0\xdf\ \x38\xf3\x46\xda\xe6\x51\xef\xca\x9a\x06\xa9\xc8\x8e\x3e\x3f\xf7\ \x0d\xd2\xc0\x18\x2e\xbd\xe0\x7a\x80\x3e\x1c\x81\x98\xd4\x39\x21\ \xcc\x68\x8f\x22\x39\xcc\x5c\x47\x4c\x75\xbf\x69\xe7\x3f\x74\x8c\ \xa6\xb9\x94\xe4\x0c\x1d\xb1\x1e\x1c\xe8\xea\x9c\x8e\xf8\x78\x3f\ \xdc\x17\xf6\x17\x98\x38\xf6\xe3\xfd\xcf\xf6\x3b\x1c\x88\xe6\x35\ \x07\x92\x33\x1c\xd0\xe7\x1c\x5d\x73\x53\xf6\x9e\x73\xf7\x9f\x32\ \x9d\xb9\x4e\x37\xca\x9b\xf2\xc7\x20\x61\xc7\xec\x3f\x73\x82\xa3\ \x46\x9f\x79\xbd\xfe\xef\x3f\xc8\xec\x43\x91\x1c\xc6\xa0\xf2\x46\ \x7d\xf9\x91\xcf\x79\xcd\x31\xd3\xfd\xa7\x9c\xfd\xd3\x32\x9c\xa9\ \xae\x65\x1e\x3c\xa9\xa0\x6b\x1c\x81\x3c\x17\xee\x0a\xc5\x96\x8f\ \xb8\x78\x47\x70\x43\x0e\x38\x80\xfd\x41\x16\xaf\xa0\xdf\xd4\xb0\ \x16\xf8\x1f\x96\xa3\xf8\x7a\xb5\xfe\x09\x68\xbb\xad\x0f\xbd\xe5\ \x20\xa7\x5a\x4f\xa6\x99\x56\x38\xf5\x3e\x62\x01\x04\x76\x4e\x3a\ \x83\x98\xd4\x1e\x48\xcf\xbf\x32\x67\x32\x26\x23\xa7\x7a\x5f\xb4\ \xf3\x9f\xbc\x89\xae\x65\x39\x03\x07\x6c\x47\x9d\x39\xdf\x59\x08\ \x41\xe6\x51\x86\x63\xba\x2d\xd7\x69\xd2\x31\xe3\x55\xf0\x7a\xcd\ \xc1\xdc\x90\x40\x0b\x46\xe8\x7d\x10\x0b\xbe\xbd\xf1\xb9\x73\x82\ \x71\x2e\x35\x68\x7a\xe1\xf5\x29\x0f\x8a\x9f\xb2\x70\x65\x7b\xf0\ \x7f\xec\xe0\xdd\xd0\xf0\x19\xeb\xa2\x66\x1d\x43\x92\x3f\x81\x1c\ \xe6\x2e\xbd\xe8\x7e\xd3\xce\x7e\xe5\x37\xce\x3c\xd1\xca\x75\xb8\ \x72\x9b\x68\x8e\xa9\xa5\x5c\x2f\xa4\xb0\xbc\x3a\x55\x7e\x8e\x32\ \xcc\x2a\x7a\x2f\xb6\x5f\x84\xf4\x51\x78\xa2\x70\xf3\xbb\x13\xf3\ \xc6\x34\xee\x23\x7e\xa6\xc7\xfd\xe0\xc1\x7e\xe1\xf0\xc1\x45\xea\ \xfd\x86\xc7\xb4\xbc\x2f\x25\xe1\x73\x83\xb8\x33\x62\xf3\xa2\xc7\ \xd3\x28\x4e\xfc\xaf\xcb\x84\xa3\x13\x77\x3c\x87\xfc\x81\x0f\xa2\ \x8d\xfd\x6f\x29\x35\x07\x50\x79\x23\x90\x1e\x44\x73\x8e\x71\xd3\ \xbc\xff\x00\xb4\xf3\x9f\xba\xa6\x53\x5c\xdf\x36\xfa\xe6\x51\xe3\ \xca\x9c\xb0\xe5\xa1\x1b\xb9\xfe\xa5\xf1\xc0\x74\x5f\x2d\xa1\x6c\ \xed\xc3\x0f\xa2\x5f\x88\xbd\x44\xf9\x6e\x37\x7e\x80\x95\xf5\xb4\ \x38\x74\x09\x72\xe5\xc2\x71\x7f\x9e\xd0\xfc\x3f\xd2\x1a\x2f\x57\ \xec\x3a\x7b\x41\xc2\xe0\xcb\x9b\xe3\x78\x5e\x17\x0d\xef\xaf\x79\ \x4a\x10\x75\x29\xf4\xca\x10\x2e\xed\x7f\xd9\x01\x06\xde\xa9\xf6\ \x4a\xa2\xbd\x37\x13\x38\xea\x0f\x24\x72\x07\x23\x79\xcc\x95\x88\ \xea\x5e\x5f\xda\x79\xcf\xdf\xe0\x8e\x54\xc1\xdb\x11\xe5\x4d\x03\ \x55\x16\x00\x77\x78\x12\xc8\x00\xee\x1f\x45\xcb\x11\xae\xf4\x1f\ \x3c\x7c\x4b\xe0\x5e\x8d\x9f\xf4\x4b\x50\x4b\xa9\x5f\x11\xbd\x64\ \x95\xbe\x70\xb9\x72\xf0\xe1\x38\xe1\x6c\xe2\xff\x00\x7d\xa1\xb5\ \xed\xf8\x43\x41\xbd\x38\x77\x60\xcb\x97\x88\xcb\xc9\x78\x5c\xb9\ \x78\x5c\x5c\x41\xee\x0d\x32\x88\x1d\xd1\xaf\x98\x6a\x0b\xf4\x4f\ \xd3\x29\x0e\xca\xab\xce\xd3\xd6\x9d\x12\x78\xce\x3a\x83\xc9\x5e\ \x73\x9a\x34\x0c\x6b\x5c\x72\x7e\xd3\xce\x7e\xf2\x67\x2a\x72\xa6\ \xdc\xa9\xa0\x67\xa7\xa4\x6c\xd3\x76\x87\xea\x70\x16\x7b\x22\x7d\ \xb4\x4e\x28\x1f\xf0\xd8\xff\x00\xb2\xe0\x59\xd0\x07\xed\xb6\x5b\ \x0f\xea\x30\xa3\x80\x06\x37\x8d\xe2\x32\xe5\xf6\x9c\x30\xe2\xff\ \x00\x2d\xa1\xe3\x76\xfe\x88\x28\xfd\x50\xee\xcb\xf5\xc0\xf7\x97\ \x2e\x5e\x17\x06\x5e\x37\x2e\x5c\xb9\x72\xe5\xcb\xc3\xd7\xfa\x30\ \xf8\x95\x27\xb0\xfd\x9b\xc0\xe0\x21\xee\x3c\x3f\xf6\x50\x08\xba\ \x37\xf3\xc2\x00\x42\xd9\x56\x72\x03\xcc\x9a\x23\xc9\x19\xc7\x39\ \xa8\x61\xfb\x4f\x39\xfb\xae\x65\x35\xcd\xf9\x53\x28\xd3\xca\x9a\ \x23\x82\x52\xad\xd5\x44\x7d\x08\x75\x2f\xe2\x70\x97\xfb\xb0\xff\ \x00\x6c\xe0\x60\xf7\xb3\xf3\xc3\xc4\xb0\x10\x7f\xe0\x0a\x88\x2d\ \xb8\xbd\xde\x2e\x4b\x97\x85\xe2\x32\xf0\xbc\x6e\x5e\x1c\x5f\xe9\ \xb4\x3c\x6f\x65\xfa\x41\x41\xea\x87\x74\xbc\x09\x73\xe6\x5c\xf9\ \x97\x85\xc1\x97\x92\xf0\xb8\x32\xf0\xb9\x72\xe6\xf3\xd7\xce\x31\ \x29\x8e\xd8\xe3\x7d\x92\x90\x6f\xb9\x4f\xae\x0c\xa1\x0a\xba\xb6\ \xf3\x0e\x25\x8d\x8f\x53\x54\x7f\x94\x1c\xe6\x4a\xd7\xb9\xfb\x4f\ \x39\xfb\xa0\x6f\x9c\xe1\xca\x99\x4e\x40\x72\x8f\x4e\x54\xcb\x4b\ \xb1\x09\x78\x37\x40\xbf\xad\xe5\x99\xec\x40\xfb\x6a\x70\x4f\x58\ \x45\xf4\x54\xb4\x17\xd8\x1f\x3d\xe2\xf6\xce\xab\xfa\x85\x1b\x70\ \xc2\xf1\xbc\xd7\x85\xe4\xbc\x2e\x5e\x17\x38\xbf\xc3\x68\x78\xdd\ \xbf\xb1\x05\x7f\xb6\xf3\x72\x5c\xb9\x72\xf0\xb9\xf3\x2e\x5c\x1c\ \x2e\x0c\xb9\xbe\x17\x2f\x0b\xc2\xf0\xbc\x2f\x1a\x13\x89\x15\xbf\ \x44\x5a\xfa\xda\x53\x03\xdd\x0f\xb2\x55\x09\xf7\x38\x7c\x71\x95\ \x96\xaf\xa0\xfd\x31\xd2\x1e\x64\xe6\xef\x40\xc5\xc8\x3a\x7f\xb4\ \xf3\x9f\xbc\x81\x94\xe5\x4e\x49\xc3\x68\x3c\xaf\xa8\x10\x21\xe6\ \x5c\x01\x3a\x87\xe3\x84\xb0\x15\xe8\x33\xf4\x5b\x38\x19\x2f\x79\ \xf7\x1b\x4a\xf6\x50\x7d\x1c\x20\x17\x75\xc7\xbc\xbc\x2f\x1b\xc6\ \xe5\xe1\x72\xf2\xde\x17\x2f\x1b\xc2\xe5\xcf\xf0\x7a\x43\xc4\xf4\ \xfe\xc3\x46\xff\x00\x97\x17\x8b\x0e\x13\x8e\x16\xcb\xc6\xe0\xcb\ \x97\x8d\xcb\xc9\x78\x5e\x17\x06\x5e\x17\x95\x07\x72\x53\x57\xfb\ \x87\xd3\x29\x03\xba\xa7\xff\x00\x29\x4c\x3b\xfe\x04\x87\x8d\xef\ \x41\xbf\xad\xf4\x07\x93\x1c\xfb\xe8\x8f\x24\x67\x1c\x95\x8e\xda\ \x5f\xb4\xf3\x9f\xbc\xb1\xae\x6f\x98\xd7\x32\x9c\x26\xfa\xfb\x16\ \xed\xde\x70\x95\x3d\x15\xf4\x4b\x43\xfc\x04\x5f\xf9\x2c\xc3\x7a\ \x21\xff\x00\x44\xbb\x12\x74\x03\xe2\x7a\xf2\x46\x5e\x67\x4c\x97\ \x8d\xe1\x78\x5c\xbc\x97\x8d\xe5\xbc\x6f\x1b\xc3\x8f\xfd\xf6\x87\ \x2b\x45\x34\x95\x51\xc6\x28\xe1\x71\x4f\x73\x00\x3f\xa9\x41\x53\ \xb2\xbf\x71\xb1\x1e\x0f\x0b\x94\xf7\x72\x5c\xb9\x78\xdc\x3d\xe5\ \xcb\x97\x85\xcb\x97\x8d\xcb\xc2\xe5\xcb\x97\x2e\x5c\xbc\xd5\xc6\ \xce\x09\xd4\x94\x65\x17\x56\xbe\x65\x38\x5f\x54\xb7\xd7\x12\x53\ \x9d\x85\xc2\xfb\x2e\x56\x8d\xe9\x39\x4e\x4c\x79\x01\xe4\xaf\x4e\ \xb2\x0e\x87\xed\x3c\xe7\xef\x22\x3c\xa9\x94\xe4\x07\x28\xe9\xd6\ \x8b\xe8\xfe\xa7\x07\x1a\xec\xde\x5b\x42\x59\xda\xa8\x78\x3f\xec\ \xb6\x10\x74\xe3\x1f\x2d\xc4\x6f\xde\xe4\xfa\xda\x00\x6c\x06\x1b\ \x63\x78\x5e\x41\xcb\x79\x0c\x6f\x1b\xcb\x72\xf0\xb9\x53\xdd\xc5\ \x44\xba\x07\x74\x70\xfb\x4a\x91\x05\xb0\x1c\x20\x80\x14\xe8\x38\ \xca\xb5\x9e\xb7\x1f\xa4\x5c\x52\xec\xf0\x3c\x42\xa5\x7d\x0a\x30\ \xb9\x78\x5c\xf6\x65\xe5\xb9\xf3\x2f\x0b\xc2\xe0\xcb\xc9\x78\x5e\ \x17\x85\xe1\x7a\x0d\x35\x4b\xaa\xa6\x50\x06\x3a\x35\xf3\xc6\x06\ \x8f\x60\x3e\x1f\xfb\x29\xc5\xb7\x4f\xd1\xb4\xf5\x0c\x84\x9e\x30\ \x1e\x4c\xcd\xd6\xf4\xb6\xe4\xaf\x40\x73\x8e\x7f\xda\x79\xdf\xde\ \x48\xca\x72\xa7\x20\x60\xe2\x39\x50\x8a\x06\xea\xa2\x5b\x95\x1d\ \xd7\xf5\x38\x3a\x3d\xd0\x1e\x78\xf8\x97\xe1\x3d\x1b\x7f\x51\x2f\ \x0b\x8e\xa7\x88\xa8\x9b\x97\xbc\xad\xf3\x2f\x1b\xca\x41\xcb\x78\ \xde\x4b\xc2\xf0\x19\x78\xde\x37\x93\xaf\x79\xc2\xcf\xe4\x32\xdf\ \xec\xc7\xfe\x4f\x74\x60\xdf\xfe\x47\xb8\xc9\xf0\x3e\xe1\x9b\x6b\ \xd9\xf3\x2a\xc1\xf4\x38\xcb\x97\x85\xcb\xc2\xe5\xcb\x25\xce\x12\ \xe5\xcb\x96\x4b\x97\x2f\xd6\x5c\xb9\x78\x5c\x19\x79\x2f\x0b\xc2\ \xf0\xbc\x2f\x47\x78\x04\xbb\xab\x7e\x25\x18\x9e\xd5\x9e\x77\x89\ \xa3\xb8\x5a\x3e\x99\x52\x3c\xe8\xdf\xcf\x09\x52\x49\xd4\x6c\xe4\ \x8c\xdb\x73\x9b\x4b\xce\x64\xac\x83\x97\xf6\x9e\x53\xf6\x1a\x46\ \xfa\xa6\xb9\xbe\x63\x5c\xca\x5b\xb4\x50\xd6\xee\x10\xfd\x6f\x2d\ \x0f\x56\x15\xf6\xd4\x6d\x86\xec\xdd\xe0\xff\x00\xb2\xe8\x41\xd0\ \x3c\x9b\x62\xe4\x6f\x54\x80\x02\x82\xbd\xb3\x5c\xbc\x6e\x5e\x42\ \x0e\x5b\xc9\x78\xde\x17\x85\xcb\xc6\xe5\xe1\x5a\x43\xaa\xd4\xb4\ \x13\xb9\xb4\x00\xf1\x1e\x9c\x07\xde\xec\x0b\x50\x2d\x04\x12\x7d\ \xaf\xa8\xe0\xa7\x7b\x6f\xd4\x36\x0d\x8e\x95\x85\xc1\xc6\xf1\xbc\ \x6e\x5e\x1c\x21\x2e\x5c\xb9\xc3\xa6\x17\x2e\x5c\xbc\x46\x5c\xbc\ \x6f\x0b\x97\x2e\x0c\xbc\x2f\x4f\x7f\x59\x7e\x57\xae\x4a\x03\xb3\ \xa9\x7e\xc9\x40\x31\xd5\x43\xfd\x32\xa8\xb8\xea\xdb\xe9\x87\x12\ \xcd\x9e\xba\xe7\x22\x3c\x95\xe8\x19\xf6\xc9\xfb\x4f\x29\xfb\x0e\ \x4b\xaf\x2a\x72\xb5\x19\x3a\x90\x79\x96\x40\xae\xeb\xf1\x2f\x45\ \xfa\x28\x1f\xdb\x2f\x83\xbd\x1b\xf3\xff\x00\x25\xbd\xeb\xa3\xc4\ \x2a\x50\xb6\xf1\x7b\xbc\x59\xd3\x2d\xe8\x5e\x4b\xcb\x78\xde\x17\ \x92\xf1\xbc\x2f\x1b\x87\x19\xb1\xbf\x21\x8c\x50\x3d\xf8\x99\xef\ \x28\x1b\x8d\x57\xae\x76\xf9\xda\x23\xfe\x2f\xbc\x16\xbd\x67\xaf\ \xde\x5b\xc6\xf1\xbc\x6f\x1b\x83\x92\xe5\xcb\xc4\xf6\xc2\xe5\xcb\ \xc2\xe0\xcb\xc6\xe5\xe1\x72\xe5\xe1\x78\x5e\xa2\x09\xc4\x18\xe5\ \xfa\x3a\xd7\xd6\xd2\x94\x3f\xd4\xb7\xd9\xff\x00\x25\x00\xf3\xd4\ \x3f\x2e\x3e\x25\x15\xf7\x6e\x07\xe9\xe3\xfc\x81\xa0\x39\x1c\x83\ \x87\xed\x3c\xa7\xee\x07\x24\x65\x39\x53\x54\x0f\xa6\x8e\x2e\xe8\ \x75\xf4\x25\x07\x9e\xab\xf6\x13\xd5\xf4\x3f\xea\x23\x80\x0f\x4c\ \xd7\x3c\xe5\xbd\x0b\xc9\x79\x76\x83\x85\xe1\x79\x07\x25\xcf\x58\ \x20\xb5\x38\x4a\x3e\xfb\x10\x94\x5b\xfa\x04\x01\xea\xbd\x08\x38\ \xd1\xfa\xf0\x78\x94\x49\x7e\xa7\xd4\x28\x00\x00\x74\x25\xe3\x79\ \x6e\x5e\x17\x88\xcb\xc2\xf1\xb9\x78\x5c\xf6\x97\x85\xcb\x87\xbc\ \xb9\x70\x70\xbc\x2e\x0c\xbc\x97\x85\xe1\x78\x5e\x17\xad\x43\xd2\ \x51\x00\xba\xbc\x06\x53\x02\x75\x6d\xfd\xc4\xa6\x0a\xbd\x63\xec\ \x95\xa0\x7a\x6b\xf5\xa7\x79\xf8\x74\xe7\x2f\x40\x74\x3f\x69\xe5\ \x3f\x75\x4d\xf5\x4d\x73\x7c\xc6\xda\x67\x40\x6a\x3d\x03\x8a\xc6\ \x69\xe2\x57\xb3\xc0\x7d\x64\xd8\x14\x83\xde\x98\xad\xc4\x9b\x30\ \xc9\x72\xf2\x5c\x1d\x0b\xc9\x79\x49\x79\x6f\x12\x70\xd2\x7d\xc3\ \x38\x51\x8e\xef\x16\x58\x99\xdd\x5c\xa7\x31\xe8\x46\xf1\xfb\x83\ \xf7\x0b\xe1\x0f\x77\x17\xef\x1b\xc6\xf1\xbc\xd7\x85\xe4\xbc\x2e\ \x5e\x17\x2e\x5c\x19\xc2\x5b\x2e\xe5\xcb\x97\x06\x7c\xcb\x97\x07\ \x0b\x83\x2f\x25\xe1\x72\xe5\xe1\x78\x5f\x20\x70\xa1\xa7\xb9\xc1\ \x94\x62\x47\xa1\xf3\x29\x81\x7d\x53\xe9\xb2\x52\x0f\xba\x56\x7d\ \x96\x4f\x57\x18\x4f\xe6\x80\xe7\xbd\x21\xe4\x8d\x01\xc9\x58\xfe\ \xd3\xca\x7e\xe2\x72\xe7\x20\x65\x34\xda\x9e\x03\xfb\xa9\xf1\x73\ \x6e\x1a\x1b\x32\x20\xb7\x06\x2f\x7b\x26\xe0\x1c\x2e\x19\x6e\x5e\ \x7b\x97\x8d\xcb\xc9\x70\x71\xb9\x52\x43\xba\xd4\xe1\xec\xbb\xbc\ \x08\x45\x2f\xb0\x12\x82\x71\xd3\xe3\x13\x8f\xa5\x7a\xf0\x20\x28\ \x00\xe8\x15\x85\xe1\x78\xde\x37\x2f\x0b\x97\x93\xe6\x0e\x37\x8d\ \xe3\x78\xed\x2e\x5c\xe1\x3e\x65\xcb\x97\x8d\xe1\x72\xe5\xe0\x32\ \xe5\xe3\x78\x5c\xb9\x72\xe5\xcb\x97\x38\x72\x3e\xa0\xaa\x87\xc4\ \xa6\x01\x74\x1e\x7b\xf9\x9c\x20\x2f\xf8\xf0\x7f\xec\xa3\x38\xcf\ \xfe\x86\xd3\xd6\x7e\x12\x78\xca\x67\x39\xdb\xd0\x1c\x95\x3f\x69\ \xe5\x3f\x72\x1c\xb9\xc8\x1b\x65\x34\x9c\x17\x6b\x7a\x05\x1f\xae\ \xae\xc4\xbe\x62\x74\x1f\x68\x8e\xa9\xef\x01\xd9\x1c\x3a\x65\xbd\ \x0b\xc9\x79\x09\xc1\xc1\xf7\x0c\xe0\x44\x3b\xbc\x59\x70\x4f\x75\ \x96\x46\xbb\x04\xe3\x02\x7b\x1c\x59\xc7\x8e\xfb\xb8\xb2\xf1\x1c\ \x6f\x0b\xc6\xf2\x5e\x37\x96\xf1\xbc\x6f\x1b\xc6\xe0\xe4\x19\x72\ \xf1\xbc\x2e\x5c\xbc\x2e\x0c\xbc\x6e\x5c\xb9\x78\x5e\x17\x2e\x5f\ \x27\xeb\xdc\x1b\xf1\x29\x80\x1d\x2c\x7e\xce\x32\xb8\xef\x74\x9f\ \x4d\x4a\x91\x07\xa9\xf3\x10\x08\x26\xc8\xd9\x85\xe7\x39\xdb\xd0\ \x32\x7e\xd3\xca\x7e\xf3\x87\x3d\x5a\xbc\x02\xfd\xd1\xff\x00\x9c\ \x86\xdb\x41\x6d\x6f\x79\xff\x00\x81\x3a\x85\x7b\xc1\xb2\xc6\xf2\ \xde\x85\xe4\xad\x21\xdd\x67\x04\x65\xdd\xe0\x4e\x1e\xa7\xb0\x25\ \x57\x69\xc4\x69\xf6\x04\xa2\x59\xf6\x38\x10\xd2\x43\xb0\x61\x78\ \x5e\x4b\xc9\x79\x4c\x6f\x1b\xcb\x72\xf0\xbc\x97\x85\xcb\xc2\xe5\ \xe1\x73\xda\x5e\x17\x2f\x0b\xc2\xf0\xbc\x2e\x0c\xb9\xbe\x37\x85\ \xe1\x78\x5e\x17\xca\x25\xf0\xa2\x5a\x94\xf5\xcf\x12\x9c\x62\xf4\ \x9f\xb2\x70\x16\x7b\xb0\xff\x00\x4c\x78\x3f\xf8\x00\x33\xa5\xf2\ \x23\xc9\xde\x80\xe1\xfb\x4f\x29\xfb\x94\xfe\x1c\x75\xb7\x7f\x0f\ \xa9\x1c\xa0\xa6\xca\x40\x75\xbf\x78\x1d\x43\xda\x6c\x94\xf7\x9e\ \xd8\x8e\x87\x01\xb5\xed\xc4\xce\x10\x43\xbb\xc5\x8e\xd2\x5d\xd6\ \xe2\x50\x8b\xb0\x4e\x28\x83\xdb\x76\x71\x7b\x7b\xb8\x9c\x84\xbc\ \xb7\x8d\xcb\xc6\xf0\xbc\x6f\x1b\xc6\xe5\xe4\x25\xe1\x72\xf1\xbc\ \x06\x5e\x17\x2e\x5c\x19\xc2\x6d\x2e\xe5\xcb\x9c\x20\xe1\x72\xe5\ \xe1\x70\x65\xe4\xbc\x2f\x0b\xc2\xf0\xbe\x59\x07\x72\x6c\xc7\xd8\ \xb9\xf4\xf0\x94\xe0\xfd\xeb\xf2\xe1\xe2\x51\x8f\xf7\x4f\x31\xff\ \x00\x20\x05\x9f\x63\x8f\xe9\xe3\x38\x9c\x12\xb2\x1f\xc3\x6f\x7b\ \xcf\x29\xfb\x98\xe4\x8c\xa7\x20\x65\x33\x9b\x4f\x7e\x87\xd0\x1f\ \xd7\x31\xb0\x29\xf3\x05\xbd\x7b\xa7\x50\x1e\xd3\x62\x18\x5c\xbc\ \x0d\xb2\x1e\xac\x3f\x06\x7d\xde\x04\xde\x50\xec\x70\x25\x54\xde\ \xfa\xee\xf0\x21\x78\xb2\xec\x70\x25\x18\x87\xa1\x8d\xcb\xc9\x70\ \x71\xbc\x2f\x25\xe3\x78\x5e\x37\x8d\xcb\xc2\xe5\xe5\xbc\x6f\x1b\ \xc6\xf1\xda\x5c\xb9\xc2\x7c\xcb\xc2\xf0\x19\x78\x5c\xb9\x78\x5c\ \x19\x78\xdc\xb9\x72\xe5\xcb\x97\x2e\x5f\x31\x45\xdf\x53\xac\xa1\ \xa4\x7f\xe0\x19\x4e\x07\xaa\xaf\xfb\x25\xdf\x03\xb8\x53\x58\x9c\ \xf5\xe7\xfd\xa7\x94\xfd\xcc\x73\x07\x2a\x66\x37\x9f\xe8\xae\x3c\ \xe6\xe8\x10\x3b\x84\x15\x5b\x67\x68\x8e\x15\x3b\xee\xc4\xb6\x17\ \x75\x88\xb4\x0a\xf6\x27\x1e\xa9\xf5\xde\x31\x7c\x4e\xfc\x59\x6f\ \x25\xe5\xdb\x1b\xc2\xf2\x0e\x37\x85\xe3\x79\x2f\x1b\xcb\x78\xde\ \x37\x8d\xe3\x70\x71\xf9\x97\x52\xe5\xe3\x78\x5c\xb9\x78\x5c\x19\ \x79\x2f\x0b\xc2\xf0\xbc\x2f\x91\xf5\x9b\x02\xf9\x8f\x44\xb1\x5d\ \x00\xf7\x80\xa9\x5d\x11\xfc\x9c\x54\x6e\xe1\xfb\xe3\x29\x10\x3b\ \x22\xf3\x52\xfb\x81\xdc\x6d\xbd\x71\xe4\xcc\xdf\xb4\xf2\x9f\xb9\ \xcf\xe1\xcd\xf3\x1b\x65\x37\x9f\xe9\x77\x7f\x00\xa6\xe1\x28\x51\ \x47\xa7\x06\x23\x7b\xf7\x4d\x80\x7d\xb3\xde\x4b\xca\x41\xc2\xf0\ \xb9\x78\xde\x4b\xc2\xf1\x31\xbc\x6f\x2d\xcb\xc2\xf3\x5e\x37\x2e\ \x5c\xb9\xed\x8d\xcb\xc2\xe5\xe1\x72\xf0\xb8\x32\xe6\xf8\xde\x17\ \x85\xc1\x97\x85\xe9\xf1\xff\x00\x78\x66\xd1\xf1\x2e\x0f\x5f\xdd\ \x46\xb8\x0b\xb0\x5b\x2b\x92\xfa\x9f\xbe\x84\xaa\x57\x74\x7f\xab\ \xfe\xa3\x02\x3d\x7e\xda\x6d\x8c\xed\x30\xab\xe0\xfa\xcf\x48\xe8\ \x41\xe3\x0b\xcd\xed\xa6\x3c\xa5\xe4\xfd\xa7\x9c\xfd\xd0\x39\x23\ \x28\xf2\x06\x53\x29\xbc\x14\x6e\xff\x00\x84\x9b\x23\xf9\x8b\xd1\ \x7d\xa6\xe8\xa7\xbc\x13\x88\x47\xdb\x2d\xcb\xc6\xe5\xe4\xb9\x79\ \x6f\x1b\xc9\x78\x5e\x37\x8d\xe3\x72\xf2\x12\xf0\xb9\x78\xde\x03\ \x2f\x0b\x97\x2e\x13\x86\x17\x2e\x5c\xe1\xd2\x5e\x17\x2c\x97\x88\ \xcb\xc9\x78\x5e\x17\x85\xcb\xca\xf0\x2d\xe0\x77\x67\x56\x7d\x86\ \xd8\x5f\xf9\x72\xaf\x00\x77\x78\xc2\x49\xdb\x04\xf0\x54\xee\xeb\ \x45\x3e\x16\xf8\x9c\x27\x75\x31\xfc\x7f\x25\x52\x0f\xaa\x2b\xe8\ \x20\xca\x76\xc9\xbe\xdb\xf9\x9b\x80\xfb\xb8\x6c\x7b\xcf\xf0\x3b\ \xb9\x07\x3d\xe9\x8f\x26\x4b\xc3\xf6\x9e\x73\xf7\x40\xe6\x0e\x54\ \x72\xfb\x99\x7d\x83\xfc\x39\x67\x11\xa8\x0e\xef\x79\xff\x00\x8a\ \xce\xc0\xf7\x82\x3c\x46\xf2\x5e\x4b\xc9\x70\x71\xbc\x2f\x25\xe3\ \x78\x5e\x17\x2f\x1b\x97\x85\xcb\xcb\x78\xde\x37\x8d\xe2\x5c\xb9\ \x73\x86\x17\x2e\x5e\x17\x2e\x17\x2e\x5c\xbc\x2e\x5c\xbc\x6e\x5c\ \xb9\x72\xe1\xc6\x71\x3f\x76\x8d\xcc\x20\xbd\x23\xd7\xfe\x52\xda\ \x3b\x6b\xc7\xea\xd8\xf7\x46\xd4\xfd\xac\x97\x88\xb7\xa8\xfd\x51\ \xe6\x51\x83\x74\x3e\x82\xcf\x98\x80\x81\xff\x00\xdd\x5e\x3a\x00\ \x0d\x86\x87\xc1\x94\xc3\xc8\x9f\xe0\x77\x72\xde\x87\x0e\x9a\x43\ \xca\x5c\xfd\xa7\x9c\xfd\xd1\x3f\x8d\x32\x55\xff\x00\xfb\xcf\xf1\ \x26\x02\x9b\x29\xed\x3a\xb7\xc8\x81\xd4\x3d\xa6\xc8\x7e\x78\x63\ \x79\x2f\x2e\xd8\xde\x17\x90\x72\xde\x37\x0c\x6f\x1b\xcb\x78\xde\ \x37\x2f\x0b\xc6\xe0\xe1\x73\xd9\x97\x58\x5e\x37\x85\xe1\x78\x5c\ \x19\x78\x20\x5a\x07\xab\x53\x72\x4f\x6e\x28\x0f\xbb\x5a\x8c\x7e\ \x0b\x77\xcc\xe1\x24\xbd\x45\xf6\xe0\x4a\x85\x7d\xdf\x00\xac\xb5\ \x3f\xa8\xcf\xd8\xbe\x23\x22\x03\xff\x00\xcc\xf0\x3c\x4e\x97\x6a\ \xbf\x00\x22\xab\x6a\xaf\xae\x26\x62\x1b\xcf\x3a\x7f\x81\xdd\xd6\ \x39\xed\xcf\x79\xe7\x3f\x79\xc3\x29\xc8\x0e\x63\x6c\x7b\x17\xf4\ \x4a\x7f\x14\x65\xdc\x03\xda\x03\x7a\xf7\x45\xee\x1e\xdc\x66\xc0\ \xce\x39\x2f\x29\x07\x0b\xc6\xf1\xbc\x97\x85\xe3\x78\xde\x37\x96\ \xe5\xe0\x39\x2f\x0b\x83\x85\xcb\x83\x2f\x1b\x97\x2e\x12\xf0\xb8\ \x71\xe9\x3f\x6c\x27\x50\xde\x85\x1e\x65\x7e\x1f\xde\xe8\x49\x8b\ \x65\x7e\x06\x52\x37\x3f\xf2\x2b\x7e\x25\x68\x6e\xbf\x7d\x50\x94\ \x45\xb7\xe3\x7f\x09\xfb\x0e\x04\x8d\xbc\x80\x3e\x60\x54\xa3\xb2\ \xe2\x6a\x1b\x4f\x3a\x7f\x81\xdd\xd0\xbe\x48\x79\x2d\xcf\x79\xe7\ \x3f\x74\x8d\x33\x7d\x53\x90\x1c\xa6\x34\x51\xdc\x57\xe8\x7f\x7f\ \xc5\x9a\x1b\xb0\x41\xec\x07\xd4\x5e\xe3\xe5\x36\x61\xf9\xc6\xe5\ \xe4\xb9\x79\x6f\x1b\x97\x8d\xe1\x78\xde\x37\x2f\x0b\x97\x93\x8c\ \xbc\x2e\x5e\x37\x8d\xe3\x72\xf0\xe1\x80\xdc\x06\xc8\xf5\x6a\x6e\ \x77\x76\x17\x07\xba\xf5\x55\x38\x2d\x40\x28\xf6\x30\x8f\xb6\x84\ \xa5\xea\xa0\xaf\x06\xbc\xca\xb1\x2d\xfe\xe2\xe2\x8f\xf7\x10\x53\ \xed\x5e\x25\x1a\x0d\x8b\xf5\x1c\x21\xdf\x4c\x66\x31\xf3\xa7\xf8\ \x1d\xdd\x1b\xcf\xed\x2f\x4c\x79\x0f\xda\x79\xcf\xdd\x33\x92\x1e\ \x6c\x70\x64\x25\xbe\xdc\x3c\x5f\xa7\xf1\x86\x9e\xfa\xc0\xec\x3e\ \xdc\x26\xe9\x7e\xe2\x71\x00\x7d\x9c\x2f\x25\xc1\x97\x85\xe1\x79\ \x2f\x1b\xc2\xf0\xb9\x78\xdc\xbc\x6f\x2d\xe3\x78\xde\x37\x87\xac\ \xd9\x2f\xa5\xdb\x37\x49\xf6\xa8\x6e\xab\xb5\xad\x97\xc1\x3d\x10\ \x7d\x85\x45\xd1\x7b\x84\x3e\x16\xc1\x82\xab\xd7\x87\x7f\xcf\x68\ \x28\x87\xe8\x4f\x02\x11\x3e\x6d\x71\xf7\x57\xe6\x23\x6c\xbb\xad\ \xe0\x6f\x89\x81\x0c\x4c\xa6\x73\x0f\x3a\x7f\xa1\xdd\xd3\xbc\xf7\ \xa6\x3a\xff\x00\xb4\xf3\x9f\xbc\xf1\x94\xe5\x86\x03\x85\xd4\xfb\ \xd7\x0f\x35\x28\x70\x14\x1a\x4e\xcf\x5f\xe3\x0d\x5d\xa6\xd4\xdf\ \x7e\x31\x3a\x2f\xb3\x3f\xb2\x20\x25\x88\xfb\x65\xdb\x1b\xc2\xf2\ \x0e\x5b\xc6\xe1\x8d\xe3\x79\x6e\x5e\x17\x0e\x30\xfb\xf7\xc6\x75\ \xdf\xb5\x70\x4f\xd2\x07\x1d\xf8\x0a\x5e\x2e\x55\xed\x60\x5e\x47\ \xf5\x2a\xd1\xb7\x39\xf9\xe1\xe5\x28\x92\x5d\x84\xf8\xe2\xf3\x2a\ \xd0\xfd\x17\xdd\x78\x10\x0d\x3b\x70\x03\xe0\x86\x63\x03\x38\xc8\ \x66\x32\x79\xd3\xfd\x0e\xee\xa1\xa1\xc3\xa6\x98\xea\xfe\xd3\xce\ \x7e\xea\x1a\x66\xfa\xa7\x20\x39\x87\xb4\xa1\x7c\x4d\xe3\xb3\xe2\ \xdf\xc6\x9c\x80\xd3\x62\x9e\xd3\xbf\x3d\xe7\xfe\x6b\x36\x6a\xfb\ \xf0\x87\x12\xce\x38\x90\x72\xde\x37\x92\xf0\xbc\x06\x5e\x37\x8d\ \xe2\xf0\x2d\xe0\x7a\xce\xaa\xbb\x1c\x61\xfc\xf7\x08\x8a\x28\xec\ \x6e\xce\x3c\xc7\xab\x1f\x96\x88\x88\xa9\xfe\x45\xfd\x94\xa8\x3a\ \xfd\xe4\xb7\xc4\x58\xd8\xd3\x0f\x34\x78\x82\x0e\xf8\x51\x3c\x08\ \xaa\xda\xab\xeb\x08\x6f\x89\x0c\x0c\x0c\x4c\x08\x62\x6f\x94\xcc\ \x43\x1f\x3a\x7f\xa1\xdd\xd5\xbd\x0b\xe9\xa6\x3a\x9f\xb4\xf3\x9f\ \xba\xa7\x24\x39\x8e\x40\x72\x90\xc2\xe3\x5d\xc0\x7b\xb7\xb3\xfb\ \x51\x83\xdd\x50\x23\xfc\x69\xc8\x98\x71\x04\x9e\xd3\x76\x7e\x53\ \xaa\x4f\x69\xb5\x1f\x9e\x18\x5c\x1c\xb7\x8d\xcb\xc6\xf0\xbc\x6f\ \x1f\x3b\x0c\xda\x14\xf4\x25\x45\x81\xde\x00\x9b\xb6\xfc\x21\x2b\ \xad\xbb\xfe\xb1\x7e\x23\x68\x33\xbb\x59\xf3\x42\x50\x8d\xdd\x63\ \xe0\x4f\xd8\x40\xa6\xd9\xa0\xf9\x5b\xe6\x22\x38\x27\x76\xe7\x76\ \x26\x24\x37\x86\x06\x06\x06\x88\xd4\x31\xf3\xa7\xfa\x1d\xdd\x7b\ \xe4\xcd\x2f\xda\x79\x0f\xdf\xe6\x40\xb4\x07\xac\x17\x02\xaf\x13\ \x82\xf0\x3b\x11\x5b\x37\x42\x1e\x65\xab\xc4\xf5\x5e\x3b\x78\x81\ \xb4\x9f\x67\xe4\xff\x00\x92\xf1\x33\xd5\x0f\xd1\xc7\xc4\xf4\x0e\ \x0a\x3e\x7f\x8a\x39\x13\x2e\xe4\x1e\xcc\x0e\xf5\xee\x8d\xdc\x3c\ \xcd\xe1\x7c\xe1\x78\x5e\x17\x90\x71\xb8\xa1\xc5\x43\xde\x6f\xe1\ \xf6\xe3\x0f\xbc\xf7\x6a\x1e\xf3\xc4\xa1\xa2\x1b\x1e\x47\x48\x50\ \x25\xdf\xc0\x2a\xf3\x17\xea\x6b\xf1\x16\xf9\x8c\x77\x14\xbc\x94\ \xf1\x2b\xe9\x05\x3e\x83\x84\x21\x08\x16\xe2\x62\x62\x42\x18\x19\ \x4c\x4d\x03\x31\x97\xce\x9f\xe8\x77\x79\x0b\xd0\xbe\x53\xf6\x9e\ \x43\xf7\x58\xd3\x37\xd0\x32\x9c\x85\x84\xea\xf6\xec\x4d\x80\x0f\ \x31\x2a\xd2\xbd\xd8\xc7\x2f\xa3\xe2\x1f\xd4\xb3\x7b\xdb\x83\xf4\ \xd9\x2f\xc3\x74\x53\xfb\x2c\x97\xeb\x8f\x4b\xf2\x8f\x0b\x38\x3d\ \x9e\x0f\xf0\xe7\x22\x68\x6f\x49\xf3\x03\xff\x00\x02\x23\x64\x36\ \x61\xf6\x67\x19\x78\x5e\x1b\x28\xf9\x9b\x05\x9e\x84\x43\x81\xee\ \x93\x8a\x85\xdd\xaf\xba\xa8\x80\xb7\xb8\x91\xf6\x30\x20\xbf\xa9\ \xc7\xd9\x7e\x23\xe2\x0f\xff\x00\x12\x51\x05\x9e\x38\x17\xbf\x61\ \x71\x45\xa5\x7d\x58\x42\x18\x98\x77\x62\x21\x81\x0c\x0c\x0c\x0c\ \x0c\xa4\x31\x35\x0d\xb2\x79\xd3\xfd\x0e\xef\x25\x7a\x1c\x3a\x69\ \x99\xff\x00\x69\xe4\x3f\x70\x36\xd5\x39\x83\x57\x71\x17\xd8\x8b\ \xda\xf5\x66\xfe\x3f\x9a\x35\x96\x99\x6f\xd4\xd7\xef\x79\x66\xad\ \xff\x00\xc8\x7f\xec\xb3\x7a\x08\xb7\xfc\x25\xe2\x03\xa3\xc8\x38\ \x41\x1d\x93\xf8\x43\x91\x34\xf7\xf7\xd9\xe3\x05\xb4\xfb\x70\x86\ \x1c\x3e\xec\x08\x91\xb2\x1f\x8b\x94\x41\x7d\x82\x6b\xe5\xbf\x12\ \xb8\x7f\x5f\xb8\x1a\x21\xe0\x8f\xff\x00\x10\xfe\xe2\xc2\x2b\xb1\ \xf7\x59\x97\x84\xa9\xc0\xb7\x03\xe2\x10\xc0\x84\x20\x42\x10\x84\ \x37\x84\x36\x86\x26\x04\x21\xa0\x62\x19\x3a\x64\x33\x19\xbc\xe9\ \xfe\x87\x77\x93\xbd\x0b\xd4\x1c\xbf\xb4\xf2\x1f\xbc\x81\xc9\x0e\ \x63\x44\xdb\x03\xde\x11\xbc\xfa\xb3\x79\x41\xd8\xe1\x83\x36\xc5\ \x25\x54\xac\xd5\x2b\x29\xef\x2f\xee\x3d\x9f\xb1\xc6\x59\xbd\xb0\ \xa7\x9b\x8f\x99\x6e\x8a\xff\x00\xe1\x3f\xf6\x28\x3d\x55\x6b\xef\ \x68\x22\x70\x47\xf8\x13\x91\x34\xb6\x87\x79\x49\x9d\x87\x55\xe8\ \x16\xc2\xc2\xa0\xdc\xde\xf4\xb4\x5f\x6a\x84\x86\x7a\x33\xf4\x4e\ \xbc\x61\x08\x42\x10\x86\xf0\x84\x30\x10\x84\x36\x82\x07\x1c\x08\ \x60\x43\x7c\x48\x60\x60\x6f\x89\x81\x0c\x4d\xf2\x99\x88\x65\xf3\ \xa7\xfa\x1d\xde\x56\xf9\x3d\xb2\x7e\xd3\xc8\x7e\xff\x00\x06\x69\ \xa8\x16\xa0\x42\xf5\x2f\x49\xb6\x34\xf4\x9e\xbb\xb8\xd4\xac\x7d\ \x61\x85\x77\x88\x44\x9e\xf8\x1b\x64\xa8\x98\xd6\x2f\x11\x1e\x23\ \xb8\xed\x2f\x1b\x6e\x97\x98\xa9\x72\xb9\xd0\x47\xef\x83\x2d\x53\ \xdd\x78\xbf\x4d\x46\x7d\xaa\x52\x0d\xf1\x38\xf3\xc7\x22\x68\xbb\ \x4b\x1d\x5e\x5e\x9c\x57\xc2\xbe\x70\x18\x0d\xe2\x25\x83\x44\x36\ \xfd\x24\x57\xe8\xe3\x2b\x2e\xba\x00\x7d\x5f\xee\x01\x0d\xb1\x81\ \xe8\x90\xda\x10\x84\x21\xbc\x30\x30\x0a\x9d\xd8\x98\x90\xde\x19\ \x0c\x0d\xb2\x99\x0d\x43\x6c\xa6\xcf\xb8\x22\xe6\xd4\xc3\x69\x1d\ \x38\xc3\x78\x93\xe8\x3f\x4f\x1e\x56\xf4\x2e\x6f\xa7\x78\x7e\xd3\ \xc8\x7e\xe4\x36\xd5\x34\xcd\xf4\x0c\xa6\x3d\x62\xde\xc4\x6e\xc3\ \xca\x22\xb4\xbe\xfa\x35\x2a\x71\x33\x70\x95\xa1\x58\xd4\xac\x58\ \xb1\x6e\x16\x79\x8d\x29\xfd\x65\xf8\xe1\x11\x7d\x99\x7c\xfb\x3f\ \xe4\xb3\x40\x5d\x1f\x86\xf1\xf9\xce\xe2\x2f\x3c\xe1\xc8\x9a\x0c\ \x07\xa5\x24\x7b\x94\x1f\xdc\x21\x08\x62\x84\xb5\x29\x6d\xea\xed\ \xb4\x20\xb3\x82\xf0\x3e\x0e\x11\x05\x01\x77\x6b\x0e\x21\xea\xdb\ \xf4\xfe\x87\xcc\x6d\x0f\x0f\x64\x37\xf5\x0f\x30\x84\x37\x87\x78\ \x42\x10\x83\x8e\x04\x31\x30\x21\x08\x60\x65\x31\x34\x0c\xc4\x32\ \x21\xc4\x7d\x88\x88\x69\xb8\x87\xd5\xdc\x2c\xae\x5d\x28\x7e\x68\ \x43\x24\x83\xc7\x70\x53\xfd\xca\x3a\x9c\x65\x0d\x19\xd5\xe0\x32\ \xa8\x0b\xab\xff\x00\xc5\x2e\x3c\x1c\x4b\x4a\x6b\x94\xbc\xfe\xda\ \xbf\xb4\xf2\x1f\xbc\x90\xf2\xfb\xd0\x9f\xf5\x19\xbb\x8f\xa6\x4a\ \x95\x8d\x72\x15\x38\xce\x18\x39\xea\x56\x06\x1e\x81\x84\x0f\x32\ \xc1\x1b\x75\x7e\x1b\x42\xd8\xff\x00\x4e\xfd\x9f\xf2\x5e\x20\xba\ \x95\xf1\xc6\x15\xcd\x2e\x85\x3f\x4f\xf1\x46\x77\x79\xc3\x9a\xb1\ \xfa\xaa\x84\x21\x2f\x1e\x9f\xd6\x5c\x70\x95\xfa\x10\x36\x09\xb3\ \x8d\x9f\x76\x41\xbe\x3e\xf4\xa4\x21\x08\x43\x03\x0d\xb9\x06\x04\ \x30\x30\x30\x30\x32\x99\x0d\x30\xed\x11\x96\x6e\x4f\xb9\x8d\xee\ \x58\x8f\xe8\x3c\xcb\x91\x9e\x8b\xf4\x38\xb2\xe8\xef\xc1\xfd\xdc\ \x1e\x21\x0a\x6e\xfe\x03\x42\x26\xdf\x71\x36\xfd\xce\xd0\xb3\xe2\ \x4d\x9e\x3b\xf0\x11\x83\x86\xba\xaf\x08\xfa\xa0\xea\x1c\x7e\xd9\ \xb8\x58\xab\x5b\xc5\xbe\x56\xf4\x2e\x70\xe9\xa5\xfb\x4f\x21\xfb\ \xfc\x28\xc0\x0b\x50\x83\xd1\x73\xae\x51\xe9\x85\x4e\x24\xe9\x10\ \x89\x92\xa6\xd8\x54\xae\x47\xe6\x56\x8d\x61\xf1\x8e\xd3\xda\xa9\ \x2c\xb5\x7b\x8b\x87\xf4\xdc\xb0\x13\xd1\x1f\x77\x12\x5e\x34\xdb\ \x97\x98\x96\x5d\x3c\x13\xa3\xbf\x2c\x72\x26\x65\x49\xec\x4e\x19\ \xd7\xe9\xb7\xf7\x80\x81\x2f\x5e\x8f\xd6\x6e\x86\x62\x91\x5f\x25\ \xff\x00\x78\xbb\xcd\x9c\x7e\x03\xfb\x84\x20\x4e\xb0\x84\x21\x08\ \x14\x43\x13\x7c\x08\x43\x40\xce\xdb\x21\x8e\xe8\x27\xb4\x74\xa0\ \x6f\xe1\x8b\x7c\x4a\x03\xfb\x5e\xbf\x47\xe4\xb1\x04\xe8\xa7\xf5\ \x42\x58\x0b\x7f\xfd\x69\xc7\xcc\x5c\xf7\xba\xff\x00\xb6\x04\xa3\ \xc1\x1a\x6d\xf6\x62\x54\xcf\x6b\xa7\x10\x43\xde\x89\xbd\x3f\xb5\ \xdf\xb1\x61\xf5\xb5\x5f\xd2\x1e\x3e\x87\x73\xf6\xca\xd4\x25\xea\ \xb0\xa0\xac\x2f\x97\xbd\x0b\xd1\xfd\xa7\x90\xfd\xcc\x6d\xaa\x69\ \x99\x5a\xde\x0f\x6b\x5f\x48\x8d\xb8\x7b\x46\xdd\xdb\xc9\x52\xa6\ \xd8\xba\x55\x89\x85\x66\xa9\x59\x7e\x70\xa9\x59\xe8\x95\x3e\x32\ \x0a\x6c\xc4\x85\x8f\x51\xbf\xbd\xe5\xca\x97\x4f\x04\xff\x00\xd9\ \x65\xd1\x01\x7f\x4e\x1e\x65\xed\x49\xea\xfd\x8e\x10\x47\x67\xf8\ \x9f\x3d\x28\xd2\xa9\xd4\x03\x02\x5b\xc1\xe9\xfd\x67\xb2\x11\x2d\ \x8b\x0f\x80\x3f\xac\x51\xc3\x81\xef\xaa\xb7\xc1\x08\x42\x10\x84\ \x36\x9d\xd0\xdf\x02\x18\x10\xdf\x12\x18\x18\x1b\xe2\x60\x43\x13\ \x10\x56\x8e\x2c\xf4\xcb\xac\xf2\x92\xa8\x37\x5c\xfd\x85\x79\x96\ \x85\xf4\xfa\x69\x6f\x99\x6e\x7b\x03\x3e\xd9\x6d\x70\xea\x7e\x82\ \x88\xb0\xbb\x87\x76\x27\xb8\xf1\x17\x68\x03\xdb\x76\x1c\x54\x3d\ \x5a\x3c\xce\x21\xee\x96\x78\x89\x5f\xa7\x00\x4a\x15\x29\xd7\x8d\ \xe6\x08\x23\xd4\x14\x9c\x58\xbd\x06\xdf\xb9\x5a\x88\x7a\xac\xdb\ \x87\x4c\xd7\xcb\xde\x8d\xe7\xfd\xa7\x90\xfd\xe5\x0d\x5e\xa1\xf5\ \x13\xa2\xa2\x57\x15\x71\xad\x2a\x95\xa7\xd7\x2d\x64\xac\x12\x56\ \x7a\x95\x90\x71\xe0\xca\xcc\x2f\x79\x7f\x6a\xe8\xf2\x0a\x65\x92\ \xaf\x6a\x7f\x43\x2e\x1f\xf1\x65\x3f\xf6\x7c\xe8\x78\x7d\xed\x04\ \x78\x8d\xff\x00\x0b\xb2\x3b\x40\x8e\xdc\x16\x44\x37\x84\xf8\x93\ \xf5\x8b\x70\x02\xf8\x2e\x5d\x3b\x8d\x5e\xef\x1c\x78\x48\x7b\x97\ \x80\xfc\x61\x08\x43\x03\x01\xc3\x20\xc4\x86\xf0\xdf\x03\x03\x03\ \x41\xb8\xa0\x6e\xb6\x3e\x65\x90\x7b\xa4\x7d\x56\x65\xc0\x8e\xd5\ \xfd\xea\xfc\x4b\x1e\x81\x1c\xfc\x14\x41\xd4\xbd\xc9\xe0\x5f\x98\ \xf1\x4f\x8a\x87\xe5\x88\xec\xaf\xb1\x29\xd8\x9e\xec\xe2\xc6\x7b\ \xac\x40\x40\xbd\x6b\xf1\xc6\x70\xe9\x1e\x9f\xde\xce\x36\xc7\xab\ \x5f\x44\x10\x2b\xbb\x23\x1f\x59\xbb\xc3\xbb\xc0\xfb\x89\xe2\x5e\ \x8f\xfb\x9c\x4c\x7d\xc1\xc8\x68\x5f\x2f\x7a\xdf\xb4\xe3\xf7\x9f\ \xbc\xa9\xa2\x0d\xd8\xf6\xbe\xe6\xe0\xe4\xa9\x50\xc2\xa5\x69\x54\ \xac\x6a\x56\xa5\x40\xcb\xc2\x56\x7a\x95\x81\x96\xbd\x25\x4e\x39\ \x90\x50\x0a\xdc\x78\x91\x95\x27\xa7\xf9\x4b\x85\xfe\x80\x3f\x65\ \x32\xd5\x31\xd7\x8b\xf4\xd3\x3d\x27\x32\xfe\xbf\x82\xde\x9f\xeb\ \xf6\xe0\x60\xb4\x7a\x7f\x59\x7e\xb4\x6a\x7e\x5f\xf3\x16\x8d\x0b\ \x43\x84\x13\xca\x56\xf7\xab\x7c\xb0\x87\x78\x42\x10\x83\x8e\x26\ \x26\x24\x21\x81\x94\x88\x52\x2f\xa1\x1a\x97\x6f\x73\xf4\xb7\x2c\ \x00\x5f\xfd\x23\x44\xbe\x3b\xa0\x87\xd1\x7e\x65\xe9\x6e\x85\x4f\ \xb1\x8c\x2f\xdd\xc1\xf5\x75\x3a\x34\x7b\x22\x3b\xaf\xbf\x08\x55\ \x25\xf6\x16\xca\x1e\x21\xd1\xaf\x99\x4e\x8b\xd4\x2d\xca\x7b\x1e\ \xc2\x1f\x13\x8b\xdc\x3a\x8b\x79\x80\x0a\x00\xec\x60\xd4\xdf\xe0\ \xf5\x78\x11\x14\x99\xe8\xff\x00\x71\x71\x24\x7a\x8f\x20\x3c\xc5\ \xe8\x5e\x4f\xda\x3a\xf7\x1f\xba\x06\xdc\x9a\x86\xec\x03\x6e\x31\ \x1d\x6b\xdb\x1a\x95\x93\x8e\x6a\x95\x89\x9f\xd6\x74\xc6\xa5\x62\ \x4a\x95\xab\xc2\x54\xac\xf5\xc2\x37\x9b\xde\x56\x1b\xca\x95\x91\ \xfb\xce\xe0\x27\x99\x7a\xa9\xea\xaf\xeb\x6f\x10\x78\xa8\xed\xfd\ \xf3\xfe\x4b\xf5\xab\xd1\x78\xef\x3d\x51\x3a\x5e\x79\xed\xf9\x45\ \x8e\x22\xe7\xd6\x1b\xc2\x13\xe1\x59\x5e\xbb\xe9\xe8\x15\xfd\xe2\ \xf7\x51\x0b\xd2\x90\x50\x55\x53\x55\x08\x43\x03\x01\xc3\x20\xc4\ \xc8\x60\x60\x78\x98\x1b\xb9\xf6\x32\xf0\x31\xdf\xc0\x2f\x2f\x82\ \xdb\x23\xca\xb7\xc4\xb9\x25\xb0\xf9\x28\x78\x81\x82\xdc\xf1\x3a\ \x42\x77\xaf\x70\xf3\x12\xda\xfd\x84\xa7\x60\x7b\xb1\x8a\xf7\xd2\ \xbe\xe3\x42\x2b\xd7\x8d\xf4\x5c\x15\x2c\xef\x4f\xcb\x37\x56\xfb\ \xbf\x86\xd2\x94\x7f\x4c\xc9\xf3\x3a\x70\xee\xf0\x23\xb4\xfc\x47\ \xfb\x9c\x47\xe6\x07\x35\xff\x00\x0d\x7a\x1e\xd2\xf0\xfd\xa7\x94\ \xfd\x8b\xa7\x2a\x38\xa4\xf5\x8a\x76\xe1\x1e\x2f\x17\x1a\x95\x0e\ \xd8\xd4\xad\x2a\x95\x85\x4a\xcf\x58\x56\x15\x2a\x18\xd4\xac\x86\ \x1b\xe8\x54\xac\xcc\xa9\x4e\x85\x4a\x95\x2b\x2f\xa3\xfc\x11\xe6\ \x5c\x2f\x7a\xb8\x7d\x36\x4b\x21\x9e\xa5\xf6\x70\x97\xa9\xfe\xd9\ \xf1\xc6\x06\x85\xec\x0a\x7e\xb9\xad\xd7\x61\x8f\xd5\x8c\x0c\x04\ \xb8\xb5\xd1\x18\xab\x6f\xf3\x78\x9b\xae\x0a\x3d\x13\xa3\xde\x00\ \x50\x23\xad\x03\x7f\x67\x72\x10\x84\x21\x0d\xe1\x0e\x04\x31\x30\ \x21\x08\xed\x27\xb0\x8d\x29\xdb\x80\xf2\x5f\x89\x60\x03\xe8\x8a\ \xfa\x08\xeb\x3b\x73\x3f\x0f\xec\xee\x46\x85\x3e\x56\xf9\x8a\x98\ \xb7\x7f\x71\x9b\x50\x7b\x09\xd4\x2f\xbc\xbe\x14\xf4\x65\x2b\x54\ \x1d\x58\x7c\xca\xb4\x6e\xa3\x3f\xe8\x95\x6b\x3e\xb4\x7d\x13\x79\ \x13\xaf\x1b\xf6\xcd\x8a\xe9\x3d\xe5\x4a\x95\x87\x4a\x9d\xf8\x09\ \xd6\xf8\x9f\xee\x71\xab\x5d\xdc\x5d\x2b\xcf\x7a\x17\xcc\x5e\x8b\ \xf2\x9e\x53\xf7\x01\xbe\x51\x42\x2b\xa1\xf7\x15\x77\x71\xa9\x5a\ \x55\x2a\x6d\x38\x4a\xd1\xac\xa3\x96\xa5\x67\xa9\x53\x6c\xf5\x38\ \x93\x83\x2b\x1a\x95\x81\x96\xa5\x60\x4e\x18\x56\x35\x87\x09\x59\ \x7d\xa5\x08\xef\x65\x7e\xe0\x8a\xdb\xd5\xfa\x37\x2e\x12\xba\x03\ \xfd\xc4\xbe\x44\x7f\xec\x89\x65\xd5\xf1\xed\xcb\x1b\x2f\x48\x5f\ \xfc\xd0\x0f\xea\x10\x84\xb8\x7b\x44\x4f\x70\x1b\xd5\x41\xeb\x5c\ \x7e\x20\x88\x27\x11\xc0\x40\xd2\xa0\x92\x4d\xf8\x84\x6a\x24\x59\ \x7b\x87\xaf\x67\xa4\xe2\x73\x45\xbe\x27\x61\xfd\xec\xc2\x10\x86\ \xd0\x71\x81\xc7\x02\x18\x04\x4c\x01\xd2\xfd\xcd\x4b\x90\x2e\x8b\ \xe0\x57\x99\x7c\x87\xa7\xd7\x1c\x52\xc4\xa6\xca\x97\xcf\x0f\x89\ \x6c\x3f\xdd\x1f\x5d\x09\x60\x67\xb9\x6d\x89\xed\x6c\x4b\xa0\x1f\ \x57\x8c\xa1\xae\xee\x81\xf6\xc5\x46\x93\xea\x3e\x89\x5c\xf7\xa1\ \x8f\xb6\xe7\x1d\x02\xea\x9f\xbe\x13\xd0\xcd\x17\xe3\x43\x89\x38\ \x3d\x78\x08\x7b\xfc\x7f\xf7\x3a\xd2\xee\xf1\x73\x8e\x7b\xd7\xbe\ \x66\xf3\xfe\xd3\xca\x7e\xe0\x4b\xe1\xc8\x28\x6f\x11\x15\x7a\xe8\ \xd4\xac\x6b\x42\xb0\xe1\x2b\x21\x2b\x1a\x95\x89\x9e\xa5\x68\x54\ \xf8\xcc\x64\xa9\x58\x54\x32\xb1\x89\x95\x25\x66\xa9\x59\x6d\x36\ \xe1\x0f\x6d\x3b\x1f\x23\x8c\xba\x59\x74\x1a\xbe\x1e\x3e\x65\xf3\ \xd8\x57\xe2\x78\x79\x97\x94\x9d\xcd\xfb\x1c\x20\x8e\xc8\xf2\x44\ \xe2\xde\xc7\xe8\x3f\xa8\x42\x12\xc5\xfa\x45\x11\x38\x31\x6b\x6e\ \x06\x6f\x7f\x83\xb3\xc2\x21\x17\x60\xb6\x37\xad\x21\xfa\xf1\x3f\ \x61\x89\x79\xbd\xc7\xee\xae\x76\xad\xca\xbd\x93\x88\x9e\x8f\x08\ \x50\x16\x03\x8d\x2a\xfd\x70\x30\x36\x9b\x21\x6a\xa0\xdd\x0d\xa0\ \xed\xf1\xba\x1e\x43\x2f\x81\x76\xe3\xff\x00\x21\xf9\x2d\x86\x74\ \xfa\x82\x84\x3d\x4f\xe8\x0f\xb3\x8f\x98\xa9\xf7\x75\xbf\x2c\xa5\ \x42\x7c\x10\x1b\x7d\x98\xad\xa5\xe8\xbf\x89\x40\xd5\x7a\x8f\x8e\ \xf2\x91\xee\xc3\xaf\xb6\xa5\x42\x1f\xd8\x3e\x8a\x81\x1c\x07\xa8\ \x5f\xde\xf1\x5e\xf3\x7c\xd5\x85\x15\xa1\xdf\x80\x81\xba\xbe\x9c\ \x1e\x65\x45\x27\xbb\xc5\xd3\xbd\x0b\xce\x68\x5f\x31\x72\xf2\xfe\ \xd3\xca\x7e\xe2\x3a\x06\x6b\x8a\xe0\xca\xc7\x7c\x0c\x2a\x56\x4a\ \xc9\x59\x47\x0a\x95\x3e\x30\xac\x07\x1a\x95\x85\x4a\x86\x15\x9e\ \xa2\x67\x49\x59\x4c\xd5\xa9\x59\x2b\x3d\x4a\xc0\x72\x74\xae\x8c\ \xba\x5e\x7f\xe8\x0a\x97\xca\xbb\x27\xf5\x32\xd9\x0d\xff\x00\xc4\ \x8b\x51\xfd\x40\xfb\xda\x08\x9c\x38\xeb\x86\xf3\x8d\x6f\x60\xb1\ \xfb\x08\x42\x18\x38\x09\x13\x62\x6e\x30\x59\xa9\x65\xac\x0f\xf9\ \xbd\x7d\xe0\x4d\x9a\x7b\x41\x44\x21\x08\x15\xa0\x56\x7a\xae\x23\ \x3c\x88\xb2\x17\xeb\x5b\xf7\xa0\xf3\x2d\x18\xe8\x0f\x20\xf9\x97\ \x4a\xdd\x8a\xef\x95\x96\x35\xcf\xfe\x30\xa2\x2a\x5f\x03\xdf\xac\ \x43\x6b\x62\xda\x03\xd9\xbb\x2b\x54\x1d\x5e\x63\x53\x8f\x17\xea\ \x9f\x89\x4e\xbb\xd8\x87\xfb\x63\x82\x63\xb8\xfc\xca\x51\x5d\x05\ \x1e\x26\xf9\x6a\x56\x3d\x6a\x6e\x68\x77\xe0\x80\xa5\x5f\x4e\x09\ \xb3\x27\xbf\x5e\x5c\xfe\x22\xf2\x7e\xd3\xca\x7e\xe4\x1d\x5a\x95\ \x85\x4a\xc1\xa9\x51\xc0\xed\x2b\x1a\x95\xa1\x53\x8e\x06\xd9\x12\ \x54\x6e\x75\xcd\x52\xa6\xd9\x6b\x42\xa5\x60\x72\x35\xa9\x59\x2b\ \x35\x42\x6d\x97\xe2\x20\x01\x37\x12\xc6\x5d\xaf\xf7\x9f\x89\x6c\ \xb3\xa5\x47\xd9\x4c\xbc\x46\xf5\xbd\xfa\x69\x8f\xcf\xba\x2f\xeb\ \x51\x6a\x3c\x48\x3d\x38\xef\xdc\x10\x84\x21\x09\x42\x52\x09\xd9\ \x2e\x16\x51\x5d\x6b\x81\xf7\x2c\x40\xdf\xf8\x4b\xcb\x00\xad\xa8\ \x6f\x95\x7e\x27\x65\x28\x43\xf1\xc3\xc2\x10\xab\x74\x4f\xa0\x11\ \x1b\x86\xeb\x5e\x65\x3d\x7e\xa0\x1d\x3e\xd9\x76\x27\xa8\xf9\x95\ \x8b\xae\xa0\x78\x2d\x8a\xe2\x27\xa7\xf6\x3f\xf2\x56\x2e\xf7\x64\ \xfa\x28\x85\x85\x17\x68\x7e\xe2\xdb\xc5\xcb\x52\xa5\x39\x3d\x27\ \x13\x41\xdf\x82\x6e\xd5\xf4\xe0\x9b\x30\x7b\xf5\xe5\x07\x42\xf3\ \xde\x85\xf3\x37\x87\xed\x3c\xa7\xee\x43\x40\xdb\x42\xa5\x61\x58\ \x3e\xd3\x84\xa8\x60\xe4\xa9\x52\xb5\x99\x52\xb5\x6a\x56\x85\x43\ \x1a\xca\x60\x92\xb4\x2a\x39\x0c\x3e\x32\xfc\xe4\xac\xc9\x13\x31\ \x85\x86\x7e\x88\x79\x97\x2a\xef\x55\xe3\xb7\x88\xe5\xda\xed\xfd\ \xf3\xfe\x4b\x34\x47\x45\xe3\xbf\x88\xdc\xe3\xa2\xaf\x39\xcd\xe1\ \xd0\x03\x07\xa0\x7f\x16\x10\x8c\x52\x2f\x60\x8e\x8b\x1b\xd8\xfd\ \x2d\xcb\x60\x07\x43\x7e\xda\x25\xd2\xde\x95\xcf\xf3\xeb\x2f\x8c\ \x74\x30\x7d\x8c\x62\xc5\xef\x8f\xab\xa8\x74\x01\xed\x10\xee\xcb\ \x00\x4e\x82\xd9\x58\x99\x74\x2b\xe6\x51\x27\x75\x2c\xff\x00\xa2\ \x71\xa7\x7b\x08\x7c\x71\x95\x09\x3d\x4b\xf6\xdc\x1c\x00\x0e\x81\ \x46\x6a\x9b\x66\xdd\xae\xb3\x8e\x95\x77\xe0\x81\xe2\x9e\x8e\x02\ \x0b\xf2\x15\xc7\x11\xe5\x47\x42\xff\x00\x89\xfd\xa7\x94\xfd\xca\ \x35\xc9\x54\xac\x19\xf3\x38\x98\xb9\xea\x56\x6e\x12\xa3\x9e\xa5\ \x6b\x54\xad\x2a\x95\x89\x85\x61\x52\xb4\x2b\x25\x63\xbc\xac\x95\ \x92\xa5\x64\xac\x2a\x7c\x68\x7a\x26\x61\xfd\x4b\x17\xba\xa9\x3e\ \x9b\x25\x88\x2e\x88\x7f\x65\x92\xf5\x21\xbf\xf5\xd1\xe1\xf0\x07\ \x83\x89\xc1\x87\x60\xa4\x93\xaa\xe0\x3e\x98\xa2\x58\xf0\x04\x7d\ \xdb\x2f\x81\x74\x4b\xfa\x1e\x20\x8a\x4b\x7f\x0d\xa4\x43\xb3\xdf\ \x6d\xfb\x63\x21\x3b\x1e\xec\x66\xbd\x69\xab\xee\x30\x2c\xba\xde\ \xfd\x17\x01\x4f\x7e\x00\x7d\xb2\x8e\xd7\x79\x7c\x36\x95\xc4\x7a\ \x3f\x88\xf1\xdf\x35\x4a\xcd\x53\x8d\xd1\xbc\xe3\x85\x1d\xf8\x20\ \x78\xba\xec\x70\x27\xdc\x85\x67\x1e\x54\xd0\xbd\x0b\xd0\xbe\x63\ \x73\xde\x79\x4f\xdc\xc5\xe7\x35\x6a\x56\x04\xac\x6a\x71\xc9\x52\ \xb0\xa9\x58\x98\xb2\xa5\x68\x26\xb5\x4a\xc8\x4a\xcb\x52\xb2\xd6\ \x1c\x34\x6b\x3b\x8b\x2a\x56\x4a\xc8\xce\x38\x56\x85\x4d\xb6\xb9\ \x50\x1b\xdb\x5f\xbd\xe5\xe2\x33\x6f\xc4\x65\x8a\x2f\x4b\x3f\xb0\ \x97\x74\xae\x9f\x20\x84\xee\xe2\x42\x14\xa8\x7d\x00\x8c\xbc\x41\ \x45\xe7\x54\x1f\x32\xb5\x2b\xa8\x8f\xcd\x12\x99\x19\xbf\x14\xf8\ \x3f\xec\xa9\xb2\x3b\x2b\xf6\xf1\x96\x85\x6c\x76\xcf\x59\xea\x54\ \xa5\x68\xe2\xfa\x4e\x39\xc2\xef\xc1\x09\xc5\x57\x63\x81\x0b\xfa\ \x43\x21\x0c\xe7\x2b\x7a\x17\xc8\x5f\x2d\xb9\xef\x3c\xa7\xee\x6d\ \xf9\x7a\x86\x14\x4a\x95\x18\x91\x1c\x95\x2b\x0a\x95\x0c\xac\xa9\ \x50\x95\x9a\xb1\xa9\x59\x6e\x70\x89\x2b\x0a\x95\x92\x89\x5a\xd5\ \x2b\x36\xfa\x95\x2b\x41\x27\x1c\x09\x58\xfc\x66\xb6\x6f\x9b\xec\ \xfd\x8e\x31\xd0\x49\xb2\xf2\x7c\x2c\xf4\x73\x44\x3c\x64\xf3\x85\ \x12\xa3\x90\xed\x87\x09\x58\x9c\x5a\x0b\x7b\x13\xb4\x3d\xe0\x5c\ \x7d\x10\xe0\x43\x2b\xd9\x0d\x11\xce\x3c\xad\xe8\x5e\x85\xe8\x5f\ \x2b\xb9\xef\x3c\xa7\xee\x62\x5f\x30\x61\x59\x2b\x0a\x95\x92\xa5\ \x60\x6f\xa7\xc2\x56\x85\x4a\xce\x9a\x15\x2a\x6d\x95\x32\x98\xd4\ \xac\x9b\xca\xc2\xa5\x69\x54\xad\x0a\xc6\xa7\xce\x95\x4a\xcb\x53\ \xdf\x0a\xec\xcf\x8c\x2f\x00\x56\x82\xde\xc4\xed\x6f\x78\x27\x14\ \x7d\x8e\x04\x12\xbd\xb0\xd5\x1c\xe3\xcb\x0e\x85\xf2\x17\xc9\xee\ \x7b\xcf\x29\xfb\xa0\x39\xcd\xb9\x5a\x95\x96\xa5\x64\xa9\x5a\x15\ \x96\xa5\x68\x54\xac\xf5\x2b\x42\xbd\x72\xf0\xc8\x37\x85\x4a\xc2\ \xa5\x4e\xb9\xaa\x56\x1b\xe8\xd4\xad\x3f\x9c\x95\x2b\x2d\x4a\xce\ \x16\xd0\x2b\xe9\x38\xba\x06\x37\x89\xf6\xd8\x80\x51\xfb\x0e\x44\ \xce\x3c\xb5\xe8\x5e\x85\xe8\xdf\x23\xb9\xef\x3c\xa7\xee\x88\xe7\ \x36\xe4\x0c\xf5\x29\xc2\xa5\x61\x52\xb2\x51\x2a\x7c\x66\xde\x56\ \x6a\x95\x9e\xa5\x67\xa8\x92\xb3\x32\xa7\xc6\x95\x4a\xd2\xa9\x58\ \x32\xb4\x2a\x56\x5e\x39\xaa\x6d\x0c\x2a\x56\x70\x56\x81\x5e\xc4\ \xe2\xa8\x18\xe3\x0c\xfe\x88\x55\x10\xf4\x21\xca\x99\xc7\x95\x34\ \x6f\x90\xbe\x43\x73\xde\x79\x4f\xdd\x21\xe5\xcd\x4a\x25\x61\x52\ \xa7\xce\x2d\x4a\x9c\x4c\x09\x4e\x4a\x95\x8d\x61\x52\xb2\x18\x33\ \x84\xac\xb5\x8d\x4f\x8c\xc9\x2b\x4e\xa5\x69\xd6\x1c\x22\x62\x38\ \x54\xac\x2a\x56\x03\x82\x4a\xc6\xb3\xd4\xa8\x0a\xd0\x57\xb1\x38\ \x8a\x07\xd6\x71\x66\xbf\xa2\x1f\x45\xec\x32\x9c\xa8\xe7\x1e\x5a\ \xf4\x2f\x42\xf4\x6f\x5b\x73\xde\x79\x4f\xdd\x21\xa9\xbf\x2e\x3a\ \xd5\x2b\x1a\x95\x91\xf7\x86\x15\x96\xa1\x85\x4a\xc6\xb0\x1c\xbc\ \x25\x60\x38\x54\xac\x6a\x53\x99\x95\x92\xb4\x2a\x39\xeb\x25\x4a\ \x95\x96\xa5\x61\x53\x89\x9b\xde\x38\x0e\x02\x54\x15\xf4\x9c\x52\ \x87\xd6\x71\x26\xbf\xa2\x19\x40\x1e\x87\x3c\x67\x39\x62\x5e\x85\ \xe8\x5e\x8d\xea\x7e\xd3\xca\x7e\xe9\xae\x99\xcd\xb9\x13\x40\xd1\ \xa9\x58\xd6\x26\xd8\xba\x35\x2b\x49\xcd\x5a\xd5\x2b\x42\xb2\x98\ \xd6\x4f\x9c\xf5\x2b\x3d\x41\x2a\x0a\xfa\x4e\x2d\x43\xeb\x38\x95\ \x9f\xae\xd0\x0a\x00\x7a\x1a\xd7\xca\x13\x7c\xe7\x2d\x7a\x37\xc8\ \x5e\x9f\xed\x3c\xa7\xee\xa1\xfc\x01\xbe\x7e\x12\xa5\x61\x52\xb1\ \xac\x95\x2b\x4a\xa5\x61\x52\xa5\x69\xb2\xb4\x36\x83\x97\x86\x8d\ \x4a\xc3\xa6\x47\x2d\x67\xa9\x53\x68\x8a\x91\x7d\x27\x1a\xa0\xf5\ \x9d\x70\xbd\x60\x14\x00\xf4\xe4\x87\x95\x1c\xe3\xcb\x1a\x37\xa1\ \x7a\x37\xa3\xfb\x4f\x29\xfb\xaa\x3c\xb9\xc9\xd4\xac\x2a\x56\x1b\ \xca\x72\x54\xa8\xcd\xe5\x4a\xd2\xa9\x5a\x95\x2b\x53\xe6\x6f\x85\ \x60\x4a\xc9\x5a\x15\x36\xc2\xa5\x64\x0a\xa0\xbe\xd3\xa0\x07\xdc\ \xeb\x05\xeb\x00\x28\x00\xf4\xcc\x72\x03\xca\x8e\x71\x87\x2d\x7a\ \x37\xa1\x7a\x37\x9f\xf6\x9e\x53\xf7\x54\x6a\x6f\xcb\x9c\xad\x4a\ \xc6\xb1\xa9\xb6\x7a\x95\x93\x79\xc7\x2d\x4a\xc9\x52\xb3\xd4\xac\ \x9b\x68\x71\xc2\xb1\xa9\x58\xef\x2b\x39\x88\x4a\x0b\xed\x38\xf5\ \x23\x7c\x15\xeb\x00\x14\x01\xed\xa4\x3c\x81\xca\x9a\x03\xcb\xde\ \x85\xcb\xe4\x6f\x2f\xed\x3c\xa7\xee\xb0\xf3\x07\x2f\x53\x6c\x2a\ \x56\x35\x36\xc9\x58\xd4\xac\x0c\x2a\x6d\xa5\x52\xb1\xac\x95\x2b\ \x03\x7c\x19\x52\xb2\xd6\x6a\x95\x3d\xf1\xe1\x91\x15\x05\xf6\x8a\ \xdc\x09\xbc\x16\xf5\x80\x05\x00\x19\x07\x48\x79\x1b\xe5\x47\x38\ \xc3\x96\xbd\x1b\xe4\xaf\x1f\xda\x79\x4f\xdd\x71\xd0\x39\x03\x98\ \x25\x4a\xc2\xa5\x67\xde\x56\x35\x96\xa5\x39\xab\x25\x63\x51\x32\ \x51\x36\xc9\xf1\x3d\xe5\x4a\xc9\x52\xb3\xb1\x15\x05\xf6\x8d\xdc\ \x46\xf0\x7c\xa0\x01\x41\x5a\x06\x91\xc8\x8f\x2a\x73\xf7\xa3\x7a\ \x17\xa5\x73\xf6\x9e\x53\xf7\x90\x1b\x3f\x80\x34\x0d\x01\xc6\xa5\ \x63\x53\x8c\xa9\x52\xb1\x65\x4a\xcf\x52\xb0\xac\x95\xa1\x59\x38\ \x4a\x95\x93\xdf\x35\x4a\xc3\x60\x2c\x46\xe0\x9b\xf1\x6f\xac\x00\ \x28\xe1\xa8\x3a\x47\x22\x3c\xb1\x9c\x79\x8b\xd0\xb9\x7a\x17\xa3\ \x7f\xb4\xf2\x9f\xbc\x80\xd4\xe9\xcb\x9a\x26\xfc\x80\xe5\xa9\x59\ \xaa\x56\x4a\x95\xaa\x92\xb4\x2b\x25\x4a\x95\x9c\xd8\x0b\x15\xb8\ \x26\xe4\x5f\xbc\x28\x38\x72\x17\xa4\x4d\xff\x00\x86\x1d\x0b\xe5\ \xef\x46\xf4\x6f\x3e\xe7\xbc\xf2\x9f\xbc\x89\xc3\x98\x39\x91\xd0\ \xa9\x59\x52\x56\x4a\x95\x94\x74\x6a\x56\xa5\x4a\x9b\x01\x62\xb7\ \x6a\x74\x2b\xf7\x95\xc2\xb6\xe5\x0d\x31\xe4\x47\x95\x26\xf9\xc7\ \x98\xbd\x1b\xd6\xdc\xf7\x9e\x53\xf7\x92\x5d\x39\x83\x99\x1d\x2a\ \x95\x91\x30\xac\xa9\x1c\x0d\x3a\x95\xa0\x26\xc4\x47\x76\xa1\x7a\ \x5f\xbf\x32\x69\x8f\x22\x3c\xb0\xf3\xe4\xbd\x1b\xd4\xfd\xa7\x94\ \xfd\xe4\xfb\x73\x07\xf0\xb5\x8d\x4e\xb8\x54\x72\x56\x47\x2b\xc2\ \x18\x38\xd6\x41\x6d\x40\x3b\x5f\xbc\xe9\xce\x8d\x23\x91\x39\x63\ \x40\xdb\x98\x39\x23\x0f\xda\x7f\xff\xd9\ \x00\x00\x0a\xdc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x0a\xa3\x49\x44\x41\x54\x78\xda\xed\x5d\x07\xac\x15\x45\ \x14\x1d\xc5\x0a\x56\xb0\x11\x15\x02\x11\x41\x14\x41\x62\x0f\x46\ \xc4\x82\xca\x57\x54\x40\x45\x51\xbe\x05\x85\x7c\x8d\x8a\x5d\x8c\ \xbd\x80\x0d\x0b\xb1\x62\x47\xf9\x2a\x26\x8a\xa0\x82\x05\xc1\x46\ \x54\x2c\xc1\x82\x05\xc5\x8e\x25\x2a\xd8\x8d\xa2\xe7\x64\xf7\xeb\ \xcb\xf3\xbd\x7d\xbb\x3b\xb3\x7b\x77\xdf\xde\x93\xdc\xdc\x9f\x7d\ \x6f\x67\x76\xe6\x9c\xbf\xfb\x76\xe6\xce\x9d\xe5\x8c\xa2\xd0\x58\ \x4e\xfa\x02\x14\xb2\x50\x01\x14\x1c\x2a\x80\x82\x43\x05\x90\x63\ \x74\xeb\xd1\xbd\x17\xdc\x08\xd8\xf6\xb0\x8d\x60\xeb\xc1\xbe\x81\ \x2d\x81\xcd\x87\xcd\x85\x35\x2f\x98\xff\xf6\x27\xd5\xca\x50\x01\ \xe4\x14\x20\xbf\x11\xee\x66\xd8\x8a\x35\xbe\xfa\x37\xec\x6e\xd8\ \x48\x08\xe1\xd7\xf2\x0f\x55\x00\x39\x04\xc8\x1f\x00\xf7\x10\x6c\ \x85\x08\xa7\xdd\x09\x01\x34\x96\x1f\x54\x01\xe4\x0c\xfe\x6d\xff\ \x59\xd8\x6a\x11\x4f\xfd\x0b\xd6\xb9\xfc\x71\xa0\x02\xc8\x11\x40\ \x7e\x07\xb8\x17\x60\x1b\xc6\x2c\xe2\x4c\x08\x60\x6c\xe9\x01\x15\ \x40\x4e\x00\xf2\x57\x87\x7b\x1e\xd6\xc3\xa2\x98\xa9\x10\xc0\xc0\ \xd2\x03\x2a\x80\x1c\x00\xe4\xf3\x87\xde\x74\xd8\xee\x96\x45\x7d\ \x02\x01\x74\x2c\x3d\xa0\x02\xc8\x01\x20\x80\x89\x70\x47\x39\x28\ \xea\x57\x08\xa0\x75\xe9\x01\x15\x40\xc6\x01\xf2\xc7\xc0\x5d\xe4\ \xa8\xb8\x65\x10\x40\xab\xd2\x03\x2a\x80\x0c\x03\xe4\x1f\x02\x37\ \xc9\xb8\xe3\xe9\x7b\x08\xa0\x6d\xe9\x01\x15\x40\x46\x01\xf2\x77\ \x86\x9b\x01\x5b\xd9\x61\xb1\xf3\x20\x80\xad\x4b\x0f\xa8\x00\x32\ \x08\x90\xbf\xa9\xf1\x86\x71\xd7\x76\x5c\xf4\xe5\x10\xc0\x69\xa5\ \x07\x54\x00\x19\x03\xc8\xe7\x78\xfe\x8b\xb0\xce\x8e\x8b\xfe\x09\ \xd6\x13\x02\xf8\xb0\xf4\xa0\x0a\x20\x43\x00\xf9\xab\xc2\xcd\x82\ \x6d\xe7\xb8\x68\x92\x3f\x08\xe4\xcf\x2c\xff\x40\x05\x90\x11\x80\ \xfc\xe5\xe1\xa6\xc0\xf6\x77\x5c\xf4\xe7\xb0\x7d\x40\xfe\x6b\x95\ \x3e\x54\x01\x64\x04\x10\xc0\x95\x70\xa3\x1d\x17\xfb\x3a\xac\x01\ \xe4\x7f\x5e\xed\x0b\x2a\x80\x0c\x00\xe4\x9f\x08\x37\xde\x71\xb1\ \x8f\xc2\x0e\x06\xf9\x3f\x06\x7d\x49\x05\x20\x0c\x90\x7f\x10\xdc\ \xbd\xb0\xe5\x1d\x16\x3b\x01\x76\x22\xc8\xff\xab\xd6\x17\x55\x00\ \x82\x48\xe0\x5d\x9f\x84\x9f\x06\xe2\xaf\x0a\x7b\x82\x0a\x40\x08\ \x20\xbf\x27\xdc\x6c\xd8\x9a\x8e\x8a\xe4\x2f\xfd\x43\x41\xfe\xd4\ \x28\x27\xa9\x00\x04\xe0\x60\x5e\xbf\x1c\x8b\x61\xfb\x82\xfc\x97\ \xa3\x9e\xa8\x02\x48\x19\x20\x9f\x63\xf1\x73\x60\x9b\x3b\x2a\x92\ \xc1\x9f\x0d\x41\x81\x9f\x41\x50\x01\xa4\x08\x7f\xa0\xe7\x49\xd8\ \x8e\x8e\x8a\x7c\x02\x36\x18\xe4\x2f\x8d\x5b\x80\x0a\x20\x25\x24\ \x30\xd0\xc3\x88\xe0\x26\x90\xff\xa7\x4d\x21\x2a\x80\x94\x00\x01\ \xdc\x00\x37\xd2\x41\x51\xcb\x8c\x17\xdb\x77\x99\x8b\xeb\x52\x01\ \xa4\x00\x87\x41\x1d\xbf\xc1\x0e\x03\xf9\x53\x5c\x5d\x9b\x0a\x20\ \x61\x80\xfc\xe1\x70\xb7\x1b\xfb\xbe\xfe\xc1\x78\x63\xfa\xcf\xb9\ \xbc\x3e\x15\x40\x82\x88\xb9\x80\xa3\x12\x38\x96\xdf\x1f\xe4\xbf\ \xe5\xfa\x1a\x55\x00\x09\x01\xe4\x33\xf2\x86\x53\xbb\x51\x17\x70\ \x94\xe3\x1d\xd8\x9e\x71\x5f\xf3\x6a\x41\x05\x90\x00\xfc\x88\x1e\ \xae\xde\x59\xcf\xb2\x28\x06\x86\xf0\x1d\xff\xbb\xa4\xae\x55\x05\ \xe0\x18\x20\x9f\xa3\x7b\x5c\xc0\xd1\xd1\xb2\xa8\x69\xb0\x03\x2b\ \x2d\xe8\x74\x09\x15\x80\x43\x80\xfc\x76\xc6\x1b\xdf\xb7\x1d\xe5\ \xbb\x0d\x76\x4c\x98\xd9\x3c\x5b\xa8\x00\x1c\x01\xe4\xb7\x81\x7b\ \xca\xd8\x87\x73\x5d\x0c\xe2\xcf\x4e\xeb\xba\x55\x00\x0e\x00\xf2\ \x57\x82\x7b\x04\xb6\x87\x45\x31\xfc\x6f\xe7\x1c\xfe\x84\x34\xaf\ \x5d\x05\x60\x09\x7f\x88\x77\x32\xec\x40\x8b\x62\x9c\x0f\xf0\x84\ \x85\x0a\xc0\x12\x10\xc0\x4d\x70\xc7\x58\x14\xc1\x74\x2e\xfb\x83\ \xfc\x59\x12\xd7\xaf\x02\xb0\x00\xc8\xbf\x02\xee\x64\x8b\x22\xbe\ \x84\xed\x05\xf2\xdf\x90\x6a\x83\x0a\x20\x26\x40\xfe\x39\x70\xe7\ \x5b\x14\xf1\x9e\xf1\x46\xf7\x16\x49\xb6\x43\x05\x10\x03\x20\x9f\ \xe1\xdb\x57\x5a\x14\xc1\x70\x6d\x92\xff\xb5\x74\x5b\x54\x00\x11\ \x01\xf2\x99\x96\x8d\xcf\xfd\xb8\x7d\xc7\xc9\x1c\x8e\xee\x2d\x91\ \x6e\x8b\xb1\x68\x44\x21\x01\xf2\x87\xc1\xdd\x01\x6b\x15\xb3\x88\ \xc7\x8d\xb7\x44\xeb\x17\xe9\xb6\xb4\x40\x05\x10\x12\x20\x7f\xa8\ \xf1\xf2\xed\xc5\x25\xff\x01\xd8\x30\x90\xff\x87\x74\x5b\x4a\xa1\ \x02\x08\x01\x7f\xf1\x06\x13\x35\xc4\x9d\xd6\xbd\xd5\x78\x43\xbb\ \xcb\xa4\xdb\x52\x0e\x15\x40\x0d\x80\xfc\x21\xc6\x5b\xb9\x13\x97\ \xfc\xab\x40\xbc\xcd\xab\x62\xa2\x50\x01\x04\xc0\x27\xff\x1e\x53\ \x3b\x1d\x6b\x35\x5c\x0a\xf2\xcf\x92\x6e\x47\x10\x54\x00\x55\x00\ \xf2\x0f\x33\x5e\x28\x57\xdc\x67\xfe\xd9\x20\xff\x62\xe9\x76\xd4\ \x82\x0a\xa0\x02\x40\xfe\x71\x70\xd7\x98\x78\x0b\x36\x99\x9c\xf9\ \x94\x28\xeb\xf3\x24\xa1\x02\x28\x01\x88\x67\x7f\x30\x7a\x37\xee\ \x6d\x9b\x3f\xf2\x8e\x07\xf9\xd7\x4b\xb7\x25\x2c\x54\x00\x3e\x40\ \x3e\x63\xf7\xee\x32\xf1\x17\x6e\x90\x7c\xa6\x64\xbf\x45\xba\x2d\ \x51\xa0\x02\x30\xff\x66\xe0\x6e\x86\x75\x8d\x59\x44\x2e\xc9\x27\ \x0a\x2d\x00\x10\xcf\x1f\x78\xa7\xc2\xce\x85\xad\x12\xb3\x18\x92\ \x3f\x0a\xe4\xdf\x2c\xdd\x9e\x38\x28\xac\x00\x40\x3e\xb3\x6e\x73\ \x80\x66\x1b\x8b\x62\x72\x4d\x3e\x51\x38\x01\xf8\xe1\x5b\xa7\xc3\ \x18\x77\xb7\x92\x65\x71\x4d\x79\xfa\xc1\x57\x09\x85\x12\x00\xc8\ \xdf\x0d\xee\x3a\xfe\xe9\xa0\xb8\x31\x20\xff\x12\xe9\x36\xd9\xa2\ \x10\x02\x00\xf1\xdc\x51\x8b\xef\xe5\x43\x1c\x15\xf9\xbf\x94\xab\ \x79\x45\x5d\x0b\xc0\xbf\xdd\x9f\x64\xbc\xdb\xbd\xed\x12\xad\x16\ \xdc\x06\xf2\x5d\xe4\xee\xcf\x04\xea\x56\x00\x8e\x6f\xf7\x2d\xe0\ \x52\xad\xbe\x59\x9b\xd2\xb5\x41\xdd\x09\xc0\x5f\x9a\xc5\xdb\xbd\ \x4d\x98\x76\x25\x70\x43\xc6\xad\x82\xb2\x6e\xe6\x11\x75\x23\x00\ \x10\xcf\xe9\x5a\x66\xdc\xe4\x3b\xbd\xab\xdb\x7d\x0b\x98\x86\x85\ \x31\x7c\x4f\x4b\xb7\xd3\x35\xea\x42\x00\x20\xbf\x0f\x1c\x5f\xc7\ \x6c\x76\xd4\x0a\xc2\x58\x90\x7f\xa6\x74\x3b\x93\x40\xae\x05\x00\ \xe2\xd7\x85\x1b\x07\x6b\x4c\xb0\x2d\x6f\xc3\x7a\x43\x00\xbf\x4b\ \xb7\x37\x09\xe4\x56\x00\x7e\x80\xe6\xd5\xb0\x76\x09\x56\xc3\xf5\ \x7a\x3b\x82\xfc\x97\xa4\xdb\x9b\x14\x72\x27\x00\x10\xdf\xde\x78\ \x61\xd9\xfb\xa4\x50\xdd\x38\x90\x7f\x86\x74\x9b\x93\x44\xae\x04\ \xe0\xef\x98\xcd\xb4\xea\x6b\xa5\x50\xdd\x22\x58\xf7\xa4\x13\x34\ \x48\x23\x17\x02\xf0\x9f\xf5\x0c\xcf\x1a\x90\x62\xb5\xcc\xc8\x35\ \x4d\xba\xed\x49\x23\xf3\x02\x00\xf9\x5c\x73\x7f\x27\x6c\x83\x14\ \xab\x9d\x06\xf2\xd3\x78\xc4\x88\x23\xb3\x02\xf0\xd7\xdd\xf3\x9d\ \x9e\xc3\xb8\x2e\x37\x53\xa8\x05\xde\xf2\x37\x83\x00\x3e\x96\xee\ \x83\x34\x90\x49\x01\x80\x7c\x3e\xe3\x99\x74\x61\x4f\x81\xea\xcf\ \x01\xf9\x17\x4a\xf7\x41\x5a\xc8\x9c\x00\x40\x7e\x17\xe3\x65\xc8\ \xda\x54\xa0\xfa\xf7\x61\x5b\xd4\xd3\x58\x7f\x2d\x64\x4a\x00\x20\ \x7f\x5b\xb8\xc7\x60\x6d\x6d\xcb\x8a\x89\xfe\x95\xf6\xd6\xab\x67\ \x64\x46\x00\x20\xbf\x1f\xdc\xc3\xc6\xfd\x38\x7e\x58\x3c\x08\xf2\ \x07\x4b\xf7\x43\xda\xc8\x84\x00\xfc\xcd\x93\xb8\x74\x3a\x6e\x60\ \xa6\x2d\xb8\xdf\x4e\xb7\x7a\x9b\xe9\x0b\x03\x71\x01\x80\xfc\x4e\ \x70\xf3\x8c\xfb\x8d\x92\xa3\xe0\x54\x90\x7f\x85\x74\x5f\x48\x40\ \x54\x00\xfe\xab\x1e\x33\x6b\xf6\x11\xbc\x0c\xee\xb9\xd3\xdb\x76\ \xe7\x8d\xbc\x42\x5a\x00\x47\x18\x2f\x2d\xaa\x14\x18\xd6\xbd\x13\ \xc8\x7f\x41\xb2\x1f\x24\x21\x26\x00\x3f\x5e\x8f\x5b\x99\xbb\xda\ \x3a\x2d\x0e\x26\x82\xfc\x11\x82\xf5\x8b\x43\x52\x00\x8d\xc6\x1b\ \xdf\x97\x02\x43\xbc\xba\x25\x99\x8a\x3d\x0f\x90\x14\x00\xf3\xe9\ \x4b\x3e\xfb\xb9\xb1\xf2\x7d\x82\xf5\x67\x02\x22\x02\xf0\x03\x37\ \xb9\x03\x46\x9a\x63\xfc\xa5\x28\xe4\x3b\x7f\x25\x48\x09\xe0\x70\ \xe3\xcd\xf0\x49\xe0\x5b\xe3\x0d\xf7\x7e\x25\x54\x7f\xa6\x20\x25\ \x80\x1b\xe1\x8e\x15\x6a\xf3\x50\x90\xdf\x2c\x54\x77\xe6\x20\x25\ \x80\x67\xe0\x76\x16\xa8\x7a\x0a\xc8\x77\xb5\x3c\xac\x2e\x20\x25\ \x00\xbe\xfe\x75\x4a\xb9\xda\x4f\x61\xbd\x8a\xfe\xab\xbf\x1c\x52\ \x02\xe0\x73\x38\xc9\x68\xde\x72\x30\xba\x77\x57\x90\x3f\x5b\xa2\ \xbd\x59\x86\x94\x00\xf8\x0e\xbe\x4e\x8a\x55\x72\xaf\xdd\xb1\x12\ \x6d\xcd\x3a\xa4\x04\xf0\xae\x49\x2f\xe0\xe3\x61\x90\xbf\x9f\x44\ \x3b\xf3\x00\x29\x01\x4c\x87\xdb\x3b\x85\xaa\x5e\x86\xf5\x83\x00\ \x7e\x92\x68\x67\x1e\x20\x25\x00\x57\xbb\x69\x07\x81\x3f\x34\x77\ \xc8\xc2\xa6\x0c\x59\x86\x94\x00\xb8\xb1\xe2\x9b\x09\x56\xc1\x41\ \x9e\x3e\x20\xff\x03\x89\xf6\xe5\x09\xa9\x08\xc0\xdf\x42\x9d\xe1\ \xdd\x8c\xb7\x3f\xc9\x3f\xc6\x4d\x16\xfb\x25\x50\x1d\x6f\xf7\xbb\ \xa0\x9e\x57\xd2\x68\x5b\xde\x91\xa8\x00\x40\x72\x07\xe3\xad\xe3\ \x2b\x0d\xef\xe6\x4e\xd8\x33\xf0\x59\x6f\xfc\x3d\xd7\xc4\xcf\xc4\ \x5d\x09\x7c\xbb\x68\xa8\xe7\xc5\x9c\xae\x91\x88\x00\x40\xee\xca\ \xc6\xcb\xcd\xc3\x67\x7d\x79\x90\x27\x37\x4c\x62\x04\xce\xdf\x7e\ \x52\xe6\xeb\x1c\x55\xcb\xe4\x0d\xc3\x51\xee\x67\x49\x75\x56\x3d\ \xc2\xa9\x00\xfc\x10\x2f\x0e\xb5\xf2\x07\xde\x26\x01\x5f\x3d\xb6\ \x25\xb9\x22\xce\x69\x32\x5e\x4a\x97\xb8\x39\xfb\x38\xab\xc8\xc7\ \xcb\x24\x8a\x2a\xf1\x1e\xab\x33\x38\x11\x80\x9f\x65\x7b\x10\xec\ \x3c\x13\x6e\xe7\x6c\x2e\xbf\xe2\xe2\xcb\xa7\xfc\xf3\x7b\xc2\x5d\ \x00\x6b\x30\xe1\xa6\x88\x39\xb2\x37\x07\x36\x11\x76\x7f\x51\xe3\ \xf9\x5c\xc0\x4a\x00\x7e\xae\x5d\x0e\xb2\x70\x13\xc5\x2d\x23\x9e\ \x4e\x12\x6f\x80\x5d\x06\x02\x3f\xf5\xcb\x63\xb2\xe6\xbd\x8c\x37\ \x51\xb4\x31\xac\xbd\xff\x5d\xee\xad\xbb\xc8\x78\xd9\x3a\x98\xa9\ \xeb\x69\x9c\xb3\x58\xba\xf3\xea\x01\xb1\x04\x00\xa2\x56\x87\x3b\ \x12\x76\x82\xb1\x9f\xd4\xe1\x7f\x2f\x17\x84\x70\x7b\x95\x79\xd2\ \x1d\x52\x34\x44\x12\x00\x88\xe7\x92\x2d\x3e\xdf\x0f\x81\xad\xe9\ \xf8\x5a\x78\x47\xe0\x26\xca\x8f\x48\x77\x4a\x91\x10\x55\x00\x8c\ \xa0\x4d\x32\x33\xf6\xb9\x10\xc0\x05\xb2\x5d\x52\x2c\x44\x15\xc0\ \x43\x70\x03\x13\xba\x96\xa5\xb0\xae\xfa\x6c\x4f\x17\xa1\x05\xe0\ \xbf\xdb\x73\x1e\x3f\xa9\xc5\x9b\xdc\x71\xe3\x26\xe9\x0e\x29\x1a\ \xa2\x08\xa0\xbf\xf1\x16\x70\x26\x01\x0e\xe2\xec\xa6\xef\xf1\xe9\ \x23\x8a\x00\xae\x85\x3b\xbe\xca\xc7\x1c\x8c\xb9\xdc\x78\x43\xbb\ \xad\x61\x07\xc0\x46\x99\x70\x83\x3b\x4c\xc6\xb0\xb9\x4e\xdc\xc8\ \x20\x8a\x00\x16\xc2\x75\xae\xf0\x11\x17\x57\xf6\x2d\x8f\xb5\xc3\ \xf7\x77\x31\xde\x1d\xa3\x96\x08\xc6\xe3\xdc\xd1\xd2\x1d\x51\x54\ \x84\x12\x80\xbf\xab\xd6\x6b\x55\x3e\xe6\x9c\xfb\xdc\x2a\xe7\x31\ \x93\xe7\x09\x01\x45\x73\xf2\xa6\x0b\xce\x5f\x22\xdd\x11\x45\x45\ \x58\x01\x54\x0b\xe0\x58\x0c\xf2\xda\x07\x9c\xc7\xbb\x40\x50\x86\ \xed\xd1\x38\x7f\xbc\x74\x27\x14\x19\x61\x05\xc0\xe5\xd3\x3b\x54\ \xf8\x68\x21\x08\xdc\x24\xe0\x3c\x4e\xf9\x56\x1b\xdd\xe3\xac\x1d\ \xff\xfb\x7f\x93\xee\x84\x22\xa3\xa6\x00\xfc\x2c\x9d\x5f\x9a\xca\ \x9b\x28\x73\xf4\x6e\xc3\x6a\xcb\xac\x6a\x4c\xf7\x72\x8b\xd5\x09\ \xd2\x1d\x50\x74\x84\x11\x40\xad\x75\x7c\xb7\x82\xc8\xa3\x2b\x9c\ \xc7\x61\xe3\x57\x61\x1d\x2b\x9c\xc3\xc1\x9e\x4e\xfa\xdf\x2f\x8f\ \x30\x02\x98\x6a\x6a\x67\xe6\xe6\xb4\xec\x98\x96\x00\x4c\x9c\xb3\ \x1d\x1c\xb7\x51\xad\xb6\x81\x83\xc6\xe9\x67\x04\x81\x02\x00\x91\ \x9c\xf0\xe1\x7f\x6b\x98\xec\x5d\x7c\x1c\x7c\x64\xbc\x49\xa2\x75\ \x03\xbe\xf7\x33\xac\x83\x2e\xd1\xca\x06\x6a\x09\xe0\x50\xb8\x49\ \x8e\xeb\xbc\x11\xe4\x8f\x92\x6e\xb8\xc2\x43\x2d\x01\x30\x65\xab\ \xeb\x14\xed\x5b\x42\x00\xf3\xa5\x1b\xae\xf0\x50\x55\x00\x20\x7f\ \x7d\xe3\xad\xa8\x75\x15\xb5\xcb\x5b\x7e\x33\xc8\x6f\x92\x6e\xb4\ \xe2\x3f\x04\x09\x80\x5b\xb0\xd9\x0e\xd2\x2c\x80\x31\xc0\x83\x4b\ \xc1\x9e\xd7\xd8\xbd\xec\x21\x48\x00\x1c\xfa\xed\x15\xb1\x3c\x4e\ \xec\x30\x58\x93\x8f\x0e\x2e\x02\x59\x28\xdd\x40\x45\x30\x2a\x0a\ \xa0\xc6\x08\x5e\x39\x78\x6b\xe7\xab\x22\xff\xcb\x67\x82\xf4\xa5\ \xd2\x8d\x52\x84\x47\x35\x01\x30\x5a\x77\x64\xc0\x79\x0c\x0c\x61\ \x74\xd0\xfd\xb0\x59\x7a\x6b\xcf\x2f\xfe\x27\x00\x90\xdf\x06\xee\ \x0b\xd8\x1a\x65\x1f\x71\xe3\x44\x3e\xcf\xef\x82\x3d\xa6\xa4\xd7\ \x07\x2a\x09\x80\x11\xbf\xf7\x94\x1c\xe2\x52\x2e\x8e\xea\x4d\x06\ \xe9\xdf\x4b\x5f\xb0\xc2\x2d\xaa\xdd\x01\x98\x41\x93\xb9\xf3\x6f\ \xd1\x55\xb6\xf5\x0d\xf1\xfd\x02\x14\xb2\x50\x01\x14\x1c\x2a\x80\ \x82\x43\x05\x50\x70\xfc\x03\xa4\xee\x0b\xae\x67\x30\x16\x9d\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x20\xdc\ \x52\ \x49\x46\x46\xd4\x20\x00\x00\x57\x45\x42\x50\x56\x50\x38\x20\xc8\ \x20\x00\x00\xf0\x14\x01\x9d\x01\x2a\x93\x01\x18\x01\x3e\xa5\x3a\ \x98\x4c\x28\xa3\x22\xa2\x3f\x08\x01\x10\x14\x89\x69\x0e\xb4\xcf\ \x19\xbc\x64\xfa\x00\xfd\x58\x97\x13\x93\x65\x77\x5f\x2c\xff\x09\ \xfe\x5f\xfb\xf7\xb2\x9f\x97\x7d\xcb\xc1\x69\xfa\x2f\xd7\x9f\xec\ \x9f\x6f\xff\xf1\xfd\x3b\xcf\xcf\xd5\x1f\x2a\xff\x83\xf1\x05\xff\ \x27\xce\xbd\xfc\xda\xfd\xe8\x11\xcf\x6f\x92\x5f\xde\xfe\xa3\x7f\ \x61\xea\x01\xff\x6f\x8d\xbb\xe9\x9e\x82\x5f\xb0\xbe\xce\x3f\xe7\ \x7e\xb4\xff\xf6\xe9\x41\xfd\x59\xfd\x6d\xec\xfb\xe8\xf4\x66\x02\ \x52\x67\x8c\x9a\x6a\x43\x71\x4a\x8b\x95\x12\xd9\x23\x2d\xb5\x40\ \xfd\xa0\x25\x1c\x0f\x56\xe8\x54\xd0\x36\x18\xf6\xc8\x33\x59\x2b\ \x26\x03\xb5\x57\x01\x24\x2f\x93\xcd\x85\x14\x48\x7d\x5b\x08\x21\ \x2e\x35\xa8\xb5\x2c\x56\xc5\xcf\x23\x64\x02\x14\x21\xf7\x36\x36\ \xb8\xe3\x0a\xbe\x8b\xae\x97\x1f\xb3\xab\xee\xbd\x9f\xf1\x45\x52\ \x6b\x2b\x61\xc2\xed\xf2\x13\x39\x31\xf6\x55\x82\x50\x01\x31\xb9\ \x06\x02\x14\xd0\x7b\x24\x3d\x6c\x8d\xf9\x82\xac\x73\xc5\x2f\x60\ \x98\xa2\xaf\x03\xea\xa0\xf7\x9f\x93\xd7\xd4\x10\xa7\xa4\x98\xe6\ \x54\x4e\x94\x71\x28\x17\x93\x35\x17\xee\x63\x06\x15\xc8\xf3\x1f\ \x57\x38\x3e\x78\x49\x78\xca\x40\x67\xe0\x71\x7d\xc6\xd7\xba\x22\ \x1e\x15\xb9\x2e\x7c\x71\xef\x00\x37\x70\xf7\x9f\xfa\x2a\x7c\x2a\ \x60\xae\x6a\x1a\x14\x4a\xe5\x1f\xdc\x20\x92\x39\x74\xbd\x31\x76\ \x68\x3c\xad\x3a\xc0\x4b\x01\xd6\x1e\x72\x3f\xc8\x05\x14\x2e\x99\ \x2a\x5e\x3a\x4f\x71\x07\x91\xe4\x85\x33\x12\x76\x00\x68\x73\x8c\ \x23\xe0\xae\x87\x06\xe7\xad\xde\xd2\x88\x4a\x4e\x91\xa9\x25\xcc\ \x1e\x31\x5f\x8f\xa9\xea\x92\xfc\xf9\x05\x73\x4b\xfb\xe9\xc9\xa3\ \x75\xca\x7c\xa9\xce\xa2\xe3\x74\xc8\x59\x2c\xea\xf5\x0c\x6b\xde\ \x04\xa0\x44\xf2\x75\xc8\xa1\xef\x04\x82\xbe\xd4\xc9\xff\x5d\xbd\ \xc8\x69\xec\x53\x47\x1b\x13\x61\x2a\x80\x9d\xdb\x4d\x9f\x38\x55\ \x23\xb2\x29\xfc\xf7\xa5\xb9\xd1\x64\x33\xf5\xc4\x41\xa0\x7c\xd4\ \x43\xf0\x9d\xc9\x36\x02\xbf\x0f\x94\x9b\x1a\x4b\x03\x2f\x69\xec\ \x03\xb9\x7f\xda\x7c\x40\x45\xf9\x64\x1c\xa1\xba\x9b\x94\xfa\xe0\ \xa1\x7a\x4b\xa6\x2d\xb9\x1d\xac\xe8\x2f\x2b\x1c\x68\xdb\x3a\x99\ \x8d\x89\x2f\x3a\x71\x81\x1b\x20\x9a\x37\xc6\x1e\xfd\x70\xf3\xcb\ \xa3\x19\xa8\xc6\xb3\x4a\x2f\x1a\x42\xd3\xa8\x14\xe3\x61\x6b\xaf\ \x15\xbe\x5e\xb6\xba\x06\x02\x55\xbc\x46\x48\x8c\x5b\x9b\xe6\xcd\ \xed\x69\x2b\xac\x45\xe0\x7c\xc3\x56\xbd\x35\x05\x0d\xca\xbb\x2b\ \x66\x50\xeb\xf8\x04\xea\xca\x70\xe3\x2c\x47\x67\xe6\x1d\x5e\x1b\ \xa8\x93\x94\xbc\x38\x66\x74\xbe\x41\x3b\x7a\x20\xf9\x1d\xea\xe9\ \x7a\x74\x91\xcc\x05\x6c\xf2\xcd\xa4\x5a\x56\x07\x99\xe6\x73\xfe\ \x34\x43\x7e\x5b\x7d\x98\xbb\xd5\x31\xb6\xe9\xbb\x7d\x2e\xa0\x0a\ \x2a\x77\xd0\x4f\xd5\xe5\x18\x2f\x53\xa0\x4f\xf8\x0e\x3c\xb1\x10\ \xe4\xeb\x83\xf4\xd1\xfa\x38\xc5\xdd\x7e\x17\x57\x45\x30\xde\xbb\ \x4d\xfc\xf3\x6e\x8e\xc6\x16\x3f\x3d\x1a\x16\xbb\xaa\x53\xb2\x60\ \xb6\xb6\xb8\x2e\x03\xed\xd2\x3b\xcc\x27\x5b\x15\x85\x68\x4d\x75\ \x80\x19\xc9\x56\x88\x82\x8d\x87\xc4\x7b\x5b\xbb\x27\xfd\xf1\xfe\ \xe3\x33\x7b\x27\x30\x39\x6d\xb3\x7e\xcc\x95\xae\x5e\xda\x09\x18\ \xb8\x0d\x0b\x69\xca\x1e\x96\x03\x5e\x43\xfa\xa3\x2a\x66\x4e\xbc\ \x51\xcf\x22\x13\xf4\x22\x68\x39\x8d\xc5\x45\x9c\x72\xff\x5f\xf3\ \xd6\xd2\xee\xb8\x54\xe5\x84\xdb\xae\xc0\x57\xa3\xf1\x67\xce\xc9\ \x4c\xcd\x0e\xe0\x5c\x65\x14\x20\xa9\x1b\x7a\xbf\x4c\x90\x65\xc1\ \xdc\x54\xbf\xc1\xd7\x4d\x31\xec\x47\xa3\x2f\xfb\x8a\x52\x30\x6a\ \x27\x01\x1c\xaf\xba\xde\xfe\x27\x14\x8f\x65\x20\xc1\x26\x33\x55\ \x6f\xa2\xb5\x6e\xd8\x1d\x6a\x46\x16\xf2\x0a\x15\x31\xae\x77\x1f\ \x90\x43\x87\x1b\x44\x5a\x64\xda\x9e\x7e\x06\x99\x59\x6b\x99\x31\ \xe1\x8a\xf2\xb8\x5f\xf8\xcc\x3a\x92\xed\x52\x19\x2a\x1e\x8e\xc2\ \x08\x84\x72\x97\x8a\x7e\x2f\xbc\x31\x7c\x0e\x30\x8c\x27\xa5\x0d\ \xe8\x34\x21\x80\xec\x64\xad\xc0\xb0\xa0\x94\xeb\xec\xe7\x10\xee\ \xda\xc8\x83\x86\x52\x8e\x5b\x38\x31\x68\xff\x89\x60\xe2\x69\x1a\ \xe6\xec\x8f\xc2\xca\x20\x1f\x50\x3e\xc5\x50\x73\xb8\xe7\x4a\x31\ \x5b\x1e\x17\x23\xfe\x75\xd3\x5f\xe5\xc9\x49\x98\x87\xd5\xed\x77\ \xea\x0f\x0a\x30\x30\x56\x27\xed\x45\x9f\x71\x1f\x98\x31\xc3\x0f\ \xcd\x06\x8f\x9d\x87\x00\xa4\xdf\x92\xb6\x4e\x17\xf7\x55\x1a\xdc\ \xe9\x6e\x6a\xc5\x65\x8c\x6b\xaf\x54\xb3\x86\xf0\xe7\x43\xcf\xb1\ \x92\x30\x10\x2c\x5f\x83\x78\x7a\xd9\x26\xba\x5e\xc1\xbb\xea\xde\ \x06\xb8\x78\xab\x1e\x67\xfb\xa5\x7c\x2b\xfc\x81\x55\x86\x72\xb7\ \x58\xa0\x10\xde\xd6\x64\xe3\x18\x8e\x4b\xcc\x71\xdc\xa5\xe0\x61\ \x28\xef\x59\xa5\x62\xea\x08\xd4\x6c\x9d\xb1\x94\xf5\xbc\xf3\x28\ \xdf\xff\xcc\x85\xe4\x5f\xae\x5e\x97\x2c\xb8\x48\x94\x1f\x5a\x80\ \xcb\x14\xb0\xbd\x7d\x12\xf5\xc4\x65\x9f\x16\xac\x3f\x38\xd7\xef\ \x83\xf6\x8c\x16\x27\x54\x47\x5a\x61\xdd\x95\xa2\x3f\x46\x3c\xb5\ \x0a\x98\x8f\xea\x34\xf9\xe2\x2b\xd6\x18\x17\xa3\x71\x57\xa9\x71\ \xb9\x69\xb3\x9a\xcd\x1c\xad\xdc\xc6\x16\xb3\xb4\xe0\xae\xad\x59\ \xb5\x52\x81\xc9\x2c\x22\x69\x78\xe6\x00\x9b\x65\x3a\xf7\x64\x17\ \xa0\x20\x0d\x90\xb7\xa7\x6d\x8f\x44\x00\xc0\xdb\x03\x7f\x00\x97\ \x8f\x14\x7c\x8e\x28\x34\x32\xb9\xea\x0b\xfe\xc4\x7a\x9b\xea\x6f\ \x0b\xa1\x02\xda\x6e\xaa\xed\x6a\x44\xac\xc5\x2e\x40\xef\xb6\x58\ \x01\xfa\x1f\x9d\x3a\x83\x88\xa9\x60\xf7\x4a\xdf\xc5\x41\x63\x5d\ \xc7\x41\x26\x4b\x0d\x9d\x00\x82\x77\xbf\x5d\x11\x35\x9e\x26\x38\ \xbf\xbc\x23\x21\x43\xff\x6f\x4e\x73\x67\x19\x47\x56\x08\xf8\x28\ \x3e\x43\x08\x01\xe7\xa5\x3e\xc4\x3b\xe1\x3b\xbf\x91\x78\x0d\x38\ \x1c\xae\x2c\xa8\xca\x1d\xae\x18\x3c\x6e\xb8\x8f\x9f\xc8\x9c\x2c\ \x3c\x5e\x91\xc4\x9f\xbd\x49\x1d\x51\xc1\x86\x88\x55\xd5\xd9\xef\ \x34\xf1\x74\xe7\xbd\x9d\xc2\xe5\x3e\xe7\x4d\x6f\xc8\x3c\x28\xcc\ \x01\x86\xcc\xba\x70\x80\x95\x07\x34\xa2\xd4\xa6\x24\x46\xca\xa7\ \xf1\x4c\xcb\xb5\x12\x07\xca\x53\x35\xc3\xb5\x8d\xf2\x45\xf3\x41\ \xbd\x7f\xc2\xcf\x75\xfe\xd0\x5e\xa3\xef\xc3\x20\xde\x00\x45\xe2\ \x2f\xfc\x96\x7b\xac\x2b\xcc\x1f\x78\x38\xfe\x67\x3f\xa2\xa8\x86\ \x6a\x6a\x02\xe4\xe1\x88\x19\x1e\x66\x8c\x6d\x79\xe9\xfc\x2d\xb8\ \x89\x63\x53\x37\x12\xf7\x3f\xc1\x46\x8c\x9f\x52\x6d\x1b\x51\xab\ \x1d\x35\xcb\x3a\x57\x1a\x29\xdf\x4c\x0f\xae\xdd\xf9\x5e\xa8\x95\ \x94\x88\xb9\x21\x0b\x08\xef\x20\x4a\x5d\xb5\x73\xe9\x8c\xc7\x43\ \x14\x71\x51\x3b\x27\x55\x7b\x16\x15\x0f\xa0\xb8\x93\x5b\xc5\x63\ \x6c\xc7\x23\x79\x36\xd2\xf3\x8a\x90\xe6\x94\x52\xa7\xc6\xc5\x89\ \xa8\xf5\xe0\x74\x02\xee\x9d\x9b\x95\xe7\x2e\x12\xbb\xa7\x4f\x24\ \xf6\xb4\x7c\x5d\x5b\x33\x70\x5f\x86\x49\x46\x56\x8b\xf3\xd3\x8f\ \xcc\x83\x5e\xa6\x5d\xe2\x48\x9d\xb4\x56\xfe\x14\x6a\x11\x99\xb0\ \x9f\x18\xfc\x66\x4b\xa1\xdd\x75\xc5\xbf\x8b\xe3\x7d\xbc\x10\x15\ \x2a\x30\x08\xe6\xdb\x25\xac\xe0\x89\x3f\x46\xc1\x5f\xc6\xa6\xe0\ \x5a\x16\x45\x89\xc4\x7d\x29\xb0\xae\xec\x9f\xc3\xdc\x28\xc0\x01\ \xea\x4e\x77\xe7\x42\xdc\xe7\x5d\x73\xba\xaf\x3a\x90\x8d\x0d\x21\ \xe0\xe4\x63\x06\x60\x42\x7b\xe6\x60\xd1\xae\xa2\xc8\x71\xb6\x11\ \x9b\x8b\x96\x2b\x92\xf5\x05\x61\xf3\x78\xcd\xdb\xc8\xe1\xca\xee\ \x34\xbd\x65\xfe\xa3\xd8\xeb\xb7\x16\x19\xad\xf5\xd5\x9c\xc3\xda\ \xd7\xc4\x15\x49\xbb\x5a\x39\x02\x6f\xa8\x1f\xd9\xd7\xee\x74\xcb\ \x17\x26\xc6\x32\x92\xef\xd1\x6e\x91\x72\xc3\xf0\x0b\x0f\x9e\x0d\ \x70\xb5\x53\x41\x90\x89\xb2\xe2\x16\x55\x38\x38\xcd\x2a\xb2\xf0\ \xc5\x7a\x8b\x91\xe3\xe0\xfd\xa9\xf0\x7a\x26\xf6\x71\x89\xd7\x4a\ \x87\xfa\x87\xf3\x25\xaf\x28\x1e\x5d\x3e\xc5\x96\x06\x45\xdb\x78\ \x3f\xad\x93\xee\x50\x30\x33\x21\x9a\x93\x07\x01\xc2\x9a\xee\x27\ \x92\xd4\xda\x2a\xfc\xe2\x45\xc4\xa8\xa9\xef\xaa\xf2\xe5\x77\x9f\ \xe6\x8d\x37\x8f\x14\x4a\x55\xa3\x4f\x2a\xc3\x34\xe5\x42\xcb\xd1\ \xa3\x77\xc4\x26\x04\xed\x87\x12\x5d\x4f\xb3\x03\xbd\x0e\x80\x8b\ \x07\xc6\x41\x58\x66\x73\x91\x65\x78\xe4\xde\xad\xc7\xb1\x4a\x3a\ \xc4\xd2\x00\xbb\x64\x2a\x1e\x96\x6f\x33\xa1\xd6\x9d\x54\x9d\x21\ \xeb\x41\xcd\x56\xc2\x39\xa0\x20\x5d\xbe\x74\xf2\x3f\xd6\xa5\x6f\ \x33\x52\x4b\x8d\x5e\xb1\x2a\x02\x02\xef\xe4\x4e\xd7\x18\x62\x0d\ \xde\xae\x05\x06\xdf\x8d\xe9\x57\xb6\x26\x0a\x38\x75\xc3\x2a\x18\ \xe3\x38\xc4\x56\x64\x90\x65\xcc\x20\x08\xb4\xd7\xad\x70\x85\x32\ \x4c\xdf\xe1\xaf\x3f\xb9\xf4\x0b\xd5\x10\x6b\x4c\x16\x0b\xc6\x5e\ \xcf\x43\xb0\x79\x74\xcb\xe0\x01\x12\x2d\x3c\x92\x2a\x8e\x44\xb6\ \x0a\xba\xe4\x4d\x40\x45\x32\xc4\xef\x5e\x8a\xc6\xef\x43\x4d\x6d\ \xd2\x96\x1f\xd2\xa6\x05\x8a\x2e\xa2\x34\x96\x9b\xb5\xbd\x06\xa4\ \x1b\x58\x51\xa3\x63\xb2\x8e\x9e\x62\xa1\x75\x66\x72\x0f\x43\xf6\ \xc3\xc7\x65\x23\x67\x98\xaf\xe3\x00\xe8\xfa\x6d\x92\x01\xe1\xee\ \x78\x94\xf8\x71\x95\x5f\x27\x31\xec\x76\x38\x48\x30\xd3\xdb\xe5\ \x90\xde\x10\x0d\xfe\xdf\x6f\x31\x02\x9b\x8a\x2a\x65\xf5\x02\x1d\ \x37\x3d\x17\x7b\x85\x15\x91\x68\x94\xe2\xdf\xec\x10\xcc\x69\xe2\ \xf3\x0d\x14\x4b\x43\x55\x80\x61\x7e\xe8\x2a\xfb\x9f\x1d\xfc\xf1\ \xe8\x2f\x53\xe5\x4f\x15\xd5\x0b\x8a\x63\x06\x23\x91\xbc\x13\xf5\ \xe0\xb5\x3d\x77\x6b\x05\x51\x57\x7f\xc3\x0d\xca\x7e\xa8\xdf\x09\ \x57\x32\x67\x8e\xe3\x35\x95\x91\xd8\xd6\xf1\xc3\x73\x09\x38\x22\ \x87\xf5\x75\x9c\x59\x0e\x95\x58\xf6\xfd\xc5\xe9\x8c\x7a\x0a\x42\ \x6b\x28\xe6\xb5\x57\xb5\xb7\x49\x4d\x20\xbe\x1e\xa0\xe3\x80\xf9\ \x3c\xf2\x7c\x95\xd8\x39\x79\xbc\x60\x37\xd3\x1a\xf1\xf6\xfb\x75\ \x47\x28\xa9\xa3\x7d\xea\x19\x77\x8e\x51\x4e\x43\xb5\x3d\x76\x49\ \x5f\x21\x38\x2c\xd7\xaa\xb5\xb0\xae\x48\xd0\x48\xc3\x44\xca\x70\ \xb4\x02\xfd\xbe\x7a\xeb\xef\x8b\x82\x2d\xfa\xbf\x32\x32\x91\x8e\ \x1b\x70\xdf\x9c\xd5\x64\x1f\x44\xda\x4f\x9f\x90\x17\x0b\x8a\x28\ \xac\x0a\xdf\x51\x6d\xe7\xfb\x07\xff\xe8\xdc\x65\x86\xb8\x58\x90\ \xdf\x24\xb9\x54\x73\xd0\x59\xf0\xd3\x41\x7e\xa4\xfa\x26\xd2\x7d\ \x13\x52\x00\x00\xfd\x91\x7d\xa9\xe5\xf0\x4c\x0d\x5b\xb9\x9a\x4a\ \x7a\x2c\x65\xb2\x2d\x4b\x3d\x9b\x33\x6f\x77\xf4\x99\xa9\xd2\x26\ \x83\xc8\xb6\x84\xd6\xeb\xcf\x85\xbc\xee\xad\x97\x80\x2a\xf0\x39\ \xe1\xb4\xb1\xf8\x15\xcd\x42\x7a\xe6\xa7\x3a\x3c\x7d\x7b\x7e\x57\ \xac\x8e\x76\xc5\x86\xe6\xd9\x8f\x44\xe7\x1b\x44\x21\x34\x97\xf6\ \x61\xdc\xcf\xfb\xfd\x04\xaa\xf0\xa7\xf1\x9a\x9e\x77\xc1\xd8\x95\ \x77\xa6\x6f\xdd\xfa\x6a\xff\xd0\xa1\x62\x7b\x82\xf8\x62\x16\x92\ \xa2\xee\x5b\x2a\xf7\xc7\xa9\xa3\xf2\x0f\x8a\x08\xf7\xdb\xa2\x9a\ \x8c\x84\x85\x49\x33\x68\x7f\xf5\xdc\x7b\xf0\x4a\x0a\xb2\x7f\x99\ \x2a\x36\x13\x66\x5b\x7c\xd2\xf1\x5f\x86\x17\xb7\x06\xd6\xee\x6b\ \xf5\x4f\x76\xa3\x10\x1e\xd6\x24\x38\x01\x2a\x1c\x65\xb0\xdf\x1f\ \x73\xe8\xb6\x78\x63\xfb\x69\x28\x2d\xcb\xbe\x40\x08\xf6\xd8\x53\ \x9c\x50\x82\xd3\x59\x1b\xfc\x79\xcb\x01\x6b\xb5\x3e\x43\x36\x6e\ \x7f\x52\x63\x30\x8c\x8c\x6c\xf6\x9d\xd6\x3b\x55\x44\x74\xb1\x7d\ \xb2\xa0\x5b\xdf\x93\x0d\x0a\xa3\x7e\x52\x91\xef\x5c\x00\xaa\xc2\ \x47\x5f\x2c\x8b\x9b\xf8\xf8\xeb\xf9\x39\x11\x6e\x0d\x09\x06\x30\ \x85\xcf\xfb\x59\xac\x82\x60\x94\x65\x23\x8e\x43\x26\x66\x7d\x2d\ \x43\x22\x65\x40\xac\x7c\x33\xb6\xaa\xe9\x93\x42\x5e\xaf\x76\x43\ \xb6\x05\xbe\xdc\xc4\xd0\xb9\xf7\xe9\x25\xc3\xf6\x43\x17\xac\x3e\ \xe6\x7a\x9c\xd5\x49\x84\xe7\x7d\xa3\x1e\xe0\xb5\x22\x94\x7f\x36\ \x5d\x4c\xf3\x61\xbc\xdc\xb7\xaf\x01\x05\xfe\xd6\x02\xf0\xbe\x52\ \xbb\x0d\x53\x9b\x4f\x6b\x89\x2a\x40\x2d\x87\x53\xa1\x23\x82\x8e\ \x5d\x68\x92\x4d\x36\x18\x07\x46\x90\x55\x08\x57\xb9\x52\xcb\x8e\ \xaa\x39\x42\x08\x12\x8b\xe1\x4a\x48\x67\x6c\xc2\x10\xd6\xc4\x72\ \xe0\xe6\x09\x0e\x50\x37\x9b\xae\xfe\x4b\x5f\x59\xdd\x22\x2a\xfa\ \x6a\x42\xeb\xd9\x4c\xde\xed\x2c\x49\x55\x1d\xd4\xf0\x64\x74\xa2\ \x30\x8f\x16\xf2\x0b\xb0\x38\xfa\x46\x4d\x8d\xc3\x6e\x79\xb0\xda\ \xbc\x95\x68\x93\xf5\x42\xe4\xf9\x29\x42\xc9\xf9\xd1\x2b\x04\x3d\ \xa2\xbe\x9f\x46\xf1\xaf\x86\x76\x8a\x70\xf1\x47\x70\x30\xa7\x1b\ \x7a\x84\x39\x16\x84\xf9\x4c\xcb\x9c\x23\x49\x23\x8b\x26\xc7\xcd\ \xa0\xaa\x20\x3a\x81\xe6\x6d\x6e\xb6\xd0\x6b\x92\x5d\x43\x35\x6b\ \x9e\xe5\xbd\x55\x06\x4a\x28\xde\xdd\x24\x11\x26\xea\x89\x3b\x9e\ \x76\x71\x42\x8d\xd8\xcb\xd4\x7a\x03\xb4\x7e\x02\xa5\x21\x9f\xa9\ \x96\x4c\xbd\x89\x89\x8f\xfe\xbd\xa6\xd6\xdf\xa7\x2e\x9d\x1d\xde\ \xb0\x85\x3c\x1b\xa2\x10\x37\x40\x3c\xce\x7f\xd8\x86\xfd\xb2\x67\ \x79\x1c\x8b\x92\xca\xaf\x09\xee\x8c\xd9\xa2\x9f\x91\x7a\x7f\x2d\ \x43\xde\xff\x9f\xc1\x05\xad\xe5\x0f\xbb\x23\x6d\xcc\xc3\xbe\xda\ \x7e\x9a\xb4\x5a\x73\x68\x02\xe0\xc7\xfa\x01\x16\x3e\xea\x5e\xd9\ \x21\x2d\x8b\x53\xf0\x51\xfd\x4f\x0e\x6c\x25\x23\x62\x94\xe4\x97\ \xfb\x15\x4f\x72\xc8\x38\x6f\xe2\xcf\x4b\x2f\xba\xdd\xe4\x9f\x9f\ \x73\x93\x50\x70\x2e\x4e\x6e\x52\x19\xdd\x14\xfa\x21\x3b\x61\xe4\ \x73\x46\x60\xc0\xa8\x8d\xa1\x0d\x4d\x35\x19\x92\x3c\x41\xf2\x23\ \x05\x9b\xb9\x35\x57\xb6\xea\x9f\x27\xf1\xe9\x15\x2d\xc3\x92\xc9\ \x3e\xc2\x6c\x47\x7e\xcf\x9f\x5c\xa3\xf7\xd3\x32\x21\x6b\xfd\xd0\ \x73\x94\xc1\xd5\x7c\x04\x29\x60\xff\x15\x1e\xe7\xea\xef\x72\x41\ \x5e\xba\x3b\x2b\xd8\xec\x08\x95\x0c\xbb\x40\x5e\xbc\x17\xea\xfe\ \xe5\x59\x43\x8f\x68\xbb\xb9\xeb\x70\x74\xd6\xf5\x2b\x0f\x1a\x98\ \x44\x82\x2b\x42\x0e\xbb\xe6\x7d\x93\xfa\x5a\x15\xad\x5e\x4e\x1e\ \x94\xf6\x31\xb1\xe1\xcd\x30\xef\x28\x3c\x33\x1c\xb2\xc3\xd3\xf9\ \xbb\xfc\xac\x35\x2e\xac\x95\x1f\x2c\x33\x53\x10\xac\xd9\x11\xb7\ \x32\x61\x0c\xcd\x94\x3c\x61\x26\xb2\xd1\xcc\xfb\x39\xcc\x1c\x6c\ \x5f\x95\xab\xce\x20\x97\xa4\x74\xf7\xf4\x8c\xda\xca\xe9\x6e\xe8\ \xe3\x20\x17\xda\xfd\xd5\xe4\x89\x6e\x90\x88\xa3\x6a\xe4\x85\xae\ \x6b\x0b\xdb\xc3\x60\xc1\xac\x6f\xf3\x69\xe3\x4f\x5e\x49\xc9\x6c\ \x90\xf9\x49\xd2\x92\xc4\x02\x5b\xa8\x50\x78\x9e\xff\x61\x71\x6e\ \xb8\x46\xa2\x0a\x7f\x98\xee\x77\xeb\x6c\x83\x4b\x57\x7c\xa0\xb6\ \x9a\x85\x87\xce\x5e\x7b\x66\xfd\x52\x17\x2d\x80\x7b\x43\x85\x23\ \x10\xec\x51\x5b\x01\xee\x63\x46\xc5\xa6\x2c\xfe\x5a\x85\xbb\xf4\ \x81\x73\x88\x54\x98\xb1\x4c\xdd\xee\x9e\xab\x28\x2c\x77\x7f\xc3\ \xc0\xce\xa4\x0a\x83\x37\x4a\x2a\xda\xec\x39\xc8\x1c\xa7\x69\x77\ \x52\x76\x43\x64\x0f\x8a\xfd\xe3\x24\x38\x4c\x8f\x42\xfc\xad\xf4\ \x41\xd1\xaa\x41\xdc\x4f\xdb\xc2\xdd\xcd\x56\xa4\x27\xa5\x8e\xc4\ \x31\x27\x05\x85\x07\x25\xce\xcd\xd0\xbf\x06\xa5\x95\x13\x97\x7e\ \x75\xc4\xf1\xed\x08\xd6\x49\x90\x58\x73\x87\x8b\xa9\xdc\x81\xbb\ \x03\x41\x0a\x1d\x69\x5e\x17\x81\xf1\x26\x72\x45\x80\xcd\x61\x3c\ \x92\x91\x05\x67\x35\xeb\x42\xe3\x3d\x6e\xf0\x2f\x3d\xb4\xe5\xb3\ \x2d\x80\xbe\x8e\x4d\x4e\x7b\x10\x6e\x03\xa9\xd1\x7d\xb0\x60\x80\ \x8d\xee\xe9\x7a\x2f\xe5\x64\xb2\xf2\x39\x47\x48\xb1\xe2\x35\x46\ \xe0\x66\xc8\xce\xf3\x05\x19\xa2\x21\x55\xc1\x48\x46\xd7\x51\xfa\ \x43\x22\x55\x70\x22\x82\xbb\x64\x42\x9d\xc8\xe4\xf7\x27\x4a\x2a\ \x2c\x48\x3d\x06\x4e\xb7\xaf\x70\x57\xaa\x29\x3b\x63\xed\x91\xab\ \x25\x4a\x25\x8d\x5b\xfd\x66\x13\x46\xcd\x09\x76\x3a\x9a\xe4\xdb\ \x33\x3e\x56\x29\x2f\xcb\x83\x84\x1d\x97\x6c\x71\x7a\xde\xde\xce\ \x39\x21\x0c\xe6\x46\xc2\xdf\xeb\x49\x10\xb5\xde\xb3\xec\x82\xc8\ \x31\x9b\x63\x3f\x35\x45\xda\x34\x7c\xa5\x6f\xec\x22\x30\x5a\xc4\ \x40\xb8\xce\xc8\x63\x75\x91\x27\x25\x31\xba\x29\x68\xbc\x28\xb8\ \x7c\xda\x28\x10\x78\x5a\x80\xc7\xf3\x1e\x83\x74\x98\x38\x9d\x40\ \x9a\xe9\x8c\x0b\x97\x3e\xbc\xd9\x12\xba\xd9\x8c\xd3\x2f\x41\x22\ \xa6\x95\x42\x8a\x68\x8b\xee\xae\xdb\x46\xa8\xfe\x37\x0c\xc9\x81\ \xce\x1e\x34\xdb\x41\x7a\x7a\xd2\xc7\x6c\xda\xc9\x31\x2d\x5f\xbc\ \xca\xaf\xb6\x69\x3e\x19\xc3\x8b\xe1\xcd\xa8\x9f\xa5\x05\xc8\x1f\ \x1a\x04\xaf\x4f\x9c\xa0\x2b\x3d\x43\xe3\x54\x77\x91\x8a\x20\x19\ \xc0\xda\xdc\xea\x82\xfa\x9b\x30\x76\x35\x49\x0f\xbf\xea\x33\x13\ \xd7\xdd\x18\xe3\x7b\x0f\xf2\xe2\x69\x94\x9d\x86\x8b\x9f\x84\x49\ \xf2\x08\x52\x7b\x34\x6e\x6a\xd5\xb0\xfe\x9d\xba\x83\xd4\xe4\xd8\ \xa8\x6e\x7c\x94\xd4\xaa\xb1\x1f\x9e\x09\x5e\x75\xf1\x19\x5a\x7e\ \x65\x22\x3c\x9d\x68\x97\x6c\x66\x9e\xa5\x8d\x85\xbd\x98\x0a\xbe\ \x56\xed\x62\xc9\xb9\xe0\x0f\x7b\x29\x7f\x83\xab\x39\x8d\xc7\x79\ \xd8\xdf\x04\x50\xf3\xa2\xae\x18\x95\x28\xd7\x97\x57\x43\xc3\x7a\ \x00\x99\x54\xe8\x08\x29\xfd\x77\x19\x75\xe2\x79\x2c\xcb\x70\x4b\ \xeb\xaa\x54\xe1\x67\xa3\xbf\x4f\x3c\xcf\x15\x9f\xf2\x97\xd2\x95\ \x82\x03\x30\xa0\x41\x64\x6b\x5b\x95\x84\x3b\x44\xd6\x55\xcd\x4e\ \xc0\x59\xdd\x53\x2c\x63\x77\xd4\x4f\xcc\xf4\x9a\x34\xef\xbb\xae\ \xe2\xa6\x52\xc9\xea\x79\xad\x3b\x19\x4d\xd7\xf9\x84\xb3\xb8\x5b\ \x73\x54\xb4\x81\x52\x56\x95\xed\x91\xab\x22\xc1\x95\xbf\xf1\xf6\ \x7b\xb4\x82\x27\x9d\xfd\x3e\x76\xed\x43\x9e\x4f\xec\xf9\x61\xd6\ \xd1\x7d\xa6\x48\x90\xb5\x57\xcf\x79\xb5\x62\xb9\x36\xe2\xf9\xe2\ \xc3\xcb\xbc\x78\x0c\x9f\x9c\x5a\x6a\xb5\xef\xd8\x4e\x03\xf3\x4d\ \x64\x61\x30\x00\x2b\xc2\x5f\x92\xb7\x7e\x69\x1e\xda\x38\x8c\xd9\ \x7d\x20\x93\x11\xd8\x8e\x06\x73\xb3\x05\x54\x10\xbf\x7c\x57\x8b\ \x65\x30\x47\x39\x58\xd4\x8f\x65\x28\x1e\x74\x0c\x65\x0f\xa1\xc8\ \x26\xba\xe4\xc1\x2e\xd1\xa1\xfb\x56\xd6\x28\xd3\xce\xca\xf2\x77\ \x6b\x6e\x41\x97\x62\x33\x5a\x2c\x04\xdd\x5f\x2c\x6d\x7d\x94\x24\ \x7b\xa8\xa4\xfd\x4b\xd1\x27\x0b\x57\xb3\xb9\xb9\xdb\x95\x54\xaf\ \xdc\x03\xe6\x9e\x1d\x0a\xb1\xd3\x3d\x96\x63\x15\xf5\x30\xe0\x2b\ \xf8\x82\xea\x04\x47\xf4\xba\x5a\x56\x37\x39\x8f\x32\x25\x90\xd3\ \x3d\x88\x5d\x7e\x46\x33\x53\x13\x6c\x2a\xa2\xf0\x4e\x67\x00\x9a\ \x6a\x93\x69\xc1\xcb\x32\x5b\x76\xff\xfd\x1e\x4e\xf5\x78\x3d\x3b\ \x45\x58\x36\xbb\x53\x23\xde\xbe\x81\x1d\x8d\x44\xd8\x64\x24\x87\ \x84\x18\xe3\x45\x3d\x09\x31\x98\xa5\x35\x88\x53\xda\xd1\x32\xf0\ \x6c\xbd\xd2\x02\x36\xad\xfd\x18\x10\xd3\xd3\xb9\x01\x19\x23\xa4\ \x71\xe3\xb2\x7b\x45\x04\x48\xdc\x18\xbb\xe0\xad\x56\x06\xdc\xbb\ \xcb\xf8\x26\x05\xd3\xf9\x02\x5e\xec\xda\x70\x39\x11\x98\x30\x73\ \x96\xe2\x17\x4a\x64\x1f\x13\x3a\x63\xd6\xc5\x07\x3d\x48\xca\x1c\ \x8b\x03\x31\xe3\xcb\xf5\xf0\xce\xc3\x4d\x4d\x8f\xbe\xf3\xa7\x09\ \x4c\x9d\x3f\x89\x59\x5c\x4a\x1b\xd3\x59\x51\x07\x83\x7b\x53\x47\ \x1d\xcd\xf1\x80\x33\x1b\x3a\x95\xaf\x68\xd4\x8f\x5d\x46\x79\xb7\ \xd6\x93\xea\xf6\x9b\xb6\xce\xb4\x9c\x1c\x36\xc5\xb6\x6d\x27\xe8\ \x63\x62\x81\xca\x62\xc0\xe1\x60\x56\xf1\xdc\x34\x50\xbb\xf3\x04\ \x6f\xd1\x09\x14\x6e\x3d\x3b\x52\x13\xae\x11\xc8\x64\x3d\x27\x01\ \x00\x94\xa2\xcd\x81\x03\x51\xb5\x8b\xb1\x3c\xd9\x5e\xcd\xe1\x29\ \x89\x17\xfd\x10\x1c\xb8\x3c\xfd\xe6\x55\xe2\xc0\x7a\x7b\x24\xed\ \x72\xc0\xe4\x64\x23\x31\x9f\x64\x0d\xd1\xc3\x48\xae\xec\x3a\x57\ \x43\xf0\x20\xb0\x51\x02\x5a\x9b\x22\x78\x5a\x12\x4e\x4c\x67\x44\ \x62\xbf\xc6\xce\x27\xff\xd0\xca\x47\xaf\xfe\x37\x14\x4c\x9c\x85\ \x64\x80\x35\x1f\xc7\x81\x6c\x59\x5a\xc0\x40\xa0\xf6\x26\x4e\x63\ \x40\xd0\x2e\x1b\xf6\xec\x08\x42\x7d\x17\x34\x8d\x70\x8e\x40\xfc\ \x80\x2e\x5b\x25\x6a\x0f\x77\x17\x2d\x24\x94\x31\x7e\x5f\x21\x93\ \xc6\x4a\x56\xc7\xb4\x68\xdc\xca\xa5\x44\xc1\x06\xdd\xc7\x4d\x97\ \x16\x1b\x8b\x54\xf3\xe8\x3c\x07\x75\xc8\x3f\xf7\xec\x8c\x82\x3c\ \x21\xe2\x44\x0d\x43\x24\x52\x40\x20\xc2\x1d\xe7\xa9\x9c\x3c\x86\ \x46\xfe\xef\x12\xe9\x25\x8d\x55\x48\x75\x38\x5c\x7e\x3b\xb9\x31\ \x6f\x4b\xa3\xda\x2f\xee\x24\xca\x35\x8f\xe2\x0b\x7c\x8e\x39\x83\ \x90\xc5\x91\x39\x90\x8d\x02\x4f\xc0\x4c\x46\xc6\xdc\x17\x19\xb4\ \x4a\x5d\xc0\xe3\xa3\x0e\x35\x62\xde\x80\x07\xf2\x96\x56\x9b\x8f\ \x15\xde\xd2\xcc\xae\x46\x67\xb4\xc0\xf8\x00\x45\x24\xfc\x05\xc5\ \xa0\xc0\xbe\x0e\x75\xde\x3f\x0e\x86\x8b\x38\xd8\x40\x9a\xbe\xf6\ \xfb\xcb\x42\xa1\x77\x04\x21\xde\xf9\xef\xc2\x2f\x39\x24\xd5\x0a\ \x32\x31\x2c\xc0\x14\x74\x1f\x60\x5e\x31\x05\xd8\xb9\x38\x3d\x1c\ \x18\x90\xc2\xee\x27\x8b\xcc\x46\x81\x4c\x48\x46\xba\xb6\xcd\xe1\ \xdb\x87\x49\x6e\xba\x3b\x95\x11\xa6\x32\x99\x99\x30\xf0\x68\x87\ \x1a\x31\xf3\xae\x7d\x3f\x2d\x76\x46\x21\x6d\xfa\x9f\xcb\x9b\xac\ \x50\x43\x22\x03\x26\xf7\xee\xa0\x1d\xd4\x9b\xe8\xf0\x3f\x70\x57\ \x98\x56\xd8\x81\x39\xc6\x46\x7a\x6f\x95\x64\xa9\xda\xdc\x4d\xa2\ \x90\x73\x21\xc4\xb0\x35\x03\x6f\x18\xaf\xf9\xe8\x9e\x8a\xb5\xb5\ \x8f\x50\xf9\x7d\xbf\x47\xe5\x29\x8b\x24\x01\x6b\x49\x25\xf1\xd2\ \x57\x37\x5e\x8a\xb0\xeb\x96\x03\xd6\x2a\x6d\xbc\xb0\x27\x26\x11\ \x1b\x32\x6e\x50\x50\x31\x31\xa4\x46\xe2\x7e\xd4\x18\xb2\x2c\x0c\ \x84\xa0\x6d\xc7\x7c\x90\x48\x96\x3d\x6e\x4c\x50\x85\x74\xa4\xa7\ \xa4\x50\x68\xf7\x65\x6a\x2f\xdf\xe0\x86\x61\x00\xed\x95\xbf\x21\ \x66\x05\xda\x0d\x16\xcf\xff\xd2\x14\x30\x6e\x31\x52\x9a\x1c\x1c\ \x7a\x68\x4c\x0f\xe8\x7f\x8c\x90\x64\x7b\xa5\xed\x3a\x3a\xdb\xdd\ \xb3\xdd\x79\xb2\x18\x22\x25\x84\xff\x1d\x82\x79\x3d\x38\x16\x8c\ \x45\x91\xd1\xae\x43\x73\xd4\xf3\x66\x96\x0b\x08\x72\xe9\x7b\x65\ \x15\x8f\x7b\x03\xa9\xd6\x90\x72\xbc\x33\xf3\x37\xda\x8c\x47\x98\ \x3d\xa1\x3b\xc0\x78\x25\x2f\x1b\x03\x44\x13\xb2\xe9\x56\x95\x86\ \xf8\x01\x8d\x0e\xbf\xd8\x13\xe3\xb6\x3f\x13\xce\x6e\x96\xbc\x2d\ \xb8\x74\x4c\xa5\x34\xe3\x6d\x58\xfa\x66\x44\xad\xd4\x99\x0d\x46\ \x34\x8c\x32\x53\xc8\xf2\x6c\xf2\x72\xb3\x17\xde\x61\x40\x87\x48\ \x24\xc7\x67\xb7\xa3\x9f\x15\xb3\x55\x7c\x9a\x8f\x03\x94\x4d\xdc\ \x43\x30\x4f\xc9\x70\xf1\xdd\x95\x55\x2d\x6c\x2b\xcb\xa8\x9a\xe2\ \xdf\x05\xd9\x25\x53\x9f\x0b\x19\x0c\x9d\x83\x07\x7a\xe1\x9d\xc7\ \x7c\x42\x27\x4d\xb2\x59\x76\x30\xc5\x93\x4a\x2e\xe5\x1e\xd6\xfa\ \x9c\xdb\x09\x25\xaa\x23\x96\xac\xe1\x41\x6b\x9b\x87\x16\xdd\xa5\ \xef\xb1\xb0\x16\xf8\x10\x29\x31\x76\xd2\xdd\xc1\x4c\xec\x7b\xb6\ \xc5\xde\x0f\x09\x07\x29\x0a\x47\x38\x95\xd5\x27\x40\x58\xf7\x85\ \xd9\x51\xd4\x22\x13\x44\x60\x22\x6d\xc5\x0d\xf8\xbe\x0b\xe4\x7d\ \x6c\x28\xf9\x88\xcf\xd1\xa9\x5d\x3e\x6a\x2d\xae\xb6\xe7\xd0\x80\ \xd5\xf8\x7a\xf6\xd2\x98\xbf\x9b\xd4\xd9\x00\x90\x8b\x97\xd4\xda\ \x30\xd8\x71\xb3\xd3\x5e\x78\x76\x4b\xe4\x3c\xe8\x01\x1e\xc2\xbb\ \x44\xfc\xbf\x8c\x93\xa4\xcb\x59\x67\x13\x6f\xdc\x2f\x46\xf9\xd3\ \x50\x5f\xc2\x97\x30\x5a\xdf\xda\x4a\x19\x32\xd6\x37\xb9\x0a\x42\ \x46\xd6\x09\xee\x2d\x7d\xd0\xe2\x9e\x11\xc6\xab\x7a\x75\x37\x9c\ \x27\xc1\xfa\x35\xf6\x3a\xed\x7f\x63\x18\x05\xb9\x01\x8f\xed\x5a\ \xcd\x5a\x61\x5e\x75\x5f\x03\x21\x2c\x4b\x09\xc4\x8d\xaa\x38\x10\ \x20\x39\xdd\x4f\x32\xd5\x62\x16\x3c\x97\xf4\x90\x9d\x38\x61\xa7\ \x95\x49\x23\x20\x8e\x14\x73\xe1\x00\xc4\xea\x94\x74\xf1\xd0\xcf\ \x88\xa2\xa5\x69\xde\x36\xe1\xc6\xd9\xb9\x16\xda\x26\x85\x28\xf9\ \x8a\x50\x28\x54\xe1\x0b\xd1\xf8\x7b\xca\xc9\xb1\xc7\x37\x44\x59\ \x93\xb8\x96\xbc\x3f\x43\x70\xf8\x94\xae\xb0\x6d\x59\xf2\x1b\x14\ \x03\x77\x3a\xb7\xab\x92\x84\xc0\x48\xcf\x3b\xc6\x23\x1c\x87\x6d\ \x55\x4e\xa7\x90\x86\x8f\xb8\x1d\x75\xc9\x45\x5a\xeb\x35\x8e\x98\ \x64\x48\x16\x59\x01\x3b\x20\x2d\xd2\xa7\x9b\x13\x79\xdc\x77\x1d\ \x28\x41\xcf\xe2\x10\x5e\x5b\x0c\x7f\x97\x57\xaf\x2b\x07\x1a\x71\ \xff\x7e\x47\xa0\xc2\xb6\x37\xba\xdd\x9d\x9c\x73\xc8\x96\xff\x7a\ \xe3\x49\x2e\x2d\xa5\x56\x53\xa8\x05\x10\x26\xa3\xd2\xcc\xe0\x46\ \x77\x06\x4e\xfc\x9f\xf7\x1d\xeb\xa4\x3c\x5f\x22\x9b\x54\xdb\x79\ \x87\xfc\x43\x90\x43\x52\x99\x9d\xd6\x52\x62\xef\x1f\x16\xf0\xd2\ \x89\xe3\xed\xc7\xb2\x11\xeb\x15\xd6\x49\x7a\xe1\xef\xff\x2f\x4b\ \xfd\x2e\xa2\xd9\xe4\xd3\x64\x11\xf3\x71\x4c\x90\x6f\xe3\x6f\x03\ \x1d\x5b\xec\x75\x90\xa2\xc8\x6b\xb4\x48\xcd\x48\xeb\x20\x8d\x19\ \xa6\xed\x08\x7a\x7e\x0e\x4d\x68\xda\x79\x7f\xa6\x4f\xae\x67\x14\ \xbb\x18\xfb\xec\x00\xd6\x16\x12\x07\x91\xea\xe2\x7c\x80\x87\x9f\ \xe8\xb5\x93\x4c\xb8\x1c\xac\x07\x25\x82\xcb\x46\x08\x1c\xc5\xc5\ \x9f\xc9\xa4\x38\x92\xbd\xe1\x63\xfd\xb2\x5c\x22\xc3\x09\xea\xd7\ \x8e\xbf\x05\x91\x13\x02\xc8\xb2\xea\x70\x4a\x23\x73\xf6\xc1\x14\ \xcb\xea\x3d\xe5\x19\x75\xb2\x0d\x84\x1d\x89\x6f\xbd\xe5\xb0\x66\ \xab\x47\x18\x40\xc5\x18\xf9\x7f\x9a\xb2\x5b\xdf\x3c\xc4\x05\x76\ \x2a\x54\xdd\x1d\xea\xc4\xcb\x3b\xdf\x7c\xc9\x66\x16\xc9\x45\x7b\ \x30\x0c\x59\xf0\xb7\x6d\xce\x44\x95\xfa\x83\x31\x2f\xa8\x7a\xee\ \xbc\xf9\xab\xae\xdd\xac\x0b\x1f\xea\xbc\xd6\x01\xde\x61\x3f\x0b\ \x5a\x8e\xcc\xce\xa0\x43\x4a\xb9\xc2\x73\x7d\x5c\x8b\x5c\xf8\x3d\ \x67\x34\xeb\xe4\x3f\xbe\xba\x69\x49\xa9\x35\x0f\x38\xfe\x5c\x7a\ \x31\x2e\xaa\x70\x33\x85\x09\xfb\xe6\x16\x5e\xb5\x73\x53\xb3\xf1\ \xe3\x7d\x52\x42\x33\x37\x13\x96\x25\x71\x62\x01\x96\xe5\x5f\x81\ \x08\x21\xdb\xb2\x59\xbf\x0e\xa5\x78\x39\x6e\x89\xef\xe0\xc2\x55\ \xd5\x5d\xfb\xe6\x2d\x04\x6c\x30\x92\x7c\xdf\x29\x07\x60\xe4\xde\ \x02\x75\x8f\x85\xa6\x98\xb3\xcc\x57\x9a\x3e\xc6\xb3\xa7\x20\xbf\ \x7b\xc0\xa0\xc4\x6c\x29\x3d\xe2\xf7\x13\x6b\x24\x5b\xd4\x92\xf7\ \x2f\x54\x94\xb8\x2f\xe7\xf0\x53\x41\x2b\x37\xc6\x96\x1d\xba\x03\ \x58\x4e\x99\x3c\x64\x29\xe2\xf2\x3e\xca\xd1\x55\x21\x98\x54\x01\ \x8b\xc9\x4d\x22\x54\xdb\x2b\x71\x4c\x98\xcb\x1e\x7e\x51\x85\x09\ \x19\x4b\x90\x05\x5d\x39\x53\x5c\x50\xdc\x32\x3a\x03\x5e\x84\x0e\ \x6c\x15\xf0\x14\x7c\xbc\x27\x29\x5e\x29\x20\x73\xf0\x9d\xa5\xf5\ \x61\xb0\x31\x82\x1b\x84\x99\x30\xad\xa9\x31\xf0\x32\x0c\x2a\x00\ \xbb\x05\x8a\xcc\x7a\xeb\x2c\x09\x9b\x36\x75\x4d\x24\x99\x43\xaa\ \x6d\x3c\x75\xb2\xaa\xd0\xca\xad\xd1\x9c\xc3\x46\xce\x6b\x31\x87\ \x1a\xa7\x26\x95\x26\x21\xa9\xec\x90\xf3\x5a\xfc\x5d\xfc\x0a\x48\ \xc1\x35\x97\xf9\x7f\x4b\x73\xaf\x83\xb0\x22\x90\x07\xdc\x06\xc2\ \x9c\x74\x53\x35\x66\x05\x29\xea\xc7\x1f\xb3\x0e\xe4\x8b\x11\x8e\ \xbd\x36\x2d\xca\x75\x5e\x71\xc5\x11\xf9\xa2\xe3\x6b\x2a\x9c\xe6\ \xad\x05\x30\x15\x59\x7c\x9f\x38\x04\x5a\xae\x1e\xe3\x77\xe7\xb4\ \xcc\xb6\x61\x87\x99\xc6\x70\x48\x3c\xe9\x0a\xfa\xde\x34\x09\x4b\ \xb4\xe5\xf4\xdb\x77\xa0\x0c\x99\xb0\x03\xef\x3f\x41\xb7\x87\x7f\ \x8e\x94\xea\x32\x8c\xc0\xea\x07\xf9\xe6\x2b\x4e\xe3\xc5\x08\x67\ \x6a\x7e\x72\x0f\x4d\x0d\x70\xc9\xc6\x46\x0e\x2a\x4b\x89\x96\x81\ \x46\xcc\x34\x09\xf3\x91\x24\xbc\xfd\xe0\x6f\xa5\x30\x65\x1a\xe4\ \x3b\x83\x18\xa5\x59\xc1\x53\x1e\xc0\x56\x25\x93\x70\x74\x38\x8c\ \x14\x95\x6e\xd1\xb4\x6b\xae\xb4\xb2\x71\x88\xb7\xb4\x0e\x4c\x88\ \x4d\x22\xae\x66\xbb\x6c\x90\xc7\x58\x86\xeb\x43\x53\xa9\x0b\x03\ \x81\x80\xa7\x97\x16\x3e\xce\xf3\xbe\x7a\x27\x48\x1c\x2e\x57\x6e\ \xe0\x55\x50\xd8\xfe\x8b\xcb\xda\x54\x54\x54\xa0\xfc\x16\x78\x91\ \xcb\xeb\x60\x8b\x9d\x29\xcb\xb2\x1b\x52\x15\x28\x58\x59\x3d\x97\ \xe2\x98\xd0\xb9\x71\x92\x32\x58\x47\x4a\xef\x72\x4d\x25\x75\x95\ \xb7\x59\x5f\x0a\xc0\xc1\x01\xc1\x4f\x90\x7a\xd1\xc4\x9d\x35\x66\ \xfb\xaf\x70\x97\xb6\x3a\xaa\x5d\x4a\x4f\xf4\x47\x96\x44\xb7\x41\ \x01\x37\x36\x81\xe0\xa2\xee\xaa\x85\xab\xd6\x5c\x94\xfc\x50\x6f\ \x33\xf6\xca\x42\x6c\x6b\x17\xc9\xb0\x15\xd0\x9d\x77\xa6\x0e\x69\ \xe6\xf5\x2c\xef\x4d\xab\x22\xc2\x8f\x6f\x70\x1a\x2f\x1f\x7b\xa2\ \x51\x2d\xd8\x90\x90\xed\xd0\x35\x76\x19\x95\x3d\xed\xe0\x29\xc9\ \xfc\xa5\xee\x0f\x51\x84\xf2\x9f\x7c\x7b\x73\x52\x1a\x49\xce\x3b\ \x49\xc7\xdf\xfd\x53\x56\x0e\x8d\x29\x23\x71\x34\xf3\x12\xee\x30\ \x87\x94\x1a\xc7\x52\x0a\xb0\x7a\xf4\x8e\x0f\xbb\x50\x27\x16\x04\ \x82\x36\x20\x97\x03\x7d\xbc\x42\x1b\x3a\x04\x4c\xc8\x91\x34\x18\ \xfb\x55\xbc\xe3\x0d\xf9\x77\x49\xc5\x28\x28\xed\x84\x09\x32\xab\ \x5c\xd7\x7d\x76\x42\x46\x0c\x8c\xdd\x8a\x47\x2f\x12\x6e\x1c\xca\ \x47\x4f\xc5\xe7\xcd\xee\x84\xdd\x85\xae\xcc\xd7\xbf\x80\xbe\x1c\ \x38\x2e\xe7\x1c\x37\x0e\x0f\x78\x9d\xc1\xc9\xbc\x37\x37\x23\x80\ \xcc\xb2\x27\x5a\x1d\x5d\xb2\xaa\x6e\x65\xa6\xc3\x48\x6a\xc0\x2e\ \xc3\x45\x50\xdb\xba\x3e\x74\xf2\xea\xe7\x6d\x54\x4e\x2a\x3e\xf1\ \x09\x4e\x5b\x35\x0a\xf0\x12\xde\x6e\xf8\xcc\x7e\x41\xd3\x50\x9e\ \x8f\xe6\x6a\x64\xce\xf4\xbd\x1a\xaf\x5e\x81\x99\x0f\x70\x22\xb7\ \xdd\xda\xf4\x19\xb5\xd8\xc5\xbd\x8f\x8c\xa8\xce\x67\x8d\x81\x46\ \x6e\x44\x68\x2c\xda\x34\x8e\xf7\x8c\x29\x10\xf1\xd9\x95\x6a\xca\ \x47\xd4\x6f\x53\xac\xe1\x5b\xf4\xbe\x4f\x33\x34\xf2\x07\xe0\x37\ \xc3\xf4\x36\x49\xc5\x24\xc3\xa8\x76\x7e\x22\xb7\xda\x25\x04\x7e\ \xd1\xc2\x9a\x8d\xac\xf0\xee\xcb\x8e\x49\xee\xcd\x77\xf2\x61\x58\ \x13\x75\x7a\x67\xa2\x21\x87\xc2\x66\x33\x38\xfa\x31\x9e\x78\x8d\ \xee\x76\xf9\x20\xdb\x54\x92\xeb\x69\x89\xf0\x2f\x78\x22\x78\x48\ \xc9\x50\x7d\x91\x00\x53\x0a\x1b\x98\x71\x2f\xa7\x1f\x1e\xcd\x19\ \x7c\x2b\x69\xb2\x85\x78\x66\x38\xc6\x44\x0c\xdd\xb6\x25\x6a\xec\ \x50\xca\x23\x10\xa4\x59\xc4\xec\xc0\xc2\x0f\x79\x4f\x2c\x86\xe3\ \x0a\x08\x49\x52\x2d\xb7\xb4\xe9\xd8\x82\x5a\x91\x43\x0d\x01\xc4\ \xc8\xe6\x1c\xb4\x34\xb5\xe4\x1d\x00\xab\x1d\x33\xd9\x7f\xbb\xe6\ \x0e\xcc\x98\x19\x12\xa2\x85\xdd\x70\x2b\xad\x63\xae\xf5\x66\x71\ \x8b\x7e\x69\xee\x2c\xd0\x43\x8e\xfb\x62\x7d\xc6\x76\x01\x7e\x58\ \xb6\x30\x5f\x0a\x2c\xb2\x1b\x26\x00\x72\x46\x23\x56\x7d\x57\xc9\ \x7b\x82\x49\x90\x84\x39\xbc\x88\x7d\xe7\x23\xf3\xc2\x06\xa9\x56\ \x08\xe5\xef\x4b\x44\x92\xd4\xf1\xbe\x8e\x2a\x84\x3b\x91\x56\x0e\ \x79\x45\x88\xec\xd0\x4c\x76\xb5\x3f\xe8\x2d\x7a\x93\x19\xa3\xfc\ \x5e\x9a\x5e\x3c\x95\xe5\xa2\x8b\x85\x1c\x7e\xf0\x6b\x12\xc2\x36\ \x4d\xdf\x27\x2f\xe8\x78\x72\x5b\x62\xec\xa0\x78\x90\xea\x8e\xfa\ \xa9\xfe\xb4\x3d\xca\x50\xdf\x51\xe6\x77\xad\x29\x9d\x04\x4f\x72\ \xf6\x25\x73\x04\x64\xf5\xa1\xc8\xaf\x36\x27\xe8\x6d\xa2\x37\x5a\ \xcf\xac\x5d\x7a\x34\xf2\x76\xfa\x83\xd5\x73\x8b\x9b\xdd\x3b\x66\ \x04\x55\x25\xc4\xc4\x6b\x2c\x01\x85\xf0\xbf\x94\x2f\x92\x0c\x27\ \xd1\x1f\xc1\x02\xd1\x87\xc5\x9a\xc6\x8a\xfd\xaf\x29\x7f\x83\xfd\ \x9f\xc2\x1a\x01\xfc\x9b\x96\x6c\x3f\x27\x8e\x03\x46\x79\xf0\x20\ \x96\xbb\x09\x21\x7f\x13\x5b\xfa\x32\x48\x3b\x33\x22\xae\xb0\x77\ \x93\x08\x77\xae\x9f\x93\x25\x9c\x17\x46\x6f\x03\x5a\x8d\x61\x17\ \xcb\x1c\xb7\xa6\xe6\x75\xe7\x45\xe0\x5e\x5d\xf9\xa8\x22\x53\x86\ \x09\xf5\x38\xdd\xc0\xa2\x48\x8c\x7c\x46\x63\x52\xc4\x30\xfd\x9f\ \xc7\xdd\x05\xcb\xeb\x50\xb6\x8a\x9f\xf4\xe6\x1a\x55\xa4\x2a\x9f\ \x02\xe4\x77\xc1\x5d\xe1\xe5\xc4\xf5\xc5\x95\x47\x9a\x45\x13\x5a\ \xa4\xcb\x07\xb3\x33\x81\xce\xe1\xc1\xe6\xdf\x26\xb7\x67\x15\xf6\ \xed\x50\xb2\x6f\x9b\x14\x6c\x70\x41\x31\x8c\x09\xc3\xc3\x99\x1e\ \x17\x93\xb3\xe2\xd4\x8c\xd0\x32\x25\x8e\x0b\xf1\x2e\xe3\x78\x4a\ \x54\x25\xbf\xcf\x3d\x97\x48\x39\xc9\xf0\xf1\x0b\x6c\x44\xbe\x72\ \x81\x36\x6f\xe9\xa6\xc8\x9e\x16\x84\x89\xf6\xfe\x41\xce\xd1\x6b\ \xa6\x65\xf5\x08\x7c\xb2\xe9\x01\x53\x4f\x39\xa6\xdc\xad\xf9\xc1\ \xa2\x93\x04\x52\xd8\x8a\x65\xc4\x54\x74\x13\x78\xd7\x13\xd8\x33\ \xff\xc1\x74\x4d\x6d\x5e\x9a\x32\xdb\x58\x40\x1f\xa0\x07\x6b\x09\ \x85\x49\xd9\x81\x08\xd4\xf2\xac\x7c\x06\x12\xab\x25\x43\x9c\x7e\ \x04\x2e\x7a\xb9\xd4\x56\xae\xe0\x7c\x8c\x33\x14\x51\x11\xf3\xd4\ \xc6\xc2\xf2\x3d\x7f\xbe\xf7\x6c\x4c\x7a\x0d\xe7\xbb\xfe\x37\x13\ \x90\x1e\x23\x87\x70\x44\x69\x2b\xe0\xa6\xa9\xe7\xdd\x1e\x9c\xfe\ \x61\x6a\x99\x02\x6e\x13\x48\xf6\x5a\xdf\xf9\x87\x6a\x86\xb3\x40\ \x49\x39\x5d\x7f\x4a\xb4\x7e\xc3\xa0\xde\x85\x00\x32\x01\xe0\x1c\ \x7e\x33\x9e\x95\x57\x00\x45\x6e\xdd\x1e\x41\x31\xf7\xb9\x64\xef\ \xd6\x6d\xaa\xc6\x6c\x26\x89\x05\x7e\x41\x89\xfb\x91\x62\xe9\xff\ \x39\xd6\x58\x54\x44\x6d\x1a\x8d\x97\xc8\x77\x95\x19\x0b\xcc\x86\ \x25\xe5\xc5\xe1\x71\x4a\x6d\xd4\xdd\xb7\xf1\xec\x6e\x38\x51\xdb\ \xb3\x01\x32\xb9\x75\x50\x12\x24\xa7\x81\x6b\x9a\x68\xbd\x3b\x0e\ \xf5\x92\x1d\xd1\xf2\xce\xf8\x16\x28\x3a\x4f\x47\x3e\x33\x7e\x2e\ \x4e\xe9\x64\x40\xb4\xb6\x1b\xcd\xfe\x01\xb6\xa7\xd0\x4b\xd5\x2c\ \x45\x72\x72\x98\xb1\xea\x0f\x11\x8e\x84\x29\xae\xc2\x5e\x32\x4d\ \x60\x44\xef\x46\xce\x8a\x13\xc1\x6f\xc8\x0d\x7e\x8b\x44\x54\xe8\ \x9e\x39\x93\xf6\x95\x28\x35\x3f\x2c\x60\x2a\xdf\x95\xf6\xd2\xb4\ \x2b\x34\x36\xf3\xec\xca\x62\xde\xbc\xfc\x50\x0e\x87\x60\x47\x70\ \x6d\x47\x1e\x90\xf3\x09\xb2\x12\xd8\xad\x5c\x82\x5f\x01\x2e\x3e\ \xf5\x65\x11\x70\x70\x9c\x0e\xe1\x94\xce\x43\x3c\x81\xe3\x15\xb2\ \x9d\xb8\xa5\xcd\xdb\xc0\x1f\x6b\x0c\x81\x7f\xac\xc3\x95\x30\x39\ \x99\x65\xb4\x55\xcd\xed\x46\xe0\x55\x28\xb0\x69\x8a\xbc\x2d\xb7\ \x76\x7f\xa6\xc1\xbe\xe9\x68\x20\x88\xb0\x44\x63\x6e\x8e\x13\x69\ \x50\x96\x79\x09\xab\xb2\x7a\xb9\x00\xf7\x43\xf8\x86\x10\xf5\x68\ \x35\x11\x84\xb4\xc0\xeb\x85\x19\x54\x9d\x9a\xa5\x7c\xac\x1f\xb6\ \x23\x04\xab\x68\x90\xff\x21\x00\x69\x8d\xac\xde\x70\x9e\x92\x05\ \x79\x0f\x2b\x31\x32\xd0\xcf\x20\x78\xc4\x48\xc9\xf4\x42\x13\x17\ \xdc\x30\x1e\x15\x8e\x24\x74\xc9\xd6\x51\x5c\x3c\x42\xa5\xd1\xa8\ \x4e\x99\x8b\xdb\x20\x42\x81\x02\xe4\x61\xf8\x14\x26\x73\x92\x11\ \xe8\x53\x85\xd2\x6f\x34\x82\xd2\x62\xbd\xb9\x52\x65\xba\xff\xdf\ \x89\xe1\xda\x29\x61\x34\xa2\xf6\xe0\x34\x10\x16\xf2\x7e\xe0\xd4\ \x41\xc0\xb7\xb2\xe9\xf0\x06\x4a\xad\x21\x96\x3b\xfb\x5d\xc9\x8b\ \x52\x61\x90\x92\x81\x6b\x3e\xe2\xfe\x2e\xf2\x89\xbb\x88\x37\xa0\ \xe8\x59\x8e\xef\x15\x25\xcb\x9a\xe9\x0e\xfc\xd2\x4c\x05\x6f\x73\ \x2e\x9b\x40\x42\x55\xba\xe5\x55\x06\x1d\x92\xd2\xe8\x1d\xd4\xd4\ \x0b\x06\x93\x57\x5f\xb5\x9b\x88\x30\x12\x24\xa8\xc1\xd1\x1c\x95\ \x35\xf8\x06\xc8\x09\x18\xf2\xe7\x9e\xe3\x2d\xcb\xcb\x6a\x05\x06\ \xd2\xd2\x33\xe5\x50\xe1\x00\x01\xe6\x09\xec\xa8\xf4\x46\x28\x00\ \x01\x0d\x06\x5c\x27\xd4\x81\x18\xc4\x9f\xdf\x39\x9c\x83\xbd\x6e\ \x65\x65\x1b\x9b\xbc\x8b\x5b\xb9\x1f\x35\x36\x29\xa9\xb3\x92\x09\ \x6e\x99\x04\x19\xab\x62\xf0\x2a\xc3\xa2\xda\x6e\xd5\x58\xdc\x7f\ \xc6\xdf\x52\x34\xa9\x42\x19\xf5\x5f\x14\xf3\xd9\x30\x58\xf5\xc7\ \xff\x2e\x7b\x03\xfd\x8a\x3b\x5e\x02\x15\xff\x21\xd2\x06\x2b\x00\ \x68\xdd\x4d\x50\x02\xc2\x40\x04\xdb\xf8\xb9\x50\xce\x9e\x1b\x40\ \xd7\xf4\xd9\xf6\x67\x0b\x0d\xa4\x7f\x5a\x50\x9b\x1d\x89\x4a\x1c\ \xe9\xb9\x48\x28\xfc\x4f\x6e\xfb\x3b\x79\x8e\xd8\x97\x4b\xcf\x84\ \x49\x52\x85\xce\xf9\xfc\xff\x4c\x3c\xa1\x72\x8f\xcc\x24\xb2\x4a\ \x07\x5e\x8a\xc7\x64\xcc\x77\x8b\x09\x58\x45\xfd\xbb\x37\x19\xcc\ \x1b\xbd\x4e\x06\xdf\xd2\xe0\x32\xdd\xa8\xcb\xf7\x9c\xca\x8c\x6b\ \xe7\xe0\x63\xc5\xc8\xe6\xb7\x59\x4a\xab\xb1\x1c\x55\xbf\xfe\x49\ \x1f\xbd\x9f\xd5\xc5\x0d\x15\xe3\x85\xa7\xe6\xda\x69\x83\x92\xa7\ \xd4\xa6\xf8\x17\x5c\xcf\x57\x3d\xa5\xb5\x31\x94\x78\x6b\xec\x5f\ \x0b\x7f\x0d\xb7\x78\x14\x2a\x50\x9d\x6b\xe0\x34\xe8\x7a\x6a\x1c\ \x94\xb8\xe5\xcd\xca\x35\x1f\x1f\xf9\xb5\xac\xc8\xa7\x4f\xc9\x8a\ \x88\x75\x0e\xb5\x65\xd0\x16\xda\xfd\xf7\x47\x63\x77\xea\xe6\xea\ \x0f\x53\x35\x6a\xb6\x74\x91\x2b\x09\xba\xff\xdb\x96\x8b\x94\xa4\ \x70\x62\x81\x5a\xf8\xc3\x9a\xf1\xb6\x6c\x83\xc9\xd5\xf6\xaa\x82\ \xae\x71\x26\xaf\x71\x1a\x4c\xde\x18\x89\x96\x9f\x57\xf8\xe7\x36\ \x0a\x14\x94\x2f\x71\x26\x27\x33\xf7\x37\xb9\x0f\x93\xd5\x5f\x0f\ \xea\x00\x99\x6a\x88\xf9\xc4\xf8\xc5\x8a\x3c\x41\xb1\xb6\xab\x3d\ \x9c\xcb\xb9\x20\x3c\xba\x34\x74\xf5\x0b\x5a\xb2\xb4\xab\xfb\x98\ \x61\xc6\x8e\x40\x5e\xb7\xd9\x98\xc9\x91\xe6\x74\xf3\xef\x62\x34\ \xf6\x64\x96\x9b\x06\xef\xef\x99\x6c\xdb\x10\x94\x1e\xdc\xf2\xac\ \xed\x2a\x5c\xb5\xb6\x65\xe9\x9b\x86\xe1\x3a\xac\xdd\x07\xd7\x79\ \x1b\xf8\xce\x5d\x02\xdf\xa9\xbd\x09\x3a\xe0\x5c\xad\x57\xe9\x0a\ \x9b\x99\xdf\x02\x76\x75\xe6\xa5\xcb\x1c\x9d\x5e\x8a\x14\x11\xb1\ \x1f\xb8\xc1\xc2\x20\x23\x16\x1e\x0b\x90\x5e\x8e\x4b\xfd\xbe\x7f\ \xb5\x9e\xe1\x72\xcc\xf1\xd1\xef\x7a\x4f\xb9\xf0\x9e\x7b\x3a\xf6\ \x7c\xb6\xc3\xdb\x1a\xe3\x3e\xe7\x55\x36\xf9\x9d\x35\xa9\x06\x46\ \x3d\xce\xb0\x77\x76\x53\xf5\xa5\x24\xb9\x10\x38\x3c\x92\x7e\x20\ \x78\x18\xc4\x7c\xe0\x46\xbf\xb0\x1c\x75\xdc\x14\xf6\x5c\xb5\xf6\ \x60\x6b\x8e\x3d\x3a\x71\xde\x15\x48\xeb\xb0\x4b\x1f\x78\x27\xb4\ \x15\x42\x24\x89\x88\x00\x11\x6d\x15\xc0\x04\x75\x66\x97\x67\x09\ \xf0\xf0\xff\xcd\x09\x47\x88\x1d\x2c\x67\xaf\xc1\xa5\x27\x4e\x73\ \xfb\xd6\x64\xa5\x28\x73\xb2\x80\xd2\xd8\xed\x75\xd6\x17\xc5\x29\ \xeb\x0d\xcc\x22\xa4\x9f\xb1\xc1\x93\xf7\x97\xff\xca\xf3\xaf\x40\ \x99\x1d\x41\x6b\x85\x4f\xd7\x88\x29\x03\x6a\xb9\x30\x7f\x9a\x77\ \xe5\x67\xf7\xd2\xef\x19\xf5\x4b\x7a\x98\x4b\xe7\xfd\x8b\x97\x7f\ \xf9\x32\x35\xfc\x74\xa8\xf0\x7d\x93\xde\x40\xef\x1a\xbb\x42\xed\ \xb6\xa8\xe9\xc9\x11\x72\x1e\x79\x08\x6a\x69\xc6\xe1\x31\x0d\xd1\ \x55\xbf\x62\xc1\x1b\x2d\xf8\x4c\x3b\x8d\x0b\x52\x73\x3c\x3d\x48\ \x11\xa7\x3a\xbf\x22\xc5\x82\xdc\x1e\x58\xf8\x00\xb9\xc4\xcd\x03\ \xd3\xb6\x24\x5e\x62\xd6\x61\x4b\x81\x97\x05\xc0\x07\x64\xea\x36\ \xb2\x4e\x3a\x0c\x68\xa5\xda\xbc\xbc\x66\x05\x2c\x0e\x8e\x90\x58\ \x05\xbc\x4a\x16\x94\x5d\xfd\x10\xfa\xd3\x8d\xce\x27\x8d\x58\x7c\ \x31\xb4\xa1\x4f\xbc\x92\x95\xad\xbd\x08\x17\x0f\x91\xf0\xf7\x1a\ \x76\x28\x3f\x4d\x03\x03\x77\x4b\x79\x0f\x67\x16\x53\x9b\x52\x45\ \xb0\x41\x2e\x16\xc5\x51\xd7\x57\x01\xcb\x37\x85\xb6\x17\xce\x37\ \x65\x84\x47\x18\x94\x44\x55\x87\x0a\x6f\xeb\x8a\xce\x4b\xed\x39\ \x52\x41\x8b\x81\xd2\x98\xeb\x90\x03\xa8\xdc\x64\x0b\xfb\xa8\x3d\ \xe1\xac\x6f\xce\x40\xdb\x6e\xc6\x73\x4b\x63\xa6\xbd\x45\x5d\x8d\ \xb4\xed\xf7\x71\x75\xfb\x7c\x97\x0f\xef\xc2\x54\x3f\x2c\x06\xd8\ \xb0\x5f\x3c\x50\x88\xc1\x78\x5a\x71\x6f\xd3\x9b\x2f\x1d\x26\xcc\ \xde\xae\x57\xd4\x76\x2e\x79\xa7\x9e\xcf\x58\x85\xf8\x91\xd1\xbb\ \xd8\x01\x96\x7f\xf4\x00\xb6\x5e\x22\x00\x00\ " qt_resource_name = b"\ \x00\x06\ \x07\x03\x7d\xc3\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\ \x00\x0a\ \x09\x73\xe0\x47\ \x00\x77\ \x00\x65\x00\x62\x00\x63\x00\x61\x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x22\ \x07\x7c\x17\x07\ \x00\x73\ \x00\x68\x00\x75\x00\x74\x00\x74\x00\x65\x00\x72\x00\x73\x00\x74\x00\x6f\x00\x63\x00\x6b\x00\x5f\x00\x31\x00\x30\x00\x32\x00\x33\ \x00\x32\x00\x34\x00\x36\x00\x39\x00\x33\x00\x31\x00\x5f\x00\x33\x00\x36\x00\x34\x00\x36\x00\x30\x00\x37\x00\x2e\x00\x6a\x00\x70\ \x00\x67\ \x00\x10\ \x0e\xa5\x63\x27\ \x00\x49\ \x00\x6e\x00\x6b\x00\x2d\x00\x50\x00\x65\x00\x6e\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x3a\ \x0f\xb3\xd9\x87\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x70\x00\x68\x00\x6f\x00\x74\x00\x6f\ \x00\x73\x00\x68\x00\x6f\x00\x70\x00\x2d\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2d\ \x00\x67\x00\x72\x00\x69\x00\x64\x00\x2d\x00\x32\x00\x36\x00\x30\x00\x6e\x00\x77\x00\x2d\x00\x31\x00\x30\x00\x32\x00\x33\x00\x36\ \x00\x36\x00\x32\x00\x35\x00\x38\x00\x31\x00\x2e\x00\x6a\x00\x70\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x02\ \x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x12\x65\ \x00\x00\x00\x12\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\xad\x54\ \x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\xb8\x34\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x02\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x12\x65\ \x00\x00\x01\x6c\x2d\xf9\x44\x26\ \x00\x00\x00\x12\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x6c\x39\x98\x92\xec\ \x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\xad\x54\ \x00\x00\x01\x6c\x2d\xf9\x44\x16\ \x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\xb8\x34\ \x00\x00\x01\x6c\x2d\xf9\x44\x28\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 qInitResources()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 20857, 2134, 2438, 198, 2, 198, 2, 15622, 416, 25, 383, 20857, 3082, 5329, 329, 9485, 48, 83, 20, 357, 48, 83, 410, 20, 13, 1157, 13, 17, 8, 198, 2, 198,...
1.241386
186,780
"""Constants for the Logbook Cache integration.""" DOMAIN = "logbook_cache" NAME = "Logbook Cache" CACHE_DAYS = "cache_days" ONLY_CACHE = "only_cache" DEFAULT_CACHE_DAYS = 2 DEFAULT_ONLY_CACHE = False
[ 37811, 34184, 1187, 329, 262, 5972, 2070, 34088, 11812, 526, 15931, 198, 198, 39170, 29833, 796, 366, 6404, 2070, 62, 23870, 1, 198, 20608, 796, 366, 11187, 2070, 34088, 1, 198, 198, 34, 2246, 13909, 62, 26442, 50, 796, 366, 23870, 62...
2.457831
83
#!/usr/bin/python3 # coding: utf-8 # # Project: freesas # https://github.com/kif/freesas # # Copyright (C) 2020 European Synchrotron Radiation Facility, Grenoble, France # # 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. __author__ = "Jérôme Kieffer" __license__ = "MIT" __copyright__ = "2020, ESRF" __date__ = "15/01/2021" import io import os import sys import logging import glob import platform import posixpath from collections import namedtuple, OrderedDict import json import copy import pyFAI from pyFAI.io import Nexus from .sas_argparser import SASParser logging.basicConfig(level=logging.INFO) logger = logging.getLogger("extract_ascii") if sys.version_info[0] < 3: logger.error("This code requires Python 3.4+") NexusJuice = namedtuple("NexusJuice", "filename h5path npt unit q I poni mask energy polarization signal2d error2d buffer concentration") def parse(): """ Parse input and return list of files. :return: list of input files """ description = "Extract the SAXS data from a Nexus files as a 3 column ascii (q, I, err). Metadata are exported in the headers as needed." epilog = """extract_ascii.py allows you to export the data in inverse nm or inverse A with possible intensity scaling. """ parser = SASParser(prog="extract-ascii.py", description=description, epilog=epilog) # Commented option need to be implemented # parser.add_argument("-o", "--output", action='store', help="Output filename, by default the same with .dat extension", default=None, type=str) # parser.add_argument("-u", "--unit", action='store', help="Unit for q: inverse nm or Angstrom?", default="nm", type=str) # parser.add_argument("-n", "--normalize", action='store', help="Re-normalize all intensities with this factor ", default=1.0, type=float) parser.add_file_argument("HDF5 input data") parser.add_argument("-a", "--all", action='store_true', help="extract every individual frame", default=False) return parser.parse_args() def extract_averaged(filename): "return some infomations extracted from a HDF5 file " results = OrderedDict() results["filename"] = filename # Missing: comment normalization with Nexus(filename, "r") as nxsr: entry_grp = nxsr.get_entries()[0] results["h5path"] = entry_grp.name nxdata_grp = nxsr.h5[entry_grp.attrs["default"]] signal = nxdata_grp.attrs["signal"] axis = nxdata_grp.attrs["axes"] results["I"] = nxdata_grp[signal][()] results["q"] = nxdata_grp[axis][()] results["std"] = nxdata_grp["errors"][()] results["unit"] = pyFAI.units.to_unit(axis + "_" + nxdata_grp[axis].attrs["units"]) integration_grp = nxdata_grp.parent results["geometry"] = json.loads(integration_grp["configuration/data"][()]) results["polarization"] = integration_grp["configuration/polarization_factor"][()] instrument_grps = nxsr.get_class(entry_grp, class_type="NXinstrument") if instrument_grps: detector_grp = nxsr.get_class(instrument_grps[0], class_type="NXdetector")[0] results["mask"] = detector_grp["pixel_mask"].attrs["filename"] sample_grp = nxsr.get_class(entry_grp, class_type="NXsample")[0] results["sample"] = posixpath.split(sample_grp.name)[-1] results["buffer"] = sample_grp["buffer"][()] results["storage temperature"] = sample_grp["temperature_env"][()] results["exposure temperature"] = sample_grp["temperature"][()] results["concentration"] = sample_grp["concentration"][()] if "2_correlation_mapping" in entry_grp: results["to_merge"] = entry_grp["2_correlation_mapping/results/to_merge"][()] return results def extract_all(filename): "return some infomations extracted from a HDF5 file for all individual frames" res = [] results = OrderedDict() results["filename"] = filename with Nexus(filename, "r") as nxsr: entry_grp = nxsr.get_entries()[0] results["h5path"] = entry_grp.name nxdata_grp = nxsr.h5[entry_grp.name + "/1_integration/results"] signal = nxdata_grp.attrs["signal"] axis = nxdata_grp.attrs["axes"][1] I = nxdata_grp[signal][()] results["q"] = nxdata_grp[axis][()] std = nxdata_grp["errors"][()] results["unit"] = pyFAI.units.to_unit(axis + "_" + nxdata_grp[axis].attrs["units"]) integration_grp = nxdata_grp.parent results["geometry"] = json.loads(integration_grp["configuration/data"][()]) results["polarization"] = integration_grp["configuration/polarization_factor"][()] instrument_grp = nxsr.get_class(entry_grp, class_type="NXinstrument")[0] detector_grp = nxsr.get_class(instrument_grp, class_type="NXdetector")[0] results["mask"] = detector_grp["pixel_mask"].attrs["filename"] sample_grp = nxsr.get_class(entry_grp, class_type="NXsample")[0] results["sample"] = posixpath.split(sample_grp.name)[-1] results["buffer"] = sample_grp["buffer"][()] if "temperature_env" in sample_grp: results["storage temperature"] = sample_grp["temperature_env"][()] if "temperature" in sample_grp: results["exposure temperature"] = sample_grp["temperature"][()] if "concentration" in sample_grp: results["concentration"] = sample_grp["concentration"][()] # if "2_correlation_mapping" in entry_grp: # results["to_merge"] = entry_grp["2_correlation_mapping/results/to_merge"][()] for i, s in zip(I, std): r = copy.copy(results) r["I"] = i r["std"] = s res.append(r) return res def write_ascii(results, output=None, hdr="#", linesep=os.linesep): """ :param resusts: dict containing some NexusJuice :param output: name of the 3-column ascii file to be written :param hdr: header mark, usually '#' :param linesep: to be able to addapt the end of lines Adam Round explicitelly asked for (email from Date: Tue, 04 Oct 2011 15:22:29 +0200) : Modification from: # BSA buffer # Sample c= 0.0 mg/ml (these two lines are required for current DOS pipeline and can be cleaned up once we use EDNA to get to ab-initio models) # # Sample environment: # Detector = Pilatus 1M # PixelSize_1 = 0.000172 # PixelSize_2 = 6.283185 (I think it could avoid confusion if we give teh actual pixel size as 0.000172 for X and Y and not to give the integrated sizes. Also could there also be a modification for PixelSize_1 as on the diagonal wont it be the hypotenuse (0.000243)? and thus will be on average a bit bigger than 0.000172) # # title = BSA buffer # Frame 7 of 10 # Time per frame (s) = 10 # SampleDistance = 2.43 # WaveLength = 9.31e-11 # Normalization = 0.0004885 # History-1 = saxs_angle +pass -omod n -rsys normal -da 360_deg -odim = 1 /data/id14eh3/inhouse/saxs_pilatus/Adam/EDNAtests/2d/dumdum_008_07.edf/data/id14eh3/inhouse/saxs_pilatus/Adam/EDNAtests/misc/dumdum_008_07.ang # DiodeCurr = 0.0001592934 # MachCurr = 163.3938 # Mask = /data/id14eh3/archive/CALIBRATION/MASK/Pcon_01Jun_msk.edf # SaxsDataVersion = 2.40 # # N 3 # L q*nm I_BSA buffer stddev # # Sample Information: # Storage Temperature (degrees C): 4 # Measurement Temperature (degrees C): 10 # Concentration: 0.0 # Code: BSA s-vector Intensity Error s-vector Intensity Error s-vector Intensity Error s-vector Intensity Error """ hdr = str(hdr) headers = [] if "comments" in results: headers.append(hdr + " " + results["comments"]) else: headers.append(hdr) headers.append(hdr + " Sample c= %s mg/ml" % results.get("concentration", -1)) headers += [hdr, hdr + " Sample environment:"] if "geometry" in results: headers.append(hdr + " Detector = %s" % results["geometry"]["detector"]) headers.append(hdr + " SampleDistance = %s" % results["geometry"]["dist"]) headers.append(hdr + " WaveLength = %s" % results["geometry"]["wavelength"]) headers.append(hdr) if "comments" in results: headers.append(hdr + " title = %s" % results["comment"]) if "to_merge" in results: headers.append(hdr + " Frames merged: " + " ".join([str(i) for i in results["to_merge"]])) if 'normalization' in results: headers.append(hdr + " Normalization = %s" % results["normalization"]) if "mask" in results: headers.append(hdr + " Mask = %s" % results["mask"]) headers.append(hdr) headers.append(hdr + (" N 3" if "std" in results else " N 2")) line = hdr + " L " if "unit" in results: a, b = str(results["unit"]).split("_") line += a + "*" + b.strip("^-1") + " I_" else: line += "q I_" if "comment" in results: line += results["comments"] if "std" in results: line += " stddev" headers.append(line) headers.append(hdr) headers.append(hdr + " Sample Information:") if "storage temperature" in results: headers.append(hdr + " Storage Temperature (degrees C): %s" % results["storage temperature"]) if "exposure temperature" in results: headers.append(hdr + " Measurement Temperature (degrees C): %s" % results["exposure temperature"]) headers.append(hdr + " Concentration: %s" % results.get("concentration", -1)) if "buffer" in results: headers.append(hdr + " Buffer: %s" % results["buffer"]) headers.append(hdr + " Code: %s" % results.get("sample", "")) if output: with open(output, "w") as f: write(headers, f) else: f = io.StringIO() write(headers, f) f.seek(0) return f.read() if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 198, 2, 19617, 25, 3384, 69, 12, 23, 198, 2, 198, 2, 220, 220, 220, 4935, 25, 2030, 274, 292, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3740, 1378, 12567, 13,...
2.561978
4,187
from CosmoHammer_21CMMC.likelihood.ChainConstants import * class ChainContext(object): """ Context holding a dict to store data and information durring the computation of the likelihood """ def __init__(self, parent, params): """ Constructor of the context """ self._data = dict() self.add(PARENT_KEY, parent) self.add(PARAMS_KEY, params) self.add(DATA_KEY, dict()) def add(self, key, value): """ Adds the value to the context using the key :param key: string key to use :param value: object the value to store """ self._data[key] = value def remove(self, key): """ Removes the value from the context :param key: string key to remove from the context """ assert key != None ("The key must not be empty!") del(self._data[key]) def contains(self, key): """ Checks if the key is in the context :param key: string key to check :return: True if the key is in the context """ return key in self._data def get(self, key, default=None): """ Returns the value stored in the context at the key or the default value in the context doesn't contain the key :param key: string key to use :param default: string the default value to use if the key is not available """ if(self.contains(key)): return self._data[key] return default def getParams(self): """ Returns the currently processed parameters :return: The param of this context """ return self.get(PARAMS_KEY) def getParent(self): """ Returns the parent :return: The parent chain of this context """ return self.get(PARENT_KEY) def getData(self): """ Returns the data :return: The data of this context """ return self.get(DATA_KEY)
[ 6738, 10437, 5908, 21281, 647, 62, 2481, 24187, 9655, 13, 2339, 11935, 13, 35491, 34184, 1187, 1330, 1635, 198, 198, 4871, 21853, 21947, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 30532, 4769, 257, 8633, 284, 3650, ...
2.07438
1,089
from django.conf import settings from django.conf.urls.static import static from django.contrib import admin from django.urls import include, path from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView # API URLS urlpatterns = [ # API base url path(settings.ADMIN_URL, admin.site.urls), path("api/", include("config.api_router")), path("api/schema/", SpectacularAPIView.as_view(), name="api-schema"), path( "api/docs/", SpectacularSwaggerView.as_view(url_name="api-schema"), name="api-docs", ), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) if settings.DEBUG: # This allows the error pages to be debugged during development, just visit # these url in browser to see how these error pages look like. if "debug_toolbar" in settings.INSTALLED_APPS: import debug_toolbar urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
[ 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 10414, 13, 6371, 82, 13, 12708, 1330, 9037, 198, 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 2291, 11, 3108, 198, ...
2.736544
353
from sklearn.base import BaseEstimator, TransformerMixin from tomotopy import LDAModel import numpy as np from scipy.sparse import csr_matrix, csc_matrix """ tw=TermWeight.ONE, min_cf=0, min_df=0, rm_top=0, k=1, alpha=0.1, eta=0.01, seed=None, corpus=None, transform=None """
[ 6738, 1341, 35720, 13, 8692, 1330, 7308, 22362, 320, 1352, 11, 3602, 16354, 35608, 259, 198, 6738, 16667, 313, 11081, 1330, 27178, 2390, 375, 417, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 629, 541, 88, 13, 82, 29572, 1330, 269, ...
2.469027
113
content = "my pride was beatufil"
[ 198, 198, 11299, 796, 366, 1820, 11293, 373, 4405, 3046, 346, 1, 198 ]
2.769231
13
from ray.rllib.agents.trainer import Trainer, with_common_config __all__ = ["Trainer", "with_common_config"]
[ 6738, 26842, 13, 81, 297, 571, 13, 49638, 13, 2213, 10613, 1330, 31924, 11, 351, 62, 11321, 62, 11250, 198, 198, 834, 439, 834, 796, 14631, 2898, 10613, 1600, 366, 4480, 62, 11321, 62, 11250, 8973, 198 ]
2.972973
37
from unittest import TestCase from unittest.mock import patch, Mock from sklearn.pipeline import Pipeline from sklearn.preprocessing import OneHotEncoder from .. import generate_preprocessing_steps
[ 6738, 555, 715, 395, 1330, 6208, 20448, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 8529, 11, 44123, 198, 6738, 1341, 35720, 13, 79, 541, 4470, 1330, 37709, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 1881, 21352, 27195, 12342, 19...
3.826923
52
from collections import OrderedDict import mock from paperspace.commands.common import CommandBase output_response = ""
[ 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 198, 11748, 15290, 198, 198, 6738, 9473, 10223, 13, 9503, 1746, 13, 11321, 1330, 9455, 14881, 198, 198, 22915, 62, 26209, 796, 13538, 628 ]
3.875
32
# -*- coding:utf-8 -*- from wencai.core.crawler import Wencai global_cn_col = False global_proxies = None verify = False
[ 2, 532, 9, 12, 19617, 25, 40477, 12, 23, 532, 9, 12, 198, 6738, 266, 12685, 1872, 13, 7295, 13, 66, 39464, 1330, 370, 12685, 1872, 198, 198, 20541, 62, 31522, 62, 4033, 796, 10352, 198, 20541, 62, 1676, 87, 444, 796, 6045, 198, ...
2.490196
51
from turtle import* import turtle setup(600,490) bgcolor("white") title("Curie") estructuraquimica(5) hideturtle() turtle.exitonclick()
[ 6738, 28699, 1330, 9, 201, 198, 11748, 28699, 201, 198, 201, 198, 40406, 7, 8054, 11, 31503, 8, 201, 198, 35904, 8043, 7203, 11186, 4943, 201, 198, 7839, 7203, 26628, 494, 4943, 201, 198, 201, 198, 395, 1356, 5330, 421, 320, 3970, 7...
2.433333
60
from flask import Flask from flask import request, redirect, render_template from fastai.learner import load_learner import pathlib from fastai.vision.core import PILImage import platform application = Flask(__name__) application.config['MAX_CONTENT_LENGTH'] = 12 * 1024 * 1024 MIN_STANDARD = 0.9 # Workaround pytorch issue with models developed on linux being used on Windows if platform.system() == 'Windows': pathlib.PosixPath = pathlib.WindowsPath ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif'} learn_inf = load_learner('flag_export.pkl', cpu=True) @application.route("/upload-image/", methods=["GET", "POST"]) @application.route('/') if __name__ == '__main__': application.run()
[ 6738, 42903, 1330, 46947, 198, 6738, 42903, 1330, 2581, 11, 18941, 11, 8543, 62, 28243, 198, 6738, 3049, 1872, 13, 3238, 1008, 1330, 3440, 62, 3238, 1008, 198, 11748, 3108, 8019, 198, 6738, 3049, 1872, 13, 10178, 13, 7295, 1330, 350, ...
3.091703
229
""" Functions that automate expressive functions of tcrdist3. These use sensible defaults but users should consider flexibile elements of these functions that might better suit their specific data or research questions. """ import os import pandas as pd import numpy as np import warnings from progress.bar import IncrementalBar """ Test Automatic Pgen Esimator Functions """ def auto_pgen(tcrrep): """ Automate a pgen estimation of cdr3s alpha/beta given a tcrrep with a clones_df attribute Parameters ---------- tcrrep : tcrdist.repertoire.TCRrep TCRrep instance with a clone_df Returns ------- tcrrep : tcrdist.repertoire.TCRrep tcrrep : tcrdist.repertoire.TCRrep TCRrep instance with a clone_df """ if tcrrep.organism == "mouse" and 'alpha' in tcrrep.chains: raise ValueError("UNFORTUNATELY OLGA DOES NOT YET SUPPORT MOUSE ALPHA PGEN ESTIMATES") for chain in tcrrep.chains: tcrrep = _auto_pgen(tcrrep=tcrrep, organism = tcrrep.organism, chain = chain, ncpus = tcrrep.cpus) return tcrrep def _auto_pgen(tcrrep = None, organism = 'human', chain = 'beta', ncpus = 2): """ Automate a pgen estimation of cdr3s alpha/beta given a tcrrep with a clones_df attribute Parameters ---------- tcrrep : tcrdist.repertoire.TCRrep TCRrep instance with a clone_df organism : str 'human' or 'mouse' chain : str 'beta' or 'alpha' Returns ------- tcrrep : tcrdist.repertoire.TCRrep """ import tcrdist import parmap import pandas as pd from tcrdist.pgen import OlgaModel assert organism in ['human', 'mouse'] assert chain in ['beta', 'alpha'] assert isinstance(tcrrep, tcrdist.repertoire.TCRrep) assert isinstance(tcrrep.clone_df, pd.DataFrame) cdr3_col = {'alpha': 'cdr3_a_aa', 'beta': 'cdr3_b_aa'}[chain] cdr3s = tcrrep.clone_df[cdr3_col] olga_models = { ('human', 'beta') : OlgaModel(chain_folder = "human_T_beta", recomb_type="VDJ"), ('human', 'alpha') : OlgaModel(chain_folder = "human_T_alpha", recomb_type="VJ"), ('mouse', 'beta') : OlgaModel(chain_folder = "mouse_T_beta", recomb_type="VDJ")} olga_model = olga_models[(organism, chain)] pgens = parmap.map(olga_model.compute_aa_cdr3_pgen, cdr3s, pm_pbar = True, pm_processes = ncpus) tcrrep.clone_df[f"pgen_{cdr3_col}"] = pgens return tcrrep def _default_tcrsampler_human_beta(default_background = None, default_background_if_missing=None): """ Responsible for providing the default human beta sampler 'britanova_human_beta_t_cb.tsv.sampler.tsv' Returns ------- t : tcrsampler.sampler.TCRsampler """ from tcrsampler.sampler import TCRsampler if default_background is None: default_background = 'britanova_human_beta_t_cb.tsv.sampler.tsv' if default_background_if_missing is None: default_background_if_missing ='britanova_human_beta_t_cb.tsv.sampler.tsv.zip' print(default_background) try: t = TCRsampler(default_background=default_background) except OSError: t = TCRsampler() t.download_background_file(default_background_if_missing) t = TCRsampler(default_background=default_background) return t def _default_tcrsampler_human_alpha(default_background = None, default_background_if_missing=None ): """ Responsible for providing the default human alpha sampler 'ruggiero_human_alpha_t.tsv.sampler.tsv' """ from tcrsampler.sampler import TCRsampler if default_background is None: default_background = 'ruggiero_human_alpha_t.tsv.sampler.tsv' if default_background_if_missing is None: default_background_if_missing = 'ruggiero_human_alpha_t.tsv.sampler.tsv.zip' print(default_background) try: t = TCRsampler(default_background=default_background) except OSError: t = TCRsampler() t.download_background_file(default_background_if_missing) t = TCRsampler(default_background=default_background) return t def _default_tcrsampler_mouse_beta(default_background = None, default_background_if_missing=None): """ Responsible for providing the default mouse beta sampler Returns ------- t : tcrsampler.sampler.TCRsampler """ from tcrsampler.sampler import TCRsampler if default_background is None: default_background = 'ruggiero_mouse_beta_t.tsv.sampler.tsv' if default_background_if_missing is None: default_background_if_missing = 'ruggiero_mouse_sampler.zip' print(default_background) try: t = TCRsampler(default_background=default_background) except OSError: t = TCRsampler() t.download_background_file(default_background_if_missing) t = TCRsampler(default_background=default_background) return t def _default_tcrsampler_mouse_alpha(default_background = None, default_background_if_missing=None): """ Responsible for providing the default mouse alpha sampler """ from tcrsampler.sampler import TCRsampler if default_background is None: default_background = 'ruggiero_mouse_alpha_t.tsv.sampler.tsv' if default_background_if_missing is None: default_background_if_missing = 'ruggiero_mouse_sampler.zip' print(default_background) try: t = TCRsampler(default_background=default_background) except OSError: t = TCRsampler() t.download_background_file(default_background_if_missing) t = TCRsampler(default_background=default_background) return t
[ 37811, 198, 24629, 2733, 326, 43511, 38084, 5499, 286, 37096, 4372, 396, 18, 13, 220, 198, 198, 4711, 779, 20586, 26235, 475, 2985, 815, 2074, 220, 198, 32880, 571, 576, 4847, 286, 777, 5499, 326, 1244, 1365, 220, 198, 6063, 511, 2176...
2.708181
1,919
from django.db import models from django.contrib.auth.models import User
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 628, 628 ]
3.454545
22
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'item_list.ui' # # by: pyside-uic 0.2.15 running on PySide 1.2.2 # # WARNING! All changes made in this file will be lost! from tank.platform.qt import QtCore, QtGui from . import resources_rc
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 5178, 7822, 7560, 422, 3555, 334, 72, 2393, 705, 9186, 62, 4868, 13, 9019, 6, 198, 2, 198, 2, 220, 220, 220, 220, 220, 416, 25, 279, 893, 485, 12, 84, 29...
2.715686
102
""" *War* Parameters that govern the evaluation process that compares the current neural network with the best one seen so far (which is used to generate data). """ from dataclasses import dataclass """ # Explanation (two-player games) * The two competing networks are instantiated into two MCTS players of parameter `mcts` and then play `sim.num_games` games. * The evaluated network replaces the current best one if its average collected reward is greater or equal than `update_threshold`. # Explanation (single-player games) * The two competing networks play `sim.num_games` games each. * The evaluated network replaces the current best one if its average collected rewards exceeds the average collected reward of the old one by `update_threshold` at least. """ """ # Remarks + See [`necessary_samples`](@ref) to make an informed choice for `sim.num_games`. # AlphaGo Zero Parameters In the original AlphaGo Zero paper, 400 games are played to evaluate a network and the `update_threshold` parameter is set to a value that corresponds to a 55% win rate. """
[ 37811, 628, 220, 220, 220, 1635, 13195, 9, 628, 220, 40117, 326, 1089, 262, 12660, 1429, 326, 23008, 198, 220, 262, 1459, 17019, 3127, 351, 262, 1266, 530, 1775, 523, 1290, 198, 220, 357, 4758, 318, 973, 284, 7716, 1366, 737, 198, 1...
3.782007
289
import numbers import pytest TESTSET = [ ( {'blob': {'$types': ['string']}}, lambda x: isinstance(x['blob'], str) ), ( {'blob': {'$types': ['number']}}, lambda x: isinstance(x['blob'], numbers.Number) ), ( {'blob': {'$types': ['boolean']}}, lambda x: isinstance(x['blob'], bool) ), ( {'blob': {'$types': ['array']}}, lambda x: isinstance(x['blob'], list) ), ( {'blob': {'$types': ['object']}}, lambda x: isinstance(x['blob'], dict) ), ( {'blob': {'$types': ['object', 'array']}}, lambda x: isinstance(x['blob'], (dict, list)) ), ( {'status': {'$types': ['string']}}, lambda x: False ), ( {'status': {'$types': ['boolean']}}, lambda x: False ), ( {'name': {'$types': ['number']}}, lambda x: False ), ( {'name': {'$types': ['array']}}, lambda x: False ), ( {'name': {'$types': ['object']}}, lambda x: False ), ( {'name': {'$types': []}}, lambda x: False ) ] @pytest.mark.parametrize('spec', TESTSET) ERRORSET = [ {'name': {'$types': ['asdfw']}} ] @pytest.mark.parametrize('spec', ERRORSET)
[ 11748, 3146, 198, 11748, 12972, 9288, 198, 198, 51, 1546, 4694, 2767, 796, 685, 198, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 2436, 672, 10354, 1391, 6, 3, 19199, 10354, 37250, 8841, 20520, 92, 5512, 198,...
1.939063
640
import click from esque.cli.options import State, default_options from .consumergroup import create_consumergroup from .topic import create_topic @click.group(help="Create a new instance of a resource.", no_args_is_help=True) @default_options create.add_command(create_consumergroup) create.add_command(create_topic)
[ 11748, 3904, 198, 198, 6738, 1658, 4188, 13, 44506, 13, 25811, 1330, 1812, 11, 4277, 62, 25811, 198, 198, 6738, 764, 5936, 388, 6422, 3233, 1330, 2251, 62, 5936, 388, 6422, 3233, 198, 6738, 764, 26652, 1330, 2251, 62, 26652, 628, 198,...
3.262626
99
######################################## # Automatically generated, do not edit. ######################################## from pyvisdk.thirdparty import Enum NetBIOSConfigInfoMode = Enum( 'disabled', 'enabled', 'enabledViaDHCP', 'unknown', )
[ 198, 29113, 7804, 198, 2, 17406, 4142, 7560, 11, 466, 407, 4370, 13, 198, 29113, 7804, 628, 198, 6738, 12972, 4703, 34388, 13, 17089, 10608, 1330, 2039, 388, 198, 198, 7934, 3483, 2640, 16934, 12360, 19076, 796, 2039, 388, 7, 198, 220...
3.506667
75
""" """ from sklearn.model_selection import train_test_split from memobuilder import mtrainer as memotrainer from memobuilder.mdb import memomodel
[ 37811, 37227, 201, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 201, 198, 201, 198, 6738, 1066, 672, 3547, 263, 1330, 285, 2213, 10613, 355, 1066, 313, 3201, 263, 201, 198, 6738, 1066, 672, 3547, 263,...
2.803571
56
# -*- coding: utf-8 -*- #!/usr/bin/env python3 # # Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # import ctypes from wamr.ffi import * if __name__ == "__main__": main()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 198, 2, 15069, 357, 34, 8, 13130, 8180, 10501, 13, 220, 1439, 2489, 10395, 13, 198, 2, 30628, 55, 12, 34156,...
2.561224
98
import click from calm.dsl.api import get_api_client from .main import main, get, describe, delete, run, watch, download, create from .utils import Display, FeatureFlagGroup from .apps import ( get_apps, describe_app, run_actions, watch_action, watch_app, delete_app, download_runlog, create_app, ) from calm.dsl.log import get_logging_handle LOG = get_logging_handle(__name__) @create.command("app") @click.option( "--file", "-f", "bp_file", type=click.Path(exists=True, file_okay=True, dir_okay=False, readable=True), required=True, help="Path of Blueprint file to upload", ) @click.option( "--brownfield_deployments", "-b", "brownfield_deployment_file", type=click.Path(exists=True, file_okay=True, dir_okay=False, readable=True), help="Path of Brownfield Deployment file", ) @click.option( "--name", "-n", "app_name", default=None, help="Application name (Optional)" ) @click.option( "--ignore_runtime_variables", "-i", is_flag=True, default=False, help="Ignore runtime variables and use defaults while launching blueprint", ) @click.option( "--launch_params", "-l", type=click.Path(exists=True, file_okay=True, dir_okay=False, readable=True), help="Path to python file for runtime editables", ) def _create_app( app_name, bp_file, brownfield_deployment_file, ignore_runtime_variables, launch_params, ): """Creates an application. \b Command consumes a dsl blueprint file and creates a blueprint from it. If created blueprint is in ACTIVE state, then it got launched to create an application. """ create_app( app_name=app_name, bp_file=bp_file, patch_editables=not ignore_runtime_variables, launch_params=launch_params, brownfield_deployment_file=brownfield_deployment_file, ) @get.command("apps") @click.option("--name", "-n", default=None, help="Search for apps by name") @click.option( "--filter", "filter_by", "-f", default=None, help="Filter apps by this string" ) @click.option("--limit", "-l", default=20, help="Number of results to return") @click.option( "--offset", "-s", default=0, help="Offset results by the specified amount" ) @click.option( "--quiet", "-q", is_flag=True, default=False, help="Show only application names" ) @click.option( "--all-items", "-a", is_flag=True, help="Get all items, including deleted ones" ) @click.option( "--out", "-o", "out", type=click.Choice(["text", "json"]), default="text", help="output format", ) def _get_apps(name, filter_by, limit, offset, quiet, all_items, out): """Get Apps, optionally filtered by a string""" get_apps(name, filter_by, limit, offset, quiet, all_items, out) @describe.command("app") @click.argument("app_name") @click.option( "--out", "-o", "out", type=click.Choice(["text", "json"]), default="text", help="output format", ) def _describe_app(app_name, out): """Describe an app""" describe_app(app_name, out) @run.command("action") @click.argument("action_name") @click.option( "--app", "app_name", "-a", default=None, required=True, help="Watch action run in an app", ) @click.option("--watch/--no-watch", "-w", default=False, help="Watch scrolling output") def _run_actions(app_name, action_name, watch): """App lcm actions""" render_actions = display_with_screen(app_name, action_name, watch) Display.wrapper(render_actions, watch) @watch.command("action_runlog") @click.argument("runlog_uuid") @click.option( "--app", "app_name", "-a", default=None, required=True, help="Watch action run in an app", ) @click.option( "--poll-interval", "poll_interval", "-p", type=int, default=10, show_default=True, help="Give polling interval", ) def _watch_action_runlog(runlog_uuid, app_name, poll_interval): """Watch an app""" Display.wrapper(display_action, watch=True) LOG.info("Action run {} completed for app {}".format(runlog_uuid, app_name)) @watch.command("app") @click.argument("app_name") @click.option( "--poll-interval", "poll_interval", "-p", type=int, default=10, show_default=True, help="Give polling interval", ) def _watch_app(app_name, poll_interval): """Watch an app""" Display.wrapper(display_action, watch=True) LOG.info("Action runs completed for app {}".format(app_name)) @download.command("action_runlog") @click.argument("runlog_uuid") @click.option( "--app", "app_name", "-a", required=True, help="App the action belongs to" ) @click.option("--file", "file_name", "-f", help="How to name the downloaded file") def _download_runlog(runlog_uuid, app_name, file_name): """Download runlogs, given runlog uuid and app name""" download_runlog(runlog_uuid, app_name, file_name) @delete.command("app") @click.argument("app_names", nargs=-1) @click.option("--soft", "-s", is_flag=True, default=False, help="Soft delete app") def _delete_app(app_names, soft): """Deletes an application""" delete_app(app_names, soft) @main.group(cls=FeatureFlagGroup) def start(): """Start entities""" pass @main.group(cls=FeatureFlagGroup) def stop(): """Stop entities""" pass @main.group(cls=FeatureFlagGroup) def restart(): """Restart entities""" pass @start.command("app") @click.argument("app_name") @click.option("--watch/--no-watch", "-w", default=False, help="Watch scrolling output") def start_app(app_name, watch): """Starts an application""" render_actions = display_with_screen(app_name, "start", watch) Display.wrapper(render_actions, watch) @stop.command("app") @click.argument("app_name") @click.option("--watch/--no-watch", "-w", default=False, help="Watch scrolling output") def stop_app(app_name, watch): """Stops an application""" render_actions = display_with_screen(app_name, "stop", watch) Display.wrapper(render_actions, watch) @restart.command("app") @click.argument("app_name") @click.option("--watch/--no-watch", "-w", default=False, help="Watch scrolling output") def restart_app(app_name, watch): """Restarts an application""" render_actions = display_with_screen(app_name, "restart", watch) Display.wrapper(render_actions, watch)
[ 11748, 3904, 198, 198, 6738, 9480, 13, 67, 6649, 13, 15042, 1330, 651, 62, 15042, 62, 16366, 198, 198, 6738, 764, 12417, 1330, 1388, 11, 651, 11, 6901, 11, 12233, 11, 1057, 11, 2342, 11, 4321, 11, 2251, 198, 6738, 764, 26791, 1330, ...
2.660125
2,395
from django.db import models from users.models import CustomUser
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 198, 6738, 2985, 13, 27530, 1330, 8562, 12982, 628 ]
3.941176
17
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Window manager Coordinates in (y, x) to be consistent with curses """ from soundground import metadata, utils import curses import time class Value(object): """ Defines a number used for relative calculations """ def apply(self, target): """ Applies the percentage value to a target """ if type(self) is Value: return int(round((self.value / 100) * target) + self.bias) else: return int(round(self)) class WindowGroup(object): """ A group of windows """ def __init__(self, stdscr): """ Initialization """ self.windows = {} self.stdscr = stdscr self.extra_draws = [] def __getitem__(self, name): """ Returns a window by its name """ return self.windows[name].window def draw(self): """ Refresh all windows """ self.stdscr.clear() for name in self.windows: window = self.windows[name].window window.overwrite(self.stdscr) window.noutrefresh() # Also refresh extra stuff (e.g. SelectableList) for instance in self.extra_draws: instance.draw() curses.doupdate() def resize(self): """ Resizes windows based on their percent values """ curses.endwin() height, width = self.stdscr.getmaxyx() self.stdscr.move(height - 1, 0) for name in self.windows: window = self.windows[name] window.resize(height, width) self.draw() def create_window(self, name, y, x, h, w): """ Creates a new window, accepting either integer or Value """ if name in self.windows: raise Exception("Window exists!") ymax, xmax = (curses.LINES, curses.COLS) self.windows[name] = RelativeWindow(y, x, h, w, self.stdscr) class RelativeWindow(object): """ Windows with relative sizes """ def __init__(self, y, x, h, w, stdscr): """ Initialize sizes """ self.y = y self.x = x self.h = h self.w = w self.window = curses.newwin(1, 1, 0, 0) ymax, xmax = stdscr.getmaxyx() self.resize(ymax, xmax) pass def resize(self, height, width): """ Resize window based on actual size """ new_y = Value.apply(self.y, height) new_x = Value.apply(self.x, width) new_height = Value.apply(self.h, height) new_width = Value.apply(self.w, width) self.window.resize(new_height, new_width) self.window.mvwin(new_y, new_x) class SelectableList(object): """ Implements a scrollable list with selectable items """ def draw(self): """ Redraw list """ self.window.clear() height, width = self.window.getmaxyx() for offset in range(height): index = self.scrollpos + offset if index >= len(self.items): # No more items to draw break item = self.items[index] # Highlight selected item attr = curses.A_NORMAL if self.active and index == self.selected: attr = curses.A_REVERSE padded = item['caption'].ljust(width) try: self.window.addstr(offset, 0, padded, attr) except: pass self.window.refresh() def add(self, caption, selectable=True, value=None): """ Add an item to the list and draws it An item is a map with the following keys: - caption: the text displayed on the list - selectable: if False, the item will skip selection - value: a custom value, could be used to specify a command to be executed when selected - info: some additional info """ if value == None: value = caption self.items.append({ 'caption': caption, 'selectable': selectable, 'value': value, 'info': {} }) self.draw() def remove(self, index): """ Remove an item by its index """ self.items.pop(index) self.draw() def select(self, index, relative=True): """ Highlight an item by its index. If relative, the current selection index will be incremented by the index parameter instead of being set. """ if len(self.items) < 1: return False if relative: self.selected += index else: self.selected = index # Make sure selection doesn't go out of bounds if self.selected < 0: self.selected = 0 elif self.selected >= len(self.items): self.selected = len(self.items) - 1 # Skip unselectable items while not self.items[self.selected]['selectable']: if not relative: return False self.selected += index # Prevent overflow if self.selected < 0 or self.selected >= len(self.items): self.selected -= 2 * index # Update scroll position height, width = self.window.getmaxyx() if self.selected + 1 >= self.scrollpos + height: self.scrollpos = self.selected - height + 1 elif self.selected < self.scrollpos: self.scrollpos = self.selected self.draw() class StatusLine(object): """ Manages the bottom status bar text """ SYM_PLAY = u"\u25B6" SYM_PAUSE = u"\u23F8" def draw(self): """ Redraw status bar """ self.window.erase() # Fetch some parameters playing = self.SYM_PLAY if self.player.is_playing() else self.SYM_PAUSE title = self.player.get_title() t_total = utils.format_millis(self.player.get_length()) t_now = utils.format_millis(self.player.get_position() * self.player.get_length()) vol = self.player.audio_get_volume() # Format params text = "[ {} ] {} [{}/{}] | Vol: {}" formatted = text.format(playing, title, t_now, t_total, vol) # Override status text if present if self.override_text != None and self.override_cycles > 0: formatted = self.override_text self.override_cycles -= 1 # Draw to screen try: self.window.addstr(0, 0, formatted) self.window.refresh() except: pass def notify(self, text): """ Shows text in the status bar until next refresh or manually dismissed """ self.override_text = text self.override_cycles = 30 self.draw() def dismiss(self): """ Dismiss notification text """ self.override_cycles = 0 self.draw() def prompt(self, text, hidden=False): """ Prompts the user for input Keystrokes will be hidden if hidden is True """ import curses.textpad self.prompting = True self.prompt_hidden = hidden self.window.clear() try: self.window.addstr(0, 0, text) self.window.refresh() except: pass box = curses.textpad.Textbox(self.window) box.edit(self._prompt_validator) while self.prompting: # Block until user finishes input time.sleep(0.1) if hidden: return self.prompt_value else: return box.gather()[len(text):].strip() def _prompt_validator(self, char): """ Listens for keystrokes on prompt """ if char == 10: # Line feed (Enter/Return) self.prompting = False return char # If hidden (password mode) if self.prompt_hidden: if char == curses.KEY_BACKSPACE: # Backspace self.prompt_value = self.prompt_value[:-1] return char if char < 32 or char > 126: # Only allow printable characters return 0 self.prompt_value += chr(char) # Replace printable characters with asterisks return ord('*') self.prompt_value = '' return char
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 27703, 4706, 198, 7222, 585, 17540, 287, 357, 88, 11, 2124, 8, 284, 307, 6414, 351, 43878, 198, 37811, 19...
2.103957
4,069
from .interactive_image import InteractiveImage from .graph_inspect_widget import CustomInspectTool from .graph_assets import calc_connected_edges
[ 6738, 764, 3849, 5275, 62, 9060, 1330, 21365, 5159, 198, 6738, 764, 34960, 62, 1040, 806, 62, 42655, 1330, 8562, 818, 4443, 25391, 198, 6738, 764, 34960, 62, 19668, 1330, 42302, 62, 15236, 62, 276, 3212, 198 ]
3.972973
37
#!usr/bin/env python # -*- coding: utf-8 -*- # author: kuangdd # date: 2019/12/15 """ 语音处理工具箱。 生成whl格式安装包:python setup.py bdist_wheel 直接上传pypi:python setup.py sdist upload 用twine上传pypi: 生成安装包:python setup.py bdist_wheel 上传安装包:twine upload dist/phkit-0.3.0-py3-none-any.whl 注意:需要在home目录下建立.pypirc配置文件,文件内容格式: [distutils] index-servers=pypi [pypi] repository = https://upload.pypi.org/legacy/ username: admin password: admin """ from setuptools import setup, find_packages import os import logging logging.basicConfig(level=logging.INFO) logger = logging.getLogger(os.path.splitext(os.path.basename(__file__))[0]) install_requires = ['pypinyin>=0.41.0', 'hanziconv', 'jieba>=0.42.1', 'tqdm', 'inflect', 'unidecode'] requires = install_requires pip_install() phkit_doc = create_readme() from phkit import __version__ as phkit_version setup( name="phkit", version=phkit_version, author="kuangdd", author_email="kuangdd@foxmail.com", description="phoneme toolkit", long_description=phkit_doc, long_description_content_type="text/markdown", url="https://github.com/KuangDD/phkit", packages=find_packages(exclude=['contrib', 'docs', 'tests*']), install_requires=install_requires, # 指定项目最低限度需要运行的依赖项 python_requires='>=3.5', # python的依赖关系 package_data={ 'txt': ['requirements.txt'], 'md': ['**/*.md', '*.md'], }, # 包数据,通常是与软件包实现密切相关的数据 classifiers=[ 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', "Operating System :: OS Independent", ], ) if __name__ == "__main__": print(__file__)
[ 2, 0, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 1772, 25, 479, 84, 648, 1860, 198, 2, 3128, 25, 13130, 14, 1065, 14, 1314, 198, 37811, 198, 46237, 255, 165, 253, ...
1.989119
919
import torch from torch.autograd import Variable import torch.nn as nn import torch.optim as optim import torchvision.transforms as transforms import torchvision.datasets as datasets from convex_adversarial import robust_loss
[ 11748, 28034, 198, 6738, 28034, 13, 2306, 519, 6335, 1330, 35748, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 11748, 28034, 10178, 13, 7645, 23914, 355, 31408, 198, 11748, 28034, 10178, 13, ...
3.864407
59