content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
import importlib from django import forms from s3file.apps import S3FileConfig from s3file.forms import S3FileInputMixin
[ 11748, 1330, 8019, 198, 198, 6738, 42625, 14208, 1330, 5107, 198, 198, 6738, 264, 18, 7753, 13, 18211, 1330, 311, 18, 8979, 16934, 198, 6738, 264, 18, 7753, 13, 23914, 1330, 311, 18, 8979, 20560, 35608, 259, 628 ]
3.263158
38
from django.contrib.sites.models import Site
[ 6738, 42625, 14208, 13, 3642, 822, 13, 49315, 13, 27530, 1330, 14413, 628 ]
3.538462
13
"""These methods are copied from https://github.com/Kyubyong/dc_tts/""" import os import copy import librosa import scipy.io.wavfile import numpy as np from tqdm import tqdm from scipy import signal from hparams import HParams as hp def spectrogram2wav(mag): '''# Generate wave file from linear magnitude spectrogram Args: mag: A numpy array of (T, 1+n_fft//2) Returns: wav: A 1-D numpy array. ''' # transpose mag = mag.T # de-noramlize mag = (np.clip(mag, 0, 1) * hp.max_db) - hp.max_db + hp.ref_db # to amplitude mag = np.power(10.0, mag * 0.05) # wav reconstruction wav = griffin_lim(mag ** hp.power) # de-preemphasis wav = signal.lfilter([1], [1, -hp.preemphasis], wav) # trim wav, _ = librosa.effects.trim(wav) return wav.astype(np.float32) def griffin_lim(spectrogram): '''Applies Griffin-Lim's raw.''' X_best = copy.deepcopy(spectrogram) for i in range(hp.n_iter): X_t = invert_spectrogram(X_best) est = librosa.stft(X_t, hp.n_fft, hp.hop_length, win_length=hp.win_length) phase = est / np.maximum(1e-8, np.abs(est)) X_best = spectrogram * phase X_t = invert_spectrogram(X_best) y = np.real(X_t) return y def invert_spectrogram(spectrogram): '''Applies inverse fft. Args: spectrogram: [1+n_fft//2, t] ''' return librosa.istft(spectrogram, hp.hop_length, win_length=hp.win_length, window="hann") def get_spectrograms(fpath): '''Parse the wave file in `fpath` and Returns normalized melspectrogram and linear spectrogram. Args: fpath: A string. The full path of a sound file. Returns: mel: A 2d array of shape (T, n_mels) and dtype of float32. mag: A 2d array of shape (T, 1+n_fft/2) and dtype of float32. ''' # Loading sound file y, sr = librosa.load(fpath, sr=hp.sr) # Trimming y, _ = librosa.effects.trim(y) # Preemphasis y = np.append(y[0], y[1:] - hp.preemphasis * y[:-1]) # stft linear = librosa.stft(y=y, n_fft=hp.n_fft, hop_length=hp.hop_length, win_length=hp.win_length) # magnitude spectrogram mag = np.abs(linear) # (1+n_fft//2, T) # mel spectrogram mel_basis = librosa.filters.mel(hp.sr, hp.n_fft, hp.n_mels) # (n_mels, 1+n_fft//2) mel = np.dot(mel_basis, mag) # (n_mels, t) # to decibel mel = 20 * np.log10(np.maximum(1e-5, mel)) mag = 20 * np.log10(np.maximum(1e-5, mag)) # normalize mel = np.clip((mel - hp.ref_db + hp.max_db) / hp.max_db, 1e-8, 1) mag = np.clip((mag - hp.ref_db + hp.max_db) / hp.max_db, 1e-8, 1) # Transpose mel = mel.T.astype(np.float32) # (T, n_mels) mag = mag.T.astype(np.float32) # (T, 1+n_fft//2) return mel, mag def save_to_wav(mag, filename): """Generate and save an audio file from the given linear spectrogram using Griffin-Lim.""" wav = spectrogram2wav(mag) scipy.io.wavfile.write(filename, hp.sr, wav) def preprocess(dataset_path, speech_dataset): """Preprocess the given dataset.""" wavs_path = os.path.join(dataset_path, 'wavs') mels_path = os.path.join(dataset_path, 'mels') if not os.path.isdir(mels_path): os.mkdir(mels_path) mags_path = os.path.join(dataset_path, 'mags') if not os.path.isdir(mags_path): os.mkdir(mags_path) for fname in tqdm(speech_dataset.fnames): mel, mag = get_spectrograms(os.path.join(wavs_path, '%s.wav' % fname)) t = mel.shape[0] # Marginal padding for reduction shape sync. num_paddings = hp.reduction_rate - (t % hp.reduction_rate) if t % hp.reduction_rate != 0 else 0 mel = np.pad(mel, [[0, num_paddings], [0, 0]], mode="constant") mag = np.pad(mag, [[0, num_paddings], [0, 0]], mode="constant") # Reduction mel = mel[::hp.reduction_rate, :] np.save(os.path.join(mels_path, '%s.npy' % fname), mel) np.save(os.path.join(mags_path, '%s.npy' % fname), mag)
[ 37811, 4711, 5050, 389, 18984, 422, 3740, 1378, 12567, 13, 785, 14, 30630, 549, 88, 506, 14, 17896, 62, 83, 912, 14, 37811, 198, 198, 11748, 28686, 198, 11748, 4866, 198, 11748, 9195, 4951, 64, 198, 11748, 629, 541, 88, 13, 952, 13, 45137, 7753, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 6738, 629, 541, 88, 1330, 6737, 198, 6738, 289, 37266, 1330, 6574, 283, 4105, 355, 27673, 628, 198, 4299, 5444, 39529, 17, 45137, 7, 19726, 2599, 198, 220, 220, 220, 705, 7061, 2, 2980, 378, 6769, 2393, 422, 14174, 14735, 5444, 39529, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 2153, 25, 317, 299, 32152, 7177, 286, 357, 51, 11, 352, 10, 77, 62, 487, 83, 1003, 17, 8, 198, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 266, 615, 25, 317, 352, 12, 35, 299, 32152, 7177, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 1007, 3455, 198, 220, 220, 220, 2153, 796, 2153, 13, 51, 628, 220, 220, 220, 1303, 390, 12, 13099, 43695, 1096, 198, 220, 220, 220, 2153, 796, 357, 37659, 13, 15036, 7, 19726, 11, 657, 11, 352, 8, 1635, 27673, 13, 9806, 62, 9945, 8, 532, 27673, 13, 9806, 62, 9945, 1343, 27673, 13, 5420, 62, 9945, 628, 220, 220, 220, 1303, 284, 37188, 198, 220, 220, 220, 2153, 796, 45941, 13, 6477, 7, 940, 13, 15, 11, 2153, 1635, 657, 13, 2713, 8, 628, 220, 220, 220, 1303, 266, 615, 25056, 198, 220, 220, 220, 266, 615, 796, 1036, 42022, 62, 2475, 7, 19726, 12429, 27673, 13, 6477, 8, 628, 220, 220, 220, 1303, 390, 12, 3866, 36663, 198, 220, 220, 220, 266, 615, 796, 6737, 13, 1652, 346, 353, 26933, 16, 4357, 685, 16, 11, 532, 24831, 13, 3866, 36663, 4357, 266, 615, 8, 628, 220, 220, 220, 1303, 15797, 198, 220, 220, 220, 266, 615, 11, 4808, 796, 9195, 4951, 64, 13, 34435, 13, 2213, 320, 7, 45137, 8, 628, 220, 220, 220, 1441, 266, 615, 13, 459, 2981, 7, 37659, 13, 22468, 2624, 8, 628, 198, 4299, 1036, 42022, 62, 2475, 7, 4443, 39529, 2599, 198, 220, 220, 220, 705, 7061, 4677, 13508, 16525, 12, 19352, 338, 8246, 2637, 7061, 198, 220, 220, 220, 1395, 62, 13466, 796, 4866, 13, 22089, 30073, 7, 4443, 39529, 8, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 24831, 13, 77, 62, 2676, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 83, 796, 287, 1851, 62, 4443, 39529, 7, 55, 62, 13466, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1556, 796, 9195, 4951, 64, 13, 301, 701, 7, 55, 62, 83, 11, 27673, 13, 77, 62, 487, 83, 11, 27673, 13, 8548, 62, 13664, 11, 1592, 62, 13664, 28, 24831, 13, 5404, 62, 13664, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7108, 796, 1556, 1220, 45941, 13, 47033, 7, 16, 68, 12, 23, 11, 45941, 13, 8937, 7, 395, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 13466, 796, 5444, 39529, 1635, 7108, 198, 220, 220, 220, 1395, 62, 83, 796, 287, 1851, 62, 4443, 39529, 7, 55, 62, 13466, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 5305, 7, 55, 62, 83, 8, 628, 220, 220, 220, 1441, 331, 628, 198, 4299, 287, 1851, 62, 4443, 39529, 7, 4443, 39529, 2599, 198, 220, 220, 220, 705, 7061, 4677, 13508, 34062, 277, 701, 13, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 5444, 39529, 25, 685, 16, 10, 77, 62, 487, 83, 1003, 17, 11, 256, 60, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1441, 9195, 4951, 64, 13, 396, 701, 7, 4443, 39529, 11, 27673, 13, 8548, 62, 13664, 11, 1592, 62, 13664, 28, 24831, 13, 5404, 62, 13664, 11, 4324, 2625, 71, 1236, 4943, 628, 198, 4299, 651, 62, 4443, 3828, 9474, 7, 69, 6978, 2599, 198, 220, 220, 220, 705, 7061, 10044, 325, 262, 6769, 2393, 287, 4600, 69, 6978, 63, 290, 198, 220, 220, 220, 16409, 39279, 285, 1424, 806, 39529, 290, 14174, 5444, 39529, 13, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 277, 6978, 25, 317, 4731, 13, 383, 1336, 3108, 286, 257, 2128, 2393, 13, 198, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 7758, 25, 317, 362, 67, 7177, 286, 5485, 357, 51, 11, 299, 62, 76, 1424, 8, 290, 288, 4906, 286, 12178, 2624, 13, 198, 220, 220, 220, 220, 220, 2153, 25, 317, 362, 67, 7177, 286, 5485, 357, 51, 11, 352, 10, 77, 62, 487, 83, 14, 17, 8, 290, 288, 4906, 286, 12178, 2624, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 12320, 2128, 2393, 198, 220, 220, 220, 331, 11, 19677, 796, 9195, 4951, 64, 13, 2220, 7, 69, 6978, 11, 19677, 28, 24831, 13, 27891, 8, 628, 220, 220, 220, 1303, 833, 27428, 198, 220, 220, 220, 331, 11, 4808, 796, 9195, 4951, 64, 13, 34435, 13, 2213, 320, 7, 88, 8, 628, 220, 220, 220, 1303, 3771, 36663, 198, 220, 220, 220, 331, 796, 45941, 13, 33295, 7, 88, 58, 15, 4357, 331, 58, 16, 47715, 532, 27673, 13, 3866, 36663, 1635, 331, 58, 21912, 16, 12962, 628, 220, 220, 220, 1303, 336, 701, 198, 220, 220, 220, 14174, 796, 9195, 4951, 64, 13, 301, 701, 7, 88, 28, 88, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 487, 83, 28, 24831, 13, 77, 62, 487, 83, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1725, 62, 13664, 28, 24831, 13, 8548, 62, 13664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 62, 13664, 28, 24831, 13, 5404, 62, 13664, 8, 628, 220, 220, 220, 1303, 14735, 5444, 39529, 198, 220, 220, 220, 2153, 796, 45941, 13, 8937, 7, 29127, 8, 220, 1303, 357, 16, 10, 77, 62, 487, 83, 1003, 17, 11, 309, 8, 628, 220, 220, 220, 1303, 7758, 5444, 39529, 198, 220, 220, 220, 7758, 62, 12093, 271, 796, 9195, 4951, 64, 13, 10379, 1010, 13, 17694, 7, 24831, 13, 27891, 11, 27673, 13, 77, 62, 487, 83, 11, 27673, 13, 77, 62, 76, 1424, 8, 220, 1303, 357, 77, 62, 76, 1424, 11, 352, 10, 77, 62, 487, 83, 1003, 17, 8, 198, 220, 220, 220, 7758, 796, 45941, 13, 26518, 7, 17694, 62, 12093, 271, 11, 2153, 8, 220, 1303, 357, 77, 62, 76, 1424, 11, 256, 8, 628, 220, 220, 220, 1303, 284, 875, 43837, 198, 220, 220, 220, 7758, 796, 1160, 1635, 45941, 13, 6404, 940, 7, 37659, 13, 47033, 7, 16, 68, 12, 20, 11, 7758, 4008, 198, 220, 220, 220, 2153, 796, 1160, 1635, 45941, 13, 6404, 940, 7, 37659, 13, 47033, 7, 16, 68, 12, 20, 11, 2153, 4008, 628, 220, 220, 220, 1303, 3487, 1096, 198, 220, 220, 220, 7758, 796, 45941, 13, 15036, 19510, 17694, 532, 27673, 13, 5420, 62, 9945, 1343, 27673, 13, 9806, 62, 9945, 8, 1220, 27673, 13, 9806, 62, 9945, 11, 352, 68, 12, 23, 11, 352, 8, 198, 220, 220, 220, 2153, 796, 45941, 13, 15036, 19510, 19726, 532, 27673, 13, 5420, 62, 9945, 1343, 27673, 13, 9806, 62, 9945, 8, 1220, 27673, 13, 9806, 62, 9945, 11, 352, 68, 12, 23, 11, 352, 8, 628, 220, 220, 220, 1303, 3602, 3455, 198, 220, 220, 220, 7758, 796, 7758, 13, 51, 13, 459, 2981, 7, 37659, 13, 22468, 2624, 8, 220, 1303, 357, 51, 11, 299, 62, 76, 1424, 8, 198, 220, 220, 220, 2153, 796, 2153, 13, 51, 13, 459, 2981, 7, 37659, 13, 22468, 2624, 8, 220, 1303, 357, 51, 11, 352, 10, 77, 62, 487, 83, 1003, 17, 8, 628, 220, 220, 220, 1441, 7758, 11, 2153, 628, 198, 4299, 3613, 62, 1462, 62, 45137, 7, 19726, 11, 29472, 2599, 198, 220, 220, 220, 37227, 8645, 378, 290, 3613, 281, 6597, 2393, 422, 262, 1813, 14174, 5444, 39529, 1262, 16525, 12, 19352, 526, 15931, 198, 220, 220, 220, 266, 615, 796, 5444, 39529, 17, 45137, 7, 19726, 8, 198, 220, 220, 220, 629, 541, 88, 13, 952, 13, 45137, 7753, 13, 13564, 7, 34345, 11, 27673, 13, 27891, 11, 266, 615, 8, 628, 198, 4299, 662, 14681, 7, 19608, 292, 316, 62, 6978, 11, 4046, 62, 19608, 292, 316, 2599, 198, 220, 220, 220, 37227, 6719, 14681, 262, 1813, 27039, 526, 15931, 198, 220, 220, 220, 266, 615, 82, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 19608, 292, 316, 62, 6978, 11, 705, 45137, 82, 11537, 198, 220, 220, 220, 285, 1424, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 19608, 292, 316, 62, 6978, 11, 705, 76, 1424, 11537, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 9409, 343, 7, 76, 1424, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 76, 1424, 62, 6978, 8, 198, 220, 220, 220, 2153, 82, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 19608, 292, 316, 62, 6978, 11, 705, 76, 3775, 11537, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 9409, 343, 7, 76, 3775, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 76, 3775, 62, 6978, 8, 628, 220, 220, 220, 329, 277, 3672, 287, 256, 80, 36020, 7, 45862, 62, 19608, 292, 316, 13, 69, 14933, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 7758, 11, 2153, 796, 651, 62, 4443, 3828, 9474, 7, 418, 13, 6978, 13, 22179, 7, 45137, 82, 62, 6978, 11, 705, 4, 82, 13, 45137, 6, 4064, 277, 3672, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 256, 796, 7758, 13, 43358, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11899, 1292, 24511, 329, 7741, 5485, 17510, 13, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 79, 2860, 654, 796, 27673, 13, 445, 8110, 62, 4873, 532, 357, 83, 4064, 27673, 13, 445, 8110, 62, 4873, 8, 611, 256, 4064, 27673, 13, 445, 8110, 62, 4873, 14512, 657, 2073, 657, 198, 220, 220, 220, 220, 220, 220, 220, 7758, 796, 45941, 13, 15636, 7, 17694, 11, 16410, 15, 11, 997, 62, 79, 2860, 654, 4357, 685, 15, 11, 657, 60, 4357, 4235, 2625, 9979, 415, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2153, 796, 45941, 13, 15636, 7, 19726, 11, 16410, 15, 11, 997, 62, 79, 2860, 654, 4357, 685, 15, 11, 657, 60, 4357, 4235, 2625, 9979, 415, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 33396, 198, 220, 220, 220, 220, 220, 220, 220, 7758, 796, 7758, 58, 3712, 24831, 13, 445, 8110, 62, 4873, 11, 1058, 60, 628, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 21928, 7, 418, 13, 6978, 13, 22179, 7, 76, 1424, 62, 6978, 11, 705, 4, 82, 13, 77, 9078, 6, 4064, 277, 3672, 828, 7758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 21928, 7, 418, 13, 6978, 13, 22179, 7, 76, 3775, 62, 6978, 11, 705, 4, 82, 13, 77, 9078, 6, 4064, 277, 3672, 828, 2153, 8, 198 ]
2.111859
1,931
# Copyright (c) DEV Corporation. All rights reserved. # Licensed under MIT License.
[ 2, 15069, 357, 66, 8, 5550, 53, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 17168, 13789, 13, 198 ]
4
21
""" Django settings for medical project. Generated by 'django-admin startproject' using Django 3.0.8. For more information on this file, see https://docs.djangoproject.com/en/3.0/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/3.0/ref/settings/ """ import os from .dev import * # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = os.environ.get('MEDSTORE_SECRET_KEY', 'g+!ccv7(cweo2*#8^6+%7(x4$na09w-0*+&)18nkt8)=um_+p(') ACCOUNT_FORMS = { "signup": "home.forms.UserSignUp" } ACCOUNT_EMAIL_VERIFICATION = 'none' CRISPY_TEMPLATE_PACK = 'bootstrap4' # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites', 'django_filters', 'django.contrib.sitemaps', # For SiteMap # extensions 'crispy_forms', # apps 'medicines.apps.MedicinesConfig', 'home.apps.HomeConfig', 'cart', 'checkout', 'accounts', # For Authentication 'allauth', 'allauth.account', 'allauth.socialaccount', # To whitelist frontend 'corsheaders', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'corsheaders.middleware.CorsMiddleware', ] ROOT_URLCONF = 'medical.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'medical.wsgi.application' # Database # https://docs.djangoproject.com/en/3.0/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } AUTHENTICATION_BACKENDS = [ 'django.contrib.auth.backends.ModelBackend', 'allauth.account.auth_backends.AuthenticationBackend' ] # Password validation # https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/3.0/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'Asia/Kolkata' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/3.0/howto/static-files/ STATIC_URL = '/static/' SITE_ID = 1 LOGIN_REDIRECT_URL = "/" LOGIN_URL = "/login/" try: from . import stripe_conf STR_PUB = stripe_conf.publishable_key STR_SEC = stripe_conf.secret_key STRIPE_ENDPOINT_KEY = stripe_conf.end_key except (ModuleNotFoundError, ImportError): STR_PUB = '' STR_SEC = '' STRIPE_ENDPOINT_KEY = '' # For SMTP Email EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.gmail.com' EMAIL_PORT = 587 # Include production settings try: # Check if there's a production environment file from .prod import * except (ModuleNotFoundError, ImportError): pass
[ 37811, 198, 35, 73, 14208, 6460, 329, 3315, 1628, 13, 198, 198, 8645, 515, 416, 705, 28241, 14208, 12, 28482, 923, 16302, 6, 1262, 37770, 513, 13, 15, 13, 23, 13, 198, 198, 1890, 517, 1321, 319, 428, 2393, 11, 766, 198, 5450, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 4852, 873, 14, 33692, 14, 198, 198, 1890, 262, 1336, 1351, 286, 6460, 290, 511, 3815, 11, 766, 198, 5450, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 5420, 14, 33692, 14, 198, 37811, 198, 198, 11748, 28686, 198, 6738, 764, 7959, 1330, 1635, 198, 198, 2, 10934, 13532, 2641, 262, 1628, 588, 428, 25, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 2644, 8, 198, 33, 11159, 62, 34720, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 22305, 198, 198, 2, 12029, 12, 9688, 2478, 6460, 532, 48092, 4674, 329, 3227, 198, 2, 4091, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 4919, 1462, 14, 2934, 1420, 434, 14, 9122, 4868, 14, 198, 198, 2, 10729, 4261, 9050, 39410, 25, 1394, 262, 3200, 1994, 973, 287, 3227, 3200, 0, 198, 23683, 26087, 62, 20373, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 30733, 2257, 6965, 62, 23683, 26087, 62, 20373, 3256, 705, 70, 10, 0, 535, 85, 22, 7, 66, 732, 78, 17, 9, 2, 23, 61, 21, 10, 4, 22, 7, 87, 19, 3, 2616, 2931, 86, 12, 15, 9, 10, 5, 8, 1507, 77, 21841, 23, 47505, 388, 62, 10, 79, 10786, 8, 628, 198, 26861, 28270, 62, 13775, 5653, 796, 1391, 198, 220, 220, 220, 366, 12683, 929, 1298, 366, 11195, 13, 23914, 13, 12982, 11712, 4933, 1, 198, 92, 198, 198, 26861, 28270, 62, 27630, 4146, 62, 5959, 30643, 6234, 796, 705, 23108, 6, 198, 198, 9419, 1797, 47, 56, 62, 51, 3620, 6489, 6158, 62, 47, 8120, 796, 705, 18769, 26418, 19, 6, 198, 198, 2, 15678, 6770, 198, 38604, 7036, 1961, 62, 2969, 3705, 796, 685, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 28482, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 11299, 19199, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 82, 6202, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 12708, 16624, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 49315, 3256, 198, 220, 220, 220, 705, 28241, 14208, 62, 10379, 1010, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 82, 9186, 1686, 3256, 220, 1303, 1114, 14413, 13912, 628, 220, 220, 220, 1303, 18366, 198, 220, 220, 220, 705, 66, 2442, 9078, 62, 23914, 3256, 628, 220, 220, 220, 1303, 6725, 198, 220, 220, 220, 705, 1150, 291, 1127, 13, 18211, 13, 39112, 1127, 16934, 3256, 198, 220, 220, 220, 705, 11195, 13, 18211, 13, 16060, 16934, 3256, 198, 220, 220, 220, 705, 26674, 3256, 198, 220, 220, 220, 705, 9122, 448, 3256, 198, 220, 220, 220, 705, 23317, 82, 3256, 628, 220, 220, 220, 1303, 1114, 48191, 198, 220, 220, 220, 705, 439, 18439, 3256, 198, 220, 220, 220, 705, 439, 18439, 13, 23317, 3256, 198, 220, 220, 220, 705, 439, 18439, 13, 14557, 23317, 3256, 198, 220, 220, 220, 1303, 1675, 20542, 46331, 2166, 437, 198, 220, 220, 220, 705, 66, 669, 50145, 3256, 198, 60, 198, 198, 44, 2389, 35, 2538, 33746, 796, 685, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 12961, 13, 24074, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 82, 6202, 13, 27171, 1574, 13, 36044, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 11321, 13, 17227, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 6359, 41871, 13, 34, 27891, 69, 7680, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 27171, 1574, 13, 47649, 3299, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 13, 27171, 1574, 13, 12837, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 12976, 73, 5430, 13, 55, 19778, 29046, 34621, 1574, 3256, 198, 220, 220, 220, 705, 66, 669, 50145, 13, 27171, 1574, 13, 34, 669, 34621, 1574, 3256, 198, 60, 198, 198, 13252, 2394, 62, 4261, 5639, 1340, 37, 796, 705, 41693, 13, 6371, 82, 6, 198, 198, 51, 3620, 6489, 29462, 796, 685, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31098, 10619, 10354, 705, 28241, 14208, 13, 28243, 13, 1891, 2412, 13, 28241, 14208, 13, 35, 73, 14208, 12966, 17041, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 34720, 50, 10354, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 24805, 62, 34720, 50, 10354, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 3185, 51, 11053, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22866, 62, 14681, 669, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 28243, 13, 22866, 62, 14681, 669, 13, 24442, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 28243, 13, 22866, 62, 14681, 669, 13, 25927, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 22866, 62, 14681, 669, 13, 18439, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 13, 22866, 62, 14681, 669, 13, 37348, 1095, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 60, 198, 198, 19416, 18878, 62, 2969, 31484, 6234, 796, 705, 41693, 13, 18504, 12397, 13, 31438, 6, 628, 198, 2, 24047, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 5420, 14, 33692, 31113, 19608, 18826, 198, 198, 35, 1404, 6242, 1921, 1546, 796, 1391, 198, 220, 220, 220, 705, 12286, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 10354, 705, 28241, 14208, 13, 9945, 13, 1891, 2412, 13, 25410, 578, 18, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 705, 9945, 13, 25410, 578, 18, 33809, 198, 220, 220, 220, 1782, 198, 92, 628, 198, 32, 24318, 3525, 2149, 6234, 62, 31098, 1677, 5258, 796, 685, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 1891, 2412, 13, 17633, 7282, 437, 3256, 198, 220, 220, 220, 705, 439, 18439, 13, 23317, 13, 18439, 62, 1891, 2412, 13, 47649, 3299, 7282, 437, 6, 198, 60, 198, 198, 2, 30275, 21201, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 5420, 14, 33692, 31113, 18439, 12, 28712, 12, 12102, 2024, 198, 198, 32, 24318, 62, 47924, 54, 12532, 62, 23428, 2389, 1404, 20673, 796, 685, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 28712, 62, 12102, 341, 13, 12982, 33682, 18925, 414, 47139, 1352, 3256, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 28712, 62, 12102, 341, 13, 44046, 24539, 47139, 1352, 3256, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 28712, 62, 12102, 341, 13, 17227, 35215, 47139, 1352, 3256, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 28712, 62, 12102, 341, 13, 45, 39223, 35215, 47139, 1352, 3256, 198, 220, 220, 220, 8964, 198, 60, 628, 198, 2, 4037, 1634, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 4852, 873, 14, 72, 1507, 77, 14, 198, 198, 43, 15567, 52, 11879, 62, 34, 16820, 796, 705, 268, 12, 385, 6, 198, 198, 34694, 62, 57, 11651, 796, 705, 38555, 14, 42, 13597, 1045, 6, 198, 198, 19108, 62, 40, 1507, 45, 796, 6407, 198, 198, 19108, 62, 43, 940, 45, 796, 6407, 198, 198, 19108, 62, 51, 57, 796, 6407, 628, 198, 2, 36125, 3696, 357, 49155, 11, 11933, 11, 5382, 8, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 18, 13, 15, 14, 4919, 1462, 14, 12708, 12, 16624, 14, 198, 198, 35744, 2149, 62, 21886, 796, 31051, 12708, 14, 6, 198, 198, 50, 12709, 62, 2389, 796, 352, 198, 25294, 1268, 62, 22083, 40, 23988, 62, 21886, 796, 12813, 1, 198, 25294, 1268, 62, 21886, 796, 12813, 38235, 30487, 198, 198, 28311, 25, 198, 220, 220, 220, 422, 764, 1330, 39858, 62, 10414, 198, 220, 220, 220, 19269, 62, 5105, 33, 796, 39858, 62, 10414, 13, 12984, 1836, 540, 62, 2539, 198, 220, 220, 220, 19269, 62, 23683, 796, 39858, 62, 10414, 13, 21078, 62, 2539, 198, 220, 220, 220, 19269, 4061, 36, 62, 1677, 6322, 46, 12394, 62, 20373, 796, 39858, 62, 10414, 13, 437, 62, 2539, 198, 16341, 357, 26796, 3673, 21077, 12331, 11, 17267, 12331, 2599, 198, 220, 220, 220, 19269, 62, 5105, 33, 796, 10148, 198, 220, 220, 220, 19269, 62, 23683, 796, 10148, 198, 220, 220, 220, 19269, 4061, 36, 62, 1677, 6322, 46, 12394, 62, 20373, 796, 10148, 198, 198, 2, 1114, 9447, 7250, 9570, 198, 198, 27630, 4146, 62, 19108, 62, 51, 6561, 796, 6407, 198, 27630, 4146, 62, 39, 10892, 796, 705, 5796, 34788, 13, 14816, 13, 785, 6, 198, 27630, 4146, 62, 15490, 796, 642, 5774, 198, 198, 2, 40348, 3227, 6460, 198, 28311, 25, 198, 220, 220, 220, 1303, 6822, 611, 612, 338, 257, 3227, 2858, 2393, 198, 220, 220, 220, 422, 764, 1676, 67, 1330, 1635, 198, 198, 16341, 357, 26796, 3673, 21077, 12331, 11, 17267, 12331, 2599, 198, 220, 220, 220, 1208, 198 ]
2.365615
1,838
import dataclasses import enum from typing import Any @dataclasses.dataclass
[ 11748, 4818, 330, 28958, 198, 11748, 33829, 198, 6738, 19720, 1330, 4377, 628, 198, 198, 31, 19608, 330, 28958, 13, 19608, 330, 31172, 198 ]
3.333333
24
from deepsegment import DeepSegment # The default language is 'en' segmenter = DeepSegment('en') segmenter.segment('I am Batman i live in gotham') # ['I am Batman', 'i live in gotham']
[ 6738, 2769, 325, 5154, 1330, 10766, 41030, 434, 198, 2, 383, 4277, 3303, 318, 705, 268, 6, 198, 325, 5154, 263, 796, 10766, 41030, 434, 10786, 268, 11537, 198, 325, 5154, 263, 13, 325, 5154, 10786, 40, 716, 9827, 1312, 2107, 287, 308, 849, 321, 11537, 198, 2, 37250, 40, 716, 9827, 3256, 705, 72, 2107, 287, 308, 849, 321, 20520, 198 ]
2.983871
62
# -*- coding: utf-8 -*- from django.core.urlresolvers import reverse from django.db import models from django.utils.translation import ugettext_lazy as _
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 42625, 14208, 13, 7295, 13, 6371, 411, 349, 690, 1330, 9575, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 26791, 13, 41519, 1330, 334, 1136, 5239, 62, 75, 12582, 355, 4808, 198 ]
2.961538
52
import sys; sys.path.append("..") from policies import max_min_fairness, max_min_fairness_strategy_proof import random import time import numpy as np np.set_printoptions(precision=3, suppress=True)
[ 11748, 25064, 26, 25064, 13, 6978, 13, 33295, 7203, 492, 4943, 198, 6738, 4788, 1330, 3509, 62, 1084, 62, 22043, 1108, 11, 3509, 62, 1084, 62, 22043, 1108, 62, 2536, 4338, 62, 13288, 198, 198, 11748, 4738, 198, 11748, 640, 198, 198, 11748, 299, 32152, 355, 45941, 198, 37659, 13, 2617, 62, 4798, 25811, 7, 3866, 16005, 28, 18, 11, 18175, 28, 17821, 8, 198 ]
3.076923
65
import os import os.path from print_function import * # Exemple # main.py server start # main.py server start /home/user/kafka/config/server.propersties # main.py server stop # main.py server restart # main.py server restart /home/user/kafka/config/server.propersties KAFKA_HOME = str(os.getenv("KAFKA_HOME")) LOG_DIR = "server.log" BACKGROUND = " > "+LOG_DIR+" 2>&1 &" DEFAULT_CONF = KAFKA_HOME+"config/server.properties"
[ 11748, 28686, 201, 198, 11748, 28686, 13, 6978, 201, 198, 6738, 3601, 62, 8818, 1330, 1635, 201, 198, 201, 198, 2, 1475, 368, 1154, 201, 198, 2, 1388, 13, 9078, 4382, 923, 201, 198, 2, 1388, 13, 9078, 4382, 923, 1220, 11195, 14, 7220, 14, 74, 1878, 4914, 14, 11250, 14, 15388, 13, 1676, 525, 301, 444, 201, 198, 2, 1388, 13, 9078, 4382, 2245, 201, 198, 2, 1388, 13, 9078, 4382, 15765, 201, 198, 2, 1388, 13, 9078, 4382, 15765, 1220, 11195, 14, 7220, 14, 74, 1878, 4914, 14, 11250, 14, 15388, 13, 1676, 525, 301, 444, 201, 198, 201, 198, 42, 8579, 25123, 62, 39069, 796, 965, 7, 418, 13, 1136, 24330, 7203, 42, 8579, 25123, 62, 39069, 48774, 201, 198, 201, 198, 25294, 62, 34720, 796, 366, 15388, 13, 6404, 1, 201, 198, 31098, 46025, 796, 366, 1875, 43825, 25294, 62, 34720, 10, 1, 362, 29, 5, 16, 1222, 1, 201, 198, 7206, 38865, 62, 10943, 37, 796, 509, 8579, 25123, 62, 39069, 10, 1, 11250, 14, 15388, 13, 48310, 1, 201, 198 ]
2.511364
176
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # Generated file, DO NOT EDIT # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------------------------- from msrest.serialization import Model class ContributedFeatureState(Model): """ContributedFeatureState. :param feature_id: The full contribution id of the feature :type feature_id: str :param overridden: True if the effective state was set by an override rule (indicating that the state cannot be managed by the end user) :type overridden: bool :param reason: Reason that the state was set (by a plugin/rule). :type reason: str :param scope: The scope at which this state applies :type scope: :class:`ContributedFeatureSettingScope <feature-management.v4_1.models.ContributedFeatureSettingScope>` :param state: The current state of this feature :type state: object """ _attribute_map = { 'feature_id': {'key': 'featureId', 'type': 'str'}, 'overridden': {'key': 'overridden', 'type': 'bool'}, 'reason': {'key': 'reason', 'type': 'str'}, 'scope': {'key': 'scope', 'type': 'ContributedFeatureSettingScope'}, 'state': {'key': 'state', 'type': 'object'} }
[ 2, 16529, 1783, 10541, 201, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 201, 198, 2, 49962, 739, 262, 17168, 13789, 13, 4091, 13789, 13, 14116, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 201, 198, 2, 16529, 1783, 10541, 201, 198, 2, 2980, 515, 2393, 11, 8410, 5626, 48483, 201, 198, 2, 19179, 743, 2728, 11491, 4069, 290, 481, 307, 2626, 611, 262, 2438, 318, 16935, 515, 13, 201, 198, 2, 16529, 1783, 10541, 201, 198, 201, 198, 6738, 13845, 2118, 13, 46911, 1634, 1330, 9104, 201, 198, 201, 198, 201, 198, 4871, 2345, 6169, 38816, 9012, 7, 17633, 2599, 201, 198, 220, 220, 220, 37227, 4264, 6169, 38816, 9012, 13, 201, 198, 201, 198, 220, 220, 220, 1058, 17143, 3895, 62, 312, 25, 383, 1336, 10156, 4686, 286, 262, 3895, 201, 198, 220, 220, 220, 1058, 4906, 3895, 62, 312, 25, 965, 201, 198, 220, 220, 220, 1058, 17143, 23170, 4651, 25, 6407, 611, 262, 4050, 1181, 373, 900, 416, 281, 20957, 3896, 357, 521, 12364, 326, 262, 1181, 2314, 307, 5257, 416, 262, 886, 2836, 8, 201, 198, 220, 220, 220, 1058, 4906, 23170, 4651, 25, 20512, 201, 198, 220, 220, 220, 1058, 17143, 1738, 25, 23219, 326, 262, 1181, 373, 900, 357, 1525, 257, 13877, 14, 25135, 737, 201, 198, 220, 220, 220, 1058, 4906, 1738, 25, 965, 201, 198, 220, 220, 220, 1058, 17143, 8354, 25, 383, 8354, 379, 543, 428, 1181, 8991, 201, 198, 220, 220, 220, 1058, 4906, 8354, 25, 1058, 4871, 25, 63, 4264, 6169, 38816, 34149, 43642, 1279, 30053, 12, 27604, 13, 85, 19, 62, 16, 13, 27530, 13, 4264, 6169, 38816, 34149, 43642, 29, 63, 201, 198, 220, 220, 220, 1058, 17143, 1181, 25, 383, 1459, 1181, 286, 428, 3895, 201, 198, 220, 220, 220, 1058, 4906, 1181, 25, 2134, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 4808, 42348, 62, 8899, 796, 1391, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 30053, 62, 312, 10354, 1391, 6, 2539, 10354, 705, 30053, 7390, 3256, 705, 4906, 10354, 705, 2536, 6, 5512, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2502, 40372, 10354, 1391, 6, 2539, 10354, 705, 2502, 40372, 3256, 705, 4906, 10354, 705, 30388, 6, 5512, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 41181, 10354, 1391, 6, 2539, 10354, 705, 41181, 3256, 705, 4906, 10354, 705, 2536, 6, 5512, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 29982, 10354, 1391, 6, 2539, 10354, 705, 29982, 3256, 705, 4906, 10354, 705, 4264, 6169, 38816, 34149, 43642, 6, 5512, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 5219, 10354, 1391, 6, 2539, 10354, 705, 5219, 3256, 705, 4906, 10354, 705, 15252, 6, 92, 201, 198, 220, 220, 220, 1782, 201, 198 ]
3.481953
471
""" Gathers up all of the expenses and breaks down the values by month. """ import time import math from operator import itemgetter from gnucash_reports.collate.bucket import PeriodCollate, CategoryCollate, AccountCollate from gnucash_reports.collate.bucket_generation import decimal_generator from gnucash_reports.collate.store import split_summation from gnucash_reports.periods import PeriodStart, PeriodEnd, PeriodSize from gnucash_reports.wrapper import get_splits, account_walker, parse_walker_parameters def expenses_period(expenses=None, start=PeriodStart.this_month_year_ago, end=PeriodEnd.this_month, period_size=PeriodSize.month): """ Calculate the amount of money that when into an expense account over the given period. :param expenses: account walker parameters for accounts to calculate :param start: the start of the time frame for the report :param end: the end of the time frame for the report :param period_size: the size of the buckets for the report :return: dictionary containing: expenses: sorted dictionary containing keys for date and value. """ expenses = expenses or [] accounts = parse_walker_parameters(expenses) start_period = PeriodStart(start) end_period = PeriodEnd(end) period_size = PeriodSize(period_size) bucket = PeriodCollate(start_period.date, end_period.date, decimal_generator, split_summation, frequency=period_size.frequency, interval=period_size.interval) for account in account_walker(**accounts): for split in get_splits(account, start_period.date, end_period.date): bucket.store_value(split) sorted_results = [] for key, value in bucket.container.iteritems(): sorted_results.append((time.mktime(key.timetuple()), value)) data_set = { 'expenses': sorted(sorted_results, key=itemgetter(0)) } return data_set def expenses_box(expenses=None, start=PeriodStart.this_month_year_ago, end=PeriodEnd.this_month, period_size=PeriodSize.month): """ Calculate the amount of money that when into an expense account over the given period. :param expenses: account walker parameters for accounts to calculate :param start: the start of the time frame for the report :param end: the end of the time frame for the report :param period_size: the size of the buckets for the report :return: dictionary containing: expenses: dictionary containing the following keys: low - lowest amount spent high - highest amount spent q1 - first quartile value q2 - second quartile value q3 - third quartile value """ expenses = expenses or [] accounts = parse_walker_parameters(expenses) start_period = PeriodStart(start) end_period = PeriodEnd(end) period_size = PeriodSize(period_size) bucket = PeriodCollate(start_period.date, end_period.date, decimal_generator, split_summation, frequency=period_size.frequency, interval=period_size.interval) for account in account_walker(**accounts): for split in get_splits(account, start_period.date, end_period.date): bucket.store_value(split) results = [] for key, value in bucket.container.iteritems(): results.append(float(value)) results = sorted(results) return {'low': results[0], 'high': results[-1], 'q1': get_median(get_lower_half(results)), 'q2': get_median(results), 'q3': get_median(get_upper_half(results))} def expenses_categories(expenses=None, start=PeriodStart.this_month, end=PeriodEnd.this_month): """ Walk through the accounts defined in expenses base and collate the spending in the period into the categories defined in the configuration object. :param expenses: account walker definition of the accounts to grab expenses for. :param start: when the report should start collecting data from :param end: when the report should stop collecting data :return: dictionary containing: categories - list of tuples (category name, value) containing the results sorted by category name """ expenses = expenses or [] accounts = parse_walker_parameters(expenses) start_period = PeriodStart(start) end_period = PeriodEnd(end) bucket = CategoryCollate(decimal_generator, split_summation) for account in account_walker(**accounts): for split in get_splits(account, start_period.date, end_period.date): bucket.store_value(split) return {'categories': sorted([[key, value] for key, value in bucket.container.iteritems()], key=itemgetter(0))} def expense_accounts(expenses=None, start=PeriodStart.this_month_year_ago, end=PeriodEnd.this_month): """ Walk through the accounts defined in expenses base and collate the spending into categories that are named after the leaf account name. :param expenses: account walker definition of the accounts to grab expenses for. :param start: when the report should start collecting data from :param end: when the report should stop collecting data :return: dictionary containing: categories - list of tuples (category name, value) containing the results sorted by category name """ expenses = expenses or [] accounts = parse_walker_parameters(expenses) start_period = PeriodStart(start) end_period = PeriodEnd(end) bucket = AccountCollate(decimal_generator, split_summation) for account in account_walker(**accounts): for split in get_splits(account, start_period.date, end_period.date): bucket.store_value(split) return {'categories': sorted([[key, value] for key, value in bucket.container.iteritems()], key=itemgetter(0))} # Calculating the quartiles based on: # https://en.wikipedia.org/wiki/Quartile Method 1
[ 37811, 198, 38, 1032, 82, 510, 477, 286, 262, 9307, 290, 9457, 866, 262, 3815, 416, 1227, 13, 198, 37811, 198, 11748, 640, 198, 11748, 10688, 198, 6738, 10088, 1330, 2378, 1136, 353, 198, 198, 6738, 19967, 1229, 1077, 62, 48922, 13, 26000, 378, 13, 27041, 316, 1330, 18581, 22667, 378, 11, 21743, 22667, 378, 11, 10781, 22667, 378, 198, 6738, 19967, 1229, 1077, 62, 48922, 13, 26000, 378, 13, 27041, 316, 62, 20158, 1330, 32465, 62, 8612, 1352, 198, 6738, 19967, 1229, 1077, 62, 48922, 13, 26000, 378, 13, 8095, 1330, 6626, 62, 82, 13929, 341, 198, 6738, 19967, 1229, 1077, 62, 48922, 13, 41007, 82, 1330, 18581, 10434, 11, 18581, 12915, 11, 18581, 10699, 198, 6738, 19967, 1229, 1077, 62, 48922, 13, 48553, 1330, 651, 62, 22018, 896, 11, 1848, 62, 20783, 11, 21136, 62, 20783, 62, 17143, 7307, 628, 198, 4299, 9307, 62, 41007, 7, 11201, 4541, 28, 14202, 11, 923, 28, 5990, 2101, 10434, 13, 5661, 62, 8424, 62, 1941, 62, 3839, 11, 886, 28, 5990, 2101, 12915, 13, 5661, 62, 8424, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2278, 62, 7857, 28, 5990, 2101, 10699, 13, 8424, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 378, 262, 2033, 286, 1637, 326, 618, 656, 281, 10907, 1848, 625, 262, 1813, 2278, 13, 198, 220, 220, 220, 1058, 17143, 9307, 25, 1848, 2513, 263, 10007, 329, 5504, 284, 15284, 198, 220, 220, 220, 1058, 17143, 923, 25, 262, 923, 286, 262, 640, 5739, 329, 262, 989, 198, 220, 220, 220, 1058, 17143, 886, 25, 262, 886, 286, 262, 640, 5739, 329, 262, 989, 198, 220, 220, 220, 1058, 17143, 2278, 62, 7857, 25, 262, 2546, 286, 262, 38674, 329, 262, 989, 198, 220, 220, 220, 1058, 7783, 25, 22155, 7268, 25, 198, 220, 220, 220, 9307, 25, 23243, 22155, 7268, 8251, 329, 3128, 290, 1988, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9307, 796, 9307, 393, 17635, 628, 220, 220, 220, 5504, 796, 21136, 62, 20783, 62, 17143, 7307, 7, 11201, 4541, 8, 198, 220, 220, 220, 923, 62, 41007, 796, 18581, 10434, 7, 9688, 8, 198, 220, 220, 220, 886, 62, 41007, 796, 18581, 12915, 7, 437, 8, 198, 220, 220, 220, 2278, 62, 7857, 796, 18581, 10699, 7, 41007, 62, 7857, 8, 628, 220, 220, 220, 19236, 796, 18581, 22667, 378, 7, 9688, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 11, 32465, 62, 8612, 1352, 11, 6626, 62, 82, 13929, 341, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8373, 28, 41007, 62, 7857, 13, 35324, 11, 16654, 28, 41007, 62, 7857, 13, 3849, 2100, 8, 628, 220, 220, 220, 329, 1848, 287, 1848, 62, 20783, 7, 1174, 23317, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6626, 287, 651, 62, 22018, 896, 7, 23317, 11, 923, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19236, 13, 8095, 62, 8367, 7, 35312, 8, 628, 220, 220, 220, 23243, 62, 43420, 796, 17635, 628, 220, 220, 220, 329, 1994, 11, 1988, 287, 19236, 13, 34924, 13, 2676, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 23243, 62, 43420, 13, 33295, 19510, 2435, 13, 28015, 2435, 7, 2539, 13, 16514, 316, 29291, 3419, 828, 1988, 4008, 628, 220, 220, 220, 1366, 62, 2617, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 11201, 4541, 10354, 23243, 7, 82, 9741, 62, 43420, 11, 1994, 28, 9186, 1136, 353, 7, 15, 4008, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 1441, 1366, 62, 2617, 628, 198, 4299, 9307, 62, 3524, 7, 11201, 4541, 28, 14202, 11, 923, 28, 5990, 2101, 10434, 13, 5661, 62, 8424, 62, 1941, 62, 3839, 11, 886, 28, 5990, 2101, 12915, 13, 5661, 62, 8424, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2278, 62, 7857, 28, 5990, 2101, 10699, 13, 8424, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 378, 262, 2033, 286, 1637, 326, 618, 656, 281, 10907, 1848, 625, 262, 1813, 2278, 13, 198, 220, 220, 220, 1058, 17143, 9307, 25, 1848, 2513, 263, 10007, 329, 5504, 284, 15284, 198, 220, 220, 220, 1058, 17143, 923, 25, 262, 923, 286, 262, 640, 5739, 329, 262, 989, 198, 220, 220, 220, 1058, 17143, 886, 25, 262, 886, 286, 262, 640, 5739, 329, 262, 989, 198, 220, 220, 220, 1058, 17143, 2278, 62, 7857, 25, 262, 2546, 286, 262, 38674, 329, 262, 989, 198, 220, 220, 220, 1058, 7783, 25, 22155, 7268, 25, 198, 220, 220, 220, 9307, 25, 22155, 7268, 262, 1708, 8251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1877, 532, 9016, 2033, 3377, 198, 220, 220, 220, 220, 220, 220, 220, 1029, 532, 4511, 2033, 3377, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 16, 532, 717, 28176, 576, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 17, 532, 1218, 28176, 576, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 18, 532, 2368, 28176, 576, 1988, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9307, 796, 9307, 393, 17635, 628, 220, 220, 220, 5504, 796, 21136, 62, 20783, 62, 17143, 7307, 7, 11201, 4541, 8, 198, 220, 220, 220, 923, 62, 41007, 796, 18581, 10434, 7, 9688, 8, 198, 220, 220, 220, 886, 62, 41007, 796, 18581, 12915, 7, 437, 8, 198, 220, 220, 220, 2278, 62, 7857, 796, 18581, 10699, 7, 41007, 62, 7857, 8, 628, 220, 220, 220, 19236, 796, 18581, 22667, 378, 7, 9688, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 11, 32465, 62, 8612, 1352, 11, 6626, 62, 82, 13929, 341, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8373, 28, 41007, 62, 7857, 13, 35324, 11, 16654, 28, 41007, 62, 7857, 13, 3849, 2100, 8, 628, 220, 220, 220, 329, 1848, 287, 1848, 62, 20783, 7, 1174, 23317, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6626, 287, 651, 62, 22018, 896, 7, 23317, 11, 923, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19236, 13, 8095, 62, 8367, 7, 35312, 8, 628, 220, 220, 220, 2482, 796, 17635, 628, 220, 220, 220, 329, 1994, 11, 1988, 287, 19236, 13, 34924, 13, 2676, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 2482, 13, 33295, 7, 22468, 7, 8367, 4008, 628, 220, 220, 220, 2482, 796, 23243, 7, 43420, 8, 628, 220, 220, 220, 1441, 1391, 6, 9319, 10354, 2482, 58, 15, 4357, 705, 8929, 10354, 2482, 58, 12, 16, 4357, 705, 80, 16, 10354, 651, 62, 1150, 666, 7, 1136, 62, 21037, 62, 13959, 7, 43420, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 80, 17, 10354, 651, 62, 1150, 666, 7, 43420, 828, 705, 80, 18, 10354, 651, 62, 1150, 666, 7, 1136, 62, 45828, 62, 13959, 7, 43420, 4008, 92, 628, 198, 4299, 9307, 62, 66, 26129, 7, 11201, 4541, 28, 14202, 11, 923, 28, 5990, 2101, 10434, 13, 5661, 62, 8424, 11, 886, 28, 5990, 2101, 12915, 13, 5661, 62, 8424, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6857, 832, 262, 5504, 5447, 287, 9307, 2779, 290, 2927, 378, 262, 4581, 287, 262, 2278, 656, 262, 9376, 198, 220, 220, 220, 5447, 287, 262, 8398, 2134, 13, 198, 220, 220, 220, 1058, 17143, 9307, 25, 1848, 2513, 263, 6770, 286, 262, 5504, 284, 5552, 9307, 329, 13, 198, 220, 220, 220, 1058, 17143, 923, 25, 618, 262, 989, 815, 923, 13157, 1366, 422, 198, 220, 220, 220, 1058, 17143, 886, 25, 618, 262, 989, 815, 2245, 13157, 1366, 198, 220, 220, 220, 1058, 7783, 25, 22155, 7268, 25, 198, 220, 220, 220, 9376, 532, 1351, 286, 12777, 2374, 357, 22872, 1438, 11, 1988, 8, 7268, 262, 2482, 23243, 416, 6536, 1438, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9307, 796, 9307, 393, 17635, 628, 220, 220, 220, 5504, 796, 21136, 62, 20783, 62, 17143, 7307, 7, 11201, 4541, 8, 198, 220, 220, 220, 923, 62, 41007, 796, 18581, 10434, 7, 9688, 8, 198, 220, 220, 220, 886, 62, 41007, 796, 18581, 12915, 7, 437, 8, 628, 220, 220, 220, 19236, 796, 21743, 22667, 378, 7, 12501, 4402, 62, 8612, 1352, 11, 6626, 62, 82, 13929, 341, 8, 628, 220, 220, 220, 329, 1848, 287, 1848, 62, 20783, 7, 1174, 23317, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6626, 287, 651, 62, 22018, 896, 7, 23317, 11, 923, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19236, 13, 8095, 62, 8367, 7, 35312, 8, 628, 220, 220, 220, 1441, 1391, 6, 66, 26129, 10354, 23243, 26933, 58, 2539, 11, 1988, 60, 329, 1994, 11, 1988, 287, 19236, 13, 34924, 13, 2676, 23814, 3419, 4357, 1994, 28, 9186, 1136, 353, 7, 15, 4008, 92, 628, 198, 4299, 10907, 62, 23317, 82, 7, 11201, 4541, 28, 14202, 11, 923, 28, 5990, 2101, 10434, 13, 5661, 62, 8424, 62, 1941, 62, 3839, 11, 886, 28, 5990, 2101, 12915, 13, 5661, 62, 8424, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6857, 832, 262, 5504, 5447, 287, 9307, 2779, 290, 2927, 378, 262, 4581, 656, 9376, 326, 389, 3706, 706, 262, 198, 220, 220, 220, 12835, 1848, 1438, 13, 198, 220, 220, 220, 1058, 17143, 9307, 25, 1848, 2513, 263, 6770, 286, 262, 5504, 284, 5552, 9307, 329, 13, 198, 220, 220, 220, 1058, 17143, 923, 25, 618, 262, 989, 815, 923, 13157, 1366, 422, 198, 220, 220, 220, 1058, 17143, 886, 25, 618, 262, 989, 815, 2245, 13157, 1366, 198, 220, 220, 220, 1058, 7783, 25, 22155, 7268, 25, 198, 220, 220, 220, 9376, 532, 1351, 286, 12777, 2374, 357, 22872, 1438, 11, 1988, 8, 7268, 262, 2482, 23243, 416, 6536, 1438, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9307, 796, 9307, 393, 17635, 628, 220, 220, 220, 5504, 796, 21136, 62, 20783, 62, 17143, 7307, 7, 11201, 4541, 8, 198, 220, 220, 220, 923, 62, 41007, 796, 18581, 10434, 7, 9688, 8, 198, 220, 220, 220, 886, 62, 41007, 796, 18581, 12915, 7, 437, 8, 628, 220, 220, 220, 19236, 796, 10781, 22667, 378, 7, 12501, 4402, 62, 8612, 1352, 11, 6626, 62, 82, 13929, 341, 8, 628, 220, 220, 220, 329, 1848, 287, 1848, 62, 20783, 7, 1174, 23317, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6626, 287, 651, 62, 22018, 896, 7, 23317, 11, 923, 62, 41007, 13, 4475, 11, 886, 62, 41007, 13, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19236, 13, 8095, 62, 8367, 7, 35312, 8, 628, 220, 220, 220, 1441, 1391, 6, 66, 26129, 10354, 23243, 26933, 58, 2539, 11, 1988, 60, 329, 1994, 11, 1988, 287, 19236, 13, 34924, 13, 2676, 23814, 3419, 4357, 1994, 28, 9186, 1136, 353, 7, 15, 4008, 92, 628, 198, 2, 27131, 803, 262, 28176, 2915, 1912, 319, 25, 198, 2, 3740, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 4507, 433, 576, 11789, 352, 628, 198 ]
3.036617
1,939
import pandas as pd import numpy as np import sklearn import joblib from flask import Flask, render_template, request, url_for app = Flask(__name__) @app.route('/') @app.route('/predict', methods=['GET', 'POST']) if __name__ == '__main__': app.run(debug=True)
[ 11748, 19798, 292, 355, 279, 67, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 1341, 35720, 201, 198, 11748, 1693, 8019, 201, 198, 6738, 42903, 1330, 46947, 11, 8543, 62, 28243, 11, 2581, 11, 19016, 62, 1640, 201, 198, 201, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 201, 198, 201, 198, 201, 198, 31, 1324, 13, 38629, 10786, 14, 11537, 201, 198, 31, 1324, 13, 38629, 10786, 14, 79, 17407, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 598, 13, 5143, 7, 24442, 28, 17821, 8, 201, 198 ]
2.469565
115
from typing import Tuple from math import prod with open('input', 'r') as fd: bus_lines_raw = fd.readlines()[1].strip().split(',') bus_lines = list(map(int, filter(lambda bl: bl != 'x', bus_lines_raw))) bl_offsets = [i for i, n in enumerate(bus_lines_raw) if n != 'x'] # For an explanation of how this works, look up the Chinese Remainder Theorem, e.g.: # https://en.wikipedia.org/wiki/Chinese_remainder_theorem#Existence_(direct_construction) N = prod(bus_lines) result = 0 for i in range(len(bus_lines)): a_i = bus_lines[i] - bl_offsets[i] n_i = bus_lines[i] N_i = N // n_i # Using a float value here with N / n_i results in overflow errors for high numbers M_i, _ = bezout_coeff(N_i, n_i) result += a_i * M_i * N_i # This calculation finds _a_ solution - other solutions are obtained by adding multiples of N. # We are interested in the smallest positive solution. result %= N print(result)
[ 6738, 19720, 1330, 309, 29291, 198, 6738, 10688, 1330, 40426, 198, 198, 4480, 1280, 10786, 15414, 3256, 705, 81, 11537, 355, 277, 67, 25, 198, 220, 220, 220, 1323, 62, 6615, 62, 1831, 796, 277, 67, 13, 961, 6615, 3419, 58, 16, 4083, 36311, 22446, 35312, 7, 3256, 11537, 198, 198, 10885, 62, 6615, 796, 1351, 7, 8899, 7, 600, 11, 8106, 7, 50033, 698, 25, 698, 14512, 705, 87, 3256, 1323, 62, 6615, 62, 1831, 22305, 198, 2436, 62, 8210, 1039, 796, 685, 72, 329, 1312, 11, 299, 287, 27056, 378, 7, 10885, 62, 6615, 62, 1831, 8, 611, 299, 14512, 705, 87, 20520, 628, 198, 198, 2, 1114, 281, 7468, 286, 703, 428, 2499, 11, 804, 510, 262, 3999, 42606, 1082, 383, 29625, 11, 304, 13, 70, 11207, 198, 2, 3740, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 23604, 62, 2787, 391, 1082, 62, 1169, 29625, 2, 3109, 13274, 41052, 12942, 62, 9979, 2762, 8, 198, 45, 796, 40426, 7, 10885, 62, 6615, 8, 198, 20274, 796, 657, 198, 1640, 1312, 287, 2837, 7, 11925, 7, 10885, 62, 6615, 8, 2599, 198, 220, 220, 220, 257, 62, 72, 796, 1323, 62, 6615, 58, 72, 60, 532, 698, 62, 8210, 1039, 58, 72, 60, 198, 220, 220, 220, 299, 62, 72, 796, 1323, 62, 6615, 58, 72, 60, 198, 220, 220, 220, 399, 62, 72, 796, 399, 3373, 299, 62, 72, 220, 1303, 8554, 257, 12178, 1988, 994, 351, 399, 1220, 299, 62, 72, 2482, 287, 30343, 8563, 329, 1029, 3146, 198, 220, 220, 220, 337, 62, 72, 11, 4808, 796, 307, 89, 448, 62, 1073, 14822, 7, 45, 62, 72, 11, 299, 62, 72, 8, 198, 220, 220, 220, 1255, 15853, 257, 62, 72, 1635, 337, 62, 72, 1635, 399, 62, 72, 198, 198, 2, 770, 17952, 7228, 4808, 64, 62, 4610, 532, 584, 8136, 389, 6492, 416, 4375, 5021, 2374, 286, 399, 13, 198, 2, 775, 389, 4609, 287, 262, 18197, 3967, 4610, 13, 198, 20274, 4064, 28, 399, 198, 198, 4798, 7, 20274, 8, 198 ]
2.715543
341
""" Concerned with storing and returning books from a list. """ books = [] # def delete_book(name): # This is considered as a Bad Practice. # for book in books: # if book['name'] == name: # books.remove(book) """ SCOPE - as in <line 26> : global books states that books in local scope = (is equal to the) books in the outer scope """
[ 37811, 198, 3103, 49990, 351, 23069, 290, 8024, 3835, 422, 257, 1351, 13, 198, 37811, 198, 12106, 796, 17635, 628, 628, 198, 198, 2, 825, 12233, 62, 2070, 7, 3672, 2599, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 318, 3177, 355, 257, 7772, 19939, 13, 198, 2, 220, 220, 220, 220, 329, 1492, 287, 3835, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1492, 17816, 3672, 20520, 6624, 1438, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3835, 13, 28956, 7, 2070, 8, 198, 198, 37811, 198, 6173, 32135, 532, 355, 287, 1279, 1370, 2608, 29, 1058, 3298, 3835, 198, 27219, 326, 3835, 287, 1957, 8354, 796, 357, 271, 4961, 284, 262, 8, 3835, 287, 262, 12076, 8354, 220, 198, 37811, 198 ]
2.705036
139
# Licensed under a 3-clause BSD style license - see LICENSE.rst """Fit and illustrate example spectral data in XSPEC format. Run `xspec_fake.py` first to generate the example input file. """
[ 2, 49962, 739, 257, 513, 12, 565, 682, 347, 10305, 3918, 5964, 532, 766, 38559, 24290, 13, 81, 301, 198, 37811, 31805, 290, 19418, 1672, 37410, 1366, 287, 1395, 48451, 5794, 13, 198, 198, 10987, 4600, 87, 16684, 62, 30706, 13, 9078, 63, 717, 284, 7716, 262, 1672, 5128, 2393, 13, 198, 37811, 198 ]
3.555556
54
# -*- coding: utf-8 -*- # @Author : William # @Project : TextGAN-william # @FileName : text_process.py # @Time : Created at 2019-05-14 # @Blog : http://zhiweil.ml/ # @Description : # Copyrights (C) 2018. All Rights Reserved. import nltk import os import torch import config as cfg def get_tokenlized(file): """tokenlize the file""" tokenlized = list() with open(file) as raw: for text in raw: text = nltk.word_tokenize(text.lower()) tokenlized.append(text) return tokenlized def get_word_list(tokens): """get word set""" word_set = list() for sentence in tokens: for word in sentence: word_set.append(word) return list(set(word_set)) def get_dict(word_set): """get word_index_dict and index_word_dict""" word_index_dict = dict() index_word_dict = dict() index = 2 word_index_dict[cfg.padding_token] = str(cfg.padding_idx) index_word_dict[str(cfg.padding_idx)] = cfg.padding_token word_index_dict[cfg.start_token] = str(cfg.start_letter) index_word_dict[str(cfg.start_letter)] = cfg.start_token for word in word_set: word_index_dict[word] = str(index) index_word_dict[str(index)] = word index += 1 return word_index_dict, index_word_dict def text_process(train_text_loc, test_text_loc=None): """get sequence length and dict size""" train_tokens = get_tokenlized(train_text_loc) if test_text_loc is None: test_tokens = list() else: test_tokens = get_tokenlized(test_text_loc) word_set = get_word_list(train_tokens + test_tokens) word_index_dict, index_word_dict = get_dict(word_set) if test_text_loc is None: sequence_len = len(max(train_tokens, key=len)) else: sequence_len = max(len(max(train_tokens, key=len)), len(max(test_tokens, key=len))) return sequence_len, len(word_index_dict) # ======================================================================== def init_dict(dataset): """ Initialize dictionaries of dataset, please note that '0': padding_idx, '1': start_letter. Finally save dictionary files locally. """ tokens = get_tokenlized('dataset/{}.txt'.format(dataset)) # tokens.extend(get_tokenlized('dataset/testdata/{}_test.txt'.format(dataset))) # !!! no test data word_set = get_word_list(tokens) word_index_dict, index_word_dict = get_dict(word_set) with open('dataset/{}_wi_dict.txt'.format(dataset), 'w') as dictout: dictout.write(str(word_index_dict)) with open('dataset/{}_iw_dict.txt'.format(dataset), 'w') as dictout: dictout.write(str(index_word_dict)) print('total tokens: ', len(word_index_dict)) def load_dict(dataset): """Load dictionary from local files""" iw_path = 'dataset/{}_iw_dict.txt'.format(dataset) wi_path = 'dataset/{}_wi_dict.txt'.format(dataset) if not os.path.exists(iw_path) or not os.path.exists(iw_path): # initialize dictionaries init_dict(dataset) with open(iw_path, 'r') as dictin: index_word_dict = eval(dictin.read().strip()) with open(wi_path, 'r') as dictin: word_index_dict = eval(dictin.read().strip()) return word_index_dict, index_word_dict def tensor_to_tokens(tensor, dictionary): """transform Tensor to word tokens""" tokens = [] for sent in tensor: sent_token = [] for word in sent.tolist(): if word == cfg.padding_idx: break sent_token.append(dictionary[str(word)]) tokens.append(sent_token) return tokens def tokens_to_tensor(tokens, dictionary): """transform word tokens to Tensor""" tensor = [] for sent in tokens: sent_ten = [] for i, word in enumerate(sent): if word == cfg.padding_token: break sent_ten.append(int(dictionary[str(word)])) while i < cfg.max_seq_len - 1: sent_ten.append(cfg.padding_idx) i += 1 tensor.append(sent_ten[:cfg.max_seq_len]) return torch.LongTensor(tensor) def padding_token(tokens): """pad sentences with padding_token""" pad_tokens = [] for sent in tokens: sent_token = [] for i, word in enumerate(sent): if word == cfg.padding_token: break sent_token.append(word) while i < cfg.max_seq_len - 1: sent_token.append(cfg.padding_token) i += 1 pad_tokens.append(sent_token) return pad_tokens def write_tokens(filename, tokens): """Write word tokens to a local file (For Real data)""" with open(filename, 'w') as fout: for sent in tokens: fout.write(' '.join(sent)) fout.write('\n') def write_tensor(filename, tensor): """Write Tensor to a local file (For Oracle data)""" with open(filename, 'w') as fout: for sent in tensor: fout.write(' '.join([str(i) for i in sent.tolist()])) fout.write('\n')
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2488, 13838, 220, 220, 220, 220, 220, 220, 1058, 3977, 198, 2, 2488, 16775, 220, 220, 220, 220, 220, 1058, 8255, 45028, 12, 10594, 1789, 198, 2, 2488, 8979, 5376, 220, 220, 220, 220, 1058, 2420, 62, 14681, 13, 9078, 198, 2, 2488, 7575, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 15622, 379, 13130, 12, 2713, 12, 1415, 198, 2, 2488, 42383, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 2638, 1378, 89, 5303, 732, 346, 13, 4029, 14, 198, 2, 2488, 11828, 220, 1058, 220, 198, 2, 6955, 49158, 357, 34, 8, 2864, 13, 1439, 6923, 33876, 13, 198, 198, 11748, 299, 2528, 74, 198, 11748, 28686, 198, 11748, 28034, 198, 198, 11748, 4566, 355, 30218, 70, 628, 198, 4299, 651, 62, 30001, 75, 1143, 7, 7753, 2599, 198, 220, 220, 220, 37227, 30001, 75, 1096, 262, 2393, 37811, 198, 220, 220, 220, 11241, 75, 1143, 796, 1351, 3419, 198, 220, 220, 220, 351, 1280, 7, 7753, 8, 355, 8246, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2420, 287, 8246, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 299, 2528, 74, 13, 4775, 62, 30001, 1096, 7, 5239, 13, 21037, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 75, 1143, 13, 33295, 7, 5239, 8, 198, 220, 220, 220, 1441, 11241, 75, 1143, 628, 198, 4299, 651, 62, 4775, 62, 4868, 7, 83, 482, 641, 2599, 198, 220, 220, 220, 37227, 1136, 1573, 900, 37811, 198, 220, 220, 220, 1573, 62, 2617, 796, 1351, 3419, 198, 220, 220, 220, 329, 6827, 287, 16326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1573, 287, 6827, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1573, 62, 2617, 13, 33295, 7, 4775, 8, 198, 220, 220, 220, 1441, 1351, 7, 2617, 7, 4775, 62, 2617, 4008, 628, 198, 4299, 651, 62, 11600, 7, 4775, 62, 2617, 2599, 198, 220, 220, 220, 37227, 1136, 1573, 62, 9630, 62, 11600, 290, 6376, 62, 4775, 62, 11600, 37811, 198, 220, 220, 220, 1573, 62, 9630, 62, 11600, 796, 8633, 3419, 198, 220, 220, 220, 6376, 62, 4775, 62, 11600, 796, 8633, 3419, 628, 220, 220, 220, 6376, 796, 362, 198, 220, 220, 220, 1573, 62, 9630, 62, 11600, 58, 37581, 13, 39231, 62, 30001, 60, 796, 965, 7, 37581, 13, 39231, 62, 312, 87, 8, 198, 220, 220, 220, 6376, 62, 4775, 62, 11600, 58, 2536, 7, 37581, 13, 39231, 62, 312, 87, 15437, 796, 30218, 70, 13, 39231, 62, 30001, 198, 220, 220, 220, 1573, 62, 9630, 62, 11600, 58, 37581, 13, 9688, 62, 30001, 60, 796, 965, 7, 37581, 13, 9688, 62, 9291, 8, 198, 220, 220, 220, 6376, 62, 4775, 62, 11600, 58, 2536, 7, 37581, 13, 9688, 62, 9291, 15437, 796, 30218, 70, 13, 9688, 62, 30001, 628, 220, 220, 220, 329, 1573, 287, 1573, 62, 2617, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1573, 62, 9630, 62, 11600, 58, 4775, 60, 796, 965, 7, 9630, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 62, 4775, 62, 11600, 58, 2536, 7, 9630, 15437, 796, 1573, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 15853, 352, 198, 220, 220, 220, 1441, 1573, 62, 9630, 62, 11600, 11, 6376, 62, 4775, 62, 11600, 628, 198, 4299, 2420, 62, 14681, 7, 27432, 62, 5239, 62, 17946, 11, 1332, 62, 5239, 62, 17946, 28, 14202, 2599, 198, 220, 220, 220, 37227, 1136, 8379, 4129, 290, 8633, 2546, 37811, 198, 220, 220, 220, 4512, 62, 83, 482, 641, 796, 651, 62, 30001, 75, 1143, 7, 27432, 62, 5239, 62, 17946, 8, 198, 220, 220, 220, 611, 1332, 62, 5239, 62, 17946, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 83, 482, 641, 796, 1351, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 83, 482, 641, 796, 651, 62, 30001, 75, 1143, 7, 9288, 62, 5239, 62, 17946, 8, 198, 220, 220, 220, 1573, 62, 2617, 796, 651, 62, 4775, 62, 4868, 7, 27432, 62, 83, 482, 641, 1343, 1332, 62, 83, 482, 641, 8, 198, 220, 220, 220, 1573, 62, 9630, 62, 11600, 11, 6376, 62, 4775, 62, 11600, 796, 651, 62, 11600, 7, 4775, 62, 2617, 8, 628, 220, 220, 220, 611, 1332, 62, 5239, 62, 17946, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8379, 62, 11925, 796, 18896, 7, 9806, 7, 27432, 62, 83, 482, 641, 11, 1994, 28, 11925, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8379, 62, 11925, 796, 3509, 7, 11925, 7, 9806, 7, 27432, 62, 83, 482, 641, 11, 1994, 28, 11925, 36911, 18896, 7, 9806, 7, 9288, 62, 83, 482, 641, 11, 1994, 28, 11925, 22305, 628, 220, 220, 220, 1441, 8379, 62, 11925, 11, 18896, 7, 4775, 62, 9630, 62, 11600, 8, 628, 198, 2, 38093, 1421, 18604, 198, 4299, 2315, 62, 11600, 7, 19608, 292, 316, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 20768, 1096, 48589, 3166, 286, 27039, 11, 3387, 3465, 326, 705, 15, 10354, 24511, 62, 312, 87, 11, 705, 16, 10354, 923, 62, 9291, 13, 198, 220, 220, 220, 9461, 3613, 22155, 3696, 15726, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16326, 796, 651, 62, 30001, 75, 1143, 10786, 19608, 292, 316, 14, 90, 27422, 14116, 4458, 18982, 7, 19608, 292, 316, 4008, 198, 220, 220, 220, 1303, 16326, 13, 2302, 437, 7, 1136, 62, 30001, 75, 1143, 10786, 19608, 292, 316, 14, 9288, 7890, 14, 90, 92, 62, 9288, 13, 14116, 4458, 18982, 7, 19608, 292, 316, 22305, 1303, 220, 10185, 645, 1332, 1366, 198, 220, 220, 220, 1573, 62, 2617, 796, 651, 62, 4775, 62, 4868, 7, 83, 482, 641, 8, 198, 220, 220, 220, 1573, 62, 9630, 62, 11600, 11, 6376, 62, 4775, 62, 11600, 796, 651, 62, 11600, 7, 4775, 62, 2617, 8, 628, 220, 220, 220, 351, 1280, 10786, 19608, 292, 316, 14, 90, 92, 62, 37686, 62, 11600, 13, 14116, 4458, 18982, 7, 19608, 292, 316, 828, 705, 86, 11537, 355, 8633, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8633, 448, 13, 13564, 7, 2536, 7, 4775, 62, 9630, 62, 11600, 4008, 198, 220, 220, 220, 351, 1280, 10786, 19608, 292, 316, 14, 90, 92, 62, 14246, 62, 11600, 13, 14116, 4458, 18982, 7, 19608, 292, 316, 828, 705, 86, 11537, 355, 8633, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8633, 448, 13, 13564, 7, 2536, 7, 9630, 62, 4775, 62, 11600, 4008, 628, 220, 220, 220, 3601, 10786, 23350, 16326, 25, 46083, 18896, 7, 4775, 62, 9630, 62, 11600, 4008, 628, 198, 4299, 3440, 62, 11600, 7, 19608, 292, 316, 2599, 198, 220, 220, 220, 37227, 8912, 22155, 422, 1957, 3696, 37811, 198, 220, 220, 220, 1312, 86, 62, 6978, 796, 705, 19608, 292, 316, 14, 90, 92, 62, 14246, 62, 11600, 13, 14116, 4458, 18982, 7, 19608, 292, 316, 8, 198, 220, 220, 220, 45967, 62, 6978, 796, 705, 19608, 292, 316, 14, 90, 92, 62, 37686, 62, 11600, 13, 14116, 4458, 18982, 7, 19608, 292, 316, 8, 628, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 14246, 62, 6978, 8, 393, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 14246, 62, 6978, 2599, 220, 1303, 41216, 48589, 3166, 198, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 11600, 7, 19608, 292, 316, 8, 628, 220, 220, 220, 351, 1280, 7, 14246, 62, 6978, 11, 705, 81, 11537, 355, 8633, 259, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 62, 4775, 62, 11600, 796, 5418, 7, 11600, 259, 13, 961, 22446, 36311, 28955, 198, 220, 220, 220, 351, 1280, 7, 37686, 62, 6978, 11, 705, 81, 11537, 355, 8633, 259, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1573, 62, 9630, 62, 11600, 796, 5418, 7, 11600, 259, 13, 961, 22446, 36311, 28955, 628, 220, 220, 220, 1441, 1573, 62, 9630, 62, 11600, 11, 6376, 62, 4775, 62, 11600, 628, 198, 198, 4299, 11192, 273, 62, 1462, 62, 83, 482, 641, 7, 83, 22854, 11, 22155, 2599, 198, 220, 220, 220, 37227, 35636, 309, 22854, 284, 1573, 16326, 37811, 198, 220, 220, 220, 16326, 796, 17635, 198, 220, 220, 220, 329, 1908, 287, 11192, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 30001, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1573, 287, 1908, 13, 83, 349, 396, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1573, 6624, 30218, 70, 13, 39231, 62, 312, 87, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 30001, 13, 33295, 7, 67, 14188, 58, 2536, 7, 4775, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 16326, 13, 33295, 7, 34086, 62, 30001, 8, 198, 220, 220, 220, 1441, 16326, 628, 198, 4299, 16326, 62, 1462, 62, 83, 22854, 7, 83, 482, 641, 11, 22155, 2599, 198, 220, 220, 220, 37227, 35636, 1573, 16326, 284, 309, 22854, 37811, 198, 220, 220, 220, 11192, 273, 796, 17635, 198, 220, 220, 220, 329, 1908, 287, 16326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 1452, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1573, 287, 27056, 378, 7, 34086, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1573, 6624, 30218, 70, 13, 39231, 62, 30001, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 1452, 13, 33295, 7, 600, 7, 67, 14188, 58, 2536, 7, 4775, 15437, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 981, 1312, 1279, 30218, 70, 13, 9806, 62, 41068, 62, 11925, 532, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 1452, 13, 33295, 7, 37581, 13, 39231, 62, 312, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 13, 33295, 7, 34086, 62, 1452, 58, 25, 37581, 13, 9806, 62, 41068, 62, 11925, 12962, 198, 220, 220, 220, 1441, 28034, 13, 14617, 51, 22854, 7, 83, 22854, 8, 628, 198, 4299, 24511, 62, 30001, 7, 83, 482, 641, 2599, 198, 220, 220, 220, 37227, 15636, 13439, 351, 24511, 62, 30001, 37811, 198, 220, 220, 220, 14841, 62, 83, 482, 641, 796, 17635, 198, 220, 220, 220, 329, 1908, 287, 16326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 30001, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1573, 287, 27056, 378, 7, 34086, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1573, 6624, 30218, 70, 13, 39231, 62, 30001, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 30001, 13, 33295, 7, 4775, 8, 198, 220, 220, 220, 220, 220, 220, 220, 981, 1312, 1279, 30218, 70, 13, 9806, 62, 41068, 62, 11925, 532, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 30001, 13, 33295, 7, 37581, 13, 39231, 62, 30001, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 14841, 62, 83, 482, 641, 13, 33295, 7, 34086, 62, 30001, 8, 198, 220, 220, 220, 1441, 14841, 62, 83, 482, 641, 628, 198, 4299, 3551, 62, 83, 482, 641, 7, 34345, 11, 16326, 2599, 198, 220, 220, 220, 37227, 16594, 1573, 16326, 284, 257, 1957, 2393, 357, 1890, 6416, 1366, 8, 37811, 198, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1908, 287, 16326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 10786, 45302, 22179, 7, 34086, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 10786, 59, 77, 11537, 628, 198, 4299, 3551, 62, 83, 22854, 7, 34345, 11, 11192, 273, 2599, 198, 220, 220, 220, 37227, 16594, 309, 22854, 284, 257, 1957, 2393, 357, 1890, 18650, 1366, 8, 37811, 198, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1908, 287, 11192, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 10786, 45302, 22179, 26933, 2536, 7, 72, 8, 329, 1312, 287, 1908, 13, 83, 349, 396, 3419, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 10786, 59, 77, 11537, 198 ]
2.274237
2,228
import json from os.path import expanduser, exists from os import makedirs conoha_home = expanduser('~/.conoha') config_path = f'{conoha_home}/config.json' credential_path = f'{conoha_home}/credential.json' token_path = f'{conoha_home}/token.json' if not exists(conoha_home): makedirs(conoha_home)
[ 11748, 33918, 198, 6738, 28686, 13, 6978, 1330, 4292, 7220, 11, 7160, 198, 6738, 28686, 1330, 285, 4335, 17062, 198, 198, 1102, 28083, 62, 11195, 796, 4292, 7220, 10786, 93, 11757, 1102, 28083, 11537, 198, 11250, 62, 6978, 796, 277, 6, 90, 1102, 28083, 62, 11195, 92, 14, 11250, 13, 17752, 6, 198, 66, 445, 1843, 62, 6978, 796, 277, 6, 90, 1102, 28083, 62, 11195, 92, 14, 66, 445, 1843, 13, 17752, 6, 198, 30001, 62, 6978, 796, 277, 6, 90, 1102, 28083, 62, 11195, 92, 14, 30001, 13, 17752, 6, 198, 198, 361, 407, 7160, 7, 1102, 28083, 62, 11195, 2599, 198, 220, 220, 220, 285, 4335, 17062, 7, 1102, 28083, 62, 11195, 8, 628, 628, 628 ]
2.596639
119
#!/usr/bin/env python # # Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. # # # sandesh_msg_test # import unittest import sys import os import socket import test_utils import time import uuid from itertools import chain sys.path.insert(1, sys.path[0]+'/../../../python') from pysandesh.sandesh_base import * from pysandesh.sandesh_client import * from pysandesh.sandesh_session import * from gen_py.msg_test.ttypes import * # end __init__ # end write # end SandeshSessionTestHelper # end class SandeshMsgTest if __name__ == '__main__': unittest.main(verbosity=2, catchbreak=True)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 2, 198, 2, 15069, 357, 66, 8, 2211, 7653, 9346, 27862, 11, 3457, 13, 1439, 2489, 10395, 13, 198, 2, 198, 198, 2, 198, 2, 6450, 5069, 62, 19662, 62, 9288, 198, 2, 198, 198, 11748, 555, 715, 395, 198, 11748, 25064, 198, 11748, 28686, 198, 11748, 17802, 198, 11748, 1332, 62, 26791, 198, 11748, 640, 198, 11748, 334, 27112, 198, 6738, 340, 861, 10141, 1330, 6333, 198, 198, 17597, 13, 6978, 13, 28463, 7, 16, 11, 25064, 13, 6978, 58, 15, 48688, 26488, 40720, 40720, 40720, 29412, 11537, 198, 198, 6738, 279, 893, 392, 5069, 13, 38142, 5069, 62, 8692, 1330, 1635, 198, 6738, 279, 893, 392, 5069, 13, 38142, 5069, 62, 16366, 1330, 1635, 198, 6738, 279, 893, 392, 5069, 13, 38142, 5069, 62, 29891, 1330, 1635, 198, 6738, 2429, 62, 9078, 13, 19662, 62, 9288, 13, 83, 19199, 1330, 1635, 198, 220, 220, 220, 1303, 886, 11593, 15003, 834, 198, 220, 220, 220, 1303, 886, 3551, 198, 198, 2, 886, 3837, 5069, 36044, 14402, 47429, 198, 198, 2, 886, 1398, 3837, 5069, 50108, 14402, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 7, 19011, 16579, 28, 17, 11, 4929, 9032, 28, 17821, 8, 198 ]
2.795455
220
from turtle import * side = 50 COUNT = 8 checker(side)
[ 6738, 28699, 1330, 1635, 198, 1589, 796, 2026, 198, 34, 28270, 796, 807, 628, 198, 9122, 263, 7, 1589, 8, 198 ]
2.714286
21
# flake8: noqa from .base import * from .distillation import * from .metrics import * from .regularizations import * from .unsupervised import * from .losses import *
[ 2, 781, 539, 23, 25, 645, 20402, 198, 6738, 764, 8692, 1330, 1635, 198, 6738, 764, 17080, 40903, 1330, 1635, 198, 6738, 764, 4164, 10466, 1330, 1635, 198, 6738, 764, 16338, 4582, 1330, 1635, 198, 6738, 764, 403, 16668, 16149, 1330, 1635, 198, 6738, 764, 22462, 274, 1330, 1635, 198 ]
3.34
50
#!/usr/bin/env python """ Fluentd queue check for v3 """ import argparse import time import subprocess import math from dateutil import parser from datetime import datetime from openshift_tools.monitoring.ocutil import OCUtil from openshift_tools.monitoring.metric_sender import MetricSender import logging logging.basicConfig( format='%(asctime)s - %(relativeCreated)6d - %(levelname)-8s - %(message)s', ) logger = logging.getLogger() logger.setLevel(logging.INFO) ocutil = OCUtil() if __name__ == '__main__': OFQC = OpenshiftFluentdQueueCheck() OFQC.run()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 37811, 198, 220, 34070, 298, 67, 16834, 2198, 329, 410, 18, 198, 37811, 198, 198, 11748, 1822, 29572, 198, 11748, 640, 198, 11748, 850, 14681, 198, 11748, 10688, 198, 6738, 3128, 22602, 1330, 30751, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 9808, 29323, 62, 31391, 13, 41143, 278, 13, 420, 22602, 1330, 24775, 18274, 346, 198, 6738, 9808, 29323, 62, 31391, 13, 41143, 278, 13, 4164, 1173, 62, 82, 2194, 1330, 3395, 1173, 50, 2194, 198, 198, 11748, 18931, 198, 6404, 2667, 13, 35487, 16934, 7, 198, 220, 220, 220, 5794, 11639, 4, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 43762, 41972, 8, 21, 67, 532, 4064, 7, 5715, 3672, 13219, 23, 82, 532, 4064, 7, 20500, 8, 82, 3256, 198, 8, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 3419, 198, 6404, 1362, 13, 2617, 4971, 7, 6404, 2667, 13, 10778, 8, 198, 198, 420, 22602, 796, 24775, 18274, 346, 3419, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 3963, 48, 34, 796, 8670, 641, 29323, 37, 28216, 67, 34991, 9787, 3419, 198, 220, 220, 220, 3963, 48, 34, 13, 5143, 3419, 198 ]
2.78744
207
import discord import os import inspect from discord.ext import commands class Community(): """Commands for The Bad Server community""" @property @commands.command() async def source(self, ctx, *, command: str = None): """Displays the Bad Bot's source""" if command is None: return await ctx.send(self.source_url) object = self.bot.get_command(command.replace('.', ' ')) if object is None: return await ctx.send('Command not found') src = object.callback.__code__ lines, firstlineno = inspect.getsourcelines(src) if not object.callback.__module__.startswith('discord'): location = os.path.relpath(src.co_filename).replace('\\', '/') else: location = object.callback.__module__.replace('.', '/') + '.py' await ctx.send(f'<{self.source_url}/blob/master/{location}#L{firstlineno}-L{firstlineno + len(lines) - 1}>')
[ 11748, 36446, 198, 11748, 28686, 198, 11748, 10104, 198, 6738, 36446, 13, 2302, 1330, 9729, 198, 198, 4871, 8108, 33529, 198, 220, 220, 220, 37227, 6935, 1746, 329, 383, 7772, 9652, 2055, 37811, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 2723, 7, 944, 11, 269, 17602, 11, 1635, 11, 3141, 25, 965, 796, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7279, 26024, 262, 7772, 18579, 338, 2723, 37811, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3141, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 25507, 269, 17602, 13, 21280, 7, 944, 13, 10459, 62, 6371, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2134, 796, 2116, 13, 13645, 13, 1136, 62, 21812, 7, 21812, 13, 33491, 10786, 2637, 11, 705, 705, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2134, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 25507, 269, 17602, 13, 21280, 10786, 21575, 407, 1043, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 12351, 796, 2134, 13, 47423, 13, 834, 8189, 834, 198, 220, 220, 220, 220, 220, 220, 220, 3951, 11, 717, 2815, 23397, 796, 10104, 13, 11407, 1668, 6615, 7, 10677, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2134, 13, 47423, 13, 834, 21412, 834, 13, 9688, 2032, 342, 10786, 15410, 585, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4067, 796, 28686, 13, 6978, 13, 2411, 6978, 7, 10677, 13, 1073, 62, 34345, 737, 33491, 10786, 6852, 3256, 31051, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4067, 796, 2134, 13, 47423, 13, 834, 21412, 834, 13, 33491, 10786, 2637, 11, 31051, 11537, 1343, 45302, 9078, 6, 628, 220, 220, 220, 220, 220, 220, 220, 25507, 269, 17602, 13, 21280, 7, 69, 6, 27, 90, 944, 13, 10459, 62, 6371, 92, 14, 2436, 672, 14, 9866, 14, 90, 24886, 92, 2, 43, 90, 11085, 2815, 23397, 92, 12, 43, 90, 11085, 2815, 23397, 1343, 18896, 7, 6615, 8, 532, 352, 92, 29, 11537, 198 ]
2.423559
399
from machine_learning_library.model_discriminant_analysis import Classification import numpy as np
[ 6738, 4572, 62, 40684, 62, 32016, 13, 19849, 62, 15410, 3036, 42483, 62, 20930, 1330, 40984, 198, 11748, 299, 32152, 355, 45941, 628 ]
4.347826
23
# Generated by Django 3.0.7 on 2020-06-12 08:38 from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 513, 13, 15, 13, 22, 319, 12131, 12, 3312, 12, 1065, 8487, 25, 2548, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 9945, 13, 27530, 13, 2934, 1616, 295, 628 ]
2.818182
44
import ast import functools from typing import Iterable from typing import List from typing import Optional from typing import Tuple from tokenize_rt import Offset from tokenize_rt import Token from pyupgrade._ast_helpers import ast_to_offset from pyupgrade._data import register from pyupgrade._data import State from pyupgrade._data import TokenFunc from pyupgrade._token_helpers import find_token MOCK_MODULES = frozenset(('mock', 'mock.mock')) @register(ast.ImportFrom) @register(ast.Import) @register(ast.Attribute)
[ 11748, 6468, 198, 11748, 1257, 310, 10141, 198, 6738, 19720, 1330, 40806, 540, 198, 6738, 19720, 1330, 7343, 198, 6738, 19720, 1330, 32233, 198, 6738, 19720, 1330, 309, 29291, 198, 198, 6738, 11241, 1096, 62, 17034, 1330, 3242, 2617, 198, 6738, 11241, 1096, 62, 17034, 1330, 29130, 198, 198, 6738, 12972, 929, 9526, 13557, 459, 62, 16794, 364, 1330, 6468, 62, 1462, 62, 28968, 198, 6738, 12972, 929, 9526, 13557, 7890, 1330, 7881, 198, 6738, 12972, 929, 9526, 13557, 7890, 1330, 1812, 198, 6738, 12972, 929, 9526, 13557, 7890, 1330, 29130, 37, 19524, 198, 6738, 12972, 929, 9526, 13557, 30001, 62, 16794, 364, 1330, 1064, 62, 30001, 198, 198, 44, 11290, 62, 33365, 6239, 1546, 796, 8400, 8247, 316, 7, 10786, 76, 735, 3256, 705, 76, 735, 13, 76, 735, 6, 4008, 628, 628, 628, 628, 198, 31, 30238, 7, 459, 13, 20939, 4863, 8, 628, 198, 31, 30238, 7, 459, 13, 20939, 8, 628, 198, 31, 30238, 7, 459, 13, 33682, 8, 198 ]
3.268293
164
import itertools import matplotlib.pyplot as plt import numpy as np import pandas as pd import plotly.express as px from scipy.optimize import minimize, LinearConstraint, NonlinearConstraint from tqdm import tqdm from utils import constraint_cost, calc_time, calc_cost, ConstraintTime, f_ey, f_conv, f_ideal, \ calc_ideal, calc_conv, fit_ey def main_spb(method): """ Проведение расчетов по предложенной методике для аэропорта Пулково. :param method: Метод решения однокритериальной задачи. """ mu1 = [1 / 87, 1 / 30, 1 / 70] n_max1 = np.array([88, 26, 24]) lam1 = 28659.2 / (24 * 60 * 60) p1 = [0.999, 0.999] s_max = 120 s = np.ones(len(mu1)) t_max = 4 * 60 optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) optf.find_optimal_time(method) optf.find_optimal_cost(method) optf.find_optimal_conv(method, [0.8, 0.2]) for metric in ['2-norm', 'inf']: optf.find_optimal_ideal(method, [0.8, 0.2], metric) df = pd.json_normalize(optf.experiments, sep=' узел ').sort_values(['Критерий', 'Метод'], ignore_index=True) # df.index += 1 # df.index.name = 'Номер эксперимента' df = df.round(2) print(df.iloc[:, 2:].to_string(index=False, decimal=',')) def main_svo(method): """ Проведение расчетов по предложенной методике для терминала С аэропорта Шереметьево. :param method: Метод решения однокритериальной задачи. """ mu1 = [1 / 75, 1 / 50, 1 / 70] n_max1 = np.array([84, 60, 20]) lam1 = 67307.5 * 0.12 / (24 * 60 * 60) p1 = [0.999, 0.999] s_max = 40 s = np.ones(len(mu1)) t_max = 2 * 60 optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) optf.find_optimal_time(method) optf.find_optimal_cost(method) optf.find_optimal_conv(method, [0.8, 0.2]) for metric in ['2-norm', 'inf']: optf.find_optimal_ideal(method, [0.8, 0.2], metric) df = pd.json_normalize(optf.experiments, sep=' узел ').sort_values(['Критерий', 'Метод'], ignore_index=True) # df.index += 1 # df.index.name = 'Номер эксперимента' df = df.round(2) print(df.iloc[:, 2:].to_string(index=False, decimal=',')) def main_spb_brute_force(): """ Проведение расчетов с помощью метода полного перебора для аэропорта Пулково. """ mu1 = [1 / 87, 1 / 30, 1 / 70] n_max1 = np.array([88, 26, 24]) lam1 = 28659.2 / (24 * 60 * 60) p1 = [0.999, 0.999] s_max = 120 s = np.ones(len(mu1)) t_max = 4 * 60 optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) n_df = optf.brute_force([0.8, 0.2], [0.8, 0.2]) n_df = n_df.sort_values(['Критерий'], ignore_index=True) n_df = n_df.round(2) print(n_df.iloc[:, 1:].to_string(index=False, decimal=',')) def main_svo_brute_force(): """ Проведение расчетов с помощью метода полного перебора для терминала С аэропорта Шереметьево. """ mu1 = [1 / 75, 1 / 50, 1 / 70] n_max1 = np.array([84, 60, 20]) lam1 = 67307.5 * 0.12 / (24 * 60 * 60) p1 = [0.999, 0.999] s_max = 40 s = np.ones(len(mu1)) t_max = 2 * 60 optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) n_df = optf.brute_force([0.8, 0.2], [0.8, 0.2]) n_df = n_df.sort_values(['Критерий'], ignore_index=True) n_df = n_df.round(2) print(n_df.iloc[:, 1:].to_string(index=False, decimal=',')) def main_synthetic(method, size): """ Проведение расчетов по предложенной методике для синтетического примера. :param method: Метод решения однокритериальной задачи. :param size: Размер сети аэропорта. """ mu1 = [1 / 70] * size n_max1 = np.array([24] * size) lam1 = 7307.5 * 0.12 / (24 * 60 * 60) p1 = [0.999] * (size - 1) s_max = 40 * size s = np.ones(len(mu1)) t_max = 1.5 * 60 * size optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) optf.find_optimal_time(method) optf.find_optimal_cost(method) optf.find_optimal_conv(method, [0.8, 0.2]) for metric in ['2-norm', 'inf']: optf.find_optimal_ideal(method, [0.8, 0.2], metric) df = pd.json_normalize(optf.experiments, sep=' узел ').sort_values(['Критерий', 'Метод'], ignore_index=True) # df.index += 1 # df.index.name = 'Номер эксперимента' df = df.round(2) print(df.iloc[:, 2:].to_string(index=False, decimal=',')) def main_synthetic_brute_force(size): """ Проведение расчетов методом полного перебора для синтетического примера. :param size: Размер сети аэропорта. """ mu1 = [1 / 70] * size n_max1 = np.array([24] * size) lam1 = 7307.5 * 0.12 / (24 * 60 * 60) p1 = [0.999] * (size - 1) s_max = 40 * size s = np.ones(len(mu1)) t_max = 1.5 * 60 * size optf = OptimalFinder(n_max1, s_max, t_max, s, [mu1, lam1, p1]) n_df = optf.brute_force([0.8, 0.2], [0.8, 0.2]) n_df = n_df.sort_values(['Критерий'], ignore_index=True) n_df = n_df.round(2) print(n_df.iloc[:, 1:].to_string(index=False, decimal=','))
[ 11748, 340, 861, 10141, 201, 198, 201, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 19798, 292, 355, 279, 67, 201, 198, 11748, 7110, 306, 13, 42712, 355, 279, 87, 201, 198, 6738, 629, 541, 88, 13, 40085, 1096, 1330, 17775, 11, 44800, 3103, 2536, 2913, 11, 8504, 29127, 3103, 2536, 2913, 201, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 201, 198, 201, 198, 6738, 3384, 4487, 1330, 32315, 62, 15805, 11, 42302, 62, 2435, 11, 42302, 62, 15805, 11, 1482, 2536, 2913, 7575, 11, 277, 62, 2959, 11, 277, 62, 42946, 11, 277, 62, 485, 282, 11, 3467, 201, 198, 220, 220, 220, 42302, 62, 485, 282, 11, 42302, 62, 42946, 11, 4197, 62, 2959, 201, 198, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 2777, 65, 7, 24396, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 12466, 123, 15166, 12466, 123, 21169, 16843, 43666, 30143, 25443, 114, 16843, 22177, 22177, 25443, 117, 12466, 120, 16843, 20375, 25443, 112, 18849, 31583, 16843, 12466, 112, 30143, 40623, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 12466, 253, 35072, 30143, 31583, 25443, 110, 15166, 13, 201, 198, 220, 220, 220, 1058, 17143, 2446, 25, 12466, 250, 16843, 20375, 25443, 112, 220, 21169, 16843, 141, 230, 16843, 22177, 18849, 40623, 12466, 122, 43666, 22177, 25443, 118, 21169, 18849, 20375, 16843, 21169, 18849, 16142, 30143, 45367, 22177, 25443, 117, 12466, 115, 16142, 43666, 16142, 141, 229, 18849, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 10083, 11, 352, 1220, 1542, 11, 352, 1220, 4317, 60, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 3459, 11, 2608, 11, 1987, 12962, 201, 198, 220, 220, 220, 30592, 16, 796, 2579, 36445, 13, 17, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 11, 657, 13, 17032, 60, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 7982, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 604, 1635, 3126, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 2435, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 15805, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 42946, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 220, 220, 220, 329, 18663, 287, 37250, 17, 12, 27237, 3256, 705, 10745, 6, 5974, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 485, 282, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 4357, 18663, 8, 201, 198, 201, 198, 220, 220, 220, 47764, 796, 279, 67, 13, 17752, 62, 11265, 1096, 7, 8738, 69, 13, 23100, 6800, 11, 41767, 11639, 220, 35072, 140, 115, 16843, 30143, 705, 737, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 3256, 705, 140, 250, 16843, 20375, 25443, 112, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 15853, 352, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 13, 3672, 796, 705, 140, 251, 25443, 120, 16843, 21169, 220, 141, 235, 31583, 21727, 140, 123, 16843, 21169, 18849, 43108, 16843, 22177, 20375, 16142, 6, 201, 198, 220, 220, 220, 47764, 796, 47764, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 7568, 13, 346, 420, 58, 45299, 362, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 82, 13038, 7, 24396, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 12466, 123, 15166, 12466, 123, 21169, 16843, 43666, 30143, 25443, 114, 16843, 22177, 22177, 25443, 117, 12466, 120, 16843, 20375, 25443, 112, 18849, 31583, 16843, 12466, 112, 30143, 40623, 220, 20375, 16843, 21169, 43108, 18849, 22177, 16142, 30143, 16142, 12466, 94, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 12466, 101, 16843, 21169, 16843, 43108, 16843, 20375, 45367, 16843, 38857, 15166, 13, 201, 198, 220, 220, 220, 1058, 17143, 2446, 25, 12466, 250, 16843, 20375, 25443, 112, 220, 21169, 16843, 141, 230, 16843, 22177, 18849, 40623, 12466, 122, 43666, 22177, 25443, 118, 21169, 18849, 20375, 16843, 21169, 18849, 16142, 30143, 45367, 22177, 25443, 117, 12466, 115, 16142, 43666, 16142, 141, 229, 18849, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 5441, 11, 352, 1220, 2026, 11, 352, 1220, 4317, 60, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 5705, 11, 3126, 11, 1160, 12962, 201, 198, 220, 220, 220, 30592, 16, 796, 8275, 22996, 13, 20, 1635, 657, 13, 1065, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 11, 657, 13, 17032, 60, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 2319, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 362, 1635, 3126, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 2435, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 15805, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 42946, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 220, 220, 220, 329, 18663, 287, 37250, 17, 12, 27237, 3256, 705, 10745, 6, 5974, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 485, 282, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 4357, 18663, 8, 201, 198, 201, 198, 220, 220, 220, 47764, 796, 279, 67, 13, 17752, 62, 11265, 1096, 7, 8738, 69, 13, 23100, 6800, 11, 41767, 11639, 220, 35072, 140, 115, 16843, 30143, 705, 737, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 3256, 705, 140, 250, 16843, 20375, 25443, 112, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 15853, 352, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 13, 3672, 796, 705, 140, 251, 25443, 120, 16843, 21169, 220, 141, 235, 31583, 21727, 140, 123, 16843, 21169, 18849, 43108, 16843, 22177, 20375, 16142, 6, 201, 198, 220, 220, 220, 47764, 796, 47764, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 7568, 13, 346, 420, 58, 45299, 362, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 2777, 65, 62, 1671, 1133, 62, 3174, 33529, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 220, 21727, 12466, 123, 25443, 120, 15166, 141, 231, 45367, 141, 236, 12466, 120, 16843, 20375, 25443, 112, 16142, 12466, 123, 25443, 119, 22177, 25443, 111, 15166, 12466, 123, 16843, 21169, 16843, 140, 109, 15166, 21169, 16142, 12466, 112, 30143, 40623, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 12466, 253, 35072, 30143, 31583, 25443, 110, 15166, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 10083, 11, 352, 1220, 1542, 11, 352, 1220, 4317, 60, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 3459, 11, 2608, 11, 1987, 12962, 201, 198, 220, 220, 220, 30592, 16, 796, 2579, 36445, 13, 17, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 11, 657, 13, 17032, 60, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 7982, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 604, 1635, 3126, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 2172, 69, 13, 1671, 1133, 62, 3174, 26933, 15, 13, 23, 11, 657, 13, 17, 4357, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 77, 62, 7568, 13, 346, 420, 58, 45299, 352, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 82, 13038, 62, 1671, 1133, 62, 3174, 33529, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 220, 21727, 12466, 123, 25443, 120, 15166, 141, 231, 45367, 141, 236, 12466, 120, 16843, 20375, 25443, 112, 16142, 12466, 123, 25443, 119, 22177, 25443, 111, 15166, 12466, 123, 16843, 21169, 16843, 140, 109, 15166, 21169, 16142, 12466, 112, 30143, 40623, 220, 20375, 16843, 21169, 43108, 18849, 22177, 16142, 30143, 16142, 12466, 94, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 12466, 101, 16843, 21169, 16843, 43108, 16843, 20375, 45367, 16843, 38857, 15166, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 5441, 11, 352, 1220, 2026, 11, 352, 1220, 4317, 60, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 5705, 11, 3126, 11, 1160, 12962, 201, 198, 220, 220, 220, 30592, 16, 796, 8275, 22996, 13, 20, 1635, 657, 13, 1065, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 11, 657, 13, 17032, 60, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 2319, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 362, 1635, 3126, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 2172, 69, 13, 1671, 1133, 62, 3174, 26933, 15, 13, 23, 11, 657, 13, 17, 4357, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 77, 62, 7568, 13, 346, 420, 58, 45299, 352, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 1837, 429, 6587, 7, 24396, 11, 2546, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 12466, 123, 15166, 12466, 123, 21169, 16843, 43666, 30143, 25443, 114, 16843, 22177, 22177, 25443, 117, 12466, 120, 16843, 20375, 25443, 112, 18849, 31583, 16843, 12466, 112, 30143, 40623, 220, 21727, 18849, 22177, 20375, 16843, 20375, 18849, 141, 229, 16843, 21727, 31583, 25443, 111, 15166, 12466, 123, 21169, 18849, 43108, 16843, 21169, 16142, 13, 201, 198, 220, 220, 220, 1058, 17143, 2446, 25, 12466, 250, 16843, 20375, 25443, 112, 220, 21169, 16843, 141, 230, 16843, 22177, 18849, 40623, 12466, 122, 43666, 22177, 25443, 118, 21169, 18849, 20375, 16843, 21169, 18849, 16142, 30143, 45367, 22177, 25443, 117, 12466, 115, 16142, 43666, 16142, 141, 229, 18849, 13, 201, 198, 220, 220, 220, 1058, 17143, 2546, 25, 12466, 254, 16142, 140, 115, 43108, 16843, 21169, 220, 21727, 16843, 20375, 18849, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 4317, 60, 1635, 2546, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 1731, 60, 1635, 2546, 8, 201, 198, 220, 220, 220, 30592, 16, 796, 767, 22996, 13, 20, 1635, 657, 13, 1065, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 60, 1635, 357, 7857, 532, 352, 8, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 2319, 1635, 2546, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 352, 13, 20, 1635, 3126, 1635, 2546, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 2435, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 15805, 7, 24396, 8, 201, 198, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 42946, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 220, 220, 220, 329, 18663, 287, 37250, 17, 12, 27237, 3256, 705, 10745, 6, 5974, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 69, 13, 19796, 62, 8738, 4402, 62, 485, 282, 7, 24396, 11, 685, 15, 13, 23, 11, 657, 13, 17, 4357, 18663, 8, 201, 198, 201, 198, 220, 220, 220, 47764, 796, 279, 67, 13, 17752, 62, 11265, 1096, 7, 8738, 69, 13, 23100, 6800, 11, 41767, 11639, 220, 35072, 140, 115, 16843, 30143, 705, 737, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 3256, 705, 140, 250, 16843, 20375, 25443, 112, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 15853, 352, 201, 198, 220, 220, 220, 1303, 47764, 13, 9630, 13, 3672, 796, 705, 140, 251, 25443, 120, 16843, 21169, 220, 141, 235, 31583, 21727, 140, 123, 16843, 21169, 18849, 43108, 16843, 22177, 20375, 16142, 6, 201, 198, 220, 220, 220, 47764, 796, 47764, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 7568, 13, 346, 420, 58, 45299, 362, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198, 201, 198, 201, 198, 4299, 1388, 62, 1837, 429, 6587, 62, 1671, 1133, 62, 3174, 7, 7857, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 12466, 253, 21169, 25443, 110, 16843, 43666, 16843, 22177, 18849, 16843, 220, 21169, 16142, 21727, 141, 229, 16843, 20375, 25443, 110, 12466, 120, 16843, 20375, 25443, 112, 25443, 120, 12466, 123, 25443, 119, 22177, 25443, 111, 15166, 12466, 123, 16843, 21169, 16843, 140, 109, 15166, 21169, 16142, 12466, 112, 30143, 40623, 220, 21727, 18849, 22177, 20375, 16843, 20375, 18849, 141, 229, 16843, 21727, 31583, 25443, 111, 15166, 12466, 123, 21169, 18849, 43108, 16843, 21169, 16142, 13, 201, 198, 220, 220, 220, 1058, 17143, 2546, 25, 12466, 254, 16142, 140, 115, 43108, 16843, 21169, 220, 21727, 16843, 20375, 18849, 12466, 108, 141, 235, 21169, 25443, 123, 15166, 21169, 20375, 16142, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 38779, 16, 796, 685, 16, 1220, 4317, 60, 1635, 2546, 201, 198, 220, 220, 220, 299, 62, 9806, 16, 796, 45941, 13, 18747, 26933, 1731, 60, 1635, 2546, 8, 201, 198, 220, 220, 220, 30592, 16, 796, 767, 22996, 13, 20, 1635, 657, 13, 1065, 1220, 357, 1731, 1635, 3126, 1635, 3126, 8, 201, 198, 220, 220, 220, 279, 16, 796, 685, 15, 13, 17032, 60, 1635, 357, 7857, 532, 352, 8, 201, 198, 220, 220, 220, 264, 62, 9806, 796, 2319, 1635, 2546, 201, 198, 220, 220, 220, 264, 796, 45941, 13, 1952, 7, 11925, 7, 30300, 16, 4008, 201, 198, 220, 220, 220, 256, 62, 9806, 796, 352, 13, 20, 1635, 3126, 1635, 2546, 201, 198, 220, 220, 220, 2172, 69, 796, 13123, 4402, 37, 5540, 7, 77, 62, 9806, 16, 11, 264, 62, 9806, 11, 256, 62, 9806, 11, 264, 11, 685, 30300, 16, 11, 30592, 16, 11, 279, 16, 12962, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 2172, 69, 13, 1671, 1133, 62, 3174, 26933, 15, 13, 23, 11, 657, 13, 17, 4357, 685, 15, 13, 23, 11, 657, 13, 17, 12962, 201, 198, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 30619, 62, 27160, 7, 17816, 140, 248, 21169, 18849, 20375, 16843, 21169, 18849, 140, 117, 6, 4357, 8856, 62, 9630, 28, 17821, 8, 201, 198, 220, 220, 220, 299, 62, 7568, 796, 299, 62, 7568, 13, 744, 7, 17, 8, 201, 198, 220, 220, 220, 3601, 7, 77, 62, 7568, 13, 346, 420, 58, 45299, 352, 25, 4083, 1462, 62, 8841, 7, 9630, 28, 25101, 11, 32465, 28, 41707, 4008, 201, 198 ]
1.649712
3,126
from __future__ import print_function import argparse import random import torch import torch.optim as optim import torch.utils.data from torch.autograd import Variable import numpy as np import os import utils from torch_geometric.data import Data, Dataset,DataLoader from torch_scatter import scatter_mean import torch_geometric.transforms as GT import math import json from model2 import TbNet from dataset2 import ScitsrDataset parser = argparse.ArgumentParser() parser.add_argument('--workers', type=int, help='number of data loading workers', default=8) parser.add_argument('--batchSize', type=int, default=32, help='input batch size') parser.add_argument('--imgH', type=int, default=32, help='the height of the input image to network') parser.add_argument('--imgW', type=int, default=32, help='the width of the input image to network') parser.add_argument('--nh', type=int, default=256, help='size of the lstm hidden state') parser.add_argument('--niter', type=int, default=10, help='number of epochs to train for') parser.add_argument('--lr', type=float, default=0.001, help='learning rate for Critic, default=0.00005') parser.add_argument('--beta1', type=float, default=0.5, help='beta1 for adam. default=0.5') parser.add_argument('--cuda', action='store_true', help='enables cuda') parser.add_argument('--ngpu', type=int, default=0, help='number of GPUs to use') parser.add_argument('--crnn', default='', help="path to crnn (to continue training)") parser.add_argument('--alphabet', type=str, default='0123456789abcdefghijklmnopqrstuvwxyz\'') parser.add_argument('--experiment', default=None, help='Where to store samples and models') parser.add_argument('--displayInterval', type=int, default=20, help='Interval to be displayed') parser.add_argument('--n_test_disp', type=int, default=100, help='Number of samples to display when test') parser.add_argument('--valInterval', type=int, default=1, help='Interval to be displayed') parser.add_argument('--saveInterval', type=int, default=10, help='Interval to be displayed') parser.add_argument('--adam', action='store_true', help='Whether to use adam (default is rmsprop)') parser.add_argument('--adadelta', action='store_true', help='Whether to use adadelta (default is rmsprop)') parser.add_argument('--keep_ratio', action='store_true', help='whether to keep ratio for image resize') parser.add_argument('--random_sample', action='store_true', help='whether to sample the dataset with random sampler') opt = parser.parse_args() #print(opt) if opt.experiment is None: opt.experiment = 'expr' os.system('mkdir {0}'.format(opt.experiment)) opt.manualSeed = random.randint(1, 10000) # fix seed print("Random Seed: ", opt.manualSeed) random.seed(opt.manualSeed) np.random.seed(opt.manualSeed) torch.manual_seed(opt.manualSeed) #cudnn.benchmark = True #if torch.cuda.is_available() and not opt.cuda: # print("WARNING: You have a CUDA device, so you should probably run with --cuda") root_path = '' train_dataset = ScitsrDataset(root_path) root_path = '' test_dataset = ScitsrDataset(root_path) root_path = '/home/deepvision/lyr/out' eval_dataset = ScitsrDataset(root_path) print("samples:",len(train_dataset),len(eval_dataset)) ,len(test_dataset) train_loader = DataLoader(train_dataset, batch_size=32, shuffle=True) #test_loader = DataLoader(ds_test, batch_size=32) #vob=open("./data/arti-images/vocab_fapiao.txt",'r') #opt.alphabet=vob.readline() #converter = utils.strLabelConverter(opt.alphabet) #criterion = CTCLoss() # pytorch 0.4 #criterion = torch.nn.CTCLoss # pytorch 1.0.0 nclass = 2 input_num = 8 vocab_size = 39 num_text_features = 64 print('num of classes:',nclass) # custom weights initialization called on crnn device = torch.device("cpu" ) model = TbNet(input_num,vocab_size,num_text_features,nclass) model.cuda() #for k,v in crnn.state_dict().items(): # print(k) model.apply(weights_init) criterion = torch.nn.NLLLoss() if opt.cuda: model.cuda() criterion = criterion.cuda() # loss averager loss_avg = utils.averager() # setup optimizer if opt.adam: optimizer = optim.Adam(model.parameters(), lr=opt.lr, betas=(opt.beta1, 0.999)) elif opt.adadelta: optimizer = optim.Adadelta(model.parameters(), lr=opt.lr) else: optimizer = optim.RMSprop(model.parameters(), lr=opt.lr) if opt.crnn != '': print('loading pretrained model from %s' % opt.crnn) crnn.load_state_dict(torch.load(opt.crnn),strict=False) # 直接val一下。 print("On SciTSR Test:") val(model, test_dataset, criterion) print("On Eval:") val(model, eval_dataset, criterion) for epoch in range(opt.niter): train_iter = iter(train_loader) i = 0 print('epoch',epoch, ' dataset size:', len(train_loader)) while i < len(train_loader): for p in model.parameters(): p.requires_grad = True model.train() cost = trainBatch(train_iter, model, criterion, optimizer) loss_avg.add(cost) i += 1 #print(loss_avg) if i % opt.displayInterval == 0: print('[%d/%d][%d/%d] Loss: %f' % (epoch, opt.niter, i, len(train_loader), loss_avg.val())) loss_avg.reset() if epoch % opt.valInterval == 0: print("On SciTSR Test:") val(model, test_dataset, criterion) print("On Eval:") val(model, eval_dataset, criterion) # do checkpointing if epoch % opt.saveInterval == 0 : torch.save(model.state_dict(), '{0}/net_{1}_{2}.pth'.format(opt.experiment, epoch, i)) #for k,v in crnn.state_dict().items(): # print(k)
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 1822, 29572, 198, 11748, 4738, 198, 11748, 28034, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 11748, 28034, 13, 26791, 13, 7890, 198, 6738, 28034, 13, 2306, 519, 6335, 1330, 35748, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 3384, 4487, 198, 6738, 28034, 62, 469, 16996, 13, 7890, 1330, 6060, 11, 16092, 292, 316, 11, 6601, 17401, 198, 6738, 28034, 62, 1416, 1436, 1330, 41058, 62, 32604, 198, 11748, 28034, 62, 469, 16996, 13, 7645, 23914, 355, 7963, 198, 11748, 10688, 198, 11748, 33918, 198, 6738, 2746, 17, 1330, 309, 65, 7934, 198, 6738, 27039, 17, 1330, 1446, 896, 81, 27354, 292, 316, 198, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 22896, 3256, 2099, 28, 600, 11, 1037, 11639, 17618, 286, 1366, 11046, 3259, 3256, 4277, 28, 23, 8, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 43501, 10699, 3256, 2099, 28, 600, 11, 4277, 28, 2624, 11, 1037, 11639, 15414, 15458, 2546, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 9600, 39, 3256, 2099, 28, 600, 11, 4277, 28, 2624, 11, 1037, 11639, 1169, 6001, 286, 262, 5128, 2939, 284, 3127, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 9600, 54, 3256, 2099, 28, 600, 11, 4277, 28, 2624, 11, 1037, 11639, 1169, 9647, 286, 262, 5128, 2939, 284, 3127, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 77, 71, 3256, 2099, 28, 600, 11, 4277, 28, 11645, 11, 1037, 11639, 7857, 286, 262, 300, 301, 76, 7104, 1181, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 77, 2676, 3256, 2099, 28, 600, 11, 4277, 28, 940, 11, 1037, 11639, 17618, 286, 36835, 82, 284, 4512, 329, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 14050, 3256, 2099, 28, 22468, 11, 4277, 28, 15, 13, 8298, 11, 1037, 11639, 40684, 2494, 329, 10056, 291, 11, 4277, 28, 15, 13, 2388, 20, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 31361, 16, 3256, 2099, 28, 22468, 11, 4277, 28, 15, 13, 20, 11, 1037, 11639, 31361, 16, 329, 23197, 13, 4277, 28, 15, 13, 20, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 66, 15339, 3256, 2223, 11639, 8095, 62, 7942, 3256, 1037, 11639, 268, 2977, 269, 15339, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 782, 19944, 3256, 2099, 28, 600, 11, 4277, 28, 15, 11, 1037, 11639, 17618, 286, 32516, 284, 779, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 6098, 20471, 3256, 4277, 11639, 3256, 1037, 2625, 6978, 284, 1067, 20471, 357, 1462, 2555, 3047, 8, 4943, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 17307, 8380, 3256, 2099, 28, 2536, 11, 4277, 11639, 486, 1954, 2231, 3134, 4531, 39305, 4299, 456, 2926, 41582, 10295, 404, 80, 81, 301, 14795, 86, 5431, 89, 59, 7061, 8, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 23100, 3681, 3256, 4277, 28, 14202, 11, 1037, 11639, 8496, 284, 3650, 8405, 290, 4981, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 13812, 9492, 2100, 3256, 2099, 28, 600, 11, 4277, 28, 1238, 11, 1037, 11639, 9492, 2100, 284, 307, 9066, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 77, 62, 9288, 62, 6381, 79, 3256, 2099, 28, 600, 11, 4277, 28, 3064, 11, 1037, 11639, 15057, 286, 8405, 284, 3359, 618, 1332, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 2100, 9492, 2100, 3256, 2099, 28, 600, 11, 4277, 28, 16, 11, 1037, 11639, 9492, 2100, 284, 307, 9066, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 21928, 9492, 2100, 3256, 2099, 28, 600, 11, 4277, 28, 940, 11, 1037, 11639, 9492, 2100, 284, 307, 9066, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 324, 321, 3256, 2223, 11639, 8095, 62, 7942, 3256, 1037, 11639, 15354, 284, 779, 23197, 357, 12286, 318, 374, 907, 22930, 8, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 324, 324, 12514, 3256, 2223, 11639, 8095, 62, 7942, 3256, 1037, 11639, 15354, 284, 779, 512, 324, 12514, 357, 12286, 318, 374, 907, 22930, 8, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 14894, 62, 10366, 952, 3256, 2223, 11639, 8095, 62, 7942, 3256, 1037, 11639, 25356, 284, 1394, 8064, 329, 2939, 47558, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 25120, 62, 39873, 3256, 2223, 11639, 8095, 62, 7942, 3256, 1037, 11639, 25356, 284, 6291, 262, 27039, 351, 4738, 6072, 20053, 11537, 198, 8738, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 2, 4798, 7, 8738, 8, 198, 198, 361, 2172, 13, 23100, 3681, 318, 6045, 25, 198, 220, 220, 220, 2172, 13, 23100, 3681, 796, 705, 31937, 6, 198, 418, 13, 10057, 10786, 28015, 15908, 1391, 15, 92, 4458, 18982, 7, 8738, 13, 23100, 3681, 4008, 198, 198, 8738, 13, 805, 723, 50, 2308, 796, 4738, 13, 25192, 600, 7, 16, 11, 33028, 8, 220, 1303, 4259, 9403, 198, 4798, 7203, 29531, 23262, 25, 33172, 2172, 13, 805, 723, 50, 2308, 8, 198, 25120, 13, 28826, 7, 8738, 13, 805, 723, 50, 2308, 8, 198, 37659, 13, 25120, 13, 28826, 7, 8738, 13, 805, 723, 50, 2308, 8, 198, 13165, 354, 13, 805, 723, 62, 28826, 7, 8738, 13, 805, 723, 50, 2308, 8, 198, 198, 2, 66, 463, 20471, 13, 26968, 4102, 796, 6407, 198, 198, 2, 361, 28034, 13, 66, 15339, 13, 271, 62, 15182, 3419, 290, 407, 2172, 13, 66, 15339, 25, 198, 2, 220, 220, 220, 3601, 7203, 31502, 25, 921, 423, 257, 29369, 5631, 3335, 11, 523, 345, 815, 2192, 1057, 351, 1377, 66, 15339, 4943, 628, 198, 15763, 62, 6978, 796, 10148, 198, 27432, 62, 19608, 292, 316, 796, 1446, 896, 81, 27354, 292, 316, 7, 15763, 62, 6978, 8, 198, 15763, 62, 6978, 796, 10148, 198, 9288, 62, 19608, 292, 316, 796, 1446, 896, 81, 27354, 292, 316, 7, 15763, 62, 6978, 8, 198, 15763, 62, 6978, 796, 31051, 11195, 14, 22089, 10178, 14, 306, 81, 14, 448, 6, 198, 18206, 62, 19608, 292, 316, 796, 1446, 896, 81, 27354, 292, 316, 7, 15763, 62, 6978, 8, 198, 4798, 7203, 82, 12629, 25, 1600, 11925, 7, 27432, 62, 19608, 292, 316, 828, 11925, 7, 18206, 62, 19608, 292, 316, 4008, 837, 11925, 7, 9288, 62, 19608, 292, 316, 8, 198, 27432, 62, 29356, 796, 6060, 17401, 7, 27432, 62, 19608, 292, 316, 11, 15458, 62, 7857, 28, 2624, 11, 36273, 28, 17821, 8, 198, 2, 9288, 62, 29356, 796, 6060, 17401, 7, 9310, 62, 9288, 11, 15458, 62, 7857, 28, 2624, 8, 198, 198, 2, 85, 672, 28, 9654, 7, 1911, 14, 7890, 14, 433, 72, 12, 17566, 14, 18893, 397, 62, 69, 499, 13481, 13, 14116, 1600, 6, 81, 11537, 198, 2, 8738, 13, 17307, 8380, 28, 85, 672, 13, 961, 1370, 3419, 198, 2, 1102, 332, 353, 796, 3384, 4487, 13, 2536, 33986, 3103, 332, 353, 7, 8738, 13, 17307, 8380, 8, 198, 2, 22213, 28019, 796, 327, 4825, 43, 793, 3419, 220, 1303, 12972, 13165, 354, 657, 13, 19, 198, 2, 22213, 28019, 796, 28034, 13, 20471, 13, 4177, 5097, 793, 220, 220, 220, 1303, 12972, 13165, 354, 352, 13, 15, 13, 15, 198, 77, 4871, 796, 362, 198, 15414, 62, 22510, 796, 807, 198, 18893, 397, 62, 7857, 796, 5014, 198, 22510, 62, 5239, 62, 40890, 796, 5598, 198, 4798, 10786, 22510, 286, 6097, 25, 3256, 77, 4871, 8, 198, 198, 2, 2183, 19590, 37588, 1444, 319, 1067, 20471, 628, 198, 25202, 796, 28034, 13, 25202, 7203, 36166, 1, 1267, 198, 19849, 796, 309, 65, 7934, 7, 15414, 62, 22510, 11, 18893, 397, 62, 7857, 11, 22510, 62, 5239, 62, 40890, 11, 77, 4871, 8, 198, 19849, 13, 66, 15339, 3419, 198, 198, 2, 1640, 479, 11, 85, 287, 1067, 20471, 13, 5219, 62, 11600, 22446, 23814, 33529, 198, 2, 220, 220, 220, 3601, 7, 74, 8, 198, 19849, 13, 39014, 7, 43775, 62, 15003, 8, 198, 22213, 28019, 796, 28034, 13, 20471, 13, 45, 3069, 43, 793, 3419, 220, 198, 198, 361, 2172, 13, 66, 15339, 25, 198, 220, 220, 220, 2746, 13, 66, 15339, 3419, 198, 220, 220, 220, 34054, 796, 34054, 13, 66, 15339, 3419, 198, 198, 2, 2994, 9076, 3536, 198, 22462, 62, 615, 70, 796, 3384, 4487, 13, 8770, 3536, 3419, 198, 198, 2, 9058, 6436, 7509, 198, 361, 2172, 13, 324, 321, 25, 198, 220, 220, 220, 6436, 7509, 796, 6436, 13, 23159, 7, 19849, 13, 17143, 7307, 22784, 300, 81, 28, 8738, 13, 14050, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 731, 292, 16193, 8738, 13, 31361, 16, 11, 657, 13, 17032, 4008, 198, 417, 361, 2172, 13, 324, 324, 12514, 25, 198, 220, 220, 220, 6436, 7509, 796, 6436, 13, 2782, 324, 12514, 7, 19849, 13, 17143, 7307, 22784, 300, 81, 28, 8738, 13, 14050, 8, 198, 17772, 25, 198, 220, 220, 220, 6436, 7509, 796, 6436, 13, 49, 5653, 22930, 7, 19849, 13, 17143, 7307, 22784, 300, 81, 28, 8738, 13, 14050, 8, 628, 198, 198, 361, 2172, 13, 6098, 20471, 14512, 10148, 25, 220, 220, 198, 220, 220, 220, 3601, 10786, 25138, 2181, 13363, 2746, 422, 4064, 82, 6, 4064, 2172, 13, 6098, 20471, 8, 198, 220, 220, 220, 1067, 20471, 13, 2220, 62, 5219, 62, 11600, 7, 13165, 354, 13, 2220, 7, 8738, 13, 6098, 20471, 828, 301, 2012, 28, 25101, 8, 198, 198, 2, 13328, 249, 112, 162, 236, 98, 2100, 31660, 10310, 233, 16764, 198, 4798, 7203, 2202, 10286, 4694, 49, 6208, 25, 4943, 220, 198, 2100, 7, 19849, 11, 1332, 62, 19608, 292, 316, 11, 34054, 8, 198, 4798, 7203, 2202, 26439, 25, 4943, 198, 2100, 7, 19849, 11, 5418, 62, 19608, 292, 316, 11, 34054, 8, 198, 198, 1640, 36835, 287, 2837, 7, 8738, 13, 77, 2676, 2599, 198, 220, 220, 220, 4512, 62, 2676, 796, 11629, 7, 27432, 62, 29356, 8, 198, 220, 220, 220, 1312, 796, 657, 198, 220, 220, 220, 3601, 10786, 538, 5374, 3256, 538, 5374, 11, 705, 27039, 2546, 25, 3256, 18896, 7, 27432, 62, 29356, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 981, 1312, 1279, 18896, 7, 27432, 62, 29356, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 279, 287, 2746, 13, 17143, 7307, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 13, 47911, 62, 9744, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 13, 27432, 3419, 198, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1575, 796, 4512, 33, 963, 7, 27432, 62, 2676, 11, 2746, 11, 34054, 11, 6436, 7509, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2994, 62, 615, 70, 13, 2860, 7, 15805, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 22462, 62, 615, 70, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 4064, 2172, 13, 13812, 9492, 2100, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 58, 4, 67, 14, 4, 67, 7131, 4, 67, 14, 4, 67, 60, 22014, 25, 4064, 69, 6, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 538, 5374, 11, 2172, 13, 77, 2676, 11, 1312, 11, 18896, 7, 27432, 62, 29356, 828, 2994, 62, 615, 70, 13, 2100, 3419, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 62, 615, 70, 13, 42503, 3419, 628, 220, 220, 220, 611, 36835, 4064, 2172, 13, 2100, 9492, 2100, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 2202, 10286, 4694, 49, 6208, 25, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1188, 7, 19849, 11, 1332, 62, 19608, 292, 316, 11, 34054, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 2202, 26439, 25, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1188, 7, 19849, 11, 5418, 62, 19608, 292, 316, 11, 34054, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 466, 26954, 278, 198, 220, 220, 220, 611, 36835, 4064, 2172, 13, 21928, 9492, 2100, 6624, 657, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 28034, 13, 21928, 7, 19849, 13, 5219, 62, 11600, 22784, 705, 90, 15, 92, 14, 3262, 23330, 16, 92, 23330, 17, 27422, 79, 400, 4458, 18982, 7, 8738, 13, 23100, 3681, 11, 36835, 11, 1312, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1640, 479, 11, 85, 287, 1067, 20471, 13, 5219, 62, 11600, 22446, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7, 74, 8, 198 ]
2.600092
2,163
import sixdegrees import numpy as np import scipy.sparse as sprs from scipy.special import binom import matplotlib.pyplot as pl N_meas = 1000 betas = np.logspace(-3,0,10) k = 8. N = 100 for beta in betas: hist = np.zeros((N,)) for meas in range(N_meas): _, row, col = sixdegrees.modified_small_world_network_coord_lists( N, k, beta, use_giant_component = False, ) A = sprs.csr_matrix((np.ones_like(row),(row,col)), shape=(N,N)) degree = np.asarray(A.sum(axis=1)).reshape((N,)) for k_ in degree: hist[k_] += 1.0 hist /= hist.sum() kmax = (np.where(hist>0)[0]).max() degrees = np.arange(kmax+1,dtype=int) this_plot, = pl.step(degrees,hist[:kmax+1],where='mid') pl.step(degrees,P_theory(N,k,beta,kmax),c=this_plot.get_color(),lw=3, alpha=0.4,linestyle = '--',where='mid') pl.show()
[ 11748, 2237, 13500, 6037, 220, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 629, 541, 88, 13, 82, 29572, 355, 599, 3808, 198, 6738, 629, 541, 88, 13, 20887, 1330, 9874, 296, 220, 198, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 628, 628, 198, 45, 62, 1326, 292, 796, 8576, 628, 198, 11181, 292, 796, 45941, 13, 6404, 13200, 32590, 18, 11, 15, 11, 940, 8, 198, 74, 796, 807, 13, 198, 45, 796, 1802, 628, 198, 1640, 12159, 287, 731, 292, 25, 198, 220, 220, 220, 1554, 796, 45941, 13, 9107, 418, 19510, 45, 11, 4008, 628, 220, 220, 220, 329, 2212, 287, 2837, 7, 45, 62, 1326, 292, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 5752, 11, 951, 796, 2237, 13500, 6037, 13, 41771, 62, 17470, 62, 6894, 62, 27349, 62, 37652, 62, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12159, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 779, 62, 70, 3014, 62, 42895, 796, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 317, 796, 599, 3808, 13, 6359, 81, 62, 6759, 8609, 19510, 37659, 13, 1952, 62, 2339, 7, 808, 828, 7, 808, 11, 4033, 36911, 5485, 16193, 45, 11, 45, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 4922, 796, 45941, 13, 292, 18747, 7, 32, 13, 16345, 7, 22704, 28, 16, 29720, 3447, 1758, 19510, 45, 11, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 329, 479, 62, 287, 4922, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1554, 58, 74, 62, 60, 15853, 352, 13, 15, 628, 220, 220, 220, 1554, 1220, 28, 1554, 13, 16345, 3419, 628, 220, 220, 220, 479, 9806, 796, 357, 37659, 13, 3003, 7, 10034, 29, 15, 38381, 15, 35944, 9806, 3419, 198, 220, 220, 220, 7370, 796, 45941, 13, 283, 858, 7, 74, 9806, 10, 16, 11, 67, 4906, 28, 600, 8, 628, 220, 220, 220, 428, 62, 29487, 11, 796, 458, 13, 9662, 7, 13500, 6037, 11, 10034, 58, 25, 74, 9806, 10, 16, 4357, 3003, 11639, 13602, 11537, 198, 220, 220, 220, 458, 13, 9662, 7, 13500, 6037, 11, 47, 62, 1169, 652, 7, 45, 11, 74, 11, 31361, 11, 74, 9806, 828, 66, 28, 5661, 62, 29487, 13, 1136, 62, 8043, 22784, 75, 86, 28, 18, 11, 17130, 28, 15, 13, 19, 11, 2815, 10992, 796, 705, 438, 3256, 3003, 11639, 13602, 11537, 198, 489, 13, 12860, 3419, 628 ]
1.964876
484
import pygame, copy from pygame.locals import * ########################################################################## ## Character ## ## -------------------------------------------------------------------- ## ## Class that defines an instance of an on-screen character sprite. Has ## ## various attributes that help optimize drawing routines. ## ########################################################################## ################# ## Constructor ## ################# ###################################### ## Method to draw to target surface ## ######################################
[ 11748, 12972, 6057, 11, 4866, 198, 6738, 12972, 6057, 13, 17946, 874, 1330, 1635, 198, 198, 29113, 29113, 7804, 2235, 198, 2235, 15684, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 198, 2235, 16529, 650, 22492, 198, 2235, 5016, 326, 15738, 281, 4554, 286, 281, 319, 12, 9612, 2095, 33810, 13, 7875, 22492, 198, 2235, 2972, 12608, 326, 1037, 27183, 8263, 31878, 13, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 198, 29113, 29113, 7804, 2235, 198, 220, 220, 220, 1303, 14468, 198, 220, 220, 220, 22492, 28407, 273, 22492, 198, 220, 220, 220, 1303, 14468, 628, 220, 220, 220, 1303, 29113, 4242, 2, 198, 220, 220, 220, 22492, 11789, 284, 3197, 284, 2496, 4417, 22492, 198, 220, 220, 220, 1303, 29113, 4242, 2, 198 ]
3.797814
183
default_json_pool = { "previousState": "Closing", "stateTransitionTime": "2021-03-18T14:34:51Z", "previousStateTransitionTime": "2021-03-18T14:34:39Z", "lastModified": "2021-03-18T14:34:51Z", "elasticProperty": { "isElastic": False, "minTotalSlots": 1, "maxTotalSlots": 1, "minIdleSlots": 0, "resizePeriod": 180, "rampResizeFactor": 0.8, "minIdleTimeSeconds": 30 }, "preparationTask": None, "constants": [ ], "tags": [ ], "errors": [ { "code": "GHX0782I", "message": "The task was cancelled: The task was cancelled", "debug": None } ], "resourceBuckets": [ ], "advancedResourceBuckets": None, "status": { "timestamp": "0001-01-01T00:00:00Z", "lastUpdateTimestamp": "0001-01-01T00:00:00Z", "downloadProgress": 0, "executionProgress": 100, "uploadProgress": 0, "instanceCount": 0, "downloadTime": "00:00:00", "downloadTimeSec": 0, "environmentTime": "00:00:00", "environmentTimeSec": 0, "executionTime": "00:00:00", "executionTimeSec": 0, "executionTimeByCpuModel": [ ], "executionTimeGhzByCpuModel": [ ], "uploadTime": "00:00:00", "uploadTimeSec": 0, "wallTime": "00:00:15", "wallTimeSec": 15, "succeededRange": "", "executedRange": "0", "failedRange": "0", "startedOnceRange": "", "runningInstancesInfo": { "perRunningInstanceInfo": [ ], "snapshotResults": [ ], "timestamp": "0001-01-01T00:00:00Z", "averageFrequencyGHz": 0, "maxFrequencyGHz": 0, "minFrequencyGHz": 0, "averageMaxFrequencyGHz": 0, "averageCpuUsage": 0, "clusterPowerIndicator": 1, "averageMemoryUsage": 0, "averageNetworkInKbps": 0, "averageNetworkOutKbps": 0, "totalNetworkInKbps": 0, "totalNetworkOutKbps": 0, "runningCoreCountByCpuModel": [ ] } }, "autoDeleteOnCompletion": False, "completionTimeToLive": "00:00:00", "uuid": "6dce9bff-20f0-4909-9ba5-4abe2326a07c", "name": "hello", "shortname": "6dce9bff-20f0-4909-9ba5-4abe2326a07c", "profile": "docker-batch", "state": "Closed", "instanceCount": 1, "creationDate": "2021-03-18T14:34:34Z", "endDate": "2021-03-18T14:34:51Z", "runningInstanceCount": 0, "runningCoreCount": 0, "executionTime": "00:00:00", "wallTime": "00:00:15", "taskDefaultWaitForPoolResourcesSynchronization": None, "credits": 0.01 }
[ 198, 12286, 62, 17752, 62, 7742, 796, 1391, 198, 220, 220, 220, 366, 3866, 1442, 9012, 1298, 220, 366, 2601, 2752, 1600, 198, 220, 220, 220, 366, 5219, 8291, 653, 7575, 1298, 220, 366, 1238, 2481, 12, 3070, 12, 1507, 51, 1415, 25, 2682, 25, 4349, 57, 1600, 198, 220, 220, 220, 366, 3866, 1442, 9012, 8291, 653, 7575, 1298, 220, 366, 1238, 2481, 12, 3070, 12, 1507, 51, 1415, 25, 2682, 25, 2670, 57, 1600, 198, 220, 220, 220, 366, 12957, 5841, 1431, 1298, 220, 366, 1238, 2481, 12, 3070, 12, 1507, 51, 1415, 25, 2682, 25, 4349, 57, 1600, 198, 220, 220, 220, 366, 417, 3477, 21746, 1298, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 271, 9527, 3477, 1298, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 14957, 11122, 1747, 1298, 220, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 14957, 11122, 1747, 1298, 220, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 7390, 293, 11122, 1747, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 411, 1096, 5990, 2101, 1298, 220, 11546, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 81, 696, 4965, 1096, 41384, 1298, 220, 657, 13, 23, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 7390, 293, 7575, 12211, 82, 1298, 220, 1542, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 3866, 1845, 341, 25714, 1298, 220, 6045, 11, 198, 220, 220, 220, 366, 9979, 1187, 1298, 220, 685, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 31499, 1298, 220, 685, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 48277, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8189, 1298, 220, 366, 17511, 55, 2998, 6469, 40, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1298, 220, 366, 464, 4876, 373, 16769, 25, 383, 4876, 373, 16769, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24442, 1298, 220, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 31092, 33, 1347, 1039, 1298, 220, 685, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 32225, 2903, 26198, 33, 1347, 1039, 1298, 220, 6045, 11, 198, 220, 220, 220, 366, 13376, 1298, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 16514, 27823, 1298, 220, 366, 18005, 12, 486, 12, 486, 51, 405, 25, 405, 25, 405, 57, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 12957, 10260, 14967, 27823, 1298, 220, 366, 18005, 12, 486, 12, 486, 51, 405, 25, 405, 25, 405, 57, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15002, 32577, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 1009, 32577, 1298, 220, 1802, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25850, 32577, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39098, 12332, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15002, 7575, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15002, 7575, 6558, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 7575, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 7575, 6558, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 1009, 7575, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 1009, 7575, 6558, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 1009, 7575, 3886, 34, 19944, 17633, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 1009, 7575, 38, 32179, 3886, 34, 19944, 17633, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25850, 7575, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25850, 7575, 6558, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 7575, 1298, 220, 366, 405, 25, 405, 25, 1314, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 7575, 6558, 1298, 220, 1315, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 82, 1229, 2707, 276, 17257, 1298, 220, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18558, 7241, 17257, 1298, 220, 366, 15, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 47904, 17257, 1298, 220, 366, 15, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 46981, 7454, 17257, 1298, 220, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 20270, 6310, 1817, 12360, 1298, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 525, 28768, 33384, 12360, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 45380, 9442, 25468, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16514, 27823, 1298, 220, 366, 18005, 12, 486, 12, 486, 51, 405, 25, 405, 25, 405, 57, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 37, 28707, 23741, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 37, 28707, 23741, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 37, 28707, 23741, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 11518, 37, 28707, 23741, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 34, 19944, 28350, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 565, 5819, 13434, 5497, 26407, 1298, 220, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 30871, 28350, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 26245, 818, 42, 18799, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23913, 26245, 7975, 42, 18799, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23350, 26245, 818, 42, 18799, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23350, 26245, 7975, 42, 18799, 1298, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20270, 14055, 12332, 3886, 34, 19944, 17633, 1298, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 23736, 38727, 2202, 5377, 24547, 1298, 220, 10352, 11, 198, 220, 220, 220, 366, 785, 24547, 7575, 2514, 18947, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 366, 12303, 312, 1298, 220, 366, 21, 67, 344, 24, 65, 487, 12, 1238, 69, 15, 12, 2920, 2931, 12, 24, 7012, 20, 12, 19, 11231, 1954, 2075, 64, 2998, 66, 1600, 198, 220, 220, 220, 366, 3672, 1298, 220, 366, 31373, 1600, 198, 220, 220, 220, 366, 19509, 3672, 1298, 220, 366, 21, 67, 344, 24, 65, 487, 12, 1238, 69, 15, 12, 2920, 2931, 12, 24, 7012, 20, 12, 19, 11231, 1954, 2075, 64, 2998, 66, 1600, 198, 220, 220, 220, 366, 13317, 1298, 220, 366, 45986, 12, 43501, 1600, 198, 220, 220, 220, 366, 5219, 1298, 220, 366, 2601, 1335, 1600, 198, 220, 220, 220, 366, 39098, 12332, 1298, 220, 352, 11, 198, 220, 220, 220, 366, 38793, 10430, 1298, 220, 366, 1238, 2481, 12, 3070, 12, 1507, 51, 1415, 25, 2682, 25, 2682, 57, 1600, 198, 220, 220, 220, 366, 437, 10430, 1298, 220, 366, 1238, 2481, 12, 3070, 12, 1507, 51, 1415, 25, 2682, 25, 4349, 57, 1600, 198, 220, 220, 220, 366, 20270, 33384, 12332, 1298, 220, 657, 11, 198, 220, 220, 220, 366, 20270, 14055, 12332, 1298, 220, 657, 11, 198, 220, 220, 220, 366, 18558, 1009, 7575, 1298, 220, 366, 405, 25, 405, 25, 405, 1600, 198, 220, 220, 220, 366, 11930, 7575, 1298, 220, 366, 405, 25, 405, 25, 1314, 1600, 198, 220, 220, 220, 366, 35943, 19463, 21321, 1890, 27201, 33236, 50, 24871, 1634, 1298, 220, 6045, 11, 198, 220, 220, 220, 366, 66, 20696, 1298, 220, 657, 13, 486, 198, 92, 198 ]
1.869622
1,534
import unittest from gocdapi.go import Go from gocdapi.pipeline import Pipeline from gocdapi.stage import Stage if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 198, 6738, 308, 420, 67, 15042, 13, 2188, 1330, 1514, 198, 6738, 308, 420, 67, 15042, 13, 79, 541, 4470, 1330, 37709, 198, 6738, 308, 420, 67, 15042, 13, 14247, 1330, 15371, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.672131
61
# -*- coding: utf-8 -*- """ Created on Mon Jan 4 16:39:41 2021 This will be used to query an FTP server to download csv data from the sensors of interest. @author: sHristov """ import os import time import datetime import logging import gzip import typing import urllib.error import urllib.request import requests import bs4 import numpy as np import pandas as pd def daterange(start_date: datetime.datetime, end_date: datetime.datetime) -> typing.Iterable[datetime.datetime]: """ Function to create a range given start and end dates. Acknowledgment: https://stackoverflow.com/questions/1060279/iterating-through-a-range-of-dates-in-python """ for n in range(int((end_date - start_date).days)): yield start_date + datetime.timedelta(n) def download_data(sensor_name: str, sensor_id: str, start_date = datetime.date(2020, 4, 1)) -> None: """ Function to download data from the sensor.community server and puts it in a data folder. Args: sensor_name - name of sensor sensor_id - id of sensor Returns: None """ folder_main = os.getcwd() data_folder = folder_main + os.sep + 'data' + os.sep try: os.mkdir(data_folder) except FileExistsError: pass # Get data until yesterday - the server is only updated at 00:00 GMT end_date = datetime.date.today() - datetime.timedelta(days=1) for single_date in daterange(start_date, end_date): print('Downloading: ' + str(single_date)) filename = "%s_%s_sensor_%s.csv" % (str(single_date), sensor_name, sensor_id) save_name = os.path.join(data_folder, filename) if os.path.exists(save_name): logging.debug(f"{save_name} exists, skipping file") else: logging.debug("Trying to download...") time.sleep(1) url = 'https://archive.sensor.community/%s/%s' % (str(single_date), filename) req = requests.get(url) url_content = req.content with open(save_name, 'wb') as csv_file: csv_file.write(url_content) csv_file.close() if __name__ == '__main__': # code below is used for testing purposes sensor_name = 'sds011' sensor_id = '6127' """ raise HTTPError (urllib.error.HTTPError) if data does not exist""" download_data(sensor_name=sensor_name, sensor_id=sensor_id)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 201, 198, 37811, 201, 198, 41972, 319, 2892, 2365, 220, 604, 1467, 25, 2670, 25, 3901, 33448, 201, 198, 201, 198, 1212, 481, 307, 973, 284, 12405, 281, 45854, 4382, 284, 4321, 269, 21370, 1366, 422, 262, 15736, 286, 1393, 13, 220, 201, 198, 201, 198, 31, 9800, 25, 264, 39, 1585, 709, 201, 198, 37811, 201, 198, 201, 198, 11748, 28686, 201, 198, 11748, 640, 201, 198, 11748, 4818, 8079, 201, 198, 11748, 18931, 201, 198, 11748, 308, 13344, 201, 198, 11748, 19720, 201, 198, 11748, 2956, 297, 571, 13, 18224, 201, 198, 11748, 2956, 297, 571, 13, 25927, 201, 198, 11748, 7007, 201, 198, 11748, 275, 82, 19, 201, 198, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 19798, 292, 355, 279, 67, 201, 198, 201, 198, 201, 198, 4299, 288, 729, 858, 7, 9688, 62, 4475, 25, 4818, 8079, 13, 19608, 8079, 11, 886, 62, 4475, 25, 4818, 8079, 13, 19608, 8079, 8, 4613, 19720, 13, 29993, 540, 58, 19608, 8079, 13, 19608, 8079, 5974, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 15553, 284, 2251, 257, 2837, 1813, 923, 290, 886, 9667, 13, 220, 201, 198, 220, 220, 220, 317, 33165, 5154, 25, 201, 198, 220, 220, 220, 3740, 1378, 25558, 2502, 11125, 13, 785, 14, 6138, 507, 14, 940, 1899, 26050, 14, 2676, 803, 12, 9579, 12, 64, 12, 9521, 12, 1659, 12, 19581, 12, 259, 12, 29412, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 329, 299, 287, 2837, 7, 600, 19510, 437, 62, 4475, 532, 923, 62, 4475, 737, 12545, 8, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 923, 62, 4475, 1343, 4818, 8079, 13, 16514, 276, 12514, 7, 77, 8, 201, 198, 201, 198, 201, 198, 4299, 4321, 62, 7890, 7, 82, 22854, 62, 3672, 25, 965, 11, 12694, 62, 312, 25, 965, 11, 923, 62, 4475, 796, 4818, 8079, 13, 4475, 7, 42334, 11, 604, 11, 352, 4008, 4613, 6045, 25, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 15553, 284, 4321, 1366, 422, 262, 12694, 13, 28158, 4382, 290, 7584, 340, 287, 257, 1366, 9483, 13, 220, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 12694, 62, 3672, 532, 1438, 286, 12694, 201, 198, 220, 220, 220, 12694, 62, 312, 532, 4686, 286, 12694, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 220, 201, 198, 220, 220, 220, 6045, 220, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 9483, 62, 12417, 796, 28686, 13, 1136, 66, 16993, 3419, 201, 198, 220, 220, 220, 1366, 62, 43551, 796, 9483, 62, 12417, 1343, 28686, 13, 325, 79, 1343, 705, 7890, 6, 1343, 28686, 13, 325, 79, 201, 198, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 7890, 62, 43551, 8, 201, 198, 220, 220, 220, 2845, 9220, 3109, 1023, 12331, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 201, 198, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 3497, 1366, 1566, 7415, 532, 262, 4382, 318, 691, 6153, 379, 3571, 25, 405, 16987, 201, 198, 220, 220, 220, 886, 62, 4475, 796, 4818, 8079, 13, 4475, 13, 40838, 3419, 532, 4818, 8079, 13, 16514, 276, 12514, 7, 12545, 28, 16, 8, 201, 198, 220, 220, 220, 329, 2060, 62, 4475, 287, 288, 729, 858, 7, 9688, 62, 4475, 11, 886, 62, 4475, 2599, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10002, 278, 25, 705, 1343, 965, 7, 29762, 62, 4475, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 36521, 82, 62, 4, 82, 62, 82, 22854, 62, 4, 82, 13, 40664, 1, 4064, 357, 2536, 7, 29762, 62, 4475, 828, 12694, 62, 3672, 11, 12694, 62, 312, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3613, 62, 3672, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 43551, 11, 29472, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 7, 21928, 62, 3672, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 24442, 7, 69, 1, 90, 21928, 62, 3672, 92, 7160, 11, 31017, 2393, 4943, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 24442, 7203, 51, 14992, 284, 4321, 9313, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 16, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 796, 705, 5450, 1378, 17474, 13, 82, 22854, 13, 28158, 14, 4, 82, 14, 4, 82, 6, 4064, 357, 2536, 7, 29762, 62, 4475, 828, 29472, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43089, 796, 7007, 13, 1136, 7, 6371, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 62, 11299, 796, 43089, 13, 11299, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 21928, 62, 3672, 11, 705, 39346, 11537, 355, 269, 21370, 62, 7753, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 21370, 62, 7753, 13, 13564, 7, 6371, 62, 11299, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 21370, 62, 7753, 13, 19836, 3419, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 1303, 2438, 2174, 318, 973, 329, 4856, 4959, 201, 198, 220, 220, 220, 12694, 62, 3672, 796, 705, 82, 9310, 28555, 6, 201, 198, 220, 220, 220, 12694, 62, 312, 796, 705, 21, 16799, 6, 201, 198, 220, 220, 220, 37227, 5298, 14626, 12331, 357, 333, 297, 571, 13, 18224, 13, 40717, 12331, 8, 611, 1366, 857, 407, 2152, 37811, 201, 198, 201, 198, 220, 220, 220, 4321, 62, 7890, 7, 82, 22854, 62, 3672, 28, 82, 22854, 62, 3672, 11, 12694, 62, 312, 28, 82, 22854, 62, 312, 8, 201, 198 ]
2.288058
1,097
#!/bin/env python3 import time import gex with gex.Client(gex.TrxRawUSB()) as client: ow = gex.OneWire(client, 'ow') # print("Presence: ", ow.test_presence()) print("Devices:", ow.search()) while True: (a, b) = meas2(6558392391241695016, 1802309978572980008) # a = meas(6558392391241695016) # b = meas(1802309978572980008) print("in: %.2f °C, out: %f °C" % (a, b)) # # search the bus for alarm # if False: # ow = gex.OneWire(client, 'ow') # print("Presence: ", ow.test_presence()) # print("Devices w alarm:", ow.search(alarm=True)) # # # simple 1w check # if False: # ow = gex.OneWire(client, 'ow') # print("Presence: ", ow.test_presence()) # print("ROM: 0x%016x" % ow.read_address()) # print("Scratch:", ow.query([0xBE], rcount=9, addr=0x7100080104c77610, as_array=True)) # # # testing ds1820 temp meas without polling # if False: # ow = gex.OneWire(client, 'ow') # print("Presence: ", ow.test_presence()) # print("Starting measure...") # ow.write([0x44]) # time.sleep(1) # print("Scratch:", ow.query([0xBE], 9)) # # # testing ds1820 temp meas with polling # if False: # ow = gex.OneWire(client, 'ow') # print("Presence: ", ow.test_presence()) # print("Starting measure...") # ow.write([0x44]) # ow.wait_ready() # data = ow.query([0xBE], 9) # # pp = gex.PayloadParser(data) # # temp = pp.i16()/2.0 # th = pp.i8() # tl = pp.i8() # reserved = pp.i16() # remain = float(pp.u8()) # perc = float(pp.u8()) # # realtemp = temp - 0.25+(perc-remain)/perc # print("Temperature = %f °C (th %d, tl %d)" % (realtemp, th, tl))
[ 2, 48443, 8800, 14, 24330, 21015, 18, 198, 11748, 640, 198, 198, 11748, 308, 1069, 198, 198, 4480, 308, 1069, 13, 11792, 7, 25636, 13, 2898, 87, 27369, 27155, 28955, 355, 5456, 25, 198, 220, 220, 220, 12334, 796, 308, 1069, 13, 3198, 29451, 7, 16366, 11, 705, 322, 11537, 198, 220, 220, 220, 1303, 3601, 7203, 25460, 594, 25, 33172, 12334, 13, 9288, 62, 18302, 594, 28955, 198, 220, 220, 220, 3601, 7203, 13603, 1063, 25, 1600, 12334, 13, 12947, 28955, 628, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 357, 64, 11, 275, 8, 796, 2212, 17, 7, 35916, 23, 2670, 23516, 17464, 1433, 3865, 27037, 11, 1248, 2999, 1270, 2079, 3695, 3553, 27728, 830, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 257, 796, 2212, 7, 35916, 23, 2670, 23516, 17464, 1433, 3865, 27037, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 275, 796, 2212, 7, 1507, 2999, 1270, 2079, 3695, 3553, 27728, 830, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 259, 25, 4064, 13, 17, 69, 22074, 34, 11, 503, 25, 4064, 69, 22074, 34, 1, 4064, 357, 64, 11, 275, 4008, 628, 628, 220, 220, 220, 1303, 1303, 2989, 262, 1323, 329, 10436, 198, 220, 220, 220, 1303, 611, 10352, 25, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 796, 308, 1069, 13, 3198, 29451, 7, 16366, 11, 705, 322, 11537, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 25460, 594, 25, 33172, 12334, 13, 9288, 62, 18302, 594, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 13603, 1063, 266, 10436, 25, 1600, 12334, 13, 12947, 7, 282, 1670, 28, 17821, 4008, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 1303, 2829, 352, 86, 2198, 198, 220, 220, 220, 1303, 611, 10352, 25, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 796, 308, 1069, 13, 3198, 29451, 7, 16366, 11, 705, 322, 11537, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 25460, 594, 25, 33172, 12334, 13, 9288, 62, 18302, 594, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 33676, 25, 657, 87, 4, 27037, 87, 1, 4064, 12334, 13, 961, 62, 21975, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 3351, 36722, 25, 1600, 12334, 13, 22766, 26933, 15, 87, 12473, 4357, 374, 9127, 28, 24, 11, 37817, 28, 15, 87, 4869, 830, 41531, 3023, 66, 3324, 39132, 11, 355, 62, 18747, 28, 17821, 4008, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 1303, 4856, 288, 82, 1507, 1238, 20218, 2212, 1231, 13985, 198, 220, 220, 220, 1303, 611, 10352, 25, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 796, 308, 1069, 13, 3198, 29451, 7, 16366, 11, 705, 322, 11537, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 25460, 594, 25, 33172, 12334, 13, 9288, 62, 18302, 594, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 22851, 3953, 9313, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 13, 13564, 26933, 15, 87, 2598, 12962, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 640, 13, 42832, 7, 16, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 3351, 36722, 25, 1600, 12334, 13, 22766, 26933, 15, 87, 12473, 4357, 860, 4008, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 1303, 4856, 288, 82, 1507, 1238, 20218, 2212, 351, 13985, 198, 220, 220, 220, 1303, 611, 10352, 25, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 796, 308, 1069, 13, 3198, 29451, 7, 16366, 11, 705, 322, 11537, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 25460, 594, 25, 33172, 12334, 13, 9288, 62, 18302, 594, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 22851, 3953, 9313, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 13, 13564, 26933, 15, 87, 2598, 12962, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 12334, 13, 17077, 62, 1493, 3419, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1366, 796, 12334, 13, 22766, 26933, 15, 87, 12473, 4357, 860, 8, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 9788, 796, 308, 1069, 13, 19197, 2220, 46677, 7, 7890, 8, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 20218, 796, 9788, 13, 72, 1433, 3419, 14, 17, 13, 15, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 294, 796, 9788, 13, 72, 23, 3419, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 256, 75, 796, 9788, 13, 72, 23, 3419, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 10395, 796, 9788, 13, 72, 1433, 3419, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3520, 796, 12178, 7, 381, 13, 84, 23, 28955, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 583, 66, 796, 12178, 7, 381, 13, 84, 23, 28955, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1103, 29510, 796, 20218, 532, 657, 13, 1495, 33747, 525, 66, 12, 2787, 391, 20679, 525, 66, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7203, 42492, 796, 4064, 69, 22074, 34, 357, 400, 4064, 67, 11, 256, 75, 4064, 67, 16725, 4064, 357, 260, 2501, 45787, 11, 294, 11, 256, 75, 4008, 198 ]
2.006515
921
#coding:utf-8 # # id: bugs.core_5018 # title: Regression: Non-indexed predicates may not be applied immediately after retrieval when tables are being joined # decription: # tracker_id: CORE-5018 # min_versions: ['3.0'] # versions: 3.0 # qmid: None import pytest from firebird.qa import db_factory, isql_act, Action # version: 3.0 # resources: None substitutions_1 = [] init_script_1 = """""" db_1 = db_factory(from_backup='mon-stat-gathering-3_0.fbk', init=init_script_1) test_script_1 = """ recreate table zf ( id int primary key, kont_id int not null ); recreate table u ( id int primary key, kont_id int not null ); recreate table k ( id int primary key ); commit; insert into zf (id, kont_id) values ('1', '1'); insert into zf (id, kont_id) values ('2', '7'); insert into zf (id, kont_id) values ('3', '3'); insert into zf (id, kont_id) values ('4', '5'); insert into zf (id, kont_id) values ('5', '5'); insert into zf (id, kont_id) values ('6', '1'); insert into zf (id, kont_id) values ('7', '4'); insert into zf (id, kont_id) values ('8', '2'); insert into zf (id, kont_id) values ('9', '9'); insert into zf (id, kont_id) values ('10', '1'); insert into k (id) values ('1'); insert into k (id) values ('2'); insert into k (id) values ('3'); insert into k (id) values ('4'); insert into k (id) values ('5'); insert into k (id) values ('6'); insert into k (id) values ('7'); insert into k (id) values ('8'); insert into k (id) values ('9'); insert into k (id) values ('10'); insert into u (id, kont_id) values ('1', '4'); insert into u (id, kont_id) values ('2', '6'); insert into u (id, kont_id) values ('3', '3'); insert into u (id, kont_id) values ('4', '2'); insert into u (id, kont_id) values ('5', '5'); insert into u (id, kont_id) values ('6', '2'); insert into u (id, kont_id) values ('7', '9'); insert into u (id, kont_id) values ('8', '2'); insert into u (id, kont_id) values ('9', '10'); insert into u (id, kont_id) values ('10', '1'); commit; execute procedure sp_truncate_stat; commit; execute procedure sp_gather_stat; commit; set term ^; execute block as declare c int; begin select count(*) from zf inner join u on zf.id=u.id left join k kzf on zf.kont_id=kzf.id left join k kum on u.kont_id=kum.id where zf.kont_id<>u.kont_id into c; if ( rdb$get_context('SYSTEM','ENGINE_VERSION') starting with '4.0' ) then rdb$set_context('USER_SESSION', 'MAX_IDX_READS', '45'); -- 27.07.2016 else rdb$set_context('USER_SESSION', 'MAX_IDX_READS', '30'); -- ^ -- | -- ### T H R E S H O L D ###-------+ end ^ set term ;^ execute procedure sp_gather_stat; commit; set list on; select iif( indexed_reads <= c_max_idx_reads, 'ACCEPTABLE', 'FAILED, TOO BIG: ' || indexed_reads || ' > ' || c_max_idx_reads ) as idx_reads_estimation from ( select indexed_reads, cast(rdb$get_context('USER_SESSION', 'MAX_IDX_READS') as int) as c_max_idx_reads from v_agg_stat_main ); -- WI-V2.5.5.26952 IR=22 -- WI-V3.0.0.32140 IR=33 -- WI-V3.0.0.32179 IR=25 -- WI-T4.0.0.313: IR=39 """ act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1) expected_stdout_1 = """ IDX_READS_ESTIMATION ACCEPTABLE """ @pytest.mark.version('>=3.0')
[ 2, 66, 7656, 25, 40477, 12, 23, 198, 2, 198, 2, 4686, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11316, 13, 7295, 62, 20, 29159, 198, 2, 3670, 25, 220, 220, 220, 220, 220, 220, 220, 3310, 2234, 25, 8504, 12, 9630, 276, 2747, 16856, 743, 407, 307, 5625, 3393, 706, 45069, 618, 8893, 389, 852, 5399, 198, 2, 875, 2918, 25, 220, 220, 220, 198, 2, 30013, 62, 312, 25, 220, 220, 327, 6965, 12, 20, 29159, 198, 2, 949, 62, 47178, 25, 37250, 18, 13, 15, 20520, 198, 2, 6300, 25, 220, 220, 220, 220, 513, 13, 15, 198, 2, 10662, 13602, 25, 220, 220, 220, 220, 220, 220, 220, 220, 6045, 198, 198, 11748, 12972, 9288, 198, 6738, 2046, 16944, 13, 20402, 1330, 20613, 62, 69, 9548, 11, 318, 13976, 62, 529, 11, 7561, 198, 198, 2, 2196, 25, 513, 13, 15, 198, 2, 4133, 25, 6045, 198, 198, 7266, 301, 270, 3508, 62, 16, 796, 17635, 198, 198, 15003, 62, 12048, 62, 16, 796, 13538, 15931, 15931, 198, 198, 9945, 62, 16, 796, 20613, 62, 69, 9548, 7, 6738, 62, 1891, 929, 11639, 2144, 12, 14269, 12, 70, 25545, 12, 18, 62, 15, 13, 21855, 74, 3256, 2315, 28, 15003, 62, 12048, 62, 16, 8, 198, 198, 9288, 62, 12048, 62, 16, 796, 37227, 198, 220, 220, 220, 32049, 3084, 1976, 69, 357, 198, 220, 220, 220, 220, 220, 4686, 493, 4165, 1994, 11, 198, 220, 220, 220, 220, 220, 479, 756, 62, 312, 493, 407, 9242, 198, 220, 220, 220, 5619, 628, 220, 220, 220, 32049, 3084, 334, 357, 198, 220, 220, 220, 220, 220, 4686, 493, 4165, 1994, 11, 198, 220, 220, 220, 220, 220, 479, 756, 62, 312, 493, 407, 9242, 198, 220, 220, 220, 5619, 628, 220, 220, 220, 32049, 3084, 479, 357, 198, 220, 220, 220, 220, 220, 4686, 493, 4165, 1994, 198, 220, 220, 220, 5619, 628, 220, 220, 220, 4589, 26, 628, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 16, 3256, 705, 16, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 17, 3256, 705, 22, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 18, 3256, 705, 18, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 19, 3256, 705, 20, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 20, 3256, 705, 20, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 21, 3256, 705, 16, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 22, 3256, 705, 19, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 23, 3256, 705, 17, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 24, 3256, 705, 24, 24036, 198, 220, 220, 220, 7550, 656, 1976, 69, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 940, 3256, 705, 16, 24036, 628, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 16, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 17, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 18, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 19, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 20, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 21, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 22, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 23, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 24, 24036, 198, 220, 220, 220, 7550, 656, 479, 357, 312, 8, 3815, 19203, 940, 24036, 628, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 16, 3256, 705, 19, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 17, 3256, 705, 21, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 18, 3256, 705, 18, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 19, 3256, 705, 17, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 20, 3256, 705, 20, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 21, 3256, 705, 17, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 22, 3256, 705, 24, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 23, 3256, 705, 17, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 24, 3256, 705, 940, 24036, 198, 220, 220, 220, 7550, 656, 334, 357, 312, 11, 479, 756, 62, 312, 8, 3815, 19203, 940, 3256, 705, 16, 24036, 628, 220, 220, 220, 4589, 26, 628, 220, 220, 220, 12260, 8771, 599, 62, 2213, 19524, 378, 62, 14269, 26, 198, 220, 220, 220, 4589, 26, 198, 220, 220, 220, 12260, 8771, 599, 62, 70, 1032, 62, 14269, 26, 198, 220, 220, 220, 4589, 26, 628, 220, 220, 220, 900, 3381, 10563, 26, 198, 220, 220, 220, 12260, 2512, 355, 198, 220, 220, 220, 220, 220, 220, 220, 13627, 269, 493, 26, 198, 220, 220, 220, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2922, 954, 7, 28104, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1976, 69, 198, 220, 220, 220, 220, 220, 220, 220, 8434, 4654, 334, 319, 1976, 69, 13, 312, 28, 84, 13, 312, 198, 220, 220, 220, 220, 220, 220, 220, 1364, 4654, 479, 479, 89, 69, 319, 1976, 69, 13, 74, 756, 62, 312, 28, 74, 89, 69, 13, 312, 198, 220, 220, 220, 220, 220, 220, 220, 1364, 4654, 479, 479, 388, 319, 334, 13, 74, 756, 62, 312, 28, 74, 388, 13, 312, 198, 220, 220, 220, 220, 220, 220, 220, 810, 1976, 69, 13, 74, 756, 62, 312, 27, 29, 84, 13, 74, 756, 62, 312, 198, 220, 220, 220, 220, 220, 220, 220, 656, 269, 26, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 374, 9945, 3, 1136, 62, 22866, 10786, 23060, 25361, 41707, 26808, 8881, 62, 43717, 11537, 3599, 351, 705, 19, 13, 15, 6, 1267, 788, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 9945, 3, 2617, 62, 22866, 10786, 29904, 62, 50, 47621, 3256, 705, 22921, 62, 2389, 55, 62, 15675, 50, 3256, 705, 2231, 24036, 1377, 2681, 13, 2998, 13, 5304, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 9945, 3, 2617, 62, 22866, 10786, 29904, 62, 50, 47621, 3256, 705, 22921, 62, 2389, 55, 62, 15675, 50, 3256, 705, 1270, 24036, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44386, 309, 367, 371, 412, 311, 367, 440, 406, 360, 44386, 26866, 10, 198, 220, 220, 220, 886, 198, 220, 220, 220, 10563, 198, 220, 220, 220, 900, 3381, 2162, 61, 628, 220, 220, 220, 12260, 8771, 599, 62, 70, 1032, 62, 14269, 26, 198, 220, 220, 220, 4589, 26, 628, 220, 220, 220, 900, 1351, 319, 26, 198, 220, 220, 220, 2922, 1312, 361, 7, 41497, 62, 40779, 19841, 269, 62, 9806, 62, 312, 87, 62, 40779, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2246, 5222, 47, 38148, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7708, 4146, 1961, 11, 5390, 46, 26746, 25, 705, 8614, 41497, 62, 40779, 8614, 705, 1875, 705, 8614, 269, 62, 9806, 62, 312, 87, 62, 40779, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 355, 4686, 87, 62, 40779, 62, 395, 18991, 198, 220, 220, 220, 422, 357, 198, 220, 220, 220, 220, 220, 220, 220, 2922, 41497, 62, 40779, 11, 3350, 7, 4372, 65, 3, 1136, 62, 22866, 10786, 29904, 62, 50, 47621, 3256, 705, 22921, 62, 2389, 55, 62, 15675, 50, 11537, 355, 493, 8, 355, 269, 62, 9806, 62, 312, 87, 62, 40779, 198, 220, 220, 220, 220, 220, 220, 220, 422, 410, 62, 9460, 62, 14269, 62, 12417, 198, 220, 220, 220, 5619, 198, 220, 220, 220, 1377, 29360, 12, 53, 17, 13, 20, 13, 20, 13, 2075, 49234, 14826, 28, 1828, 198, 220, 220, 220, 1377, 29360, 12, 53, 18, 13, 15, 13, 15, 13, 2624, 15187, 14826, 28, 2091, 198, 220, 220, 220, 1377, 29360, 12, 53, 18, 13, 15, 13, 15, 13, 2624, 21738, 14826, 28, 1495, 198, 220, 220, 220, 1377, 29360, 12, 51, 19, 13, 15, 13, 15, 13, 25838, 25, 220, 14826, 28, 2670, 628, 220, 37227, 198, 198, 529, 62, 16, 796, 318, 13976, 62, 529, 10786, 9945, 62, 16, 3256, 1332, 62, 12048, 62, 16, 11, 21436, 3508, 28, 7266, 301, 270, 3508, 62, 16, 8, 198, 198, 40319, 62, 19282, 448, 62, 16, 796, 37227, 198, 220, 220, 220, 4522, 55, 62, 15675, 50, 62, 6465, 3955, 6234, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15859, 8905, 38148, 198, 220, 37227, 198, 198, 31, 9078, 9288, 13, 4102, 13, 9641, 10786, 29, 28, 18, 13, 15, 11537, 628 ]
2.090508
1,812
from torch import random import torch from torch.nn.modules import linear import torch.optim as optim import torch.nn.functional as F from torch.nn.utils import clip_grad_norm_ import logging import numpy as np import random from value_network import ValueNetwork, ConvValueNetwork
[ 6738, 28034, 1330, 4738, 198, 11748, 28034, 198, 6738, 28034, 13, 20471, 13, 18170, 1330, 14174, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 28034, 13, 20471, 13, 26791, 1330, 10651, 62, 9744, 62, 27237, 62, 198, 11748, 18931, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 4738, 198, 198, 6738, 1988, 62, 27349, 1330, 11052, 26245, 11, 34872, 11395, 26245, 628 ]
3.944444
72
from sky_iot.utils import UtilsTool _init() read_config()
[ 6738, 6766, 62, 5151, 13, 26791, 1330, 7273, 4487, 25391, 198, 198, 62, 15003, 3419, 198, 198, 961, 62, 11250, 3419 ]
2.809524
21
#!/usr/bin/python import sys,subprocess #user and group id id=171 if len(sys.argv) == 2: if sys.argv[1] == "create-glint-user": create_group() add_user() elif sys.argv[1] == "remove-glint-user": remove_user() #remove_group() else: show_usage() else: show_usage()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 25064, 11, 7266, 14681, 198, 2, 7220, 290, 1448, 4686, 198, 312, 28, 27192, 198, 198, 361, 18896, 7, 17597, 13, 853, 85, 8, 6624, 362, 25, 198, 220, 220, 220, 611, 25064, 13, 853, 85, 58, 16, 60, 6624, 366, 17953, 12, 4743, 600, 12, 7220, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 2251, 62, 8094, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 751, 62, 7220, 3419, 198, 220, 220, 220, 1288, 361, 25064, 13, 853, 85, 58, 16, 60, 6624, 366, 28956, 12, 4743, 600, 12, 7220, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 7220, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 28956, 62, 8094, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 905, 62, 26060, 3419, 198, 17772, 25, 198, 220, 220, 220, 905, 62, 26060, 3419, 198 ]
2.018868
159
from django.apps import apps from django.test import TestCase from model_bakery import baker from rest_framework import serializers from api.serializers.common import MappedSerializerMixin from api.serializers.registration import UserSerializer from common.constants import models Profile = apps.get_model(models.PROFILE_MODEL)
[ 6738, 42625, 14208, 13, 18211, 1330, 6725, 198, 6738, 42625, 14208, 13, 9288, 1330, 6208, 20448, 198, 6738, 2746, 62, 65, 33684, 1330, 46412, 198, 6738, 1334, 62, 30604, 1330, 11389, 11341, 198, 198, 6738, 40391, 13, 46911, 11341, 13, 11321, 1330, 337, 6320, 32634, 7509, 35608, 259, 198, 6738, 40391, 13, 46911, 11341, 13, 2301, 33397, 1330, 11787, 32634, 7509, 198, 6738, 2219, 13, 9979, 1187, 1330, 4981, 198, 198, 37046, 796, 6725, 13, 1136, 62, 19849, 7, 27530, 13, 31190, 25664, 62, 33365, 3698, 8, 628 ]
3.761364
88
import os import pickle def var_to_pickle(var, filename): ''' Writes the given variable to a pickle file Args: var (any): variable to be written to pickle file filename (str): path and filename of pickle file Returns: None ''' try: with open(filename, 'wb') as f: pickle.dump(var, f) except: print(f'Failed to save pickle to \'{filename}\'') return def read_pickle(filename): ''' Reads the given pickle file Args: filename (str): path and filename of pickle file Returns: any: contents of pickle file if it exists, None if not ''' output = None if os.path.exists(filename): try: with open(filename, 'rb') as f: output = pickle.load(f) except: print(f'Failed to load pickle from \'{filename}\'') return output
[ 11748, 28686, 198, 11748, 2298, 293, 628, 198, 4299, 1401, 62, 1462, 62, 27729, 293, 7, 7785, 11, 29472, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 262, 1813, 7885, 284, 257, 2298, 293, 2393, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1401, 357, 1092, 2599, 7885, 284, 307, 3194, 284, 2298, 293, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 357, 2536, 2599, 3108, 290, 29472, 286, 2298, 293, 2393, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 39346, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2298, 293, 13, 39455, 7, 7785, 11, 277, 8, 198, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 37, 6255, 284, 3613, 2298, 293, 284, 34373, 90, 34345, 32239, 7061, 8, 198, 220, 220, 220, 1441, 198, 198, 4299, 1100, 62, 27729, 293, 7, 34345, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4149, 82, 262, 1813, 2298, 293, 2393, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 357, 2536, 2599, 3108, 290, 29472, 286, 2298, 293, 2393, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 597, 25, 10154, 286, 2298, 293, 2393, 611, 340, 7160, 11, 6045, 611, 407, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 5072, 796, 6045, 198, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 7, 34345, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 26145, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 796, 2298, 293, 13, 2220, 7, 69, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 37, 6255, 284, 3440, 2298, 293, 422, 34373, 90, 34345, 32239, 7061, 8, 198, 220, 220, 220, 1441, 5072, 198 ]
2.254364
401
from dbgen import Model from . import schema # noqa: F401 from .generators import add_generators
[ 6738, 20613, 5235, 1330, 9104, 198, 6738, 764, 1330, 32815, 220, 1303, 645, 20402, 25, 376, 21844, 198, 6738, 764, 8612, 2024, 1330, 751, 62, 8612, 2024, 628 ]
3.535714
28
import bisect import collections import functools import math import operator try: import graphviz GRAPHVIZ_INSTALLED = True except ImportError: GRAPHVIZ_INSTALLED = False from .. import base from .. import utils from . import enum def find_best_split(class_counts, feature_counts, split_enum): """ >>> class_counts = {'slow': 2, 'fast': 2} >>> feature_counts = { ... 'grade': { ... 'steep': collections.Counter({'slow': 2, 'fast': 1}), ... 'flat': collections.Counter({'fast': 1}) ... }, ... 'bumpiness': { ... 'bumpy': collections.Counter({'slow': 1, 'fast': 1}), ... 'smooth': collections.Counter({'slow': 1, 'fast': 1}) ... }, ... 'speed_limit': { ... 'yes': collections.Counter({'slow': 2}), ... 'no': collections.Counter({'fast': 2}) ... } ... } >>> split_enum = enum.UnaryEnumerator() >>> find_best_split(class_counts, feature_counts, split_enum) (1.0, 0.311278..., 'speed_limit', ['no']) """ best_gain = -math.inf second_best_gain = -math.inf best_feature = None best_values = None current_entropy = utils.entropy(class_counts) for feature, counts in feature_counts.items(): for left, right in split_enum(sorted(counts.keys())): left_counts = sum_counters(counts[v] for v in left) right_counts = sum_counters(counts[v] for v in right) left_total = sum(left_counts.values()) right_total = sum(right_counts.values()) entropy = left_total * utils.entropy(left_counts) + \ right_total * utils.entropy(right_counts) entropy /= (left_total + right_total) gain = current_entropy - entropy if gain > best_gain: best_gain, second_best_gain = gain, best_gain best_feature = feature best_values = left elif gain > second_best_gain and gain != best_gain: second_best_gain = gain return best_gain, second_best_gain, best_feature, best_values class DecisionTreeClassifier(base.MultiClassifier): """ Parameters: max_bins (int): Maximum number of bins used for discretizing continuous values when using `utils.Histogram`. Attributes: histograms (collections.defaultdict) """ def to_dot(self): """Returns a GraphViz representation of the decision tree.""" if not GRAPHVIZ_INSTALLED: raise RuntimeError('graphviz is not installed') dot = graphviz.Digraph() add_node(self.root, '0') return dot
[ 11748, 47457, 478, 198, 11748, 17268, 198, 11748, 1257, 310, 10141, 198, 11748, 10688, 198, 11748, 10088, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 4823, 85, 528, 198, 220, 220, 220, 10863, 31300, 12861, 57, 62, 38604, 7036, 1961, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 10863, 31300, 12861, 57, 62, 38604, 7036, 1961, 796, 10352, 198, 198, 6738, 11485, 1330, 2779, 198, 6738, 11485, 1330, 3384, 4487, 198, 198, 6738, 764, 1330, 33829, 628, 628, 198, 198, 4299, 1064, 62, 13466, 62, 35312, 7, 4871, 62, 9127, 82, 11, 3895, 62, 9127, 82, 11, 6626, 62, 44709, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 13163, 1398, 62, 9127, 82, 796, 1391, 6, 38246, 10354, 362, 11, 705, 7217, 10354, 362, 92, 198, 220, 220, 220, 13163, 3895, 62, 9127, 82, 796, 1391, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 9526, 10354, 1391, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4169, 538, 10354, 17268, 13, 31694, 15090, 6, 38246, 10354, 362, 11, 705, 7217, 10354, 352, 92, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 38568, 10354, 17268, 13, 31694, 15090, 6, 7217, 10354, 352, 30072, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 65, 931, 1272, 10354, 1391, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 65, 32152, 10354, 17268, 13, 31694, 15090, 6, 38246, 10354, 352, 11, 705, 7217, 10354, 352, 92, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 5796, 5226, 10354, 17268, 13, 31694, 15090, 6, 38246, 10354, 352, 11, 705, 7217, 10354, 352, 30072, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 12287, 62, 32374, 10354, 1391, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8505, 10354, 17268, 13, 31694, 15090, 6, 38246, 10354, 362, 92, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 10354, 17268, 13, 31694, 15090, 6, 7217, 10354, 362, 30072, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 2644, 1782, 198, 220, 220, 220, 13163, 6626, 62, 44709, 796, 33829, 13, 3118, 560, 4834, 6975, 1352, 3419, 628, 220, 220, 220, 13163, 1064, 62, 13466, 62, 35312, 7, 4871, 62, 9127, 82, 11, 3895, 62, 9127, 82, 11, 6626, 62, 44709, 8, 198, 220, 220, 220, 357, 16, 13, 15, 11, 657, 13, 3132, 1065, 3695, 986, 11, 705, 12287, 62, 32374, 3256, 37250, 3919, 6, 12962, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1266, 62, 48544, 796, 532, 11018, 13, 10745, 198, 220, 220, 220, 1218, 62, 13466, 62, 48544, 796, 532, 11018, 13, 10745, 198, 220, 220, 220, 1266, 62, 30053, 796, 6045, 198, 220, 220, 220, 1266, 62, 27160, 796, 6045, 628, 220, 220, 220, 1459, 62, 298, 28338, 796, 3384, 4487, 13, 298, 28338, 7, 4871, 62, 9127, 82, 8, 628, 220, 220, 220, 329, 3895, 11, 9853, 287, 3895, 62, 9127, 82, 13, 23814, 33529, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1364, 11, 826, 287, 6626, 62, 44709, 7, 82, 9741, 7, 9127, 82, 13, 13083, 28955, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 9127, 82, 796, 2160, 62, 66, 15044, 7, 9127, 82, 58, 85, 60, 329, 410, 287, 1364, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 9127, 82, 796, 2160, 62, 66, 15044, 7, 9127, 82, 58, 85, 60, 329, 410, 287, 826, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 23350, 796, 2160, 7, 9464, 62, 9127, 82, 13, 27160, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 23350, 796, 2160, 7, 3506, 62, 9127, 82, 13, 27160, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40709, 796, 1364, 62, 23350, 1635, 3384, 4487, 13, 298, 28338, 7, 9464, 62, 9127, 82, 8, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 23350, 1635, 3384, 4487, 13, 298, 28338, 7, 3506, 62, 9127, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40709, 1220, 28, 357, 9464, 62, 23350, 1343, 826, 62, 23350, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4461, 796, 1459, 62, 298, 28338, 532, 40709, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4461, 1875, 1266, 62, 48544, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 48544, 11, 1218, 62, 13466, 62, 48544, 796, 4461, 11, 1266, 62, 48544, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 30053, 796, 3895, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 27160, 796, 1364, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4461, 1875, 1218, 62, 13466, 62, 48544, 290, 4461, 14512, 1266, 62, 48544, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1218, 62, 13466, 62, 48544, 796, 4461, 628, 220, 220, 220, 1441, 1266, 62, 48544, 11, 1218, 62, 13466, 62, 48544, 11, 1266, 62, 30053, 11, 1266, 62, 27160, 628, 198, 4871, 26423, 27660, 9487, 7483, 7, 8692, 13, 29800, 9487, 7483, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 40117, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 65, 1040, 357, 600, 2599, 22246, 1271, 286, 41701, 973, 329, 1221, 1186, 2890, 12948, 3815, 618, 1262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4600, 26791, 13, 13749, 21857, 44646, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1554, 26836, 357, 4033, 26448, 13, 12286, 11600, 8, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 284, 62, 26518, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 257, 29681, 53, 528, 10552, 286, 262, 2551, 5509, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 10863, 31300, 12861, 57, 62, 38604, 7036, 1961, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 10786, 34960, 85, 528, 318, 407, 6589, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 16605, 796, 4823, 85, 528, 13, 19511, 1470, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 751, 62, 17440, 7, 944, 13, 15763, 11, 705, 15, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 16605, 198 ]
2.298723
1,175
from influxdb import InfluxDBClient import json import config import blegateway influxCONFIG = config.get_config('influx') ids = config.get_config('identifiers')
[ 6738, 25065, 9945, 1330, 4806, 22564, 11012, 11792, 198, 11748, 33918, 198, 11748, 4566, 198, 11748, 275, 34637, 1014, 198, 198, 10745, 22564, 10943, 16254, 796, 4566, 13, 1136, 62, 11250, 10786, 10745, 22564, 11537, 198, 2340, 796, 4566, 13, 1136, 62, 11250, 10786, 738, 13350, 11537 ]
3.446809
47
"""The data models used in ARL: .. note:: There are two visibility formats: :class:`BlockVisibility` is conceived as an ingest and calibration format. The visibility data are kept in a block of shape (number antennas, number antennas, number channels, number polarisation). One block is kept per integration. The other columns are time and uvw. The sampling in time is therefore the same for all baselines. :class:`Visibility` is designed to hold coalesced data where the integration time and channel width can vary with baseline length. The visibility data are kept in a visibility vector of length equal to the number of polarisations. Everything else is a separate column: time, frequency, uvw, channel_bandwidth, integration time. """ import sys import logging from copy import deepcopy from typing import Union import numpy from astropy import units as u from astropy.coordinates import SkyCoord import warnings from astropy.wcs import FITSFixedWarning warnings.simplefilter('ignore', FITSFixedWarning) from data_models.polarisation import PolarisationFrame, ReceptorFrame log = logging.getLogger(__name__) class Configuration: """ Describe a Configuration as locations in x,y,z, mount type, diameter, names, and overall location """ def __init__(self, name='', data=None, location=None, names="%s", xyz=None, mount="alt-az", frame=None, receptor_frame=ReceptorFrame("linear"), diameter=None): """Configuration object describing data for processing :param name: :param data: :param location: :param names: :param xyz: :param mount: :param frame: :param receptor_frame: :param diameter: """ if data is None and xyz is not None: desc = [('names', '>U6'), ('xyz', '>f8', (3,)), ('diameter', '>f8'), ('mount', '>U5')] nants = xyz.shape[0] if isinstance(names, str): names = [names % ant for ant in range(nants)] if isinstance(mount, str): mount = numpy.repeat(mount, nants) data = numpy.zeros(shape=[nants], dtype=desc) data['names'] = names data['xyz'] = xyz data['mount'] = mount data['diameter'] = diameter self.name = name self.data = data self.location = location self.frame = frame self.receptor_frame = receptor_frame def __str__(self): """Default printer for Skycomponent """ s = "Configuration:\n" s += "\nName: %s\n" % self.name s += "\tNumber of antennas/stations: %s\n" % len(self.names) s += "\tNames: %s\n" % self.names s += "\tDiameter: %s\n" % self.diameter s += "\tMount: %s\n" % self.mount s += "\tXYZ: %s\n" % self.xyz return s def size(self): """ Return size in GB """ size = 0 size += self.data.size * sys.getsizeof(self.data) return size / 1024.0 / 1024.0 / 1024.0 @property def names(self): """ Names of the antennas/stations""" return self.data['names'] @property def diameter(self): """ diameter of antennas/stations """ return self.data['diameter'] @property def xyz(self): """ XYZ locations of antennas/stations """ return self.data['xyz'] @property def mount(self): """ Mount type """ return self.data['mount'] class GainTable: """ Gain table with data_models: time, antenna, gain[:, chan, rec, rec], weight columns The weight is usually that output from gain solvers. """ def __init__(self, data=None, gain: numpy.array = None, time: numpy.array = None, interval=None, weight: numpy.array = None, residual: numpy.array = None, frequency: numpy.array = None, receptor_frame: ReceptorFrame = ReceptorFrame("linear")): """ Create a gaintable from arrays The definition of gain is: Vobs = g_i g_j^* Vmodel :param interval: :param data: :param gain: [:, nchan, nrec, nrec] :param time: Centroid of solution :param interval: Interval of validity :param weight: :param residual: :param frequency: :param receptor_frame: :return: Gaintable """ if data is None and gain is not None: nrec = receptor_frame.nrec nrows = gain.shape[0] nants = gain.shape[1] nchan = gain.shape[2] assert len(frequency) == nchan, "Discrepancy in frequency channels" desc = [('gain', '>c16', (nants, nchan, nrec, nrec)), ('weight', '>f8', (nants, nchan, nrec, nrec)), ('residual', '>f8', (nchan, nrec, nrec)), ('time', '>f8'), ('interval', '>f8')] data = numpy.zeros(shape=[nrows], dtype=desc) data['gain'] = gain data['weight'] = weight data['time'] = time data['interval'] = interval data['residual'] = residual self.data = data self.frequency = frequency self.receptor_frame = receptor_frame def size(self): """ Return size in GB """ size = 0 size += self.data.size * sys.getsizeof(self.data) return size / 1024.0 / 1024.0 / 1024.0 @property @property @property @property @property @property @property @property @property def __str__(self): """Default printer for GainTable """ s = "GainTable:\n" s += "\tTimes: %s\n" % str(self.ntimes) s += "\tData shape: %s\n" % str(self.data.shape) s += "\tReceptor frame: %s\n" % str(self.receptor_frame.type) return s class Image: """Image class with Image data (as a numpy.array) and the AstroPy `implementation of a World Coodinate System <http://docs.astropy.org/en/stable/wcs>`_ Many operations can be done conveniently using numpy processing_library on Image.data_models. Most of the imaging processing_library require an image in canonical format: - 4 axes: RA, DEC, POL, FREQ The conventions for indexing in WCS and numpy are opposite. - In astropy.wcs, the order is (longitude, latitude, polarisation, frequency) - in numpy, the order is (frequency, polarisation, latitude, longitude) .. warning:: The polarisation_frame is kept in two places, the WCS and the polarisation_frame variable. The latter should be considered definitive. """ def __init__(self): """ Empty image """ self.data = None self.wcs = None self.polarisation_frame = None def size(self): """ Return size in GB """ size = 0 size += self.data.nbytes return size / 1024.0 / 1024.0 / 1024.0 # noinspection PyArgumentList @property @property @property @property @property @property @property def __str__(self): """Default printer for Image """ s = "Image:\n" s += "\tShape: %s\n" % str(self.data.shape) s += "\tWCS: %s\n" % self.wcs s += "\tPolarisation frame: %s\n" % str(self.polarisation_frame.type) return s class GridData: """Class to hold Gridded data for Fourier processing - Has four or more coordinates: [chan, pol, z, y, x] where x can be u, l; y can be v, m; z can be w, n The conventions for indexing in WCS and numpy are opposite. - In astropy.wcs, the order is (longitude, latitude, polarisation, frequency) - in numpy, the order is (frequency, polarisation, depth, latitude, longitude) .. warning:: The polarisation_frame is kept in two places, the WCS and the polarisation_frame variable. The latter should be considered definitive. """ def __init__(self): """ Empty image """ self.data = None self.grid_wcs = None self.projection_wcs = None self.polarisation_frame = None def size(self): """ Return size in GB """ size = 0 size += self.data.nbytes return size / 1024.0 / 1024.0 / 1024.0 # noinspection PyArgumentList @property @property @property @property @property @property @property @property def __str__(self): """Default printer for GriddedData """ s = "Gridded data:\n" s += "\tShape: %s\n" % str(self.data.shape) s += "\tGrid WCS: %s\n" % self.grid_wcs s += "\tProjection WCS: %s\n" % self.projection_wcs s += "\tPolarisation frame: %s\n" % str(self.polarisation_frame.type) return s class ConvolutionFunction: """Class to hold Gridded data for Fourier processing - Has four or more coordinates: [chan, pol, z, y, x] where x can be u, l; y can be v, m; z can be w, n The conventions for indexing in WCS and numpy are opposite. - In astropy.wcs, the order is (longitude, latitude, polarisation, frequency) - in numpy, the order is (frequency, polarisation, depth, latitude, longitude) .. warning:: The polarisation_frame is kept in two places, the WCS and the polarisation_frame variable. The latter should be considered definitive. """ def __init__(self): """ Empty image """ self.data = None self.grid_wcs = None self.projection_wcs = None self.polarisation_frame = None def size(self): """ Return size in GB """ size = 0 size += self.data.nbytes return size / 1024.0 / 1024.0 / 1024.0 # noinspection PyArgumentList @property @property @property @property @property @property @property @property def __str__(self): """Default printer for GriddedData """ s = "Convolution function:\n" s += "\tShape: %s\n" % str(self.data.shape) s += "\tGrid WCS: %s\n" % self.grid_wcs s += "\tProjection WCS: %s\n" % self.projection_wcs s += "\tPolarisation frame: %s\n" % str(self.polarisation_frame.type) return s class Skycomponent: """Skycomponents are used to represent compact sources on the sky. They possess direction, flux as a function of frequency and polarisation, shape (with params), and polarisation frame. For example, the following creates and predicts the visibility from a collection of point sources drawn from the GLEAM catalog:: sc = create_low_test_skycomponents_from_gleam(flux_limit=1.0, polarisation_frame=PolarisationFrame("stokesIQUV"), frequency=frequency, kind='cubic', phasecentre=phasecentre, radius=0.1) model = create_image_from_visibility(vis, cellsize=0.001, npixel=512, frequency=frequency, polarisation_frame=PolarisationFrame('stokesIQUV')) bm = create_low_test_beam(model=model) sc = apply_beam_to_skycomponent(sc, bm) vis = predict_skycomponent_visibility(vis, sc) """ def __init__(self, direction=None, frequency=None, name=None, flux=None, shape='Point', polarisation_frame=PolarisationFrame('stokesIQUV'), params=None): """ Define the required structure :param direction: SkyCoord :param frequency: numpy.array [nchan] :param name: user friendly name :param flux: numpy.array [nchan, npol] :param shape: str e.g. 'Point' 'Gaussian' :param params: numpy.array shape dependent parameters :param polarisation_frame: Polarisation_frame """ self.direction = direction self.frequency = numpy.array(frequency) self.name = name self.flux = numpy.array(flux) self.shape = shape if params is None: params = {} self.params = params self.polarisation_frame = polarisation_frame assert len(self.frequency.shape) == 1, frequency assert len(self.flux.shape) == 2, flux assert self.frequency.shape[0] == self.flux.shape[0], \ "Frequency shape %s, flux shape %s" % (self.frequency.shape, self.flux.shape) assert polarisation_frame.npol == self.flux.shape[1], \ "Polarisation is %s, flux shape %s" % (polarisation_frame.type, self.flux.shape) @property @property def __str__(self): """Default printer for Skycomponent """ s = "Skycomponent:\n" s += "\tName: %s\n" % self.name s += "\tFlux: %s\n" % self.flux s += "\tFrequency: %s\n" % self.frequency s += "\tDirection: %s\n" % self.direction s += "\tShape: %s\n" % self.shape s += "\tParams: %s\n" % self.params s += "\tPolarisation frame: %s\n" % str(self.polarisation_frame.type) return s class SkyModel: """ A model for the sky """ def __init__(self, images=None, components=None, fixed=False): """ A model of the sky as a list of images and a list of components Use copy_skymodel to make a proper copy of skymodel """ if images is None: images = [] if components is None: components = [] self.images = [im for im in images] self.components = [sc for sc in components] self.fixed = fixed def __str__(self): """Default printer for SkyModel """ s = "SkyModel: fixed: %s\n" % self.fixed for i, sc in enumerate(self.components): s += str(sc) s += "\n" for i, im in enumerate(self.images): s += str(im) s += "\n" return s class Visibility: """ Visibility table class Visibility with uvw, time, integration_time, frequency, channel_bandwidth, a1, a2, vis, weight as separate columns in a numpy structured array, The fundemental unit is a complex vector of polarisation. Visibility is defined to hold an observation with one direction. Polarisation frame is the same for the entire data set and can be stokes, circular, linear The configuration is also an attribute The phasecentre is the direct of delay tracking i.e. n=0. If uvw are rotated then this should be updated with the new delay tracking centre. This is important for wstack and wproject algorithms. If a visibility is created by coalescence then the cindex column is filled with a pointer to the row in the original block visibility that this row has a value for. The original blockvisibility is also preserves as n attribute so that decoalescence is expedited. If you don't need that then the storage can be released by setting self.blockvis to None """ def __init__(self, data=None, frequency=None, channel_bandwidth=None, phasecentre=None, configuration=None, uvw=None, time=None, antenna1=None, antenna2=None, vis=None, weight=None, imaging_weight=None, integration_time=None, polarisation_frame=PolarisationFrame('stokesI'), cindex=None, blockvis=None): """Visibility :param data: :param frequency: :param channel_bandwidth: :param phasecentre: :param configuration: :param uvw: :param time: :param antenna1: :param antenna2: :param vis: :param weight: :param imaging_weight: :param integration_time: :param polarisation_frame: :param cindex: :param blockvis: """ if data is None and vis is not None: if imaging_weight is None: imaging_weight = weight nvis = vis.shape[0] assert len(time) == nvis assert len(frequency) == nvis assert len(channel_bandwidth) == nvis assert len(antenna1) == nvis assert len(antenna2) == nvis npol = polarisation_frame.npol desc = [('index', '>i8'), ('uvw', '>f8', (3,)), ('time', '>f8'), ('frequency', '>f8'), ('channel_bandwidth', '>f8'), ('integration_time', '>f8'), ('antenna1', '>i8'), ('antenna2', '>i8'), ('vis', '>c16', (npol,)), ('weight', '>f8', (npol,)), ('imaging_weight', '>f8', (npol,))] data = numpy.zeros(shape=[nvis], dtype=desc) data['index'] = list(range(nvis)) data['uvw'] = uvw data['time'] = time data['frequency'] = frequency data['channel_bandwidth'] = channel_bandwidth data['integration_time'] = integration_time data['antenna1'] = antenna1 data['antenna2'] = antenna2 data['vis'] = vis data['weight'] = weight data['imaging_weight'] = imaging_weight self.data = data # numpy structured array self.cindex = cindex self.blockvis = blockvis self.phasecentre = phasecentre # Phase centre of observation self.configuration = configuration # Antenna/station configuration self.polarisation_frame = polarisation_frame self.frequency_map = None def __str__(self): """Default printer for Skycomponent """ ufrequency = numpy.unique(self.frequency) s = "Visibility:\n" s += "\tNumber of visibilities: %s\n" % self.nvis s += "\tNumber of channels: %d\n" % len(ufrequency) s += "\tFrequency: %s\n" % ufrequency s += "\tNumber of polarisations: %s\n" % self.npol s += "\tVisibility shape: %s\n" % str(self.vis.shape) s += "\tPolarisation Frame: %s\n" % self.polarisation_frame.type s += "\tPhasecentre: %s\n" % self.phasecentre s += "\tConfiguration: %s\n" % self.configuration.name return s def size(self): """ Return size in GB """ size = 0 for col in self.data.dtype.fields.keys(): size += self.data[col].nbytes return size / 1024.0 / 1024.0 / 1024.0 @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property class BlockVisibility: """ Block Visibility table class BlockVisibility with uvw, time, integration_time, frequency, channel_bandwidth, pol, a1, a2, vis, weight Columns in a numpy structured array. BlockVisibility is defined to hold an observation with one direction. The phasecentre is the direct of delay tracking i.e. n=0. If uvw are rotated then this should be updated with the new delay tracking centre. This is important for wstack and wproject algorithms. Polarisation frame is the same for the entire data set and can be stokesI, circular, linear The configuration is also an attribute """ def __init__(self, data=None, frequency=None, channel_bandwidth=None, phasecentre=None, configuration=None, uvw=None, time=None, vis=None, weight=None, integration_time=None, polarisation_frame=PolarisationFrame('stokesI'), imaging_weight=None): """BlockVisibility :param data: :param frequency: :param channel_bandwidth: :param phasecentre: :param configuration: :param uvw: :param time: :param vis: :param weight: :param integration_time: :param polarisation_frame: """ if data is None and vis is not None: ntimes, nants, _, nchan, npol = vis.shape assert vis.shape == weight.shape assert len(frequency) == nchan assert len(channel_bandwidth) == nchan desc = [('index', '>i8'), ('uvw', '>f8', (nants, nants, 3)), ('time', '>f8'), ('integration_time', '>f8'), ('vis', '>c16', (nants, nants, nchan, npol)), ('weight', '>f8', (nants, nants, nchan, npol)), ('imaging_weight', '>f8', (nants, nants, nchan, npol))] data = numpy.zeros(shape=[ntimes], dtype=desc) data['index'] = list(range(ntimes)) data['uvw'] = uvw data['time'] = time data['integration_time'] = integration_time data['vis'] = vis data['weight'] = weight data['imaging_weight'] = imaging_weight self.data = data # numpy structured array self.frequency = frequency self.channel_bandwidth = channel_bandwidth self.phasecentre = phasecentre # Phase centre of observation self.configuration = configuration # Antenna/station configuration self.polarisation_frame = polarisation_frame def __str__(self): """Default printer for BlockVisibility """ s = "BlockVisibility:\n" s += "\tNumber of visibilities: %s\n" % self.nvis s += "\tNumber of integrations: %s\n" % len(self.time) s += "\tVisibility shape: %s\n" % str(self.vis.shape) s += "\tNumber of channels: %d\n" % len(self.frequency) s += "\tFrequency: %s\n" % self.frequency s += "\tNumber of polarisations: %s\n" % self.npol s += "\tPolarisation Frame: %s\n" % self.polarisation_frame.type s += "\tPhasecentre: %s\n" % self.phasecentre s += "\tConfiguration: %s\n" % self.configuration.name return s def size(self): """ Return size in GB """ size = 0 for col in self.data.dtype.fields.keys(): size += self.data[col].nbytes return size / 1024.0 / 1024.0 / 1024.0 @property @property @property @property @property @property @property @property @property @property @property @property @property class QA: """ Quality assessment """ def __init__(self, origin=None, data=None, context=None): """QA :param origin: :param data: :param context: """ self.origin = origin # Name of function originating QA assessment self.data = data # Dictionary containing standard fields self.context = context # Context string def __str__(self): """Default printer for QA """ s = "Quality assessment:\n" s += "\tOrigin: %s\n" % self.origin s += "\tContext: %s\n" % self.context s += "\tData:\n" for dataname in self.data.keys(): s += "\t\t%s: %r\n" % (dataname, str(self.data[dataname])) return s class ScienceDataModel: """ Science Data Model""" def __str__(self): """ Deflaut printer for Science Data Model :return: """ return "" def assert_same_chan_pol(o1, o2): """ Assert that two entities indexed over channels and polarisations have the same number of them. """ assert o1.npol == o2.npol, \ "%s and %s have different number of polarisations: %d != %d" % \ (type(o1).__name__, type(o2).__name__, o1.npol, o2.npol) if isinstance(o1, BlockVisibility) and isinstance(o2, BlockVisibility): assert o1.nchan == o2.nchan, \ "%s and %s have different number of channels: %d != %d" % \ (type(o1).__name__, type(o2).__name__, o1.nchan, o2.nchan) def assert_vis_gt_compatible(vis: Union[Visibility, BlockVisibility], gt: GainTable): """ Check if visibility and gaintable are compatible :param vis: :param gt: :return: """ assert vis.nchan == gt.nchan assert vis.npol == gt.nrec * gt.nrec
[ 37811, 464, 1366, 4981, 973, 287, 5923, 43, 25, 198, 198, 492, 3465, 3712, 198, 220, 220, 220, 1318, 389, 734, 20742, 17519, 25, 628, 220, 220, 220, 1058, 4871, 25, 63, 12235, 15854, 2247, 63, 318, 21581, 355, 281, 26151, 290, 36537, 5794, 13, 383, 20742, 198, 220, 220, 220, 1366, 389, 4030, 287, 257, 2512, 286, 5485, 357, 17618, 43813, 11, 1271, 43813, 11, 1271, 9619, 11, 198, 220, 220, 220, 1271, 13559, 5612, 737, 1881, 2512, 318, 4030, 583, 11812, 13, 383, 584, 15180, 389, 640, 290, 334, 85, 86, 13, 198, 220, 220, 220, 383, 19232, 287, 640, 318, 4361, 262, 976, 329, 477, 1615, 20655, 13, 628, 220, 220, 220, 1058, 4871, 25, 63, 15854, 2247, 63, 318, 3562, 284, 1745, 46064, 771, 1366, 810, 262, 11812, 640, 290, 198, 220, 220, 220, 6518, 9647, 460, 7565, 351, 14805, 4129, 13, 383, 20742, 1366, 389, 4030, 287, 257, 20742, 198, 220, 220, 220, 15879, 286, 4129, 4961, 284, 262, 1271, 286, 13559, 38189, 13, 11391, 2073, 318, 257, 4553, 198, 220, 220, 220, 5721, 25, 640, 11, 8373, 11, 334, 85, 86, 11, 6518, 62, 3903, 10394, 11, 11812, 640, 13, 628, 198, 37811, 198, 198, 11748, 25064, 198, 198, 11748, 18931, 198, 198, 6738, 4866, 1330, 2769, 30073, 198, 6738, 19720, 1330, 4479, 198, 198, 11748, 299, 32152, 198, 6738, 6468, 28338, 1330, 4991, 355, 334, 198, 6738, 6468, 28338, 13, 37652, 17540, 1330, 5274, 7222, 585, 198, 198, 11748, 14601, 198, 6738, 6468, 28338, 13, 12712, 1330, 376, 29722, 13715, 20361, 198, 40539, 654, 13, 36439, 24455, 10786, 46430, 3256, 376, 29722, 13715, 20361, 8, 198, 198, 6738, 1366, 62, 27530, 13, 79, 6192, 5612, 1330, 32909, 5612, 19778, 11, 797, 49492, 19778, 198, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 4871, 28373, 25, 198, 220, 220, 220, 37227, 39373, 4892, 257, 28373, 355, 7064, 287, 2124, 11, 88, 11, 89, 11, 3817, 2099, 11, 14753, 11, 3891, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 4045, 4067, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1438, 11639, 3256, 1366, 28, 14202, 11, 4067, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 2625, 4, 82, 1600, 2124, 45579, 28, 14202, 11, 3817, 2625, 2501, 12, 1031, 1600, 5739, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17408, 62, 14535, 28, 3041, 49492, 19778, 7203, 29127, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14753, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38149, 2134, 12059, 1366, 329, 7587, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4067, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2124, 45579, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3817, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 5739, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 17408, 62, 14535, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 14753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 318, 6045, 290, 2124, 45579, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1715, 796, 685, 10786, 14933, 3256, 705, 29, 52, 21, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 5431, 89, 3256, 705, 29, 69, 23, 3256, 357, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13173, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 14948, 3256, 705, 29, 52, 20, 11537, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 1187, 796, 2124, 45579, 13, 43358, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 14933, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 796, 685, 14933, 4064, 1885, 329, 1885, 287, 2837, 7, 26501, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 14948, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3817, 796, 299, 32152, 13, 44754, 7, 14948, 11, 299, 1187, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 299, 32152, 13, 9107, 418, 7, 43358, 41888, 26501, 4357, 288, 4906, 28, 20147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 14933, 20520, 796, 3891, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 5431, 89, 20520, 796, 2124, 45579, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 14948, 20520, 796, 3817, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 67, 13173, 20520, 796, 14753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 796, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 24886, 796, 4067, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14535, 796, 5739, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 260, 49492, 62, 14535, 796, 17408, 62, 14535, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 5274, 42895, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 38149, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 77, 5376, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 43813, 14, 301, 602, 25, 4064, 82, 59, 77, 1, 4064, 18896, 7, 944, 13, 14933, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 36690, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 14933, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 35, 13173, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 67, 13173, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 35452, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 14948, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 34278, 57, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 5431, 89, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 13, 7857, 1635, 25064, 13, 11407, 1096, 1659, 7, 944, 13, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 3891, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 28531, 286, 262, 43813, 14, 301, 602, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 17816, 14933, 20520, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 14753, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14753, 286, 43813, 14, 301, 602, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 17816, 67, 13173, 20520, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 2124, 45579, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 41420, 57, 7064, 286, 43813, 14, 301, 602, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 17816, 5431, 89, 20520, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 3817, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5628, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 17816, 14948, 20520, 628, 198, 4871, 21686, 10962, 25, 198, 220, 220, 220, 37227, 21686, 3084, 351, 1366, 62, 27530, 25, 640, 11, 20509, 11, 4461, 58, 45299, 442, 272, 11, 664, 11, 664, 4357, 3463, 15180, 628, 220, 220, 220, 383, 3463, 318, 3221, 326, 5072, 422, 4461, 1540, 690, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1366, 28, 14202, 11, 4461, 25, 299, 32152, 13, 18747, 796, 6045, 11, 640, 25, 299, 32152, 13, 18747, 796, 6045, 11, 16654, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3463, 25, 299, 32152, 13, 18747, 796, 6045, 11, 29598, 25, 299, 32152, 13, 18747, 796, 6045, 11, 8373, 25, 299, 32152, 13, 18747, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17408, 62, 14535, 25, 797, 49492, 19778, 796, 797, 49492, 19778, 7203, 29127, 4943, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13610, 257, 308, 2913, 540, 422, 26515, 628, 220, 220, 220, 220, 220, 220, 220, 383, 6770, 286, 4461, 318, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 569, 8158, 796, 308, 62, 72, 308, 62, 73, 61, 9, 569, 19849, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 16654, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4461, 25, 685, 45299, 299, 3147, 11, 299, 8344, 11, 299, 8344, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 640, 25, 1979, 3882, 286, 4610, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 16654, 25, 4225, 2100, 286, 19648, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3463, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 29598, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8373, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 17408, 62, 14535, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 402, 2913, 540, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 318, 6045, 290, 4461, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 8344, 796, 17408, 62, 14535, 13, 77, 8344, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 8516, 796, 4461, 13, 43358, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 1187, 796, 4461, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 3147, 796, 4461, 13, 43358, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 35324, 8, 6624, 299, 3147, 11, 366, 15642, 7856, 3883, 287, 8373, 9619, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1715, 796, 685, 10786, 48544, 3256, 705, 29, 66, 1433, 3256, 357, 26501, 11, 299, 3147, 11, 299, 8344, 11, 299, 8344, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 6551, 3256, 705, 29, 69, 23, 3256, 357, 26501, 11, 299, 3147, 11, 299, 8344, 11, 299, 8344, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 411, 312, 723, 3256, 705, 29, 69, 23, 3256, 357, 77, 3147, 11, 299, 8344, 11, 299, 8344, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2435, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 3849, 2100, 3256, 705, 29, 69, 23, 11537, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 299, 32152, 13, 9107, 418, 7, 43358, 41888, 77, 8516, 4357, 288, 4906, 28, 20147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 48544, 20520, 796, 4461, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 6551, 20520, 796, 3463, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 2435, 20520, 796, 640, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 3849, 2100, 20520, 796, 16654, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 411, 312, 723, 20520, 796, 29598, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35324, 796, 8373, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 260, 49492, 62, 14535, 796, 17408, 62, 14535, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 13, 7857, 1635, 25064, 13, 11407, 1096, 1659, 7, 944, 13, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 21686, 10962, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 38, 391, 10962, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 28595, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 429, 999, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 6601, 5485, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 7890, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 3041, 49492, 5739, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 260, 49492, 62, 14535, 13, 4906, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 7412, 25, 198, 220, 220, 220, 37227, 5159, 1398, 351, 7412, 1366, 357, 292, 257, 299, 32152, 13, 18747, 8, 290, 262, 35167, 20519, 4600, 320, 32851, 286, 198, 220, 220, 220, 257, 2159, 327, 702, 4559, 4482, 1279, 4023, 1378, 31628, 13, 459, 28338, 13, 2398, 14, 268, 14, 31284, 14, 12712, 29, 63, 62, 628, 220, 220, 220, 4650, 4560, 460, 307, 1760, 29801, 1262, 299, 32152, 7587, 62, 32016, 319, 7412, 13, 7890, 62, 27530, 13, 628, 220, 220, 220, 4042, 286, 262, 19560, 7587, 62, 32016, 2421, 281, 2939, 287, 40091, 5794, 25, 198, 220, 220, 220, 532, 604, 34197, 25, 17926, 11, 27196, 11, 20634, 11, 44253, 48, 628, 220, 220, 220, 383, 21396, 329, 6376, 278, 287, 45410, 290, 299, 32152, 389, 6697, 13, 198, 220, 220, 220, 532, 554, 6468, 28338, 13, 12712, 11, 262, 1502, 318, 357, 6511, 3984, 11, 32477, 11, 13559, 5612, 11, 8373, 8, 198, 220, 220, 220, 532, 287, 299, 32152, 11, 262, 1502, 318, 357, 35324, 11, 13559, 5612, 11, 32477, 11, 890, 3984, 8, 628, 220, 220, 220, 11485, 6509, 3712, 198, 220, 220, 220, 220, 220, 220, 220, 383, 13559, 5612, 62, 14535, 318, 4030, 287, 734, 4113, 11, 262, 45410, 290, 262, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 7885, 13, 383, 6846, 815, 307, 3177, 17347, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 33523, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12712, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 6045, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 13, 77, 33661, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 28100, 1713, 8053, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 7412, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 5159, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 33383, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 7890, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 54, 7902, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 12712, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 5739, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 24846, 6601, 25, 198, 220, 220, 220, 37227, 9487, 284, 1745, 1902, 1638, 276, 1366, 329, 34296, 5277, 7587, 198, 220, 220, 220, 532, 7875, 1440, 393, 517, 22715, 25, 685, 3147, 11, 755, 11, 1976, 11, 331, 11, 2124, 60, 810, 2124, 460, 307, 334, 11, 300, 26, 331, 460, 307, 410, 11, 285, 26, 1976, 460, 307, 266, 11, 299, 628, 220, 220, 220, 383, 21396, 329, 6376, 278, 287, 45410, 290, 299, 32152, 389, 6697, 13, 198, 220, 220, 220, 532, 554, 6468, 28338, 13, 12712, 11, 262, 1502, 318, 357, 6511, 3984, 11, 32477, 11, 13559, 5612, 11, 8373, 8, 198, 220, 220, 220, 532, 287, 299, 32152, 11, 262, 1502, 318, 357, 35324, 11, 13559, 5612, 11, 6795, 11, 32477, 11, 890, 3984, 8, 628, 220, 220, 220, 11485, 6509, 3712, 198, 220, 220, 220, 220, 220, 220, 220, 383, 13559, 5612, 62, 14535, 318, 4030, 287, 734, 4113, 11, 262, 45410, 290, 262, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 7885, 13, 383, 6846, 815, 307, 3177, 17347, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 33523, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 62, 12712, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16302, 295, 62, 12712, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 6045, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 13, 77, 33661, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 28100, 1713, 8053, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 1902, 1638, 276, 6601, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 8642, 1638, 276, 1366, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 33383, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 7890, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 41339, 45410, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 25928, 62, 12712, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 16775, 295, 45410, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 16302, 295, 62, 12712, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 5739, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 34872, 2122, 22203, 25, 198, 220, 220, 220, 37227, 9487, 284, 1745, 1902, 1638, 276, 1366, 329, 34296, 5277, 7587, 198, 220, 220, 220, 532, 7875, 1440, 393, 517, 22715, 25, 685, 3147, 11, 755, 11, 1976, 11, 331, 11, 2124, 60, 810, 2124, 460, 307, 334, 11, 300, 26, 331, 460, 307, 410, 11, 285, 26, 1976, 460, 307, 266, 11, 299, 628, 220, 220, 220, 383, 21396, 329, 6376, 278, 287, 45410, 290, 299, 32152, 389, 6697, 13, 198, 220, 220, 220, 532, 554, 6468, 28338, 13, 12712, 11, 262, 1502, 318, 357, 6511, 3984, 11, 32477, 11, 13559, 5612, 11, 8373, 8, 198, 220, 220, 220, 532, 287, 299, 32152, 11, 262, 1502, 318, 357, 35324, 11, 13559, 5612, 11, 6795, 11, 32477, 11, 890, 3984, 8, 628, 220, 220, 220, 11485, 6509, 3712, 198, 220, 220, 220, 220, 220, 220, 220, 383, 13559, 5612, 62, 14535, 318, 4030, 287, 734, 4113, 11, 262, 45410, 290, 262, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 7885, 13, 383, 6846, 815, 307, 3177, 17347, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 33523, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 62, 12712, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16302, 295, 62, 12712, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 6045, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 13, 77, 33661, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 28100, 1713, 8053, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 1902, 1638, 276, 6601, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 3103, 85, 2122, 2163, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 33383, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 7890, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 41339, 45410, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 25928, 62, 12712, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 16775, 295, 45410, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 16302, 295, 62, 12712, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 5739, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 5274, 42895, 25, 198, 220, 220, 220, 37227, 22308, 5589, 3906, 389, 973, 284, 2380, 16001, 4237, 319, 262, 6766, 13, 1119, 8588, 4571, 11, 198, 220, 220, 220, 28462, 355, 257, 2163, 286, 8373, 290, 13559, 5612, 11, 5485, 357, 4480, 42287, 828, 290, 13559, 5612, 5739, 13, 628, 220, 220, 220, 1114, 1672, 11, 262, 1708, 8075, 290, 26334, 262, 20742, 422, 257, 4947, 286, 966, 4237, 198, 220, 220, 220, 7428, 422, 262, 402, 2538, 2390, 18388, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 629, 796, 2251, 62, 9319, 62, 9288, 62, 15688, 5589, 3906, 62, 6738, 62, 70, 293, 321, 7, 69, 22564, 62, 32374, 28, 16, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13559, 5612, 62, 14535, 28, 47, 6192, 5612, 19778, 7203, 301, 3369, 40, 10917, 53, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8373, 28, 35324, 11, 1611, 11639, 66, 549, 291, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7108, 1087, 260, 28, 40715, 1087, 260, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16874, 28, 15, 13, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 2251, 62, 9060, 62, 6738, 62, 4703, 2247, 7, 4703, 11, 4778, 1096, 28, 15, 13, 8298, 11, 299, 32515, 28, 25836, 11, 8373, 28, 35324, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13559, 5612, 62, 14535, 28, 47, 6192, 5612, 19778, 10786, 301, 3369, 40, 10917, 53, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 275, 76, 796, 2251, 62, 9319, 62, 9288, 62, 40045, 7, 19849, 28, 19849, 8, 198, 220, 220, 220, 220, 220, 220, 220, 629, 796, 4174, 62, 40045, 62, 1462, 62, 15688, 42895, 7, 1416, 11, 275, 76, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1490, 796, 4331, 62, 15688, 42895, 62, 4703, 2247, 7, 4703, 11, 629, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4571, 28, 14202, 11, 8373, 28, 14202, 11, 1438, 28, 14202, 11, 28462, 28, 14202, 11, 5485, 11639, 12727, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13559, 5612, 62, 14535, 28, 47, 6192, 5612, 19778, 10786, 301, 3369, 40, 10917, 53, 33809, 42287, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2896, 500, 262, 2672, 4645, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4571, 25, 5274, 7222, 585, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8373, 25, 299, 32152, 13, 18747, 685, 77, 3147, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1438, 25, 2836, 8030, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 28462, 25, 299, 32152, 13, 18747, 685, 77, 3147, 11, 299, 16104, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 5485, 25, 965, 304, 13, 70, 13, 705, 12727, 6, 705, 35389, 31562, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 42287, 25, 299, 32152, 13, 18747, 5485, 10795, 10007, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 13559, 5612, 62, 14535, 25, 32909, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37295, 796, 4571, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35324, 796, 299, 32152, 13, 18747, 7, 35324, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 796, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 69, 22564, 796, 299, 32152, 13, 18747, 7, 69, 22564, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43358, 796, 5485, 198, 220, 220, 220, 220, 220, 220, 220, 611, 42287, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37266, 796, 42287, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 944, 13, 35324, 13, 43358, 8, 6624, 352, 11, 8373, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 944, 13, 69, 22564, 13, 43358, 8, 6624, 362, 11, 28462, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2116, 13, 35324, 13, 43358, 58, 15, 60, 6624, 2116, 13, 69, 22564, 13, 43358, 58, 15, 4357, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 37, 28707, 5485, 4064, 82, 11, 28462, 5485, 4064, 82, 1, 4064, 357, 944, 13, 35324, 13, 43358, 11, 2116, 13, 69, 22564, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 13559, 5612, 62, 14535, 13, 77, 16104, 6624, 2116, 13, 69, 22564, 13, 43358, 58, 16, 4357, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 47, 6192, 5612, 318, 4064, 82, 11, 28462, 5485, 4064, 82, 1, 4064, 357, 79, 6192, 5612, 62, 14535, 13, 4906, 11, 2116, 13, 69, 22564, 13, 43358, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 5274, 42895, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 22308, 42895, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 5376, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 37, 22564, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 69, 22564, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 37, 28707, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 35324, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 35, 4154, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 37295, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 33383, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 43358, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 10044, 4105, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 37266, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 5739, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 5274, 17633, 25, 198, 220, 220, 220, 37227, 317, 2746, 329, 262, 6766, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 4263, 28, 14202, 11, 6805, 28, 14202, 11, 5969, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 317, 2746, 286, 262, 6766, 355, 257, 1351, 286, 4263, 290, 257, 1351, 286, 6805, 628, 220, 220, 220, 220, 220, 220, 220, 5765, 4866, 62, 15688, 19849, 284, 787, 257, 1774, 4866, 286, 6766, 19849, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4263, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6805, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6805, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17566, 796, 685, 320, 329, 545, 287, 4263, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5589, 3906, 796, 685, 1416, 329, 629, 287, 6805, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34021, 796, 5969, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 5274, 17633, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 22308, 17633, 25, 5969, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 34021, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 629, 287, 27056, 378, 7, 944, 13, 5589, 3906, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 965, 7, 1416, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 545, 287, 27056, 378, 7, 944, 13, 17566, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 965, 7, 320, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 6911, 2247, 25, 198, 220, 220, 220, 37227, 6911, 2247, 3084, 1398, 628, 220, 220, 220, 6911, 2247, 351, 334, 85, 86, 11, 640, 11, 11812, 62, 2435, 11, 8373, 11, 6518, 62, 3903, 10394, 11, 257, 16, 11, 257, 17, 11, 1490, 11, 3463, 198, 220, 220, 220, 355, 4553, 15180, 287, 257, 299, 32152, 20793, 7177, 11, 383, 1814, 972, 282, 4326, 318, 257, 3716, 15879, 286, 13559, 5612, 13, 628, 220, 220, 220, 6911, 2247, 318, 5447, 284, 1745, 281, 13432, 351, 530, 4571, 13, 198, 220, 220, 220, 32909, 5612, 5739, 318, 262, 976, 329, 262, 2104, 1366, 900, 290, 460, 307, 336, 3369, 11, 18620, 11, 14174, 198, 220, 220, 220, 383, 8398, 318, 635, 281, 11688, 628, 220, 220, 220, 383, 7108, 1087, 260, 318, 262, 1277, 286, 5711, 9646, 1312, 13, 68, 13, 299, 28, 15, 13, 1002, 334, 85, 86, 389, 38375, 788, 428, 198, 220, 220, 220, 815, 307, 6153, 351, 262, 649, 5711, 9646, 7372, 13, 770, 318, 1593, 329, 266, 25558, 290, 266, 16302, 198, 220, 220, 220, 16113, 13, 628, 220, 220, 220, 1002, 257, 20742, 318, 2727, 416, 46064, 43696, 788, 262, 269, 9630, 5721, 318, 5901, 351, 257, 17562, 284, 262, 198, 220, 220, 220, 5752, 287, 262, 2656, 2512, 20742, 326, 428, 5752, 468, 257, 1988, 329, 13, 383, 2656, 2512, 4703, 2247, 198, 220, 220, 220, 318, 635, 43759, 355, 299, 11688, 523, 326, 875, 78, 2040, 43696, 318, 13604, 863, 13, 1002, 345, 836, 470, 761, 326, 788, 198, 220, 220, 220, 262, 6143, 460, 307, 2716, 416, 4634, 2116, 13, 9967, 4703, 284, 6045, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 14202, 11, 8373, 28, 14202, 11, 6518, 62, 3903, 10394, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7108, 1087, 260, 28, 14202, 11, 8398, 28, 14202, 11, 334, 85, 86, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 28, 14202, 11, 20509, 16, 28, 14202, 11, 20509, 17, 28, 14202, 11, 1490, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3463, 28, 14202, 11, 19560, 62, 6551, 28, 14202, 11, 11812, 62, 2435, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13559, 5612, 62, 14535, 28, 47, 6192, 5612, 19778, 10786, 301, 3369, 40, 33809, 269, 9630, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2512, 4703, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15854, 2247, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8373, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6518, 62, 3903, 10394, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 7108, 1087, 260, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8398, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 334, 85, 86, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 640, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 20509, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 20509, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1490, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3463, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 19560, 62, 6551, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11812, 62, 2435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 13559, 5612, 62, 14535, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 269, 9630, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2512, 4703, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 318, 6045, 290, 1490, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 19560, 62, 6551, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19560, 62, 6551, 796, 3463, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 4703, 796, 1490, 13, 43358, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 2435, 8, 6624, 299, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 35324, 8, 6624, 299, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 17620, 62, 3903, 10394, 8, 6624, 299, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 415, 13713, 16, 8, 6624, 299, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 415, 13713, 17, 8, 6624, 299, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 16104, 796, 13559, 5612, 62, 14535, 13, 77, 16104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1715, 796, 685, 10786, 9630, 3256, 705, 29, 72, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 14795, 86, 3256, 705, 29, 69, 23, 3256, 357, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2435, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 35324, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 17620, 62, 3903, 10394, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 18908, 1358, 62, 2435, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 415, 13713, 16, 3256, 705, 29, 72, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 415, 13713, 17, 3256, 705, 29, 72, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 4703, 3256, 705, 29, 66, 1433, 3256, 357, 77, 16104, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 6551, 3256, 705, 29, 69, 23, 3256, 357, 77, 16104, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 320, 3039, 62, 6551, 3256, 705, 29, 69, 23, 3256, 357, 77, 16104, 11, 4008, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 299, 32152, 13, 9107, 418, 7, 43358, 41888, 77, 4703, 4357, 288, 4906, 28, 20147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 9630, 20520, 796, 1351, 7, 9521, 7, 77, 4703, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 14795, 86, 20520, 796, 334, 85, 86, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 2435, 20520, 796, 640, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 35324, 20520, 796, 8373, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 17620, 62, 3903, 10394, 20520, 796, 6518, 62, 3903, 10394, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 18908, 1358, 62, 2435, 20520, 796, 11812, 62, 2435, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 415, 13713, 16, 20520, 796, 20509, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 415, 13713, 17, 20520, 796, 20509, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 4703, 20520, 796, 1490, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 6551, 20520, 796, 3463, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 320, 3039, 62, 6551, 20520, 796, 19560, 62, 6551, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 220, 1303, 299, 32152, 20793, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 66, 9630, 796, 269, 9630, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9967, 4703, 796, 2512, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40715, 1087, 260, 796, 7108, 1087, 260, 220, 1303, 18983, 7372, 286, 13432, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 3924, 796, 8398, 220, 1303, 3738, 13713, 14, 17529, 8398, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35324, 62, 8899, 796, 6045, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 5274, 42895, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 334, 35324, 796, 299, 32152, 13, 34642, 7, 944, 13, 35324, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 15854, 2247, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 1490, 7992, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 77, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 9619, 25, 4064, 67, 59, 77, 1, 4064, 18896, 7, 3046, 28707, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 37, 28707, 25, 4064, 82, 59, 77, 1, 4064, 334, 35324, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 13559, 38189, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 77, 16104, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15854, 2247, 5485, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 4703, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 25184, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 35645, 1087, 260, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 40715, 1087, 260, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 38149, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 11250, 3924, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 329, 951, 287, 2116, 13, 7890, 13, 67, 4906, 13, 25747, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 58, 4033, 4083, 77, 33661, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 628, 198, 4871, 9726, 15854, 2247, 25, 198, 220, 220, 220, 37227, 9726, 6911, 2247, 3084, 1398, 628, 220, 220, 220, 9726, 15854, 2247, 351, 334, 85, 86, 11, 640, 11, 11812, 62, 2435, 11, 8373, 11, 6518, 62, 3903, 10394, 11, 755, 11, 198, 220, 220, 220, 257, 16, 11, 257, 17, 11, 1490, 11, 3463, 29201, 82, 287, 257, 299, 32152, 20793, 7177, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 9726, 15854, 2247, 318, 5447, 284, 1745, 281, 13432, 351, 530, 4571, 13, 628, 220, 220, 220, 383, 7108, 1087, 260, 318, 262, 1277, 286, 5711, 9646, 1312, 13, 68, 13, 299, 28, 15, 13, 1002, 334, 85, 86, 389, 38375, 788, 428, 198, 220, 220, 220, 815, 307, 6153, 351, 262, 649, 5711, 9646, 7372, 13, 770, 318, 1593, 329, 266, 25558, 290, 266, 16302, 198, 220, 220, 220, 16113, 13, 628, 220, 220, 220, 32909, 5612, 5739, 318, 262, 976, 329, 262, 2104, 1366, 900, 290, 460, 307, 336, 3369, 40, 11, 18620, 11, 14174, 198, 220, 220, 220, 220, 198, 220, 220, 220, 383, 8398, 318, 635, 281, 11688, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 14202, 11, 8373, 28, 14202, 11, 6518, 62, 3903, 10394, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7108, 1087, 260, 28, 14202, 11, 8398, 28, 14202, 11, 334, 85, 86, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 28, 14202, 11, 1490, 28, 14202, 11, 3463, 28, 14202, 11, 11812, 62, 2435, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13559, 5612, 62, 14535, 28, 47, 6192, 5612, 19778, 10786, 301, 3369, 40, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19560, 62, 6551, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 12235, 15854, 2247, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8373, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6518, 62, 3903, 10394, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 7108, 1087, 260, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8398, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 334, 85, 86, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 640, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1490, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3463, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11812, 62, 2435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 13559, 5612, 62, 14535, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 318, 6045, 290, 1490, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 22355, 11, 299, 1187, 11, 4808, 11, 299, 3147, 11, 299, 16104, 796, 1490, 13, 43358, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 1490, 13, 43358, 6624, 3463, 13, 43358, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 35324, 8, 6624, 299, 3147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 17620, 62, 3903, 10394, 8, 6624, 299, 3147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1715, 796, 685, 10786, 9630, 3256, 705, 29, 72, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 14795, 86, 3256, 705, 29, 69, 23, 3256, 357, 26501, 11, 299, 1187, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2435, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 18908, 1358, 62, 2435, 3256, 705, 29, 69, 23, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 4703, 3256, 705, 29, 66, 1433, 3256, 357, 26501, 11, 299, 1187, 11, 299, 3147, 11, 299, 16104, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 6551, 3256, 705, 29, 69, 23, 3256, 357, 26501, 11, 299, 1187, 11, 299, 3147, 11, 299, 16104, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 320, 3039, 62, 6551, 3256, 705, 29, 69, 23, 3256, 357, 26501, 11, 299, 1187, 11, 299, 3147, 11, 299, 16104, 4008, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 299, 32152, 13, 9107, 418, 7, 43358, 41888, 429, 999, 4357, 288, 4906, 28, 20147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 9630, 20520, 796, 1351, 7, 9521, 7, 429, 999, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 14795, 86, 20520, 796, 334, 85, 86, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 2435, 20520, 796, 640, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 18908, 1358, 62, 2435, 20520, 796, 11812, 62, 2435, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 4703, 20520, 796, 1490, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 6551, 20520, 796, 3463, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 320, 3039, 62, 6551, 20520, 796, 19560, 62, 6551, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 220, 1303, 299, 32152, 20793, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35324, 796, 8373, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17620, 62, 3903, 10394, 796, 6518, 62, 3903, 10394, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40715, 1087, 260, 796, 7108, 1087, 260, 220, 1303, 18983, 7372, 286, 13432, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 3924, 796, 8398, 220, 1303, 3738, 13713, 14, 17529, 8398, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 6192, 5612, 62, 14535, 796, 13559, 5612, 62, 14535, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 9726, 15854, 2247, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 12235, 15854, 2247, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 1490, 7992, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 77, 4703, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 4132, 9143, 25, 4064, 82, 59, 77, 1, 4064, 18896, 7, 944, 13, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15854, 2247, 5485, 25, 4064, 82, 59, 77, 1, 4064, 965, 7, 944, 13, 4703, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 9619, 25, 4064, 67, 59, 77, 1, 4064, 18896, 7, 944, 13, 35324, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 37, 28707, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 35324, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 15057, 286, 13559, 38189, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 77, 16104, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 47, 6192, 5612, 25184, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 79, 6192, 5612, 62, 14535, 13, 4906, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 35645, 1087, 260, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 40715, 1087, 260, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 38149, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 11250, 3924, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2546, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 2546, 287, 13124, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 329, 951, 287, 2116, 13, 7890, 13, 67, 4906, 13, 25747, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 15853, 2116, 13, 7890, 58, 4033, 4083, 77, 33661, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2546, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 1220, 28119, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 198, 198, 4871, 1195, 32, 25, 198, 220, 220, 220, 37227, 14156, 8922, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 8159, 28, 14202, 11, 1366, 28, 14202, 11, 4732, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 48, 32, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8159, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 47103, 796, 8159, 220, 1303, 6530, 286, 2163, 37962, 1195, 32, 8922, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 220, 1303, 28261, 7268, 3210, 7032, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22866, 796, 4732, 220, 1303, 30532, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19463, 20632, 329, 1195, 32, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 35013, 8922, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 39688, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 47103, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 21947, 25, 4064, 82, 59, 77, 1, 4064, 2116, 13, 22866, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 6601, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 329, 4818, 272, 480, 287, 2116, 13, 7890, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 37082, 83, 59, 83, 4, 82, 25, 4064, 81, 59, 77, 1, 4064, 357, 19608, 272, 480, 11, 965, 7, 944, 13, 7890, 58, 19608, 272, 480, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 264, 628, 198, 4871, 5800, 6601, 17633, 25, 198, 220, 220, 220, 37227, 5800, 6060, 9104, 37811, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2896, 75, 2306, 20632, 329, 5800, 6060, 9104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 628, 198, 4299, 6818, 62, 31642, 62, 3147, 62, 16104, 7, 78, 16, 11, 267, 17, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2195, 861, 326, 734, 12066, 41497, 625, 9619, 290, 13559, 38189, 198, 220, 220, 220, 423, 262, 976, 1271, 286, 606, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6818, 267, 16, 13, 77, 16104, 6624, 267, 17, 13, 77, 16104, 11, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 36521, 82, 290, 4064, 82, 423, 1180, 1271, 286, 13559, 38189, 25, 4064, 67, 14512, 4064, 67, 1, 4064, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 357, 4906, 7, 78, 16, 737, 834, 3672, 834, 11, 2099, 7, 78, 17, 737, 834, 3672, 834, 11, 267, 16, 13, 77, 16104, 11, 267, 17, 13, 77, 16104, 8, 198, 220, 220, 220, 611, 318, 39098, 7, 78, 16, 11, 9726, 15854, 2247, 8, 290, 318, 39098, 7, 78, 17, 11, 9726, 15854, 2247, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 267, 16, 13, 77, 3147, 6624, 267, 17, 13, 77, 3147, 11, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36521, 82, 290, 4064, 82, 423, 1180, 1271, 286, 9619, 25, 4064, 67, 14512, 4064, 67, 1, 4064, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4906, 7, 78, 16, 737, 834, 3672, 834, 11, 2099, 7, 78, 17, 737, 834, 3672, 834, 11, 267, 16, 13, 77, 3147, 11, 267, 17, 13, 77, 3147, 8, 628, 198, 4299, 6818, 62, 4703, 62, 13655, 62, 38532, 7, 4703, 25, 4479, 58, 15854, 2247, 11, 9726, 15854, 2247, 4357, 308, 83, 25, 21686, 10962, 2599, 198, 220, 220, 220, 37227, 6822, 611, 20742, 290, 308, 2913, 540, 389, 11670, 628, 220, 220, 220, 1058, 17143, 1490, 25, 198, 220, 220, 220, 1058, 17143, 308, 83, 25, 198, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6818, 1490, 13, 77, 3147, 6624, 308, 83, 13, 77, 3147, 198, 220, 220, 220, 6818, 1490, 13, 77, 16104, 6624, 308, 83, 13, 77, 8344, 1635, 308, 83, 13, 77, 8344, 198 ]
2.200369
11,394
#tk13.pyw import tkinter as tk root = tk.Tk() root.geometry('300x200') lb = tk.Label(text='This is a Label,This is a label,This is a Label') ms = tk.Label(text='This is a Message.This is a a Message.This is a Message.This is a Message') [widget.pack()for widget in (lb,ms)] root.mainloop()
[ 2, 30488, 1485, 13, 9078, 86, 198, 11748, 256, 74, 3849, 355, 256, 74, 198, 198, 15763, 796, 256, 74, 13, 51, 74, 3419, 198, 15763, 13, 469, 15748, 10786, 6200, 87, 2167, 11537, 198, 23160, 796, 256, 74, 13, 33986, 7, 5239, 11639, 1212, 318, 257, 36052, 11, 1212, 318, 257, 6167, 11, 1212, 318, 257, 36052, 11537, 198, 907, 796, 256, 74, 13, 33986, 7, 5239, 11639, 1212, 318, 257, 16000, 13, 1212, 318, 257, 257, 16000, 13, 1212, 318, 257, 16000, 13, 1212, 318, 257, 16000, 11537, 198, 58, 42655, 13, 8002, 3419, 1640, 26295, 287, 357, 23160, 11, 907, 15437, 198, 198, 15763, 13, 12417, 26268, 3419 ]
2.621622
111
from itertools import izip_longest outpath = "redd-test/" dir = "redd-test/house_1/" with open(dir+'channel_5_6.dat') as f3,\ open(dir+'channel_6_7.dat') as f4, open(dir+'channel_7_5.dat') as f5, open(dir+'channel_8_5.dat') as f6,\ open(dir+'channel_9_3.dat') as f7, open(dir+'channel_11_9.dat') as f8, open(dir+'channel_12_10.dat') as f9,\ open(dir+'channel_15_5.dat') as f12, open(dir+'channel_17_3.dat') as f10, open(dir+'channel_18_3.dat') as f11,\ open(outpath+'redd-combined-1.dat', 'wb') as res: # open(dir+'channel_2.dat') as f12, for l1,l2,l3,l4,l5,l6,l7,l8,l9,l10 in izip_longest(f3,f4,f5,f6,f7,f8,f9,f10,f11,f12, fillvalue=""): res.write("{},{},{},{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip(), l8.rstrip(),\ l9.rstrip(), l10.rstrip())) dir2 = "redd-test/house_2/" with open(dir2+'channel_3_5.dat') as f3,\ open(dir2+'channel_4_3.dat') as f4, open(dir2+'channel_5_1.dat') as f5, open(dir2+'channel_6_9.dat') as f6,\ open(dir2+'channel_7_4.dat') as f7, open(dir2+'channel_8_5.dat') as f8, open(dir2+'channel_9_6.dat') as f9,\ open(outpath+'redd-combined-2.dat', 'wb') as res: for l1,l2,l3,l4,l5,l6,l7 in izip_longest(f3,f4,f5,f6,f7,f8,f9, fillvalue=""): res.write("{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip())) dir3 = "redd-test/house_3/" with open(dir3+'channel_5_3.dat') as f3,\ open(dir3+'channel_7_6.dat') as f4, open(dir3+'channel_9_7.dat') as f5, open(dir3+'channel_10_8.dat') as f6,\ open(dir3+'channel_11_3.dat') as f7, open(dir3+'channel_15_3.dat') as f8, open(dir3+'channel_16_9.dat') as f9,\ open(dir3+'channel_17_3.dat') as f10, open(dir3+'channel_19_3.dat') as f11,\ open(outpath+'redd-combined-3.dat', 'wb') as res: for l1,l2,l3,l4,l5,l6,l7,l8,l9 in izip_longest(f3,f4,f5,f6,f7,f8,f9,f10,f11, fillvalue=""): res.write("{},{},{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip(), l8.rstrip(),\ l9.rstrip())) dir4 = "redd-test/house_4/" with open(dir4+'channel_3_3.dat') as f3,\ open(dir4+'channel_4_8.dat') as f4, open(dir4+'channel_5_5.dat') as f5, open(dir4+'channel_7_4.dat') as f6,\ open(dir4+'channel_8_1.dat') as f7, open(dir4+'channel_13_3.dat') as f8, open(dir4+'channel_14_5.dat') as f9,\ open(dir4+'channel_18_3.dat') as f10, open(dir4+'channel_19_3.dat') as f11,\ open(outpath+'redd-combined-4.dat', 'wb') as res: for l1,l2,l3,l4,l5,l6,l7,l8,l9 in izip_longest(f3,f4,f5,f6,f7,f8,f9,f10,f11, fillvalue=""): res.write("{},{},{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip(), l8.rstrip(),\ l9.rstrip())) dir5 = "redd-test/house_5/" with open(dir5+'channel_3_9.dat') as f3,\ open(dir5+'channel_6_8.dat') as f4, open(dir5+'channel_14_3.dat') as f5, open(dir5+'channel_16_10.dat') as f6,\ open(dir5+'channel_18_6.dat') as f7, open(dir5+'channel_19_3.dat') as f8, open(dir5+'channel_20_7.dat') as f9,\ open(dir5+'channel_23_3.dat') as f10,\ open(outpath+'redd-combined-5.dat', 'wb') as res: for l1,l2,l3,l4,l5,l6,l7,l8 in izip_longest(f3,f4,f5,f6,f7,f8,f9,f10, fillvalue=""): res.write("{},{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip(), l8.rstrip())) dir6 = "redd-test/house_6/" with open(dir6+'channel_3_5.dat') as f3,\ open(dir6+'channel_4_4.dat') as f4, open(dir6+'channel_5_1.dat') as f5, open(dir6+'channel_7_10.dat') as f6,\ open(dir6+'channel_8_6.dat') as f7, open(dir6+'channel_12_2.dat') as f8, open(dir6+'channel_13_2.dat') as f9,\ open(dir6+'channel_14_3.dat') as f10, open(dir6+'channel_15_2.dat') as f11,\ open(outpath+'redd-combined-6.dat', 'wb') as res: for l1,l2,l3,l4,l5,l6,l7,l8,l9 in izip_longest(f3,f4,f5,f6,f7,f8,f9,f10,f11, fillvalue=""): res.write("{},{},{},{},{},{},{},{},{}\n".\ format(l1.rstrip(), l2.rstrip(),l3.rstrip(), l4.rstrip(),\ l5.rstrip(), l6.rstrip(),l7.rstrip(), l8.rstrip(),\ l9.rstrip()))
[ 6738, 340, 861, 10141, 1330, 220, 528, 541, 62, 6511, 395, 198, 198, 448, 6978, 796, 366, 26504, 12, 9288, 30487, 198, 198, 15908, 796, 366, 26504, 12, 9288, 14, 4803, 62, 16, 30487, 198, 198, 4480, 1280, 7, 15908, 10, 6, 17620, 62, 20, 62, 21, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 10, 6, 17620, 62, 21, 62, 22, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 10, 6, 17620, 62, 22, 62, 20, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 10, 6, 17620, 62, 23, 62, 20, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 10, 6, 17620, 62, 24, 62, 18, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 10, 6, 17620, 62, 1157, 62, 24, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 10, 6, 17620, 62, 1065, 62, 940, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 10, 6, 17620, 62, 1314, 62, 20, 13, 19608, 11537, 355, 277, 1065, 11, 1280, 7, 15908, 10, 6, 17620, 62, 1558, 62, 18, 13, 19608, 11537, 355, 277, 940, 11, 1280, 7, 15908, 10, 6, 17620, 62, 1507, 62, 18, 13, 19608, 11537, 355, 277, 1157, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 16, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 1303, 1280, 7, 15908, 10, 6, 17620, 62, 17, 13, 19608, 11537, 355, 277, 1065, 11, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 11, 75, 23, 11, 75, 24, 11, 75, 940, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 69, 940, 11, 69, 1157, 11, 69, 1065, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 22784, 300, 23, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 24, 13, 81, 36311, 22784, 300, 940, 13, 81, 36311, 3419, 4008, 198, 198, 15908, 17, 796, 366, 26504, 12, 9288, 14, 4803, 62, 17, 30487, 198, 198, 4480, 1280, 7, 15908, 17, 10, 6, 17620, 62, 18, 62, 20, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 17, 10, 6, 17620, 62, 19, 62, 18, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 17, 10, 6, 17620, 62, 20, 62, 16, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 17, 10, 6, 17620, 62, 21, 62, 24, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 17, 10, 6, 17620, 62, 22, 62, 19, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 17, 10, 6, 17620, 62, 23, 62, 20, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 17, 10, 6, 17620, 62, 24, 62, 21, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 17, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 3419, 4008, 198, 198, 15908, 18, 796, 366, 26504, 12, 9288, 14, 4803, 62, 18, 30487, 198, 198, 4480, 1280, 7, 15908, 18, 10, 6, 17620, 62, 20, 62, 18, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 18, 10, 6, 17620, 62, 22, 62, 21, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 18, 10, 6, 17620, 62, 24, 62, 22, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 18, 10, 6, 17620, 62, 940, 62, 23, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 18, 10, 6, 17620, 62, 1157, 62, 18, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 18, 10, 6, 17620, 62, 1314, 62, 18, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 18, 10, 6, 17620, 62, 1433, 62, 24, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 18, 10, 6, 17620, 62, 1558, 62, 18, 13, 19608, 11537, 355, 277, 940, 11, 1280, 7, 15908, 18, 10, 6, 17620, 62, 1129, 62, 18, 13, 19608, 11537, 355, 277, 1157, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 18, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 11, 75, 23, 11, 75, 24, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 69, 940, 11, 69, 1157, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 22784, 300, 23, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 24, 13, 81, 36311, 3419, 4008, 198, 198, 15908, 19, 796, 366, 26504, 12, 9288, 14, 4803, 62, 19, 30487, 198, 198, 4480, 1280, 7, 15908, 19, 10, 6, 17620, 62, 18, 62, 18, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 19, 10, 6, 17620, 62, 19, 62, 23, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 19, 10, 6, 17620, 62, 20, 62, 20, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 19, 10, 6, 17620, 62, 22, 62, 19, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 19, 10, 6, 17620, 62, 23, 62, 16, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 19, 10, 6, 17620, 62, 1485, 62, 18, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 19, 10, 6, 17620, 62, 1415, 62, 20, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 19, 10, 6, 17620, 62, 1507, 62, 18, 13, 19608, 11537, 355, 277, 940, 11, 1280, 7, 15908, 19, 10, 6, 17620, 62, 1129, 62, 18, 13, 19608, 11537, 355, 277, 1157, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 19, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 11, 75, 23, 11, 75, 24, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 69, 940, 11, 69, 1157, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 22784, 300, 23, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 24, 13, 81, 36311, 3419, 4008, 198, 198, 15908, 20, 796, 366, 26504, 12, 9288, 14, 4803, 62, 20, 30487, 198, 198, 4480, 1280, 7, 15908, 20, 10, 6, 17620, 62, 18, 62, 24, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 20, 10, 6, 17620, 62, 21, 62, 23, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1415, 62, 18, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1433, 62, 940, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1507, 62, 21, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1129, 62, 18, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1238, 62, 22, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 20, 10, 6, 17620, 62, 1954, 62, 18, 13, 19608, 11537, 355, 277, 940, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 20, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 11, 75, 23, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 69, 940, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 22784, 300, 23, 13, 81, 36311, 3419, 4008, 198, 198, 15908, 21, 796, 366, 26504, 12, 9288, 14, 4803, 62, 21, 30487, 198, 198, 4480, 1280, 7, 15908, 21, 10, 6, 17620, 62, 18, 62, 20, 13, 19608, 11537, 355, 277, 18, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 21, 10, 6, 17620, 62, 19, 62, 19, 13, 19608, 11537, 355, 277, 19, 11, 1280, 7, 15908, 21, 10, 6, 17620, 62, 20, 62, 16, 13, 19608, 11537, 355, 277, 20, 11, 1280, 7, 15908, 21, 10, 6, 17620, 62, 22, 62, 940, 13, 19608, 11537, 355, 277, 21, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 21, 10, 6, 17620, 62, 23, 62, 21, 13, 19608, 11537, 355, 277, 22, 11, 1280, 7, 15908, 21, 10, 6, 17620, 62, 1065, 62, 17, 13, 19608, 11537, 355, 277, 23, 11, 1280, 7, 15908, 21, 10, 6, 17620, 62, 1485, 62, 17, 13, 19608, 11537, 355, 277, 24, 11, 59, 198, 220, 220, 220, 1280, 7, 15908, 21, 10, 6, 17620, 62, 1415, 62, 18, 13, 19608, 11537, 355, 277, 940, 11, 1280, 7, 15908, 21, 10, 6, 17620, 62, 1314, 62, 17, 13, 19608, 11537, 355, 277, 1157, 11, 59, 198, 220, 220, 220, 1280, 7, 448, 6978, 10, 6, 26504, 12, 24011, 1389, 12, 21, 13, 19608, 3256, 705, 39346, 11537, 355, 581, 25, 198, 220, 220, 220, 329, 300, 16, 11, 75, 17, 11, 75, 18, 11, 75, 19, 11, 75, 20, 11, 75, 21, 11, 75, 22, 11, 75, 23, 11, 75, 24, 287, 220, 528, 541, 62, 6511, 395, 7, 69, 18, 11, 69, 19, 11, 69, 20, 11, 69, 21, 11, 69, 22, 11, 69, 23, 11, 69, 24, 11, 69, 940, 11, 69, 1157, 11, 6070, 8367, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 581, 13, 13564, 7203, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 5512, 90, 32239, 77, 1911, 59, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 7, 75, 16, 13, 81, 36311, 22784, 300, 17, 13, 81, 36311, 22784, 75, 18, 13, 81, 36311, 22784, 300, 19, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 20, 13, 81, 36311, 22784, 300, 21, 13, 81, 36311, 22784, 75, 22, 13, 81, 36311, 22784, 300, 23, 13, 81, 36311, 22784, 59, 198, 220, 220, 220, 220, 220, 220, 220, 300, 24, 13, 81, 36311, 3419, 4008, 198 ]
1.823653
2,376
import argparse import subprocess from typing import Iterable, Optional, Tuple from attr import attrib, attrs __version__ = '0.15.0' Command = Tuple[str, ...] @attrs(frozen=True) TOOLS = [ CommandTool('flake8', default_files=()), CommandTool( 'isort', run_params=('-c',), fix_params=(), default_files=('.',) ), CommandTool('mypy'), CommandTool( 'black', run_params=('--check',), fix_params=(), default_files=('.',), ), ] if __name__ == '__main__': main()
[ 11748, 1822, 29572, 198, 11748, 850, 14681, 198, 6738, 19720, 1330, 40806, 540, 11, 32233, 11, 309, 29291, 198, 198, 6738, 708, 81, 1330, 708, 822, 11, 708, 3808, 198, 198, 834, 9641, 834, 796, 705, 15, 13, 1314, 13, 15, 6, 628, 198, 21575, 796, 309, 29291, 58, 2536, 11, 2644, 60, 628, 198, 31, 1078, 3808, 7, 69, 42005, 28, 17821, 8, 628, 198, 10468, 3535, 50, 796, 685, 198, 220, 220, 220, 9455, 25391, 10786, 47597, 23, 3256, 4277, 62, 16624, 28, 3419, 828, 198, 220, 220, 220, 9455, 25391, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 271, 419, 3256, 1057, 62, 37266, 28, 10786, 12, 66, 3256, 828, 4259, 62, 37266, 16193, 828, 4277, 62, 16624, 28, 10786, 2637, 35751, 198, 220, 220, 220, 10612, 198, 220, 220, 220, 9455, 25391, 10786, 1820, 9078, 33809, 198, 220, 220, 220, 9455, 25391, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 13424, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 37266, 28, 10786, 438, 9122, 3256, 828, 198, 220, 220, 220, 220, 220, 220, 220, 4259, 62, 37266, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 16624, 28, 10786, 2637, 11, 828, 198, 220, 220, 220, 10612, 198, 60, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.294872
234
import numpy as np import math import matplotlib.pyplot as plt from matplotlib import cm # Create random input and output data x = np.linspace(-math.pi, math.pi, 2000) y = np.sin(x) # Randomly initialize weights a = np.random.randn() b = np.random.randn() c = np.random.randn() d = np.random.randn() learning_rate = 1e-6 for t in range(2000): # Forward pass: compute predicted y # y = a + b x + c x^2 + d x^3 y_pred = fn_3poly(x, a, b, c, d) # Compute and print loss loss = np.square(y_pred - y).sum() if t % 100 == 99: print(t, loss) # Backprop to compute gradients of a, b, c, d with respect to loss grad_y_pred = 2.0 * (y_pred - y) grad_a = grad_y_pred.sum() grad_b = (grad_y_pred * x).sum() grad_c = (grad_y_pred * x ** 2).sum() grad_d = (grad_y_pred * x ** 3).sum() # Update weights a -= learning_rate * grad_a b -= learning_rate * grad_b c -= learning_rate * grad_c d -= learning_rate * grad_d print(f'Result: y = {a} + {b} x + {c} x^2 + {d} x^3') x_plot = np.arange(-4, 4, 0.02) fig, ax = plt.subplots(1) ax.plot(x_plot, np.sin(x_plot)) ax.plot(x_plot, fn_3poly(x_plot, a, b, c, d)) ax.legend([r'$f(x)=\sin(x)$', r'$a + bx + cx^2 + dx^3$']) ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) fig.tight_layout() fig.show() # Saliency map def fn_3poly_dr(x): """direvative of fn_3poly""" return b + 2 * c * x + 3 * d * x **2 saliency = fn_3poly_dr(x_plot) fig, ax = plt.subplots(1) ax.plot(x_plot, np.sin(x_plot)) ax.plot(x_plot, fn_3poly(x_plot, a, b, c, d)) ax.scatter( x_plot, fn_3poly(x_plot, a, b, c, d), c=np.array(cm.tab10.colors[1]).reshape(1, -1), marker='.', s=20 * (saliency - saliency.min()) ) ax.legend([r'$f(x)=\sin(x)$', '$a + bx + cx^2 + dx^3$\nthickness represents saliency']) ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) fig.tight_layout() fig.show() fig.savefig('images/saliency.png')
[ 11748, 299, 32152, 355, 45941, 198, 11748, 10688, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 2603, 29487, 8019, 1330, 12067, 198, 198, 2, 13610, 4738, 5128, 290, 5072, 1366, 198, 87, 796, 45941, 13, 21602, 10223, 32590, 11018, 13, 14415, 11, 10688, 13, 14415, 11, 4751, 8, 198, 88, 796, 45941, 13, 31369, 7, 87, 8, 628, 198, 198, 2, 14534, 306, 41216, 19590, 198, 64, 796, 45941, 13, 25120, 13, 25192, 77, 3419, 198, 65, 796, 45941, 13, 25120, 13, 25192, 77, 3419, 198, 66, 796, 45941, 13, 25120, 13, 25192, 77, 3419, 198, 67, 796, 45941, 13, 25120, 13, 25192, 77, 3419, 198, 198, 40684, 62, 4873, 796, 352, 68, 12, 21, 198, 1640, 256, 287, 2837, 7, 11024, 2599, 198, 220, 220, 220, 1303, 19530, 1208, 25, 24061, 11001, 331, 198, 220, 220, 220, 1303, 331, 796, 257, 1343, 275, 2124, 1343, 269, 2124, 61, 17, 1343, 288, 2124, 61, 18, 198, 220, 220, 220, 331, 62, 28764, 796, 24714, 62, 18, 35428, 7, 87, 11, 257, 11, 275, 11, 269, 11, 288, 8, 628, 220, 220, 220, 1303, 3082, 1133, 290, 3601, 2994, 198, 220, 220, 220, 2994, 796, 45941, 13, 23415, 7, 88, 62, 28764, 532, 331, 737, 16345, 3419, 198, 220, 220, 220, 611, 256, 4064, 1802, 6624, 7388, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 83, 11, 2994, 8, 628, 220, 220, 220, 1303, 5157, 22930, 284, 24061, 3915, 2334, 286, 257, 11, 275, 11, 269, 11, 288, 351, 2461, 284, 2994, 198, 220, 220, 220, 3915, 62, 88, 62, 28764, 796, 362, 13, 15, 1635, 357, 88, 62, 28764, 532, 331, 8, 198, 220, 220, 220, 3915, 62, 64, 796, 3915, 62, 88, 62, 28764, 13, 16345, 3419, 198, 220, 220, 220, 3915, 62, 65, 796, 357, 9744, 62, 88, 62, 28764, 1635, 2124, 737, 16345, 3419, 198, 220, 220, 220, 3915, 62, 66, 796, 357, 9744, 62, 88, 62, 28764, 1635, 2124, 12429, 362, 737, 16345, 3419, 198, 220, 220, 220, 3915, 62, 67, 796, 357, 9744, 62, 88, 62, 28764, 1635, 2124, 12429, 513, 737, 16345, 3419, 628, 220, 220, 220, 1303, 10133, 19590, 198, 220, 220, 220, 257, 48185, 4673, 62, 4873, 1635, 3915, 62, 64, 198, 220, 220, 220, 275, 48185, 4673, 62, 4873, 1635, 3915, 62, 65, 198, 220, 220, 220, 269, 48185, 4673, 62, 4873, 1635, 3915, 62, 66, 198, 220, 220, 220, 288, 48185, 4673, 62, 4873, 1635, 3915, 62, 67, 198, 198, 4798, 7, 69, 6, 23004, 25, 331, 796, 1391, 64, 92, 1343, 1391, 65, 92, 2124, 1343, 1391, 66, 92, 2124, 61, 17, 1343, 1391, 67, 92, 2124, 61, 18, 11537, 628, 198, 87, 62, 29487, 796, 45941, 13, 283, 858, 32590, 19, 11, 604, 11, 657, 13, 2999, 8, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 8, 198, 897, 13, 29487, 7, 87, 62, 29487, 11, 45941, 13, 31369, 7, 87, 62, 29487, 4008, 198, 897, 13, 29487, 7, 87, 62, 29487, 11, 24714, 62, 18, 35428, 7, 87, 62, 29487, 11, 257, 11, 275, 11, 269, 11, 288, 4008, 198, 897, 13, 1455, 437, 26933, 81, 6, 3, 69, 7, 87, 47505, 59, 31369, 7, 87, 8, 3, 3256, 374, 6, 3, 64, 1343, 275, 87, 1343, 43213, 61, 17, 1343, 44332, 61, 18, 3, 6, 12962, 198, 897, 13, 2777, 1127, 17816, 3506, 6, 4083, 2617, 62, 23504, 7, 25101, 8, 198, 897, 13, 2777, 1127, 17816, 4852, 6, 4083, 2617, 62, 23504, 7, 25101, 8, 198, 5647, 13, 33464, 62, 39786, 3419, 198, 5647, 13, 12860, 3419, 628, 198, 2, 4849, 6160, 3975, 198, 4299, 24714, 62, 18, 35428, 62, 7109, 7, 87, 2599, 198, 220, 220, 220, 37227, 67, 557, 85, 876, 286, 24714, 62, 18, 35428, 37811, 198, 220, 220, 220, 1441, 275, 1343, 362, 1635, 269, 1635, 2124, 1343, 513, 1635, 288, 1635, 2124, 12429, 17, 628, 198, 21680, 6160, 796, 24714, 62, 18, 35428, 62, 7109, 7, 87, 62, 29487, 8, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 8, 198, 897, 13, 29487, 7, 87, 62, 29487, 11, 45941, 13, 31369, 7, 87, 62, 29487, 4008, 198, 897, 13, 29487, 7, 87, 62, 29487, 11, 24714, 62, 18, 35428, 7, 87, 62, 29487, 11, 257, 11, 275, 11, 269, 11, 288, 4008, 198, 897, 13, 1416, 1436, 7, 198, 220, 220, 220, 2124, 62, 29487, 11, 24714, 62, 18, 35428, 7, 87, 62, 29487, 11, 257, 11, 275, 11, 269, 11, 288, 828, 198, 220, 220, 220, 269, 28, 37659, 13, 18747, 7, 11215, 13, 8658, 940, 13, 4033, 669, 58, 16, 35944, 3447, 1758, 7, 16, 11, 532, 16, 828, 18364, 11639, 2637, 11, 220, 198, 220, 220, 220, 264, 28, 1238, 1635, 357, 21680, 6160, 532, 3664, 6160, 13, 1084, 28955, 198, 8, 198, 897, 13, 1455, 437, 26933, 81, 6, 3, 69, 7, 87, 47505, 59, 31369, 7, 87, 8, 3, 3256, 705, 3, 64, 1343, 275, 87, 1343, 43213, 61, 17, 1343, 44332, 61, 18, 3, 59, 77, 400, 624, 1108, 6870, 3664, 6160, 6, 12962, 198, 897, 13, 2777, 1127, 17816, 3506, 6, 4083, 2617, 62, 23504, 7, 25101, 8, 198, 897, 13, 2777, 1127, 17816, 4852, 6, 4083, 2617, 62, 23504, 7, 25101, 8, 198, 5647, 13, 33464, 62, 39786, 3419, 198, 5647, 13, 12860, 3419, 198, 5647, 13, 21928, 5647, 10786, 17566, 14, 21680, 6160, 13, 11134, 11537, 628 ]
2.159737
914
# Copyright (c) 2015 Microsoft Corporation from z3 import * set_option(auto_config=True) x, y = Ints('x y') print eq(x + y, x + y) print eq(x + y, y + x) n = x + y print eq(n, x + y) # x2 is eq to x x2 = Int('x') print eq(x, x2) # the integer variable x is not equal to # the real variable x print eq(Int('x'), Real('x'))
[ 198, 2, 15069, 357, 66, 8, 1853, 5413, 10501, 198, 6738, 1976, 18, 1330, 1635, 198, 2617, 62, 18076, 7, 23736, 62, 11250, 28, 17821, 8, 198, 198, 87, 11, 331, 796, 2558, 82, 10786, 87, 331, 11537, 198, 4798, 37430, 7, 87, 1343, 331, 11, 2124, 1343, 331, 8, 198, 4798, 37430, 7, 87, 1343, 331, 11, 331, 1343, 2124, 8, 198, 77, 796, 2124, 1343, 331, 198, 4798, 37430, 7, 77, 11, 2124, 1343, 331, 8, 198, 2, 2124, 17, 318, 37430, 284, 2124, 198, 87, 17, 796, 2558, 10786, 87, 11537, 220, 198, 4798, 37430, 7, 87, 11, 2124, 17, 8, 198, 2, 262, 18253, 7885, 2124, 318, 407, 4961, 284, 220, 198, 2, 262, 1103, 7885, 2124, 198, 4798, 37430, 7, 5317, 10786, 87, 33809, 6416, 10786, 87, 6, 4008, 198 ]
2.414815
135
# This is a script that turns a KaTrain AI into a sort-of GTP compatible bot import json import random import sys import time import os import json import traceback import math os.environ["KCFG_KIVY_LOG_LEVEL"] = os.environ.get("KCFG_KIVY_LOG_LEVEL", "warning") from katrain.core.ai import generate_ai_move from katrain.core.base_katrain import KaTrainBase from katrain.core.constants import OUTPUT_ERROR, OUTPUT_INFO from katrain.core.engine import EngineDiedException, KataGoEngine from katrain.core.game import Game from katrain.core.sgf_parser import Move from settings import DEFAULT_PORT, bot_strategies, Logger bot = sys.argv[1].strip() port = int(sys.argv[2]) if len(sys.argv) > 2 else DEFAULT_PORT REPORT_SCORE_THRESHOLD = 1.5 MAX_WAIT_ANALYSIS = 10 MAX_PASS = 3 # after opponent passes this many times, we always pass logger = Logger() ENGINE_SETTINGS = { "katago": "", # actual engine settings in engine_server.py "model": "", "config": "", "threads": "", "max_visits": 5, "max_time": 5.0, "_enable_ownership": False, } engine = KataGoEngine(logger, ENGINE_SETTINGS, override_command=f"python engine_connector.py {port}") with open("config.json") as f: settings = json.load(f) all_ai_settings = settings["ai"] sgf_dir = "sgf_ogs/" ai_strategy, x_ai_settings, x_engine_settings = bot_strategies[bot] ai_settings = {**all_ai_settings[ai_strategy], **x_ai_settings} ENGINE_SETTINGS.update(x_engine_settings) print(f"starting bot {bot} using server port {port}", file=sys.stderr) print("setup: ", ai_strategy, ai_settings, engine.override_settings, file=sys.stderr) print(ENGINE_SETTINGS, file=sys.stderr) print(ai_strategy, ai_settings, file=sys.stderr) game = Game(Logger(), engine, game_properties={"SZ": 19, "PW": "OGS", "PB": "OGS"}) while True: line = input().strip() logger.log(f"GOT INPUT {line}", OUTPUT_ERROR) if line.startswith("boardsize"): _, *size = line.strip().split(" ") if len(size) > 1: size = f"{size[0]}:{size[1]}" else: size = int(size[0]) game = Game(Logger(), engine, game_properties={"SZ": size, "PW": "OGS", "PB": "OGS"}) logger.log(f"Init game {game.root.properties}", OUTPUT_ERROR) elif line.startswith("komi"): _, komi = line.split(" ") game.root.set_property("KM", komi.strip()) game.root.set_property("RU", "chinese") logger.log(f"Setting komi {game.root.properties}", OUTPUT_ERROR) elif line.startswith("place_free_handicap"): _, n = line.split(" ") n = int(n) game.place_handicap_stones(n) handicaps = set(game.root.get_list_property("AB")) bx, by = game.board_size while len(handicaps) < min(n, bx * by): # really obscure cases handicaps.add( Move((random.randint(0, bx - 1), random.randint(0, by - 1)), player="B").sgf(board_size=game.board_size) ) game.root.set_property("AB", list(handicaps)) game._calculate_groups() gtp = [Move.from_sgf(m, game.board_size, "B").gtp() for m in handicaps] logger.log(f"Chose handicap placements as {gtp}", OUTPUT_ERROR) print(f"= {' '.join(gtp)}\n") sys.stdout.flush() game.analyze_all_nodes() # re-evaluate root while engine.queries: # and make sure this gets processed time.sleep(0.001) continue elif line.startswith("set_free_handicap"): _, *stones = line.split(" ") game.root.set_property("AB", [Move.from_gtp(move.upper()).sgf(game.board_size) for move in stones]) game._calculate_groups() game.analyze_all_nodes() # re-evaluate root while engine.queries: # and make sure this gets processed time.sleep(0.001) logger.log(f"Set handicap placements to {game.root.get_list_property('AB')}", OUTPUT_ERROR) elif line.startswith("genmove"): _, player = line.strip().split(" ") if player[0].upper() != game.current_node.next_player: logger.log( f"ERROR generating move: UNEXPECTED PLAYER {player} != {game.current_node.next_player}.", OUTPUT_ERROR ) print(f"= ??\n") sys.stdout.flush() continue logger.log(f"{ai_strategy} generating move", OUTPUT_ERROR) game.current_node.analyze(engine) malkovich_analysis(game.current_node) game.root.properties[f"P{game.current_node.next_player}"] = [f"KaTrain {ai_strategy}"] num_passes = sum( [int(n.is_pass or False) for n in game.current_node.nodes_from_root[::-1][0 : 2 * MAX_PASS : 2]] ) bx, by = game.board_size if num_passes >= MAX_PASS and game.current_node.depth - 2 * MAX_PASS >= bx + by: logger.log(f"Forced pass as opponent is passing {MAX_PASS} times", OUTPUT_ERROR) pol = game.current_node.policy if not pol: pol = ["??"] print( f"DISCUSSION:OK, since you passed {MAX_PASS} times after the {bx+by}th move, I will pass as well [policy {pol[-1]:.3%}].", file=sys.stderr, ) move = game.play(Move(None, player=game.current_node.next_player)).move else: move, node = generate_ai_move(game, ai_strategy, ai_settings) logger.log(f"Generated move {move}", OUTPUT_ERROR) print(f"= {move.gtp()}\n") sys.stdout.flush() malkovich_analysis(game.current_node) continue elif line.startswith("play"): _, player, move = line.split(" ") node = game.play(Move.from_gtp(move.upper(), player=player[0].upper()), analyze=False) logger.log(f"played {player} {move}", OUTPUT_ERROR) elif line.startswith("final_score"): logger.log("line=" + line, OUTPUT_ERROR) if "{" in line: gamedata_str = line[12:] game.root.set_property("C", f"AI {ai_strategy} {ai_settings}\nOGS Gamedata: {gamedata_str}") try: gamedata = json.loads(gamedata_str) game.root.set_property( "PW", f"{gamedata['players']['white']['username']} ({rank_to_string(gamedata['players']['white']['rank'])})", ) game.root.set_property( "PB", f"{gamedata['players']['black']['username']} ({rank_to_string(gamedata['players']['black']['rank'])})", ) if any(gamedata["players"][p]["username"] == "katrain-dev-beta" for p in ["white", "black"]): sgf_dir = "sgf_ogs_beta/" except Exception as e: _, _, tb = sys.exc_info() logger.log(f"error while processing gamedata: {e}\n{traceback.format_tb(tb)}", OUTPUT_ERROR) score = game.current_node.format_score() game.game_id += f"_{score}" sgf = game.write_sgf( sgf_dir, trainer_config={"eval_show_ai": True, "save_feedback": [True], "eval_thresholds": []} ) logger.log(f"Game ended. Score was {score} -> saved sgf to {sgf}", OUTPUT_ERROR) sys.stderr.flush() sys.stdout.flush() time.sleep(0.1) # ensure our logging gets handled print(f"= {score}\n") sys.stdout.flush() continue elif line.startswith("quit"): print(f"= \n") break print(f"= \n") sys.stdout.flush() sys.stderr.flush()
[ 2, 770, 318, 257, 4226, 326, 4962, 257, 11611, 44077, 9552, 656, 257, 3297, 12, 1659, 402, 7250, 11670, 10214, 198, 11748, 33918, 198, 11748, 4738, 198, 11748, 25064, 198, 11748, 640, 198, 11748, 28686, 198, 11748, 33918, 198, 11748, 12854, 1891, 198, 11748, 10688, 198, 198, 418, 13, 268, 2268, 14692, 42, 22495, 38, 62, 42, 3824, 56, 62, 25294, 62, 2538, 18697, 8973, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 42, 22495, 38, 62, 42, 3824, 56, 62, 25294, 62, 2538, 18697, 1600, 366, 43917, 4943, 628, 198, 6738, 479, 265, 3201, 13, 7295, 13, 1872, 1330, 7716, 62, 1872, 62, 21084, 198, 6738, 479, 265, 3201, 13, 7295, 13, 8692, 62, 41826, 3201, 1330, 11611, 44077, 14881, 198, 6738, 479, 265, 3201, 13, 7295, 13, 9979, 1187, 1330, 16289, 30076, 62, 24908, 11, 16289, 30076, 62, 10778, 198, 6738, 479, 265, 3201, 13, 7295, 13, 18392, 1330, 7117, 35, 798, 16922, 11, 509, 1045, 5247, 13798, 198, 6738, 479, 265, 3201, 13, 7295, 13, 6057, 1330, 3776, 198, 6738, 479, 265, 3201, 13, 7295, 13, 45213, 69, 62, 48610, 1330, 10028, 198, 198, 6738, 6460, 1330, 5550, 38865, 62, 15490, 11, 10214, 62, 2536, 2397, 444, 11, 5972, 1362, 198, 198, 13645, 796, 25064, 13, 853, 85, 58, 16, 4083, 36311, 3419, 198, 634, 796, 493, 7, 17597, 13, 853, 85, 58, 17, 12962, 611, 18896, 7, 17597, 13, 853, 85, 8, 1875, 362, 2073, 5550, 38865, 62, 15490, 198, 2200, 15490, 62, 6173, 6965, 62, 4221, 19535, 39, 15173, 796, 352, 13, 20, 198, 22921, 62, 15543, 2043, 62, 1565, 1847, 16309, 1797, 796, 838, 198, 22921, 62, 47924, 796, 513, 220, 1303, 706, 6125, 8318, 428, 867, 1661, 11, 356, 1464, 1208, 628, 198, 6404, 1362, 796, 5972, 1362, 3419, 628, 198, 26808, 8881, 62, 28480, 51, 20754, 796, 1391, 198, 220, 220, 220, 366, 41826, 3839, 1298, 366, 1600, 220, 1303, 4036, 3113, 6460, 287, 3113, 62, 15388, 13, 9078, 198, 220, 220, 220, 366, 19849, 1298, 366, 1600, 198, 220, 220, 220, 366, 11250, 1298, 366, 1600, 198, 220, 220, 220, 366, 16663, 82, 1298, 366, 1600, 198, 220, 220, 220, 366, 9806, 62, 4703, 896, 1298, 642, 11, 198, 220, 220, 220, 366, 9806, 62, 2435, 1298, 642, 13, 15, 11, 198, 220, 220, 220, 45434, 21633, 62, 15605, 1056, 1298, 10352, 11, 198, 92, 198, 198, 18392, 796, 509, 1045, 5247, 13798, 7, 6404, 1362, 11, 36924, 8881, 62, 28480, 51, 20754, 11, 20957, 62, 21812, 28, 69, 1, 29412, 3113, 62, 8443, 273, 13, 9078, 1391, 634, 92, 4943, 198, 198, 4480, 1280, 7203, 11250, 13, 17752, 4943, 355, 277, 25, 198, 220, 220, 220, 6460, 796, 33918, 13, 2220, 7, 69, 8, 198, 220, 220, 220, 477, 62, 1872, 62, 33692, 796, 6460, 14692, 1872, 8973, 198, 198, 45213, 69, 62, 15908, 796, 366, 45213, 69, 62, 18463, 30487, 198, 198, 1872, 62, 2536, 4338, 11, 2124, 62, 1872, 62, 33692, 11, 2124, 62, 18392, 62, 33692, 796, 10214, 62, 2536, 2397, 444, 58, 13645, 60, 198, 1872, 62, 33692, 796, 1391, 1174, 439, 62, 1872, 62, 33692, 58, 1872, 62, 2536, 4338, 4357, 12429, 87, 62, 1872, 62, 33692, 92, 198, 198, 26808, 8881, 62, 28480, 51, 20754, 13, 19119, 7, 87, 62, 18392, 62, 33692, 8, 198, 198, 4798, 7, 69, 1, 38690, 10214, 1391, 13645, 92, 1262, 4382, 2493, 1391, 634, 92, 1600, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 4798, 7203, 40406, 25, 33172, 257, 72, 62, 2536, 4338, 11, 257, 72, 62, 33692, 11, 3113, 13, 2502, 13154, 62, 33692, 11, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 4798, 7, 26808, 8881, 62, 28480, 51, 20754, 11, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 4798, 7, 1872, 62, 2536, 4338, 11, 257, 72, 62, 33692, 11, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 198, 6057, 796, 3776, 7, 11187, 1362, 22784, 3113, 11, 983, 62, 48310, 28, 4895, 50, 57, 1298, 678, 11, 366, 47, 54, 1298, 366, 7730, 50, 1600, 366, 49079, 1298, 366, 7730, 50, 20662, 8, 628, 628, 198, 4514, 6407, 25, 198, 220, 220, 220, 1627, 796, 5128, 22446, 36311, 3419, 198, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 38, 2394, 3268, 30076, 1391, 1370, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 611, 1627, 13, 9688, 2032, 342, 7203, 12821, 1096, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 1635, 7857, 796, 1627, 13, 36311, 22446, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 7857, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 277, 1, 90, 7857, 58, 15, 48999, 29164, 7857, 58, 16, 60, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 493, 7, 7857, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 983, 796, 3776, 7, 11187, 1362, 22784, 3113, 11, 983, 62, 48310, 28, 4895, 50, 57, 1298, 2546, 11, 366, 47, 54, 1298, 366, 7730, 50, 1600, 366, 49079, 1298, 366, 7730, 50, 20662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 31768, 983, 1391, 6057, 13, 15763, 13, 48310, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 74, 12753, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 479, 12753, 796, 1627, 13, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7203, 42, 44, 1600, 479, 12753, 13, 36311, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7203, 49, 52, 1600, 366, 354, 3762, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 34149, 479, 12753, 1391, 6057, 13, 15763, 13, 48310, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 5372, 62, 5787, 62, 4993, 291, 499, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 299, 796, 1627, 13, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 493, 7, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 5372, 62, 4993, 291, 499, 62, 28750, 7, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 29103, 1686, 796, 900, 7, 6057, 13, 15763, 13, 1136, 62, 4868, 62, 26745, 7203, 6242, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 275, 87, 11, 416, 796, 983, 13, 3526, 62, 7857, 198, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 4993, 291, 1686, 8, 1279, 949, 7, 77, 11, 275, 87, 1635, 416, 2599, 220, 1303, 1107, 18611, 2663, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29103, 1686, 13, 2860, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10028, 19510, 25120, 13, 25192, 600, 7, 15, 11, 275, 87, 532, 352, 828, 4738, 13, 25192, 600, 7, 15, 11, 416, 532, 352, 36911, 2137, 2625, 33, 11074, 45213, 69, 7, 3526, 62, 7857, 28, 6057, 13, 3526, 62, 7857, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7203, 6242, 1600, 1351, 7, 4993, 291, 1686, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13557, 9948, 3129, 378, 62, 24432, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 308, 34788, 796, 685, 21774, 13, 6738, 62, 45213, 69, 7, 76, 11, 983, 13, 3526, 62, 7857, 11, 366, 33, 11074, 13655, 79, 3419, 329, 285, 287, 29103, 1686, 60, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 1925, 577, 29103, 499, 21957, 3196, 355, 1391, 13655, 79, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 28, 1391, 6, 45302, 22179, 7, 13655, 79, 8, 32239, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 38200, 2736, 62, 439, 62, 77, 4147, 3419, 220, 1303, 302, 12, 49786, 6808, 198, 220, 220, 220, 220, 220, 220, 220, 981, 3113, 13, 421, 10640, 25, 220, 1303, 290, 787, 1654, 428, 3011, 13686, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 15, 13, 8298, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 2617, 62, 5787, 62, 4993, 291, 499, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 1635, 28750, 796, 1627, 13, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7203, 6242, 1600, 685, 21774, 13, 6738, 62, 13655, 79, 7, 21084, 13, 45828, 3419, 737, 45213, 69, 7, 6057, 13, 3526, 62, 7857, 8, 329, 1445, 287, 14966, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13557, 9948, 3129, 378, 62, 24432, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 38200, 2736, 62, 439, 62, 77, 4147, 3419, 220, 1303, 302, 12, 49786, 6808, 198, 220, 220, 220, 220, 220, 220, 220, 981, 3113, 13, 421, 10640, 25, 220, 1303, 290, 787, 1654, 428, 3011, 13686, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 15, 13, 8298, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 7248, 29103, 499, 21957, 3196, 284, 1391, 6057, 13, 15763, 13, 1136, 62, 4868, 62, 26745, 10786, 6242, 11537, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 5235, 21084, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 2137, 796, 1627, 13, 36311, 22446, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2137, 58, 15, 4083, 45828, 3419, 14512, 983, 13, 14421, 62, 17440, 13, 19545, 62, 7829, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 24908, 15453, 1445, 25, 4725, 49864, 9782, 1961, 28180, 1137, 1391, 7829, 92, 14512, 1391, 6057, 13, 14421, 62, 17440, 13, 19545, 62, 7829, 92, 33283, 16289, 30076, 62, 24908, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 28, 19153, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 90, 1872, 62, 2536, 4338, 92, 15453, 1445, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 14421, 62, 17440, 13, 38200, 2736, 7, 18392, 8, 198, 220, 220, 220, 220, 220, 220, 220, 285, 971, 18198, 62, 20930, 7, 6057, 13, 14421, 62, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 48310, 58, 69, 1, 47, 90, 6057, 13, 14421, 62, 17440, 13, 19545, 62, 7829, 92, 8973, 796, 685, 69, 1, 37281, 44077, 1391, 1872, 62, 2536, 4338, 92, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 6603, 274, 796, 2160, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 600, 7, 77, 13, 271, 62, 6603, 393, 10352, 8, 329, 299, 287, 983, 13, 14421, 62, 17440, 13, 77, 4147, 62, 6738, 62, 15763, 58, 3712, 12, 16, 7131, 15, 1058, 362, 1635, 25882, 62, 47924, 1058, 362, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 275, 87, 11, 416, 796, 983, 13, 3526, 62, 7857, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 62, 6603, 274, 18189, 25882, 62, 47924, 290, 983, 13, 14421, 62, 17440, 13, 18053, 532, 362, 1635, 25882, 62, 47924, 18189, 275, 87, 1343, 416, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 1890, 771, 1208, 355, 6125, 318, 6427, 1391, 22921, 62, 47924, 92, 1661, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 755, 796, 983, 13, 14421, 62, 17440, 13, 30586, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 755, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 755, 796, 685, 13984, 1701, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 26288, 34, 32835, 2849, 25, 11380, 11, 1201, 345, 3804, 1391, 22921, 62, 47924, 92, 1661, 706, 262, 1391, 65, 87, 10, 1525, 92, 400, 1445, 11, 314, 481, 1208, 355, 880, 685, 30586, 1391, 16104, 58, 12, 16, 5974, 13, 18, 4, 92, 29225, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 28, 17597, 13, 301, 1082, 81, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1445, 796, 983, 13, 1759, 7, 21774, 7, 14202, 11, 2137, 28, 6057, 13, 14421, 62, 17440, 13, 19545, 62, 7829, 29720, 21084, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1445, 11, 10139, 796, 7716, 62, 1872, 62, 21084, 7, 6057, 11, 257, 72, 62, 2536, 4338, 11, 257, 72, 62, 33692, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 8645, 515, 1445, 1391, 21084, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 28, 1391, 21084, 13, 13655, 79, 3419, 32239, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 285, 971, 18198, 62, 20930, 7, 6057, 13, 14421, 62, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 1759, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 2137, 11, 1445, 796, 1627, 13, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 796, 983, 13, 1759, 7, 21774, 13, 6738, 62, 13655, 79, 7, 21084, 13, 45828, 22784, 2137, 28, 7829, 58, 15, 4083, 45828, 3419, 828, 16602, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 21542, 1391, 7829, 92, 1391, 21084, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 20311, 62, 26675, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7203, 1370, 2625, 1343, 1627, 11, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 366, 4895, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 2434, 1045, 62, 2536, 796, 1627, 58, 1065, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7203, 34, 1600, 277, 1, 20185, 1391, 1872, 62, 2536, 4338, 92, 1391, 1872, 62, 33692, 32239, 77, 7730, 50, 402, 2434, 1045, 25, 1391, 70, 2434, 1045, 62, 2536, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 2434, 1045, 796, 33918, 13, 46030, 7, 70, 2434, 1045, 62, 2536, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 47, 54, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 90, 70, 2434, 1045, 17816, 32399, 6, 7131, 6, 11186, 6, 7131, 6, 29460, 20520, 92, 37913, 43027, 62, 1462, 62, 8841, 7, 70, 2434, 1045, 17816, 32399, 6, 7131, 6, 11186, 6, 7131, 6, 43027, 6, 12962, 30072, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 983, 13, 15763, 13, 2617, 62, 26745, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 49079, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 90, 70, 2434, 1045, 17816, 32399, 6, 7131, 6, 13424, 6, 7131, 6, 29460, 20520, 92, 37913, 43027, 62, 1462, 62, 8841, 7, 70, 2434, 1045, 17816, 32399, 6, 7131, 6, 13424, 6, 7131, 6, 43027, 6, 12962, 30072, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 7, 70, 2434, 1045, 14692, 32399, 1, 7131, 79, 7131, 1, 29460, 8973, 6624, 366, 41826, 3201, 12, 7959, 12, 31361, 1, 329, 279, 287, 14631, 11186, 1600, 366, 13424, 8973, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 70, 69, 62, 15908, 796, 366, 45213, 69, 62, 18463, 62, 31361, 30487, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 4808, 11, 256, 65, 796, 25064, 13, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 18224, 981, 7587, 308, 2434, 1045, 25, 1391, 68, 32239, 77, 90, 40546, 1891, 13, 18982, 62, 83, 65, 7, 83, 65, 38165, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4776, 796, 983, 13, 14421, 62, 17440, 13, 18982, 62, 26675, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 983, 13, 6057, 62, 312, 15853, 277, 1, 23330, 26675, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 264, 70, 69, 796, 983, 13, 13564, 62, 45213, 69, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 70, 69, 62, 15908, 11, 21997, 62, 11250, 28, 4895, 18206, 62, 12860, 62, 1872, 1298, 6407, 11, 366, 21928, 62, 12363, 1891, 1298, 685, 17821, 4357, 366, 18206, 62, 400, 10126, 82, 1298, 17635, 92, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 6404, 7, 69, 1, 8777, 4444, 13, 15178, 373, 1391, 26675, 92, 4613, 7448, 264, 70, 69, 284, 1391, 45213, 69, 92, 1600, 16289, 30076, 62, 24908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 301, 1082, 81, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 15, 13, 16, 8, 220, 1303, 4155, 674, 18931, 3011, 12118, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 28, 1391, 26675, 32239, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 7203, 47391, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 28, 3467, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 3601, 7, 69, 1, 28, 3467, 77, 4943, 198, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 25064, 13, 301, 1082, 81, 13, 25925, 3419, 198 ]
2.127159
3,531
''' The follwing code runs a test lstm network on the CIFAR dataset I will explicitly write the networks here for ease of understanding One convlstm layer right after the first cnn cnn_dropout = 0.4 rnn_dropout = 0.2 , WITH cnivlstm_dropout samples = 10, h = 256, epochs = 50, convlstm activation = relu - out.373233 (Based on best results from cnn - gru) ################# convlstm_cnn_mix_v0_True Validation Accuracy = [0.3555999994277954, 0.37619999051094055, 0.4235999882221222, 0.4275999963283539, 0.46779999136924744, 0.4819999933242798, 0.48980000615119934, 0.4968000054359436, 0.5194000005722046, 0.5131999850273132, 0.5242000222206116, 0.5284000039100647, 0.5144000053405762, 0.5365999937057495, 0.5465999841690063, 0.5496000051498413, 0.5407999753952026, 0.5626000165939331, 0.5573999881744385, 0.5558000206947327, 0.5586000084877014, 0.5645999908447266, 0.5717999935150146, 0.569599986076355, 0.5727999806404114, 0.5630000233650208, 0.571399986743927, 0.5580000281333923, 0.5852000117301941, 0.5753999948501587, 0.5738000273704529, 0.579200029373169, 0.5726000070571899, 0.5789999961853027, 0.5648000240325928, 0.5776000022888184, 0.5763999819755554, 0.5799999833106995, 0.58160001039505, 0.5839999914169312, 0.5860000252723694, 0.5834000110626221, 0.5825999975204468, 0.5860000252723694, 0.5807999968528748, 0.5831999778747559, 0.5789999961853027, 0.5758000016212463, 0.58160001039505, 0.5807999968528748] ################# convlstm_cnn_mix_v0_True Training Accuracy = [0.25715556740760803, 0.36764445900917053, 0.4077777862548828, 0.4264444410800934, 0.4399999976158142, 0.4568444490432739, 0.46862220764160156, 0.4764222204685211, 0.4854666590690613, 0.4959777891635895, 0.5049999952316284, 0.5096889138221741, 0.5180666446685791, 0.5244666934013367, 0.5313777923583984, 0.536133348941803, 0.5363110899925232, 0.5413333177566528, 0.549311101436615, 0.5522222518920898, 0.557022213935852, 0.5595999956130981, 0.563955545425415, 0.5663999915122986, 0.5641111135482788, 0.5719777941703796, 0.5754444599151611, 0.5798222422599792, 0.580644428730011, 0.5836222171783447, 0.5849555730819702, 0.586222231388092, 0.5915555357933044, 0.594355583190918, 0.5944888591766357, 0.5996444225311279, 0.6037111282348633, 0.6028888821601868, 0.6078444719314575, 0.6094889044761658, 0.6093555688858032, 0.6102889180183411, 0.6134666800498962, 0.6152889132499695, 0.6180889010429382, 0.6205999851226807, 0.6215111017227173, 0.6247333288192749, 0.6240666508674622, 0.6295999884605408] cnn_dropout = 0.4 rnn_dropout = 0.2 , WITH cnivlstm_dropout samples = 10, h = 256, epochs = 150, convlstm activation = relu - out.373440 (Based on best results from cnn - gru) ################# convlstm_cnn_mix_v01_True Validation Accuracy = [0.31619998812675476, 0.4059999883174896, 0.4047999978065491, 0.436599999666214, 0.45899999141693115, 0.4731999933719635, 0.4819999933242798, 0.487199991941452, 0.4936000108718872, 0.4991999864578247, 0.5113999843597412, 0.5221999883651733, 0.5235999822616577, 0.5278000235557556, 0.5368000268936157, 0.5289999842643738, 0.5253999829292297, 0.5428000092506409, 0.5382000207901001, 0.5414000153541565, 0.5450000166893005, 0.5511999726295471, 0.5523999929428101, 0.5672000050544739, 0.5468000173568726, 0.5619999766349792, 0.5522000193595886, 0.5722000002861023, 0.5673999786376953, 0.5720000267028809, 0.5690000057220459, 0.5726000070571899, 0.5763999819755554, 0.571399986743927, 0.5673999786376953, 0.5722000002861023, 0.5691999793052673, 0.5781999826431274, 0.578000009059906, 0.5795999765396118, 0.5748000144958496, 0.5888000130653381, 0.5809999704360962, 0.5821999907493591, 0.5759999752044678, 0.5771999955177307, 0.5705999732017517, 0.5825999975204468, 0.5770000219345093, 0.5738000273704529, 0.5756000280380249, 0.5752000212669373, 0.5802000164985657, 0.5781999826431274, 0.5709999799728394, 0.5717999935150146, 0.5781999826431274, 0.5831999778747559, 0.5812000036239624, 0.5849999785423279, 0.5789999961853027, 0.5756000280380249, 0.5758000016212463, 0.5771999955177307, 0.5856000185012817, 0.5785999894142151, 0.5720000267028809, 0.5734000205993652, 0.5741999745368958, 0.5824000239372253, 0.5776000022888184, 0.5756000280380249, 0.5687999725341797, 0.5676000118255615, 0.5738000273704529, 0.5857999920845032, 0.5799999833106995, 0.5766000151634216, 0.5788000226020813, 0.5831999778747559, 0.5753999948501587, 0.5734000205993652, 0.5631999969482422, 0.5687999725341797, 0.5788000226020813, 0.578000009059906, 0.5756000280380249, 0.5708000063896179, 0.5618000030517578, 0.5708000063896179, 0.5741999745368958, 0.5753999948501587, 0.5720000267028809, 0.5722000002861023, 0.5637999773025513, 0.574999988079071, 0.5690000057220459, 0.58160001039505, 0.5694000124931335, 0.5676000118255615, 0.5738000273704529, 0.5651999711990356, 0.574999988079071, 0.5703999996185303, 0.569599986076355, 0.5690000057220459, 0.5672000050544739, 0.5655999779701233, 0.5637999773025513, 0.5691999793052673, 0.5702000260353088, 0.5680000185966492, 0.5613999962806702, 0.5662000179290771, 0.5623999834060669, 0.567799985408783, 0.5662000179290771, 0.5712000131607056, 0.5673999786376953, 0.5630000233650208, 0.5594000220298767, 0.5608000159263611, 0.5681999921798706, 0.5659999847412109, 0.5630000233650208, 0.5619999766349792, 0.5626000165939331, 0.5654000043869019, 0.5654000043869019, 0.5631999969482422, 0.5680000185966492, 0.5601999759674072, 0.5586000084877014, 0.5590000152587891, 0.5605999827384949, 0.5558000206947327, 0.5636000037193298, 0.555400013923645, 0.5644000172615051, 0.5595999956130981, 0.5608000159263611, 0.5685999989509583, 0.5626000165939331, 0.5590000152587891, 0.5623999834060669, 0.5541999936103821, 0.5523999929428101, 0.5519999861717224, 0.5582000017166138, 0.5558000206947327] ################# convlstm_cnn_mix_v01_True Training Accuracy = [0.249466672539711, 0.358822226524353, 0.39959999918937683, 0.41804444789886475, 0.43524444103240967, 0.4512222111225128, 0.4600444436073303, 0.46995556354522705, 0.47760000824928284, 0.48697778582572937, 0.4950222074985504, 0.49779999256134033, 0.5047777891159058, 0.5094444155693054, 0.5156221985816956, 0.5198000073432922, 0.5297999978065491, 0.5285778045654297, 0.5348444581031799, 0.5395777821540833, 0.5428000092506409, 0.5471110939979553, 0.5546444654464722, 0.5557777881622314, 0.5594000220298767, 0.5629777908325195, 0.5652666687965393, 0.5679110884666443, 0.5738222002983093, 0.5741999745368958, 0.5807777643203735, 0.5786888599395752, 0.5838666558265686, 0.5865111351013184, 0.5898444652557373, 0.592199981212616, 0.5955111384391785, 0.5958889126777649, 0.6001777648925781, 0.6027555465698242, 0.6022666692733765, 0.606844425201416, 0.6050666570663452, 0.6121333241462708, 0.6107555627822876, 0.6132222414016724, 0.6163111329078674, 0.6169777512550354, 0.6183333396911621, 0.622511088848114, 0.624822199344635, 0.6251555681228638, 0.6260666847229004, 0.6275110840797424, 0.6320444345474243, 0.6323999762535095, 0.6347333192825317, 0.6363333463668823, 0.6373777985572815, 0.6391111016273499, 0.6382444500923157, 0.63919997215271, 0.6450222134590149, 0.6434000134468079, 0.6443555355072021, 0.6475555300712585, 0.6497777700424194, 0.6504666805267334, 0.6514222025871277, 0.6546000242233276, 0.6522889137268066, 0.6551111340522766, 0.6570000052452087, 0.6564444303512573, 0.658466637134552, 0.6592222452163696, 0.662066638469696, 0.6632444262504578, 0.6638222336769104, 0.6681333184242249, 0.6650221943855286, 0.6649555563926697, 0.6700000166893005, 0.6726666688919067, 0.6718888878822327, 0.6709111332893372, 0.6744444370269775, 0.6745333075523376, 0.6758221983909607, 0.6766666769981384, 0.6747111082077026, 0.6774666905403137, 0.6812666654586792, 0.6800888776779175, 0.6768222451210022, 0.6801333427429199, 0.6830888986587524, 0.6844000220298767, 0.6855999827384949, 0.6861777901649475, 0.686822235584259, 0.6895111203193665, 0.6921555399894714, 0.6860666871070862, 0.6852666735649109, 0.6915333271026611, 0.6921333074569702, 0.6931777596473694, 0.6941555738449097, 0.6948666572570801, 0.6968888640403748, 0.6943777799606323, 0.6979555487632751, 0.6966888904571533, 0.6968888640403748, 0.6993555426597595, 0.6975555419921875, 0.7030444741249084, 0.6989777684211731, 0.7029555439949036, 0.7020221948623657, 0.7024222016334534, 0.7059333324432373, 0.7076444625854492, 0.7047333121299744, 0.7077111005783081, 0.7068444490432739, 0.7082666754722595, 0.7079333066940308, 0.7075555324554443, 0.7076888680458069, 0.7130222320556641, 0.71224445104599, 0.7111555337905884, 0.7123333215713501, 0.7143333554267883, 0.7105333209037781, 0.718155562877655, 0.7120888829231262, 0.7151333093643188, 0.7185778021812439, 0.7164000272750854, 0.7191110849380493, 0.7173110842704773, 0.7188666462898254, 0.7190889120101929, 0.7207777500152588, 0.7199777960777283, 0.7187111377716064, 0.722000002861023] ################# convlstm_cnn_mix_v0_True Validation Accuracy = [0.3555999994277954, 0.37619999051094055, 0.4235999882221222, 0.4275999963283539, 0.46779999136924744, 0.4819999933242798, 0.48980000615119934, 0.4968000054359436, 0.5194000005722046, 0.5131999850273132, 0.5242000222206116, 0.5284000039100647, 0.5144000053405762, 0.5365999937057495, 0.5465999841690063, 0.5496000051498413, 0.5407999753952026, 0.5626000165939331, 0.5573999881744385, 0.5558000206947327, 0.5586000084877014, 0.5645999908447266, 0.5717999935150146, 0.569599986076355, 0.5727999806404114, 0.5630000233650208, 0.571399986743927, 0.5580000281333923, 0.5852000117301941, 0.5753999948501587, 0.5738000273704529, 0.579200029373169, 0.5726000070571899, 0.5789999961853027, 0.5648000240325928, 0.5776000022888184, 0.5763999819755554, 0.5799999833106995, 0.58160001039505, 0.5839999914169312, 0.5860000252723694, 0.5834000110626221, 0.5825999975204468, 0.5860000252723694, 0.5807999968528748, 0.5831999778747559, 0.5789999961853027, 0.5758000016212463, 0.58160001039505, 0.5807999968528748] ################# convlstm_cnn_mix_v0_True Training Accuracy = [0.25715556740760803, 0.36764445900917053, 0.4077777862548828, 0.4264444410800934, 0.4399999976158142, 0.4568444490432739, 0.46862220764160156, 0.4764222204685211, 0.4854666590690613, 0.4959777891635895, 0.5049999952316284, 0.5096889138221741, 0.5180666446685791, 0.5244666934013367, 0.5313777923583984, 0.536133348941803, 0.5363110899925232, 0.5413333177566528, 0.549311101436615, 0.5522222518920898, 0.557022213935852, 0.5595999956130981, 0.563955545425415, 0.5663999915122986, 0.5641111135482788, 0.5719777941703796, 0.5754444599151611, 0.5798222422599792, 0.580644428730011, 0.5836222171783447, 0.5849555730819702, 0.586222231388092, 0.5915555357933044, 0.594355583190918, 0.5944888591766357, 0.5996444225311279, 0.6037111282348633, 0.6028888821601868, 0.6078444719314575, 0.6094889044761658, 0.6093555688858032, 0.6102889180183411, 0.6134666800498962, 0.6152889132499695, 0.6180889010429382, 0.6205999851226807, 0.6215111017227173, 0.6247333288192749, 0.6240666508674622, 0.6295999884605408] with 20 samples and epochs = 50, h=128, out.980236 with 20 samples and epochs = 50, h=256, out.980276 ''' from __future__ import division, print_function, absolute_import print('Starting..................................') import sys sys.path.insert(1, '/home/labs/ahissarlab/orra/imagewalker') import numpy as np import cv2 import misc import pandas as pd import matplotlib.pyplot as plt import pickle from keras_utils import * from misc import * import tensorflow.keras as keras import tensorflow as tf gpus = tf.config.experimental.list_physical_devices('GPU') for gpu in gpus: tf.config.experimental.set_memory_growth(gpu, True) from tensorflow.keras.datasets import cifar10 # load dataset (trainX, trainy), (testX, testy) = cifar10.load_data() images, labels = trainX, trainy #Define function for low resolution lens on syclop kernel_regularizer_list = [None, keras.regularizers.l1(),keras.regularizers.l2(),keras.regularizers.l1_l2()] optimizer_list = [tf.keras.optimizers.Adam, tf.keras.optimizers.Nadam, tf.keras.optimizers.RMSprop] if len(sys.argv) > 1: paramaters = { 'epochs' : int(sys.argv[1]), 'sample' : int(sys.argv[2]), 'res' : int(sys.argv[3]), 'hidden_size' : int(sys.argv[4]), 'concat' : int(sys.argv[5]), 'regularizer' : keras.regularizers.l1(),#kernel_regularizer_list[int(sys.argv[6])], 'optimizer' : optimizer_list[int(sys.argv[7])], 'cnn_dropout' : 0.4, 'rnn_dropout' : 0.2, 'lr' : 5e-4, 'run_id' : np.random.randint(1000,9000) } else: paramaters = { 'epochs' : 1, 'sample' : 5, 'res' : 8, 'hidden_size' : 128, 'concat' : 1, 'regularizer' : None, 'optimizer' : optimizer_list[0], 'cnn_dropout' : 0.4, 'rnn_dropout' : 0.2, 'lr' : 5e-4, 'run_id' : np.random.randint(1000,9000) } print(paramaters) for key,val in paramaters.items(): exec(key + '=val') epochs = epochs sample = sample res = res hidden_size =hidden_size concat = concat regularizer = regularizer optimizer = optimizer cnn_dropout = cnn_dropout rnn_dropout = rnn_dropout lr = lr run_id = run_id n_timesteps = sample def convlstm(n_timesteps = 5, hidden_size = 128,input_size = 32, concat = True): ''' CNN RNN combination that extends the CNN to a network that achieves ~80% accuracy on full res cifar. Parameters ---------- n_timesteps : TYPE, optional DESCRIPTION. The default is 5. img_dim : TYPE, optional DESCRIPTION. The default is 32. hidden_size : TYPE, optional DESCRIPTION. The default is 128. input_size : TYPE, optional DESCRIPTION. The default is 32. Returns ------- model : TYPE DESCRIPTION. ''' inputA = keras.layers.Input(shape=(n_timesteps,input_size,input_size,3)) inputB = keras.layers.Input(shape=(n_timesteps,2)) # define CNN model x1=keras.layers.TimeDistributed(keras.layers.Conv2D(32,(3,3), activation='relu',padding = 'same'))(inputA) x1=keras.layers.ConvLSTM2D(32,(3,3), padding = 'same', dropout = cnn_dropout, recurrent_dropout=rnn_dropout,return_sequences=True)(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(64,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(64,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(128,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(128,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) print(x1.shape) x1=keras.layers.TimeDistributed(keras.layers.Flatten())(x1) print(x1.shape) if concat: x = keras.layers.Concatenate()([x1,inputB]) else: x = x1 print(x.shape) # define LSTM model x = keras.layers.GRU(hidden_size,input_shape=(n_timesteps, None),return_sequences=True,recurrent_dropout=rnn_dropout)(x) x = keras.layers.Flatten()(x) x = keras.layers.Dense(10,activation="softmax")(x) model = keras.models.Model(inputs=[inputA,inputB],outputs=x, name = 'convlstm_cnn_mix_v01_{}'.format(concat)) opt=tf.keras.optimizers.Adam(lr=lr) model.compile( optimizer=opt, loss="sparse_categorical_crossentropy", metrics=["sparse_categorical_accuracy"], ) return model rnn_net = convlstm(n_timesteps = sample, hidden_size = hidden_size,input_size = res, concat = True) #keras.utils.plot_model(rnn_net, expand_nested=True, to_file='{}.png'.format(rnn_net.name)) #cnn_net = cnn_net = extended_cnn_one_img(n_timesteps = sample, input_size = res, dropout = cnn_dropout) # hp = HP() # hp.save_path = 'saved_runs' # hp.description = "syclop cifar net search runs" # hp.this_run_name = 'syclop_{}'.format(rnn_net.name) # deploy_logs() train_dataset, test_dataset = create_cifar_dataset(images, labels,res = res, sample = sample, return_datasets=True, mixed_state = False, add_seed = 0, ) #bad_res_func = bad_res101, up_sample = True) train_dataset_x, train_dataset_y = split_dataset_xy(train_dataset) test_dataset_x, test_dataset_y = split_dataset_xy(test_dataset) print("##################### Fit {} and trajectories model on training data res = {} ##################".format(rnn_net.name,res)) rnn_history = rnn_net.fit( train_dataset_x, train_dataset_y, batch_size=64, epochs=epochs, # We pass some validation for # monitoring validation loss and metrics # at the end of each epoch validation_data=(test_dataset_x, test_dataset_y), verbose = 0) # print('################# {} Validation Accuracy = '.format(cnn_net.name),cnn_history.history['val_sparse_categorical_accuracy']) # print('################# {} Training Accuracy = '.format(cnn_net.name),rnn_history.history['sparse_categorical_accuracy']) print('################# {} Validation Accuracy = '.format(rnn_net.name),rnn_history.history['val_sparse_categorical_accuracy']) print('################# {} Training Accuracy = '.format(rnn_net.name),rnn_history.history['sparse_categorical_accuracy']) plt.figure() plt.plot(rnn_history.history['sparse_categorical_accuracy'], label = 'train') plt.plot(rnn_history.history['val_sparse_categorical_accuracy'], label = 'val') # plt.plot(cnn_history.history['sparse_categorical_accuracy'], label = 'cnn train') # plt.plot(cnn_history.history['val_sparse_categorical_accuracy'], label = 'cnn val') plt.legend() plt.title('{} on cifar res = {} hs = {} dropout = {}, num samples = {}'.format(rnn_net.name, res, hidden_size,cnn_dropout,sample)) plt.savefig('{} on Cifar res = {}, no upsample, val accur = {} hs = {} dropout = {}.png'.format(rnn_net.name,res,rnn_history.history['val_sparse_categorical_accuracy'][-1], hidden_size,cnn_dropout)) with open('/home/labs/ahissarlab/orra/imagewalker/cifar_net_search/{}HistoryDict{}_{}'.format(rnn_net.name, hidden_size,cnn_dropout), 'wb') as file_pi: pickle.dump(rnn_history.history, file_pi) # with open('/home/labs/ahissarlab/orra/imagewalker/cifar_net_search/{}HistoryDict'.format(cnn_net.name), 'wb') as file_pi: # pickle.dump(cnn_history.history, file_pi) dataset_update(rnn_history, rnn_net,paramaters) write_to_file(rnn_history, rnn_net,paramaters)
[ 7061, 6, 198, 464, 22752, 5469, 2438, 4539, 257, 1332, 300, 301, 76, 3127, 319, 262, 327, 5064, 1503, 27039, 220, 198, 198, 40, 481, 11777, 3551, 262, 7686, 994, 329, 10152, 286, 4547, 220, 198, 198, 3198, 3063, 75, 301, 76, 7679, 826, 706, 262, 717, 269, 20471, 220, 198, 198, 66, 20471, 62, 14781, 448, 796, 657, 13, 19, 374, 20471, 62, 14781, 448, 796, 657, 13, 17, 837, 13315, 269, 77, 452, 75, 301, 76, 62, 14781, 448, 8405, 796, 838, 11, 289, 796, 17759, 11, 36835, 82, 796, 2026, 11, 3063, 75, 301, 76, 14916, 796, 823, 84, 532, 503, 13, 34770, 25429, 357, 15001, 319, 1266, 2482, 422, 269, 20471, 532, 22848, 8, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 15, 62, 17821, 3254, 24765, 33222, 796, 220, 685, 15, 13, 2327, 2816, 24214, 5824, 1983, 3720, 4051, 11, 657, 13, 32128, 1129, 17032, 2713, 14454, 1821, 2816, 11, 657, 13, 19, 22370, 17032, 3459, 1828, 21777, 1828, 11, 657, 13, 19, 23195, 24214, 5066, 2078, 2327, 2670, 11, 657, 13, 24669, 22, 24214, 1485, 3388, 23753, 2598, 11, 657, 13, 2780, 18946, 2079, 2091, 1731, 1983, 4089, 11, 657, 13, 2780, 4089, 2388, 47007, 16315, 24, 2682, 11, 657, 13, 2920, 3104, 2388, 4051, 2327, 5824, 2623, 11, 657, 13, 47785, 7029, 830, 3553, 17572, 3510, 11, 657, 13, 48645, 18946, 25764, 27367, 19924, 11, 657, 13, 48057, 11024, 1828, 17572, 21, 18298, 11, 657, 13, 20, 30336, 2388, 2670, 3064, 33981, 11, 657, 13, 20, 18444, 2388, 4310, 1821, 3553, 5237, 11, 657, 13, 20, 24760, 24214, 20167, 3553, 33781, 11, 657, 13, 4051, 2996, 2079, 4089, 35218, 12865, 5066, 11, 657, 13, 20, 37747, 2388, 47396, 4089, 44103, 11, 657, 13, 20, 30120, 17032, 2425, 31010, 1238, 2075, 11, 657, 13, 3980, 2075, 18005, 36445, 2670, 31697, 11, 657, 13, 2816, 4790, 17032, 3459, 1558, 2598, 27203, 11, 657, 13, 2816, 3365, 830, 1238, 3388, 2857, 34159, 11, 657, 13, 2816, 4521, 2388, 23, 2780, 3324, 28645, 11, 657, 13, 3980, 2231, 24214, 2919, 34825, 25540, 11, 657, 13, 3553, 1558, 24214, 2327, 1314, 486, 3510, 11, 657, 13, 20, 37381, 2079, 4089, 1899, 4304, 28567, 11, 657, 13, 3553, 1983, 17032, 37988, 26429, 16562, 11, 657, 13, 46572, 2388, 1954, 2623, 1120, 21315, 11, 657, 13, 3553, 1485, 2079, 4089, 45385, 2670, 1983, 11, 657, 13, 40486, 2388, 2078, 1485, 29626, 1954, 11, 657, 13, 38905, 2167, 486, 1558, 18938, 24, 3901, 11, 657, 13, 36189, 18, 24214, 32642, 486, 44617, 11, 657, 13, 3553, 2548, 830, 1983, 20167, 2231, 1959, 11, 657, 13, 3553, 5892, 830, 1959, 34770, 22172, 11, 657, 13, 3553, 2075, 2388, 2154, 3553, 1507, 2079, 11, 657, 13, 38907, 24214, 4846, 21652, 1270, 1983, 11, 657, 13, 20, 2414, 33942, 1731, 3070, 25191, 2078, 11, 657, 13, 20, 39509, 2388, 1828, 28011, 22883, 11, 657, 13, 3553, 5066, 2079, 4089, 38449, 2816, 4051, 11, 657, 13, 3553, 24214, 4089, 2091, 15801, 33438, 11, 657, 13, 3365, 1433, 18005, 15, 2670, 31654, 11, 657, 13, 3365, 28771, 17032, 1415, 1433, 6052, 1065, 11, 657, 13, 29796, 2388, 1495, 1983, 1954, 45214, 11, 657, 13, 3365, 2682, 18005, 15801, 2075, 26115, 11, 657, 13, 3365, 1495, 24214, 2425, 1238, 2598, 3104, 11, 657, 13, 29796, 2388, 1495, 1983, 1954, 45214, 11, 657, 13, 20, 36928, 24214, 35978, 27800, 2780, 11, 657, 13, 46239, 18946, 39761, 4524, 2425, 3270, 11, 657, 13, 38907, 24214, 4846, 21652, 1270, 1983, 11, 657, 13, 36189, 23, 2388, 1433, 21777, 38380, 11, 657, 13, 3365, 1433, 18005, 15, 2670, 31654, 11, 657, 13, 20, 36928, 24214, 35978, 27800, 2780, 60, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 15, 62, 17821, 13614, 33222, 796, 220, 685, 15, 13, 28676, 1314, 2816, 3134, 30120, 1899, 43564, 11, 657, 13, 27824, 29173, 2231, 12865, 24, 1558, 2713, 18, 11, 657, 13, 1821, 3324, 3324, 3695, 26704, 33646, 2078, 11, 657, 13, 42780, 2598, 30272, 940, 7410, 24, 2682, 11, 657, 13, 3559, 24214, 2079, 4304, 21273, 23726, 11, 657, 13, 2231, 3104, 2598, 31911, 3023, 34159, 2670, 11, 657, 13, 19, 33808, 1828, 22745, 2414, 1433, 486, 3980, 11, 657, 13, 2857, 2414, 1828, 17572, 38472, 4309, 1157, 11, 657, 13, 2780, 4051, 2791, 36445, 3312, 24, 3312, 1485, 11, 657, 13, 2920, 3270, 3324, 40401, 1433, 31128, 3865, 11, 657, 13, 33580, 24214, 3865, 1954, 1433, 30336, 11, 657, 13, 29022, 3104, 4531, 20107, 1828, 1558, 3901, 11, 657, 13, 20, 15259, 2791, 29173, 35809, 3553, 6420, 11, 657, 13, 20, 25707, 2791, 3388, 2682, 486, 2091, 3134, 11, 657, 13, 4310, 1485, 3324, 3720, 1954, 3365, 2670, 5705, 11, 657, 13, 44468, 1485, 2091, 2780, 5824, 1507, 3070, 11, 657, 13, 44468, 3132, 15711, 17032, 1495, 24339, 11, 657, 13, 4051, 1485, 20370, 1558, 2425, 36879, 2078, 11, 657, 13, 44966, 36244, 8784, 19, 32459, 1314, 11, 657, 13, 2816, 1828, 1828, 1495, 23362, 21315, 4089, 11, 657, 13, 2816, 2154, 23148, 20219, 31128, 4309, 11, 657, 13, 2816, 3865, 24214, 3980, 12952, 4089, 16, 11, 657, 13, 3980, 2670, 31046, 34229, 24970, 1314, 11, 657, 13, 20, 45791, 24214, 1314, 1065, 1959, 4521, 11, 657, 13, 20, 2414, 26259, 17059, 2780, 1983, 3459, 11, 657, 13, 3553, 37781, 50242, 17279, 2718, 4846, 11, 657, 13, 36189, 30272, 2231, 2079, 1314, 1433, 1157, 11, 657, 13, 3553, 4089, 1828, 1731, 18182, 2079, 48156, 11, 657, 13, 39322, 2414, 2598, 2078, 4790, 405, 1157, 11, 657, 13, 3365, 2623, 23148, 1558, 1558, 5999, 34825, 11, 657, 13, 3365, 2920, 2816, 3553, 21495, 30986, 17, 11, 657, 13, 29796, 1828, 22047, 20107, 1795, 5892, 11, 657, 13, 3270, 1314, 31046, 2327, 3720, 26073, 2598, 11, 657, 13, 3270, 40064, 2816, 5999, 1129, 2931, 1507, 11, 657, 13, 3270, 2598, 28011, 3270, 1558, 2791, 27277, 11, 657, 13, 43452, 2414, 2598, 18182, 3132, 1065, 3720, 11, 657, 13, 1899, 2718, 1157, 12762, 1954, 34251, 2091, 11, 657, 13, 1899, 2078, 3459, 3459, 20666, 29159, 3104, 11, 657, 13, 1899, 3695, 2598, 2857, 24943, 18781, 2425, 11, 657, 13, 31751, 33646, 3829, 2598, 4304, 1433, 3365, 11, 657, 13, 31751, 2327, 2816, 3104, 3459, 39322, 2624, 11, 657, 13, 39132, 2078, 4531, 1507, 29159, 2682, 1157, 11, 657, 13, 21, 19880, 2791, 3104, 405, 2920, 4531, 5237, 11, 657, 13, 47007, 2078, 4531, 1485, 1731, 2079, 37381, 11, 657, 13, 47448, 2919, 4531, 486, 3023, 1959, 36243, 11, 657, 13, 21, 21261, 2079, 4089, 25836, 2075, 36928, 11, 657, 13, 5237, 1314, 1157, 8784, 22, 24403, 25399, 11, 657, 13, 21, 23753, 20370, 25270, 1129, 1983, 2920, 11, 657, 13, 21, 16102, 2791, 17544, 23, 3134, 3510, 1828, 11, 657, 13, 21, 25710, 17032, 40353, 32417, 26200, 60, 198, 198, 66, 20471, 62, 14781, 448, 796, 657, 13, 19, 374, 20471, 62, 14781, 448, 796, 657, 13, 17, 837, 13315, 269, 77, 452, 75, 301, 76, 62, 14781, 448, 8405, 796, 838, 11, 289, 796, 17759, 11, 36835, 82, 796, 6640, 11, 3063, 75, 301, 76, 14916, 796, 823, 84, 532, 503, 13, 2718, 2682, 1821, 357, 15001, 319, 1266, 2482, 422, 269, 20471, 532, 22848, 8, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 486, 62, 17821, 3254, 24765, 33222, 796, 220, 685, 15, 13, 33400, 18946, 3459, 19420, 2425, 35435, 11, 657, 13, 26598, 24214, 3459, 34125, 2780, 4846, 11, 657, 13, 1821, 2857, 24214, 40873, 2996, 41289, 11, 657, 13, 19, 24760, 2079, 17032, 2791, 5237, 1415, 11, 657, 13, 29334, 2079, 17032, 1415, 1433, 6052, 15363, 11, 657, 13, 2857, 35175, 17032, 31496, 25272, 2327, 11, 657, 13, 2780, 18946, 2079, 2091, 1731, 1983, 4089, 11, 657, 13, 35133, 1129, 17032, 22913, 1415, 4309, 11, 657, 13, 2920, 2623, 18005, 2919, 22, 20356, 4761, 11, 657, 13, 28324, 18946, 4521, 2231, 3695, 23753, 11, 657, 13, 20, 16616, 2079, 4089, 19, 30743, 4524, 1065, 11, 657, 13, 49542, 18946, 3459, 24760, 1558, 2091, 11, 657, 13, 20, 22370, 2079, 4089, 24909, 20986, 3324, 11, 657, 13, 20, 25870, 830, 1954, 31046, 2425, 3980, 11, 657, 13, 20, 27412, 830, 2075, 4531, 2623, 18458, 11, 657, 13, 49351, 24214, 5705, 18897, 2718, 2548, 11, 657, 13, 20, 28592, 2079, 4089, 1959, 1959, 1828, 5607, 11, 657, 13, 4051, 2078, 2388, 5892, 35638, 29416, 11, 657, 13, 49561, 11024, 1238, 3720, 486, 8298, 11, 657, 13, 4051, 1415, 18005, 20, 32182, 1314, 2996, 11, 657, 13, 45326, 2388, 1433, 3104, 6052, 22544, 11, 657, 13, 2816, 16315, 39647, 2075, 25710, 38339, 11, 657, 13, 2816, 1954, 24214, 27696, 2078, 8784, 11, 657, 13, 20, 3134, 2167, 405, 31654, 34825, 2670, 11, 657, 13, 4051, 3104, 18005, 22, 2327, 39925, 2075, 11, 657, 13, 3980, 18946, 5607, 2791, 27371, 48156, 11, 657, 13, 2816, 1828, 18005, 24, 30743, 3365, 4521, 11, 657, 13, 3553, 1828, 20483, 27033, 940, 1954, 11, 657, 13, 20, 45758, 17032, 46302, 2718, 3388, 4310, 11, 657, 13, 3553, 2167, 405, 2075, 2154, 2078, 34583, 11, 657, 13, 20, 3388, 20483, 3553, 17572, 33459, 11, 657, 13, 3553, 2075, 2388, 2154, 3553, 1507, 2079, 11, 657, 13, 3553, 5066, 2079, 4089, 38449, 2816, 4051, 11, 657, 13, 3553, 1485, 2079, 4089, 45385, 2670, 1983, 11, 657, 13, 20, 45758, 17032, 46302, 2718, 3388, 4310, 11, 657, 13, 3553, 1828, 20483, 27033, 940, 1954, 11, 657, 13, 20, 3388, 18946, 3720, 22515, 2075, 4790, 11, 657, 13, 38907, 18946, 23, 2075, 3559, 1065, 4524, 11, 657, 13, 3553, 7410, 830, 44928, 2079, 3312, 11, 657, 13, 3553, 3865, 2079, 5607, 2996, 34107, 16817, 11, 657, 13, 3553, 2780, 18005, 31911, 3365, 37747, 11, 657, 13, 3365, 3459, 18005, 1270, 2996, 2091, 6659, 11, 657, 13, 39322, 24214, 2154, 3559, 1899, 4846, 17, 11, 657, 13, 3365, 28896, 17032, 2998, 2920, 2327, 6420, 11, 657, 13, 36189, 24214, 2425, 1238, 2598, 30924, 11, 657, 13, 49447, 1129, 17032, 2816, 22413, 22996, 11, 657, 13, 20, 34801, 17032, 4790, 1264, 2425, 1558, 11, 657, 13, 3365, 1495, 24214, 2425, 1238, 2598, 3104, 11, 657, 13, 49447, 2388, 28896, 2682, 1120, 6052, 11, 657, 13, 3553, 2548, 830, 1983, 20167, 2231, 1959, 11, 657, 13, 36189, 43434, 21033, 23734, 21626, 11, 657, 13, 36189, 11024, 21777, 36657, 34770, 11, 657, 13, 39322, 2167, 486, 2414, 42250, 37680, 11, 657, 13, 38907, 18946, 23, 2075, 3559, 1065, 4524, 11, 657, 13, 39254, 24214, 22, 39647, 2078, 34626, 11, 657, 13, 3553, 1558, 24214, 2327, 1314, 486, 3510, 11, 657, 13, 38907, 18946, 23, 2075, 3559, 1065, 4524, 11, 657, 13, 46239, 18946, 39761, 4524, 2425, 3270, 11, 657, 13, 3365, 1065, 2388, 2623, 1954, 4846, 1731, 11, 657, 13, 46352, 24214, 3695, 4051, 1954, 26050, 11, 657, 13, 38907, 24214, 4846, 21652, 1270, 1983, 11, 657, 13, 36189, 43434, 21033, 23734, 21626, 11, 657, 13, 36189, 23, 2388, 1433, 21777, 38380, 11, 657, 13, 49447, 1129, 17032, 2816, 22413, 22996, 11, 657, 13, 3365, 3980, 18005, 5332, 486, 2078, 1558, 11, 657, 13, 3553, 5332, 2079, 4089, 5824, 1415, 23349, 16, 11, 657, 13, 3553, 2167, 405, 2075, 2154, 2078, 34583, 11, 657, 13, 3553, 2682, 830, 21261, 2079, 2623, 4309, 11, 657, 13, 46900, 18946, 50150, 2623, 4531, 3365, 11, 657, 13, 3365, 1731, 830, 23516, 2718, 18182, 18, 11, 657, 13, 20, 39509, 2388, 1828, 28011, 22883, 11, 657, 13, 36189, 43434, 21033, 23734, 21626, 11, 657, 13, 20, 39925, 2079, 5607, 1495, 2682, 1558, 5607, 11, 657, 13, 20, 3134, 8054, 486, 1507, 1495, 3980, 1314, 11, 657, 13, 3553, 2548, 830, 1983, 20167, 2231, 1959, 11, 657, 13, 3365, 3553, 24214, 1238, 5705, 1120, 2624, 11, 657, 13, 3553, 24214, 4089, 2091, 15801, 33438, 11, 657, 13, 3553, 2791, 18005, 47493, 2682, 20666, 11, 657, 13, 3553, 3459, 830, 1828, 1899, 21315, 1485, 11, 657, 13, 46239, 18946, 39761, 4524, 2425, 3270, 11, 657, 13, 36189, 18, 24214, 32642, 486, 44617, 11, 657, 13, 3553, 2682, 830, 21261, 2079, 2623, 4309, 11, 657, 13, 3980, 35175, 17032, 3388, 2780, 1731, 1828, 11, 657, 13, 20, 39925, 2079, 5607, 1495, 2682, 1558, 5607, 11, 657, 13, 3553, 3459, 830, 1828, 1899, 21315, 1485, 11, 657, 13, 3553, 7410, 830, 44928, 2079, 3312, 11, 657, 13, 36189, 43434, 21033, 23734, 21626, 11, 657, 13, 20, 32583, 2388, 21, 2548, 4846, 21738, 11, 657, 13, 3980, 1507, 2388, 22515, 1558, 38907, 11, 657, 13, 20, 32583, 2388, 21, 2548, 4846, 21738, 11, 657, 13, 46900, 18946, 50150, 2623, 4531, 3365, 11, 657, 13, 36189, 18, 24214, 32642, 486, 44617, 11, 657, 13, 3553, 2167, 405, 2075, 2154, 2078, 34583, 11, 657, 13, 3553, 1828, 20483, 27033, 940, 1954, 11, 657, 13, 3980, 2718, 17032, 3324, 1270, 13381, 1485, 11, 657, 13, 46900, 24214, 41655, 3720, 2998, 16, 11, 657, 13, 20, 3388, 20483, 3553, 17572, 33459, 11, 657, 13, 3365, 1433, 18005, 15, 2670, 31654, 11, 657, 13, 20, 3388, 7029, 486, 1731, 6052, 1485, 2327, 11, 657, 13, 20, 3134, 8054, 486, 1507, 1495, 3980, 1314, 11, 657, 13, 3553, 2548, 830, 1983, 20167, 2231, 1959, 11, 657, 13, 47372, 18946, 4869, 19891, 32066, 11, 657, 13, 46900, 24214, 41655, 3720, 2998, 16, 11, 657, 13, 20, 36809, 24214, 4846, 21652, 22572, 11, 657, 13, 20, 37381, 2079, 4089, 1899, 4304, 28567, 11, 657, 13, 20, 3388, 20483, 3553, 17572, 33459, 11, 657, 13, 20, 3134, 2167, 405, 31654, 34825, 2670, 11, 657, 13, 3980, 2816, 17032, 3324, 5607, 486, 25429, 11, 657, 13, 3980, 2718, 17032, 3324, 1270, 13381, 1485, 11, 657, 13, 20, 3388, 18946, 3720, 22515, 2075, 4790, 11, 657, 13, 39254, 11024, 21719, 2327, 1270, 3459, 11, 657, 13, 49211, 2388, 1507, 45734, 2414, 5892, 11, 657, 13, 3980, 1485, 24214, 5237, 37988, 36680, 11, 657, 13, 20, 2791, 2167, 486, 3720, 1959, 2998, 4869, 11, 657, 13, 3980, 1954, 2079, 4089, 23601, 1899, 36657, 11, 657, 13, 20, 40179, 2079, 42250, 26200, 50165, 11, 657, 13, 20, 2791, 2167, 486, 3720, 1959, 2998, 4869, 11, 657, 13, 3553, 1065, 18005, 18, 14198, 2154, 3980, 11, 657, 13, 20, 45758, 17032, 46302, 2718, 3388, 4310, 11, 657, 13, 46572, 2388, 1954, 2623, 1120, 21315, 11, 657, 13, 2816, 5824, 830, 17572, 1959, 5774, 3134, 11, 657, 13, 34135, 7410, 486, 3270, 2075, 2623, 1157, 11, 657, 13, 49211, 18946, 5892, 1558, 4089, 35402, 11, 657, 13, 47372, 24214, 23, 38652, 1065, 14454, 11, 657, 13, 46572, 2388, 1954, 2623, 1120, 21315, 11, 657, 13, 3980, 18946, 5607, 2791, 27371, 48156, 11, 657, 13, 3980, 2075, 18005, 36445, 2670, 31697, 11, 657, 13, 20, 39111, 2388, 43704, 3388, 30484, 11, 657, 13, 20, 39111, 2388, 43704, 3388, 30484, 11, 657, 13, 3980, 35175, 17032, 3388, 2780, 1731, 1828, 11, 657, 13, 49211, 2388, 1507, 45734, 2414, 5892, 11, 657, 13, 3980, 486, 17032, 38314, 3134, 1821, 4761, 11, 657, 13, 2816, 4521, 2388, 23, 2780, 3324, 28645, 11, 657, 13, 38605, 2388, 1314, 25600, 3695, 6420, 11, 657, 13, 20, 32417, 2079, 4089, 1983, 2548, 2920, 2920, 11, 657, 13, 2816, 3365, 830, 1238, 3388, 2857, 34159, 11, 657, 13, 3980, 2623, 2388, 2718, 24943, 27728, 11, 657, 13, 2816, 4051, 18005, 2670, 24940, 2231, 11, 657, 13, 20, 2414, 7029, 29326, 2075, 8628, 4349, 11, 657, 13, 2816, 3865, 24214, 3980, 12952, 4089, 16, 11, 657, 13, 34135, 7410, 486, 3270, 2075, 2623, 1157, 11, 657, 13, 20, 35978, 24214, 4531, 29022, 46239, 11, 657, 13, 3980, 2075, 18005, 36445, 2670, 31697, 11, 657, 13, 38605, 2388, 1314, 25600, 3695, 6420, 11, 657, 13, 3980, 1954, 2079, 4089, 23601, 1899, 36657, 11, 657, 13, 44218, 1129, 17032, 2623, 940, 2548, 2481, 11, 657, 13, 2816, 1954, 24214, 27696, 2078, 8784, 11, 657, 13, 2816, 18946, 4089, 47941, 23628, 1731, 11, 657, 13, 40486, 2167, 405, 1558, 23055, 20107, 11, 657, 13, 2816, 3365, 830, 1238, 3388, 2857, 34159, 60, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 486, 62, 17821, 13614, 33222, 796, 220, 685, 15, 13, 1731, 5824, 2791, 3134, 1495, 33372, 1157, 11, 657, 13, 2327, 3459, 1828, 1828, 2996, 1731, 33319, 11, 657, 13, 28771, 43452, 17032, 23362, 2718, 47521, 11, 657, 13, 19, 15259, 2598, 2598, 40401, 3459, 2414, 2425, 11, 657, 13, 40064, 1731, 30272, 15197, 1731, 2931, 3134, 11, 657, 13, 2231, 1065, 1828, 21895, 1065, 1495, 12762, 11, 657, 13, 3510, 405, 2598, 2598, 15277, 4790, 22572, 11, 657, 13, 3510, 2079, 2816, 3980, 2327, 2231, 1828, 34801, 11, 657, 13, 2857, 4304, 2388, 23, 21626, 2078, 30336, 11, 657, 13, 2780, 3388, 3324, 3695, 3365, 28676, 1959, 2718, 11, 657, 13, 2920, 1120, 1828, 22745, 2920, 5332, 33580, 11, 657, 13, 2920, 3324, 24214, 11645, 1485, 1821, 2091, 11, 657, 13, 1120, 2857, 3324, 3695, 35549, 3270, 2713, 23, 11, 657, 13, 29022, 2598, 2598, 18742, 3388, 1270, 4051, 11, 657, 13, 20, 21599, 1828, 22337, 3365, 1433, 50148, 11, 657, 13, 20, 22337, 44808, 32118, 1959, 1828, 11, 657, 13, 20, 26561, 24214, 40873, 2996, 41289, 11, 657, 13, 20, 26279, 3324, 1795, 2231, 2996, 11785, 22, 11, 657, 13, 20, 28978, 2598, 29334, 15197, 1558, 2079, 11, 657, 13, 20, 31010, 3324, 3695, 23349, 26200, 2091, 11, 657, 13, 4051, 2078, 2388, 5892, 35638, 29416, 11, 657, 13, 20, 2857, 1157, 940, 6052, 2079, 3720, 48096, 11, 657, 13, 44218, 2414, 2598, 2996, 2598, 33981, 1828, 11, 657, 13, 31046, 3324, 3324, 3459, 1433, 22047, 1415, 11, 657, 13, 2816, 5824, 830, 17572, 1959, 5774, 3134, 11, 657, 13, 3980, 1959, 3324, 3720, 2919, 26582, 22186, 11, 657, 13, 47372, 2075, 2791, 3104, 3720, 2996, 26007, 11, 657, 13, 20, 3134, 6420, 940, 40353, 2791, 2414, 3559, 11, 657, 13, 3553, 2548, 1828, 2167, 27728, 1270, 6052, 11, 657, 13, 46900, 18946, 50150, 2623, 4531, 3365, 11, 657, 13, 39322, 3324, 3324, 2414, 19504, 2718, 2327, 11, 657, 13, 38907, 3104, 3459, 43452, 31010, 43665, 11, 657, 13, 3365, 2548, 27310, 40486, 22980, 33808, 11, 657, 13, 3365, 2996, 1157, 1485, 4349, 30273, 22883, 11, 657, 13, 3365, 4089, 30272, 2996, 1495, 3553, 34770, 11, 657, 13, 45839, 18946, 23, 1065, 19420, 1433, 11, 657, 13, 3270, 2816, 1157, 1485, 5705, 2670, 1558, 5332, 11, 657, 13, 3270, 3365, 39121, 1065, 3134, 3324, 33300, 11, 657, 13, 8054, 1558, 3324, 2414, 4531, 1495, 49703, 11, 657, 13, 1899, 1983, 2816, 4051, 2996, 39357, 27877, 11, 657, 13, 1899, 1828, 19060, 24, 1983, 2091, 29143, 11, 657, 13, 1899, 3104, 30272, 1495, 4967, 1433, 11, 657, 13, 1899, 1120, 2791, 2996, 2154, 2791, 27712, 17, 11, 657, 13, 43610, 1485, 2091, 1731, 20964, 1983, 2919, 11, 657, 13, 39132, 2425, 37864, 25870, 23815, 4304, 11, 657, 13, 47512, 23148, 1731, 1415, 486, 3134, 1731, 11, 657, 13, 21, 24136, 1157, 1485, 1959, 2998, 23, 45385, 11, 657, 13, 21, 22172, 3324, 2425, 11623, 1120, 32182, 11, 657, 13, 47448, 24840, 2670, 3388, 18298, 2481, 11, 657, 13, 5237, 1495, 11442, 28011, 2780, 16562, 11, 657, 13, 21, 23045, 1828, 24465, 27260, 2327, 11, 657, 13, 26704, 1314, 2816, 3104, 1065, 27033, 2548, 11, 657, 13, 5237, 1899, 2791, 3104, 2857, 1828, 12865, 19, 11, 657, 13, 49856, 4349, 15711, 1821, 3720, 4524, 1731, 11, 657, 13, 5066, 1238, 2598, 3559, 2231, 38652, 26660, 11, 657, 13, 5066, 1954, 17032, 4304, 1495, 14877, 3865, 11, 657, 13, 21, 30995, 20370, 1129, 2078, 28592, 1558, 11, 657, 13, 21, 2623, 24840, 3510, 2623, 34427, 1954, 11, 657, 13, 21, 2718, 2718, 3324, 4089, 41948, 2078, 1314, 11, 657, 13, 21, 2670, 26259, 27037, 1983, 2682, 2079, 11, 657, 13, 21, 2548, 25707, 2231, 28694, 1954, 18458, 11, 657, 13, 21, 2670, 18946, 4761, 1314, 28977, 11, 657, 13, 2414, 1120, 23148, 1485, 33459, 486, 2920, 11, 657, 13, 2414, 2682, 18005, 18, 27260, 1795, 3720, 11, 657, 13, 29173, 2327, 2816, 2327, 1120, 23906, 2481, 11, 657, 13, 2414, 2425, 2816, 4310, 25816, 1065, 38905, 11, 657, 13, 33300, 3324, 3324, 9879, 40090, 22913, 11, 657, 13, 17544, 19, 27310, 28256, 25674, 31380, 11, 657, 13, 2996, 1415, 1828, 1238, 1495, 5774, 1065, 3324, 11, 657, 13, 2996, 3510, 830, 1731, 1828, 2091, 27988, 11, 657, 13, 2996, 1828, 39121, 19708, 2075, 1795, 2791, 11, 657, 13, 35916, 1157, 16616, 26598, 24403, 2791, 11, 657, 13, 2996, 9879, 830, 20, 22995, 1238, 5774, 11, 657, 13, 2996, 2414, 30272, 1270, 2327, 1065, 48638, 11, 657, 13, 2996, 5705, 27310, 2718, 1485, 2231, 4309, 11, 657, 13, 36445, 23148, 1731, 4309, 1433, 2623, 4846, 11, 657, 13, 2791, 1238, 27310, 22842, 3388, 38205, 11, 657, 13, 2791, 33916, 2598, 2075, 9031, 2231, 3695, 11, 657, 13, 2791, 2548, 1828, 1954, 27824, 3388, 13464, 11, 657, 13, 35809, 1485, 2091, 22883, 27877, 21626, 11, 657, 13, 2791, 1120, 1828, 22913, 2548, 2816, 27033, 11, 657, 13, 21, 33300, 2816, 37864, 2670, 2075, 40035, 11, 657, 13, 3134, 2388, 486, 2791, 4531, 6200, 20, 11, 657, 13, 3134, 2075, 19060, 39121, 19782, 3134, 11, 657, 13, 3134, 1507, 3459, 46660, 3459, 22047, 1983, 11, 657, 13, 21, 31495, 1157, 16945, 27693, 2091, 4761, 11, 657, 13, 3134, 2598, 2598, 3559, 2154, 2075, 5607, 2425, 11, 657, 13, 3134, 2231, 2091, 1270, 38172, 1954, 32128, 11, 657, 13, 21, 38569, 1828, 22337, 2670, 2931, 31980, 11, 657, 13, 3134, 19060, 42548, 34808, 1485, 5705, 11, 657, 13, 3134, 2857, 1157, 15711, 22745, 2154, 2075, 11, 657, 13, 3134, 4524, 2791, 3388, 2713, 31552, 19708, 11, 657, 13, 3104, 1065, 19060, 20, 29334, 3134, 5892, 11, 657, 13, 3104, 405, 28011, 3324, 3134, 3720, 17430, 11, 657, 13, 3134, 3104, 1828, 22995, 1065, 3064, 1828, 11, 657, 13, 3104, 486, 2091, 2682, 1983, 11785, 19104, 11, 657, 13, 3104, 1270, 28011, 4089, 2996, 31360, 1731, 11, 657, 13, 3104, 2598, 830, 17572, 1959, 5774, 3134, 11, 657, 13, 3104, 2816, 2079, 4089, 1983, 2548, 2920, 2920, 11, 657, 13, 33808, 1558, 40393, 486, 2414, 5824, 2425, 11, 657, 13, 3104, 3104, 1828, 1954, 2816, 5705, 25191, 11, 657, 13, 3104, 3865, 1157, 1065, 3070, 1129, 2623, 2996, 11, 657, 13, 3388, 23349, 2816, 28771, 4531, 2857, 1415, 11, 657, 13, 3104, 1899, 2791, 39925, 940, 2154, 4521, 17, 11, 657, 13, 35978, 2075, 28933, 2327, 33300, 14454, 11, 657, 13, 3388, 1314, 20370, 1983, 940, 25540, 1157, 11, 657, 13, 46589, 16945, 22996, 2231, 3388, 36680, 11, 657, 13, 48528, 22413, 38314, 33981, 2623, 5824, 11, 657, 13, 3388, 35038, 41948, 2548, 31911, 2931, 22, 11, 657, 13, 3388, 2780, 2791, 37680, 1495, 32583, 486, 11, 657, 13, 3388, 3104, 3459, 4521, 1821, 1821, 2718, 2780, 11, 657, 13, 3388, 43284, 29331, 2079, 1899, 5066, 1954, 11, 657, 13, 3388, 3720, 31046, 2780, 4304, 34159, 4349, 11, 657, 13, 3388, 2791, 28011, 3829, 33032, 1314, 2091, 11, 657, 13, 3388, 3104, 3459, 4521, 1821, 1821, 2718, 2780, 11, 657, 13, 47325, 2327, 2816, 42780, 3270, 2425, 3865, 11, 657, 13, 3388, 2425, 2816, 4051, 23847, 1507, 2425, 11, 657, 13, 2154, 1270, 2598, 38652, 1065, 2920, 2919, 19, 11, 657, 13, 3388, 4531, 29331, 3104, 3682, 17657, 3132, 11, 657, 13, 2154, 1959, 31046, 3559, 2079, 31503, 2623, 11, 657, 13, 2154, 1238, 1828, 1129, 34251, 1954, 37680, 11, 657, 13, 2154, 1731, 1828, 5304, 2091, 2231, 2682, 11, 657, 13, 2154, 3270, 24840, 1731, 3559, 1954, 4790, 11, 657, 13, 24038, 2414, 2598, 26704, 5332, 2598, 5892, 11, 657, 13, 2154, 2857, 20370, 1065, 1065, 39647, 2598, 11, 657, 13, 2154, 3324, 1157, 3064, 38907, 1270, 6659, 11, 657, 13, 2154, 3104, 2598, 31911, 3023, 34159, 2670, 11, 657, 13, 32583, 2075, 2791, 2425, 2857, 18182, 3865, 11, 657, 13, 2154, 3720, 2091, 1270, 36657, 1821, 21495, 11, 657, 13, 2154, 2425, 2816, 4310, 1731, 2816, 2598, 3559, 11, 657, 13, 24038, 3104, 3459, 37397, 2231, 1795, 3388, 11, 657, 13, 4869, 1270, 1828, 1954, 1238, 37864, 42759, 11, 657, 13, 49517, 25707, 2231, 940, 2231, 2079, 11, 657, 13, 22, 1157, 1314, 2816, 2091, 3720, 2713, 40353, 11, 657, 13, 49517, 24840, 17, 18458, 17059, 486, 11, 657, 13, 45722, 24840, 44218, 25674, 49287, 11, 657, 13, 22, 13348, 2091, 19504, 3829, 2718, 49703, 11, 657, 13, 45720, 1314, 37864, 2078, 3324, 35916, 11, 657, 13, 49517, 2919, 28011, 1959, 1954, 1065, 5237, 11, 657, 13, 22, 1314, 16945, 1270, 6052, 41813, 20356, 11, 657, 13, 22, 21652, 3324, 1795, 28727, 17464, 2670, 11, 657, 13, 22, 23237, 830, 1983, 1983, 33042, 4051, 11, 657, 13, 22, 1129, 1157, 15711, 2920, 23734, 43134, 11, 657, 13, 22, 1558, 3132, 940, 5705, 20233, 2857, 4790, 11, 657, 13, 22, 20356, 2791, 27720, 2078, 4089, 24970, 11, 657, 13, 22, 1129, 2919, 4531, 1065, 486, 30484, 1959, 11, 657, 13, 23906, 29331, 2425, 405, 1314, 1495, 3459, 11, 657, 13, 22, 19104, 3324, 3720, 1899, 29331, 30290, 11, 657, 13, 22, 23451, 1157, 1485, 29331, 14198, 2414, 11, 657, 13, 22, 1828, 20483, 27033, 940, 1954, 60, 198, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 15, 62, 17821, 3254, 24765, 33222, 796, 220, 685, 15, 13, 2327, 2816, 24214, 5824, 1983, 3720, 4051, 11, 657, 13, 32128, 1129, 17032, 2713, 14454, 1821, 2816, 11, 657, 13, 19, 22370, 17032, 3459, 1828, 21777, 1828, 11, 657, 13, 19, 23195, 24214, 5066, 2078, 2327, 2670, 11, 657, 13, 24669, 22, 24214, 1485, 3388, 23753, 2598, 11, 657, 13, 2780, 18946, 2079, 2091, 1731, 1983, 4089, 11, 657, 13, 2780, 4089, 2388, 47007, 16315, 24, 2682, 11, 657, 13, 2920, 3104, 2388, 4051, 2327, 5824, 2623, 11, 657, 13, 47785, 7029, 830, 3553, 17572, 3510, 11, 657, 13, 48645, 18946, 25764, 27367, 19924, 11, 657, 13, 48057, 11024, 1828, 17572, 21, 18298, 11, 657, 13, 20, 30336, 2388, 2670, 3064, 33981, 11, 657, 13, 20, 18444, 2388, 4310, 1821, 3553, 5237, 11, 657, 13, 20, 24760, 24214, 20167, 3553, 33781, 11, 657, 13, 4051, 2996, 2079, 4089, 35218, 12865, 5066, 11, 657, 13, 20, 37747, 2388, 47396, 4089, 44103, 11, 657, 13, 20, 30120, 17032, 2425, 31010, 1238, 2075, 11, 657, 13, 3980, 2075, 18005, 36445, 2670, 31697, 11, 657, 13, 2816, 4790, 17032, 3459, 1558, 2598, 27203, 11, 657, 13, 2816, 3365, 830, 1238, 3388, 2857, 34159, 11, 657, 13, 2816, 4521, 2388, 23, 2780, 3324, 28645, 11, 657, 13, 3980, 2231, 24214, 2919, 34825, 25540, 11, 657, 13, 3553, 1558, 24214, 2327, 1314, 486, 3510, 11, 657, 13, 20, 37381, 2079, 4089, 1899, 4304, 28567, 11, 657, 13, 3553, 1983, 17032, 37988, 26429, 16562, 11, 657, 13, 46572, 2388, 1954, 2623, 1120, 21315, 11, 657, 13, 3553, 1485, 2079, 4089, 45385, 2670, 1983, 11, 657, 13, 40486, 2388, 2078, 1485, 29626, 1954, 11, 657, 13, 38905, 2167, 486, 1558, 18938, 24, 3901, 11, 657, 13, 36189, 18, 24214, 32642, 486, 44617, 11, 657, 13, 3553, 2548, 830, 1983, 20167, 2231, 1959, 11, 657, 13, 3553, 5892, 830, 1959, 34770, 22172, 11, 657, 13, 3553, 2075, 2388, 2154, 3553, 1507, 2079, 11, 657, 13, 38907, 24214, 4846, 21652, 1270, 1983, 11, 657, 13, 20, 2414, 33942, 1731, 3070, 25191, 2078, 11, 657, 13, 20, 39509, 2388, 1828, 28011, 22883, 11, 657, 13, 3553, 5066, 2079, 4089, 38449, 2816, 4051, 11, 657, 13, 3553, 24214, 4089, 2091, 15801, 33438, 11, 657, 13, 3365, 1433, 18005, 15, 2670, 31654, 11, 657, 13, 3365, 28771, 17032, 1415, 1433, 6052, 1065, 11, 657, 13, 29796, 2388, 1495, 1983, 1954, 45214, 11, 657, 13, 3365, 2682, 18005, 15801, 2075, 26115, 11, 657, 13, 3365, 1495, 24214, 2425, 1238, 2598, 3104, 11, 657, 13, 29796, 2388, 1495, 1983, 1954, 45214, 11, 657, 13, 20, 36928, 24214, 35978, 27800, 2780, 11, 657, 13, 46239, 18946, 39761, 4524, 2425, 3270, 11, 657, 13, 38907, 24214, 4846, 21652, 1270, 1983, 11, 657, 13, 36189, 23, 2388, 1433, 21777, 38380, 11, 657, 13, 3365, 1433, 18005, 15, 2670, 31654, 11, 657, 13, 20, 36928, 24214, 35978, 27800, 2780, 60, 198, 14468, 2, 3063, 75, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 15, 62, 17821, 13614, 33222, 796, 220, 685, 15, 13, 28676, 1314, 2816, 3134, 30120, 1899, 43564, 11, 657, 13, 27824, 29173, 2231, 12865, 24, 1558, 2713, 18, 11, 657, 13, 1821, 3324, 3324, 3695, 26704, 33646, 2078, 11, 657, 13, 42780, 2598, 30272, 940, 7410, 24, 2682, 11, 657, 13, 3559, 24214, 2079, 4304, 21273, 23726, 11, 657, 13, 2231, 3104, 2598, 31911, 3023, 34159, 2670, 11, 657, 13, 19, 33808, 1828, 22745, 2414, 1433, 486, 3980, 11, 657, 13, 2857, 2414, 1828, 17572, 38472, 4309, 1157, 11, 657, 13, 2780, 4051, 2791, 36445, 3312, 24, 3312, 1485, 11, 657, 13, 2920, 3270, 3324, 40401, 1433, 31128, 3865, 11, 657, 13, 33580, 24214, 3865, 1954, 1433, 30336, 11, 657, 13, 29022, 3104, 4531, 20107, 1828, 1558, 3901, 11, 657, 13, 20, 15259, 2791, 29173, 35809, 3553, 6420, 11, 657, 13, 20, 25707, 2791, 3388, 2682, 486, 2091, 3134, 11, 657, 13, 4310, 1485, 3324, 3720, 1954, 3365, 2670, 5705, 11, 657, 13, 44468, 1485, 2091, 2780, 5824, 1507, 3070, 11, 657, 13, 44468, 3132, 15711, 17032, 1495, 24339, 11, 657, 13, 4051, 1485, 20370, 1558, 2425, 36879, 2078, 11, 657, 13, 44966, 36244, 8784, 19, 32459, 1314, 11, 657, 13, 2816, 1828, 1828, 1495, 23362, 21315, 4089, 11, 657, 13, 2816, 2154, 23148, 20219, 31128, 4309, 11, 657, 13, 2816, 3865, 24214, 3980, 12952, 4089, 16, 11, 657, 13, 3980, 2670, 31046, 34229, 24970, 1314, 11, 657, 13, 20, 45791, 24214, 1314, 1065, 1959, 4521, 11, 657, 13, 20, 2414, 26259, 17059, 2780, 1983, 3459, 11, 657, 13, 3553, 37781, 50242, 17279, 2718, 4846, 11, 657, 13, 36189, 30272, 2231, 2079, 1314, 1433, 1157, 11, 657, 13, 3553, 4089, 1828, 1731, 18182, 2079, 48156, 11, 657, 13, 39322, 2414, 2598, 2078, 4790, 405, 1157, 11, 657, 13, 3365, 2623, 23148, 1558, 1558, 5999, 34825, 11, 657, 13, 3365, 2920, 2816, 3553, 21495, 30986, 17, 11, 657, 13, 29796, 1828, 22047, 20107, 1795, 5892, 11, 657, 13, 3270, 1314, 31046, 2327, 3720, 26073, 2598, 11, 657, 13, 3270, 40064, 2816, 5999, 1129, 2931, 1507, 11, 657, 13, 3270, 2598, 28011, 3270, 1558, 2791, 27277, 11, 657, 13, 43452, 2414, 2598, 18182, 3132, 1065, 3720, 11, 657, 13, 1899, 2718, 1157, 12762, 1954, 34251, 2091, 11, 657, 13, 1899, 2078, 3459, 3459, 20666, 29159, 3104, 11, 657, 13, 1899, 3695, 2598, 2857, 24943, 18781, 2425, 11, 657, 13, 31751, 33646, 3829, 2598, 4304, 1433, 3365, 11, 657, 13, 31751, 2327, 2816, 3104, 3459, 39322, 2624, 11, 657, 13, 39132, 2078, 4531, 1507, 29159, 2682, 1157, 11, 657, 13, 21, 19880, 2791, 3104, 405, 2920, 4531, 5237, 11, 657, 13, 47007, 2078, 4531, 1485, 1731, 2079, 37381, 11, 657, 13, 47448, 2919, 4531, 486, 3023, 1959, 36243, 11, 657, 13, 21, 21261, 2079, 4089, 25836, 2075, 36928, 11, 657, 13, 5237, 1314, 1157, 8784, 22, 24403, 25399, 11, 657, 13, 21, 23753, 20370, 25270, 1129, 1983, 2920, 11, 657, 13, 21, 16102, 2791, 17544, 23, 3134, 3510, 1828, 11, 657, 13, 21, 25710, 17032, 40353, 32417, 26200, 60, 198, 198, 4480, 1160, 8405, 290, 36835, 82, 796, 2026, 11, 289, 28, 12762, 11, 503, 13, 40022, 24940, 198, 198, 4480, 1160, 8405, 290, 36835, 82, 796, 2026, 11, 289, 28, 11645, 11, 503, 13, 40022, 27988, 198, 7061, 6, 198, 198, 6738, 11593, 37443, 834, 1330, 7297, 11, 3601, 62, 8818, 11, 4112, 62, 11748, 198, 198, 4798, 10786, 22851, 8864, 492, 11537, 198, 11748, 25064, 198, 17597, 13, 6978, 13, 28463, 7, 16, 11, 31051, 11195, 14, 75, 8937, 14, 993, 747, 7063, 397, 14, 273, 430, 14, 48466, 413, 20949, 11537, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 269, 85, 17, 198, 11748, 12747, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 2298, 293, 198, 198, 6738, 41927, 292, 62, 26791, 1330, 1635, 198, 6738, 12747, 1330, 1635, 198, 198, 11748, 11192, 273, 11125, 13, 6122, 292, 355, 41927, 292, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 198, 31197, 385, 796, 48700, 13, 11250, 13, 23100, 9134, 13, 4868, 62, 42854, 62, 42034, 10786, 33346, 11537, 198, 1640, 308, 19944, 287, 27809, 385, 25, 198, 220, 48700, 13, 11250, 13, 23100, 9134, 13, 2617, 62, 31673, 62, 27922, 7, 46999, 11, 6407, 8, 198, 220, 220, 198, 6738, 11192, 273, 11125, 13, 6122, 292, 13, 19608, 292, 1039, 1330, 269, 361, 283, 940, 198, 198, 2, 3440, 27039, 198, 7, 27432, 55, 11, 4512, 88, 828, 357, 9288, 55, 11, 1332, 88, 8, 796, 269, 361, 283, 940, 13, 2220, 62, 7890, 3419, 198, 17566, 11, 14722, 796, 4512, 55, 11, 4512, 88, 628, 198, 2, 7469, 500, 2163, 329, 1877, 6323, 10317, 319, 827, 565, 404, 198, 198, 33885, 62, 16338, 7509, 62, 4868, 796, 685, 14202, 11, 41927, 292, 13, 16338, 11341, 13, 75, 16, 22784, 6122, 292, 13, 16338, 11341, 13, 75, 17, 22784, 6122, 292, 13, 16338, 11341, 13, 75, 16, 62, 75, 17, 3419, 60, 198, 40085, 7509, 62, 4868, 796, 685, 27110, 13, 6122, 292, 13, 40085, 11341, 13, 23159, 11, 48700, 13, 6122, 292, 13, 40085, 11341, 13, 45, 324, 321, 11, 48700, 13, 6122, 292, 13, 40085, 11341, 13, 49, 5653, 22930, 60, 198, 361, 18896, 7, 17597, 13, 853, 85, 8, 1875, 352, 25, 198, 220, 220, 220, 5772, 8605, 796, 1391, 198, 220, 220, 220, 705, 538, 5374, 82, 6, 1058, 493, 7, 17597, 13, 853, 85, 58, 16, 46570, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 39873, 6, 1058, 493, 7, 17597, 13, 853, 85, 58, 17, 46570, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 411, 6, 1058, 493, 7, 17597, 13, 853, 85, 58, 18, 46570, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 30342, 62, 7857, 6, 1058, 493, 7, 17597, 13, 853, 85, 58, 19, 46570, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 1102, 9246, 6, 1058, 493, 7, 17597, 13, 853, 85, 58, 20, 46570, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 16338, 7509, 6, 1058, 41927, 292, 13, 16338, 11341, 13, 75, 16, 22784, 2, 33885, 62, 16338, 7509, 62, 4868, 58, 600, 7, 17597, 13, 853, 85, 58, 21, 12962, 4357, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 40085, 7509, 6, 1058, 6436, 7509, 62, 4868, 58, 600, 7, 17597, 13, 853, 85, 58, 22, 12962, 4357, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 66, 20471, 62, 14781, 448, 6, 1058, 657, 13, 19, 11, 628, 220, 220, 220, 705, 81, 20471, 62, 14781, 448, 6, 1058, 657, 13, 17, 11, 628, 220, 220, 220, 705, 14050, 6, 1058, 642, 68, 12, 19, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 5143, 62, 312, 6, 1058, 45941, 13, 25120, 13, 25192, 600, 7, 12825, 11, 24, 830, 8, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 198, 17772, 25, 198, 220, 220, 220, 5772, 8605, 796, 1391, 198, 220, 220, 220, 705, 538, 5374, 82, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 39873, 6, 1058, 642, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 411, 6, 1058, 807, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 30342, 62, 7857, 6, 1058, 13108, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 1102, 9246, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 16338, 7509, 6, 1058, 6045, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 40085, 7509, 6, 1058, 6436, 7509, 62, 4868, 58, 15, 4357, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 66, 20471, 62, 14781, 448, 6, 1058, 657, 13, 19, 11, 628, 220, 220, 220, 705, 81, 20471, 62, 14781, 448, 6, 1058, 657, 13, 17, 11, 628, 220, 220, 220, 705, 14050, 6, 1058, 642, 68, 12, 19, 11, 198, 220, 220, 220, 220, 198, 220, 220, 220, 705, 5143, 62, 312, 6, 1058, 45941, 13, 25120, 13, 25192, 600, 7, 12825, 11, 24, 830, 8, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 198, 4798, 7, 17143, 8605, 8, 198, 1640, 1994, 11, 2100, 287, 5772, 8605, 13, 23814, 33529, 198, 220, 220, 220, 2452, 7, 2539, 1343, 705, 28, 2100, 11537, 198, 538, 5374, 82, 796, 36835, 82, 198, 39873, 796, 6291, 220, 198, 411, 796, 581, 220, 198, 30342, 62, 7857, 796, 30342, 62, 7857, 198, 1102, 9246, 796, 1673, 265, 198, 16338, 7509, 796, 3218, 7509, 198, 40085, 7509, 796, 6436, 7509, 198, 66, 20471, 62, 14781, 448, 796, 269, 20471, 62, 14781, 448, 198, 81, 20471, 62, 14781, 448, 796, 374, 20471, 62, 14781, 448, 198, 14050, 796, 300, 81, 198, 5143, 62, 312, 796, 1057, 62, 312, 198, 77, 62, 16514, 395, 25386, 796, 6291, 628, 198, 4299, 3063, 75, 301, 76, 7, 77, 62, 16514, 395, 25386, 796, 642, 11, 7104, 62, 7857, 796, 13108, 11, 15414, 62, 7857, 796, 3933, 11, 1673, 265, 796, 6407, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 198, 220, 220, 220, 8100, 371, 6144, 6087, 326, 14582, 262, 8100, 284, 257, 3127, 326, 41885, 220, 198, 220, 220, 220, 5299, 1795, 4, 9922, 319, 1336, 581, 269, 361, 283, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 299, 62, 16514, 395, 25386, 1058, 41876, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 22196, 40165, 13, 383, 4277, 318, 642, 13, 198, 220, 220, 220, 33705, 62, 27740, 1058, 41876, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 22196, 40165, 13, 383, 4277, 318, 3933, 13, 198, 220, 220, 220, 7104, 62, 7857, 1058, 41876, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 22196, 40165, 13, 383, 4277, 318, 13108, 13, 198, 220, 220, 220, 5128, 62, 7857, 1058, 41876, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 22196, 40165, 13, 383, 4277, 318, 3933, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2746, 1058, 41876, 198, 220, 220, 220, 220, 220, 220, 220, 22196, 40165, 13, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 5128, 32, 796, 41927, 292, 13, 75, 6962, 13, 20560, 7, 43358, 16193, 77, 62, 16514, 395, 25386, 11, 15414, 62, 7857, 11, 15414, 62, 7857, 11, 18, 4008, 198, 220, 220, 220, 5128, 33, 796, 41927, 292, 13, 75, 6962, 13, 20560, 7, 43358, 16193, 77, 62, 16514, 395, 25386, 11, 17, 4008, 628, 220, 220, 220, 1303, 8160, 8100, 2746, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 3103, 85, 17, 35, 7, 2624, 11, 7, 18, 11, 18, 828, 14916, 11639, 260, 2290, 3256, 39231, 796, 705, 31642, 6, 4008, 7, 15414, 32, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 3103, 85, 43, 2257, 44, 17, 35, 7, 2624, 11, 7, 18, 11, 18, 828, 24511, 796, 705, 31642, 3256, 4268, 448, 796, 269, 20471, 62, 14781, 448, 11, 42465, 62, 14781, 448, 28, 81, 20471, 62, 14781, 448, 11, 7783, 62, 3107, 3007, 28, 17821, 5769, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 11518, 27201, 278, 17, 35, 7, 7742, 62, 7857, 16193, 17, 11, 362, 4008, 5769, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 26932, 448, 7, 66, 20471, 62, 14781, 448, 4008, 7, 87, 16, 8, 628, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 3103, 85, 17, 35, 7, 2414, 11, 7, 18, 11, 18, 828, 48545, 11639, 260, 2290, 3256, 24511, 796, 705, 31642, 6, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 3103, 85, 17, 35, 7, 2414, 11, 7, 18, 11, 18, 828, 48545, 11639, 260, 2290, 3256, 24511, 796, 705, 31642, 6, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 11518, 27201, 278, 17, 35, 7, 7742, 62, 7857, 16193, 17, 11, 362, 4008, 5769, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 26932, 448, 7, 66, 20471, 62, 14781, 448, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 3103, 85, 17, 35, 7, 12762, 11, 7, 18, 11, 18, 828, 48545, 11639, 260, 2290, 3256, 24511, 796, 705, 31642, 6, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 3103, 85, 17, 35, 7, 12762, 11, 7, 18, 11, 18, 828, 48545, 11639, 260, 2290, 3256, 24511, 796, 705, 31642, 6, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 11518, 27201, 278, 17, 35, 7, 7742, 62, 7857, 16193, 17, 11, 362, 4008, 5769, 87, 16, 8, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 26932, 448, 7, 66, 20471, 62, 14781, 448, 4008, 7, 87, 16, 8, 198, 220, 220, 220, 3601, 7, 87, 16, 13, 43358, 8, 628, 198, 220, 220, 220, 2124, 16, 28, 6122, 292, 13, 75, 6962, 13, 7575, 20344, 6169, 7, 6122, 292, 13, 75, 6962, 13, 7414, 41769, 3419, 5769, 87, 16, 8, 198, 220, 220, 220, 3601, 7, 87, 16, 13, 43358, 8, 198, 220, 220, 220, 611, 1673, 265, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 41927, 292, 13, 75, 6962, 13, 3103, 9246, 268, 378, 3419, 26933, 87, 16, 11, 15414, 33, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 16, 198, 220, 220, 220, 3601, 7, 87, 13, 43358, 8, 628, 220, 220, 220, 1303, 8160, 406, 2257, 44, 2746, 198, 220, 220, 220, 2124, 796, 41927, 292, 13, 75, 6962, 13, 10761, 52, 7, 30342, 62, 7857, 11, 15414, 62, 43358, 16193, 77, 62, 16514, 395, 25386, 11, 6045, 828, 7783, 62, 3107, 3007, 28, 17821, 11, 8344, 6657, 62, 14781, 448, 28, 81, 20471, 62, 14781, 448, 5769, 87, 8, 198, 220, 220, 220, 2124, 796, 41927, 292, 13, 75, 6962, 13, 7414, 41769, 3419, 7, 87, 8, 198, 220, 220, 220, 2124, 796, 41927, 292, 13, 75, 6962, 13, 35, 1072, 7, 940, 11, 48545, 2625, 4215, 9806, 4943, 7, 87, 8, 198, 220, 220, 220, 2746, 796, 41927, 292, 13, 27530, 13, 17633, 7, 15414, 82, 41888, 15414, 32, 11, 15414, 33, 4357, 22915, 82, 28, 87, 11, 1438, 796, 705, 1102, 19279, 301, 76, 62, 66, 20471, 62, 19816, 62, 85, 486, 23330, 92, 4458, 18982, 7, 1102, 9246, 4008, 198, 220, 220, 220, 2172, 28, 27110, 13, 6122, 292, 13, 40085, 11341, 13, 23159, 7, 14050, 28, 14050, 8, 628, 220, 220, 220, 2746, 13, 5589, 576, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 28, 8738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2994, 2625, 82, 29572, 62, 66, 2397, 12409, 62, 19692, 298, 28338, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 14692, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 33116, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1441, 2746, 198, 198, 81, 20471, 62, 3262, 796, 3063, 75, 301, 76, 7, 77, 62, 16514, 395, 25386, 796, 6291, 11, 7104, 62, 7857, 796, 7104, 62, 7857, 11, 15414, 62, 7857, 796, 581, 11, 1673, 265, 796, 6407, 8, 198, 2, 6122, 292, 13, 26791, 13, 29487, 62, 19849, 7, 81, 20471, 62, 3262, 11, 4292, 62, 77, 7287, 28, 17821, 11, 220, 284, 62, 7753, 11639, 90, 27422, 11134, 4458, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 4008, 198, 2, 66, 20471, 62, 3262, 796, 269, 20471, 62, 3262, 796, 7083, 62, 66, 20471, 62, 505, 62, 9600, 7, 77, 62, 16514, 395, 25386, 796, 6291, 11, 5128, 62, 7857, 796, 581, 11, 4268, 448, 796, 269, 20471, 62, 14781, 448, 8, 628, 198, 2, 27673, 796, 6574, 3419, 198, 2, 27673, 13, 21928, 62, 6978, 796, 705, 82, 9586, 62, 48381, 6, 198, 198, 2, 27673, 13, 11213, 796, 366, 1837, 565, 404, 269, 361, 283, 2010, 2989, 4539, 1, 198, 2, 27673, 13, 5661, 62, 5143, 62, 3672, 796, 705, 1837, 565, 404, 23330, 92, 4458, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 8, 198, 2, 6061, 62, 6404, 82, 3419, 198, 198, 27432, 62, 19608, 292, 316, 11, 1332, 62, 19608, 292, 316, 796, 2251, 62, 66, 361, 283, 62, 19608, 292, 316, 7, 17566, 11, 14722, 11, 411, 796, 581, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6291, 796, 6291, 11, 1441, 62, 19608, 292, 1039, 28, 17821, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7668, 62, 5219, 796, 10352, 11, 751, 62, 28826, 796, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14774, 62, 411, 62, 20786, 796, 2089, 62, 411, 8784, 11, 510, 62, 39873, 796, 6407, 8, 198, 198, 27432, 62, 19608, 292, 316, 62, 87, 11, 4512, 62, 19608, 292, 316, 62, 88, 796, 6626, 62, 19608, 292, 316, 62, 5431, 7, 27432, 62, 19608, 292, 316, 8, 198, 9288, 62, 19608, 292, 316, 62, 87, 11, 1332, 62, 19608, 292, 316, 62, 88, 796, 6626, 62, 19608, 292, 316, 62, 5431, 7, 9288, 62, 19608, 292, 316, 8, 628, 198, 4798, 7203, 14468, 4242, 2, 25048, 23884, 290, 20134, 1749, 2746, 319, 3047, 1366, 581, 796, 23884, 1303, 14468, 2, 1911, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 11, 411, 4008, 198, 81, 20471, 62, 23569, 796, 374, 20471, 62, 3262, 13, 11147, 7, 198, 220, 220, 220, 4512, 62, 19608, 292, 316, 62, 87, 11, 198, 220, 220, 220, 4512, 62, 19608, 292, 316, 62, 88, 11, 198, 220, 220, 220, 15458, 62, 7857, 28, 2414, 11, 198, 220, 220, 220, 36835, 82, 28, 538, 5374, 82, 11, 198, 220, 220, 220, 1303, 775, 1208, 617, 21201, 329, 198, 220, 220, 220, 1303, 9904, 21201, 2994, 290, 20731, 198, 220, 220, 220, 1303, 379, 262, 886, 286, 1123, 36835, 198, 220, 220, 220, 21201, 62, 7890, 16193, 9288, 62, 19608, 292, 316, 62, 87, 11, 1332, 62, 19608, 292, 316, 62, 88, 828, 198, 220, 220, 220, 15942, 577, 796, 657, 8, 198, 198, 2, 3601, 10786, 14468, 2, 23884, 3254, 24765, 33222, 796, 45302, 18982, 7, 66, 20471, 62, 3262, 13, 3672, 828, 66, 20471, 62, 23569, 13, 23569, 17816, 2100, 62, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 12962, 198, 2, 3601, 10786, 14468, 2, 23884, 13614, 33222, 796, 45302, 18982, 7, 66, 20471, 62, 3262, 13, 3672, 828, 81, 20471, 62, 23569, 13, 23569, 17816, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 12962, 198, 198, 4798, 10786, 14468, 2, 23884, 3254, 24765, 33222, 796, 45302, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 828, 81, 20471, 62, 23569, 13, 23569, 17816, 2100, 62, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 12962, 198, 4798, 10786, 14468, 2, 23884, 13614, 33222, 796, 45302, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 828, 81, 20471, 62, 23569, 13, 23569, 17816, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 12962, 628, 198, 489, 83, 13, 26875, 3419, 198, 489, 83, 13, 29487, 7, 81, 20471, 62, 23569, 13, 23569, 17816, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 4357, 6167, 796, 705, 27432, 11537, 198, 489, 83, 13, 29487, 7, 81, 20471, 62, 23569, 13, 23569, 17816, 2100, 62, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 4357, 6167, 796, 705, 2100, 11537, 198, 2, 458, 83, 13, 29487, 7, 66, 20471, 62, 23569, 13, 23569, 17816, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 4357, 6167, 796, 705, 66, 20471, 4512, 11537, 198, 2, 458, 83, 13, 29487, 7, 66, 20471, 62, 23569, 13, 23569, 17816, 2100, 62, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 4357, 6167, 796, 705, 66, 20471, 1188, 11537, 198, 489, 83, 13, 1455, 437, 3419, 198, 489, 83, 13, 7839, 10786, 90, 92, 319, 269, 361, 283, 581, 796, 23884, 289, 82, 796, 23884, 4268, 448, 796, 1391, 5512, 997, 8405, 796, 23884, 4458, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 11, 581, 11, 7104, 62, 7857, 11, 66, 20471, 62, 14781, 448, 11, 39873, 4008, 198, 489, 83, 13, 21928, 5647, 10786, 90, 92, 319, 327, 361, 283, 581, 796, 1391, 5512, 645, 19649, 1403, 11, 1188, 4431, 796, 23884, 289, 82, 796, 23884, 4268, 448, 796, 23884, 13, 11134, 4458, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 11, 411, 11, 81, 20471, 62, 23569, 13, 23569, 17816, 2100, 62, 82, 29572, 62, 66, 2397, 12409, 62, 4134, 23843, 6, 7131, 12, 16, 4357, 7104, 62, 7857, 11, 66, 20471, 62, 14781, 448, 4008, 198, 198, 4480, 1280, 10786, 14, 11195, 14, 75, 8937, 14, 993, 747, 7063, 397, 14, 273, 430, 14, 48466, 413, 20949, 14, 66, 361, 283, 62, 3262, 62, 12947, 14, 90, 92, 18122, 35, 713, 90, 92, 23330, 92, 4458, 18982, 7, 81, 20471, 62, 3262, 13, 3672, 11, 7104, 62, 7857, 11, 66, 20471, 62, 14781, 448, 828, 705, 39346, 11537, 355, 2393, 62, 14415, 25, 198, 220, 220, 220, 2298, 293, 13, 39455, 7, 81, 20471, 62, 23569, 13, 23569, 11, 2393, 62, 14415, 8, 198, 220, 220, 220, 220, 198, 2, 351, 1280, 10786, 14, 11195, 14, 75, 8937, 14, 993, 747, 7063, 397, 14, 273, 430, 14, 48466, 413, 20949, 14, 66, 361, 283, 62, 3262, 62, 12947, 14, 90, 92, 18122, 35, 713, 4458, 18982, 7, 66, 20471, 62, 3262, 13, 3672, 828, 705, 39346, 11537, 355, 2393, 62, 14415, 25, 198, 2, 220, 220, 220, 220, 2298, 293, 13, 39455, 7, 66, 20471, 62, 23569, 13, 23569, 11, 2393, 62, 14415, 8, 198, 19608, 292, 316, 62, 19119, 7, 81, 20471, 62, 23569, 11, 374, 20471, 62, 3262, 11, 17143, 8605, 8, 220, 220, 220, 220, 198, 13564, 62, 1462, 62, 7753, 7, 81, 20471, 62, 23569, 11, 374, 20471, 62, 3262, 11, 17143, 8605, 8, 220, 220, 220, 220, 198, 220, 220, 220, 220 ]
2.174104
8,673
import pytest """ Test Dependency Installation The purpose is to check if core dependencies are installed properly. Typically, failure to these tests indicate an incorrection installation or wrong activation of the virtual environment (i.e. conda, venv, etc.). """
[ 11748, 12972, 9288, 198, 198, 37811, 6208, 37947, 1387, 32588, 198, 198, 464, 4007, 318, 284, 2198, 611, 4755, 20086, 389, 6589, 6105, 13, 198, 49321, 11, 5287, 284, 777, 5254, 7603, 281, 5970, 8243, 9988, 220, 198, 273, 2642, 14916, 286, 262, 7166, 2858, 357, 72, 13, 68, 13, 1779, 64, 11, 8710, 85, 11, 3503, 15729, 198, 198, 37811, 198 ]
4.33871
62
from treys import Evaluator, Deck from treys.card import pretty d = Deck.fresh() print(d) print(pretty(d))
[ 6738, 2054, 893, 1330, 26439, 84, 1352, 11, 20961, 198, 6738, 2054, 893, 13, 9517, 1330, 2495, 198, 198, 67, 796, 20961, 13, 48797, 3419, 198, 4798, 7, 67, 8, 198, 4798, 7, 37784, 7, 67, 4008, 628, 198 ]
2.820513
39
#!/usr/bin/env python r""" This module provides command execution functions such as cmd_fnc and cmd_fnc_u. """ import sys import subprocess robot_env = 1 try: from robot.libraries.BuiltIn import BuiltIn except ImportError: robot_env = 0 import gen_print as gp import gen_valid as gv import gen_misc as gm if robot_env: import gen_robot_print as grp ############################################################################### def cmd_fnc(cmd_buf, quiet=None, test_mode=None, debug=0, print_output=1, show_err=1): r""" Run the given command in a shell and return the shell return code. Description of arguments: cmd_buf The command string to be run in a shell. quiet Indicates whether this function should run the pissuing() function prints an "Issuing: <cmd string>" to stdout. test_mode If test_mode is set, this function will not actually run the command. debug If debug is set, this function will print extra debug info. print_output If this is set, this function will print the stdout/stderr generated by the shell command. show_err If show_err is set, this function will print a standardized error report if the shell command returns non-zero. """ quiet = int(gm.global_default(quiet, 0)) test_mode = int(gm.global_default(test_mode, 0)) if debug: gp.print_vars(cmd_buf, quiet, test_mode, debug) err_msg = gv.svalid_value(cmd_buf) if err_msg != "": raise ValueError(err_msg) if not quiet: gp.pissuing(cmd_buf, test_mode) if test_mode: return 0, "" sub_proc = subprocess.Popen(cmd_buf, bufsize=1, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out_buf = "" for line in sub_proc.stdout: out_buf += line if not print_output: continue if robot_env: grp.rprint(line) else: sys.stdout.write(line) if print_output and not robot_env: sys.stdout.flush() sub_proc.communicate() shell_rc = sub_proc.returncode if shell_rc != 0 and show_err: if robot_env: grp.rprint_error_report("The prior command failed.\n" + gp.sprint_var(shell_rc, 1)) else: gp.print_error_report("The prior command failed.\n" + gp.sprint_var(shell_rc, 1)) return shell_rc, out_buf ############################################################################### ############################################################################### def cmd_fnc_u(cmd_buf, quiet=None, debug=None, print_output=1, show_err=1): r""" Call cmd_fnc with test_mode=0. See cmd_fnc (above) for details. Note the "u" in "cmd_fnc_u" stands for "unconditional". """ return cmd_fnc(cmd_buf, test_mode=0, quiet=quiet, debug=debug, print_output=print_output, show_err=show_err) ###############################################################################
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 81, 37811, 198, 1212, 8265, 3769, 3141, 9706, 5499, 884, 355, 23991, 62, 69, 10782, 290, 23991, 62, 69, 10782, 62, 84, 13, 198, 37811, 198, 198, 11748, 25064, 198, 11748, 850, 14681, 198, 198, 305, 13645, 62, 24330, 796, 352, 198, 28311, 25, 198, 220, 220, 220, 422, 9379, 13, 75, 11127, 13, 39582, 818, 1330, 28477, 818, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 9379, 62, 24330, 796, 657, 198, 11748, 2429, 62, 4798, 355, 27809, 198, 11748, 2429, 62, 12102, 355, 308, 85, 198, 11748, 2429, 62, 44374, 355, 308, 76, 198, 361, 9379, 62, 24330, 25, 198, 220, 220, 220, 1330, 2429, 62, 305, 13645, 62, 4798, 355, 1036, 79, 628, 198, 29113, 29113, 7804, 4242, 21017, 198, 4299, 23991, 62, 69, 10782, 7, 28758, 62, 29325, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5897, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 14171, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14257, 28, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 22915, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 905, 62, 8056, 28, 16, 2599, 628, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 5660, 262, 1813, 3141, 287, 257, 7582, 290, 1441, 262, 7582, 1441, 2438, 13, 628, 220, 220, 220, 12489, 286, 7159, 25, 198, 220, 220, 220, 23991, 62, 29325, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 3141, 4731, 284, 307, 1057, 287, 257, 7582, 13, 198, 220, 220, 220, 5897, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1423, 16856, 1771, 428, 2163, 815, 1057, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 18314, 4250, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2163, 20842, 281, 366, 27738, 4250, 25, 1279, 28758, 4731, 24618, 284, 14367, 448, 13, 198, 220, 220, 220, 1332, 62, 14171, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 1332, 62, 14171, 318, 900, 11, 428, 2163, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 1682, 1057, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3141, 13, 198, 220, 220, 220, 14257, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 14257, 318, 900, 11, 428, 2163, 481, 3601, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 14257, 7508, 13, 198, 220, 220, 220, 3601, 62, 22915, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 428, 318, 900, 11, 428, 2163, 481, 3601, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 14367, 448, 14, 301, 1082, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7560, 416, 262, 7582, 3141, 13, 198, 220, 220, 220, 905, 62, 8056, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 905, 62, 8056, 318, 900, 11, 428, 2163, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 257, 25713, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 989, 611, 262, 7582, 3141, 5860, 1729, 12, 22570, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 5897, 796, 493, 7, 39870, 13, 20541, 62, 12286, 7, 39624, 11, 657, 4008, 198, 220, 220, 220, 1332, 62, 14171, 796, 493, 7, 39870, 13, 20541, 62, 12286, 7, 9288, 62, 14171, 11, 657, 4008, 628, 220, 220, 220, 611, 14257, 25, 198, 220, 220, 220, 220, 220, 220, 220, 27809, 13, 4798, 62, 85, 945, 7, 28758, 62, 29325, 11, 5897, 11, 1332, 62, 14171, 11, 14257, 8, 628, 220, 220, 220, 11454, 62, 19662, 796, 308, 85, 13, 82, 12102, 62, 8367, 7, 28758, 62, 29325, 8, 198, 220, 220, 220, 611, 11454, 62, 19662, 14512, 366, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 8056, 62, 19662, 8, 628, 220, 220, 220, 611, 407, 5897, 25, 198, 220, 220, 220, 220, 220, 220, 220, 27809, 13, 79, 747, 4250, 7, 28758, 62, 29325, 11, 1332, 62, 14171, 8, 628, 220, 220, 220, 611, 1332, 62, 14171, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 657, 11, 13538, 628, 220, 220, 220, 850, 62, 36942, 796, 850, 14681, 13, 47, 9654, 7, 28758, 62, 29325, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 1082, 81, 28, 7266, 14681, 13, 36886, 8, 198, 220, 220, 220, 503, 62, 29325, 796, 13538, 198, 220, 220, 220, 329, 1627, 287, 850, 62, 36942, 13, 19282, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 503, 62, 29325, 15853, 1627, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3601, 62, 22915, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9379, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1036, 79, 13, 81, 4798, 7, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 13564, 7, 1370, 8, 198, 220, 220, 220, 611, 3601, 62, 22915, 290, 407, 9379, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 850, 62, 36942, 13, 10709, 5344, 3419, 198, 220, 220, 220, 7582, 62, 6015, 796, 850, 62, 36942, 13, 7783, 8189, 198, 220, 220, 220, 611, 7582, 62, 6015, 14512, 657, 290, 905, 62, 8056, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9379, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1036, 79, 13, 81, 4798, 62, 18224, 62, 13116, 7203, 464, 3161, 3141, 4054, 13, 59, 77, 1, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27809, 13, 82, 4798, 62, 7785, 7, 29149, 62, 6015, 11, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27809, 13, 4798, 62, 18224, 62, 13116, 7203, 464, 3161, 3141, 4054, 13, 59, 77, 1, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27809, 13, 82, 4798, 62, 7785, 7, 29149, 62, 6015, 11, 352, 4008, 628, 220, 220, 220, 1441, 7582, 62, 6015, 11, 503, 62, 29325, 198, 198, 29113, 29113, 7804, 4242, 21017, 628, 198, 29113, 29113, 7804, 4242, 21017, 198, 4299, 23991, 62, 69, 10782, 62, 84, 7, 28758, 62, 29325, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5897, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14257, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 22915, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 905, 62, 8056, 28, 16, 2599, 628, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 4889, 23991, 62, 69, 10782, 351, 1332, 62, 14171, 28, 15, 13, 220, 4091, 23991, 62, 69, 10782, 357, 29370, 8, 329, 3307, 13, 628, 220, 220, 220, 5740, 262, 366, 84, 1, 287, 366, 28758, 62, 69, 10782, 62, 84, 1, 6296, 329, 366, 403, 17561, 1859, 1911, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 23991, 62, 69, 10782, 7, 28758, 62, 29325, 11, 1332, 62, 14171, 28, 15, 11, 5897, 28, 39624, 11, 14257, 28, 24442, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 22915, 28, 4798, 62, 22915, 11, 905, 62, 8056, 28, 12860, 62, 8056, 8, 198, 198, 29113, 29113, 7804, 4242, 21017, 198 ]
2.048904
1,779
import turtle as trt distance = 70 angle = 90 for compteur in range(4): if compteur == 0: trt.color("blue") elif compteur == 1: trt.color("red") elif compteur == 2: trt.color("green") else : trt.color("orange") trt.write(compteur) trt.forward(distance) trt.left(angle) trt.done()
[ 11748, 28699, 355, 491, 83, 198, 198, 30246, 796, 4317, 198, 9248, 796, 4101, 198, 198, 1640, 401, 457, 23365, 287, 2837, 7, 19, 2599, 198, 197, 361, 401, 457, 23365, 6624, 657, 25, 198, 197, 197, 2213, 83, 13, 8043, 7203, 17585, 4943, 198, 197, 417, 361, 401, 457, 23365, 6624, 352, 25, 198, 197, 197, 2213, 83, 13, 8043, 7203, 445, 4943, 198, 197, 417, 361, 401, 457, 23365, 6624, 362, 25, 198, 197, 197, 2213, 83, 13, 8043, 7203, 14809, 4943, 198, 197, 17772, 1058, 198, 197, 197, 2213, 83, 13, 8043, 7203, 43745, 4943, 198, 197, 2213, 83, 13, 13564, 7, 785, 457, 23365, 8, 198, 197, 2213, 83, 13, 11813, 7, 30246, 8, 198, 197, 2213, 83, 13, 9464, 7, 9248, 8, 198, 198, 2213, 83, 13, 28060, 3419, 628 ]
2.214815
135
#!/usr/bin/python # # Author: Jashua R. Cloutier (contact via sourceforge username:senexcanis) # # Copyright (C) 2010, Jashua R. Cloutier # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in # the documentation and/or other materials provided with the # distribution. # # * Neither the name of Jashua R. Cloutier nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # # # The CppHeaderParser.py script is written in Python 2.4 and released to # the open source community for continuous improvements under the BSD # 2.0 new license, which can be found at: # # http://www.opensource.org/licenses/bsd-license.php # """ CppHeaderParser2.0: April 2011 - August 2011 by HartsAntler http://pyppet.blogspot.com Quick Start - User API: h = CppHeaderParser.CppHeader("someheader.h") for name in h.classes: c = h.classes[name] for method in c['methods']['public']: print method['name'] print dir(method) # view the rest of the API here. ... TODO document more ... New Features by Hart: should be able to parse all c++ files, not just headers parsing global typedefs with resolution parsing global structs fixes nested struct in class changes accessor type parsing if class is abstract parsing more info about variables save ordering of classes, structs, and typedefs handle forward decl of class in a class handle mutable, static, and other variable types handle 1D arrays handle throw keyword and function prefix __attribute__((__const__)) handle nameless parameters "void method(void);" handle simple templates, and global functions. Internal Developer Notes: 1. double name stacks: . the main stack is self.nameStack, this stack is simpler and easy to get hints from . the secondary stack is self.stack is the full name stack, required for parsing somethings . each stack maybe cleared at different points, since they are used to detect different things . it looks ugly but it works :) 2. Had to make the __repr__ methods simple because some of these dicts are interlinked. For nice printing, call something.show() """ import ply.lex as lex import os import sys import re import inspect def lineno(): """Returns the current line number in our program.""" return inspect.currentframe().f_back.f_lineno version = __version__ = "1.9.9o" tokens = [ 'NUMBER', 'NAME', 'OPEN_PAREN', 'CLOSE_PAREN', 'OPEN_BRACE', 'CLOSE_BRACE', 'COLON', 'SEMI_COLON', 'COMMA', 'COMMENT_SINGLELINE', 'COMMENT_MULTILINE', 'PRECOMP_MACRO', 'PRECOMP_MACRO_CONT', 'ASTERISK', 'AMPERSTAND', 'EQUALS', 'MINUS', 'PLUS', 'DIVIDE', 'CHAR_LITERAL', 'STRING_LITERAL', 'OPERATOR_DIVIDE_OVERLOAD', 'NEW_LINE', 'OPEN_BRACKET', 'CLOSE_BRACKET', ] t_OPEN_BRACKET = r'\[' t_CLOSE_BRACKET = r'\]' #t_ignore = " \t\r[].|!?%@" # (cppheaderparser 1.9x) #t_ignore = " \t\r[].|!?%@'^\\" t_ignore = " \t\r.|!?%@'^\\" t_NUMBER = r'[0-9][0-9XxA-Fa-f]*' t_NAME = r'[<>A-Za-z_~][A-Za-z0-9_]*' t_OPERATOR_DIVIDE_OVERLOAD = r'/=' t_OPEN_PAREN = r'\(' t_CLOSE_PAREN = r'\)' t_OPEN_BRACE = r'{' t_CLOSE_BRACE = r'}' t_SEMI_COLON = r';' t_COLON = r':' t_COMMA = r',' t_PRECOMP_MACRO = r'\#.*' t_PRECOMP_MACRO_CONT = r'.*\\\n' def t_COMMENT_SINGLELINE(t): r'\/\/.*\n' global doxygenCommentCache if t.value.startswith("///") or t.value.startswith("//!"): if doxygenCommentCache: doxygenCommentCache += "\n" if t.value.endswith("\n"): doxygenCommentCache += t.value[:-1] else: doxygenCommentCache += t.value t_ASTERISK = r'\*' t_MINUS = r'\-' t_PLUS = r'\+' t_DIVIDE = r'/[^/]' # fails to catch "/(" - method operator that overloads divide t_AMPERSTAND = r'&' t_EQUALS = r'=' t_CHAR_LITERAL = "'.'" #found at http://wordaligned.org/articles/string-literals-and-regular-expressions #TODO: This does not work with the string "bla \" bla" t_STRING_LITERAL = r'"([^"\\]|\\.)*"' #Found at http://ostermiller.org/findcomment.html def t_COMMENT_MULTILINE(t): r'/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/' global doxygenCommentCache if t.value.startswith("/**") or t.value.startswith("/*!"): #not sure why, but get double new lines v = t.value.replace("\n\n", "\n") #strip prefixing whitespace v = re.sub("\n[\s]+\*", "\n*", v) doxygenCommentCache += v def t_NEWLINE(t): r'\n+' t.lexer.lineno += len(t.value) lex.lex() debug = 0 debug_trace = 0 supportedAccessSpecifier = [ 'public', 'protected', 'private' ] enumMaintianValueFormat = False doxygenCommentCache = "" def is_namespace(nameStack): """Determines if a namespace is being specified""" if len(nameStack) == 0: return False if nameStack[0] == "namespace": return True return False def is_enum_namestack(nameStack): """Determines if a namestack is an enum namestack""" if len(nameStack) == 0: return False if nameStack[0] == "enum": return True if len(nameStack) > 1 and nameStack[0] == "typedef" and nameStack[1] == "enum": return True return False class CppClass( _CppClass ): """Takes a name stack and turns it into a class Contains the following Keys: self['name'] - Name of the class self['doxygen'] - Doxygen comments associated with the class if they exist self['inherits'] - List of Classes that this one inherits where the values are of the form {"access": Anything in supportedAccessSpecifier "class": Name of the class self['methods'] - Dictionary where keys are from supportedAccessSpecifier and values are a lists of CppMethod's self['properties'] - Dictionary where keys are from supportedAccessSpecifier and values are lists of CppVariable's self['enums'] - Dictionary where keys are from supportedAccessSpecifier and values are lists of CppEnum's self['structs'] - Dictionary where keys are from supportedAccessSpecifier and values are lists of nested Struct's An example of how this could look is as follows: #self = { 'name': "" 'inherits':[] 'methods': { 'public':[], 'protected':[], 'private':[] }, 'properties': { 'public':[], 'protected':[], 'private':[] }, 'enums': { 'public':[], 'protected':[], 'private':[] } } """ def show(self): """Convert class to a string""" namespace_prefix = "" if self["namespace"]: namespace_prefix = self["namespace"] + "::" rtn = "class %s"%(namespace_prefix + self["name"]) if self['abstract']: rtn += ' (abstract)\n' else: rtn += '\n' if 'doxygen' in self.keys(): rtn += self["doxygen"] + '\n' if 'parent' in self.keys() and self['parent']: rtn += 'parent class:' + self['parent'] + '\n' if "inherits" in self.keys(): rtn += " Inherits: " for inheritClass in self["inherits"]: rtn += "%s %s, "%(inheritClass["access"], inheritClass["class"]) rtn += "\n" rtn += " {\n" for accessSpecifier in supportedAccessSpecifier: rtn += " %s\n"%(accessSpecifier) #Enums if (len(self["enums"][accessSpecifier])): rtn += " <Enums>\n" for enum in self["enums"][accessSpecifier]: rtn += " %s\n"%(repr(enum)) #Properties if (len(self["properties"][accessSpecifier])): rtn += " <Properties>\n" for property in self["properties"][accessSpecifier]: rtn += " %s\n"%(repr(property)) #Methods if (len(self["methods"][accessSpecifier])): rtn += " <Methods>\n" for method in self["methods"][accessSpecifier]: rtn += "\t\t" + method.show() + '\n' rtn += " }\n" print( rtn ) class CppMethod( _CppMethod ): """Takes a name stack and turns it into a method Contains the following Keys: self['returns'] - Return type of the method (ex. "int") self['name'] - Name of the method (ex. "getSize") self['doxygen'] - Doxygen comments associated with the method if they exist self['parameters'] - List of CppVariables """ class CppVariable( _CppVariable ): """Takes a name stack and turns it into a method Contains the following Keys: self['type'] - Type for the variable (ex. "const string &") self['raw_type'] - Type of variable without pointers or other markup (ex. "string") self['name'] - Name of the variable (ex. "numItems") self['namespace'] - Namespace containing the enum self['desc'] - Description of the variable if part of a method (optional) self['doxygen'] - Doxygen comments associated with the method if they exist self['defalt'] - Default value of the variable, this key will only exist if there is a default value """ Vars = [] class CppEnum(_CppEnum): """Takes a name stack and turns it into an Enum Contains the following Keys: self['name'] - Name of the enum (ex. "ItemState") self['namespace'] - Namespace containing the enum self['values'] - List of values where the values are a dictionary of the form {"name": name of the key (ex. "PARSING_HEADER"), "value": Specified value of the enum, this key will only exist if a value for a given enum value was defined } """ C99_NONSTANDARD = { 'int8' : 'signed char', 'int16' : 'short int', 'int32' : 'int', 'int64' : 'int64_t', # this can be: long int (64bit), or long long int (32bit) 'uint' : 'unsigned int', 'uint8' : 'unsigned char', 'uint16' : 'unsigned short int', 'uint32' : 'unsigned int', 'uint64' : 'uint64_t', # depends on host bits } class CppHeader( _CppHeader ): """Parsed C++ class header Variables produced: self.classes - Dictionary of classes found in a given header file where the key is the name of the class """ IGNORE_NAMES = '__extension__'.split() def evaluate_enum_stack(self): """Create an Enum out of the name stack""" newEnum = CppEnum(self.nameStack) if len(newEnum.keys()): if len(self.curClass): newEnum["namespace"] = self.cur_namespace(False) klass = self.classes[self.curClass] klass["enums"][self.curAccessSpecifier].append(newEnum) if self.curAccessSpecifier == 'public': if 'name' in newEnum and newEnum['name']: klass._public_enums[ newEnum['name'] ] = newEnum else: newEnum["namespace"] = self.cur_namespace(True) self.enums.append(newEnum) if 'name' in newEnum and newEnum['name']: self.global_enums[ newEnum['name'] ] = newEnum #This enum has instances, turn them into properties if newEnum.has_key("instances"): instanceType = "enum" if newEnum.has_key("name"): instanceType = newEnum["name"] for instance in newEnum["instances"]: self.nameStack = [instanceType, instance] self.evaluate_property_stack() del newEnum["instances"] def __init__(self, headerFileName, argType="file", **kwargs): """Create the parsed C++ header file parse tree headerFileName - Name of the file to parse OR actual file contents (depends on argType) argType - Indicates how to interpret headerFileName as a file string or file name kwargs - Supports the following keywords "enumMaintianValueFormat" - Set to true for enum values to maintain the original format ('j' will not convert to 106) """ ## reset global state ## global doxygenCommentCache doxygenCommentCache = "" CppVariable.Vars = [] CppStruct.Structs = [] if (argType == "file"): self.headerFileName = os.path.expandvars(headerFileName) self.mainClass = os.path.split(self.headerFileName)[1][:-2] headerFileStr = "" elif argType == "string": self.headerFileName = "" self.mainClass = "???" headerFileStr = headerFileName else: raise Exception("Arg type must be either file or string") self.curClass = "" global enumMaintianValueFormat if kwargs.has_key("enumMaintianValueFormat"): enumMaintianValueFormat = kwargs["enumMaintianValueFormat"] else: enumMaintianValueFormat = False # nested classes have parent::nested, but no extra namespace, # this keeps the API compatible, TODO proper namespace for everything. Resolver.CLASSES = {} self.classes = Resolver.CLASSES self.enums = [] self.global_enums = {} self.nameStack = [] self.nameSpaces = [] self.curAccessSpecifier = 'private' # private is default self._current_access = [] self.initextra() # harts hack if (len(self.headerFileName)): headerFileStr = "\n".join(open(self.headerFileName).readlines()) self.braceDepth = 0 lex.input(headerFileStr) curLine = 0 curChar = 0 if 1: #try: while True: tok = lex.token() if not tok: break if tok.type == 'NAME' and tok.value in self.IGNORE_NAMES: continue if tok.type not in ('PRECOMP_MACRO', 'PRECOMP_MACRO_CONT'): self.stack.append( tok.value ) curLine = tok.lineno curChar = tok.lexpos if tok.type in ('OPEN_BRACKET', 'CLOSE_BRACKET'): self.nameStack.append( tok.value ) elif (tok.type == 'OPEN_BRACE'): _brace = True if len(self.nameStack)>=2 and self.nameStack[0]=='extern' and self.nameStack[1]=='"C"': _brace = False; print( 'extern C') elif len(self.nameStack)>=2 and self.nameStack[0]=='extern' and self.nameStack[1]=='"C++"': _brace = False; print( 'extern C++' ) if _brace: self.braceDepth += 1 if len(self.nameStack) >= 2 and is_namespace(self.nameStack): # namespace {} with no name used in boost, this sets default? self.nameSpaces.append(self.nameStack[1]) ns = self.cur_namespace(); self.stack = [] if ns not in self.namespaces: self.namespaces.append( ns ) if len(self.nameStack) and not is_enum_namestack(self.nameStack): self.evaluate_stack() else: self.nameStack.append(tok.value) if self.stack and self.stack[0] == 'class': self.stack = [] #if _brace: self.braceDepth += 1 elif (tok.type == 'CLOSE_BRACE'): if self.braceDepth == 0: continue if (self.braceDepth == len(self.nameSpaces)): tmp = self.nameSpaces.pop() self.stack = [] # clear stack when namespace ends? if len(self.nameStack) and is_enum_namestack(self.nameStack): self.nameStack.append(tok.value) elif self.braceDepth < 10: self.evaluate_stack() else: self.nameStack = [] self.braceDepth -= 1 if self.braceDepth < 0: print('---------- END OF EXTERN -----------') self.braceDepth = 0 if self.curClass and debug: print( 'CURBD', self._classes_brace_level[ self.curClass ] ) if (self.braceDepth == 0) or (self.curClass and self._classes_brace_level[self.curClass] > self.braceDepth): if self.curClass: print( '------------END OF CLASS DEF-------------', 'braceDepth:', self.braceDepth ) if self._current_access: self._current_access.pop() if self.curClass and self.classes[ self.curClass ]['parent']: self.curClass = self.classes[ self.curClass ]['parent'] if self._current_access: self.curAccessSpecifier = self._current_access[-1] else: self.curClass = "" self.stack = [] #if self.curStruct: self.curStruct = None if self.braceDepth==0 or (self.curStruct and not self.curStruct['type']) or (self.curStruct and self._structs_brace_level[self.curStruct['type']] > self.braceDepth): if self.curStruct: print( '---------END OF STRUCT DEF-------------' ) if self.curStruct and not self.curStruct['type']: self._struct_needs_name = self.curStruct self.curStruct = None if self._method_body and self.braceDepth < self._method_body: self._method_body = None; self.stack = []; self.nameStack = []; print( 'FORCE CLEAR METHBODY' ) if (tok.type == 'OPEN_PAREN'): self.nameStack.append(tok.value) elif (tok.type == 'CLOSE_PAREN'): self.nameStack.append(tok.value) elif (tok.type == 'EQUALS'): self.nameStack.append(tok.value) elif (tok.type == 'COMMA'): self.nameStack.append(tok.value) elif (tok.type == 'NUMBER'): self.nameStack.append(tok.value) elif (tok.type == 'MINUS'): self.nameStack.append(tok.value) elif (tok.type == 'PLUS'): self.nameStack.append(tok.value) elif (tok.type == 'STRING_LITERAL'): self.nameStack.append(tok.value) elif (tok.type == 'NAME' or tok.type == 'AMPERSTAND' or tok.type == 'ASTERISK'): self.nameStack.append(tok.value) elif (tok.type == 'COLON'): #Dont want colon to be first in stack if len(self.nameStack) == 0: continue if self.nameStack and self.nameStack[-1] in supportedAccessSpecifier: if self.curClass or self.curStruct: cas = self.nameStack[-1] self.curAccessSpecifier = cas; print('CURACCESS-set', cas) if self.curClass: if self._current_access: self._current_access[-1] = cas else: self._current_access.append( cas ) else: print('warning - "public ::namespace"', ' '.join(self.nameStack)) self.stack = []; self.nameStack = [] # need to clear nameStack to so that nested structs can be found else: self.nameStack.append(tok.value) elif (tok.type == 'SEMI_COLON'): if (self.braceDepth < 10): self.evaluate_stack( tok.type ) if not self.stack: continue if self.stack[0]=='typedef' and ( '{' not in self.stack or '}' in self.stack ): self.stack = []; trace_print( "REAL CLEAR") elif self.stack[0] != 'typedef': self.stack = []; trace_print('CLEAR STACK') #except: # raise CppParseError("Not able to parse %s on line %d evaluating \"%s\"\nError around: %s" # % (self.headerFileName, tok.lineno, tok.value, " ".join(self.nameStack))) self.finalize() def evaluate_stack(self, token=None): """Evaluates the current name stack""" global doxygenCommentCache print( "Evaluating stack %s\nBraceDepth: %s" %(self.nameStack,self.braceDepth)) print( "Evaluating stack %s\nBraceDepth: %s" %(self.stack,self.braceDepth)) if (len(self.curClass)): if (debug): print( "%s (%s) "%(self.curClass, self.curAccessSpecifier)) #if 'typedef' in self.nameStack: self.evaluate_typedef() # allows nested typedefs, probably a bad idea if not self.curClass and 'typedef' in self.nameStack: print('HIT TYPEDEF', self.stack) if token == 'SEMI_COLON' and ('{' not in self.stack or '}' in self.stack): self.evaluate_typedef() else: return elif (len(self.nameStack) == 0): if (debug): print( "line ",lineno() ) if (debug): print( "(Empty Stack)" ) return elif (self.nameStack[0] == "namespace"): #Taken care of outside of here pass elif len(self.nameStack) >= 2 and self.nameStack[0] == 'using' and self.nameStack[1] == 'namespace': pass # TODO elif is_enum_namestack(self.nameStack): if (debug): print( "line ",lineno() ) self.evaluate_enum_stack() elif self._method_body and self.braceDepth >= self._method_body: #print( 'INSIDE METHOD DEF', self.nameStack ) self.stack = [] #elif is_method_namestack(self.stack) and '(' in self.nameStack: # this fails on "operator /(..." elif ')' in self.nameStack and is_method_namestack(self.stack): #print( 'eval method', self.nameStack ) self.evaluate_method_stack() self.stack = [] elif len(self.nameStack) >= 2 and (self.nameStack[0]=='friend' and self.nameStack[1]=='class'): pass elif ('class' in self.nameStack or 'struct' in self.nameStack) and self.stack[-1] == ';': self.evaluate_forward_decl() elif (self.nameStack[0] == "class") or (self.nameStack[0]=='template' and 'class' in self.nameStack): #print('^^^^^^^^^^^^^^^^^^^^') self.evaluate_class_stack() elif (self.nameStack[0] == "struct") or (len(self.nameStack)>3 and self.stack[-1]=='{' and self.nameStack[-3]=='struct'): print( '------------new struct-----------' ) self.evaluate_struct_stack() self.stack = [] elif self.nameStack[0]=='template' and self.stack[-1]=='{' and 'struct' in self.nameStack: print( '------------new struct - unsafe?' ) self.evaluate_struct_stack() self.stack = [] elif '(' not in self.nameStack and ')' not in self.nameStack and self.stack[-1] == ';': # catching all props? self.evaluate_property_stack() elif not self.curClass: if (debug): print( "line ",lineno() ) if is_enum_namestack(self.nameStack): self.evaluate_enum_stack() elif self.curStruct and self.stack[-1] == ';': self.evaluate_property_stack() # this catches fields of global structs self.nameStack = [] doxygenCommentCache = "" return elif (self.braceDepth < 1): if (debug): print( "line ",lineno() ) #Ignore global stuff for now if (debug): print( "Global stuff: ", self.nameStack ) self.nameStack = [] self._method_body = None doxygenCommentCache = "" return elif (self.braceDepth > len(self.nameSpaces) + 1): if (debug): print( "line ",lineno() ) self.nameStack = [] doxygenCommentCache = "" return self.nameStack = [] # some if/else above return and others not, so this may or may not be reset doxygenCommentCache = ""
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 198, 2, 6434, 25, 449, 1077, 6413, 371, 13, 1012, 448, 959, 357, 32057, 2884, 2723, 30293, 20579, 25, 6248, 1069, 5171, 271, 8, 198, 2, 198, 2, 15069, 357, 34, 8, 3050, 11, 449, 1077, 6413, 371, 13, 1012, 448, 959, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 2297, 396, 3890, 290, 779, 287, 2723, 290, 13934, 5107, 11, 351, 393, 1231, 198, 2, 17613, 11, 389, 10431, 2810, 326, 262, 1708, 3403, 198, 2, 389, 1138, 25, 198, 2, 198, 2, 1635, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 198, 2, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 198, 2, 198, 2, 1635, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 198, 2, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 198, 2, 220, 220, 262, 10314, 290, 14, 273, 584, 5696, 2810, 351, 262, 198, 2, 220, 220, 6082, 13, 198, 2, 198, 2, 1635, 16126, 262, 1438, 286, 449, 1077, 6413, 371, 13, 1012, 448, 959, 4249, 262, 3891, 286, 663, 198, 2, 220, 220, 20420, 743, 307, 973, 284, 11438, 393, 7719, 3186, 10944, 422, 198, 2, 220, 220, 428, 3788, 1231, 2176, 3161, 3194, 7170, 13, 198, 2, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 27975, 38162, 9947, 367, 15173, 4877, 5357, 27342, 9865, 3843, 20673, 198, 2, 366, 1921, 3180, 1, 5357, 15529, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 198, 2, 40880, 5390, 11, 3336, 8959, 49094, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 198, 2, 7473, 317, 16652, 2149, 37232, 33079, 48933, 15986, 13954, 48778, 1961, 13, 3268, 8005, 49261, 50163, 3336, 198, 2, 27975, 38162, 9947, 47210, 21479, 6375, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 7473, 15529, 42242, 11, 3268, 17931, 23988, 11, 198, 2, 19387, 25256, 1847, 11, 38846, 11, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 29506, 25552, 357, 1268, 39149, 2751, 11, 198, 2, 21728, 5626, 40880, 5390, 11, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 6375, 49254, 26, 198, 2, 406, 18420, 3963, 23210, 11, 42865, 11, 6375, 4810, 19238, 29722, 26, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 29630, 36, 5959, 198, 2, 7257, 2937, 1961, 5357, 6177, 15529, 3336, 15513, 3963, 43031, 25382, 11, 7655, 2767, 16879, 3268, 27342, 10659, 11, 19269, 18379, 198, 2, 43031, 25382, 11, 6375, 309, 9863, 357, 1268, 39149, 2751, 399, 7156, 43, 3528, 18310, 6375, 25401, 54, 24352, 8, 5923, 1797, 2751, 3268, 198, 2, 15529, 34882, 16289, 3963, 3336, 23210, 3963, 12680, 47466, 11, 45886, 16876, 5984, 29817, 1961, 3963, 3336, 198, 2, 28069, 11584, 25382, 3963, 13558, 3398, 29506, 11879, 13, 198, 2, 198, 2, 198, 2, 383, 327, 381, 39681, 46677, 13, 9078, 4226, 318, 3194, 287, 11361, 362, 13, 19, 290, 2716, 284, 198, 2, 262, 1280, 2723, 2055, 329, 12948, 8561, 739, 262, 347, 10305, 198, 2, 362, 13, 15, 649, 5964, 11, 543, 460, 307, 1043, 379, 25, 198, 2, 198, 2, 220, 220, 2638, 1378, 2503, 13, 44813, 1668, 13, 2398, 14, 677, 4541, 14, 1443, 67, 12, 43085, 13, 10121, 198, 2, 198, 37811, 198, 34, 381, 39681, 46677, 17, 13, 15, 25, 3035, 2813, 532, 2932, 2813, 198, 220, 220, 220, 416, 367, 5889, 13217, 1754, 198, 220, 220, 220, 2638, 1378, 9078, 381, 316, 13, 35217, 13, 785, 628, 220, 220, 220, 12029, 7253, 532, 11787, 7824, 25, 198, 220, 220, 220, 220, 220, 220, 220, 289, 796, 327, 381, 39681, 46677, 13, 34, 381, 39681, 7203, 11246, 25677, 13, 71, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 287, 289, 13, 37724, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 796, 289, 13, 37724, 58, 3672, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2446, 287, 269, 17816, 24396, 82, 6, 7131, 6, 11377, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 2446, 17816, 3672, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 26672, 7, 24396, 8, 220, 220, 220, 220, 220, 220, 220, 1303, 1570, 262, 1334, 286, 262, 7824, 994, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2644, 16926, 46, 3188, 517, 2644, 628, 628, 220, 220, 220, 968, 17571, 416, 11345, 25, 198, 220, 220, 220, 220, 220, 220, 220, 815, 307, 1498, 284, 21136, 477, 269, 4880, 3696, 11, 407, 655, 24697, 198, 220, 220, 220, 220, 220, 220, 220, 32096, 3298, 25683, 891, 82, 351, 6323, 198, 220, 220, 220, 220, 220, 220, 220, 32096, 3298, 2878, 82, 198, 220, 220, 220, 220, 220, 220, 220, 13040, 28376, 2878, 287, 1398, 2458, 1895, 273, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 32096, 611, 1398, 318, 12531, 198, 220, 220, 220, 220, 220, 220, 220, 32096, 517, 7508, 546, 9633, 198, 220, 220, 220, 220, 220, 220, 220, 3613, 16216, 286, 6097, 11, 2878, 82, 11, 290, 25683, 891, 82, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 2651, 2377, 286, 1398, 287, 257, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 4517, 540, 11, 9037, 11, 290, 584, 7885, 3858, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 352, 35, 26515, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 3714, 21179, 290, 2163, 21231, 11593, 42348, 834, 19510, 834, 9979, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 299, 39942, 10007, 366, 19382, 2446, 7, 19382, 1776, 1, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 2829, 24019, 11, 290, 3298, 5499, 13, 628, 220, 220, 220, 18628, 23836, 11822, 25, 628, 220, 220, 220, 220, 220, 220, 220, 352, 13, 4274, 1438, 24285, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 262, 1388, 8931, 318, 2116, 13, 3672, 25896, 11, 428, 8931, 318, 18599, 290, 2562, 284, 651, 20269, 422, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 262, 9233, 8931, 318, 2116, 13, 25558, 318, 262, 1336, 1438, 8931, 11, 2672, 329, 32096, 1054, 71, 654, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 1123, 8931, 3863, 12539, 379, 1180, 2173, 11, 1201, 484, 389, 973, 284, 4886, 1180, 1243, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 340, 3073, 13400, 475, 340, 2499, 14373, 628, 220, 220, 220, 220, 220, 220, 220, 362, 13, 11161, 284, 787, 262, 11593, 260, 1050, 834, 5050, 2829, 780, 617, 286, 777, 8633, 82, 389, 987, 25614, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 3621, 13570, 11, 869, 1223, 13, 12860, 3419, 198, 198, 37811, 198, 198, 11748, 35960, 13, 2588, 355, 31191, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 302, 198, 198, 11748, 10104, 198, 198, 4299, 9493, 23397, 33529, 198, 220, 220, 220, 37227, 35561, 262, 1459, 1627, 1271, 287, 674, 1430, 526, 15931, 198, 220, 220, 220, 1441, 10104, 13, 14421, 14535, 22446, 69, 62, 1891, 13, 69, 62, 2815, 23397, 198, 198, 9641, 796, 11593, 9641, 834, 796, 366, 16, 13, 24, 13, 24, 78, 1, 198, 198, 83, 482, 641, 796, 685, 198, 220, 220, 220, 705, 41359, 13246, 3256, 198, 220, 220, 220, 705, 20608, 3256, 198, 220, 220, 220, 705, 3185, 1677, 62, 27082, 1677, 3256, 198, 220, 220, 220, 705, 32737, 62, 27082, 1677, 3256, 198, 220, 220, 220, 705, 3185, 1677, 62, 11473, 11598, 3256, 198, 220, 220, 220, 705, 32737, 62, 11473, 11598, 3256, 198, 220, 220, 220, 705, 25154, 1340, 3256, 198, 220, 220, 220, 705, 50, 3620, 40, 62, 25154, 1340, 3256, 198, 220, 220, 220, 705, 9858, 5673, 3256, 198, 220, 220, 220, 705, 9858, 10979, 62, 50, 2751, 2538, 24027, 3256, 198, 220, 220, 220, 705, 9858, 10979, 62, 44, 16724, 4146, 8881, 3256, 198, 220, 220, 220, 705, 46437, 9858, 47, 62, 44721, 13252, 3256, 198, 220, 220, 220, 705, 46437, 9858, 47, 62, 44721, 13252, 62, 37815, 3256, 220, 198, 220, 220, 220, 705, 1921, 5781, 1797, 42, 3256, 198, 220, 220, 220, 705, 2390, 18973, 2257, 6981, 3256, 198, 220, 220, 220, 705, 36, 10917, 23333, 3256, 198, 220, 220, 220, 705, 23678, 2937, 3256, 198, 220, 220, 220, 705, 6489, 2937, 3256, 220, 220, 198, 220, 220, 220, 705, 33569, 14114, 3256, 220, 198, 220, 220, 220, 705, 38019, 62, 43, 2043, 27130, 3256, 220, 198, 220, 220, 220, 705, 18601, 2751, 62, 43, 2043, 27130, 3256, 198, 220, 220, 220, 705, 31054, 25633, 62, 33569, 14114, 62, 41983, 35613, 3256, 220, 198, 220, 220, 220, 705, 13965, 62, 24027, 3256, 628, 220, 220, 220, 705, 3185, 1677, 62, 11473, 8120, 2767, 3256, 198, 220, 220, 220, 705, 32737, 62, 11473, 8120, 2767, 3256, 198, 198, 60, 198, 198, 83, 62, 3185, 1677, 62, 11473, 8120, 2767, 796, 374, 6, 59, 17816, 198, 83, 62, 32737, 62, 11473, 8120, 2767, 796, 374, 6, 59, 49946, 628, 198, 2, 83, 62, 46430, 796, 366, 3467, 83, 59, 81, 58, 4083, 91, 22857, 4, 31, 1, 197, 197, 197, 2, 357, 20322, 25677, 48610, 352, 13, 24, 87, 8, 198, 2, 83, 62, 46430, 796, 366, 3467, 83, 59, 81, 58, 4083, 91, 22857, 4, 31, 6, 61, 6852, 1, 198, 83, 62, 46430, 796, 366, 3467, 83, 59, 81, 13, 91, 22857, 4, 31, 6, 61, 6852, 1, 198, 83, 62, 41359, 13246, 796, 374, 6, 58, 15, 12, 24, 7131, 15, 12, 24, 55, 87, 32, 12, 50110, 12, 69, 60, 9, 6, 198, 83, 62, 20608, 796, 374, 6, 58, 27, 29, 32, 12, 57, 64, 12, 89, 62, 93, 7131, 32, 12, 57, 64, 12, 89, 15, 12, 24, 62, 60, 9, 6, 198, 83, 62, 31054, 25633, 62, 33569, 14114, 62, 41983, 35613, 796, 374, 26488, 11639, 198, 83, 62, 3185, 1677, 62, 27082, 1677, 796, 374, 6, 59, 10786, 198, 83, 62, 32737, 62, 27082, 1677, 796, 374, 6, 22725, 6, 198, 83, 62, 3185, 1677, 62, 11473, 11598, 796, 374, 6, 90, 6, 198, 83, 62, 32737, 62, 11473, 11598, 796, 374, 6, 92, 6, 198, 83, 62, 50, 3620, 40, 62, 25154, 1340, 796, 374, 17020, 6, 198, 83, 62, 25154, 1340, 796, 374, 10354, 6, 198, 83, 62, 9858, 5673, 796, 374, 41707, 198, 83, 62, 46437, 9858, 47, 62, 44721, 13252, 796, 374, 6, 59, 2, 15885, 6, 198, 83, 62, 46437, 9858, 47, 62, 44721, 13252, 62, 37815, 796, 374, 4458, 9, 6852, 59, 77, 6, 198, 4299, 256, 62, 9858, 10979, 62, 50, 2751, 2538, 24027, 7, 83, 2599, 198, 220, 220, 220, 374, 6, 45422, 15885, 59, 77, 6, 198, 220, 220, 220, 3298, 466, 5431, 5235, 21357, 30562, 198, 220, 220, 220, 611, 256, 13, 8367, 13, 9688, 2032, 342, 7203, 20379, 4943, 393, 256, 13, 8367, 13, 9688, 2032, 342, 7203, 1003, 2474, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 466, 5431, 5235, 21357, 30562, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 15853, 37082, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 13, 8367, 13, 437, 2032, 342, 7203, 59, 77, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 15853, 256, 13, 8367, 58, 21912, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 15853, 256, 13, 8367, 198, 83, 62, 1921, 5781, 1797, 42, 796, 374, 6, 59, 9, 6, 198, 83, 62, 23678, 2937, 796, 374, 6, 59, 19355, 198, 83, 62, 6489, 2937, 796, 374, 6, 59, 10, 6, 198, 83, 62, 33569, 14114, 796, 374, 26488, 58, 61, 14, 49946, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10143, 284, 4929, 12813, 7203, 220, 220, 532, 220, 2446, 10088, 326, 31754, 82, 14083, 198, 83, 62, 2390, 18973, 2257, 6981, 796, 374, 6, 5, 6, 198, 83, 62, 36, 10917, 23333, 796, 374, 6, 11639, 198, 83, 62, 38019, 62, 43, 2043, 27130, 796, 24018, 11496, 198, 2, 9275, 379, 2638, 1378, 4775, 41634, 13, 2398, 14, 26845, 14, 8841, 12, 17201, 874, 12, 392, 12, 16338, 12, 42712, 507, 198, 2, 51, 3727, 46, 25, 770, 857, 407, 670, 351, 262, 4731, 366, 2436, 64, 19990, 698, 64, 1, 198, 83, 62, 18601, 2751, 62, 43, 2043, 27130, 796, 374, 6, 18109, 58, 61, 1, 6852, 60, 91, 6852, 2014, 9, 30543, 198, 2, 21077, 379, 2638, 1378, 6197, 76, 4665, 13, 2398, 14, 19796, 23893, 13, 6494, 198, 4299, 256, 62, 9858, 10979, 62, 44, 16724, 4146, 8881, 7, 83, 2599, 198, 220, 220, 220, 374, 26488, 59, 9, 26933, 61, 9, 60, 91, 58, 59, 81, 59, 77, 60, 91, 38016, 9, 10, 26933, 61, 16208, 60, 91, 58, 59, 81, 59, 77, 60, 22305, 9, 59, 9, 10, 14, 6, 198, 220, 220, 220, 3298, 466, 5431, 5235, 21357, 30562, 198, 220, 220, 220, 611, 256, 13, 8367, 13, 9688, 2032, 342, 7203, 35343, 4943, 393, 256, 13, 8367, 13, 9688, 2032, 342, 7203, 15211, 2474, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1662, 1654, 1521, 11, 475, 651, 4274, 649, 3951, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 256, 13, 8367, 13, 33491, 7203, 59, 77, 59, 77, 1600, 37082, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 36311, 21231, 278, 13216, 10223, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 302, 13, 7266, 7203, 59, 77, 58, 59, 82, 48688, 59, 9, 1600, 37082, 77, 9, 1600, 410, 8, 198, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 15853, 410, 198, 4299, 256, 62, 13965, 24027, 7, 83, 2599, 198, 220, 220, 220, 374, 6, 59, 77, 10, 6, 198, 220, 220, 220, 256, 13, 2588, 263, 13, 2815, 23397, 15853, 18896, 7, 83, 13, 8367, 8, 198, 198, 2588, 13, 2588, 3419, 198, 24442, 796, 657, 198, 24442, 62, 40546, 796, 657, 198, 198, 15999, 15457, 22882, 7483, 796, 685, 198, 220, 220, 220, 705, 11377, 3256, 198, 220, 220, 220, 705, 24326, 3256, 220, 198, 220, 220, 220, 705, 19734, 6, 198, 60, 198, 198, 44709, 44, 2913, 666, 11395, 26227, 796, 10352, 198, 67, 23536, 5235, 21357, 30562, 796, 13538, 198, 198, 4299, 318, 62, 14933, 10223, 7, 3672, 25896, 2599, 198, 220, 220, 220, 37227, 35, 13221, 274, 611, 257, 25745, 318, 852, 7368, 37811, 198, 220, 220, 220, 611, 18896, 7, 3672, 25896, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 611, 1438, 25896, 58, 15, 60, 6624, 366, 14933, 10223, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 1441, 10352, 198, 198, 4299, 318, 62, 44709, 62, 7402, 395, 441, 7, 3672, 25896, 2599, 198, 220, 220, 220, 37227, 35, 13221, 274, 611, 257, 299, 321, 395, 441, 318, 281, 33829, 299, 321, 395, 441, 37811, 198, 220, 220, 220, 611, 18896, 7, 3672, 25896, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 611, 1438, 25896, 58, 15, 60, 6624, 366, 44709, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 611, 18896, 7, 3672, 25896, 8, 1875, 352, 290, 1438, 25896, 58, 15, 60, 6624, 366, 774, 9124, 891, 1, 290, 1438, 25896, 58, 16, 60, 6624, 366, 44709, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 628, 198, 4871, 327, 381, 9487, 7, 4808, 34, 381, 9487, 15179, 198, 220, 220, 220, 37227, 51, 1124, 257, 1438, 8931, 290, 4962, 340, 656, 257, 1398, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49850, 262, 1708, 26363, 25, 198, 220, 220, 220, 2116, 17816, 3672, 20520, 532, 6530, 286, 262, 1398, 198, 220, 220, 220, 2116, 17816, 67, 23536, 5235, 20520, 532, 360, 23536, 5235, 3651, 3917, 351, 262, 1398, 611, 484, 2152, 198, 220, 220, 220, 2116, 17816, 259, 372, 896, 20520, 532, 7343, 286, 38884, 326, 428, 530, 10639, 896, 810, 262, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 389, 286, 262, 1296, 19779, 15526, 1298, 21035, 287, 4855, 15457, 22882, 7483, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4871, 1298, 6530, 286, 262, 1398, 198, 220, 220, 220, 2116, 17816, 24396, 82, 20520, 532, 28261, 810, 8251, 389, 422, 4855, 15457, 22882, 7483, 198, 220, 220, 220, 220, 220, 220, 220, 290, 3815, 389, 257, 8341, 286, 327, 381, 17410, 338, 198, 220, 220, 220, 2116, 17816, 48310, 20520, 532, 28261, 810, 8251, 389, 422, 4855, 15457, 22882, 7483, 198, 220, 220, 220, 220, 220, 220, 220, 290, 3815, 389, 8341, 286, 327, 381, 43015, 338, 220, 198, 220, 220, 220, 2116, 17816, 268, 5700, 20520, 532, 28261, 810, 8251, 389, 422, 4855, 15457, 22882, 7483, 290, 198, 220, 220, 220, 220, 220, 220, 220, 3815, 389, 8341, 286, 327, 381, 4834, 388, 338, 198, 220, 220, 220, 2116, 17816, 7249, 82, 20520, 532, 28261, 810, 8251, 389, 422, 4855, 15457, 22882, 7483, 290, 198, 220, 220, 220, 220, 220, 220, 220, 3815, 389, 8341, 286, 28376, 32112, 338, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1052, 1672, 286, 703, 428, 714, 804, 318, 355, 5679, 25, 198, 220, 220, 220, 1303, 944, 796, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 10354, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 705, 259, 372, 896, 10354, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 705, 24396, 82, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11377, 10354, 58, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24326, 10354, 58, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19734, 10354, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 220, 198, 220, 220, 220, 220, 220, 220, 220, 705, 48310, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11377, 10354, 58, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24326, 10354, 58, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19734, 10354, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 705, 268, 5700, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11377, 10354, 58, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24326, 10354, 58, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19734, 10354, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 37227, 628, 220, 198, 220, 220, 220, 825, 905, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1398, 284, 257, 4731, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 62, 40290, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 14692, 14933, 10223, 1, 5974, 25745, 62, 40290, 796, 2116, 14692, 14933, 10223, 8973, 1343, 366, 3712, 1, 198, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 796, 366, 4871, 4064, 82, 1, 4, 7, 14933, 10223, 62, 40290, 1343, 2116, 14692, 3672, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 17816, 397, 8709, 6, 5974, 374, 34106, 15853, 705, 220, 220, 220, 357, 397, 8709, 19415, 77, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 374, 34106, 15853, 705, 59, 77, 6, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 67, 23536, 5235, 6, 287, 2116, 13, 13083, 33529, 374, 34106, 15853, 2116, 14692, 67, 23536, 5235, 8973, 1343, 705, 59, 77, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 8000, 6, 287, 2116, 13, 13083, 3419, 290, 2116, 17816, 8000, 6, 5974, 374, 34106, 15853, 705, 8000, 1398, 32105, 1343, 2116, 17816, 8000, 20520, 1343, 705, 59, 77, 6, 628, 220, 220, 220, 220, 220, 220, 220, 611, 366, 259, 372, 896, 1, 287, 2116, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 47025, 896, 25, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 16955, 9487, 287, 2116, 14692, 259, 372, 896, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 36521, 82, 4064, 82, 11, 36521, 7, 259, 372, 270, 9487, 14692, 15526, 33116, 16955, 9487, 14692, 4871, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 37082, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 43839, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1895, 22882, 7483, 287, 4855, 15457, 22882, 7483, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 4064, 82, 59, 77, 1, 4, 7, 15526, 22882, 7483, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4834, 5700, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 11925, 7, 944, 14692, 268, 5700, 1, 7131, 15526, 22882, 7483, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 220, 220, 220, 220, 1279, 4834, 5700, 29, 59, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 33829, 287, 2116, 14692, 268, 5700, 1, 7131, 15526, 22882, 7483, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 82, 59, 77, 1, 4, 7, 260, 1050, 7, 44709, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2964, 18200, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 11925, 7, 944, 14692, 48310, 1, 7131, 15526, 22882, 7483, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 220, 220, 220, 220, 1279, 2964, 18200, 29, 59, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 3119, 287, 2116, 14692, 48310, 1, 7131, 15526, 22882, 7483, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 82, 59, 77, 1, 4, 7, 260, 1050, 7, 26745, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 46202, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 11925, 7, 944, 14692, 24396, 82, 1, 7131, 15526, 22882, 7483, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 220, 220, 220, 220, 220, 220, 1279, 46202, 29, 59, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2446, 287, 2116, 14692, 24396, 82, 1, 7131, 15526, 22882, 7483, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 37082, 83, 59, 83, 1, 1343, 2446, 13, 12860, 3419, 1343, 705, 59, 77, 6, 198, 220, 220, 220, 220, 220, 220, 220, 374, 34106, 15853, 366, 220, 1782, 59, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 374, 34106, 1267, 198, 198, 4871, 327, 381, 17410, 7, 4808, 34, 381, 17410, 15179, 198, 220, 220, 220, 37227, 51, 1124, 257, 1438, 8931, 290, 4962, 340, 656, 257, 2446, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49850, 262, 1708, 26363, 25, 198, 220, 220, 220, 2116, 17816, 7783, 82, 20520, 532, 8229, 2099, 286, 262, 2446, 357, 1069, 13, 366, 600, 4943, 198, 220, 220, 220, 2116, 17816, 3672, 20520, 532, 6530, 286, 262, 2446, 357, 1069, 13, 366, 1136, 10699, 4943, 198, 220, 220, 220, 2116, 17816, 67, 23536, 5235, 20520, 532, 360, 23536, 5235, 3651, 3917, 351, 262, 2446, 611, 484, 2152, 198, 220, 220, 220, 2116, 17816, 17143, 7307, 20520, 532, 7343, 286, 327, 381, 23907, 2977, 198, 220, 220, 220, 37227, 628, 628, 198, 4871, 327, 381, 43015, 7, 4808, 34, 381, 43015, 15179, 198, 220, 220, 220, 37227, 51, 1124, 257, 1438, 8931, 290, 4962, 340, 656, 257, 2446, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49850, 262, 1708, 26363, 25, 198, 220, 220, 220, 2116, 17816, 4906, 20520, 532, 5994, 329, 262, 7885, 357, 1069, 13, 366, 9979, 4731, 1222, 4943, 198, 220, 220, 220, 2116, 17816, 1831, 62, 4906, 20520, 532, 5994, 286, 7885, 1231, 32007, 393, 584, 41485, 357, 1069, 13, 366, 8841, 4943, 198, 220, 220, 220, 2116, 17816, 3672, 20520, 532, 6530, 286, 262, 7885, 357, 1069, 13, 366, 22510, 23022, 4943, 198, 220, 220, 220, 2116, 17816, 14933, 10223, 20520, 532, 28531, 10223, 7268, 262, 33829, 198, 220, 220, 220, 2116, 17816, 20147, 20520, 532, 12489, 286, 262, 7885, 611, 636, 286, 257, 2446, 357, 25968, 8, 198, 220, 220, 220, 2116, 17816, 67, 23536, 5235, 20520, 532, 360, 23536, 5235, 3651, 3917, 351, 262, 2446, 611, 484, 2152, 198, 220, 220, 220, 2116, 17816, 4299, 2501, 20520, 532, 15161, 1988, 286, 262, 7885, 11, 428, 1994, 481, 691, 2152, 611, 612, 318, 257, 4277, 1988, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 569, 945, 796, 17635, 198, 198, 4871, 327, 381, 4834, 388, 28264, 34, 381, 4834, 388, 2599, 198, 220, 220, 220, 37227, 51, 1124, 257, 1438, 8931, 290, 4962, 340, 656, 281, 2039, 388, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49850, 262, 1708, 26363, 25, 198, 220, 220, 220, 2116, 17816, 3672, 20520, 532, 6530, 286, 262, 33829, 357, 1069, 13, 366, 7449, 9012, 4943, 198, 220, 220, 220, 2116, 17816, 14933, 10223, 20520, 532, 28531, 10223, 7268, 262, 33829, 198, 220, 220, 220, 2116, 17816, 27160, 20520, 532, 7343, 286, 3815, 810, 262, 3815, 389, 257, 22155, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1296, 19779, 3672, 1298, 1438, 286, 262, 1994, 357, 1069, 13, 366, 27082, 50, 2751, 62, 37682, 1137, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8367, 1298, 18291, 1431, 1988, 286, 262, 33829, 11, 428, 1994, 481, 691, 2152, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 257, 1988, 329, 257, 1813, 33829, 1988, 373, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 37227, 628, 198, 198, 34, 2079, 62, 45, 1340, 2257, 6981, 9795, 796, 1391, 198, 220, 220, 220, 705, 600, 23, 6, 1058, 705, 32696, 1149, 3256, 198, 220, 220, 220, 705, 600, 1433, 6, 1058, 705, 19509, 493, 3256, 198, 220, 220, 220, 705, 600, 2624, 6, 1058, 705, 600, 3256, 198, 220, 220, 220, 705, 600, 2414, 6, 1058, 705, 600, 2414, 62, 83, 3256, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 460, 307, 25, 890, 493, 357, 2414, 2545, 828, 393, 890, 890, 493, 357, 2624, 2545, 8, 198, 220, 220, 220, 705, 28611, 6, 1058, 705, 43375, 493, 3256, 198, 220, 220, 220, 705, 28611, 23, 6, 1058, 705, 43375, 1149, 3256, 198, 220, 220, 220, 705, 28611, 1433, 6, 1058, 705, 43375, 1790, 493, 3256, 198, 220, 220, 220, 705, 28611, 2624, 6, 1058, 705, 43375, 493, 3256, 198, 220, 220, 220, 705, 28611, 2414, 6, 1058, 705, 28611, 2414, 62, 83, 3256, 220, 220, 220, 1303, 8338, 319, 2583, 10340, 198, 92, 628, 628, 198, 4871, 327, 381, 39681, 7, 4808, 34, 381, 39681, 15179, 198, 220, 220, 220, 37227, 47, 945, 276, 327, 4880, 1398, 13639, 198, 220, 220, 220, 220, 198, 220, 220, 220, 15965, 2977, 4635, 25, 198, 220, 220, 220, 2116, 13, 37724, 532, 28261, 286, 6097, 1043, 287, 257, 1813, 13639, 2393, 810, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 318, 262, 1438, 286, 262, 1398, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 28730, 6965, 62, 45, 29559, 796, 705, 834, 2302, 3004, 834, 4458, 35312, 3419, 628, 220, 220, 220, 220, 198, 220, 220, 220, 825, 13446, 62, 44709, 62, 25558, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 281, 2039, 388, 503, 286, 262, 1438, 8931, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 649, 4834, 388, 796, 327, 381, 4834, 388, 7, 944, 13, 3672, 25896, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 3605, 4834, 388, 13, 13083, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 22019, 9487, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 4834, 388, 14692, 14933, 10223, 8973, 796, 2116, 13, 22019, 62, 14933, 10223, 7, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 31172, 796, 2116, 13, 37724, 58, 944, 13, 22019, 9487, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 31172, 14692, 268, 5700, 1, 7131, 944, 13, 22019, 15457, 22882, 7483, 4083, 33295, 7, 3605, 4834, 388, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 15457, 22882, 7483, 6624, 705, 11377, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 3672, 6, 287, 649, 4834, 388, 290, 649, 4834, 388, 17816, 3672, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 31172, 13557, 11377, 62, 268, 5700, 58, 649, 4834, 388, 17816, 3672, 20520, 2361, 796, 649, 4834, 388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 4834, 388, 14692, 14933, 10223, 8973, 796, 2116, 13, 22019, 62, 14933, 10223, 7, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 268, 5700, 13, 33295, 7, 3605, 4834, 388, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 3672, 6, 287, 649, 4834, 388, 290, 649, 4834, 388, 17816, 3672, 6, 5974, 2116, 13, 20541, 62, 268, 5700, 58, 649, 4834, 388, 17816, 3672, 20520, 2361, 796, 649, 4834, 388, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1212, 33829, 468, 10245, 11, 1210, 606, 656, 6608, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 649, 4834, 388, 13, 10134, 62, 2539, 7203, 8625, 1817, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4554, 6030, 796, 366, 44709, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 649, 4834, 388, 13, 10134, 62, 2539, 7203, 3672, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4554, 6030, 796, 649, 4834, 388, 14692, 3672, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4554, 287, 649, 4834, 388, 14692, 8625, 1817, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 685, 39098, 6030, 11, 220, 4554, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 26745, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 649, 4834, 388, 14692, 8625, 1817, 8973, 628, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 13639, 8979, 5376, 11, 1822, 6030, 2625, 7753, 1600, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 262, 44267, 327, 4880, 13639, 2393, 21136, 5509, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 8979, 5376, 532, 6530, 286, 262, 2393, 284, 21136, 6375, 4036, 2393, 10154, 357, 10378, 2412, 319, 1822, 6030, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1822, 6030, 532, 1423, 16856, 703, 284, 6179, 13639, 8979, 5376, 355, 257, 2393, 4731, 393, 2393, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 532, 45267, 262, 1708, 26286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 44709, 44, 2913, 666, 11395, 26227, 1, 532, 5345, 284, 2081, 329, 33829, 3815, 284, 5529, 262, 2656, 5794, 19203, 73, 6, 481, 407, 10385, 284, 15696, 8, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 22492, 13259, 3298, 1181, 22492, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 466, 5431, 5235, 21357, 30562, 198, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 327, 381, 43015, 13, 53, 945, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 327, 381, 44909, 13, 44909, 82, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 853, 6030, 6624, 366, 7753, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25677, 8979, 5376, 796, 28686, 13, 6978, 13, 11201, 392, 85, 945, 7, 25677, 8979, 5376, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12417, 9487, 796, 28686, 13, 6978, 13, 35312, 7, 944, 13, 25677, 8979, 5376, 38381, 16, 7131, 21912, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 8979, 13290, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1822, 6030, 6624, 366, 8841, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25677, 8979, 5376, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12417, 9487, 796, 366, 3548, 1701, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 8979, 13290, 796, 13639, 8979, 5376, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 28100, 2099, 1276, 307, 2035, 2393, 393, 4731, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 9487, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 33829, 44, 2913, 666, 11395, 26227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 479, 86, 22046, 13, 10134, 62, 2539, 7203, 44709, 44, 2913, 666, 11395, 26227, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33829, 44, 2913, 666, 11395, 26227, 796, 479, 86, 22046, 14692, 44709, 44, 2913, 666, 11395, 26227, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33829, 44, 2913, 666, 11395, 26227, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 28376, 6097, 423, 2560, 3712, 77, 7287, 11, 475, 645, 3131, 25745, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 7622, 262, 7824, 11670, 11, 16926, 46, 1774, 25745, 329, 2279, 13, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1874, 14375, 13, 31631, 1546, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37724, 796, 1874, 14375, 13, 31631, 1546, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 268, 5700, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 20541, 62, 268, 5700, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 4561, 2114, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 15457, 22882, 7483, 796, 705, 19734, 6, 220, 220, 220, 1303, 2839, 318, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 14421, 62, 15526, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9504, 742, 430, 3419, 220, 220, 220, 1303, 289, 5889, 8156, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 11925, 7, 944, 13, 25677, 8979, 5376, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 8979, 13290, 796, 37082, 77, 1911, 22179, 7, 9654, 7, 944, 13, 25677, 8979, 5376, 737, 961, 6615, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 46565, 48791, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 31191, 13, 15414, 7, 25677, 8979, 13290, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1090, 13949, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1090, 12441, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 611, 352, 25, 220, 220, 220, 1303, 28311, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 74, 796, 31191, 13, 30001, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 284, 74, 25, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 284, 74, 13, 4906, 6624, 705, 20608, 6, 290, 284, 74, 13, 8367, 287, 2116, 13, 16284, 6965, 62, 45, 29559, 25, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 284, 74, 13, 4906, 407, 287, 19203, 46437, 9858, 47, 62, 44721, 13252, 3256, 705, 46437, 9858, 47, 62, 44721, 13252, 62, 37815, 6, 2599, 2116, 13, 25558, 13, 33295, 7, 284, 74, 13, 8367, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1090, 13949, 796, 284, 74, 13, 2815, 23397, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1090, 12441, 796, 284, 74, 13, 2588, 1930, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 284, 74, 13, 4906, 287, 19203, 3185, 1677, 62, 11473, 8120, 2767, 3256, 705, 32737, 62, 11473, 8120, 2767, 6, 2599, 2116, 13, 3672, 25896, 13, 33295, 7, 284, 74, 13, 8367, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 3185, 1677, 62, 11473, 11598, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46565, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 3672, 25896, 8, 29, 28, 17, 290, 2116, 13, 3672, 25896, 58, 15, 60, 855, 6, 1069, 759, 6, 290, 2116, 13, 3672, 25896, 58, 16, 60, 855, 29653, 34, 1, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46565, 796, 10352, 26, 3601, 7, 705, 1069, 759, 327, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 944, 13, 3672, 25896, 8, 29, 28, 17, 290, 2116, 13, 3672, 25896, 58, 15, 60, 855, 6, 1069, 759, 6, 290, 2116, 13, 3672, 25896, 58, 16, 60, 855, 29653, 34, 4880, 1, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46565, 796, 10352, 26, 3601, 7, 705, 1069, 759, 327, 4880, 6, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 46565, 25, 2116, 13, 46565, 48791, 15853, 352, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 3672, 25896, 8, 18189, 362, 290, 318, 62, 14933, 10223, 7, 944, 13, 3672, 25896, 2599, 220, 220, 220, 1303, 25745, 23884, 351, 645, 1438, 973, 287, 5750, 11, 428, 5621, 4277, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 4561, 2114, 13, 33295, 7, 944, 13, 3672, 25896, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36545, 796, 2116, 13, 22019, 62, 14933, 10223, 9783, 2116, 13, 25558, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 36545, 407, 287, 2116, 13, 14933, 43076, 25, 2116, 13, 14933, 43076, 13, 33295, 7, 36545, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 3672, 25896, 8, 290, 407, 318, 62, 44709, 62, 7402, 395, 441, 7, 944, 13, 3672, 25896, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 25558, 290, 2116, 13, 25558, 58, 15, 60, 6624, 705, 4871, 10354, 2116, 13, 25558, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 4808, 46565, 25, 2116, 13, 46565, 48791, 15853, 352, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 32737, 62, 11473, 11598, 6, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 46565, 48791, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 46565, 48791, 6624, 18896, 7, 944, 13, 3672, 4561, 2114, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45218, 796, 2116, 13, 3672, 4561, 2114, 13, 12924, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 220, 220, 220, 1303, 1598, 8931, 618, 25745, 5645, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 3672, 25896, 8, 290, 318, 62, 44709, 62, 7402, 395, 441, 7, 944, 13, 3672, 25896, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 46565, 48791, 1279, 838, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 46565, 48791, 48185, 352, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 46565, 48791, 1279, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 35937, 23578, 3963, 7788, 31800, 24200, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 46565, 48791, 796, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 9487, 290, 14257, 25, 3601, 7, 705, 34, 4261, 14529, 3256, 2116, 13557, 37724, 62, 46565, 62, 5715, 58, 2116, 13, 22019, 9487, 2361, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 46565, 48791, 6624, 657, 8, 393, 357, 944, 13, 22019, 9487, 290, 2116, 13557, 37724, 62, 46565, 62, 5715, 58, 944, 13, 22019, 9487, 60, 1875, 2116, 13, 46565, 48791, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 9487, 25, 3601, 7, 705, 10541, 10619, 3963, 42715, 23449, 32501, 3256, 705, 46565, 48791, 25, 3256, 2116, 13, 46565, 48791, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 14421, 62, 15526, 25, 2116, 13557, 14421, 62, 15526, 13, 12924, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 9487, 290, 2116, 13, 37724, 58, 2116, 13, 22019, 9487, 2361, 17816, 8000, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 9487, 796, 2116, 13, 37724, 58, 2116, 13, 22019, 9487, 2361, 17816, 8000, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 14421, 62, 15526, 25, 2116, 13, 22019, 15457, 22882, 7483, 796, 2116, 13557, 14421, 62, 15526, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 9487, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 2116, 13, 22019, 44909, 25, 2116, 13, 22019, 44909, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 46565, 48791, 855, 15, 393, 357, 944, 13, 22019, 44909, 290, 407, 2116, 13, 22019, 44909, 17816, 4906, 6, 12962, 393, 357, 944, 13, 22019, 44909, 290, 2116, 13557, 7249, 82, 62, 46565, 62, 5715, 58, 944, 13, 22019, 44909, 17816, 4906, 6, 11907, 1875, 2116, 13, 46565, 48791, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 44909, 25, 3601, 7, 705, 45537, 10619, 3963, 19269, 18415, 23449, 10541, 19355, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 44909, 290, 407, 2116, 13, 22019, 44909, 17816, 4906, 6, 5974, 2116, 13557, 7249, 62, 50032, 62, 3672, 796, 2116, 13, 22019, 44909, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 44909, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 24396, 62, 2618, 290, 2116, 13, 46565, 48791, 1279, 2116, 13557, 24396, 62, 2618, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 24396, 62, 2618, 796, 6045, 26, 2116, 13, 25558, 796, 25787, 2116, 13, 3672, 25896, 796, 25787, 3601, 7, 705, 13775, 5222, 30301, 1503, 337, 20702, 33, 33076, 6, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 83, 482, 13, 4906, 6624, 705, 3185, 1677, 62, 27082, 1677, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 32737, 62, 27082, 1677, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 36, 10917, 23333, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 9858, 5673, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 41359, 13246, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 23678, 2937, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 6489, 2937, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 18601, 2751, 62, 43, 2043, 27130, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 20608, 6, 393, 284, 74, 13, 4906, 6624, 705, 2390, 18973, 2257, 6981, 6, 393, 284, 74, 13, 4906, 6624, 705, 1921, 5781, 1797, 42, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 25154, 1340, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 35, 756, 765, 7633, 284, 307, 717, 287, 8931, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 3672, 25896, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 3672, 25896, 290, 2116, 13, 3672, 25896, 58, 12, 16, 60, 287, 4855, 15457, 22882, 7483, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 9487, 393, 2116, 13, 22019, 44909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6124, 796, 2116, 13, 3672, 25896, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22019, 15457, 22882, 7483, 796, 6124, 26, 3601, 10786, 34, 4261, 26861, 7597, 12, 2617, 3256, 6124, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 22019, 9487, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 14421, 62, 15526, 25, 2116, 13557, 14421, 62, 15526, 58, 12, 16, 60, 796, 6124, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 2116, 13557, 14421, 62, 15526, 13, 33295, 7, 6124, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 3601, 10786, 43917, 532, 366, 11377, 7904, 14933, 10223, 1, 3256, 705, 45302, 22179, 7, 944, 13, 3672, 25896, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 25787, 2116, 13, 3672, 25896, 796, 17635, 197, 2, 761, 284, 1598, 1438, 25896, 284, 523, 326, 28376, 2878, 82, 460, 307, 1043, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 13, 33295, 7, 83, 482, 13, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 83, 482, 13, 4906, 6624, 705, 50, 3620, 40, 62, 25154, 1340, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 46565, 48791, 1279, 838, 2599, 2116, 13, 49786, 62, 25558, 7, 284, 74, 13, 4906, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 25558, 25, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 25558, 58, 15, 60, 855, 6, 774, 9124, 891, 6, 290, 357, 705, 90, 6, 407, 287, 2116, 13, 25558, 393, 705, 92, 6, 287, 2116, 13, 25558, 15179, 2116, 13, 25558, 796, 25787, 12854, 62, 4798, 7, 366, 2200, 1847, 30301, 1503, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 25558, 58, 15, 60, 14512, 705, 774, 9124, 891, 10354, 2116, 13, 25558, 796, 25787, 12854, 62, 4798, 10786, 29931, 1503, 3563, 8120, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 16341, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 5298, 327, 381, 10044, 325, 12331, 7203, 3673, 1498, 284, 21136, 4064, 82, 319, 1627, 4064, 67, 22232, 19990, 4, 82, 7879, 59, 77, 12331, 1088, 25, 4064, 82, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 944, 13, 25677, 8979, 5376, 11, 284, 74, 13, 2815, 23397, 11, 284, 74, 13, 8367, 11, 366, 27071, 22179, 7, 944, 13, 3672, 25896, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 20311, 1096, 3419, 628, 220, 220, 220, 825, 13446, 62, 25558, 7, 944, 11, 11241, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 36, 2100, 12632, 262, 1459, 1438, 8931, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 466, 5431, 5235, 21357, 30562, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 366, 36, 2100, 11927, 8931, 4064, 82, 59, 77, 9414, 558, 48791, 25, 4064, 82, 1, 4064, 7, 944, 13, 3672, 25896, 11, 944, 13, 46565, 48791, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 366, 36, 2100, 11927, 8931, 4064, 82, 59, 77, 9414, 558, 48791, 25, 4064, 82, 1, 4064, 7, 944, 13, 25558, 11, 944, 13, 46565, 48791, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 11925, 7, 944, 13, 22019, 9487, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 36521, 82, 37633, 82, 8, 36521, 7, 944, 13, 22019, 9487, 11, 2116, 13, 22019, 15457, 22882, 7483, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 705, 774, 9124, 891, 6, 287, 2116, 13, 3672, 25896, 25, 2116, 13, 49786, 62, 774, 9124, 891, 3419, 220, 220, 220, 220, 220, 220, 220, 1303, 3578, 28376, 25683, 891, 82, 11, 2192, 257, 2089, 2126, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 22019, 9487, 290, 705, 774, 9124, 891, 6, 287, 2116, 13, 3672, 25896, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 39, 2043, 24412, 47, 1961, 25425, 3256, 2116, 13, 25558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11241, 6624, 705, 50, 3620, 40, 62, 25154, 1340, 6, 290, 19203, 90, 6, 407, 287, 2116, 13, 25558, 393, 705, 92, 6, 287, 2116, 13, 25558, 2599, 2116, 13, 49786, 62, 774, 9124, 891, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 11925, 7, 944, 13, 3672, 25896, 8, 6624, 657, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 1370, 33172, 2815, 23397, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 30629, 40613, 23881, 16725, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 3672, 25896, 58, 15, 60, 6624, 366, 14933, 10223, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 51, 1685, 1337, 286, 2354, 286, 994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 944, 13, 3672, 25896, 8, 18189, 362, 290, 2116, 13, 3672, 25896, 58, 15, 60, 6624, 705, 3500, 6, 290, 2116, 13, 3672, 25896, 58, 16, 60, 6624, 705, 14933, 10223, 10354, 1208, 220, 220, 220, 1303, 16926, 46, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 62, 44709, 62, 7402, 395, 441, 7, 944, 13, 3672, 25896, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 1370, 33172, 2815, 23397, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 44709, 62, 25558, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13557, 24396, 62, 2618, 290, 2116, 13, 46565, 48791, 18189, 2116, 13557, 24396, 62, 2618, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 705, 20913, 14114, 337, 36252, 23449, 3256, 2116, 13, 3672, 25896, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 417, 361, 318, 62, 24396, 62, 7402, 395, 441, 7, 944, 13, 25558, 8, 290, 705, 10786, 287, 2116, 13, 3672, 25896, 25, 220, 220, 220, 1303, 428, 10143, 319, 366, 46616, 1220, 7, 9313, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 33047, 287, 2116, 13, 3672, 25896, 290, 318, 62, 24396, 62, 7402, 395, 441, 7, 944, 13, 25558, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 705, 18206, 2446, 3256, 2116, 13, 3672, 25896, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 24396, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 944, 13, 3672, 25896, 8, 18189, 362, 290, 357, 944, 13, 3672, 25896, 58, 15, 60, 855, 6, 6726, 6, 290, 2116, 13, 3672, 25896, 58, 16, 60, 855, 6, 4871, 6, 2599, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 19203, 4871, 6, 287, 2116, 13, 3672, 25896, 393, 705, 7249, 6, 287, 2116, 13, 3672, 25896, 8, 290, 2116, 13, 25558, 58, 12, 16, 60, 6624, 705, 26, 10354, 2116, 13, 49786, 62, 11813, 62, 32446, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 3672, 25896, 58, 15, 60, 6624, 366, 4871, 4943, 393, 357, 944, 13, 3672, 25896, 58, 15, 60, 855, 6, 28243, 6, 290, 705, 4871, 6, 287, 2116, 13, 3672, 25896, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 39397, 39397, 39397, 39397, 39397, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 4871, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 3672, 25896, 58, 15, 60, 6624, 366, 7249, 4943, 393, 357, 11925, 7, 944, 13, 3672, 25896, 8, 29, 18, 290, 2116, 13, 25558, 58, 12, 16, 60, 855, 6, 90, 6, 290, 2116, 13, 3672, 25896, 58, 12, 18, 60, 855, 6, 7249, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 705, 10541, 3605, 2878, 32284, 6, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 7249, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 3672, 25896, 58, 15, 60, 855, 6, 28243, 6, 290, 2116, 13, 25558, 58, 12, 16, 60, 855, 6, 90, 6, 290, 705, 7249, 6, 287, 2116, 13, 3672, 25896, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 705, 10541, 3605, 2878, 532, 21596, 8348, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 7249, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25558, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 10786, 407, 287, 2116, 13, 3672, 25896, 290, 705, 33047, 407, 287, 2116, 13, 3672, 25896, 290, 2116, 13, 25558, 58, 12, 16, 60, 6624, 705, 26, 10354, 197, 2, 16508, 477, 25744, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 26745, 62, 25558, 3419, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 407, 2116, 13, 22019, 9487, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 1370, 33172, 2815, 23397, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 62, 44709, 62, 7402, 395, 441, 7, 944, 13, 3672, 25896, 2599, 2116, 13, 49786, 62, 44709, 62, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 22019, 44909, 290, 2116, 13, 25558, 58, 12, 16, 60, 6624, 705, 26, 10354, 2116, 13, 49786, 62, 26745, 62, 25558, 3419, 220, 220, 220, 1303, 428, 17591, 7032, 286, 3298, 2878, 82, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 46565, 48791, 1279, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 1370, 33172, 2815, 23397, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 32916, 382, 3298, 3404, 329, 783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 22289, 3404, 25, 33172, 220, 2116, 13, 3672, 25896, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 24396, 62, 2618, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 46565, 48791, 1875, 18896, 7, 944, 13, 3672, 4561, 2114, 8, 1343, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 2599, 3601, 7, 366, 1370, 33172, 2815, 23397, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3672, 25896, 796, 17635, 220, 220, 220, 220, 220, 220, 220, 1303, 617, 611, 14, 17772, 2029, 1441, 290, 1854, 407, 11, 523, 428, 743, 393, 743, 407, 307, 13259, 198, 220, 220, 220, 220, 220, 220, 220, 466, 5431, 5235, 21357, 30562, 796, 13538, 628, 628 ]
2.164682
11,926
from csv_cti.blueprints.web_api import web_api from flask import request,current_app,render_template from csv_cti.blueprints.op.md5_token import encrypt_md5 from csv_cti.blueprints.op.tiers import Tiers_op #tiers @web_api.route('/tiers-add/',methods=['POST']) @web_api.route('/tiers-rm/',methods=['POST']) @web_api.route('/tiers-list/',methods=['POST']) @web_api.route('/tiers-test/',methods=['GET'])
[ 6738, 269, 21370, 62, 310, 72, 13, 17585, 17190, 13, 12384, 62, 15042, 1330, 3992, 62, 15042, 198, 6738, 42903, 1330, 2581, 11, 14421, 62, 1324, 11, 13287, 62, 28243, 198, 6738, 269, 21370, 62, 310, 72, 13, 17585, 17190, 13, 404, 13, 9132, 20, 62, 30001, 1330, 34117, 62, 9132, 20, 198, 6738, 269, 21370, 62, 310, 72, 13, 17585, 17190, 13, 404, 13, 83, 3183, 1330, 309, 3183, 62, 404, 198, 198, 2, 83, 3183, 198, 31, 12384, 62, 15042, 13, 38629, 10786, 14, 83, 3183, 12, 2860, 14, 3256, 24396, 82, 28, 17816, 32782, 6, 12962, 198, 198, 31, 12384, 62, 15042, 13, 38629, 10786, 14, 83, 3183, 12, 26224, 14, 3256, 24396, 82, 28, 17816, 32782, 6, 12962, 198, 198, 31, 12384, 62, 15042, 13, 38629, 10786, 14, 83, 3183, 12, 4868, 14, 3256, 24396, 82, 28, 17816, 32782, 6, 12962, 198, 198, 31, 12384, 62, 15042, 13, 38629, 10786, 14, 83, 3183, 12, 9288, 14, 3256, 24396, 82, 28, 17816, 18851, 6, 12962 ]
2.404762
168
x = lst(1,2,3,4,5,6,7,8,9,10,11,12) print x x.move_even_to_end() print x x.reverse() print x
[ 220, 220, 220, 220, 220, 220, 220, 220, 198, 87, 796, 300, 301, 7, 16, 11, 17, 11, 18, 11, 19, 11, 20, 11, 21, 11, 22, 11, 23, 11, 24, 11, 940, 11, 1157, 11, 1065, 8, 198, 4798, 2124, 198, 87, 13, 21084, 62, 10197, 62, 1462, 62, 437, 3419, 198, 4798, 2124, 198, 87, 13, 50188, 3419, 198, 4798, 2124, 198 ]
1.59375
64
import argparse import pandas as pd import numpy as np import os # from os.path import join import sys import logging # import joblib from sklearn.externals import joblib from sklearn.tree import DecisionTreeRegressor from sklearn.ensemble import RandomForestRegressor, AdaBoostRegressor, GradientBoostingRegressor from sklearn import metrics logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) logger.addHandler(logging.StreamHandler(sys.stdout)) if 'SAGEMAKER_METRICS_DIRECTORY' in os.environ: log_file_handler = logging.FileHandler(os.path.join(os.environ['SAGEMAKER_METRICS_DIRECTORY'], "metrics.json")) log_file_handler.setFormatter( "{'time':'%(asctime)s', 'name': '%(name)s', \ 'level': '%(levelname)s', 'message': '%(message)s'}" ) logger.addHandler(log_file_handler) if __name__ == '__main__': parser = argparse.ArgumentParser() # Hyperparameters are described here. In this simple example we are just including one hyperparameter. parser.add_argument('--model_name', type=str, default='decision_tree') parser.add_argument('--n_estimators', type=int, default=10) parser.add_argument('--max_features', type=float, default=0.5) parser.add_argument('--max_depth', type=int, default=4) parser.add_argument('--criterion', type=str, default='mse') # Sagemaker specific arguments. Defaults are set in the environment variables. parser.add_argument('--output-data-dir', type=str, default=os.environ['SM_OUTPUT_DATA_DIR']) parser.add_argument('--model-dir', type=str, default=os.environ['SM_MODEL_DIR']) parser.add_argument('--train', type=str, default=os.environ['SM_CHANNEL_TRAIN']) parser.add_argument('--validation', type=str, default=os.environ.get('SM_CHANNEL_VALIDATION')) args = parser.parse_args() logger.info("Get train data loader") train_data = pd.read_csv('{}/final_train.csv'.format(args.train), engine="python") logger.info("Get valdation data loader") validation_data = pd.read_csv('{}/final_validate.csv'.format(args.validation), engine="python") train_x = train_data.drop('unit_sales', axis=1) train_y = train_data['unit_sales'] model_name = args.model_name n_estimators = args.n_estimators max_features = args.max_features max_depth = args.max_depth criterion = args.criterion if (model_name == 'random_forest'): clf = RandomForestRegressor(random_state=None, n_estimators=n_estimators, max_features=max_features) elif (model_name == 'adaboost'): clf = AdaBoostRegressor(random_state=None, n_estimators=n_estimators) elif (model_name == 'gradient_boosting'): clf = GradientBoostingRegressor(random_state=None, n_estimators=n_estimators, max_depth=max_depth) elif (model_name == 'decision_tree'): clf = DecisionTreeRegressor(random_state=None, criterion=criterion) else: logger.debug("Invalid model name") logger.debug("Training starts") clf = clf.fit(train_x, train_y) logger.debug("Training done") # Save the model joblib.dump(clf, os.path.join(args.model_dir, "model.joblib")) logger.debug("Model written in model_dir") logger.debug("Making prediction on validation data") validation_predictions = make_predictions(clf, validation_data) logger.info('nwrmsle: {:.4f};\n'.format(eval_nwrmsle(validation_predictions, validation_data['unit_sales'].values, validation_data['perishable'].values))) logger.info('r2_score: {:.4f};\n'.format(metrics.r2_score(y_true=validation_data['unit_sales'].values, y_pred=validation_predictions)))
[ 11748, 1822, 29572, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 2, 422, 28686, 13, 6978, 1330, 4654, 198, 11748, 25064, 198, 11748, 18931, 198, 198, 2, 1330, 1693, 8019, 198, 6738, 1341, 35720, 13, 1069, 759, 874, 1330, 1693, 8019, 198, 198, 6738, 220, 220, 1341, 35720, 13, 21048, 1330, 26423, 27660, 8081, 44292, 198, 6738, 220, 220, 1341, 35720, 13, 1072, 11306, 1330, 14534, 34605, 8081, 44292, 11, 47395, 45686, 8081, 44292, 11, 17701, 1153, 45686, 278, 8081, 44292, 198, 6738, 220, 220, 1341, 35720, 1330, 20731, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 6404, 1362, 13, 2617, 4971, 7, 6404, 2667, 13, 30531, 8, 198, 6404, 1362, 13, 2860, 25060, 7, 6404, 2667, 13, 12124, 25060, 7, 17597, 13, 19282, 448, 4008, 628, 628, 198, 361, 705, 4090, 38, 3620, 10206, 1137, 62, 47123, 49, 19505, 62, 17931, 23988, 15513, 6, 287, 28686, 13, 268, 2268, 25, 198, 220, 220, 220, 2604, 62, 7753, 62, 30281, 796, 18931, 13, 8979, 25060, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 268, 2268, 17816, 4090, 38, 3620, 10206, 1137, 62, 47123, 49, 19505, 62, 17931, 23988, 15513, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4164, 10466, 13, 17752, 48774, 198, 220, 220, 220, 2604, 62, 7753, 62, 30281, 13, 2617, 8479, 1436, 7, 198, 220, 220, 220, 45144, 6, 2435, 10354, 6, 4, 7, 292, 310, 524, 8, 82, 3256, 705, 3672, 10354, 705, 4, 7, 3672, 8, 82, 3256, 3467, 198, 220, 220, 220, 705, 5715, 10354, 705, 4, 7, 5715, 3672, 8, 82, 3256, 705, 20500, 10354, 705, 4, 7, 20500, 8, 82, 6, 36786, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 49706, 13, 2860, 25060, 7, 6404, 62, 7753, 62, 30281, 8, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 628, 220, 220, 220, 1303, 15079, 17143, 7307, 389, 3417, 994, 13, 554, 428, 2829, 1672, 356, 389, 655, 1390, 530, 8718, 17143, 2357, 13, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 19849, 62, 3672, 3256, 220, 220, 2099, 28, 2536, 11, 220, 220, 4277, 11639, 12501, 1166, 62, 21048, 11537, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 77, 62, 395, 320, 2024, 3256, 2099, 28, 600, 11, 220, 220, 4277, 28, 940, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 9806, 62, 40890, 3256, 2099, 28, 22468, 11, 4277, 28, 15, 13, 20, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 9806, 62, 18053, 3256, 220, 220, 220, 2099, 28, 600, 11, 220, 220, 4277, 28, 19, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 22213, 28019, 3256, 220, 220, 220, 2099, 28, 2536, 11, 220, 220, 4277, 11639, 76, 325, 11537, 628, 220, 220, 220, 1303, 25605, 32174, 2176, 7159, 13, 2896, 13185, 389, 900, 287, 262, 2858, 9633, 13, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 22915, 12, 7890, 12, 15908, 3256, 2099, 28, 2536, 11, 4277, 28, 418, 13, 268, 2268, 17816, 12310, 62, 2606, 7250, 3843, 62, 26947, 62, 34720, 6, 12962, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 19849, 12, 15908, 3256, 2099, 28, 2536, 11, 4277, 28, 418, 13, 268, 2268, 17816, 12310, 62, 33365, 3698, 62, 34720, 6, 12962, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 27432, 3256, 2099, 28, 2536, 11, 4277, 28, 418, 13, 268, 2268, 17816, 12310, 62, 3398, 22846, 3698, 62, 51, 3861, 1268, 6, 12962, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 12102, 341, 3256, 2099, 28, 2536, 11, 4277, 28, 418, 13, 268, 2268, 13, 1136, 10786, 12310, 62, 3398, 22846, 3698, 62, 23428, 2389, 6234, 6, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 220, 220, 220, 49706, 13, 10951, 7203, 3855, 4512, 1366, 40213, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 4512, 62, 7890, 220, 220, 220, 220, 220, 796, 279, 67, 13, 961, 62, 40664, 10786, 90, 92, 14, 20311, 62, 27432, 13, 40664, 4458, 18982, 7, 22046, 13, 27432, 828, 3113, 2625, 29412, 4943, 628, 220, 220, 220, 49706, 13, 10951, 7203, 3855, 1188, 67, 341, 1366, 40213, 4943, 628, 220, 220, 220, 21201, 62, 7890, 796, 279, 67, 13, 961, 62, 40664, 10786, 90, 92, 14, 20311, 62, 12102, 378, 13, 40664, 4458, 18982, 7, 22046, 13, 12102, 341, 828, 3113, 2625, 29412, 4943, 628, 220, 220, 220, 4512, 62, 87, 796, 4512, 62, 7890, 13, 14781, 10786, 20850, 62, 82, 2040, 3256, 16488, 28, 16, 8, 198, 220, 220, 220, 4512, 62, 88, 796, 4512, 62, 7890, 17816, 20850, 62, 82, 2040, 20520, 628, 220, 220, 220, 2746, 62, 3672, 220, 220, 796, 26498, 13, 19849, 62, 3672, 198, 220, 220, 220, 299, 62, 395, 320, 2024, 796, 26498, 13, 77, 62, 395, 320, 2024, 198, 220, 220, 220, 3509, 62, 40890, 796, 26498, 13, 9806, 62, 40890, 198, 220, 220, 220, 3509, 62, 18053, 220, 220, 220, 796, 26498, 13, 9806, 62, 18053, 198, 220, 220, 220, 34054, 220, 220, 220, 796, 26498, 13, 22213, 28019, 628, 220, 220, 220, 611, 357, 19849, 62, 3672, 6624, 705, 25120, 62, 29623, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 537, 69, 796, 14534, 34605, 8081, 44292, 7, 25120, 62, 5219, 28, 14202, 11, 299, 62, 395, 320, 2024, 28, 77, 62, 395, 320, 2024, 11, 3509, 62, 40890, 28, 9806, 62, 40890, 8, 198, 220, 220, 220, 1288, 361, 357, 19849, 62, 3672, 6624, 705, 324, 34748, 455, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 537, 69, 796, 47395, 45686, 8081, 44292, 7, 25120, 62, 5219, 28, 14202, 11, 299, 62, 395, 320, 2024, 28, 77, 62, 395, 320, 2024, 8, 198, 220, 220, 220, 1288, 361, 357, 19849, 62, 3672, 6624, 705, 49607, 62, 39521, 278, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 537, 69, 796, 17701, 1153, 45686, 278, 8081, 44292, 7, 25120, 62, 5219, 28, 14202, 11, 299, 62, 395, 320, 2024, 28, 77, 62, 395, 320, 2024, 11, 3509, 62, 18053, 28, 9806, 62, 18053, 8, 198, 220, 220, 220, 1288, 361, 357, 19849, 62, 3672, 6624, 705, 12501, 1166, 62, 21048, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 537, 69, 796, 26423, 27660, 8081, 44292, 7, 25120, 62, 5219, 28, 14202, 11, 34054, 28, 22213, 28019, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 44651, 2746, 1438, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 49706, 13, 24442, 7203, 44357, 4940, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 537, 69, 796, 537, 69, 13, 11147, 7, 27432, 62, 87, 11, 4512, 62, 88, 8, 628, 220, 220, 220, 49706, 13, 24442, 7203, 44357, 1760, 4943, 628, 220, 220, 220, 1303, 12793, 262, 2746, 198, 220, 220, 220, 1693, 8019, 13, 39455, 7, 565, 69, 11, 28686, 13, 6978, 13, 22179, 7, 22046, 13, 19849, 62, 15908, 11, 366, 19849, 13, 21858, 8019, 48774, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49706, 13, 24442, 7203, 17633, 3194, 287, 2746, 62, 15908, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49706, 13, 24442, 7203, 23874, 17724, 319, 21201, 1366, 4943, 628, 220, 220, 220, 220, 198, 220, 220, 220, 21201, 62, 28764, 9278, 796, 787, 62, 28764, 9278, 7, 565, 69, 11, 21201, 62, 7890, 8, 628, 220, 220, 220, 49706, 13, 10951, 10786, 77, 18351, 907, 293, 25, 46110, 13, 19, 69, 19629, 59, 77, 4458, 18982, 7, 18206, 62, 77, 18351, 907, 293, 7, 12102, 341, 62, 28764, 9278, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 17816, 20850, 62, 82, 2040, 6, 4083, 27160, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 17816, 525, 31785, 6, 4083, 27160, 22305, 198, 220, 220, 220, 49706, 13, 10951, 10786, 81, 17, 62, 26675, 25, 46110, 13, 19, 69, 19629, 59, 77, 4458, 18982, 7, 4164, 10466, 13, 81, 17, 62, 26675, 7, 88, 62, 7942, 28, 12102, 341, 62, 7890, 17816, 20850, 62, 82, 2040, 6, 4083, 27160, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 28764, 28, 12102, 341, 62, 28764, 9278, 22305 ]
2.389841
1,634
from discretize.utils import ( exampleLrmGrid, meshTensor, closestPoints, ExtractCoreMesh )
[ 6738, 1221, 1186, 1096, 13, 26791, 1330, 357, 198, 220, 220, 220, 1672, 43, 26224, 41339, 11, 19609, 51, 22854, 11, 11706, 40710, 11, 29677, 14055, 37031, 198, 8, 198 ]
3.2
30
import asyncio import pytest from typing import List from tests.setup_nodes import setup_full_system from src.util.ints import uint32 from src.types.full_block import FullBlock from src.util.make_test_constants import make_test_constants_with_genesis from tests.time_out_assert import time_out_assert, time_out_assert_custom_interval test_constants, bt = make_test_constants_with_genesis( { "DIFFICULTY_STARTING": 1000, "MIN_ITERS_STARTING": 100000, "NUMBER_ZERO_BITS_CHALLENGE_SIG": 1, } ) @pytest.fixture(scope="module")
[ 11748, 30351, 952, 198, 11748, 12972, 9288, 198, 6738, 19720, 1330, 7343, 198, 6738, 5254, 13, 40406, 62, 77, 4147, 1330, 9058, 62, 12853, 62, 10057, 198, 6738, 12351, 13, 22602, 13, 29503, 1330, 20398, 2624, 198, 6738, 12351, 13, 19199, 13, 12853, 62, 9967, 1330, 6462, 12235, 198, 6738, 12351, 13, 22602, 13, 15883, 62, 9288, 62, 9979, 1187, 1330, 787, 62, 9288, 62, 9979, 1187, 62, 4480, 62, 5235, 9339, 198, 6738, 5254, 13, 2435, 62, 448, 62, 30493, 1330, 640, 62, 448, 62, 30493, 11, 640, 62, 448, 62, 30493, 62, 23144, 62, 3849, 2100, 628, 198, 9288, 62, 9979, 1187, 11, 275, 83, 796, 787, 62, 9288, 62, 9979, 1187, 62, 4480, 62, 5235, 9339, 7, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35, 29267, 2149, 6239, 9936, 62, 2257, 7227, 2751, 1298, 8576, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 23678, 62, 2043, 4877, 62, 2257, 7227, 2751, 1298, 1802, 830, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 41359, 13246, 62, 57, 34812, 62, 26094, 50, 62, 3398, 7036, 1677, 8264, 62, 50, 3528, 1298, 352, 11, 198, 220, 220, 220, 1782, 198, 8, 628, 198, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 21412, 4943, 628 ]
2.585253
217
from __future__ import annotations from typing import Type, Union from enum import Enum import inspect from ..base_schema import Schema from ..dom import DOMElement from ..base_schema import SchemaPrimitive, SchemaEnum def resolve_arg_to_schema(arg: Union[Type, Schema]) -> Schema: """ Resolve an argument of heterogeneous type to a `Schema` instance. :param arg: Argument to resolve to a Schema. Must be one of: A primitive Python type (str, int, bool, float) A subclass of `UserObject` An instance of `Schema`. :return: A `Schema` instance corresponding to the supplied argument. """ if inspect.isclass(arg): if issubclass(arg, DOMElement): return arg.__json_schema__() if issubclass(arg, Enum): return SchemaEnum(arg) else: return SchemaPrimitive(arg) elif isinstance(arg, Schema): return arg else: raise TypeError(f"Unexpected object type: {type(arg)}")
[ 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 6738, 19720, 1330, 5994, 11, 4479, 198, 6738, 33829, 1330, 2039, 388, 198, 198, 11748, 10104, 198, 198, 6738, 11485, 8692, 62, 15952, 2611, 1330, 10011, 2611, 198, 6738, 11485, 3438, 1330, 360, 13649, 1732, 198, 198, 6738, 11485, 8692, 62, 15952, 2611, 1330, 10011, 2611, 23828, 1800, 11, 10011, 2611, 4834, 388, 628, 198, 4299, 10568, 62, 853, 62, 1462, 62, 15952, 2611, 7, 853, 25, 4479, 58, 6030, 11, 10011, 2611, 12962, 4613, 10011, 2611, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1874, 6442, 281, 4578, 286, 14445, 32269, 2099, 284, 257, 4600, 27054, 2611, 63, 4554, 13, 628, 220, 220, 220, 1058, 17143, 1822, 25, 45751, 284, 10568, 284, 257, 10011, 2611, 13, 12039, 307, 530, 286, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 20049, 11361, 2099, 357, 2536, 11, 493, 11, 20512, 11, 12178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 47611, 286, 4600, 12982, 10267, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 4554, 286, 4600, 27054, 2611, 44646, 198, 220, 220, 220, 1058, 7783, 25, 220, 220, 220, 317, 4600, 27054, 2611, 63, 4554, 11188, 284, 262, 14275, 4578, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 10104, 13, 271, 4871, 7, 853, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1189, 549, 4871, 7, 853, 11, 360, 13649, 1732, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1822, 13, 834, 17752, 62, 15952, 2611, 834, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1189, 549, 4871, 7, 853, 11, 2039, 388, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10011, 2611, 4834, 388, 7, 853, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10011, 2611, 23828, 1800, 7, 853, 8, 198, 220, 220, 220, 1288, 361, 318, 39098, 7, 853, 11, 10011, 2611, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1822, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7, 69, 1, 52, 42072, 2134, 2099, 25, 1391, 4906, 7, 853, 38165, 4943, 198 ]
2.491484
411
############################## # support query serve for front web system # filename:query.py # author: liwei # StuID: 1711350 # date: 2019.12.1 ############################## #查询构建 from whoosh import highlight from whoosh import qparser from whoosh import index from flask import Flask from flask import request from flask import jsonify,render_template,abort, redirect, url_for,session, escape,Markup from flask_cors import * import re import logging from numpy import std from data import xy_dict from data import get_html,get_teacher_info,pagerank # from audio import * app = Flask(__name__) CORS(app,supports_credentials=True) # 解决跨域请求无响应问题 app.secret_key=b'\xfa\n\x08\xb9\x84I\xe5xRdE\xea\x9f\xba\xce\x81' mysession =dict() # 自定义的session用来传输数据 url_dict,scores = pagerank(get_teacher_info()) # 获取pageranke计算结果,返回链接映射和排名得分 # 定义日志记录文件的配置 LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s" DATE_FORMAT = "%m/%d/%Y %H:%M:%S %p" logging.basicConfig(filename='my.log', level=logging.DEBUG, format=LOG_FORMAT, datefmt=DATE_FORMAT) ix = index.open_dir("index") #打开该目录一遍存储索引文件 # 网页快照路由 @app.route('/snapshots/<xueyuan>/<filename>',methods=["GET"]) # 主页路由 @app.route('/',methods=["GET"]) # 结果展示页面路由 @app.route('/display/',methods=["GET","POST"]) # 结果展示get请求页面响应 @app.route('/display/<count>&<query>') # # 实现语音输入查询 # @app.route('/audio',methods=['GET','POST']) # def audio_query(): # assert request.path == '/audio' # # 通过语音识别API获取查询输入 # get_audio(in_path) # # 测试代码 # filename = "./speechs/input.wav" # signal = open(filename, "rb").read() # rate = 16000 # token = get_token() # msg = recognize(signal, rate, token) # query_sentence = " " # if "err_no" in dict(msg).keys(): # logging.warning("%d,没有获取有效语音输入!错误消息%s 错误代码%d" %( 404,msg["err_msg"],msg["err_no"])) # return "%d,没有获取有效语音输入!错误消息%s 错误代码%d" %( 404,msg["err_msg"],msg["err_no"]), 404 # else: # query_sentence = msg['result'] # # 记录日志 # logging.info("Audio Query sentence: %s" % query_sentence) # res = [] # with ix.searcher() as searcher: # # 对输入的查询文本进行解析,如果存在按域查询的需求则区分按域查询,默认采用多属性查询模式 # # mark 表示是否需要高亮学院查询区域,默认情况下需要 # highlight_xy = True # # 默认的多域查询 # query = qparser.MultifieldParser(["content", "title", "mtext", "xueyuan"], ix.schema) # if query_sentence.endswith("$姓名$"): # # 按名字查询 # query = qparser.SimpleParser("title", ix.schema) # query_sentence = query_sentence.strip('$姓名$') # elif query_sentence.endswith("$学院$"): # # 按学院查询 # query = qparser.SimpleParser("xueyuan", ix.schema) # query_sentence = query_sentence.strip('$学院$') # # elif query_sentence.endswith("$网页$"): # # 按网页内容查询 # query = qparser.SimpleParser("content", ix.schema) # query_sentence = query_sentence.strip('$网页$') # # # print(query_sentence) # # 引入查询解析器插件 # query.add_plugin(qparser.WildcardPlugin) # # # query.remove_plugin_class(qparser.WildcardPlugin) # query.add_plugin(qparser.PrefixPlugin()) # query.add_plugin(qparser.OperatorsPlugin) # query.add_plugin(qparser.RegexPlugin) # query.add_plugin(qparser.PhrasePlugin) # # # 解析得到查询器 # q = query.parse(query_sentence) # logging.info("Query parse result: %s" % str(q)) # print(q) # # 获取查询结果 # result = searcher.search(q, limit=20) # # print(result) # # 设置碎片的属性 # # Allow larger fragments # my_cf = highlight.ContextFragmenter(maxchars=200, surround=30) # hf = highlight.HtmlFormatter(tagname='em', classname='match', termclass='term') # # hi = highlight.Highlighter(fragmenter=my_cf, formatter=hf) # for hit in result: # print(hit["picpath"]) # print(hit["title"]) # print(escape(hi.highlight_hit(hit, "content"))) # if hit['picpath'] == '#': # if highlight_xy: # res.append({"title": hit['title'], # "xueyuan": Markup(hi.highlight_hit(hit, "xueyuan")), # "url": hit["url"], # 'shotpath': hit['shotpath'], # "content": Markup(hi.highlight_hit(hit, "content")), # "parenturl": hit["parenturl"], # "picpath": '#', # "pagerank": scores[url_dict[hit["url"]]] # }) # else: # res.append({"title": hit['title'], # "xueyuan": hit["xueyuan"], # "url": hit["url"], # 'shotpath': hit['shotpath'], # "content": Markup(hi.highlight_hit(hit, "content")), # "parenturl": hit["parenturl"], # "picpath": '#', # "pagerank": scores[url_dict[hit["url"]]] # }) # else: # if highlight_xy: # res.append({"title": hit['title'], # "xueyuan": Markup(hi.highlight_hit(hit, "xueyuan")), # "url": hit["url"], # 'shotpath': hit['shotpath'], # "content": Markup(hi.highlight_hit(hit, "content")), # "parenturl": hit["parenturl"], # "picpath": "images/%s/%s" % ( # hit['picpath'].split('/')[-3], hit['picpath'].split('/')[-1]), # "pagerank": scores[url_dict[hit["url"]]] # }) # else: # res.append({"title": hit['title'], # "xueyuan": hit["xueyuan"], # "url": hit["url"], # 'shotpath': hit['shotpath'], # "content": Markup(hi.highlight_hit(hit, "content")), # "parenturl": hit["parenturl"], # "picpath": "images/%s/%s" % ( # hit['picpath'].split('/')[-3], hit['picpath'].split('/')[-1]), # "pagerank": scores[url_dict[hit["url"]]] # }) # print(len(result)) # print(res) # count = len(result) # # if count == 0: # logging.warning("%d,没有查询到相关内容!" % 404) # return "没有查询到相关内容!", 404 # else: # # 记录查询日志 # log = "Response: " # for item in res: # log = log + " (name:%s,url:%s) " % (item["title"], item["url"]) # logging.info(log) # # # # 基于page rank 对链接进行排序 # # res.sort(key=lambda k:(k.get("pagerank",0)),reverse = True) # # print(res) # # mysession["data"] = res # 使用会话session传递参数 # return jsonify({"url": "/display/%d&%s" % (count, query_sentence)}) # 基本查询函数,实现前缀、通配、正则匹配,短语、关系运算查询功能 # 基于whoosh的highlighter实现返回高亮查询词块 @app.route('/index',methods=['GET','POST']) if __name__ == '__main__': app.run(debug=False,use_reloader=False)
[ 14468, 7804, 4242, 2235, 198, 2, 1104, 12405, 4691, 329, 2166, 3992, 1080, 198, 2, 29472, 25, 22766, 13, 9078, 198, 2, 1772, 25, 220, 7649, 42990, 198, 2, 520, 84, 2389, 25, 220, 220, 1596, 1157, 14877, 198, 2, 3128, 25, 220, 220, 220, 13130, 13, 1065, 13, 16, 198, 14468, 7804, 4242, 2235, 628, 198, 2, 162, 253, 98, 46237, 95, 162, 252, 226, 161, 119, 118, 198, 6738, 508, 3768, 1330, 7238, 198, 6738, 508, 3768, 1330, 10662, 48610, 198, 6738, 508, 3768, 1330, 6376, 198, 6738, 42903, 1330, 46947, 198, 6738, 42903, 1330, 2581, 198, 6738, 42903, 1330, 33918, 1958, 11, 13287, 62, 28243, 11, 397, 419, 11, 18941, 11, 19016, 62, 1640, 11, 29891, 11, 6654, 11, 9704, 929, 198, 6738, 42903, 62, 66, 669, 1330, 220, 1635, 198, 11748, 302, 198, 11748, 18931, 198, 6738, 299, 32152, 1330, 14367, 198, 6738, 1366, 1330, 2124, 88, 62, 11600, 198, 6738, 1366, 1330, 651, 62, 6494, 11, 1136, 62, 660, 3493, 62, 10951, 11, 79, 3536, 962, 198, 198, 2, 422, 6597, 1330, 1635, 198, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 198, 34, 20673, 7, 1324, 11, 18608, 2096, 62, 66, 445, 14817, 28, 17821, 8, 220, 220, 220, 1303, 5525, 100, 96, 37863, 111, 164, 115, 101, 161, 253, 253, 46237, 115, 162, 109, 224, 33768, 254, 161, 241, 235, 41753, 242, 29785, 106, 165, 95, 246, 198, 1324, 13, 21078, 62, 2539, 28, 65, 6, 59, 87, 13331, 59, 77, 59, 87, 2919, 59, 30894, 24, 59, 87, 5705, 40, 59, 27705, 20, 87, 49, 67, 36, 59, 87, 18213, 59, 87, 24, 69, 59, 87, 7012, 59, 87, 344, 59, 87, 6659, 6, 198, 28744, 2521, 796, 11600, 3419, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5525, 229, 103, 22522, 248, 20046, 231, 21410, 29891, 18796, 101, 30266, 98, 27670, 254, 164, 122, 241, 46763, 108, 162, 235, 106, 198, 6371, 62, 11600, 11, 1416, 2850, 796, 279, 3536, 962, 7, 1136, 62, 660, 3493, 62, 10951, 28955, 220, 220, 220, 220, 220, 1303, 5525, 236, 115, 20998, 244, 79, 3536, 49200, 164, 106, 94, 163, 106, 245, 163, 119, 241, 162, 252, 250, 171, 120, 234, 32573, 242, 32368, 252, 165, 241, 122, 162, 236, 98, 23626, 254, 22887, 226, 161, 240, 234, 162, 236, 240, 28938, 235, 36181, 245, 26344, 228, 198, 198, 2, 10263, 106, 248, 20046, 231, 33768, 98, 33232, 245, 164, 106, 108, 37605, 243, 23877, 229, 20015, 114, 21410, 165, 227, 235, 163, 121, 106, 198, 25294, 62, 21389, 1404, 796, 36521, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 5715, 3672, 8, 82, 532, 4064, 7, 20500, 8, 82, 1, 198, 35, 6158, 62, 21389, 1404, 796, 36521, 76, 14, 4, 67, 14, 4, 56, 4064, 39, 25, 4, 44, 25, 4, 50, 4064, 79, 1, 198, 198, 6404, 2667, 13, 35487, 16934, 7, 34345, 11639, 1820, 13, 6404, 3256, 1241, 28, 6404, 2667, 13, 30531, 11, 5794, 28, 25294, 62, 21389, 1404, 11, 3128, 69, 16762, 28, 35, 6158, 62, 21389, 1404, 8, 628, 198, 198, 844, 796, 6376, 13, 9654, 62, 15908, 7203, 9630, 4943, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 33699, 241, 28156, 222, 46237, 98, 33566, 106, 37605, 243, 31660, 34402, 235, 27764, 246, 43636, 101, 163, 112, 95, 28156, 243, 23877, 229, 20015, 114, 198, 198, 2, 13328, 121, 239, 165, 94, 113, 33232, 104, 163, 227, 100, 164, 115, 107, 18796, 109, 198, 31, 1324, 13, 38629, 10786, 14, 45380, 20910, 14, 27, 87, 518, 88, 7258, 29, 14, 27, 34345, 29, 3256, 24396, 82, 28, 14692, 18851, 8973, 8, 198, 2, 220, 10310, 119, 165, 94, 113, 164, 115, 107, 18796, 109, 198, 31, 1324, 13, 38629, 10786, 14, 3256, 24396, 82, 28, 14692, 18851, 8973, 8, 198, 2, 13328, 119, 241, 162, 252, 250, 161, 109, 243, 163, 97, 118, 165, 94, 113, 165, 251, 95, 164, 115, 107, 18796, 109, 198, 31, 1324, 13, 38629, 10786, 14, 13812, 14, 3256, 24396, 82, 28, 14692, 18851, 2430, 32782, 8973, 8, 198, 198, 2, 13328, 119, 241, 162, 252, 250, 161, 109, 243, 163, 97, 118, 1136, 46237, 115, 162, 109, 224, 165, 94, 113, 165, 251, 95, 161, 241, 235, 41753, 242, 198, 31, 1324, 13, 38629, 10786, 14, 13812, 14, 27, 9127, 29, 5, 27, 22766, 29, 11537, 628, 198, 2, 1303, 10263, 106, 252, 163, 236, 108, 46237, 255, 165, 253, 111, 164, 122, 241, 17739, 98, 162, 253, 98, 46237, 95, 198, 2, 2488, 1324, 13, 38629, 10786, 14, 24051, 3256, 24396, 82, 28, 17816, 18851, 41707, 32782, 6, 12962, 198, 2, 825, 6597, 62, 22766, 33529, 198, 2, 220, 220, 220, 220, 6818, 2581, 13, 6978, 6624, 31051, 24051, 6, 198, 2, 220, 220, 220, 220, 1303, 16268, 222, 248, 32573, 229, 46237, 255, 165, 253, 111, 46237, 228, 26344, 104, 17614, 164, 236, 115, 20998, 244, 162, 253, 98, 46237, 95, 164, 122, 241, 17739, 98, 198, 2, 220, 220, 220, 220, 651, 62, 24051, 7, 259, 62, 6978, 8, 198, 2, 220, 220, 220, 220, 1303, 10545, 113, 233, 46237, 243, 47987, 163, 254, 223, 198, 2, 220, 220, 220, 220, 29472, 796, 366, 19571, 45862, 82, 14, 15414, 13, 45137, 1, 198, 2, 220, 220, 220, 220, 6737, 796, 1280, 7, 34345, 11, 366, 26145, 11074, 961, 3419, 198, 2, 220, 220, 220, 220, 2494, 796, 1467, 830, 198, 2, 220, 220, 220, 220, 11241, 796, 651, 62, 30001, 3419, 198, 2, 220, 220, 220, 220, 31456, 796, 7564, 7, 12683, 282, 11, 2494, 11, 11241, 8, 198, 2, 220, 220, 220, 220, 12405, 62, 34086, 594, 796, 366, 366, 198, 2, 220, 220, 220, 220, 611, 366, 8056, 62, 3919, 1, 287, 8633, 7, 19662, 737, 13083, 33529, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 43917, 7203, 4, 67, 11, 162, 110, 94, 17312, 231, 164, 236, 115, 20998, 244, 17312, 231, 46763, 42062, 107, 255, 165, 253, 111, 164, 122, 241, 17739, 98, 171, 120, 223, 165, 242, 247, 46237, 107, 162, 114, 230, 162, 223, 107, 4, 82, 16268, 242, 247, 46237, 107, 47987, 163, 254, 223, 4, 67, 1, 4064, 7, 32320, 11, 19662, 14692, 8056, 62, 19662, 33116, 19662, 14692, 8056, 62, 3919, 8973, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 36521, 67, 11, 162, 110, 94, 17312, 231, 164, 236, 115, 20998, 244, 17312, 231, 46763, 42062, 107, 255, 165, 253, 111, 164, 122, 241, 17739, 98, 171, 120, 223, 165, 242, 247, 46237, 107, 162, 114, 230, 162, 223, 107, 4, 82, 16268, 242, 247, 46237, 107, 47987, 163, 254, 223, 4, 67, 1, 4064, 7, 32320, 11, 19662, 14692, 8056, 62, 19662, 33116, 19662, 14692, 8056, 62, 3919, 8973, 828, 32320, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 62, 34086, 594, 796, 31456, 17816, 20274, 20520, 198, 2, 220, 220, 220, 220, 1303, 5525, 106, 108, 37605, 243, 33768, 98, 33232, 245, 198, 2, 220, 220, 220, 220, 18931, 13, 10951, 7203, 21206, 43301, 6827, 25, 4064, 82, 1, 4064, 12405, 62, 34086, 594, 8, 198, 2, 220, 220, 220, 220, 581, 796, 17635, 198, 2, 220, 220, 220, 220, 351, 220, 844, 13, 325, 283, 2044, 3419, 355, 9622, 2044, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10263, 107, 117, 164, 122, 241, 17739, 98, 21410, 162, 253, 98, 46237, 95, 23877, 229, 17312, 105, 32573, 249, 26193, 234, 164, 100, 96, 162, 252, 238, 171, 120, 234, 36685, 224, 162, 252, 250, 27764, 246, 28839, 101, 162, 234, 231, 161, 253, 253, 162, 253, 98, 46237, 95, 21410, 165, 250, 222, 162, 109, 224, 26344, 247, 44293, 118, 26344, 228, 162, 234, 231, 161, 253, 253, 162, 253, 98, 46237, 95, 171, 120, 234, 165, 119, 246, 164, 106, 97, 34932, 229, 18796, 101, 13783, 248, 161, 109, 252, 45250, 100, 162, 253, 98, 46237, 95, 162, 101, 94, 28156, 237, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1317, 5525, 94, 101, 163, 97, 118, 42468, 28938, 99, 165, 250, 222, 17358, 223, 165, 45865, 12859, 106, 27764, 99, 165, 247, 95, 162, 253, 98, 46237, 95, 44293, 118, 161, 253, 253, 171, 120, 234, 165, 119, 246, 164, 106, 97, 46349, 227, 37863, 113, 10310, 233, 165, 250, 222, 17358, 223, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 7238, 62, 5431, 796, 6407, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16268, 119, 246, 164, 106, 97, 21410, 13783, 248, 161, 253, 253, 162, 253, 98, 46237, 95, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 10662, 48610, 13, 15205, 361, 1164, 46677, 7, 14692, 11299, 1600, 366, 7839, 1600, 366, 76, 5239, 1600, 366, 87, 518, 88, 7258, 33116, 220, 844, 13, 15952, 2611, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 12405, 62, 34086, 594, 13, 437, 2032, 342, 7203, 3, 34650, 241, 28938, 235, 3, 1, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10545, 234, 231, 28938, 235, 27764, 245, 162, 253, 98, 46237, 95, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 10662, 48610, 13, 26437, 46677, 7203, 7839, 1600, 220, 844, 13, 15952, 2611, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 62, 34086, 594, 796, 12405, 62, 34086, 594, 13, 36311, 10786, 3, 34650, 241, 28938, 235, 3, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 12405, 62, 34086, 594, 13, 437, 2032, 342, 7203, 3, 27764, 99, 165, 247, 95, 3, 1, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10545, 234, 231, 27764, 99, 165, 247, 95, 162, 253, 98, 46237, 95, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 10662, 48610, 13, 26437, 46677, 7203, 87, 518, 88, 7258, 1600, 220, 844, 13, 15952, 2611, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 62, 34086, 594, 796, 12405, 62, 34086, 594, 13, 36311, 10786, 3, 27764, 99, 165, 247, 95, 3, 11537, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 12405, 62, 34086, 594, 13, 437, 2032, 342, 7203, 3, 163, 121, 239, 165, 94, 113, 3, 1, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10545, 234, 231, 163, 121, 239, 165, 94, 113, 37863, 227, 22522, 117, 162, 253, 98, 46237, 95, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 10662, 48610, 13, 26437, 46677, 7203, 11299, 1600, 220, 844, 13, 15952, 2611, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 62, 34086, 594, 796, 12405, 62, 34086, 594, 13, 36311, 10786, 3, 163, 121, 239, 165, 94, 113, 3, 11537, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 22766, 62, 34086, 594, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10263, 120, 243, 17739, 98, 162, 253, 98, 46237, 95, 164, 100, 96, 162, 252, 238, 161, 247, 101, 162, 237, 240, 20015, 114, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 13, 2860, 62, 33803, 7, 80, 48610, 13, 25946, 9517, 37233, 8, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 12405, 13, 28956, 62, 33803, 62, 4871, 7, 80, 48610, 13, 25946, 9517, 37233, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 13, 2860, 62, 33803, 7, 80, 48610, 13, 36698, 844, 37233, 28955, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 13, 2860, 62, 33803, 7, 80, 48610, 13, 18843, 2024, 37233, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 13, 2860, 62, 33803, 7, 80, 48610, 13, 3041, 25636, 37233, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 13, 2860, 62, 33803, 7, 80, 48610, 13, 2725, 22789, 37233, 8, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5525, 100, 96, 162, 252, 238, 36181, 245, 26344, 108, 162, 253, 98, 46237, 95, 161, 247, 101, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 796, 12405, 13, 29572, 7, 22766, 62, 34086, 594, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 7203, 20746, 21136, 1255, 25, 4064, 82, 1, 4064, 965, 7, 80, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 80, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5525, 236, 115, 20998, 244, 162, 253, 98, 46237, 95, 163, 119, 241, 162, 252, 250, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 9622, 2044, 13, 12947, 7, 80, 11, 4179, 28, 1238, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 20274, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5525, 106, 122, 163, 121, 106, 163, 95, 236, 31965, 229, 21410, 161, 109, 252, 45250, 100, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 22507, 4025, 21441, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 616, 62, 12993, 796, 7238, 13, 21947, 42974, 434, 263, 7, 9806, 354, 945, 28, 2167, 11, 4573, 28, 1270, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 69, 796, 7238, 13, 39, 20369, 8479, 1436, 7, 12985, 3672, 11639, 368, 3256, 1398, 3672, 11639, 15699, 3256, 3381, 4871, 11639, 4354, 11537, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 23105, 796, 7238, 13, 11922, 75, 4799, 7, 8310, 363, 434, 263, 28, 1820, 62, 12993, 11, 1296, 1436, 28, 71, 69, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2277, 287, 1255, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 17945, 14692, 16564, 6978, 8973, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 17945, 14692, 7839, 8973, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 41915, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 11299, 1, 22305, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2277, 17816, 16564, 6978, 20520, 6624, 705, 2, 10354, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7238, 62, 5431, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 4895, 7839, 1298, 2277, 17816, 7839, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 518, 88, 7258, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 87, 518, 88, 7258, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6371, 1298, 2277, 14692, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9442, 6978, 10354, 2277, 17816, 9442, 6978, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 11299, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8000, 6371, 1298, 2277, 14692, 8000, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16564, 6978, 1298, 705, 2, 3256, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 79, 3536, 962, 1298, 8198, 58, 6371, 62, 11600, 58, 17945, 14692, 6371, 8973, 11907, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 4895, 7839, 1298, 2277, 17816, 7839, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 518, 88, 7258, 1298, 2277, 14692, 87, 518, 88, 7258, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6371, 1298, 2277, 14692, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9442, 6978, 10354, 2277, 17816, 9442, 6978, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 11299, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8000, 6371, 1298, 2277, 14692, 8000, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16564, 6978, 1298, 705, 2, 3256, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 79, 3536, 962, 1298, 8198, 58, 6371, 62, 11600, 58, 17945, 14692, 6371, 8973, 11907, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7238, 62, 5431, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 4895, 7839, 1298, 2277, 17816, 7839, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 518, 88, 7258, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 87, 518, 88, 7258, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6371, 1298, 2277, 14692, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9442, 6978, 10354, 2277, 17816, 9442, 6978, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 11299, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8000, 6371, 1298, 2277, 14692, 8000, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16564, 6978, 1298, 366, 17566, 14, 4, 82, 14, 4, 82, 1, 4064, 357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2277, 17816, 16564, 6978, 6, 4083, 35312, 10786, 14, 11537, 58, 12, 18, 4357, 2277, 17816, 16564, 6978, 6, 4083, 35312, 10786, 14, 11537, 58, 12, 16, 46570, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 79, 3536, 962, 1298, 8198, 58, 6371, 62, 11600, 58, 17945, 14692, 6371, 8973, 11907, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 4895, 7839, 1298, 2277, 17816, 7839, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 518, 88, 7258, 1298, 2277, 14692, 87, 518, 88, 7258, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6371, 1298, 2277, 14692, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9442, 6978, 10354, 2277, 17816, 9442, 6978, 6, 4357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 1298, 2940, 929, 7, 5303, 13, 8929, 2971, 62, 17945, 7, 17945, 11, 366, 11299, 4943, 828, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8000, 6371, 1298, 2277, 14692, 8000, 6371, 33116, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16564, 6978, 1298, 366, 17566, 14, 4, 82, 14, 4, 82, 1, 4064, 357, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2277, 17816, 16564, 6978, 6, 4083, 35312, 10786, 14, 11537, 58, 12, 18, 4357, 2277, 17816, 16564, 6978, 6, 4083, 35312, 10786, 14, 11537, 58, 12, 16, 46570, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 79, 3536, 962, 1298, 8198, 58, 6371, 62, 11600, 58, 17945, 14692, 6371, 8973, 11907, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 11925, 7, 20274, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 411, 8, 198, 2, 220, 220, 220, 220, 954, 796, 18896, 7, 20274, 8, 198, 2, 198, 2, 220, 220, 220, 220, 611, 954, 6624, 657, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 43917, 7203, 4, 67, 11, 162, 110, 94, 17312, 231, 162, 253, 98, 46237, 95, 26344, 108, 33566, 116, 17739, 111, 37863, 227, 22522, 117, 171, 120, 223, 1, 4064, 32320, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 366, 162, 110, 94, 17312, 231, 162, 253, 98, 46237, 95, 26344, 108, 33566, 116, 17739, 111, 37863, 227, 22522, 117, 171, 120, 223, 1600, 32320, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5525, 106, 108, 37605, 243, 162, 253, 98, 46237, 95, 33768, 98, 33232, 245, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 796, 366, 31077, 25, 366, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2378, 287, 581, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 796, 2604, 1343, 366, 357, 3672, 25, 4, 82, 11, 6371, 25, 4, 82, 8, 366, 4064, 357, 9186, 14692, 7839, 33116, 2378, 14692, 6371, 8973, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 7, 6404, 8, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1303, 10263, 253, 118, 12859, 236, 7700, 4279, 10263, 107, 117, 165, 241, 122, 162, 236, 98, 32573, 249, 26193, 234, 162, 236, 240, 41753, 237, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 581, 13, 30619, 7, 2539, 28, 50033, 479, 37498, 74, 13, 1136, 7203, 79, 3536, 962, 1600, 15, 36911, 50188, 796, 6407, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 411, 8, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 616, 29891, 14692, 7890, 8973, 796, 581, 220, 1303, 220, 45635, 18796, 101, 27670, 248, 46237, 251, 29891, 27670, 254, 34460, 240, 20998, 224, 46763, 108, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 33918, 1958, 7, 4895, 6371, 1298, 12813, 13812, 14, 4, 67, 5, 4, 82, 1, 4064, 357, 9127, 11, 12405, 62, 34086, 594, 8, 30072, 628, 198, 198, 2, 10263, 253, 118, 17312, 105, 162, 253, 98, 46237, 95, 49035, 121, 46763, 108, 171, 120, 234, 22522, 252, 163, 236, 108, 30298, 235, 163, 120, 222, 23513, 34460, 21253, 227, 235, 23513, 29826, 96, 26344, 247, 44293, 117, 165, 227, 235, 171, 120, 234, 163, 253, 255, 46237, 255, 23513, 17739, 111, 163, 111, 119, 32573, 238, 163, 106, 245, 162, 253, 98, 46237, 95, 27950, 253, 47797, 121, 198, 2, 10263, 253, 118, 12859, 236, 8727, 3768, 21410, 8929, 75, 4799, 22522, 252, 163, 236, 108, 32573, 242, 32368, 252, 165, 45865, 12859, 106, 162, 253, 98, 46237, 95, 46237, 235, 161, 251, 245, 198, 31, 1324, 13, 38629, 10786, 14, 9630, 3256, 24396, 82, 28, 17816, 18851, 41707, 32782, 6, 12962, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 598, 13, 5143, 7, 24442, 28, 25101, 11, 1904, 62, 260, 29356, 28, 25101, 8, 628 ]
1.531307
4,903
""" Make time series plots. """ import galene as ga import datetime data_id_list = [ 'cmems-nrt', 'run001', 'run002', ] var_list = ['slev', 'temp'] start_time = datetime.datetime(2016, 6, 1) end_time = datetime.datetime(2018, 7, 1) for var in var_list: dataset_list = [] for data_id in data_id_list: d = ga.read_dataset(data_id, 'timeseries', var) dataset_list.append(d) # find pairs pairs = ga.find_station_pairs(*dataset_list) for key in pairs: try: cube_list = [] for data_id in data_id_list: if data_id in pairs[key]: cube = pairs[key][data_id] cube_list.append(cube) data_id_str = '-'.join(data_id_list) datatype = 'timeseries' outdir = os.path.join('plots', data_id_str, datatype, var) ga.save_timeseries_figure( cube_list, output_dir=outdir, alpha=0.7, start_time=start_time, end_time=end_time, time_extent='intersection' ) except Exception: pass
[ 37811, 198, 12050, 640, 2168, 21528, 13, 198, 37811, 198, 11748, 9426, 1734, 355, 31986, 198, 11748, 4818, 8079, 198, 198, 7890, 62, 312, 62, 4868, 796, 685, 198, 220, 220, 220, 705, 11215, 5232, 12, 77, 17034, 3256, 198, 220, 220, 220, 705, 5143, 8298, 3256, 198, 220, 220, 220, 705, 5143, 21601, 3256, 198, 60, 198, 7785, 62, 4868, 796, 37250, 82, 2768, 3256, 705, 29510, 20520, 198, 198, 9688, 62, 2435, 796, 4818, 8079, 13, 19608, 8079, 7, 5304, 11, 718, 11, 352, 8, 198, 437, 62, 2435, 796, 4818, 8079, 13, 19608, 8079, 7, 7908, 11, 767, 11, 352, 8, 198, 198, 1640, 1401, 287, 1401, 62, 4868, 25, 198, 220, 220, 220, 27039, 62, 4868, 796, 17635, 198, 220, 220, 220, 329, 1366, 62, 312, 287, 1366, 62, 312, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 31986, 13, 961, 62, 19608, 292, 316, 7, 7890, 62, 312, 11, 705, 22355, 10640, 3256, 1401, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27039, 62, 4868, 13, 33295, 7, 67, 8, 628, 220, 220, 220, 1303, 1064, 14729, 198, 220, 220, 220, 14729, 796, 31986, 13, 19796, 62, 17529, 62, 79, 3468, 46491, 19608, 292, 316, 62, 4868, 8, 628, 220, 220, 220, 329, 1994, 287, 14729, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23441, 62, 4868, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1366, 62, 312, 287, 1366, 62, 312, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 62, 312, 287, 14729, 58, 2539, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23441, 796, 14729, 58, 2539, 7131, 7890, 62, 312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23441, 62, 4868, 13, 33295, 7, 40296, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 312, 62, 2536, 796, 705, 12, 4458, 22179, 7, 7890, 62, 312, 62, 4868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 265, 2981, 796, 705, 22355, 10640, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 15908, 796, 28686, 13, 6978, 13, 22179, 10786, 489, 1747, 3256, 1366, 62, 312, 62, 2536, 11, 4818, 265, 2981, 11, 1401, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31986, 13, 21928, 62, 22355, 10640, 62, 26875, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23441, 62, 4868, 11, 5072, 62, 15908, 28, 448, 15908, 11, 17130, 28, 15, 13, 22, 11, 923, 62, 2435, 28, 9688, 62, 2435, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 62, 2435, 28, 437, 62, 2435, 11, 640, 62, 2302, 298, 11639, 3849, 5458, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198 ]
1.948944
568
import numpy as np import copy from . import cv #TODO need to refactaring
[ 11748, 299, 32152, 355, 45941, 198, 11748, 4866, 198, 198, 6738, 764, 1330, 269, 85, 198, 198, 2, 51, 3727, 46, 761, 284, 1006, 529, 1723 ]
2.884615
26
""" three-layers logistic regression model for not-MNIST dataset Got ~ 87% accuracy. not-MNIST: http://yaroslavvb. blogspot. it/2011/09/notmnist-dataset.html author: ANDY ([email protected]) """ import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' import numpy as np import tensorflow as tf import time import utils # Define paramaters for the model learning_rate = 0.01 batch_size = 128 n_epochs = 50 n_train = 60000 n_test = 10000 # Step 1: Read in data not_mnist_folder = "../../examples/data/not-mnist" # I download the data manually and save into respective non-mnist_folder # use utils.download_mnist(not_mnist_folder) train, val, test = utils.read_mnist(not_mnist_folder, flatten=True) # Step 2: Create datasets and iterator # create training Dataset and batch it train_data = tf.data.Dataset.from_tensor_slices(train) train_data = train_data.shuffle(10000) # if you want to shuffle your data train_data = train_data.batch(batch_size) # create testing Dataset and batch it test_data = tf.data.Dataset.from_tensor_slices(test) test_data = test_data.batch(batch_size) # create one iterator and initialize it with different datasets iterator = tf.data.Iterator.from_structure(train_data.output_types, train_data.output_shapes) img, label = iterator.get_next() train_init = iterator.make_initializer(train_data) # initializer for train_data test_init = iterator.make_initializer(test_data) # initializer for train_data # Step 3: create weights and bias # weights are initialized to random variables with mean of 0, stddev of 0.01 # biases are initialized to 0 # shape of w1 --> (784,256) # shape of b1 --> (1,256) # shape of w2 --> (256,128) # shape of b2 --> (1,128) # shape of w3 --> (128,10) # shape of b3 --> (1,10) w1 = tf.get_variable(name="weight1", shape=[784, 256], initializer=tf.random_normal_initializer()) b1 = tf.get_variable(name="bias1", shape=[1, 256], initializer=tf.zeros_initializer()) w2 = tf.get_variable(name="weight2", shape=[256, 128], initializer=tf.random_normal_initializer()) b2 = tf.get_variable(name="bias2", shape=[1, 128], initializer=tf.zeros_initializer()) w3 = tf.get_variable(name="weight3", shape=[128, 10], initializer=tf.random_normal_initializer()) b3 = tf.get_variable(name="bias3", shape=[1, 10], initializer=tf.zeros_initializer()) # Step 4: build model # the model that returns the logits. # this logits will be later passed through softmax layer hidden_layer1 = tf.matmul(img, w1) + b1 hidden_layer2 = tf.matmul(hidden_layer1, w2) + b2 logits = tf.matmul(hidden_layer2, w3) + b3 # Step 5: define loss function # use cross entropy of softmax of logits as the loss function entropy = tf.nn.softmax_cross_entropy_with_logits_v2(labels=label, logits=logits, name="entopy") loss = tf.reduce_mean(entropy, name="loss") # Step 6: define optimizer # using Adamn Optimizer with pre-defined learning rate to minimize loss optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(loss) # Step 7: calculate accuracy with test set preds = tf.nn.softmax(logits) correct_preds = tf.equal(tf.argmax(preds, 1), tf.argmax(label, 1)) accuracy = tf.reduce_sum(tf.cast(correct_preds, tf.float32)) writer = tf.summary.FileWriter('../../examples/graphs/not-mnist', tf.get_default_graph()) with tf.Session() as sess: start_time = time.time() sess.run(tf.global_variables_initializer()) # train the model n_epochs times for i in range(n_epochs): sess.run(train_init) # drawing samples from train_data total_loss = 0 n_batches = 0 try: while True: _, l = sess.run([optimizer, loss]) total_loss += l n_batches += 1 except tf.errors.OutOfRangeError: pass print('Average loss epoch {0}: {1}'.format(i, total_loss / n_batches)) print('Total time: {0} seconds'.format(time.time() - start_time)) # test the model sess.run(test_init) # drawing samples from test_data total_correct_preds = 0 try: while True: accuracy_batch = sess.run(accuracy) total_correct_preds += accuracy_batch except tf.errors.OutOfRangeError: pass print('Accuracy {0}'.format(total_correct_preds / n_test)) writer.close()
[ 37811, 198, 197, 15542, 12, 75, 6962, 2604, 2569, 20683, 2746, 329, 407, 12, 39764, 8808, 27039, 198, 197, 30074, 5299, 10083, 4, 9922, 13, 198, 197, 1662, 12, 39764, 8808, 25, 2638, 1378, 88, 283, 26388, 85, 65, 13, 4130, 20485, 13, 340, 14, 9804, 14, 2931, 14, 1662, 10295, 396, 12, 19608, 292, 316, 13, 6494, 198, 197, 9800, 25, 5357, 56, 357, 10757, 24, 22579, 940, 25540, 31, 14816, 13, 785, 8, 198, 198, 37811, 198, 11748, 28686, 198, 198, 418, 13, 268, 2268, 17816, 10234, 62, 8697, 47, 62, 23678, 62, 25294, 62, 2538, 18697, 20520, 796, 705, 17, 6, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 640, 198, 198, 11748, 3384, 4487, 198, 198, 2, 2896, 500, 5772, 8605, 329, 262, 2746, 198, 40684, 62, 4873, 796, 657, 13, 486, 198, 43501, 62, 7857, 796, 13108, 198, 77, 62, 538, 5374, 82, 796, 2026, 198, 77, 62, 27432, 796, 718, 2388, 198, 77, 62, 9288, 796, 33028, 198, 198, 2, 5012, 352, 25, 4149, 287, 1366, 198, 1662, 62, 10295, 396, 62, 43551, 796, 366, 40720, 40720, 1069, 12629, 14, 7890, 14, 1662, 12, 10295, 396, 1, 198, 2, 314, 4321, 262, 1366, 14500, 290, 3613, 656, 11756, 1729, 12, 10295, 396, 62, 43551, 198, 198, 2, 779, 3384, 4487, 13, 15002, 62, 10295, 396, 7, 1662, 62, 10295, 396, 62, 43551, 8, 198, 27432, 11, 1188, 11, 1332, 796, 3384, 4487, 13, 961, 62, 10295, 396, 7, 1662, 62, 10295, 396, 62, 43551, 11, 27172, 268, 28, 17821, 8, 198, 198, 2, 5012, 362, 25, 13610, 40522, 290, 41313, 198, 2, 2251, 3047, 16092, 292, 316, 290, 15458, 340, 198, 27432, 62, 7890, 796, 48700, 13, 7890, 13, 27354, 292, 316, 13, 6738, 62, 83, 22854, 62, 82, 677, 274, 7, 27432, 8, 198, 27432, 62, 7890, 796, 4512, 62, 7890, 13, 1477, 18137, 7, 49388, 8, 220, 1303, 611, 345, 765, 284, 36273, 534, 1366, 198, 27432, 62, 7890, 796, 4512, 62, 7890, 13, 43501, 7, 43501, 62, 7857, 8, 198, 198, 2, 2251, 4856, 16092, 292, 316, 290, 15458, 340, 198, 9288, 62, 7890, 796, 48700, 13, 7890, 13, 27354, 292, 316, 13, 6738, 62, 83, 22854, 62, 82, 677, 274, 7, 9288, 8, 198, 9288, 62, 7890, 796, 1332, 62, 7890, 13, 43501, 7, 43501, 62, 7857, 8, 198, 198, 2, 2251, 530, 41313, 290, 41216, 340, 351, 1180, 40522, 198, 48727, 796, 48700, 13, 7890, 13, 37787, 13, 6738, 62, 301, 5620, 7, 27432, 62, 7890, 13, 22915, 62, 19199, 11, 198, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 220, 220, 4512, 62, 7890, 13, 22915, 62, 1477, 7916, 8, 198, 9600, 11, 6167, 796, 41313, 13, 1136, 62, 19545, 3419, 198, 198, 27432, 62, 15003, 796, 41313, 13, 15883, 62, 36733, 7509, 7, 27432, 62, 7890, 8, 220, 1303, 4238, 7509, 329, 4512, 62, 7890, 198, 9288, 62, 15003, 796, 41313, 13, 15883, 62, 36733, 7509, 7, 9288, 62, 7890, 8, 220, 1303, 4238, 7509, 329, 4512, 62, 7890, 198, 198, 2, 5012, 513, 25, 2251, 19590, 290, 10690, 198, 2, 19590, 389, 23224, 284, 4738, 9633, 351, 1612, 286, 657, 11, 336, 1860, 1990, 286, 657, 13, 486, 198, 2, 29275, 389, 23224, 284, 657, 198, 198, 2, 5485, 286, 266, 16, 14610, 357, 37688, 11, 11645, 8, 198, 2, 5485, 286, 275, 16, 14610, 357, 16, 11, 11645, 8, 198, 2, 5485, 286, 266, 17, 14610, 357, 11645, 11, 12762, 8, 198, 2, 5485, 286, 275, 17, 14610, 357, 16, 11, 12762, 8, 198, 2, 5485, 286, 266, 18, 14610, 357, 12762, 11, 940, 8, 198, 2, 5485, 286, 275, 18, 14610, 357, 16, 11, 940, 8, 628, 198, 86, 16, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 6551, 16, 1600, 5485, 41888, 37688, 11, 17759, 4357, 4238, 7509, 28, 27110, 13, 25120, 62, 11265, 62, 36733, 7509, 28955, 198, 65, 16, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 65, 4448, 16, 1600, 5485, 41888, 16, 11, 17759, 4357, 4238, 7509, 28, 27110, 13, 9107, 418, 62, 36733, 7509, 28955, 198, 86, 17, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 6551, 17, 1600, 5485, 41888, 11645, 11, 13108, 4357, 4238, 7509, 28, 27110, 13, 25120, 62, 11265, 62, 36733, 7509, 28955, 198, 65, 17, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 65, 4448, 17, 1600, 5485, 41888, 16, 11, 13108, 4357, 4238, 7509, 28, 27110, 13, 9107, 418, 62, 36733, 7509, 28955, 198, 86, 18, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 6551, 18, 1600, 5485, 41888, 12762, 11, 838, 4357, 4238, 7509, 28, 27110, 13, 25120, 62, 11265, 62, 36733, 7509, 28955, 198, 65, 18, 796, 48700, 13, 1136, 62, 45286, 7, 3672, 2625, 65, 4448, 18, 1600, 5485, 41888, 16, 11, 838, 4357, 4238, 7509, 28, 27110, 13, 9107, 418, 62, 36733, 7509, 28955, 198, 198, 2, 5012, 604, 25, 1382, 2746, 198, 2, 262, 2746, 326, 5860, 262, 2604, 896, 13, 198, 2, 428, 2604, 896, 481, 307, 1568, 3804, 832, 2705, 9806, 7679, 198, 30342, 62, 29289, 16, 796, 48700, 13, 6759, 76, 377, 7, 9600, 11, 266, 16, 8, 1343, 275, 16, 198, 30342, 62, 29289, 17, 796, 48700, 13, 6759, 76, 377, 7, 30342, 62, 29289, 16, 11, 266, 17, 8, 1343, 275, 17, 198, 6404, 896, 796, 48700, 13, 6759, 76, 377, 7, 30342, 62, 29289, 17, 11, 266, 18, 8, 1343, 275, 18, 198, 198, 2, 5012, 642, 25, 8160, 2994, 2163, 198, 2, 779, 3272, 40709, 286, 2705, 9806, 286, 2604, 896, 355, 262, 2994, 2163, 198, 298, 28338, 796, 48700, 13, 20471, 13, 4215, 9806, 62, 19692, 62, 298, 28338, 62, 4480, 62, 6404, 896, 62, 85, 17, 7, 23912, 1424, 28, 18242, 11, 2604, 896, 28, 6404, 896, 11, 1438, 2625, 298, 11081, 4943, 198, 22462, 796, 48700, 13, 445, 7234, 62, 32604, 7, 298, 28338, 11, 1438, 2625, 22462, 4943, 198, 198, 2, 5012, 718, 25, 8160, 6436, 7509, 198, 2, 1262, 7244, 77, 30011, 7509, 351, 662, 12, 23211, 4673, 2494, 284, 17775, 2994, 198, 40085, 7509, 796, 48700, 13, 27432, 13, 23159, 27871, 320, 7509, 7, 40684, 62, 4873, 28, 40684, 62, 4873, 737, 1084, 48439, 7, 22462, 8, 198, 198, 2, 5012, 767, 25, 15284, 9922, 351, 1332, 900, 198, 28764, 82, 796, 48700, 13, 20471, 13, 4215, 9806, 7, 6404, 896, 8, 198, 30283, 62, 28764, 82, 796, 48700, 13, 40496, 7, 27110, 13, 853, 9806, 7, 28764, 82, 11, 352, 828, 48700, 13, 853, 9806, 7, 18242, 11, 352, 4008, 198, 4134, 23843, 796, 48700, 13, 445, 7234, 62, 16345, 7, 27110, 13, 2701, 7, 30283, 62, 28764, 82, 11, 48700, 13, 22468, 2624, 4008, 198, 198, 16002, 796, 48700, 13, 49736, 13, 8979, 34379, 10786, 40720, 40720, 1069, 12629, 14, 34960, 82, 14, 1662, 12, 10295, 396, 3256, 48700, 13, 1136, 62, 12286, 62, 34960, 28955, 198, 4480, 48700, 13, 36044, 3419, 355, 264, 408, 25, 198, 197, 9688, 62, 2435, 796, 640, 13, 2435, 3419, 198, 197, 82, 408, 13, 5143, 7, 27110, 13, 20541, 62, 25641, 2977, 62, 36733, 7509, 28955, 628, 197, 2, 4512, 262, 2746, 299, 62, 538, 5374, 82, 1661, 198, 197, 1640, 1312, 287, 2837, 7, 77, 62, 538, 5374, 82, 2599, 198, 197, 197, 82, 408, 13, 5143, 7, 27432, 62, 15003, 8, 220, 1303, 8263, 8405, 422, 4512, 62, 7890, 198, 197, 197, 23350, 62, 22462, 796, 657, 198, 197, 197, 77, 62, 8664, 2052, 796, 657, 198, 197, 197, 28311, 25, 198, 197, 197, 197, 4514, 6407, 25, 198, 197, 197, 197, 197, 62, 11, 300, 796, 264, 408, 13, 5143, 26933, 40085, 7509, 11, 2994, 12962, 198, 197, 197, 197, 197, 23350, 62, 22462, 15853, 300, 198, 197, 197, 197, 197, 77, 62, 8664, 2052, 15853, 352, 198, 197, 197, 16341, 48700, 13, 48277, 13, 7975, 5189, 17257, 12331, 25, 198, 197, 197, 197, 6603, 198, 197, 197, 4798, 10786, 26287, 2994, 36835, 1391, 15, 38362, 1391, 16, 92, 4458, 18982, 7, 72, 11, 2472, 62, 22462, 1220, 299, 62, 8664, 2052, 4008, 198, 197, 4798, 10786, 14957, 640, 25, 1391, 15, 92, 4201, 4458, 18982, 7, 2435, 13, 2435, 3419, 532, 923, 62, 2435, 4008, 628, 197, 2, 1332, 262, 2746, 198, 197, 82, 408, 13, 5143, 7, 9288, 62, 15003, 8, 220, 1303, 8263, 8405, 422, 1332, 62, 7890, 198, 197, 23350, 62, 30283, 62, 28764, 82, 796, 657, 198, 197, 28311, 25, 198, 197, 197, 4514, 6407, 25, 198, 197, 197, 197, 4134, 23843, 62, 43501, 796, 264, 408, 13, 5143, 7, 4134, 23843, 8, 198, 197, 197, 197, 23350, 62, 30283, 62, 28764, 82, 15853, 9922, 62, 43501, 198, 197, 16341, 48700, 13, 48277, 13, 7975, 5189, 17257, 12331, 25, 198, 197, 197, 6603, 628, 197, 4798, 10786, 17320, 23843, 1391, 15, 92, 4458, 18982, 7, 23350, 62, 30283, 62, 28764, 82, 1220, 299, 62, 9288, 4008, 198, 16002, 13, 19836, 3419, 198 ]
2.751333
1,500
import click from collections import defaultdict import importlib import logging import redis import structlog from .redis_scripts import RedisScripts from ._internal import * from .exceptions import * from .retry import * from .schedule import * from .task import Task from .worker import Worker __all__ = ['TaskTiger', 'Worker', 'Task', # Exceptions 'JobTimeoutException', 'RetryException', 'StopRetry', 'TaskImportError', 'TaskNotFound', # Retry methods 'fixed', 'linear', 'exponential', # Schedules 'periodic', ] """ Redis keys: Set of all queues that contain items in the given state. SET <prefix>:queued SET <prefix>:active SET <prefix>:error SET <prefix>:scheduled Serialized task for the given task ID. STRING <prefix>:task:<task_id> List of (failed) task executions LIST <prefix>:task:<task_id>:executions Task IDs waiting in the given queue to be processed, scored by the time the task was queued. ZSET <prefix>:queued:<queue> Task IDs being processed in the specific queue, scored by the time processing started. ZSET <prefix>:active:<queue> Task IDs that failed, scored by the time processing failed. ZSET <prefix>:error:<queue> Task IDs that are scheduled to be executed at a specific time, scored by the time they should be executed. ZSET <prefix>:scheduled:<queue> Channel that receives the queue name as a message whenever a task is queued. CHANNEL <prefix>:activity Task locks STRING <prefix>:lock:<lock_hash> Queue periodic tasks lock STRING <prefix>:queue_periodic_tasks_lock """ @click.command() @click.option('-q', '--queues', help='If specified, only the given queue(s) ' 'are processed. Multiple queues can be ' 'separated by comma.') @click.option('-m', '--module', help="Module(s) to import when launching the " "worker. This improves task performance " "since the module doesn't have to be " "reimported every time a task is forked. " "Multiple modules can be separated by " "comma.") @click.option('-e', '--exclude-queues', help='If specified, exclude the given ' 'queue(s) from processing. ' 'Multiple queues can be ' 'separated by comma.') @click.option('-h', '--host', help='Redis server hostname') @click.option('-p', '--port', help='Redis server port') @click.option('-a', '--password', help='Redis password') @click.option('-n', '--db', help='Redis database number') @click.pass_context if __name__ == '__main__': run_worker()
[ 11748, 3904, 198, 6738, 17268, 1330, 4277, 11600, 198, 11748, 1330, 8019, 198, 11748, 18931, 198, 11748, 2266, 271, 198, 11748, 2878, 6404, 198, 198, 6738, 764, 445, 271, 62, 46521, 1330, 2297, 271, 7391, 82, 198, 198, 6738, 47540, 32538, 1330, 1635, 198, 6738, 764, 1069, 11755, 1330, 1635, 198, 6738, 764, 1186, 563, 1330, 1635, 198, 6738, 764, 15952, 5950, 1330, 1635, 198, 6738, 764, 35943, 1330, 15941, 198, 6738, 764, 28816, 1330, 35412, 198, 198, 834, 439, 834, 796, 37250, 25714, 51, 8254, 3256, 705, 12468, 263, 3256, 705, 25714, 3256, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1475, 11755, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33308, 48031, 16922, 3256, 705, 9781, 563, 16922, 3256, 705, 19485, 9781, 563, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25714, 20939, 12331, 3256, 705, 25714, 3673, 21077, 3256, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4990, 563, 5050, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 34021, 3256, 705, 29127, 3256, 705, 11201, 35470, 3256, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 27774, 5028, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41007, 291, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 198, 37811, 198, 7738, 271, 8251, 25, 198, 198, 7248, 286, 477, 43359, 326, 3994, 3709, 287, 262, 1813, 1181, 13, 198, 28480, 1279, 40290, 31175, 4188, 1739, 198, 28480, 1279, 40290, 31175, 5275, 198, 28480, 1279, 40290, 31175, 18224, 198, 28480, 1279, 40290, 31175, 1416, 704, 6309, 198, 198, 32634, 1143, 4876, 329, 262, 1813, 4876, 4522, 13, 198, 18601, 2751, 1279, 40290, 31175, 35943, 25, 27, 35943, 62, 312, 29, 198, 198, 8053, 286, 357, 47904, 8, 4876, 30632, 198, 45849, 1279, 40290, 31175, 35943, 25, 27, 35943, 62, 312, 31175, 18558, 3508, 198, 198, 25714, 32373, 4953, 287, 262, 1813, 16834, 284, 307, 13686, 11, 7781, 416, 262, 640, 262, 198, 35943, 373, 8358, 1739, 13, 198, 57, 28480, 1279, 40290, 31175, 4188, 1739, 25, 27, 36560, 29, 198, 198, 25714, 32373, 852, 13686, 287, 262, 2176, 16834, 11, 7781, 416, 262, 640, 7587, 198, 46981, 13, 198, 57, 28480, 1279, 40290, 31175, 5275, 25, 27, 36560, 29, 198, 198, 25714, 32373, 326, 4054, 11, 7781, 416, 262, 640, 7587, 4054, 13, 198, 57, 28480, 1279, 40290, 31175, 18224, 25, 27, 36560, 29, 198, 198, 25714, 32373, 326, 389, 7530, 284, 307, 10945, 379, 257, 2176, 640, 11, 7781, 416, 262, 198, 2435, 484, 815, 307, 10945, 13, 198, 57, 28480, 1279, 40290, 31175, 1416, 704, 6309, 25, 27, 36560, 29, 198, 198, 29239, 326, 11583, 262, 16834, 1438, 355, 257, 3275, 8797, 257, 4876, 318, 8358, 1739, 13, 198, 3398, 22846, 3698, 1279, 40290, 31175, 21797, 198, 198, 25714, 19253, 198, 18601, 2751, 1279, 40290, 31175, 5354, 25, 27, 5354, 62, 17831, 29, 198, 198, 34991, 27458, 8861, 5793, 198, 18601, 2751, 1279, 40290, 31175, 36560, 62, 41007, 291, 62, 83, 6791, 62, 5354, 198, 37811, 198, 198, 31, 12976, 13, 21812, 3419, 198, 31, 12976, 13, 18076, 10786, 12, 80, 3256, 705, 438, 4188, 947, 3256, 1037, 11639, 1532, 7368, 11, 691, 262, 1813, 16834, 7, 82, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 533, 13686, 13, 20401, 43359, 460, 307, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25512, 515, 416, 39650, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 12, 76, 3256, 705, 438, 21412, 3256, 1037, 2625, 26796, 7, 82, 8, 284, 1330, 618, 13925, 262, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28816, 13, 770, 19575, 4876, 2854, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20777, 262, 8265, 1595, 470, 423, 284, 307, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 260, 320, 9213, 790, 640, 257, 4876, 318, 329, 9091, 13, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 31217, 13103, 460, 307, 11266, 416, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 785, 2611, 19570, 198, 31, 12976, 13, 18076, 10786, 12, 68, 3256, 705, 438, 1069, 9152, 12, 4188, 947, 3256, 1037, 11639, 1532, 7368, 11, 19607, 262, 1813, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 36560, 7, 82, 8, 422, 7587, 13, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31217, 43359, 460, 307, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25512, 515, 416, 39650, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 12, 71, 3256, 705, 438, 4774, 3256, 1037, 11639, 7738, 271, 4382, 2583, 3672, 11537, 198, 31, 12976, 13, 18076, 10786, 12, 79, 3256, 705, 438, 634, 3256, 1037, 11639, 7738, 271, 4382, 2493, 11537, 198, 31, 12976, 13, 18076, 10786, 12, 64, 3256, 705, 438, 28712, 3256, 1037, 11639, 7738, 271, 9206, 11537, 198, 31, 12976, 13, 18076, 10786, 12, 77, 3256, 705, 438, 9945, 3256, 1037, 11639, 7738, 271, 6831, 1271, 11537, 198, 31, 12976, 13, 6603, 62, 22866, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1057, 62, 28816, 3419, 198 ]
2.405542
1,191
# auxiliary from MDAOfabric.accessories import * # solvers from MDAOfabric.solvers import *
[ 2, 37419, 198, 6738, 337, 5631, 5189, 397, 1173, 13, 15526, 1749, 1330, 1635, 198, 198, 2, 1540, 690, 198, 6738, 337, 5631, 5189, 397, 1173, 13, 34453, 690, 1330, 1635, 198 ]
2.90625
32
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'AnalysisPlotWidgetTemplate.ui' # # Created: Mon Aug 16 15:31:49 2010 # by: PyQt4 UI code generator 4.5.4 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui from acq4.pyqtgraph.PlotWidget import PlotWidget
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 5178, 7822, 7560, 422, 3555, 334, 72, 2393, 705, 32750, 43328, 38300, 30800, 13, 9019, 6, 198, 2, 198, 2, 15622, 25, 2892, 2447, 1467, 1315, 25, 3132, 25, 2920, 3050, 198, 2, 220, 220, 220, 220, 220, 416, 25, 9485, 48, 83, 19, 12454, 2438, 17301, 604, 13, 20, 13, 19, 198, 2, 198, 2, 39410, 0, 1439, 2458, 925, 287, 428, 2393, 481, 307, 2626, 0, 198, 198, 6738, 9485, 48, 83, 19, 1330, 33734, 14055, 11, 33734, 8205, 72, 198, 198, 6738, 936, 80, 19, 13, 9078, 80, 25297, 1470, 13, 43328, 38300, 1330, 28114, 38300, 198 ]
2.836207
116
r""" Balanced Incomplete Block Designs (BIBD) This module gathers everything related to Balanced Incomplete Block Designs. One can build a BIBD (or check that it can be built) with :func:`balanced_incomplete_block_design`:: sage: BIBD = designs.balanced_incomplete_block_design(7,3) In particular, Sage can build a `(v,k,1)`-BIBD when one exists for all `k\leq 5`. The following functions are available: .. csv-table:: :class: contentstable :widths: 30, 70 :delim: | :func:`balanced_incomplete_block_design` | Return a BIBD of parameters `v,k`. :func:`BIBD_from_TD` | Return a BIBD through TD-based constructions. :func:`BIBD_from_difference_family` | Return the BIBD associated to the difference family ``D`` on the group ``G``. :func:`BIBD_from_PBD` | Return a `(v,k,1)`-BIBD from a `(r,K)`-PBD where `r=(v-1)/(k-1)`. :func:`PBD_from_TD` | Return a `(kt,\{k,t\})`-PBD if `u=0` and a `(kt+u,\{k,k+1,t,u\})`-PBD otherwise. :func:`steiner_triple_system` | Return a Steiner Triple System. :func:`v_5_1_BIBD` | Return a `(v,5,1)`-BIBD. :func:`v_4_1_BIBD` | Return a `(v,4,1)`-BIBD. :func:`PBD_4_5_8_9_12` | Return a `(v,\{4,5,8,9,12\})`-PBD on `v` elements. :func:`BIBD_5q_5_for_q_prime_power` | Return a `(5q,5,1)`-BIBD with `q\equiv 1\pmod 4` a prime power. **Construction of BIBD when** `k=4` Decompositions of `K_v` into `K_4` (i.e. `(v,4,1)`-BIBD) are built following Douglas Stinson's construction as presented in [Stinson2004]_ page 167. It is based upon the construction of `(v\{4,5,8,9,12\})`-PBD (see the doc of :func:`PBD_4_5_8_9_12`), knowing that a `(v\{4,5,8,9,12\})`-PBD on `v` points can always be transformed into a `((k-1)v+1,4,1)`-BIBD, which covers all possible cases of `(v,4,1)`-BIBD. **Construction of BIBD when** `k=5` Decompositions of `K_v` into `K_4` (i.e. `(v,4,1)`-BIBD) are built following Clayton Smith's construction [ClaytonSmith]_. .. [ClaytonSmith] On the existence of `(v,5,1)`-BIBD. http://www.argilo.net/files/bibd.pdf Clayton Smith Functions --------- """ from sage.categories.sets_cat import EmptySetError from sage.misc.unknown import Unknown from design_catalog import transversal_design from block_design import BlockDesign from sage.rings.arith import binomial, is_prime_power from group_divisible_designs import GroupDivisibleDesign from designs_pyx import is_pairwise_balanced_design def balanced_incomplete_block_design(v, k, existence=False, use_LJCR=False): r""" Return a BIBD of parameters `v,k`. A Balanced Incomplete Block Design of parameters `v,k` is a collection `\mathcal C` of `k`-subsets of `V=\{0,\dots,v-1\}` such that for any two distinct elements `x,y\in V` there is a unique element `S\in \mathcal C` such that `x,y\in S`. More general definitions sometimes involve a `\lambda` parameter, and we assume here that `\lambda=1`. For more information on BIBD, see the :wikipedia:`corresponding Wikipedia entry <Block_design#Definition_of_a_BIBD_.28or_2-design.29>`. INPUT: - ``v,k`` (integers) - ``existence`` (boolean) -- instead of building the design, return: - ``True`` -- meaning that Sage knows how to build the design - ``Unknown`` -- meaning that Sage does not know how to build the design, but that the design may exist (see :mod:`sage.misc.unknown`). - ``False`` -- meaning that the design does not exist. - ``use_LJCR`` (boolean) -- whether to query the La Jolla Covering Repository for the design when Sage does not know how to build it (see :func:`~sage.combinat.designs.covering_design.best_known_covering_design_www`). This requires internet. .. SEEALSO:: * :func:`steiner_triple_system` * :func:`v_4_1_BIBD` * :func:`v_5_1_BIBD` TODO: * Implement other constructions from the Handbook of Combinatorial Designs. EXAMPLES:: sage: designs.balanced_incomplete_block_design(7, 3).blocks() [[0, 1, 3], [0, 2, 4], [0, 5, 6], [1, 2, 6], [1, 4, 5], [2, 3, 5], [3, 4, 6]] sage: B = designs.balanced_incomplete_block_design(66, 6, use_LJCR=True) # optional - internet sage: B # optional - internet Incidence structure with 66 points and 143 blocks sage: B.blocks() # optional - internet [[0, 1, 2, 3, 4, 65], [0, 5, 24, 25, 39, 57], [0, 6, 27, 38, 44, 55], ... sage: designs.balanced_incomplete_block_design(66, 6, use_LJCR=True) # optional - internet Incidence structure with 66 points and 143 blocks sage: designs.balanced_incomplete_block_design(216, 6) Traceback (most recent call last): ... NotImplementedError: I don't know how to build a (216,6,1)-BIBD! TESTS:: sage: designs.balanced_incomplete_block_design(85,5,existence=True) True sage: _ = designs.balanced_incomplete_block_design(85,5) A BIBD from a Finite Projective Plane:: sage: _ = designs.balanced_incomplete_block_design(21,5) Some trivial BIBD:: sage: designs.balanced_incomplete_block_design(10,10) (10,10,1)-Balanced Incomplete Block Design sage: designs.balanced_incomplete_block_design(1,10) (1,0,1)-Balanced Incomplete Block Design Existence of BIBD with `k=3,4,5`:: sage: [v for v in xrange(50) if designs.balanced_incomplete_block_design(v,3,existence=True)] [1, 3, 7, 9, 13, 15, 19, 21, 25, 27, 31, 33, 37, 39, 43, 45, 49] sage: [v for v in xrange(100) if designs.balanced_incomplete_block_design(v,4,existence=True)] [1, 4, 13, 16, 25, 28, 37, 40, 49, 52, 61, 64, 73, 76, 85, 88, 97] sage: [v for v in xrange(150) if designs.balanced_incomplete_block_design(v,5,existence=True)] [1, 5, 21, 25, 41, 45, 61, 65, 81, 85, 101, 105, 121, 125, 141, 145] For `k > 5` there are currently very few constructions:: sage: [v for v in xrange(300) if designs.balanced_incomplete_block_design(v,6,existence=True) is True] [1, 6, 31, 66, 76, 91, 96, 106, 111, 121, 126, 136, 141, 151, 156, 171, 181, 186, 196, 201, 211, 241, 271] sage: [v for v in xrange(300) if designs.balanced_incomplete_block_design(v,6,existence=True) is Unknown] [51, 61, 81, 166, 216, 226, 231, 246, 256, 261, 276, 286, 291] Here are some constructions with `k \geq 7` and `v` a prime power:: sage: designs.balanced_incomplete_block_design(169,7) (169,7,1)-Balanced Incomplete Block Design sage: designs.balanced_incomplete_block_design(617,8) (617,8,1)-Balanced Incomplete Block Design sage: designs.balanced_incomplete_block_design(433,9) (433,9,1)-Balanced Incomplete Block Design sage: designs.balanced_incomplete_block_design(1171,10) (1171,10,1)-Balanced Incomplete Block Design And we know some inexistence results:: sage: designs.balanced_incomplete_block_design(21,6,existence=True) False """ lmbd = 1 # Trivial BIBD if v == 1: if existence: return True return BalancedIncompleteBlockDesign(v, [], check=False) if k == v: if existence: return True return BalancedIncompleteBlockDesign(v, [range(v)], check=False, copy=False) # Non-existence of BIBD if (v < k or k < 2 or (v-1) % (k-1) != 0 or (v*(v-1)) % (k*(k-1)) != 0 or # From the Handbook of combinatorial designs: # # With lambda>1 other exceptions are # (15,5,2),(21,6,2),(22,7,2),(22,8,4). (k==6 and v in [36,46]) or (k==7 and v == 43) or # Fisher's inequality (v*(v-1))/(k*(k-1)) < v): if existence: return False raise EmptySetError("There exists no ({},{},{})-BIBD".format(v,k,lmbd)) if k == 2: if existence: return True from itertools import combinations return BalancedIncompleteBlockDesign(v, combinations(range(v),2), check=False, copy=True) if k == 3: if existence: return v%6 == 1 or v%6 == 3 return steiner_triple_system(v) if k == 4: if existence: return v%12 == 1 or v%12 == 4 return BalancedIncompleteBlockDesign(v, v_4_1_BIBD(v), copy=False) if k == 5: if existence: return v%20 == 1 or v%20 == 5 return BalancedIncompleteBlockDesign(v, v_5_1_BIBD(v), copy=False) from difference_family import difference_family from database import BIBD_constructions if (v,k,1) in BIBD_constructions: if existence: return True return BlockDesign(v,BIBD_constructions[(v,k,1)](), copy=False) if BIBD_from_arc_in_desarguesian_projective_plane(v,k,existence=True): if existence: return True B = BIBD_from_arc_in_desarguesian_projective_plane(v,k) return BalancedIncompleteBlockDesign(v, B, copy=False) if BIBD_from_TD(v,k,existence=True): if existence: return True return BalancedIncompleteBlockDesign(v, BIBD_from_TD(v,k), copy=False) if v == (k-1)**2+k and is_prime_power(k-1): if existence: return True from block_design import projective_plane return BalancedIncompleteBlockDesign(v, projective_plane(k-1),copy=False) if difference_family(v,k,existence=True): if existence: return True G,D = difference_family(v,k) return BalancedIncompleteBlockDesign(v, BIBD_from_difference_family(G,D,check=False), copy=False) if use_LJCR: from covering_design import best_known_covering_design_www B = best_known_covering_design_www(v,k,2) # Is it a BIBD or just a good covering ? expected_n_of_blocks = binomial(v,2)/binomial(k,2) if B.low_bd() > expected_n_of_blocks: if existence: return False raise EmptySetError("There exists no ({},{},{})-BIBD".format(v,k,lmbd)) B = B.incidence_structure() if B.num_blocks() == expected_n_of_blocks: if existence: return True else: return B if existence: return Unknown else: raise NotImplementedError("I don't know how to build a ({},{},1)-BIBD!".format(v,k)) def steiner_triple_system(n): r""" Return a Steiner Triple System A Steiner Triple System (STS) of a set `\{0,...,n-1\}` is a family `S` of 3-sets such that for any `i \not = j` there exists exactly one set of `S` in which they are both contained. It can alternatively be thought of as a factorization of the complete graph `K_n` with triangles. A Steiner Triple System of a `n`-set exists if and only if `n \equiv 1 \pmod 6` or `n \equiv 3 \pmod 6`, in which case one can be found through Bose's and Skolem's constructions, respectively [AndHonk97]_. INPUT: - ``n`` return a Steiner Triple System of `\{0,...,n-1\}` EXAMPLE: A Steiner Triple System on `9` elements :: sage: sts = designs.steiner_triple_system(9) sage: sts (9,3,1)-Balanced Incomplete Block Design sage: list(sts) [[0, 1, 5], [0, 2, 4], [0, 3, 6], [0, 7, 8], [1, 2, 3], [1, 4, 7], [1, 6, 8], [2, 5, 8], [2, 6, 7], [3, 4, 8], [3, 5, 7], [4, 5, 6]] As any pair of vertices is covered once, its parameters are :: sage: sts.is_t_design(return_parameters=True) (True, (2, 9, 3, 1)) An exception is raised for invalid values of ``n`` :: sage: designs.steiner_triple_system(10) Traceback (most recent call last): ... EmptySetError: Steiner triple systems only exist for n = 1 mod 6 or n = 3 mod 6 REFERENCE: .. [AndHonk97] A short course in Combinatorial Designs, Ian Anderson, Iiro Honkala, Internet Editions, Spring 1997, http://www.utu.fi/~honkala/designs.ps """ name = "Steiner Triple System on "+str(n)+" elements" if n%6 == 3: t = (n-3) // 6 Z = range(2*t+1) T = lambda x_y : x_y[0] + (2*t+1)*x_y[1] sts = [[(i,0),(i,1),(i,2)] for i in Z] + \ [[(i,k),(j,k),(((t+1)*(i+j)) % (2*t+1),(k+1)%3)] for k in range(3) for i in Z for j in Z if i != j] elif n%6 == 1: t = (n-1) // 6 N = range(2*t) T = lambda x_y : x_y[0]+x_y[1]*t*2 if x_y != (-1,-1) else n-1 L1 = lambda i,j : (i+j) % ((n-1)//3) L = lambda i,j : L1(i,j)//2 if L1(i,j)%2 == 0 else t+(L1(i,j)-1)//2 sts = [[(i,0),(i,1),(i,2)] for i in range(t)] + \ [[(-1,-1),(i,k),(i-t,(k+1) % 3)] for i in range(t,2*t) for k in [0,1,2]] + \ [[(i,k),(j,k),(L(i,j),(k+1) % 3)] for k in [0,1,2] for i in N for j in N if i < j] else: raise EmptySetError("Steiner triple systems only exist for n = 1 mod 6 or n = 3 mod 6") # apply T and remove duplicates sts = set(frozenset(T(xx) for xx in x) for x in sts) return BalancedIncompleteBlockDesign(n, sts, name=name,check=False) def BIBD_from_TD(v,k,existence=False): r""" Return a BIBD through TD-based constructions. INPUT: - ``v,k`` (integers) -- computes a `(v,k,1)`-BIBD. - ``existence`` (boolean) -- instead of building the design, return: - ``True`` -- meaning that Sage knows how to build the design - ``Unknown`` -- meaning that Sage does not know how to build the design, but that the design may exist (see :mod:`sage.misc.unknown`). - ``False`` -- meaning that the design does not exist. This method implements three constructions: - If there exists a `TD(k,v)` and a `(v,k,1)`-BIBD then there exists a `(kv,k,1)`-BIBD. The BIBD is obtained from all blocks of the `TD`, and from the blocks of the `(v,k,1)`-BIBDs defined over the `k` groups of the `TD`. - If there exists a `TD(k,v)` and a `(v+1,k,1)`-BIBD then there exists a `(kv+1,k,1)`-BIBD. The BIBD is obtained from all blocks of the `TD`, and from the blocks of the `(v+1,k,1)`-BIBDs defined over the sets `V_1\cup \infty,\dots,V_k\cup \infty` where the `V_1,\dots,V_k` are the groups of the TD. - If there exists a `TD(k,v)` and a `(v+k,k,1)`-BIBD then there exists a `(kv+k,k,1)`-BIBD. The BIBD is obtained from all blocks of the `TD`, and from the blocks of the `(v+k,k,1)`-BIBDs defined over the sets `V_1\cup \{\infty_1,\dots,\infty_k\},\dots,V_k\cup \{\infty_1,\dots,\infty_k\}` where the `V_1,\dots,V_k` are the groups of the TD. By making sure that all copies of the `(v+k,k,1)`-BIBD contain the block `\{\infty_1,\dots,\infty_k\}`, the result is also a BIBD. These constructions can be found in `<http://www.argilo.net/files/bibd.pdf>`_. EXAMPLES: First construction:: sage: from sage.combinat.designs.bibd import BIBD_from_TD sage: BIBD_from_TD(25,5,existence=True) True sage: _ = BlockDesign(25,BIBD_from_TD(25,5)) Second construction:: sage: from sage.combinat.designs.bibd import BIBD_from_TD sage: BIBD_from_TD(21,5,existence=True) True sage: _ = BlockDesign(21,BIBD_from_TD(21,5)) Third construction:: sage: from sage.combinat.designs.bibd import BIBD_from_TD sage: BIBD_from_TD(85,5,existence=True) True sage: _ = BlockDesign(85,BIBD_from_TD(85,5)) No idea:: sage: from sage.combinat.designs.bibd import BIBD_from_TD sage: BIBD_from_TD(20,5,existence=True) Unknown sage: BIBD_from_TD(20,5) Traceback (most recent call last): ... NotImplementedError: I do not know how to build a (20,5,1)-BIBD! """ # First construction if (v%k == 0 and balanced_incomplete_block_design(v//k,k,existence=True) and transversal_design(k,v//k,existence=True)): if existence: return True v = v//k BIBDvk = balanced_incomplete_block_design(v,k)._blocks TDkv = transversal_design(k,v,check=False) BIBD = TDkv._blocks for i in range(k): BIBD.extend([[x+i*v for x in B] for B in BIBDvk]) # Second construction elif ((v-1)%k == 0 and balanced_incomplete_block_design((v-1)//k+1,k,existence=True) and transversal_design(k,(v-1)//k,existence=True)): if existence: return True v = (v-1)//k BIBDv1k = balanced_incomplete_block_design(v+1,k)._blocks TDkv = transversal_design(k,v,check=False)._blocks inf = v*k BIBD = TDkv for i in range(k): BIBD.extend([[inf if x == v else x+i*v for x in B] for B in BIBDv1k]) # Third construction elif ((v-k)%k == 0 and balanced_incomplete_block_design((v-k)//k+k,k,existence=True) and transversal_design(k,(v-k)//k,existence=True)): if existence: return True v = (v-k)//k BIBDvpkk = balanced_incomplete_block_design(v+k,k) TDkv = transversal_design(k,v,check=False)._blocks inf = v*k BIBD = TDkv # makes sure that [v,...,v+k-1] is a block of BIBDvpkk. Then, we remove it. BIBDvpkk = _relabel_bibd(BIBDvpkk,v+k) BIBDvpkk = [B for B in BIBDvpkk if min(B) < v] for i in range(k): BIBD.extend([[(x-v)+inf if x >= v else x+i*v for x in B] for B in BIBDvpkk]) BIBD.append(range(k*v,v*k+k)) # No idea ... else: if existence: return Unknown else: raise NotImplementedError("I do not know how to build a ({},{},1)-BIBD!".format(v,k)) return BIBD def BIBD_from_difference_family(G, D, lambd=None, check=True): r""" Return the BIBD associated to the difference family ``D`` on the group ``G``. Let `G` be a group. A `(G,k,\lambda)`-*difference family* is a family `B = \{B_1,B_2,\ldots,B_b\}` of `k`-subsets of `G` such that for each element of `G \backslash \{0\}` there exists exactly `\lambda` pairs of elements `(x,y)`, `x` and `y` belonging to the same block, such that `x - y = g` (or x y^{-1} = g` in multiplicative notation). If `\{B_1, B_2, \ldots, B_b\}` is a `(G,k,\lambda)`-difference family then its set of translates `\{B_i \cdot g; i \in \{1,\ldots,b\}, g \in G\}` is a `(v,k,\lambda)`-BIBD where `v` is the cardinality of `G`. INPUT: - ``G`` - a finite additive Abelian group - ``D`` - a difference family on ``G`` (short blocks are allowed). - ``lambd`` - the `\lambda` parameter (optional, only used if ``check`` is ``True``) - ``check`` - whether or not we check the output (default: ``True``) EXAMPLES:: sage: G = Zmod(21) sage: D = [[0,1,4,14,16]] sage: print sorted(G(x-y) for x in D[0] for y in D[0] if x != y) [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] sage: from sage.combinat.designs.bibd import BIBD_from_difference_family sage: BIBD_from_difference_family(G, D) [[0, 1, 4, 14, 16], [1, 2, 5, 15, 17], [2, 3, 6, 16, 18], [3, 4, 7, 17, 19], [4, 5, 8, 18, 20], [5, 6, 9, 19, 0], [6, 7, 10, 20, 1], [7, 8, 11, 0, 2], [8, 9, 12, 1, 3], [9, 10, 13, 2, 4], [10, 11, 14, 3, 5], [11, 12, 15, 4, 6], [12, 13, 16, 5, 7], [13, 14, 17, 6, 8], [14, 15, 18, 7, 9], [15, 16, 19, 8, 10], [16, 17, 20, 9, 11], [17, 18, 0, 10, 12], [18, 19, 1, 11, 13], [19, 20, 2, 12, 14], [20, 0, 3, 13, 15]] """ from difference_family import group_law, block_stabilizer identity, mul, inv = group_law(G) bibd = [] Gset = set(G) p_to_i = {g:i for i,g in enumerate(Gset)} for b in D: b = [G(_) for _ in b] S = block_stabilizer(G,b) GG = Gset.copy() while GG: g = GG.pop() if S: GG.difference_update(mul(s,g) for s in S) bibd.append([p_to_i[mul(i,g)] for i in b]) if check: if lambd is None: k = len(bibd[0]) v = G.cardinality() lambd = (len(bibd) * k * (k-1)) // (v * (v-1)) assert is_pairwise_balanced_design(bibd, G.cardinality(), [len(D[0])], lambd=lambd) return bibd ################ # (v,4,1)-BIBD # ################ def v_4_1_BIBD(v, check=True): r""" Return a `(v,4,1)`-BIBD. A `(v,4,1)`-BIBD is an edge-decomposition of the complete graph `K_v` into copies of `K_4`. For more information, see :func:`balanced_incomplete_block_design`. It exists if and only if `v\equiv 1,4 \pmod {12}`. See page 167 of [Stinson2004]_ for the construction details. .. SEEALSO:: * :func:`balanced_incomplete_block_design` INPUT: - ``v`` (integer) -- number of points. - ``check`` (boolean) -- whether to check that output is correct before returning it. As this is expected to be useless (but we are cautious guys), you may want to disable it whenever you want speed. Set to ``True`` by default. EXAMPLES:: sage: from sage.combinat.designs.bibd import v_4_1_BIBD # long time sage: for n in range(13,100): # long time ....: if n%12 in [1,4]: # long time ....: _ = v_4_1_BIBD(n, check = True) # long time TESTS: Check that the `(25,4)` and `(37,4)`-difference family are available:: sage: assert designs.difference_family(25,4,existence=True) sage: _ = designs.difference_family(25,4) sage: assert designs.difference_family(37,4,existence=True) sage: _ = designs.difference_family(37,4) Check some larger `(v,4,1)`-BIBD (see :trac:`17557`):: sage: for v in range(400): # long time ....: if v%12 in [1,4]: # long time ....: _ = designs.balanced_incomplete_block_design(v,4) # long time """ k = 4 if v == 0: return [] if v <= 12 or v%12 not in [1,4]: raise EmptySetError("A K_4-decomposition of K_v exists iif v=2,4 mod 12, v>12 or v==0") # Step 1. Base cases. if v == 13: # note: this construction can also be obtained from difference_family from block_design import projective_plane return projective_plane(3)._blocks if v == 16: from block_design import AffineGeometryDesign from sage.rings.finite_rings.constructor import FiniteField return AffineGeometryDesign(2,1,FiniteField(4,'x'))._blocks if v == 25 or v == 37: from difference_family import difference_family G,D = difference_family(v,4) return BIBD_from_difference_family(G,D,check=False) if v == 28: return [[0, 1, 23, 26], [0, 2, 10, 11], [0, 3, 16, 18], [0, 4, 15, 20], [0, 5, 8, 9], [0, 6, 22, 25], [0, 7, 14, 21], [0, 12, 17, 27], [0, 13, 19, 24], [1, 2, 24, 27], [1, 3, 11, 12], [1, 4, 17, 19], [1, 5, 14, 16], [1, 6, 9, 10], [1, 7, 20, 25], [1, 8, 15, 22], [1, 13, 18, 21], [2, 3, 21, 25], [2, 4, 12, 13], [2, 5, 18, 20], [2, 6, 15, 17], [2, 7, 19, 22], [2, 8, 14, 26], [2, 9, 16, 23], [3, 4, 22, 26], [3, 5, 7, 13], [3, 6, 14, 19], [3, 8, 20, 23], [3, 9, 15, 27], [3, 10, 17, 24], [4, 5, 23, 27], [4, 6, 7, 8], [4, 9, 14, 24], [4, 10, 16, 21], [4, 11, 18, 25], [5, 6, 21, 24], [5, 10, 15, 25], [5, 11, 17, 22], [5, 12, 19, 26], [6, 11, 16, 26], [6, 12, 18, 23], [6, 13, 20, 27], [7, 9, 17, 18], [7, 10, 26, 27], [7, 11, 23, 24], [7, 12, 15, 16], [8, 10, 18, 19], [8, 11, 21, 27], [8, 12, 24, 25], [8, 13, 16, 17], [9, 11, 19, 20], [9, 12, 21, 22], [9, 13, 25, 26], [10, 12, 14, 20], [10, 13, 22, 23], [11, 13, 14, 15], [14, 17, 23, 25], [14, 18, 22, 27], [15, 18, 24, 26], [15, 19, 21, 23], [16, 19, 25, 27], [16, 20, 22, 24], [17, 20, 21, 26]] # Step 2 : this is function PBD_4_5_8_9_12 PBD = PBD_4_5_8_9_12((v-1)/(k-1),check=False) # Step 3 : Theorem 7.20 bibd = BIBD_from_PBD(PBD,v,k,check=False) if check: assert is_pairwise_balanced_design(bibd,v,[k]) return bibd def BIBD_from_PBD(PBD,v,k,check=True,base_cases={}): r""" Return a `(v,k,1)`-BIBD from a `(r,K)`-PBD where `r=(v-1)/(k-1)`. This is Theorem 7.20 from [Stinson2004]_. INPUT: - ``v,k`` -- integers. - ``PBD`` -- A PBD on `r=(v-1)/(k-1)` points, such that for any block of ``PBD`` of size `s` there must exist a `((k-1)s+1,k,1)`-BIBD. - ``check`` (boolean) -- whether to check that output is correct before returning it. As this is expected to be useless (but we are cautious guys), you may want to disable it whenever you want speed. Set to ``True`` by default. - ``base_cases`` -- caching system, for internal use. EXAMPLES:: sage: from sage.combinat.designs.bibd import PBD_4_5_8_9_12 sage: from sage.combinat.designs.bibd import BIBD_from_PBD sage: from sage.combinat.designs.bibd import is_pairwise_balanced_design sage: PBD = PBD_4_5_8_9_12(17) sage: bibd = is_pairwise_balanced_design(BIBD_from_PBD(PBD,52,4),52,[4]) """ r = (v-1) // (k-1) bibd = [] for X in PBD: n = len(X) N = (k-1)*n+1 if not (n,k) in base_cases: base_cases[n,k] = _relabel_bibd(balanced_incomplete_block_design(N,k), N) for XX in base_cases[n,k]: if N-1 in XX: continue bibd.append([X[x//(k-1)] + (x%(k-1))*r for x in XX]) for x in range(r): bibd.append([x+i*r for i in range(k-1)]+[v-1]) if check: assert is_pairwise_balanced_design(bibd,v,[k]) return bibd def _relabel_bibd(B,n,p=None): r""" Relabels the BIBD on `n` points and blocks of size k such that `\{0,...,k-2,n-1\},\{k-1,...,2k-3,n-1\},...,\{n-k,...,n-2,n-1\}` are blocks of the BIBD. INPUT: - ``B`` -- a list of blocks. - ``n`` (integer) -- number of points. - ``p`` (optional) -- the point that will be labeled with n-1. EXAMPLE:: sage: designs.balanced_incomplete_block_design(40,4).blocks() # indirect doctest [[0, 1, 2, 12], [0, 3, 6, 9], [0, 4, 8, 10], [0, 5, 7, 11], [0, 13, 26, 39], [0, 14, 25, 28], [0, 15, 27, 38], [0, 16, 22, 32], [0, 17, 23, 34], ... """ if p is None: p = n-1 found = 0 last = n-1 d = {} for X in B: if last in X: for x in X: if x == last: continue d[x] = found found += 1 if found == n-1: break d[p] = n-1 return [[d[x] for x in X] for X in B] def PBD_4_5_8_9_12(v, check=True): """ Return a `(v,\{4,5,8,9,12\})`-PBD on `v` elements. A `(v,\{4,5,8,9,12\})`-PBD exists if and only if `v\equiv 0,1 \pmod 4`. The construction implemented here appears page 168 in [Stinson2004]_. INPUT: - ``v`` -- an integer congruent to `0` or `1` modulo `4`. - ``check`` (boolean) -- whether to check that output is correct before returning it. As this is expected to be useless (but we are cautious guys), you may want to disable it whenever you want speed. Set to ``True`` by default. EXAMPLES:: sage: designs.balanced_incomplete_block_design(40,4).blocks() # indirect doctest [[0, 1, 2, 12], [0, 3, 6, 9], [0, 4, 8, 10], [0, 5, 7, 11], [0, 13, 26, 39], [0, 14, 25, 28], [0, 15, 27, 38], [0, 16, 22, 32], [0, 17, 23, 34], ... Check that :trac:`16476` is fixed:: sage: from sage.combinat.designs.bibd import PBD_4_5_8_9_12 sage: for v in (0,1,4,5,8,9,12,13,16,17,20,21,24,25): ....: _ = PBD_4_5_8_9_12(v) """ if not v%4 in [0,1]: raise ValueError if v <= 1: PBD = [] elif v <= 12: PBD = [range(v)] elif v == 13 or v == 28: PBD = v_4_1_BIBD(v, check=False) elif v == 29: TD47 = transversal_design(4,7)._blocks four_more_sets = [[28]+[i*7+j for j in range(7)] for i in range(4)] PBD = TD47 + four_more_sets elif v == 41: TD59 = transversal_design(5,9) PBD = ([[x for x in X if x<41] for X in TD59] +[[i*9+j for j in range(9)] for i in range(4)] +[[36,37,38,39,40]]) elif v == 44: TD59 = transversal_design(5,9) PBD = ([[x for x in X if x<44] for X in TD59] +[[i*9+j for j in range(9)] for i in range(4)] +[[36,37,38,39,40,41,42,43]]) elif v == 45: TD59 = transversal_design(5,9)._blocks PBD = (TD59+[[i*9+j for j in range(9)] for i in range(5)]) elif v == 48: TD4_12 = transversal_design(4,12)._blocks PBD = (TD4_12+[[i*12+j for j in range(12)] for i in range(4)]) elif v == 49: # Lemma 7.16 : A (49,{4,13})-PBD TD4_12 = transversal_design(4,12)._blocks # Replacing the block of size 13 with a BIBD BIBD_13_4 = v_4_1_BIBD(13) for i in range(4): for B in BIBD_13_4: TD4_12.append([i*12+x if x != 12 else 48 for x in B]) PBD = TD4_12 else: t,u = _get_t_u(v) TD = transversal_design(5,t) TD = [[x for x in X if x<4*t+u] for X in TD] for B in [range(t*i,t*(i+1)) for i in range(4)]: TD.extend(_PBD_4_5_8_9_12_closure([B])) if u > 1: TD.extend(_PBD_4_5_8_9_12_closure([range(4*t,4*t+u)])) PBD = TD if check: assert is_pairwise_balanced_design(PBD,v,[4,5,8,9,12]) return PBD def _PBD_4_5_8_9_12_closure(B): r""" Makes sure all blocks of `B` have size in `\{4,5,8,9,12\}`. This is a helper function for :func:`PBD_4_5_8_9_12`. Given that `\{4,5,8,9,12\}` is PBD-closed, any block of size not in `\{4,5,8,9,12\}` can be decomposed further. EXAMPLES:: sage: designs.balanced_incomplete_block_design(40,4).blocks() # indirect doctest [[0, 1, 2, 12], [0, 3, 6, 9], [0, 4, 8, 10], [0, 5, 7, 11], [0, 13, 26, 39], [0, 14, 25, 28], [0, 15, 27, 38], [0, 16, 22, 32], [0, 17, 23, 34], ... """ BB = [] for X in B: if len(X) not in [4,5,8,9,12]: PBD = PBD_4_5_8_9_12(len(X), check = False) X = [[X[i] for i in XX] for XX in PBD] BB.extend(X) else: BB.append(X) return BB table_7_1 = { 0:{'t':-4,'u':16,'s':2}, 1:{'t':-4,'u':17,'s':2}, 4:{'t':1,'u':0,'s':1}, 5:{'t':1,'u':1,'s':1}, 8:{'t':1,'u':4,'s':1}, 9:{'t':1,'u':5,'s':1}, 12:{'t':1,'u':8,'s':1}, 13:{'t':1,'u':9,'s':1}, 16:{'t':4,'u':0,'s':0}, 17:{'t':4,'u':1,'s':0}, 20:{'t':5,'u':0,'s':0}, 21:{'t':5,'u':1,'s':0}, 24:{'t':5,'u':4,'s':0}, 25:{'t':5,'u':5,'s':0}, 28:{'t':5,'u':8,'s':1}, 29:{'t':5,'u':9,'s':1}, 32:{'t':8,'u':0,'s':0}, 33:{'t':8,'u':1,'s':0}, 36:{'t':8,'u':4,'s':0}, 37:{'t':8,'u':5,'s':0}, 40:{'t':8,'u':8,'s':0}, 41:{'t':8,'u':9,'s':1}, 44:{'t':8,'u':12,'s':1}, 45:{'t':8,'u':13,'s':1}, } def _get_t_u(v): r""" Return the parameters of table 7.1 from [Stinson2004]_. INPUT: - ``v`` (integer) EXAMPLE:: sage: from sage.combinat.designs.bibd import _get_t_u sage: _get_t_u(20) (5, 0) """ # Table 7.1 v = int(v) global table_7_1 d = table_7_1[v%48] s = v//48 if s < d['s']: raise RuntimeError("This should not have happened.") t = 12*s+d['t'] u = d['u'] return t,u ################ # (v,5,1)-BIBD # ################ def v_5_1_BIBD(v, check=True): r""" Return a `(v,5,1)`-BIBD. This method follows the constuction from [ClaytonSmith]_. INPUT: - ``v`` (integer) .. SEEALSO:: * :func:`balanced_incomplete_block_design` EXAMPLES:: sage: from sage.combinat.designs.bibd import v_5_1_BIBD sage: i = 0 sage: while i<200: ....: i += 20 ....: _ = v_5_1_BIBD(i+1) ....: _ = v_5_1_BIBD(i+5) TESTS: Check that the needed difference families are there:: sage: for v in [21,41,61,81,141,161,281]: ....: assert designs.difference_family(v,5,existence=True) ....: _ = designs.difference_family(v,5) """ v = int(v) assert (v > 1) assert (v%20 == 5 or v%20 == 1) # note: equivalent to (v-1)%4 == 0 and (v*(v-1))%20 == 0 # Lemma 27 if v%5 == 0 and (v//5)%4 == 1 and is_prime_power(v//5): bibd = BIBD_5q_5_for_q_prime_power(v//5) # Lemma 28 elif v in [21,41,61,81,141,161,281]: from difference_family import difference_family G,D = difference_family(v,5) bibd = BIBD_from_difference_family(G, D, check=False) # Lemma 29 elif v == 165: bibd = BIBD_from_PBD(v_5_1_BIBD(41,check=False),165,5,check=False) elif v == 181: bibd = BIBD_from_PBD(v_5_1_BIBD(45,check=False),181,5,check=False) elif v in (201,285,301,401,421,425): # Call directly the BIBD_from_TD function # note: there are (201,5,1) and (421,5)-difference families that can be # obtained from the general constructor bibd = BIBD_from_TD(v,5) # Theorem 31.2 elif (v-1)//4 in [80, 81, 85, 86, 90, 91, 95, 96, 110, 111, 115, 116, 120, 121, 250, 251, 255, 256, 260, 261, 265, 266, 270, 271]: r = (v-1)//4 if r <= 96: k,t,u = 5, 16, r-80 elif r <= 121: k,t,u = 10, 11, r-110 else: k,t,u = 10, 25, r-250 bibd = BIBD_from_PBD(PBD_from_TD(k,t,u),v,5,check=False) else: r,s,t,u = _get_r_s_t_u(v) bibd = BIBD_from_PBD(PBD_from_TD(5,t,u),v,5,check=False) if check: assert is_pairwise_balanced_design(bibd,v,[5]) return bibd def _get_r_s_t_u(v): r""" Implements the table from [ClaytonSmith]_ Return the parameters ``r,s,t,u`` associated with an integer ``v``. INPUT: - ``v`` (integer) EXAMPLES:: sage: from sage.combinat.designs.bibd import _get_r_s_t_u sage: _get_r_s_t_u(25) (6, 0, 1, 1) """ r = int((v-1)/4) s = r//150 x = r%150 if x == 0: t,u = 30*s-5, 25 elif x == 1: t,u = 30*s-5, 26 elif x <= 21: t,u = 30*s+1, x-5 elif x == 25: t,u = 30*s+5, 0 elif x == 26: t,u = 30*s+5, 1 elif x == 30: t,u = 30*s+5, 5 elif x <= 51: t,u = 30*s+5, x-25 elif x <= 66: t,u = 30*s+11, x-55 elif x <= 96: t,u = 30*s+11, x-55 elif x <= 121: t,u = 30*s+11, x-55 elif x <= 146: t,u = 30*s+25, x-125 return r,s,t,u def PBD_from_TD(k,t,u): r""" Return a `(kt,\{k,t\})`-PBD if `u=0` and a `(kt+u,\{k,k+1,t,u\})`-PBD otherwise. This is theorem 23 from [ClaytonSmith]_. The PBD is obtained from the blocks a truncated `TD(k+1,t)`, to which are added the blocks corresponding to the groups of the TD. When `u=0`, a `TD(k,t)` is used instead. INPUT: - ``k,t,u`` -- integers such that `0\leq u \leq t`. EXAMPLES:: sage: from sage.combinat.designs.bibd import PBD_from_TD sage: from sage.combinat.designs.bibd import is_pairwise_balanced_design sage: PBD = PBD_from_TD(2,2,1); PBD [[0, 2, 4], [0, 3], [1, 2], [1, 3, 4], [0, 1], [2, 3]] sage: is_pairwise_balanced_design(PBD,2*2+1,[2,3]) True """ from orthogonal_arrays import transversal_design TD = transversal_design(k+bool(u),t, check=False) TD = [[x for x in X if x<k*t+u] for X in TD] for i in range(k): TD.append(range(t*i,t*i+t)) if u>=2: TD.append(range(k*t,k*t+u)) return TD def BIBD_5q_5_for_q_prime_power(q): r""" Return a `(5q,5,1)`-BIBD with `q\equiv 1\pmod 4` a prime power. See Theorem 24 [ClaytonSmith]_. INPUT: - ``q`` (integer) -- a prime power such that `q\equiv 1\pmod 4`. EXAMPLES:: sage: from sage.combinat.designs.bibd import BIBD_5q_5_for_q_prime_power sage: for q in [25, 45, 65, 85, 125, 145, 185, 205, 305, 405, 605]: # long time ....: _ = BIBD_5q_5_for_q_prime_power(q/5) # long time """ from sage.rings.finite_rings.constructor import FiniteField if q%4 != 1 or not is_prime_power(q): raise ValueError("q is not a prime power or q%4!=1.") d = (q-1)/4 B = [] F = FiniteField(q,'x') a = F.primitive_element() L = {b:i for i,b in enumerate(F)} for b in L: B.append([i*q + L[b] for i in range(5)]) for i in range(5): for j in range(d): B.append([ i*q + L[b ], ((i+1)%5)*q + L[ a**j+b ], ((i+1)%5)*q + L[-a**j+b ], ((i+4)%5)*q + L[ a**(j+d)+b], ((i+4)%5)*q + L[-a**(j+d)+b], ]) return B def BIBD_from_arc_in_desarguesian_projective_plane(n,k,existence=False): r""" Returns a `(n,k,1)`-BIBD from a maximal arc in a projective plane. This function implements a construction from Denniston [Denniston69]_, who describes a maximal :meth:`arc <sage.combinat.designs.bibd.BalancedIncompleteBlockDesign.arc>` in a :func:`Desarguesian Projective Plane <sage.combinat.designs.block_design.DesarguesianProjectivePlaneDesign>` of order `2^k`. From two powers of two `n,q` with `n<q`, it produces a `((n-1)(q+1)+1,n,1)`-BIBD. INPUT: - ``n,k`` (integers) -- must be powers of two (among other restrictions). - ``existence`` (boolean) -- whether to return the BIBD obtained through this construction (default), or to merely indicate with a boolean return value whether this method *can* build the requested BIBD. EXAMPLES: A `(232,8,1)`-BIBD:: sage: from sage.combinat.designs.bibd import BIBD_from_arc_in_desarguesian_projective_plane sage: from sage.combinat.designs.bibd import BalancedIncompleteBlockDesign sage: D = BIBD_from_arc_in_desarguesian_projective_plane(232,8) sage: BalancedIncompleteBlockDesign(232,D) (232,8,1)-Balanced Incomplete Block Design A `(120,8,1)`-BIBD:: sage: D = BIBD_from_arc_in_desarguesian_projective_plane(120,8) sage: BalancedIncompleteBlockDesign(120,D) (120,8,1)-Balanced Incomplete Block Design Other parameters:: sage: all(BIBD_from_arc_in_desarguesian_projective_plane(n,k,existence=True) ....: for n,k in ....: [(120, 8), (232, 8), (456, 8), (904, 8), (496, 16), ....: (976, 16), (1936, 16), (2016, 32), (4000, 32), (8128, 64)]) True Of course, not all can be built this way:: sage: BIBD_from_arc_in_desarguesian_projective_plane(7,3,existence=True) False sage: BIBD_from_arc_in_desarguesian_projective_plane(7,3) Traceback (most recent call last): ... ValueError: This function cannot produce a (7,3,1)-BIBD REFERENCE: .. [Denniston69] R. H. F. Denniston, Some maximal arcs in finite projective planes. Journal of Combinatorial Theory 6, no. 3 (1969): 317-319. http://dx.doi.org/10.1016/S0021-9800(69)80095-5 """ q = (n-1)//(k-1)-1 if (k % 2 or q % 2 or q <= k or n != (k-1)*(q+1)+1 or not is_prime_power(k) or not is_prime_power(q)): if existence: return False raise ValueError("This function cannot produce a ({},{},1)-BIBD".format(n,k)) if existence: return True n = k # From now on, the code assumes the notations of [Denniston69] for n,q, so # that the BIBD returned by the method will have the requested parameters. from sage.rings.finite_rings.constructor import FiniteField as GF from sage.libs.gap.libgap import libgap from sage.matrix.constructor import Matrix K = GF(q,'a') one = K.one() # An irreducible quadratic form over K[X,Y] GO = libgap.GeneralOrthogonalGroup(-1,2,q) M = libgap.InvariantQuadraticForm(GO)['matrix'] M = Matrix(M) M = M.change_ring(K) Q = lambda xx,yy : M[0,0]*xx**2+(M[0,1]+M[1,0])*xx*yy+M[1,1]*yy**2 # Here, the additive subgroup H (of order n) of K mentioned in # [Denniston69] is the set of all elements of K of degree < log_n # (seeing elements of K as polynomials in 'a') K_iter = list(K) # faster iterations log_n = is_prime_power(n,get_data=True)[1] C = [(x,y,one) for x in K_iter for y in K_iter if Q(x,y).polynomial().degree() < log_n] from sage.combinat.designs.block_design import DesarguesianProjectivePlaneDesign return DesarguesianProjectivePlaneDesign(q).trace(C)._blocks class PairwiseBalancedDesign(GroupDivisibleDesign): r""" Pairwise Balanced Design (PBD) A Pairwise Balanced Design, or `(v,K,\lambda)`-PBD, is a collection `\mathcal B` of blocks defined on a set `X` of size `v`, such that any block pair of points `p_1,p_2\in X` occurs in exactly `\lambda` blocks of `\mathcal B`. Besides, for every block `B\in \mathcal B` we must have `|B|\in K`. INPUT: - ``points`` -- the underlying set. If ``points`` is an integer `v`, then the set is considered to be `\{0, ..., v-1\}`. - ``blocks`` -- collection of blocks - ``K`` -- list of integers of which the sizes of the blocks must be elements. Set to ``None`` (automatic guess) by default. - ``lambd`` (integer) -- value of `\lambda`, set to `1` by default. - ``check`` (boolean) -- whether to check that the design is a `PBD` with the right parameters. - ``copy`` -- (use with caution) if set to ``False`` then ``blocks`` must be a list of lists of integers. The list will not be copied but will be modified in place (each block is sorted, and the whole list is sorted). Your ``blocks`` object will become the instance's internal data. """ def __init__(self, points, blocks, K=None, lambd=1, check=True, copy=True,**kwds): r""" Constructor EXAMPLE:: sage: designs.balanced_incomplete_block_design(13,3) # indirect doctest (13,3,1)-Balanced Incomplete Block Design """ try: i = int(points) except TypeError: pass else: points = range(i) GroupDivisibleDesign.__init__(self, points, [[x] for x in points], blocks, K=K, lambd=lambd, check=check, copy=copy, **kwds) def __repr__(self): r""" Returns a string describing the PBD EXAMPLES:: sage: designs.balanced_incomplete_block_design(13,3) # indirect doctest (13,3,1)-Balanced Incomplete Block Design """ return "Pairwise Balanced Design on {} points with sets of sizes in {}".format(self.num_points(),set(self.block_sizes())) class BalancedIncompleteBlockDesign(PairwiseBalancedDesign): r"""" Balanced Incomplete Block Design (BIBD) INPUT: - ``points`` -- the underlying set. If ``points`` is an integer `v`, then the set is considered to be `\{0, ..., v-1\}`. - ``blocks`` -- collection of blocks - ``k`` (integer) -- size of the blocks. Set to ``None`` (automatic guess) by default. - ``lambd`` (integer) -- value of `\lambda`, set to `1` by default. - ``check`` (boolean) -- whether to check that the design is a `PBD` with the right parameters. - ``copy`` -- (use with caution) if set to ``False`` then ``blocks`` must be a list of lists of integers. The list will not be copied but will be modified in place (each block is sorted, and the whole list is sorted). Your ``blocks`` object will become the instance's internal data. EXAMPLES:: sage: b=designs.balanced_incomplete_block_design(9,3); b (9,3,1)-Balanced Incomplete Block Design """ def __init__(self, points, blocks, k=None, lambd=1, check=True, copy=True,**kwds): r""" Constructor EXAMPLE:: sage: b=designs.balanced_incomplete_block_design(9,3); b (9,3,1)-Balanced Incomplete Block Design """ PairwiseBalancedDesign.__init__(self, points, blocks, K=[k] if k is not None else None, lambd=lambd, check=check, copy=copy, **kwds) def __repr__(self): r""" A string to describe self EXAMPLE:: sage: b=designs.balanced_incomplete_block_design(9,3); b (9,3,1)-Balanced Incomplete Block Design """ v = self.num_points() k = len(self._blocks[0]) if self._blocks else 0 l = self._lambd return "({},{},{})-Balanced Incomplete Block Design".format(v,k,l) def arc(self, s=2, solver=None, verbose=0): r""" Return the ``s``-arc with maximum cardinality. A `s`-arc is a subset of points in a BIBD that intersects each block on at most `s` points. It is one possible generalization of independent set for graphs. A simple counting shows that the cardinality of a `s`-arc is at most `(s-1) * r + 1` where `r` is the number of blocks incident to any point. A `s`-arc in a BIBD with cardinality `(s-1) * r + 1` is called maximal and is characterized by the following property: it is not empty and each block either contains `0` or `s` points of this arc. Equivalently, the trace of the BIBD on these points is again a BIBD (with block size `s`). For more informations, see :wikipedia:`Arc_(projective_geometry)`. INPUT: - ``s`` - (default to ``2``) the maximum number of points from the arc in each block - ``solver`` -- (default: ``None``) Specify a Linear Program (LP) solver to be used. If set to ``None``, the default one is used. For more information on LP solvers and which default solver is used, see the method :meth:`solve <sage.numerical.mip.MixedIntegerLinearProgram.solve>` of the class :class:`MixedIntegerLinearProgram <sage.numerical.mip.MixedIntegerLinearProgram>`. - ``verbose`` -- integer (default: ``0``). Sets the level of verbosity. Set to 0 by default, which means quiet. EXAMPLES:: sage: B = designs.balanced_incomplete_block_design(21, 5) sage: a2 = B.arc() sage: a2 # random [5, 9, 10, 12, 15, 20] sage: len(a2) 6 sage: a4 = B.arc(4) sage: a4 # random [0, 1, 2, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20] sage: len(a4) 16 The `2`-arc and `4`-arc above are maximal. One can check that they intersect the blocks in either 0 or `s` points. Or equivalently that the traces are again BIBD:: sage: r = (21-1)/(5-1) sage: 1 + r*1 6 sage: 1 + r*3 16 sage: B.trace(a2).is_t_design(2, return_parameters=True) (True, (2, 6, 2, 1)) sage: B.trace(a4).is_t_design(2, return_parameters=True) (True, (2, 16, 4, 1)) Some other examples which are not maximal:: sage: B = designs.balanced_incomplete_block_design(25, 4) sage: a2 = B.arc(2) sage: r = (25-1)/(4-1) sage: print len(a2), 1 + r 8 9 sage: sa2 = set(a2) sage: set(len(sa2.intersection(b)) for b in B.blocks()) {0, 1, 2} sage: B.trace(a2).is_t_design(2) False sage: a3 = B.arc(3) sage: print len(a3), 1 + 2*r 15 17 sage: sa3 = set(a3) sage: set(len(sa3.intersection(b)) for b in B.blocks()) == set([0,3]) False sage: B.trace(a3).is_t_design(3) False TESTS: Test consistency with relabeling:: sage: b = designs.balanced_incomplete_block_design(7,3) sage: b.relabel(list("abcdefg")) sage: set(b.arc()).issubset(b.ground_set()) True """ s = int(s) # trivial cases if s <= 0: return [] elif s >= max(self.block_sizes()): return self._points[:] # linear program from sage.numerical.mip import MixedIntegerLinearProgram p = MixedIntegerLinearProgram(solver=solver) b = p.new_variable(binary=True) p.set_objective(p.sum(b[i] for i in range(len(self._points)))) for i in self._blocks: p.add_constraint(p.sum(b[k] for k in i) <= s) p.solve(log=verbose) return [self._points[i] for (i,j) in p.get_values(b).items() if j == 1]
[ 81, 37811, 198, 24597, 2903, 554, 20751, 9726, 49282, 357, 3483, 14529, 8, 198, 198, 1212, 8265, 43609, 2279, 3519, 284, 38984, 554, 20751, 9726, 49282, 13, 1881, 460, 1382, 257, 198, 3483, 14529, 357, 273, 2198, 326, 340, 460, 307, 3170, 8, 351, 1058, 20786, 25, 63, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 63, 3712, 628, 220, 220, 220, 35021, 25, 347, 9865, 35, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 22, 11, 18, 8, 198, 198, 818, 1948, 11, 28733, 460, 1382, 257, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 618, 530, 7160, 329, 477, 4600, 74, 59, 293, 80, 198, 20, 44646, 383, 1708, 5499, 389, 1695, 25, 628, 198, 492, 269, 21370, 12, 11487, 3712, 198, 220, 220, 220, 1058, 4871, 25, 2695, 31284, 198, 220, 220, 220, 1058, 10394, 82, 25, 1542, 11, 4317, 198, 220, 220, 220, 1058, 12381, 320, 25, 930, 628, 220, 220, 220, 1058, 20786, 25, 63, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 63, 930, 8229, 257, 347, 9865, 35, 286, 10007, 4600, 85, 11, 74, 44646, 198, 220, 220, 220, 1058, 20786, 25, 63, 3483, 14529, 62, 6738, 62, 21016, 63, 930, 8229, 257, 347, 9865, 35, 832, 13320, 12, 3106, 5678, 507, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 3483, 14529, 62, 6738, 62, 26069, 1945, 62, 17989, 63, 930, 8229, 262, 347, 9865, 35, 3917, 284, 262, 3580, 1641, 7559, 35, 15506, 319, 262, 1448, 7559, 38, 15506, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 3483, 14529, 62, 6738, 62, 47, 14529, 63, 930, 8229, 257, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 422, 257, 4600, 7, 81, 11, 42, 8, 63, 12, 47, 14529, 810, 4600, 81, 16193, 85, 12, 16, 20679, 7, 74, 12, 16, 8, 44646, 198, 220, 220, 220, 1058, 20786, 25, 63, 47, 14529, 62, 6738, 62, 21016, 63, 930, 8229, 257, 4600, 7, 21841, 11, 59, 90, 74, 11, 83, 59, 30072, 63, 12, 47, 14529, 611, 4600, 84, 28, 15, 63, 290, 257, 4600, 7, 21841, 10, 84, 11, 59, 90, 74, 11, 74, 10, 16, 11, 83, 11, 84, 59, 30072, 63, 12, 47, 14529, 4306, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 5714, 263, 62, 28461, 1154, 62, 10057, 63, 930, 8229, 257, 2441, 7274, 19817, 4482, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 85, 62, 20, 62, 16, 62, 3483, 14529, 63, 930, 8229, 257, 4600, 7, 85, 11, 20, 11, 16, 8, 63, 12, 3483, 14529, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 85, 62, 19, 62, 16, 62, 3483, 14529, 63, 930, 8229, 257, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 63, 930, 8229, 257, 4600, 7, 85, 11, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 30072, 63, 12, 47, 14529, 319, 4600, 85, 63, 4847, 13, 198, 220, 220, 220, 1058, 20786, 25, 63, 3483, 14529, 62, 20, 80, 62, 20, 62, 1640, 62, 80, 62, 35505, 62, 6477, 63, 930, 8229, 257, 4600, 7, 20, 80, 11, 20, 11, 16, 8, 63, 12, 3483, 14529, 351, 4600, 80, 59, 4853, 452, 352, 59, 4426, 375, 604, 63, 257, 6994, 1176, 13, 628, 198, 1174, 36687, 286, 347, 9865, 35, 618, 1174, 4600, 74, 28, 19, 63, 198, 198, 10707, 296, 1930, 1756, 286, 4600, 42, 62, 85, 63, 656, 4600, 42, 62, 19, 63, 357, 72, 13, 68, 13, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 8, 389, 3170, 1708, 198, 40287, 14391, 520, 7899, 338, 5103, 355, 5545, 287, 685, 1273, 7899, 15724, 60, 62, 2443, 26118, 13, 632, 318, 198, 3106, 2402, 262, 5103, 286, 4600, 7, 85, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 30072, 63, 12, 47, 14529, 357, 3826, 262, 2205, 286, 198, 25, 20786, 25, 63, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 63, 828, 6970, 326, 257, 4600, 7, 85, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 30072, 63, 12, 47, 14529, 319, 4600, 85, 63, 2173, 198, 5171, 1464, 307, 14434, 656, 257, 4600, 19510, 74, 12, 16, 8, 85, 10, 16, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 11, 543, 8698, 477, 198, 79, 4733, 2663, 286, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 13, 198, 198, 1174, 36687, 286, 347, 9865, 35, 618, 1174, 4600, 74, 28, 20, 63, 198, 198, 10707, 296, 1930, 1756, 286, 4600, 42, 62, 85, 63, 656, 4600, 42, 62, 19, 63, 357, 72, 13, 68, 13, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 8, 389, 3170, 1708, 198, 2601, 323, 1122, 4176, 338, 5103, 685, 2601, 323, 1122, 17919, 60, 44807, 198, 198, 492, 685, 2601, 323, 1122, 17919, 60, 1550, 262, 6224, 286, 4600, 7, 85, 11, 20, 11, 16, 8, 63, 12, 3483, 14529, 13, 198, 220, 2638, 1378, 2503, 13, 853, 18526, 13, 3262, 14, 16624, 14, 65, 571, 67, 13, 12315, 198, 220, 32108, 4176, 628, 198, 24629, 2733, 198, 45537, 198, 37811, 198, 198, 6738, 35021, 13, 66, 26129, 13, 28709, 62, 9246, 1330, 33523, 7248, 12331, 198, 6738, 35021, 13, 44374, 13, 34680, 1330, 16185, 198, 6738, 1486, 62, 9246, 11794, 1330, 1007, 690, 282, 62, 26124, 198, 6738, 2512, 62, 26124, 1330, 9726, 23067, 198, 6738, 35021, 13, 33173, 13, 283, 342, 1330, 9874, 49070, 11, 318, 62, 35505, 62, 6477, 198, 6738, 1448, 62, 7146, 12843, 62, 26124, 82, 1330, 4912, 24095, 12843, 23067, 198, 6738, 9824, 62, 9078, 87, 1330, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 198, 198, 4299, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 479, 11, 6224, 28, 25101, 11, 779, 62, 43, 41, 9419, 28, 25101, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 347, 9865, 35, 286, 10007, 4600, 85, 11, 74, 44646, 628, 220, 220, 220, 317, 38984, 554, 20751, 9726, 8495, 286, 10007, 4600, 85, 11, 74, 63, 318, 257, 4947, 198, 220, 220, 220, 4600, 59, 11018, 9948, 327, 63, 286, 4600, 74, 63, 12, 7266, 28709, 286, 4600, 53, 28, 59, 90, 15, 11, 59, 67, 1747, 11, 85, 12, 16, 59, 92, 63, 884, 326, 329, 597, 734, 198, 220, 220, 220, 7310, 4847, 4600, 87, 11, 88, 59, 259, 569, 63, 612, 318, 257, 3748, 5002, 4600, 50, 59, 259, 3467, 11018, 9948, 327, 63, 198, 220, 220, 220, 884, 326, 4600, 87, 11, 88, 59, 259, 311, 44646, 628, 220, 220, 220, 3125, 2276, 17336, 3360, 6211, 257, 4600, 59, 50033, 63, 11507, 11, 290, 356, 198, 220, 220, 220, 7048, 994, 326, 4600, 59, 50033, 28, 16, 44646, 628, 220, 220, 220, 1114, 517, 1321, 319, 347, 9865, 35, 11, 766, 262, 198, 220, 220, 220, 1058, 31266, 25, 63, 10215, 5546, 278, 15312, 5726, 1279, 12235, 62, 26124, 2, 36621, 62, 1659, 62, 64, 62, 3483, 14529, 44807, 2078, 273, 62, 17, 12, 26124, 13, 1959, 29, 44646, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 11, 74, 15506, 357, 18908, 364, 8, 628, 220, 220, 220, 532, 7559, 41084, 15506, 357, 2127, 21052, 8, 1377, 2427, 286, 2615, 262, 1486, 11, 1441, 25, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 17821, 15506, 1377, 3616, 326, 28733, 4206, 703, 284, 1382, 262, 1486, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 20035, 15506, 1377, 3616, 326, 28733, 857, 407, 760, 703, 284, 1382, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1486, 11, 475, 326, 262, 1486, 743, 2152, 357, 3826, 1058, 4666, 25, 63, 82, 496, 13, 44374, 13, 34680, 63, 737, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 25101, 15506, 1377, 3616, 326, 262, 1486, 857, 407, 2152, 13, 628, 220, 220, 220, 532, 7559, 1904, 62, 43, 41, 9419, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 12405, 262, 4689, 449, 33011, 17546, 278, 198, 220, 220, 220, 220, 220, 1432, 13264, 329, 262, 1486, 618, 28733, 857, 407, 760, 703, 284, 1382, 340, 357, 3826, 198, 220, 220, 220, 220, 220, 1058, 20786, 25, 63, 93, 82, 496, 13, 785, 8800, 265, 13, 26124, 82, 13, 9631, 278, 62, 26124, 13, 13466, 62, 4002, 62, 9631, 278, 62, 26124, 62, 2503, 63, 737, 770, 198, 220, 220, 220, 220, 220, 4433, 5230, 13, 628, 220, 220, 220, 11485, 31107, 1847, 15821, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 1058, 20786, 25, 63, 5714, 263, 62, 28461, 1154, 62, 10057, 63, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 1058, 20786, 25, 63, 85, 62, 19, 62, 16, 62, 3483, 14529, 63, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 1058, 20786, 25, 63, 85, 62, 20, 62, 16, 62, 3483, 14529, 63, 628, 220, 220, 220, 16926, 46, 25, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 48282, 584, 5678, 507, 422, 262, 30579, 286, 955, 8800, 21592, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49282, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 22, 11, 513, 737, 27372, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 513, 4357, 685, 15, 11, 362, 11, 604, 4357, 685, 15, 11, 642, 11, 718, 4357, 685, 16, 11, 362, 11, 718, 4357, 685, 16, 11, 604, 11, 642, 4357, 685, 17, 11, 513, 11, 642, 4357, 685, 18, 11, 604, 11, 718, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 2791, 11, 718, 11, 779, 62, 43, 41, 9419, 28, 17821, 8, 1303, 11902, 532, 5230, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11902, 532, 5230, 198, 220, 220, 220, 220, 220, 220, 220, 3457, 1704, 4645, 351, 7930, 2173, 290, 24356, 7021, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 13, 27372, 3419, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11902, 532, 5230, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 362, 11, 513, 11, 604, 11, 6135, 4357, 685, 15, 11, 642, 11, 1987, 11, 1679, 11, 5014, 11, 7632, 4357, 685, 15, 11, 718, 11, 2681, 11, 4353, 11, 5846, 11, 5996, 4357, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 2791, 11, 718, 11, 779, 62, 43, 41, 9419, 28, 17821, 8, 220, 1303, 11902, 532, 5230, 198, 220, 220, 220, 220, 220, 220, 220, 3457, 1704, 4645, 351, 7930, 2173, 290, 24356, 7021, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 20666, 11, 718, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 1892, 3546, 1154, 12061, 12331, 25, 314, 836, 470, 760, 703, 284, 1382, 257, 357, 20666, 11, 21, 11, 16, 13219, 3483, 14529, 0, 628, 220, 220, 220, 309, 1546, 4694, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 5332, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 5332, 11, 20, 8, 628, 220, 220, 220, 317, 347, 9865, 35, 422, 257, 4463, 578, 4935, 425, 36829, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 2481, 11, 20, 8, 628, 220, 220, 220, 2773, 20861, 347, 9865, 35, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 940, 11, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 940, 11, 940, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 16, 11, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 15, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 628, 220, 220, 220, 1475, 13274, 286, 347, 9865, 35, 351, 4600, 74, 28, 18, 11, 19, 11, 20, 63, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 685, 85, 329, 410, 287, 2124, 9521, 7, 1120, 8, 611, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 18, 11, 41084, 28, 17821, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 513, 11, 767, 11, 860, 11, 1511, 11, 1315, 11, 678, 11, 2310, 11, 1679, 11, 2681, 11, 3261, 11, 4747, 11, 5214, 11, 5014, 11, 5946, 11, 4153, 11, 5125, 60, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 685, 85, 329, 410, 287, 2124, 9521, 7, 3064, 8, 611, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 19, 11, 41084, 28, 17821, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 604, 11, 1511, 11, 1467, 11, 1679, 11, 2579, 11, 5214, 11, 2319, 11, 5125, 11, 6740, 11, 8454, 11, 5598, 11, 8854, 11, 8684, 11, 7600, 11, 9193, 11, 10111, 60, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 685, 85, 329, 410, 287, 2124, 9521, 7, 8628, 8, 611, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 20, 11, 41084, 28, 17821, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 642, 11, 2310, 11, 1679, 11, 6073, 11, 4153, 11, 8454, 11, 6135, 11, 9773, 11, 7600, 11, 8949, 11, 13343, 11, 20416, 11, 13151, 11, 25500, 11, 20299, 60, 628, 220, 220, 220, 1114, 4600, 74, 1875, 642, 63, 612, 389, 3058, 845, 1178, 5678, 507, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 685, 85, 329, 410, 287, 2124, 9521, 7, 6200, 8, 611, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 21, 11, 41084, 28, 17821, 8, 318, 6407, 60, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 718, 11, 3261, 11, 7930, 11, 8684, 11, 10495, 11, 9907, 11, 15696, 11, 13374, 11, 20416, 11, 19710, 11, 21056, 11, 25500, 11, 25326, 11, 23871, 11, 28369, 11, 30110, 11, 28481, 11, 28817, 11, 580, 11, 28714, 11, 35150, 11, 33797, 60, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 685, 85, 329, 410, 287, 2124, 9521, 7, 6200, 8, 611, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 21, 11, 41084, 28, 17821, 8, 318, 16185, 60, 198, 220, 220, 220, 220, 220, 220, 220, 685, 4349, 11, 8454, 11, 9773, 11, 26753, 11, 26881, 11, 31510, 11, 34598, 11, 34951, 11, 17759, 11, 39166, 11, 38147, 11, 39697, 11, 43336, 60, 628, 220, 220, 220, 3423, 389, 617, 5678, 507, 351, 4600, 74, 3467, 469, 80, 767, 63, 290, 4600, 85, 63, 257, 6994, 1176, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 22172, 11, 22, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 22172, 11, 22, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 47941, 11, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 47941, 11, 23, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 42117, 11, 24, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 42117, 11, 24, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1157, 4869, 11, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 1157, 4869, 11, 940, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 628, 220, 220, 220, 843, 356, 760, 617, 16087, 13274, 2482, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 2481, 11, 21, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 300, 2022, 67, 796, 352, 628, 220, 220, 220, 1303, 7563, 85, 498, 347, 9865, 35, 198, 220, 220, 220, 611, 410, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 685, 4357, 2198, 28, 25101, 8, 628, 220, 220, 220, 611, 479, 6624, 410, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 685, 9521, 7, 85, 8, 4357, 2198, 28, 25101, 11, 4866, 28, 25101, 8, 628, 220, 220, 220, 1303, 8504, 12, 41084, 286, 347, 9865, 35, 198, 220, 220, 220, 611, 357, 85, 1279, 479, 393, 198, 220, 220, 220, 220, 220, 220, 220, 479, 1279, 362, 393, 198, 220, 220, 220, 220, 220, 220, 220, 357, 85, 12, 16, 8, 4064, 357, 74, 12, 16, 8, 14512, 657, 393, 198, 220, 220, 220, 220, 220, 220, 220, 357, 85, 9, 7, 85, 12, 16, 4008, 4064, 357, 74, 9, 7, 74, 12, 16, 4008, 14512, 657, 393, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3574, 262, 30579, 286, 1974, 20900, 498, 9824, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2080, 37456, 29, 16, 584, 13269, 389, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 1314, 11, 20, 11, 17, 828, 7, 2481, 11, 21, 11, 17, 828, 7, 1828, 11, 22, 11, 17, 828, 7, 1828, 11, 23, 11, 19, 737, 198, 220, 220, 220, 220, 220, 220, 220, 357, 74, 855, 21, 290, 410, 287, 685, 2623, 11, 3510, 12962, 393, 198, 220, 220, 220, 220, 220, 220, 220, 357, 74, 855, 22, 290, 410, 6624, 5946, 8, 393, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 14388, 338, 12791, 198, 220, 220, 220, 220, 220, 220, 220, 357, 85, 9, 7, 85, 12, 16, 4008, 29006, 74, 9, 7, 74, 12, 16, 4008, 1279, 410, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 33523, 7248, 12331, 7203, 1858, 7160, 645, 37913, 5512, 90, 5512, 90, 92, 13219, 3483, 14529, 1911, 18982, 7, 85, 11, 74, 11, 75, 2022, 67, 4008, 628, 220, 220, 220, 611, 479, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 422, 340, 861, 10141, 1330, 17790, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 17790, 7, 9521, 7, 85, 828, 17, 828, 2198, 28, 25101, 11, 4866, 28, 17821, 8, 198, 220, 220, 220, 611, 479, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 4, 21, 6624, 352, 393, 410, 4, 21, 6624, 513, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2876, 7274, 62, 28461, 1154, 62, 10057, 7, 85, 8, 198, 220, 220, 220, 611, 479, 6624, 604, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 4, 1065, 6624, 352, 393, 410, 4, 1065, 6624, 604, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 410, 62, 19, 62, 16, 62, 3483, 14529, 7, 85, 828, 4866, 28, 25101, 8, 198, 220, 220, 220, 611, 479, 6624, 642, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 4, 1238, 6624, 352, 393, 410, 4, 1238, 6624, 642, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 410, 62, 20, 62, 16, 62, 3483, 14529, 7, 85, 828, 4866, 28, 25101, 8, 628, 220, 220, 220, 422, 3580, 62, 17989, 1330, 3580, 62, 17989, 198, 220, 220, 220, 422, 6831, 1330, 347, 9865, 35, 62, 41571, 507, 628, 220, 220, 220, 611, 357, 85, 11, 74, 11, 16, 8, 287, 347, 9865, 35, 62, 41571, 507, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 9726, 23067, 7, 85, 11, 3483, 14529, 62, 41571, 507, 58, 7, 85, 11, 74, 11, 16, 15437, 22784, 4866, 28, 25101, 8, 198, 220, 220, 220, 611, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 85, 11, 74, 11, 41084, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 85, 11, 74, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 347, 11, 4866, 28, 25101, 8, 198, 220, 220, 220, 611, 347, 9865, 35, 62, 6738, 62, 21016, 7, 85, 11, 74, 11, 41084, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 347, 9865, 35, 62, 6738, 62, 21016, 7, 85, 11, 74, 828, 4866, 28, 25101, 8, 198, 220, 220, 220, 611, 410, 6624, 357, 74, 12, 16, 8, 1174, 17, 10, 74, 290, 318, 62, 35505, 62, 6477, 7, 74, 12, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 422, 2512, 62, 26124, 1330, 1628, 425, 62, 14382, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 1628, 425, 62, 14382, 7, 74, 12, 16, 828, 30073, 28, 25101, 8, 198, 220, 220, 220, 611, 3580, 62, 17989, 7, 85, 11, 74, 11, 41084, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 402, 11, 35, 796, 3580, 62, 17989, 7, 85, 11, 74, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 85, 11, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 7, 38, 11, 35, 11, 9122, 28, 25101, 828, 4866, 28, 25101, 8, 198, 220, 220, 220, 611, 779, 62, 43, 41, 9419, 25, 198, 220, 220, 220, 220, 220, 220, 220, 422, 9505, 62, 26124, 1330, 1266, 62, 4002, 62, 9631, 278, 62, 26124, 62, 2503, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 1266, 62, 4002, 62, 9631, 278, 62, 26124, 62, 2503, 7, 85, 11, 74, 11, 17, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1148, 340, 257, 347, 9865, 35, 393, 655, 257, 922, 9505, 5633, 198, 220, 220, 220, 220, 220, 220, 220, 2938, 62, 77, 62, 1659, 62, 27372, 796, 9874, 49070, 7, 85, 11, 17, 20679, 8800, 49070, 7, 74, 11, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 347, 13, 9319, 62, 17457, 3419, 1875, 2938, 62, 77, 62, 1659, 62, 27372, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 33523, 7248, 12331, 7203, 1858, 7160, 645, 37913, 5512, 90, 5512, 90, 92, 13219, 3483, 14529, 1911, 18982, 7, 85, 11, 74, 11, 75, 2022, 67, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 347, 13, 1939, 1704, 62, 301, 5620, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 347, 13, 22510, 62, 27372, 3419, 6624, 2938, 62, 77, 62, 1659, 62, 27372, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 347, 628, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 16185, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 7203, 40, 836, 470, 760, 703, 284, 1382, 257, 37913, 5512, 90, 5512, 16, 13219, 3483, 14529, 48220, 18982, 7, 85, 11, 74, 4008, 198, 198, 4299, 2876, 7274, 62, 28461, 1154, 62, 10057, 7, 77, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 2441, 7274, 19817, 4482, 628, 220, 220, 220, 317, 2441, 7274, 19817, 4482, 357, 2257, 50, 8, 286, 257, 900, 4600, 59, 90, 15, 42303, 11, 77, 12, 16, 59, 92, 63, 198, 220, 220, 220, 318, 257, 1641, 4600, 50, 63, 286, 513, 12, 28709, 884, 326, 329, 597, 4600, 72, 3467, 1662, 796, 474, 63, 198, 220, 220, 220, 612, 7160, 3446, 530, 900, 286, 4600, 50, 63, 287, 543, 484, 389, 198, 220, 220, 220, 1111, 7763, 13, 628, 220, 220, 220, 632, 460, 46596, 307, 1807, 286, 355, 257, 5766, 1634, 286, 198, 220, 220, 220, 262, 1844, 4823, 4600, 42, 62, 77, 63, 351, 44360, 13, 628, 220, 220, 220, 317, 2441, 7274, 19817, 4482, 286, 257, 4600, 77, 63, 12, 2617, 7160, 611, 290, 691, 611, 198, 220, 220, 220, 4600, 77, 3467, 4853, 452, 352, 3467, 4426, 375, 718, 63, 393, 4600, 77, 3467, 4853, 452, 513, 3467, 4426, 375, 718, 47671, 287, 543, 1339, 198, 220, 220, 220, 530, 460, 307, 1043, 832, 347, 577, 338, 290, 3661, 2305, 76, 338, 5678, 507, 11, 198, 220, 220, 220, 8148, 685, 1870, 29478, 74, 5607, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 77, 15506, 1441, 257, 2441, 7274, 19817, 4482, 286, 4600, 59, 90, 15, 42303, 11, 77, 12, 16, 59, 92, 63, 628, 220, 220, 220, 7788, 2390, 16437, 25, 628, 220, 220, 220, 317, 2441, 7274, 19817, 4482, 319, 4600, 24, 63, 4847, 7904, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 39747, 796, 9824, 13, 5714, 263, 62, 28461, 1154, 62, 10057, 7, 24, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 39747, 198, 220, 220, 220, 220, 220, 220, 220, 357, 24, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 1351, 7, 6448, 8, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 642, 4357, 685, 15, 11, 362, 11, 604, 4357, 685, 15, 11, 513, 11, 718, 4357, 685, 15, 11, 767, 11, 807, 4357, 685, 16, 11, 362, 11, 513, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 604, 11, 767, 4357, 685, 16, 11, 718, 11, 807, 4357, 685, 17, 11, 642, 11, 807, 4357, 685, 17, 11, 718, 11, 767, 4357, 685, 18, 11, 604, 11, 807, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 18, 11, 642, 11, 767, 4357, 685, 19, 11, 642, 11, 718, 11907, 628, 220, 220, 220, 1081, 597, 5166, 286, 9421, 1063, 318, 5017, 1752, 11, 663, 10007, 389, 7904, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 39747, 13, 271, 62, 83, 62, 26124, 7, 7783, 62, 17143, 7307, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 17821, 11, 357, 17, 11, 860, 11, 513, 11, 352, 4008, 628, 220, 220, 220, 1052, 6631, 318, 4376, 329, 12515, 3815, 286, 7559, 77, 15506, 7904, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 5714, 263, 62, 28461, 1154, 62, 10057, 7, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 33523, 7248, 12331, 25, 2441, 7274, 15055, 3341, 691, 2152, 329, 299, 796, 352, 953, 718, 393, 299, 796, 513, 953, 718, 628, 220, 220, 220, 4526, 24302, 18310, 25, 628, 220, 220, 220, 11485, 685, 1870, 29478, 74, 5607, 60, 317, 1790, 1781, 287, 955, 8800, 21592, 49282, 11, 198, 220, 220, 220, 220, 220, 12930, 9918, 11, 314, 7058, 8835, 74, 6081, 11, 198, 220, 220, 220, 220, 220, 4455, 1717, 1756, 11, 8225, 8309, 11, 198, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 315, 84, 13, 12463, 14, 93, 24130, 74, 6081, 14, 26124, 82, 13, 862, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1438, 796, 366, 7447, 7274, 19817, 4482, 319, 43825, 2536, 7, 77, 47762, 1, 4847, 1, 628, 220, 220, 220, 611, 299, 4, 21, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 796, 357, 77, 12, 18, 8, 3373, 718, 198, 220, 220, 220, 220, 220, 220, 220, 1168, 796, 2837, 7, 17, 9, 83, 10, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 309, 796, 37456, 2124, 62, 88, 1058, 2124, 62, 88, 58, 15, 60, 1343, 357, 17, 9, 83, 10, 16, 27493, 87, 62, 88, 58, 16, 60, 628, 220, 220, 220, 220, 220, 220, 220, 39747, 796, 16410, 7, 72, 11, 15, 828, 7, 72, 11, 16, 828, 7, 72, 11, 17, 15437, 329, 1312, 287, 1168, 60, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16410, 7, 72, 11, 74, 828, 7, 73, 11, 74, 828, 19510, 7, 83, 10, 16, 27493, 7, 72, 10, 73, 4008, 4064, 357, 17, 9, 83, 10, 16, 828, 7, 74, 10, 16, 8, 4, 18, 15437, 329, 479, 287, 2837, 7, 18, 8, 329, 1312, 287, 1168, 329, 474, 287, 1168, 611, 1312, 14512, 474, 60, 628, 220, 220, 220, 1288, 361, 299, 4, 21, 6624, 352, 25, 628, 220, 220, 220, 220, 220, 220, 220, 256, 796, 357, 77, 12, 16, 8, 3373, 718, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 2837, 7, 17, 9, 83, 8, 198, 220, 220, 220, 220, 220, 220, 220, 309, 796, 37456, 2124, 62, 88, 1058, 2124, 62, 88, 58, 15, 48688, 87, 62, 88, 58, 16, 60, 9, 83, 9, 17, 611, 2124, 62, 88, 14512, 13841, 16, 12095, 16, 8, 2073, 299, 12, 16, 628, 220, 220, 220, 220, 220, 220, 220, 406, 16, 796, 37456, 1312, 11, 73, 1058, 357, 72, 10, 73, 8, 4064, 14808, 77, 12, 16, 8, 1003, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 406, 796, 37456, 1312, 11, 73, 1058, 406, 16, 7, 72, 11, 73, 8, 1003, 17, 611, 406, 16, 7, 72, 11, 73, 8, 4, 17, 6624, 657, 2073, 256, 33747, 43, 16, 7, 72, 11, 73, 13219, 16, 8, 1003, 17, 628, 220, 220, 220, 220, 220, 220, 220, 39747, 796, 16410, 7, 72, 11, 15, 828, 7, 72, 11, 16, 828, 7, 72, 11, 17, 15437, 329, 1312, 287, 2837, 7, 83, 15437, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16410, 32590, 16, 12095, 16, 828, 7, 72, 11, 74, 828, 7, 72, 12, 83, 11, 7, 74, 10, 16, 8, 4064, 513, 15437, 329, 1312, 287, 2837, 7, 83, 11, 17, 9, 83, 8, 329, 479, 287, 685, 15, 11, 16, 11, 17, 11907, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16410, 7, 72, 11, 74, 828, 7, 73, 11, 74, 828, 7, 43, 7, 72, 11, 73, 828, 7, 74, 10, 16, 8, 4064, 513, 15437, 329, 479, 287, 685, 15, 11, 16, 11, 17, 60, 329, 1312, 287, 399, 329, 474, 287, 399, 611, 1312, 1279, 474, 60, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 33523, 7248, 12331, 7203, 7447, 7274, 15055, 3341, 691, 2152, 329, 299, 796, 352, 953, 718, 393, 299, 796, 513, 953, 718, 4943, 628, 220, 220, 220, 1303, 4174, 309, 290, 4781, 14184, 16856, 198, 220, 220, 220, 39747, 796, 900, 7, 69, 305, 8247, 316, 7, 51, 7, 5324, 8, 329, 31383, 287, 2124, 8, 329, 2124, 287, 39747, 8, 628, 220, 220, 220, 1441, 38984, 818, 20751, 12235, 23067, 7, 77, 11, 39747, 11, 1438, 28, 3672, 11, 9122, 28, 25101, 8, 198, 198, 4299, 347, 9865, 35, 62, 6738, 62, 21016, 7, 85, 11, 74, 11, 41084, 28, 25101, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 347, 9865, 35, 832, 13320, 12, 3106, 5678, 507, 13, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 11, 74, 15506, 357, 18908, 364, 8, 1377, 552, 1769, 257, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 532, 7559, 41084, 15506, 357, 2127, 21052, 8, 1377, 2427, 286, 2615, 262, 1486, 11, 1441, 25, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 17821, 15506, 1377, 3616, 326, 28733, 4206, 703, 284, 1382, 262, 1486, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 20035, 15506, 1377, 3616, 326, 28733, 857, 407, 760, 703, 284, 1382, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1486, 11, 475, 326, 262, 1486, 743, 2152, 357, 3826, 1058, 4666, 25, 63, 82, 496, 13, 44374, 13, 34680, 63, 737, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 25101, 15506, 1377, 3616, 326, 262, 1486, 857, 407, 2152, 13, 628, 220, 220, 220, 770, 2446, 23986, 1115, 5678, 507, 25, 628, 220, 220, 220, 532, 1002, 612, 7160, 257, 4600, 21016, 7, 74, 11, 85, 8, 63, 290, 257, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 788, 612, 7160, 257, 198, 220, 220, 220, 220, 220, 4600, 7, 74, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 220, 220, 383, 347, 9865, 35, 318, 6492, 422, 477, 7021, 286, 262, 4600, 21016, 47671, 290, 422, 262, 7021, 286, 198, 220, 220, 220, 220, 220, 262, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 82, 5447, 625, 262, 4600, 74, 63, 2628, 286, 262, 4600, 21016, 44646, 628, 220, 220, 220, 532, 1002, 612, 7160, 257, 4600, 21016, 7, 74, 11, 85, 8, 63, 290, 257, 4600, 7, 85, 10, 16, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 788, 612, 7160, 257, 198, 220, 220, 220, 220, 220, 4600, 7, 74, 85, 10, 16, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 220, 220, 383, 347, 9865, 35, 318, 6492, 422, 477, 7021, 286, 262, 4600, 21016, 47671, 290, 422, 262, 7021, 286, 198, 220, 220, 220, 220, 220, 262, 4600, 7, 85, 10, 16, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 82, 5447, 625, 262, 5621, 4600, 53, 62, 16, 59, 25244, 3467, 259, 19628, 11, 59, 67, 1747, 11, 53, 62, 74, 59, 25244, 198, 220, 220, 220, 220, 220, 3467, 259, 19628, 63, 810, 262, 4600, 53, 62, 16, 11, 59, 67, 1747, 11, 53, 62, 74, 63, 389, 262, 2628, 286, 262, 13320, 13, 628, 220, 220, 220, 532, 1002, 612, 7160, 257, 4600, 21016, 7, 74, 11, 85, 8, 63, 290, 257, 4600, 7, 85, 10, 74, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 788, 612, 7160, 257, 198, 220, 220, 220, 220, 220, 4600, 7, 74, 85, 10, 74, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 220, 220, 383, 347, 9865, 35, 318, 6492, 422, 477, 7021, 286, 262, 4600, 21016, 47671, 290, 422, 262, 7021, 286, 198, 220, 220, 220, 220, 220, 262, 4600, 7, 85, 10, 74, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 82, 5447, 625, 262, 5621, 4600, 53, 62, 16, 59, 25244, 198, 220, 220, 220, 220, 220, 3467, 31478, 259, 19628, 62, 16, 11, 59, 67, 1747, 11, 59, 259, 19628, 62, 74, 59, 5512, 59, 67, 1747, 11, 53, 62, 74, 59, 25244, 3467, 31478, 259, 19628, 62, 16, 11, 59, 67, 1747, 11, 59, 259, 19628, 62, 74, 59, 92, 63, 198, 220, 220, 220, 220, 220, 810, 262, 4600, 53, 62, 16, 11, 59, 67, 1747, 11, 53, 62, 74, 63, 389, 262, 2628, 286, 262, 13320, 13, 2750, 1642, 1654, 326, 198, 220, 220, 220, 220, 220, 477, 9088, 286, 262, 4600, 7, 85, 10, 74, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 3994, 262, 2512, 198, 220, 220, 220, 220, 220, 4600, 59, 31478, 259, 19628, 62, 16, 11, 59, 67, 1747, 11, 59, 259, 19628, 62, 74, 59, 92, 47671, 262, 1255, 318, 635, 257, 347, 9865, 35, 13, 628, 220, 220, 220, 2312, 5678, 507, 460, 307, 1043, 287, 198, 220, 220, 220, 4600, 27, 4023, 1378, 2503, 13, 853, 18526, 13, 3262, 14, 16624, 14, 65, 571, 67, 13, 12315, 29, 63, 44807, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 25, 628, 220, 220, 220, 3274, 5103, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 21016, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 21016, 7, 1495, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9726, 23067, 7, 1495, 11, 3483, 14529, 62, 6738, 62, 21016, 7, 1495, 11, 20, 4008, 628, 220, 220, 220, 5498, 5103, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 21016, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 21016, 7, 2481, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9726, 23067, 7, 2481, 11, 3483, 14529, 62, 6738, 62, 21016, 7, 2481, 11, 20, 4008, 628, 220, 220, 220, 10467, 5103, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 21016, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 21016, 7, 5332, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9726, 23067, 7, 5332, 11, 3483, 14529, 62, 6738, 62, 21016, 7, 5332, 11, 20, 4008, 628, 220, 220, 220, 1400, 2126, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 21016, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 21016, 7, 1238, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 16185, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 21016, 7, 1238, 11, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 1892, 3546, 1154, 12061, 12331, 25, 314, 466, 407, 760, 703, 284, 1382, 257, 357, 1238, 11, 20, 11, 16, 13219, 3483, 14529, 0, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 3274, 5103, 198, 220, 220, 220, 611, 357, 85, 4, 74, 6624, 657, 290, 198, 220, 220, 220, 220, 220, 220, 220, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 1003, 74, 11, 74, 11, 41084, 28, 17821, 8, 290, 198, 220, 220, 220, 220, 220, 220, 220, 1007, 690, 282, 62, 26124, 7, 74, 11, 85, 1003, 74, 11, 41084, 28, 17821, 8, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 410, 796, 410, 1003, 74, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 85, 74, 796, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 74, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 74, 85, 796, 1007, 690, 282, 62, 26124, 7, 74, 11, 85, 11, 9122, 28, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 796, 13320, 74, 85, 13557, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 74, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 13, 2302, 437, 26933, 58, 87, 10, 72, 9, 85, 329, 2124, 287, 347, 60, 329, 347, 287, 347, 9865, 35, 85, 74, 12962, 628, 220, 220, 220, 1303, 5498, 5103, 198, 220, 220, 220, 1288, 361, 14808, 85, 12, 16, 8, 4, 74, 6624, 657, 290, 198, 220, 220, 220, 220, 220, 220, 220, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 19510, 85, 12, 16, 8, 1003, 74, 10, 16, 11, 74, 11, 41084, 28, 17821, 8, 290, 198, 220, 220, 220, 220, 220, 220, 220, 1007, 690, 282, 62, 26124, 7, 74, 11, 7, 85, 12, 16, 8, 1003, 74, 11, 41084, 28, 17821, 8, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 410, 796, 357, 85, 12, 16, 8, 1003, 74, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 85, 16, 74, 796, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 10, 16, 11, 74, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 74, 85, 796, 1007, 690, 282, 62, 26124, 7, 74, 11, 85, 11, 9122, 28, 25101, 737, 62, 27372, 628, 220, 220, 220, 220, 220, 220, 220, 1167, 796, 410, 9, 74, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 796, 13320, 74, 85, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 74, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 13, 2302, 437, 26933, 58, 10745, 611, 2124, 6624, 410, 2073, 2124, 10, 72, 9, 85, 329, 2124, 287, 347, 60, 329, 347, 287, 347, 9865, 35, 85, 16, 74, 12962, 628, 220, 220, 220, 1303, 10467, 5103, 198, 220, 220, 220, 1288, 361, 14808, 85, 12, 74, 8, 4, 74, 6624, 657, 290, 198, 220, 220, 220, 220, 220, 220, 220, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 19510, 85, 12, 74, 8, 1003, 74, 10, 74, 11, 74, 11, 41084, 28, 17821, 8, 290, 198, 220, 220, 220, 220, 220, 220, 220, 1007, 690, 282, 62, 26124, 7, 74, 11, 7, 85, 12, 74, 8, 1003, 74, 11, 41084, 28, 17821, 8, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 410, 796, 357, 85, 12, 74, 8, 1003, 74, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 36133, 28747, 796, 12974, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 10, 74, 11, 74, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 74, 85, 796, 1007, 690, 282, 62, 26124, 7, 74, 11, 85, 11, 9122, 28, 25101, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 1167, 796, 410, 9, 74, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 796, 13320, 74, 85, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1838, 1654, 326, 685, 85, 42303, 11, 85, 10, 74, 12, 16, 60, 318, 257, 2512, 286, 347, 9865, 35, 36133, 28747, 13, 3244, 11, 356, 4781, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 36133, 28747, 796, 4808, 2411, 9608, 62, 65, 571, 67, 7, 3483, 14529, 36133, 28747, 11, 85, 10, 74, 8, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 36133, 28747, 796, 685, 33, 329, 347, 287, 347, 9865, 35, 36133, 28747, 611, 949, 7, 33, 8, 1279, 410, 60, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 74, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 13, 2302, 437, 26933, 58, 7, 87, 12, 85, 47762, 10745, 611, 2124, 18189, 410, 2073, 2124, 10, 72, 9, 85, 329, 2124, 287, 347, 60, 329, 347, 287, 347, 9865, 35, 36133, 28747, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 13, 33295, 7, 9521, 7, 74, 9, 85, 11, 85, 9, 74, 10, 74, 4008, 628, 220, 220, 220, 1303, 1400, 2126, 2644, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 16185, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 7203, 40, 466, 407, 760, 703, 284, 1382, 257, 37913, 5512, 90, 5512, 16, 13219, 3483, 14529, 48220, 18982, 7, 85, 11, 74, 4008, 628, 220, 220, 220, 1441, 347, 9865, 35, 628, 198, 198, 4299, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 7, 38, 11, 360, 11, 19343, 67, 28, 14202, 11, 2198, 28, 17821, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 262, 347, 9865, 35, 3917, 284, 262, 3580, 1641, 7559, 35, 15506, 319, 262, 1448, 7559, 38, 15506, 13, 628, 220, 220, 220, 3914, 4600, 38, 63, 307, 257, 1448, 13, 317, 4600, 7, 38, 11, 74, 11, 59, 50033, 8, 63, 12, 9, 26069, 1945, 1641, 9, 318, 257, 1641, 4600, 33, 796, 198, 220, 220, 220, 3467, 90, 33, 62, 16, 11, 33, 62, 17, 11, 59, 335, 1747, 11, 33, 62, 65, 59, 92, 63, 286, 4600, 74, 63, 12, 7266, 28709, 286, 4600, 38, 63, 884, 326, 329, 1123, 5002, 286, 198, 220, 220, 220, 4600, 38, 3467, 1891, 6649, 1077, 3467, 90, 15, 59, 92, 63, 612, 7160, 3446, 4600, 59, 50033, 63, 14729, 286, 4847, 198, 220, 220, 220, 4600, 7, 87, 11, 88, 8, 47671, 4600, 87, 63, 290, 4600, 88, 63, 16686, 284, 262, 976, 2512, 11, 884, 326, 4600, 87, 532, 331, 796, 308, 63, 357, 273, 198, 220, 220, 220, 2124, 331, 36796, 12, 16, 92, 796, 308, 63, 287, 15082, 43058, 33274, 737, 628, 220, 220, 220, 1002, 4600, 59, 90, 33, 62, 16, 11, 347, 62, 17, 11, 3467, 335, 1747, 11, 347, 62, 65, 59, 92, 63, 318, 257, 4600, 7, 38, 11, 74, 11, 59, 50033, 8, 63, 12, 26069, 1945, 1641, 788, 198, 220, 220, 220, 663, 900, 286, 23677, 4600, 59, 90, 33, 62, 72, 3467, 10210, 313, 308, 26, 1312, 3467, 259, 3467, 90, 16, 11, 59, 335, 1747, 11, 65, 59, 5512, 308, 3467, 259, 402, 59, 92, 63, 318, 257, 198, 220, 220, 220, 4600, 7, 85, 11, 74, 11, 59, 50033, 8, 63, 12, 3483, 14529, 810, 4600, 85, 63, 318, 262, 38691, 414, 286, 4600, 38, 44646, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 38, 15506, 532, 257, 27454, 38298, 42474, 666, 1448, 628, 220, 220, 220, 532, 7559, 35, 15506, 532, 257, 3580, 1641, 319, 7559, 38, 15506, 357, 19509, 7021, 389, 3142, 737, 628, 220, 220, 220, 532, 7559, 2543, 17457, 15506, 532, 262, 4600, 59, 50033, 63, 11507, 357, 25968, 11, 691, 973, 611, 7559, 9122, 15506, 318, 198, 220, 220, 220, 220, 220, 7559, 17821, 15506, 8, 628, 220, 220, 220, 532, 7559, 9122, 15506, 532, 1771, 393, 407, 356, 2198, 262, 5072, 357, 12286, 25, 7559, 17821, 15506, 8, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 402, 796, 1168, 4666, 7, 2481, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 360, 796, 16410, 15, 11, 16, 11, 19, 11, 1415, 11, 1433, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 3601, 23243, 7, 38, 7, 87, 12, 88, 8, 329, 2124, 287, 360, 58, 15, 60, 329, 331, 287, 360, 58, 15, 60, 611, 2124, 14512, 331, 8, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 362, 11, 513, 11, 604, 11, 642, 11, 718, 11, 767, 11, 807, 11, 860, 11, 838, 11, 1367, 11, 1105, 11, 1511, 11, 1478, 11, 1315, 11, 1467, 11, 1596, 11, 1248, 11, 678, 11, 1160, 60, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 7, 38, 11, 360, 8, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 604, 11, 1478, 11, 1467, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 362, 11, 642, 11, 1315, 11, 1596, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 17, 11, 513, 11, 718, 11, 1467, 11, 1248, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 18, 11, 604, 11, 767, 11, 1596, 11, 678, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 19, 11, 642, 11, 807, 11, 1248, 11, 1160, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 20, 11, 718, 11, 860, 11, 678, 11, 657, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 21, 11, 767, 11, 838, 11, 1160, 11, 352, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 22, 11, 807, 11, 1367, 11, 657, 11, 362, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 23, 11, 860, 11, 1105, 11, 352, 11, 513, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 24, 11, 838, 11, 1511, 11, 362, 11, 604, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 940, 11, 1367, 11, 1478, 11, 513, 11, 642, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1157, 11, 1105, 11, 1315, 11, 604, 11, 718, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1065, 11, 1511, 11, 1467, 11, 642, 11, 767, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1485, 11, 1478, 11, 1596, 11, 718, 11, 807, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1415, 11, 1315, 11, 1248, 11, 767, 11, 860, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1314, 11, 1467, 11, 678, 11, 807, 11, 838, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1433, 11, 1596, 11, 1160, 11, 860, 11, 1367, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1558, 11, 1248, 11, 657, 11, 838, 11, 1105, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1507, 11, 678, 11, 352, 11, 1367, 11, 1511, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1129, 11, 1160, 11, 362, 11, 1105, 11, 1478, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1238, 11, 657, 11, 513, 11, 1511, 11, 1315, 11907, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 3580, 62, 17989, 1330, 1448, 62, 6270, 11, 2512, 62, 301, 14991, 7509, 198, 220, 220, 220, 5369, 11, 35971, 11, 800, 796, 1448, 62, 6270, 7, 38, 8, 198, 220, 220, 220, 275, 571, 67, 796, 17635, 198, 220, 220, 220, 402, 2617, 796, 900, 7, 38, 8, 198, 220, 220, 220, 279, 62, 1462, 62, 72, 796, 1391, 70, 25, 72, 329, 1312, 11, 70, 287, 27056, 378, 7, 38, 2617, 38165, 198, 220, 220, 220, 329, 275, 287, 360, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 796, 685, 38, 28264, 8, 329, 4808, 287, 275, 60, 198, 220, 220, 220, 220, 220, 220, 220, 311, 796, 2512, 62, 301, 14991, 7509, 7, 38, 11, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 37442, 796, 402, 2617, 13, 30073, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 981, 37442, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 796, 37442, 13, 12924, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 311, 25, 37442, 13, 26069, 1945, 62, 19119, 7, 76, 377, 7, 82, 11, 70, 8, 329, 264, 287, 311, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 13, 33295, 26933, 79, 62, 1462, 62, 72, 58, 76, 377, 7, 72, 11, 70, 15437, 329, 1312, 287, 275, 12962, 628, 220, 220, 220, 611, 2198, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 19343, 67, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 796, 18896, 7, 65, 571, 67, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 402, 13, 9517, 1292, 414, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19343, 67, 796, 357, 11925, 7, 65, 571, 67, 8, 1635, 479, 1635, 357, 74, 12, 16, 4008, 3373, 357, 85, 1635, 357, 85, 12, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 65, 571, 67, 11, 402, 13, 9517, 1292, 414, 22784, 685, 11925, 7, 35, 58, 15, 12962, 4357, 19343, 67, 28, 2543, 17457, 8, 628, 220, 220, 220, 1441, 275, 571, 67, 198, 198, 14468, 198, 2, 357, 85, 11, 19, 11, 16, 13219, 3483, 14529, 1303, 198, 14468, 198, 198, 4299, 410, 62, 19, 62, 16, 62, 3483, 14529, 7, 85, 11, 2198, 28, 17821, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 317, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 318, 281, 5743, 12, 12501, 296, 9150, 286, 262, 1844, 4823, 4600, 42, 62, 85, 63, 656, 198, 220, 220, 220, 9088, 286, 4600, 42, 62, 19, 44646, 1114, 517, 1321, 11, 766, 198, 220, 220, 220, 1058, 20786, 25, 63, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 44646, 632, 7160, 611, 290, 691, 611, 4600, 85, 59, 4853, 452, 352, 11, 19, 198, 220, 220, 220, 3467, 4426, 375, 1391, 1065, 92, 44646, 628, 220, 220, 220, 4091, 2443, 26118, 286, 685, 1273, 7899, 15724, 60, 62, 329, 262, 5103, 3307, 13, 628, 220, 220, 220, 11485, 31107, 1847, 15821, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 1058, 20786, 25, 63, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 63, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 15506, 357, 41433, 8, 1377, 1271, 286, 2173, 13, 628, 220, 220, 220, 532, 7559, 9122, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 2198, 326, 5072, 318, 3376, 878, 198, 220, 220, 220, 220, 220, 8024, 340, 13, 1081, 428, 318, 2938, 284, 307, 13894, 357, 4360, 356, 389, 21205, 198, 220, 220, 220, 220, 220, 3730, 828, 345, 743, 765, 284, 15560, 340, 8797, 345, 765, 2866, 13, 5345, 284, 7559, 17821, 15506, 198, 220, 220, 220, 220, 220, 416, 4277, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 410, 62, 19, 62, 16, 62, 3483, 14529, 220, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 329, 299, 287, 2837, 7, 1485, 11, 3064, 2599, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 611, 299, 4, 1065, 287, 685, 16, 11, 19, 5974, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 220, 220, 4808, 796, 410, 62, 19, 62, 16, 62, 3483, 14529, 7, 77, 11, 2198, 796, 6407, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 628, 220, 220, 220, 309, 1546, 4694, 25, 628, 220, 220, 220, 6822, 326, 262, 4600, 7, 1495, 11, 19, 8, 63, 290, 4600, 7, 2718, 11, 19, 8, 63, 12, 26069, 1945, 1641, 389, 1695, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 6818, 9824, 13, 26069, 1945, 62, 17989, 7, 1495, 11, 19, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9824, 13, 26069, 1945, 62, 17989, 7, 1495, 11, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 6818, 9824, 13, 26069, 1945, 62, 17989, 7, 2718, 11, 19, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 796, 9824, 13, 26069, 1945, 62, 17989, 7, 2718, 11, 19, 8, 628, 220, 220, 220, 6822, 617, 4025, 4600, 7, 85, 11, 19, 11, 16, 8, 63, 12, 3483, 14529, 357, 3826, 1058, 2213, 330, 25, 63, 1558, 41948, 63, 2599, 25, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 329, 410, 287, 2837, 7, 7029, 2599, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 611, 410, 4, 1065, 287, 685, 16, 11, 19, 5974, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 85, 11, 19, 8, 1303, 890, 640, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 479, 796, 604, 198, 220, 220, 220, 611, 410, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17635, 198, 220, 220, 220, 611, 410, 19841, 1105, 393, 410, 4, 1065, 407, 287, 685, 16, 11, 19, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 33523, 7248, 12331, 7203, 32, 509, 62, 19, 12, 12501, 296, 9150, 286, 509, 62, 85, 7160, 1312, 361, 410, 28, 17, 11, 19, 953, 1105, 11, 410, 29, 1065, 393, 410, 855, 15, 4943, 628, 220, 220, 220, 1303, 5012, 352, 13, 7308, 2663, 13, 198, 220, 220, 220, 611, 410, 6624, 1511, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3465, 25, 428, 5103, 460, 635, 307, 6492, 422, 3580, 62, 17989, 198, 220, 220, 220, 220, 220, 220, 220, 422, 2512, 62, 26124, 1330, 1628, 425, 62, 14382, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1628, 425, 62, 14382, 7, 18, 737, 62, 27372, 198, 220, 220, 220, 611, 410, 6624, 1467, 25, 198, 220, 220, 220, 220, 220, 220, 220, 422, 2512, 62, 26124, 1330, 6708, 500, 10082, 15748, 23067, 198, 220, 220, 220, 220, 220, 220, 220, 422, 35021, 13, 33173, 13, 69, 9504, 62, 33173, 13, 41571, 273, 1330, 4463, 578, 15878, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6708, 500, 10082, 15748, 23067, 7, 17, 11, 16, 11, 37, 9504, 15878, 7, 19, 4032, 87, 11537, 737, 62, 27372, 198, 220, 220, 220, 611, 410, 6624, 1679, 393, 410, 6624, 5214, 25, 198, 220, 220, 220, 220, 220, 220, 220, 422, 3580, 62, 17989, 1330, 3580, 62, 17989, 198, 220, 220, 220, 220, 220, 220, 220, 402, 11, 35, 796, 3580, 62, 17989, 7, 85, 11, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 7, 38, 11, 35, 11, 9122, 28, 25101, 8, 198, 220, 220, 220, 611, 410, 6624, 2579, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 16410, 15, 11, 352, 11, 2242, 11, 2608, 4357, 685, 15, 11, 362, 11, 838, 11, 1367, 4357, 685, 15, 11, 513, 11, 1467, 11, 1248, 4357, 685, 15, 11, 604, 11, 1315, 11, 1160, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 642, 11, 807, 11, 860, 4357, 685, 15, 11, 718, 11, 2534, 11, 1679, 4357, 685, 15, 11, 767, 11, 1478, 11, 2310, 4357, 685, 15, 11, 1105, 11, 1596, 11, 2681, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 1511, 11, 678, 11, 1987, 4357, 685, 16, 11, 362, 11, 1987, 11, 2681, 4357, 685, 16, 11, 513, 11, 1367, 11, 1105, 4357, 685, 16, 11, 604, 11, 1596, 11, 678, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 642, 11, 1478, 11, 1467, 4357, 685, 16, 11, 718, 11, 860, 11, 838, 4357, 685, 16, 11, 767, 11, 1160, 11, 1679, 4357, 685, 16, 11, 807, 11, 1315, 11, 2534, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 1511, 11, 1248, 11, 2310, 4357, 685, 17, 11, 513, 11, 2310, 11, 1679, 4357, 685, 17, 11, 604, 11, 1105, 11, 1511, 4357, 685, 17, 11, 642, 11, 1248, 11, 1160, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 17, 11, 718, 11, 1315, 11, 1596, 4357, 685, 17, 11, 767, 11, 678, 11, 2534, 4357, 685, 17, 11, 807, 11, 1478, 11, 2608, 4357, 685, 17, 11, 860, 11, 1467, 11, 2242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 18, 11, 604, 11, 2534, 11, 2608, 4357, 685, 18, 11, 642, 11, 767, 11, 1511, 4357, 685, 18, 11, 718, 11, 1478, 11, 678, 4357, 685, 18, 11, 807, 11, 1160, 11, 2242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 18, 11, 860, 11, 1315, 11, 2681, 4357, 685, 18, 11, 838, 11, 1596, 11, 1987, 4357, 685, 19, 11, 642, 11, 2242, 11, 2681, 4357, 685, 19, 11, 718, 11, 767, 11, 807, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 19, 11, 860, 11, 1478, 11, 1987, 4357, 685, 19, 11, 838, 11, 1467, 11, 2310, 4357, 685, 19, 11, 1367, 11, 1248, 11, 1679, 4357, 685, 20, 11, 718, 11, 2310, 11, 1987, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 20, 11, 838, 11, 1315, 11, 1679, 4357, 685, 20, 11, 1367, 11, 1596, 11, 2534, 4357, 685, 20, 11, 1105, 11, 678, 11, 2608, 4357, 685, 21, 11, 1367, 11, 1467, 11, 2608, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 21, 11, 1105, 11, 1248, 11, 2242, 4357, 685, 21, 11, 1511, 11, 1160, 11, 2681, 4357, 685, 22, 11, 860, 11, 1596, 11, 1248, 4357, 685, 22, 11, 838, 11, 2608, 11, 2681, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 22, 11, 1367, 11, 2242, 11, 1987, 4357, 685, 22, 11, 1105, 11, 1315, 11, 1467, 4357, 685, 23, 11, 838, 11, 1248, 11, 678, 4357, 685, 23, 11, 1367, 11, 2310, 11, 2681, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 23, 11, 1105, 11, 1987, 11, 1679, 4357, 685, 23, 11, 1511, 11, 1467, 11, 1596, 4357, 685, 24, 11, 1367, 11, 678, 11, 1160, 4357, 685, 24, 11, 1105, 11, 2310, 11, 2534, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 24, 11, 1511, 11, 1679, 11, 2608, 4357, 685, 940, 11, 1105, 11, 1478, 11, 1160, 4357, 685, 940, 11, 1511, 11, 2534, 11, 2242, 4357, 685, 1157, 11, 1511, 11, 1478, 11, 1315, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1415, 11, 1596, 11, 2242, 11, 1679, 4357, 685, 1415, 11, 1248, 11, 2534, 11, 2681, 4357, 685, 1314, 11, 1248, 11, 1987, 11, 2608, 4357, 685, 1314, 11, 678, 11, 2310, 11, 2242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 1433, 11, 678, 11, 1679, 11, 2681, 4357, 685, 1433, 11, 1160, 11, 2534, 11, 1987, 4357, 685, 1558, 11, 1160, 11, 2310, 11, 2608, 11907, 628, 220, 220, 220, 1303, 5012, 362, 1058, 428, 318, 2163, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 198, 220, 220, 220, 350, 14529, 796, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 19510, 85, 12, 16, 20679, 7, 74, 12, 16, 828, 9122, 28, 25101, 8, 628, 220, 220, 220, 1303, 5012, 513, 1058, 383, 29625, 767, 13, 1238, 198, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 47, 14529, 11, 85, 11, 74, 11, 9122, 28, 25101, 8, 628, 220, 220, 220, 611, 2198, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 65, 571, 67, 11, 85, 17414, 74, 12962, 628, 220, 220, 220, 1441, 275, 571, 67, 198, 198, 4299, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 47, 14529, 11, 85, 11, 74, 11, 9122, 28, 17821, 11, 8692, 62, 33964, 34758, 92, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 4600, 7, 85, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 422, 257, 4600, 7, 81, 11, 42, 8, 63, 12, 47, 14529, 810, 4600, 81, 16193, 85, 12, 16, 20679, 7, 74, 12, 16, 8, 44646, 628, 220, 220, 220, 770, 318, 383, 29625, 767, 13, 1238, 422, 685, 1273, 7899, 15724, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 11, 74, 15506, 1377, 37014, 13, 628, 220, 220, 220, 532, 7559, 47, 14529, 15506, 1377, 317, 350, 14529, 319, 4600, 81, 16193, 85, 12, 16, 20679, 7, 74, 12, 16, 8, 63, 2173, 11, 884, 326, 329, 597, 2512, 286, 198, 220, 220, 220, 220, 220, 7559, 47, 14529, 15506, 286, 2546, 4600, 82, 63, 612, 1276, 2152, 257, 4600, 19510, 74, 12, 16, 8, 82, 10, 16, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 532, 7559, 9122, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 2198, 326, 5072, 318, 3376, 878, 198, 220, 220, 220, 220, 220, 8024, 340, 13, 1081, 428, 318, 2938, 284, 307, 13894, 357, 4360, 356, 389, 21205, 198, 220, 220, 220, 220, 220, 3730, 828, 345, 743, 765, 284, 15560, 340, 8797, 345, 765, 2866, 13, 5345, 284, 7559, 17821, 15506, 198, 220, 220, 220, 220, 220, 416, 4277, 13, 628, 220, 220, 220, 532, 7559, 8692, 62, 33964, 15506, 1377, 40918, 1080, 11, 329, 5387, 779, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 47, 14529, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 350, 14529, 796, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 7, 1558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 571, 67, 796, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 3483, 14529, 62, 6738, 62, 47, 14529, 7, 47, 14529, 11, 4309, 11, 19, 828, 4309, 17414, 19, 12962, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 374, 796, 357, 85, 12, 16, 8, 3373, 357, 74, 12, 16, 8, 198, 220, 220, 220, 275, 571, 67, 796, 17635, 198, 220, 220, 220, 329, 1395, 287, 350, 14529, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 18896, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 357, 74, 12, 16, 27493, 77, 10, 16, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 357, 77, 11, 74, 8, 287, 2779, 62, 33964, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 33964, 58, 77, 11, 74, 60, 796, 4808, 2411, 9608, 62, 65, 571, 67, 7, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 45, 11, 74, 828, 399, 8, 628, 220, 220, 220, 220, 220, 220, 220, 329, 21044, 287, 2779, 62, 33964, 58, 77, 11, 74, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 399, 12, 16, 287, 21044, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 13, 33295, 26933, 55, 58, 87, 1003, 7, 74, 12, 16, 15437, 1343, 357, 87, 4, 7, 74, 12, 16, 4008, 9, 81, 329, 2124, 287, 21044, 12962, 628, 220, 220, 220, 329, 2124, 287, 2837, 7, 81, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 13, 33295, 26933, 87, 10, 72, 9, 81, 329, 1312, 287, 2837, 7, 74, 12, 16, 15437, 10, 58, 85, 12, 16, 12962, 628, 220, 220, 220, 611, 2198, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 65, 571, 67, 11, 85, 17414, 74, 12962, 628, 220, 220, 220, 1441, 275, 571, 67, 198, 198, 4299, 4808, 2411, 9608, 62, 65, 571, 67, 7, 33, 11, 77, 11, 79, 28, 14202, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 4718, 397, 1424, 262, 347, 9865, 35, 319, 4600, 77, 63, 2173, 290, 7021, 286, 2546, 479, 884, 326, 198, 220, 220, 220, 4600, 59, 90, 15, 42303, 11, 74, 12, 17, 11, 77, 12, 16, 59, 5512, 59, 90, 74, 12, 16, 42303, 11, 17, 74, 12, 18, 11, 77, 12, 16, 59, 5512, 986, 11, 59, 90, 77, 12, 74, 42303, 11, 77, 12, 17, 11, 77, 12, 16, 59, 92, 63, 389, 7021, 198, 220, 220, 220, 286, 262, 347, 9865, 35, 13, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 33, 15506, 1377, 257, 1351, 286, 7021, 13, 628, 220, 220, 220, 532, 7559, 77, 15506, 357, 41433, 8, 1377, 1271, 286, 2173, 13, 628, 220, 220, 220, 532, 7559, 79, 15506, 357, 25968, 8, 1377, 262, 966, 326, 481, 307, 15494, 351, 299, 12, 16, 13, 628, 220, 220, 220, 7788, 2390, 16437, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1821, 11, 19, 737, 27372, 3419, 1303, 12913, 10412, 395, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 362, 11, 1105, 4357, 685, 15, 11, 513, 11, 718, 11, 860, 4357, 685, 15, 11, 604, 11, 807, 11, 838, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 642, 11, 767, 11, 1367, 4357, 685, 15, 11, 1511, 11, 2608, 11, 5014, 4357, 685, 15, 11, 1478, 11, 1679, 11, 2579, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 1315, 11, 2681, 11, 4353, 4357, 685, 15, 11, 1467, 11, 2534, 11, 3933, 4357, 685, 15, 11, 1596, 11, 2242, 11, 4974, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 279, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 796, 299, 12, 16, 198, 220, 220, 220, 1043, 796, 657, 198, 220, 220, 220, 938, 796, 299, 12, 16, 198, 220, 220, 220, 288, 796, 23884, 198, 220, 220, 220, 329, 1395, 287, 347, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 938, 287, 1395, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2124, 287, 1395, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 6624, 938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 58, 87, 60, 796, 1043, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1043, 6624, 299, 12, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 288, 58, 79, 60, 796, 299, 12, 16, 198, 220, 220, 220, 1441, 16410, 67, 58, 87, 60, 329, 2124, 287, 1395, 60, 329, 1395, 287, 347, 60, 198, 198, 4299, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 7, 85, 11, 2198, 28, 17821, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8229, 257, 4600, 7, 85, 11, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 30072, 63, 12, 47, 14529, 319, 4600, 85, 63, 4847, 13, 628, 220, 220, 220, 317, 4600, 7, 85, 11, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 30072, 63, 12, 47, 14529, 7160, 611, 290, 691, 611, 4600, 85, 59, 4853, 452, 657, 11, 16, 3467, 4426, 375, 604, 44646, 383, 198, 220, 220, 220, 5103, 9177, 994, 3568, 2443, 23378, 287, 685, 1273, 7899, 15724, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 15506, 1377, 281, 18253, 369, 48929, 298, 284, 4600, 15, 63, 393, 4600, 16, 63, 953, 43348, 4600, 19, 44646, 628, 220, 220, 220, 532, 7559, 9122, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 2198, 326, 5072, 318, 3376, 878, 198, 220, 220, 220, 220, 220, 8024, 340, 13, 1081, 428, 318, 2938, 284, 307, 13894, 357, 4360, 356, 389, 21205, 198, 220, 220, 220, 220, 220, 3730, 828, 345, 743, 765, 284, 15560, 340, 8797, 345, 765, 2866, 13, 5345, 284, 7559, 17821, 15506, 198, 220, 220, 220, 220, 220, 416, 4277, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1821, 11, 19, 737, 27372, 3419, 1303, 12913, 10412, 395, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 362, 11, 1105, 4357, 685, 15, 11, 513, 11, 718, 11, 860, 4357, 685, 15, 11, 604, 11, 807, 11, 838, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 642, 11, 767, 11, 1367, 4357, 685, 15, 11, 1511, 11, 2608, 11, 5014, 4357, 685, 15, 11, 1478, 11, 1679, 11, 2579, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 1315, 11, 2681, 11, 4353, 4357, 685, 15, 11, 1467, 11, 2534, 11, 3933, 4357, 685, 15, 11, 1596, 11, 2242, 11, 4974, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 628, 220, 220, 220, 6822, 326, 1058, 2213, 330, 25, 63, 1433, 35435, 63, 318, 5969, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 329, 410, 287, 357, 15, 11, 16, 11, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 11, 1485, 11, 1433, 11, 1558, 11, 1238, 11, 2481, 11, 1731, 11, 1495, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 4808, 796, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 7, 85, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 410, 4, 19, 287, 685, 15, 11, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 198, 220, 220, 220, 611, 410, 19841, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 17635, 198, 220, 220, 220, 1288, 361, 410, 19841, 1105, 25, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 685, 9521, 7, 85, 15437, 198, 220, 220, 220, 1288, 361, 410, 6624, 1511, 393, 410, 6624, 2579, 25, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 410, 62, 19, 62, 16, 62, 3483, 14529, 7, 85, 11, 2198, 28, 25101, 8, 198, 220, 220, 220, 1288, 361, 410, 6624, 2808, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 2857, 796, 1007, 690, 282, 62, 26124, 7, 19, 11, 22, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 1440, 62, 3549, 62, 28709, 796, 16410, 2078, 48688, 58, 72, 9, 22, 10, 73, 329, 474, 287, 2837, 7, 22, 15437, 329, 1312, 287, 2837, 7, 19, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 13320, 2857, 1343, 1440, 62, 3549, 62, 28709, 198, 220, 220, 220, 1288, 361, 410, 6624, 6073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 3270, 796, 1007, 690, 282, 62, 26124, 7, 20, 11, 24, 8, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 29565, 58, 87, 329, 2124, 287, 1395, 611, 2124, 27, 3901, 60, 329, 1395, 287, 13320, 3270, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 30109, 72, 9, 24, 10, 73, 329, 474, 287, 2837, 7, 24, 15437, 329, 1312, 287, 2837, 7, 19, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 30109, 2623, 11, 2718, 11, 2548, 11, 2670, 11, 1821, 11907, 8, 198, 220, 220, 220, 1288, 361, 410, 6624, 5846, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 3270, 796, 1007, 690, 282, 62, 26124, 7, 20, 11, 24, 8, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 29565, 58, 87, 329, 2124, 287, 1395, 611, 2124, 27, 2598, 60, 329, 1395, 287, 13320, 3270, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 30109, 72, 9, 24, 10, 73, 329, 474, 287, 2837, 7, 24, 15437, 329, 1312, 287, 2837, 7, 19, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 30109, 2623, 11, 2718, 11, 2548, 11, 2670, 11, 1821, 11, 3901, 11, 3682, 11, 3559, 11907, 8, 198, 220, 220, 220, 1288, 361, 410, 6624, 4153, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 3270, 796, 1007, 690, 282, 62, 26124, 7, 20, 11, 24, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 357, 21016, 3270, 10, 30109, 72, 9, 24, 10, 73, 329, 474, 287, 2837, 7, 24, 15437, 329, 1312, 287, 2837, 7, 20, 8, 12962, 198, 220, 220, 220, 1288, 361, 410, 6624, 4764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 19, 62, 1065, 796, 1007, 690, 282, 62, 26124, 7, 19, 11, 1065, 737, 62, 27372, 198, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 357, 21016, 19, 62, 1065, 10, 30109, 72, 9, 1065, 10, 73, 329, 474, 287, 2837, 7, 1065, 15437, 329, 1312, 287, 2837, 7, 19, 8, 12962, 198, 220, 220, 220, 1288, 361, 410, 6624, 5125, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 20607, 2611, 767, 13, 1433, 1058, 317, 357, 2920, 11, 90, 19, 11, 1485, 92, 13219, 47, 14529, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 19, 62, 1065, 796, 1007, 690, 282, 62, 26124, 7, 19, 11, 1065, 737, 62, 27372, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 18407, 4092, 262, 2512, 286, 2546, 1511, 351, 257, 347, 9865, 35, 198, 220, 220, 220, 220, 220, 220, 220, 347, 9865, 35, 62, 1485, 62, 19, 796, 410, 62, 19, 62, 16, 62, 3483, 14529, 7, 1485, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 19, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 347, 287, 347, 9865, 35, 62, 1485, 62, 19, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13320, 19, 62, 1065, 13, 33295, 26933, 72, 9, 1065, 10, 87, 611, 2124, 14512, 1105, 2073, 4764, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2124, 287, 347, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 13320, 19, 62, 1065, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 11, 84, 796, 4808, 1136, 62, 83, 62, 84, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 796, 1007, 690, 282, 62, 26124, 7, 20, 11, 83, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 796, 16410, 87, 329, 2124, 287, 1395, 611, 2124, 27, 19, 9, 83, 10, 84, 60, 329, 1395, 287, 13320, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 347, 287, 685, 9521, 7, 83, 9, 72, 11, 83, 9, 7, 72, 10, 16, 4008, 329, 1312, 287, 2837, 7, 19, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13320, 13, 2302, 437, 28264, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 62, 17966, 26933, 33, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 334, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13320, 13, 2302, 437, 28264, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 62, 17966, 26933, 9521, 7, 19, 9, 83, 11, 19, 9, 83, 10, 84, 15437, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 13320, 628, 220, 220, 220, 611, 2198, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 47, 14529, 11, 85, 17414, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 12962, 628, 220, 220, 220, 1441, 350, 14529, 198, 198, 4299, 4808, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 62, 17966, 7, 33, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 27433, 1654, 477, 7021, 286, 4600, 33, 63, 423, 2546, 287, 4600, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 92, 44646, 628, 220, 220, 220, 770, 318, 257, 31904, 2163, 329, 1058, 20786, 25, 63, 47, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 44646, 11259, 326, 198, 220, 220, 220, 4600, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 92, 63, 318, 350, 14529, 12, 20225, 11, 597, 2512, 286, 2546, 407, 287, 4600, 59, 90, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 59, 92, 63, 198, 220, 220, 220, 460, 307, 38237, 1335, 2252, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1821, 11, 19, 737, 27372, 3419, 1303, 12913, 10412, 395, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 352, 11, 362, 11, 1105, 4357, 685, 15, 11, 513, 11, 718, 11, 860, 4357, 685, 15, 11, 604, 11, 807, 11, 838, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 642, 11, 767, 11, 1367, 4357, 685, 15, 11, 1511, 11, 2608, 11, 5014, 4357, 685, 15, 11, 1478, 11, 1679, 11, 2579, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 1315, 11, 2681, 11, 4353, 4357, 685, 15, 11, 1467, 11, 2534, 11, 3933, 4357, 685, 15, 11, 1596, 11, 2242, 11, 4974, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 12597, 796, 17635, 198, 220, 220, 220, 329, 1395, 287, 347, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 55, 8, 407, 287, 685, 19, 11, 20, 11, 23, 11, 24, 11, 1065, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 350, 14529, 796, 350, 14529, 62, 19, 62, 20, 62, 23, 62, 24, 62, 1065, 7, 11925, 7, 55, 828, 2198, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 16410, 55, 58, 72, 60, 329, 1312, 287, 21044, 60, 329, 21044, 287, 350, 14529, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12597, 13, 2302, 437, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12597, 13, 33295, 7, 55, 8, 198, 220, 220, 220, 1441, 12597, 198, 198, 11487, 62, 22, 62, 16, 796, 1391, 198, 220, 220, 220, 657, 29164, 6, 83, 10354, 12, 19, 4032, 84, 10354, 1433, 4032, 82, 10354, 17, 5512, 198, 220, 220, 220, 352, 29164, 6, 83, 10354, 12, 19, 4032, 84, 10354, 1558, 4032, 82, 10354, 17, 5512, 198, 220, 220, 220, 604, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 15, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 642, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 16, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 807, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 19, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 860, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 20, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 1105, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 23, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 1511, 29164, 6, 83, 10354, 16, 4032, 84, 10354, 24, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 1467, 29164, 6, 83, 10354, 19, 4032, 84, 10354, 15, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 1596, 29164, 6, 83, 10354, 19, 4032, 84, 10354, 16, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 1160, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 15, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 2310, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 16, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 1987, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 19, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 1679, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 20, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 2579, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 23, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 2808, 29164, 6, 83, 10354, 20, 4032, 84, 10354, 24, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 3933, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 15, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 4747, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 16, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 4570, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 19, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 5214, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 20, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 2319, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 23, 4032, 82, 10354, 15, 5512, 198, 220, 220, 220, 6073, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 24, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 5846, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 1065, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 4153, 29164, 6, 83, 10354, 23, 4032, 84, 10354, 1485, 4032, 82, 10354, 16, 5512, 198, 220, 220, 220, 1782, 628, 198, 4299, 4808, 1136, 62, 83, 62, 84, 7, 85, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 262, 10007, 286, 3084, 767, 13, 16, 422, 685, 1273, 7899, 15724, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 15506, 357, 41433, 8, 628, 220, 220, 220, 7788, 2390, 16437, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 4808, 1136, 62, 83, 62, 84, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 1136, 62, 83, 62, 84, 7, 1238, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 20, 11, 657, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 8655, 767, 13, 16, 198, 220, 220, 220, 410, 796, 493, 7, 85, 8, 198, 220, 220, 220, 3298, 3084, 62, 22, 62, 16, 198, 220, 220, 220, 288, 796, 3084, 62, 22, 62, 16, 58, 85, 4, 2780, 60, 198, 220, 220, 220, 264, 796, 410, 1003, 2780, 198, 220, 220, 220, 611, 264, 1279, 288, 17816, 82, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 7203, 1212, 815, 407, 423, 3022, 19570, 198, 220, 220, 220, 256, 796, 1105, 9, 82, 10, 67, 17816, 83, 20520, 198, 220, 220, 220, 334, 796, 288, 17816, 84, 20520, 198, 220, 220, 220, 1441, 256, 11, 84, 198, 198, 14468, 198, 2, 357, 85, 11, 20, 11, 16, 13219, 3483, 14529, 1303, 198, 14468, 628, 198, 4299, 410, 62, 20, 62, 16, 62, 3483, 14529, 7, 85, 11, 2198, 28, 17821, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 4600, 7, 85, 11, 20, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 770, 2446, 5679, 262, 1500, 8110, 422, 685, 2601, 323, 1122, 17919, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 15506, 357, 41433, 8, 628, 220, 220, 220, 11485, 31107, 1847, 15821, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 1058, 20786, 25, 63, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 63, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 410, 62, 20, 62, 16, 62, 3483, 14529, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 1312, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 981, 1312, 27, 2167, 25, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 1312, 15853, 1160, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 4808, 796, 410, 62, 20, 62, 16, 62, 3483, 14529, 7, 72, 10, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 4808, 796, 410, 62, 20, 62, 16, 62, 3483, 14529, 7, 72, 10, 20, 8, 628, 220, 220, 220, 309, 1546, 4694, 25, 628, 220, 220, 220, 6822, 326, 262, 2622, 3580, 4172, 389, 612, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 329, 410, 287, 685, 2481, 11, 3901, 11, 5333, 11, 6659, 11, 23756, 11, 25948, 11, 30368, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 6818, 9824, 13, 26069, 1945, 62, 17989, 7, 85, 11, 20, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 4808, 796, 9824, 13, 26069, 1945, 62, 17989, 7, 85, 11, 20, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 410, 796, 493, 7, 85, 8, 628, 220, 220, 220, 6818, 357, 85, 1875, 352, 8, 198, 220, 220, 220, 6818, 357, 85, 4, 1238, 6624, 642, 393, 410, 4, 1238, 6624, 352, 8, 220, 1303, 3465, 25, 7548, 284, 357, 85, 12, 16, 8, 4, 19, 6624, 657, 290, 357, 85, 9, 7, 85, 12, 16, 4008, 4, 1238, 6624, 657, 628, 220, 220, 220, 1303, 20607, 2611, 2681, 198, 220, 220, 220, 611, 410, 4, 20, 6624, 657, 290, 357, 85, 1003, 20, 8, 4, 19, 6624, 352, 290, 318, 62, 35505, 62, 6477, 7, 85, 1003, 20, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 20, 80, 62, 20, 62, 1640, 62, 80, 62, 35505, 62, 6477, 7, 85, 1003, 20, 8, 198, 220, 220, 220, 1303, 20607, 2611, 2579, 198, 220, 220, 220, 1288, 361, 410, 287, 685, 2481, 11, 3901, 11, 5333, 11, 6659, 11, 23756, 11, 25948, 11, 30368, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 422, 3580, 62, 17989, 1330, 3580, 62, 17989, 198, 220, 220, 220, 220, 220, 220, 220, 402, 11, 35, 796, 3580, 62, 17989, 7, 85, 11, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 26069, 1945, 62, 17989, 7, 38, 11, 360, 11, 2198, 28, 25101, 8, 198, 220, 220, 220, 1303, 20607, 2611, 2808, 198, 220, 220, 220, 1288, 361, 410, 6624, 21409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 85, 62, 20, 62, 16, 62, 3483, 14529, 7, 3901, 11, 9122, 28, 25101, 828, 20986, 11, 20, 11, 9122, 28, 25101, 8, 198, 220, 220, 220, 1288, 361, 410, 6624, 30110, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 85, 62, 20, 62, 16, 62, 3483, 14529, 7, 2231, 11, 9122, 28, 25101, 828, 27057, 11, 20, 11, 9122, 28, 25101, 8, 198, 220, 220, 220, 1288, 361, 410, 287, 357, 1264, 11, 26279, 11, 18938, 11, 21844, 11, 46636, 11, 32114, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4889, 3264, 262, 347, 9865, 35, 62, 6738, 62, 21016, 2163, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3465, 25, 612, 389, 357, 1264, 11, 20, 11, 16, 8, 290, 357, 46636, 11, 20, 13219, 26069, 1945, 4172, 326, 460, 307, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6492, 422, 262, 2276, 23772, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 21016, 7, 85, 11, 20, 8, 198, 220, 220, 220, 1303, 383, 29625, 3261, 13, 17, 198, 220, 220, 220, 1288, 361, 357, 85, 12, 16, 8, 1003, 19, 287, 685, 1795, 11, 9773, 11, 7600, 11, 9849, 11, 4101, 11, 10495, 11, 6957, 11, 9907, 11, 9796, 11, 13374, 11, 12279, 11, 18693, 11, 7982, 11, 20416, 11, 8646, 11, 34489, 11, 14280, 11, 17759, 11, 21148, 11, 39166, 11, 32090, 11, 37737, 11, 20479, 11, 33797, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 374, 796, 357, 85, 12, 16, 8, 1003, 19, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 19841, 9907, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 11, 83, 11, 84, 796, 642, 11, 1467, 11, 374, 12, 1795, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 374, 19841, 20416, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 11, 83, 11, 84, 796, 838, 11, 1367, 11, 374, 12, 11442, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 11, 83, 11, 84, 796, 838, 11, 1679, 11, 374, 12, 9031, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 47, 14529, 62, 6738, 62, 21016, 7, 74, 11, 83, 11, 84, 828, 85, 11, 20, 11, 9122, 28, 25101, 8, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 374, 11, 82, 11, 83, 11, 84, 796, 4808, 1136, 62, 81, 62, 82, 62, 83, 62, 84, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 275, 571, 67, 796, 347, 9865, 35, 62, 6738, 62, 47, 14529, 7, 47, 14529, 62, 6738, 62, 21016, 7, 20, 11, 83, 11, 84, 828, 85, 11, 20, 11, 9122, 28, 25101, 8, 628, 220, 220, 220, 611, 2198, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 65, 571, 67, 11, 85, 17414, 20, 12962, 628, 220, 220, 220, 1441, 275, 571, 67, 198, 198, 4299, 4808, 1136, 62, 81, 62, 82, 62, 83, 62, 84, 7, 85, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 1846, 1154, 902, 262, 3084, 422, 685, 2601, 323, 1122, 17919, 60, 62, 628, 220, 220, 220, 8229, 262, 10007, 7559, 81, 11, 82, 11, 83, 11, 84, 15506, 3917, 351, 281, 18253, 7559, 85, 15506, 13, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 85, 15506, 357, 41433, 8, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 4808, 1136, 62, 81, 62, 82, 62, 83, 62, 84, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 4808, 1136, 62, 81, 62, 82, 62, 83, 62, 84, 7, 1495, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 21, 11, 657, 11, 352, 11, 352, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 374, 796, 493, 19510, 85, 12, 16, 20679, 19, 8, 198, 220, 220, 220, 264, 796, 374, 1003, 8628, 198, 220, 220, 220, 2124, 796, 374, 4, 8628, 628, 220, 220, 220, 611, 220, 220, 2124, 6624, 657, 25, 220, 220, 256, 11, 84, 796, 1542, 9, 82, 12, 20, 11, 220, 1679, 198, 220, 220, 220, 1288, 361, 2124, 6624, 352, 25, 220, 220, 256, 11, 84, 796, 1542, 9, 82, 12, 20, 11, 220, 2608, 198, 220, 220, 220, 1288, 361, 2124, 19841, 2310, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 16, 11, 220, 2124, 12, 20, 198, 220, 220, 220, 1288, 361, 2124, 6624, 1679, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 20, 11, 220, 657, 198, 220, 220, 220, 1288, 361, 2124, 6624, 2608, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 20, 11, 220, 352, 198, 220, 220, 220, 1288, 361, 2124, 6624, 1542, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 20, 11, 220, 642, 198, 220, 220, 220, 1288, 361, 2124, 19841, 6885, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 20, 11, 220, 2124, 12, 1495, 198, 220, 220, 220, 1288, 361, 2124, 19841, 7930, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 1157, 11, 2124, 12, 2816, 198, 220, 220, 220, 1288, 361, 2124, 19841, 9907, 25, 220, 256, 11, 84, 796, 1542, 9, 82, 10, 1157, 11, 2124, 12, 2816, 198, 220, 220, 220, 1288, 361, 2124, 19841, 20416, 25, 256, 11, 84, 796, 1542, 9, 82, 10, 1157, 11, 2124, 12, 2816, 198, 220, 220, 220, 1288, 361, 2124, 19841, 22986, 25, 256, 11, 84, 796, 1542, 9, 82, 10, 1495, 11, 2124, 12, 11623, 628, 220, 220, 220, 1441, 374, 11, 82, 11, 83, 11, 84, 198, 198, 4299, 350, 14529, 62, 6738, 62, 21016, 7, 74, 11, 83, 11, 84, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 4600, 7, 21841, 11, 59, 90, 74, 11, 83, 59, 30072, 63, 12, 47, 14529, 611, 4600, 84, 28, 15, 63, 290, 257, 4600, 7, 21841, 10, 84, 11, 59, 90, 74, 11, 74, 10, 16, 11, 83, 11, 84, 59, 30072, 63, 12, 47, 14529, 4306, 13, 628, 220, 220, 220, 770, 318, 44728, 2242, 422, 685, 2601, 323, 1122, 17919, 60, 44807, 383, 350, 14529, 318, 6492, 422, 262, 7021, 198, 220, 220, 220, 257, 40122, 515, 4600, 21016, 7, 74, 10, 16, 11, 83, 8, 47671, 284, 543, 389, 2087, 262, 7021, 11188, 284, 262, 198, 220, 220, 220, 2628, 286, 262, 13320, 13, 1649, 4600, 84, 28, 15, 47671, 257, 4600, 21016, 7, 74, 11, 83, 8, 63, 318, 973, 2427, 13, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 74, 11, 83, 11, 84, 15506, 1377, 37014, 884, 326, 4600, 15, 59, 293, 80, 334, 3467, 293, 80, 256, 44646, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 350, 14529, 62, 6738, 62, 21016, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 350, 14529, 796, 350, 14529, 62, 6738, 62, 21016, 7, 17, 11, 17, 11, 16, 1776, 350, 14529, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 15, 11, 362, 11, 604, 4357, 685, 15, 11, 513, 4357, 685, 16, 11, 362, 4357, 685, 16, 11, 513, 11, 604, 4357, 685, 15, 11, 352, 4357, 685, 17, 11, 513, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 318, 62, 24874, 3083, 62, 27753, 62, 26124, 7, 47, 14529, 11, 17, 9, 17, 10, 16, 17414, 17, 11, 18, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 29617, 519, 20996, 62, 3258, 592, 1330, 1007, 690, 282, 62, 26124, 198, 220, 220, 220, 13320, 796, 1007, 690, 282, 62, 26124, 7, 74, 10, 30388, 7, 84, 828, 83, 11, 2198, 28, 25101, 8, 198, 220, 220, 220, 13320, 796, 16410, 87, 329, 2124, 287, 1395, 611, 2124, 27, 74, 9, 83, 10, 84, 60, 329, 1395, 287, 13320, 60, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 74, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 13, 33295, 7, 9521, 7, 83, 9, 72, 11, 83, 9, 72, 10, 83, 4008, 198, 220, 220, 220, 611, 334, 29, 28, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13320, 13, 33295, 7, 9521, 7, 74, 9, 83, 11, 74, 9, 83, 10, 84, 4008, 198, 220, 220, 220, 1441, 13320, 198, 198, 4299, 347, 9865, 35, 62, 20, 80, 62, 20, 62, 1640, 62, 80, 62, 35505, 62, 6477, 7, 80, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 8229, 257, 4600, 7, 20, 80, 11, 20, 11, 16, 8, 63, 12, 3483, 14529, 351, 4600, 80, 59, 4853, 452, 352, 59, 4426, 375, 604, 63, 257, 6994, 1176, 13, 628, 220, 220, 220, 4091, 383, 29625, 1987, 685, 2601, 323, 1122, 17919, 60, 44807, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 80, 15506, 357, 41433, 8, 1377, 257, 6994, 1176, 884, 326, 4600, 80, 59, 4853, 452, 352, 59, 4426, 375, 604, 44646, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 20, 80, 62, 20, 62, 1640, 62, 80, 62, 35505, 62, 6477, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 329, 10662, 287, 685, 1495, 11, 4153, 11, 6135, 11, 7600, 11, 13151, 11, 20299, 11, 22855, 11, 22538, 11, 32747, 11, 36966, 11, 718, 2713, 5974, 1303, 890, 640, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 4808, 796, 347, 9865, 35, 62, 20, 80, 62, 20, 62, 1640, 62, 80, 62, 35505, 62, 6477, 7, 80, 14, 20, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 890, 640, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 35021, 13, 33173, 13, 69, 9504, 62, 33173, 13, 41571, 273, 1330, 4463, 578, 15878, 628, 220, 220, 220, 611, 10662, 4, 19, 14512, 352, 393, 407, 318, 62, 35505, 62, 6477, 7, 80, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 80, 318, 407, 257, 6994, 1176, 393, 10662, 4, 19, 0, 28, 16, 19570, 628, 220, 220, 220, 288, 796, 357, 80, 12, 16, 20679, 19, 198, 220, 220, 220, 347, 796, 17635, 198, 220, 220, 220, 376, 796, 4463, 578, 15878, 7, 80, 4032, 87, 11537, 198, 220, 220, 220, 257, 796, 376, 13, 19795, 1800, 62, 30854, 3419, 198, 220, 220, 220, 406, 796, 1391, 65, 25, 72, 329, 1312, 11, 65, 287, 27056, 378, 7, 37, 38165, 198, 220, 220, 220, 329, 275, 287, 406, 25, 198, 220, 220, 220, 220, 220, 220, 220, 347, 13, 33295, 26933, 72, 9, 80, 1343, 406, 58, 65, 60, 329, 1312, 287, 2837, 7, 20, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 20, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 67, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 347, 13, 33295, 26933, 220, 220, 220, 220, 220, 220, 220, 1312, 9, 80, 1343, 406, 58, 65, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 72, 10, 16, 8, 4, 20, 27493, 80, 1343, 406, 58, 257, 1174, 73, 10, 65, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 72, 10, 16, 8, 4, 20, 27493, 80, 1343, 406, 58, 12, 64, 1174, 73, 10, 65, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 72, 10, 19, 8, 4, 20, 27493, 80, 1343, 406, 58, 257, 1174, 7, 73, 10, 67, 47762, 65, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 72, 10, 19, 8, 4, 20, 27493, 80, 1343, 406, 58, 12, 64, 1174, 7, 73, 10, 67, 47762, 65, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 628, 220, 220, 220, 1441, 347, 198, 198, 4299, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 77, 11, 74, 11, 41084, 28, 25101, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 16409, 257, 4600, 7, 77, 11, 74, 11, 16, 8, 63, 12, 3483, 14529, 422, 257, 40708, 10389, 287, 257, 1628, 425, 6614, 13, 628, 220, 220, 220, 770, 2163, 23986, 257, 5103, 422, 360, 1697, 36363, 685, 35, 1697, 36363, 3388, 60, 62, 11, 508, 198, 220, 220, 220, 8477, 257, 40708, 1058, 76, 2788, 25, 63, 5605, 198, 220, 220, 220, 1279, 82, 496, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 13, 24597, 2903, 818, 20751, 12235, 23067, 13, 5605, 29, 63, 287, 257, 198, 220, 220, 220, 1058, 20786, 25, 63, 5960, 853, 947, 666, 4935, 425, 36829, 198, 220, 220, 220, 1279, 82, 496, 13, 785, 8800, 265, 13, 26124, 82, 13, 9967, 62, 26124, 13, 5960, 853, 947, 666, 16775, 425, 3646, 1531, 23067, 29, 63, 286, 198, 220, 220, 220, 1502, 4600, 17, 61, 74, 44646, 3574, 734, 5635, 286, 734, 4600, 77, 11, 80, 63, 351, 4600, 77, 27, 80, 47671, 340, 11073, 257, 198, 220, 220, 220, 4600, 19510, 77, 12, 16, 5769, 80, 10, 16, 47762, 16, 11, 77, 11, 16, 8, 63, 12, 3483, 14529, 13, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 77, 11, 74, 15506, 357, 18908, 364, 8, 1377, 1276, 307, 5635, 286, 734, 357, 35131, 584, 8733, 737, 628, 220, 220, 220, 532, 7559, 41084, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 1441, 262, 347, 9865, 35, 6492, 832, 198, 220, 220, 220, 220, 220, 428, 5103, 357, 12286, 828, 393, 284, 6974, 7603, 351, 257, 25131, 1441, 198, 220, 220, 220, 220, 220, 1988, 1771, 428, 2446, 1635, 5171, 9, 1382, 262, 9167, 347, 9865, 35, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 25, 628, 220, 220, 220, 317, 4600, 7, 24339, 11, 23, 11, 16, 8, 63, 12, 3483, 14529, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 65, 571, 67, 1330, 38984, 818, 20751, 12235, 23067, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 360, 796, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 24339, 11, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 38984, 818, 20751, 12235, 23067, 7, 24339, 11, 35, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 24339, 11, 23, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 628, 220, 220, 220, 317, 4600, 7, 10232, 11, 23, 11, 16, 8, 63, 12, 3483, 14529, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 360, 796, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 10232, 11, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 38984, 818, 20751, 12235, 23067, 7, 10232, 11, 35, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 10232, 11, 23, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 628, 220, 220, 220, 3819, 10007, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 477, 7, 3483, 14529, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 77, 11, 74, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 329, 299, 11, 74, 287, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 220, 220, 47527, 10232, 11, 807, 828, 357, 24339, 11, 807, 828, 357, 29228, 11, 807, 828, 357, 24, 3023, 11, 807, 828, 357, 37747, 11, 1467, 828, 198, 220, 220, 220, 220, 220, 220, 220, 19424, 25, 220, 220, 220, 220, 220, 220, 220, 357, 24, 4304, 11, 1467, 828, 357, 1129, 2623, 11, 1467, 828, 357, 5304, 11, 3933, 828, 357, 27559, 11, 3933, 828, 357, 23, 12762, 11, 5598, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 628, 220, 220, 220, 3226, 1781, 11, 407, 477, 460, 307, 3170, 428, 835, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 22, 11, 18, 11, 41084, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 9865, 35, 62, 6738, 62, 5605, 62, 259, 62, 8906, 853, 947, 666, 62, 16302, 425, 62, 14382, 7, 22, 11, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 11052, 12331, 25, 770, 2163, 2314, 4439, 257, 357, 22, 11, 18, 11, 16, 13219, 3483, 14529, 628, 220, 220, 220, 4526, 24302, 18310, 25, 628, 220, 220, 220, 11485, 685, 35, 1697, 36363, 3388, 60, 371, 13, 367, 13, 376, 13, 360, 1697, 36363, 11, 198, 220, 220, 220, 220, 220, 220, 2773, 40708, 44606, 287, 27454, 1628, 425, 13016, 13, 198, 220, 220, 220, 220, 220, 220, 4913, 286, 955, 8800, 21592, 17003, 718, 11, 645, 13, 513, 357, 38391, 2599, 37563, 12, 35175, 13, 198, 220, 220, 220, 220, 220, 220, 2638, 1378, 34350, 13, 34023, 13, 2398, 14, 940, 13, 27956, 14, 50, 405, 2481, 12, 4089, 405, 7, 3388, 8, 7410, 3865, 12, 20, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 10662, 796, 357, 77, 12, 16, 8, 1003, 7, 74, 12, 16, 13219, 16, 198, 220, 220, 220, 611, 357, 74, 4064, 362, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 4064, 362, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 19841, 479, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 299, 14512, 357, 74, 12, 16, 27493, 7, 80, 10, 16, 47762, 16, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 407, 318, 62, 35505, 62, 6477, 7, 74, 8, 393, 198, 220, 220, 220, 220, 220, 220, 220, 407, 318, 62, 35505, 62, 6477, 7, 80, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 1212, 2163, 2314, 4439, 257, 37913, 5512, 90, 5512, 16, 13219, 3483, 14529, 1911, 18982, 7, 77, 11, 74, 4008, 628, 220, 220, 220, 611, 6224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 299, 796, 479, 628, 220, 220, 220, 1303, 3574, 783, 319, 11, 262, 2438, 18533, 262, 407, 602, 286, 685, 35, 1697, 36363, 3388, 60, 329, 299, 11, 80, 11, 523, 198, 220, 220, 220, 1303, 326, 262, 347, 9865, 35, 4504, 416, 262, 2446, 481, 423, 262, 9167, 10007, 13, 628, 220, 220, 220, 422, 35021, 13, 33173, 13, 69, 9504, 62, 33173, 13, 41571, 273, 1330, 4463, 578, 15878, 355, 34977, 198, 220, 220, 220, 422, 35021, 13, 8019, 82, 13, 43554, 13, 8019, 43554, 1330, 9195, 43554, 198, 220, 220, 220, 422, 35021, 13, 6759, 8609, 13, 41571, 273, 1330, 24936, 628, 220, 220, 220, 509, 220, 220, 796, 34977, 7, 80, 4032, 64, 11537, 198, 220, 220, 220, 530, 796, 509, 13, 505, 3419, 628, 220, 220, 220, 1303, 1052, 4173, 445, 1229, 856, 15094, 81, 1512, 1296, 625, 509, 58, 55, 11, 56, 60, 198, 220, 220, 220, 10351, 796, 9195, 43554, 13, 12218, 5574, 400, 519, 20996, 13247, 32590, 16, 11, 17, 11, 80, 8, 198, 220, 220, 220, 337, 220, 796, 9195, 43554, 13, 19904, 2743, 415, 4507, 41909, 1512, 8479, 7, 11230, 8, 17816, 6759, 8609, 20520, 198, 220, 220, 220, 337, 220, 796, 24936, 7, 44, 8, 198, 220, 220, 220, 337, 220, 796, 337, 13, 3803, 62, 1806, 7, 42, 8, 198, 220, 220, 220, 1195, 220, 796, 37456, 31383, 11, 22556, 1058, 337, 58, 15, 11, 15, 60, 9, 5324, 1174, 17, 33747, 44, 58, 15, 11, 16, 48688, 44, 58, 16, 11, 15, 12962, 9, 5324, 9, 22556, 10, 44, 58, 16, 11, 16, 60, 9, 22556, 1174, 17, 628, 220, 220, 220, 1303, 3423, 11, 262, 38298, 850, 8094, 367, 357, 1659, 1502, 299, 8, 286, 509, 4750, 287, 198, 220, 220, 220, 1303, 685, 35, 1697, 36363, 3388, 60, 318, 262, 900, 286, 477, 4847, 286, 509, 286, 4922, 1279, 2604, 62, 77, 198, 220, 220, 220, 1303, 357, 42041, 4847, 286, 509, 355, 745, 6213, 296, 8231, 287, 705, 64, 11537, 628, 220, 220, 220, 509, 62, 2676, 796, 1351, 7, 42, 8, 1303, 5443, 34820, 198, 220, 220, 220, 2604, 62, 77, 796, 318, 62, 35505, 62, 6477, 7, 77, 11, 1136, 62, 7890, 28, 17821, 38381, 16, 60, 198, 220, 220, 220, 327, 796, 47527, 87, 11, 88, 11, 505, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2124, 287, 509, 62, 2676, 198, 220, 220, 220, 220, 220, 220, 220, 220, 329, 331, 287, 509, 62, 2676, 198, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1195, 7, 87, 11, 88, 737, 35428, 26601, 498, 22446, 16863, 3419, 1279, 2604, 62, 77, 60, 628, 220, 220, 220, 422, 35021, 13, 785, 8800, 265, 13, 26124, 82, 13, 9967, 62, 26124, 1330, 2935, 853, 947, 666, 16775, 425, 3646, 1531, 23067, 198, 220, 220, 220, 1441, 2935, 853, 947, 666, 16775, 425, 3646, 1531, 23067, 7, 80, 737, 40546, 7, 34, 737, 62, 27372, 198, 198, 4871, 39645, 3083, 24597, 2903, 23067, 7, 13247, 24095, 12843, 23067, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 39645, 3083, 38984, 8495, 357, 47, 14529, 8, 628, 220, 220, 220, 317, 39645, 3083, 38984, 8495, 11, 393, 4600, 7, 85, 11, 42, 11, 59, 50033, 8, 63, 12, 47, 14529, 11, 318, 257, 4947, 198, 220, 220, 220, 4600, 59, 11018, 9948, 347, 63, 286, 7021, 5447, 319, 257, 900, 4600, 55, 63, 286, 2546, 4600, 85, 47671, 884, 326, 597, 2512, 198, 220, 220, 220, 5166, 286, 2173, 4600, 79, 62, 16, 11, 79, 62, 17, 59, 259, 1395, 63, 8833, 287, 3446, 4600, 59, 50033, 63, 7021, 286, 198, 220, 220, 220, 4600, 59, 11018, 9948, 347, 44646, 16238, 11, 329, 790, 2512, 4600, 33, 59, 259, 3467, 11018, 9948, 347, 63, 356, 1276, 423, 198, 220, 220, 220, 4600, 91, 33, 91, 59, 259, 509, 44646, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 13033, 15506, 1377, 262, 10238, 900, 13, 1002, 7559, 13033, 15506, 318, 281, 18253, 4600, 85, 47671, 788, 198, 220, 220, 220, 220, 220, 262, 900, 318, 3177, 284, 307, 4600, 59, 90, 15, 11, 2644, 11, 410, 12, 16, 59, 92, 44646, 628, 220, 220, 220, 532, 7559, 27372, 15506, 1377, 4947, 286, 7021, 628, 220, 220, 220, 532, 7559, 42, 15506, 1377, 1351, 286, 37014, 286, 543, 262, 10620, 286, 262, 7021, 1276, 307, 198, 220, 220, 220, 220, 220, 4847, 13, 5345, 284, 7559, 14202, 15506, 357, 37800, 4724, 8, 416, 4277, 13, 628, 220, 220, 220, 532, 7559, 2543, 17457, 15506, 357, 41433, 8, 1377, 1988, 286, 4600, 59, 50033, 47671, 900, 284, 4600, 16, 63, 416, 4277, 13, 628, 220, 220, 220, 532, 7559, 9122, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 2198, 326, 262, 1486, 318, 257, 4600, 47, 14529, 63, 351, 198, 220, 220, 220, 220, 220, 262, 826, 10007, 13, 628, 220, 220, 220, 532, 7559, 30073, 15506, 1377, 357, 1904, 351, 13041, 8, 611, 900, 284, 7559, 25101, 15506, 788, 7559, 27372, 15506, 1276, 307, 198, 220, 220, 220, 220, 220, 257, 1351, 286, 8341, 286, 37014, 13, 383, 1351, 481, 407, 307, 18984, 475, 481, 307, 198, 220, 220, 220, 220, 220, 9518, 287, 1295, 357, 27379, 2512, 318, 23243, 11, 290, 262, 2187, 1351, 318, 198, 220, 220, 220, 220, 220, 23243, 737, 3406, 7559, 27372, 15506, 2134, 481, 1716, 262, 4554, 338, 5387, 1366, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 2173, 11, 7021, 11, 509, 28, 14202, 11, 19343, 67, 28, 16, 11, 2198, 28, 17821, 11, 4866, 28, 17821, 11, 1174, 46265, 9310, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 28407, 273, 628, 220, 220, 220, 220, 220, 220, 220, 7788, 2390, 16437, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1485, 11, 18, 8, 1303, 12913, 10412, 395, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1485, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 796, 493, 7, 13033, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 5994, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2173, 796, 2837, 7, 72, 8, 628, 220, 220, 220, 220, 220, 220, 220, 4912, 24095, 12843, 23067, 13, 834, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2173, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16410, 87, 60, 329, 2124, 287, 2173, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7021, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 509, 28, 42, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19343, 67, 28, 2543, 17457, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2198, 28, 9122, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4866, 28, 30073, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 9310, 8, 628, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 16409, 257, 4731, 12059, 262, 350, 14529, 628, 220, 220, 220, 220, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1485, 11, 18, 8, 1303, 12913, 10412, 395, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1485, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 366, 47, 958, 3083, 38984, 8495, 319, 23884, 2173, 351, 5621, 286, 10620, 287, 23884, 1911, 18982, 7, 944, 13, 22510, 62, 13033, 22784, 2617, 7, 944, 13, 9967, 62, 82, 4340, 3419, 4008, 198, 198, 4871, 38984, 818, 20751, 12235, 23067, 7, 47, 958, 3083, 24597, 2903, 23067, 2599, 198, 220, 220, 220, 374, 15931, 15931, 198, 220, 220, 220, 38984, 554, 20751, 9726, 8495, 357, 3483, 14529, 8, 628, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 532, 7559, 13033, 15506, 1377, 262, 10238, 900, 13, 1002, 7559, 13033, 15506, 318, 281, 18253, 4600, 85, 47671, 788, 198, 220, 220, 220, 220, 220, 262, 900, 318, 3177, 284, 307, 4600, 59, 90, 15, 11, 2644, 11, 410, 12, 16, 59, 92, 44646, 628, 220, 220, 220, 532, 7559, 27372, 15506, 1377, 4947, 286, 7021, 628, 220, 220, 220, 532, 7559, 74, 15506, 357, 41433, 8, 1377, 2546, 286, 262, 7021, 13, 5345, 284, 7559, 14202, 15506, 357, 37800, 4724, 8, 198, 220, 220, 220, 220, 220, 416, 4277, 13, 628, 220, 220, 220, 532, 7559, 2543, 17457, 15506, 357, 41433, 8, 1377, 1988, 286, 4600, 59, 50033, 47671, 900, 284, 4600, 16, 63, 416, 4277, 13, 628, 220, 220, 220, 532, 7559, 9122, 15506, 357, 2127, 21052, 8, 1377, 1771, 284, 2198, 326, 262, 1486, 318, 257, 4600, 47, 14529, 63, 351, 198, 220, 220, 220, 220, 220, 262, 826, 10007, 13, 628, 220, 220, 220, 532, 7559, 30073, 15506, 1377, 357, 1904, 351, 13041, 8, 611, 900, 284, 7559, 25101, 15506, 788, 7559, 27372, 15506, 1276, 307, 198, 220, 220, 220, 220, 220, 257, 1351, 286, 8341, 286, 37014, 13, 383, 1351, 481, 407, 307, 18984, 475, 481, 307, 198, 220, 220, 220, 220, 220, 9518, 287, 1295, 357, 27379, 2512, 318, 23243, 11, 290, 262, 2187, 1351, 318, 198, 220, 220, 220, 220, 220, 23243, 737, 3406, 7559, 27372, 15506, 2134, 481, 1716, 262, 4554, 338, 5387, 1366, 13, 628, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 28, 26124, 82, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 24, 11, 18, 1776, 275, 198, 220, 220, 220, 220, 220, 220, 220, 357, 24, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 2173, 11, 7021, 11, 479, 28, 14202, 11, 19343, 67, 28, 16, 11, 2198, 28, 17821, 11, 4866, 28, 17821, 11, 1174, 46265, 9310, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 28407, 273, 628, 220, 220, 220, 220, 220, 220, 220, 7788, 2390, 16437, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 28, 26124, 82, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 24, 11, 18, 1776, 275, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 39645, 3083, 24597, 2903, 23067, 13, 834, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2173, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7021, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 509, 41888, 74, 60, 611, 479, 318, 407, 6045, 2073, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19343, 67, 28, 2543, 17457, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2198, 28, 9122, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4866, 28, 30073, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 9310, 8, 628, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 317, 4731, 284, 6901, 2116, 628, 220, 220, 220, 220, 220, 220, 220, 7788, 2390, 16437, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 28, 26124, 82, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 24, 11, 18, 1776, 275, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24, 11, 18, 11, 16, 13219, 24597, 2903, 554, 20751, 9726, 8495, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 2116, 13, 22510, 62, 13033, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 18896, 7, 944, 13557, 27372, 58, 15, 12962, 611, 2116, 13557, 27372, 2073, 657, 198, 220, 220, 220, 220, 220, 220, 220, 300, 796, 2116, 13557, 2543, 17457, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 366, 15090, 5512, 90, 5512, 90, 92, 13219, 24597, 2903, 554, 20751, 9726, 8495, 1911, 18982, 7, 85, 11, 74, 11, 75, 8, 628, 220, 220, 220, 825, 10389, 7, 944, 11, 264, 28, 17, 11, 1540, 332, 28, 14202, 11, 15942, 577, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 8229, 262, 7559, 82, 15506, 12, 5605, 351, 5415, 38691, 414, 13, 628, 220, 220, 220, 220, 220, 220, 220, 317, 4600, 82, 63, 12, 5605, 318, 257, 24637, 286, 2173, 287, 257, 347, 9865, 35, 326, 36177, 82, 1123, 2512, 319, 198, 220, 220, 220, 220, 220, 220, 220, 379, 749, 4600, 82, 63, 2173, 13, 632, 318, 530, 1744, 2276, 1634, 286, 4795, 900, 198, 220, 220, 220, 220, 220, 220, 220, 329, 28770, 13, 628, 220, 220, 220, 220, 220, 220, 220, 317, 2829, 14143, 2523, 326, 262, 38691, 414, 286, 257, 4600, 82, 63, 12, 5605, 318, 379, 749, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 7, 82, 12, 16, 8, 1635, 374, 1343, 352, 63, 810, 4600, 81, 63, 318, 262, 1271, 286, 7021, 4519, 284, 597, 966, 13, 198, 220, 220, 220, 220, 220, 220, 220, 317, 4600, 82, 63, 12, 5605, 287, 257, 347, 9865, 35, 351, 38691, 414, 4600, 7, 82, 12, 16, 8, 1635, 374, 1343, 352, 63, 318, 1444, 40708, 198, 220, 220, 220, 220, 220, 220, 220, 290, 318, 16264, 416, 262, 1708, 3119, 25, 340, 318, 407, 6565, 290, 1123, 198, 220, 220, 220, 220, 220, 220, 220, 2512, 2035, 4909, 4600, 15, 63, 393, 4600, 82, 63, 2173, 286, 428, 10389, 13, 7889, 2473, 1473, 11, 262, 198, 220, 220, 220, 220, 220, 220, 220, 12854, 286, 262, 347, 9865, 35, 319, 777, 2173, 318, 757, 257, 347, 9865, 35, 357, 4480, 2512, 2546, 4600, 82, 63, 737, 628, 220, 220, 220, 220, 220, 220, 220, 1114, 517, 4175, 602, 11, 766, 1058, 31266, 25, 63, 24021, 41052, 16302, 425, 62, 469, 15748, 8, 44646, 628, 220, 220, 220, 220, 220, 220, 220, 3268, 30076, 25, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 82, 15506, 532, 357, 12286, 284, 7559, 17, 15506, 8, 262, 5415, 1271, 286, 2173, 422, 262, 10389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1123, 2512, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 82, 14375, 15506, 1377, 357, 12286, 25, 7559, 14202, 15506, 8, 18291, 1958, 257, 44800, 6118, 357, 19930, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 284, 307, 973, 13, 1002, 900, 284, 7559, 14202, 15506, 11, 262, 4277, 530, 318, 973, 13, 1114, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 517, 1321, 319, 18470, 1540, 690, 290, 543, 4277, 1540, 332, 318, 973, 11, 766, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 2446, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 76, 2788, 25, 63, 82, 6442, 1279, 82, 496, 13, 77, 6975, 605, 13, 76, 541, 13, 44, 2966, 46541, 14993, 451, 15167, 13, 82, 6442, 29, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 44, 2966, 46541, 14993, 451, 15167, 1279, 82, 496, 13, 77, 6975, 605, 13, 76, 541, 13, 44, 2966, 46541, 14993, 451, 15167, 29, 44646, 628, 220, 220, 220, 220, 220, 220, 220, 532, 7559, 19011, 577, 15506, 1377, 18253, 357, 12286, 25, 7559, 15, 15506, 737, 21394, 262, 1241, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 16579, 13, 5345, 284, 657, 416, 4277, 11, 543, 1724, 5897, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7788, 2390, 6489, 1546, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 2481, 11, 642, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 17, 796, 347, 13, 5605, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 17, 1303, 4738, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 20, 11, 860, 11, 838, 11, 1105, 11, 1315, 11, 1160, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 18896, 7, 64, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 718, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 19, 796, 347, 13, 5605, 7, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 19, 1303, 4738, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 352, 11, 362, 11, 642, 11, 718, 11, 807, 11, 860, 11, 838, 11, 1367, 11, 1105, 11, 1511, 11, 1478, 11, 1315, 11, 1467, 11, 1248, 11, 1160, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 18896, 7, 64, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1467, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4600, 17, 63, 12, 5605, 290, 4600, 19, 63, 12, 5605, 2029, 389, 40708, 13, 1881, 460, 2198, 326, 484, 198, 220, 220, 220, 220, 220, 220, 220, 36177, 262, 7021, 287, 2035, 657, 393, 4600, 82, 63, 2173, 13, 1471, 6854, 1473, 326, 262, 198, 220, 220, 220, 220, 220, 220, 220, 20675, 389, 757, 347, 9865, 35, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 374, 796, 357, 2481, 12, 16, 20679, 7, 20, 12, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 352, 1343, 374, 9, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 718, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 352, 1343, 374, 9, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1467, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 13, 40546, 7, 64, 17, 737, 271, 62, 83, 62, 26124, 7, 17, 11, 1441, 62, 17143, 7307, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17821, 11, 357, 17, 11, 718, 11, 362, 11, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 13, 40546, 7, 64, 19, 737, 271, 62, 83, 62, 26124, 7, 17, 11, 1441, 62, 17143, 7307, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17821, 11, 357, 17, 11, 1467, 11, 604, 11, 352, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 2773, 584, 6096, 543, 389, 407, 40708, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 1495, 11, 604, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 17, 796, 347, 13, 5605, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 374, 796, 357, 1495, 12, 16, 20679, 7, 19, 12, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 3601, 18896, 7, 64, 17, 828, 352, 1343, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 807, 860, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 473, 17, 796, 900, 7, 64, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 900, 7, 11925, 7, 11400, 17, 13, 3849, 5458, 7, 65, 4008, 329, 275, 287, 347, 13, 27372, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 15, 11, 352, 11, 362, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 13, 40546, 7, 64, 17, 737, 271, 62, 83, 62, 26124, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 257, 18, 796, 347, 13, 5605, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 3601, 18896, 7, 64, 18, 828, 352, 1343, 362, 9, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1315, 1596, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 473, 18, 796, 900, 7, 64, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 900, 7, 11925, 7, 11400, 18, 13, 3849, 5458, 7, 65, 4008, 329, 275, 287, 347, 13, 27372, 28955, 6624, 900, 26933, 15, 11, 18, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 347, 13, 40546, 7, 64, 18, 737, 271, 62, 83, 62, 26124, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 309, 1546, 4694, 25, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 15794, 351, 823, 9608, 278, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 796, 9824, 13, 27753, 62, 259, 20751, 62, 9967, 62, 26124, 7, 22, 11, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 275, 13, 2411, 9608, 7, 4868, 7203, 39305, 4299, 70, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35021, 25, 900, 7, 65, 13, 5605, 3419, 737, 747, 549, 2617, 7, 65, 13, 2833, 62, 2617, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 493, 7, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 20861, 2663, 198, 220, 220, 220, 220, 220, 220, 220, 611, 264, 19841, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 264, 18189, 3509, 7, 944, 13, 9967, 62, 82, 4340, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 13033, 58, 47715, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 14174, 1430, 198, 220, 220, 220, 220, 220, 220, 220, 422, 35021, 13, 77, 6975, 605, 13, 76, 541, 1330, 35250, 46541, 14993, 451, 15167, 628, 220, 220, 220, 220, 220, 220, 220, 279, 796, 35250, 46541, 14993, 451, 15167, 7, 82, 14375, 28, 82, 14375, 8, 198, 220, 220, 220, 220, 220, 220, 220, 275, 796, 279, 13, 3605, 62, 45286, 7, 39491, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 13, 2617, 62, 15252, 425, 7, 79, 13, 16345, 7, 65, 58, 72, 60, 329, 1312, 287, 2837, 7, 11925, 7, 944, 13557, 13033, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2116, 13557, 27372, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 13, 2860, 62, 1102, 2536, 2913, 7, 79, 13, 16345, 7, 65, 58, 74, 60, 329, 479, 287, 1312, 8, 19841, 264, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 13, 82, 6442, 7, 6404, 28, 19011, 577, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 944, 13557, 13033, 58, 72, 60, 329, 357, 72, 11, 73, 8, 287, 279, 13, 1136, 62, 27160, 7, 65, 737, 23814, 3419, 611, 474, 6624, 352, 60, 198 ]
2.030018
24,785
import numpy as np from collections import OrderedDict from GenPlayground import GenPlayground if __name__ == '__main__': np.set_printoptions(linewidth=200) IP, IP_cycle, IP_pe = GenPlayground() # print(IP_cycle) # print(IP_pe) Gen_CTRL(IP, IP_cycle, IP_pe)
[ 11748, 299, 32152, 355, 45941, 198, 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 198, 6738, 5215, 11002, 2833, 1330, 5215, 11002, 2833, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 45941, 13, 2617, 62, 4798, 25811, 7, 2815, 413, 5649, 28, 2167, 8, 628, 220, 220, 220, 6101, 11, 6101, 62, 13696, 11, 6101, 62, 431, 796, 5215, 11002, 2833, 3419, 198, 220, 220, 220, 1303, 3601, 7, 4061, 62, 13696, 8, 198, 220, 220, 220, 1303, 3601, 7, 4061, 62, 431, 8, 198, 220, 220, 220, 5215, 62, 4177, 7836, 7, 4061, 11, 6101, 62, 13696, 11, 6101, 62, 431, 8, 198 ]
2.517857
112
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- from knack.help_files import helps # region VirtualHub helps['network vhub'] = """ type: group short-summary: Manage virtual hubs. """ helps['network vhub create'] = """ type: command short-summary: Create a virtual hub. """ helps['network vhub list'] = """ type: command short-summary: List virtual hubs. """ helps['network vhub show'] = """ type: command short-summary: Get the details of a virtual hub. """ helps['network vhub update'] = """ type: command short-summary: Update settings of a virtual hub. """ helps['network vhub delete'] = """ type: command short-summary: Delete a virtual hub. """ helps['network vhub connection'] = """ type: group short-summary: Manage virtual hub VNet connections. """ helps['network vhub connection create'] = """ type: command short-summary: Create a virtual hub VNet connection. """ helps['network vhub connection list'] = """ type: command short-summary: List virtual hub VNet connections. """ helps['network vhub connection show'] = """ type: command short-summary: Get the details of a virtual hub VNet connection. """ helps['network vhub connection delete'] = """ type: command short-summary: Delete a virtual hub VNet connection. """ helps['network vhub route'] = """ type: group short-summary: Manage entries in the virtual hub route table. """ helps['network vhub route add'] = """ type: command short-summary: Add a route to the virtual hub route table. """ helps['network vhub route list'] = """ type: command short-summary: List routes in the virtual hub route table. """ helps['network vhub route remove'] = """ type: command short-summary: Remove a route from the virtual hub route table. """ # endregion # region VirtualWAN helps['network vwan'] = """ type: group short-summary: Manage virtual WANs. """ helps['network vwan create'] = """ type: command short-summary: Create a virtual WAN. """ helps['network vwan list'] = """ type: command short-summary: List virtual WANs. """ helps['network vwan show'] = """ type: command short-summary: Get the details of a virtual WAN. """ helps['network vwan update'] = """ type: command short-summary: Update settings of a virtual WAN. """ helps['network vwan delete'] = """ type: command short-summary: Delete a virtual WAN. """ # endregion # region VpnGateway helps['network vpn-gateway'] = """ type: group short-summary: Manage VPN gateways. """ helps['network vpn-gateway create'] = """ type: command short-summary: Create a VPN gateway. """ helps['network vpn-gateway list'] = """ type: command short-summary: List VPN gateways. """ helps['network vpn-gateway show'] = """ type: command short-summary: Get the details of a VPN gateway. """ helps['network vpn-gateway update'] = """ type: command short-summary: Update settings of a VPN gateway. """ helps['network vpn-gateway delete'] = """ type: command short-summary: Delete a VPN gateway. """ helps['network vpn-gateway connection'] = """ type: group short-summary: Manage VPN gateway connections. """ helps['network vpn-gateway connection create'] = """ type: command short-summary: Create a VPN gateway connection. """ helps['network vpn-gateway connection list'] = """ type: command short-summary: List VPN gateway connections. """ helps['network vpn-gateway connection show'] = """ type: command short-summary: Get the details of a VPN gateway connection. """ helps['network vpn-gateway connection delete'] = """ type: command short-summary: Delete a VPN gateway connection. """ helps['network vpn-gateway connection ipsec-policy'] = """ type: group short-summary: Manage VPN gateway connection IPSec policies. """ helps['network vpn-gateway connection ipsec-policy add'] = """ type: command short-summary: Add an IPSec policy to a VPN gateway connection. """ helps['network vpn-gateway connection ipsec-policy list'] = """ type: command short-summary: List VPN gateway connection IPSec policies. """ helps['network vpn-gateway connection ipsec-policy remove'] = """ type: command short-summary: Remove an IPSec policy from a VPN gateway connection. """ # endregion # region VpnSite helps['network vpn-site'] = """ type: group short-summary: Manage VPN site configurations. """ helps['network vpn-site create'] = """ type: command short-summary: Create a VPN site configuration. """ helps['network vpn-site list'] = """ type: command short-summary: List VPN site configurations. """ helps['network vpn-site show'] = """ type: command short-summary: Get the details of a VPN site configuration. """ helps['network vpn-site update'] = """ type: command short-summary: Update settings of a VPN site configuration. """ helps['network vpn-site delete'] = """ type: command short-summary: Delete a VPN site configuration. """ helps['network vpn-site download'] = """ type: command short-summary: Provide a SAS-URL to download the configuration for a VPN site. """ # endregion
[ 2, 16529, 1783, 10541, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 262, 17168, 13789, 13, 4091, 13789, 13, 14116, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 198, 2, 16529, 1783, 10541, 198, 198, 6738, 47868, 13, 16794, 62, 16624, 1330, 5419, 628, 198, 2, 3814, 15595, 16066, 198, 35194, 17816, 27349, 410, 40140, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 7166, 38459, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 7166, 12575, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 7166, 38459, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 7166, 12575, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4296, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 10133, 6460, 286, 257, 7166, 12575, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 7166, 12575, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4637, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 7166, 12575, 569, 7934, 8787, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4637, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 7166, 12575, 569, 7934, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4637, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 7166, 12575, 569, 7934, 8787, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4637, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 7166, 12575, 569, 7934, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 4637, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 7166, 12575, 569, 7934, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 6339, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 12784, 287, 262, 7166, 12575, 6339, 3084, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 6339, 751, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3060, 257, 6339, 284, 262, 7166, 12575, 6339, 3084, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 6339, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 11926, 287, 262, 7166, 12575, 6339, 3084, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 40140, 6339, 4781, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 17220, 257, 6339, 422, 262, 7166, 12575, 6339, 3084, 13, 198, 37811, 198, 2, 886, 36996, 198, 198, 2, 3814, 15595, 54, 1565, 198, 35194, 17816, 27349, 410, 8149, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 7166, 370, 1565, 82, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 8149, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 7166, 370, 1565, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 8149, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 7166, 370, 1565, 82, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 8149, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 7166, 370, 1565, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 8149, 4296, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 10133, 6460, 286, 257, 7166, 370, 1565, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 8149, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 7166, 370, 1565, 13, 198, 37811, 198, 2, 886, 36996, 198, 198, 2, 3814, 569, 21999, 22628, 1014, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 21669, 8946, 1322, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 21669, 24308, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 21669, 8946, 1322, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 21669, 24308, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4296, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 10133, 6460, 286, 257, 21669, 24308, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 21669, 24308, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 21669, 24308, 8787, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 21669, 24308, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 21669, 24308, 8787, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 21669, 24308, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 21669, 24308, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 20966, 2363, 12, 30586, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 21669, 24308, 4637, 37632, 721, 4788, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 20966, 2363, 12, 30586, 751, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3060, 281, 37632, 721, 2450, 284, 257, 21669, 24308, 4637, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 20966, 2363, 12, 30586, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 21669, 24308, 4637, 37632, 721, 4788, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 10494, 1014, 4637, 20966, 2363, 12, 30586, 4781, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 17220, 281, 37632, 721, 2450, 422, 257, 21669, 24308, 4637, 13, 198, 37811, 198, 2, 886, 36996, 198, 198, 2, 3814, 569, 21999, 29123, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 1448, 198, 220, 220, 220, 1790, 12, 49736, 25, 1869, 496, 21669, 2524, 25412, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 2251, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 13610, 257, 21669, 2524, 8398, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 1351, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 7343, 21669, 2524, 25412, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 905, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 3497, 262, 3307, 286, 257, 21669, 2524, 8398, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 4296, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 10133, 6460, 286, 257, 21669, 2524, 8398, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 12233, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 23520, 257, 21669, 2524, 8398, 13, 198, 37811, 198, 198, 35194, 17816, 27349, 410, 21999, 12, 15654, 4321, 20520, 796, 37227, 198, 220, 220, 220, 2099, 25, 3141, 198, 220, 220, 220, 1790, 12, 49736, 25, 44290, 257, 35516, 12, 21886, 284, 4321, 262, 8398, 329, 257, 21669, 2524, 13, 198, 37811, 198, 2, 886, 36996, 198 ]
3.272353
1,700
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
import signal from telegram.ext import Updater, CommandHandler, MessageHandler, Filters from telegram import Sticker, InlineKeyboardButton, InlineKeyboardMarkup import logging from Utils import telegram_util, twitch_util, config_util if __name__ == '__main__': config = config_util.get_config() logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') if config_util.token_key in config and config[config_util.token_key] is not '': bot = TwitchStickersBot(token=config[config_util.token_key]) bot.start_bot() else: logging.log(logging.ERROR, f"{config_util.token_key} not in {config_util.config_path}!")
[ 11748, 6737, 198, 6738, 573, 30536, 13, 2302, 1330, 3205, 67, 729, 11, 9455, 25060, 11, 16000, 25060, 11, 7066, 1010, 198, 6738, 573, 30536, 1330, 520, 15799, 11, 554, 1370, 9218, 3526, 21864, 11, 554, 1370, 9218, 3526, 9704, 929, 198, 11748, 18931, 198, 6738, 7273, 4487, 1330, 573, 30536, 62, 22602, 11, 37366, 62, 22602, 11, 4566, 62, 22602, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 4566, 796, 4566, 62, 22602, 13, 1136, 62, 11250, 3419, 198, 220, 220, 220, 18931, 13, 35487, 16934, 7, 5715, 28, 6404, 2667, 13, 10778, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 11639, 4, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 3672, 8, 82, 532, 4064, 7, 5715, 3672, 8, 82, 532, 4064, 7, 20500, 8, 82, 11537, 628, 220, 220, 220, 611, 4566, 62, 22602, 13, 30001, 62, 2539, 287, 4566, 290, 4566, 58, 11250, 62, 22602, 13, 30001, 62, 2539, 60, 318, 407, 10148, 25, 198, 220, 220, 220, 220, 220, 220, 220, 10214, 796, 23835, 1273, 21630, 20630, 7, 30001, 28, 11250, 58, 11250, 62, 22602, 13, 30001, 62, 2539, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 10214, 13, 9688, 62, 13645, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 6404, 7, 6404, 2667, 13, 24908, 11, 277, 1, 90, 11250, 62, 22602, 13, 30001, 62, 2539, 92, 407, 287, 1391, 11250, 62, 22602, 13, 11250, 62, 6978, 92, 2474, 8, 198 ]
2.610909
275
import matplotlib.pyplot as plt import numpy as np from scipy.stats import norm import math import matplotlib.colors as colors from matplotlib import cm from matplotlib import rc __author__ = 'ernesto' # if use latex or mathtext rc('text', usetex=False) rc('mathtext', fontset='cm') # auxiliar function for plot ticks of equal length in x and y axis despite its scales. ##################################### # PARAMETERS - This can be modified # ##################################### # normal pdf standard deviation sigma1 = 1 sigma2 = sigma1 / 10 # normal pdf mean h1 = 3 h2 = h1 / 2 # maximum deviation from the mean where to plot each gaussian max_mean_dev = 3 * sigma1 ##################### # END OF PARAMETERS # ##################### # abscissa values xmin = h2 - max_mean_dev xmax = h1 + max_mean_dev x = np.linspace(xmin, xmax, 300) # normal distribution and density values in x pdf_h1 = norm.pdf(x, h1, sigma1) pdf_h1_avg = norm.pdf(x, h1, math.sqrt(sigma2)) pdf_h2 = norm.pdf(x, h2, sigma1) pdf_h2_avg = norm.pdf(x, h2, math.sqrt(sigma2)) # axis parameters dx = xmax / 20 xmin_ax = xmin - dx xmax_ax = xmax + dx ym = np.amax(pdf_h1_avg) ymax_ax = ym + ym / 10 ymin_ax = -ym / 10 # length of the ticks for all subplot (6 pixels) display_length = 6 # in pixels # x ticks labels margin xtm = -0.03 # font size fontsize = 14 # colors from coolwarm cNorm = colors.Normalize(vmin=0, vmax=1) scalarMap = cm.ScalarMappable(norm=cNorm, cmap=cm.coolwarm) col10 = scalarMap.to_rgba(0) col20 = scalarMap.to_rgba(1) fig = plt.figure(0, figsize=(10, 3), frameon=False) # PLOT OF F(x | x < a) ax = plt.subplot2grid((1, 8), (0, 0), rowspan=1, colspan=4) plt.xlim(xmin_ax, xmax_ax) plt.ylim(ymin_ax, ymax_ax) # horizontal and vertical ticks length xtl, ytl = convert_display_to_data_coordinates(ax.transData, length=display_length) # axis arrows plt.annotate("", xytext=(xmin_ax, 0), xycoords='data', xy=(xmax_ax, 0), textcoords='data', arrowprops=dict(width=0.1, headwidth=6, headlength=8, facecolor='black', shrink=0.002)) plt.annotate("", xytext=(0, ymin_ax), xycoords='data', xy=(0, ymax_ax), textcoords='data', arrowprops=dict(width=0.1, headwidth=6, headlength=8, facecolor='black', shrink=0.002)) plt.plot(x, pdf_h1, color=col10, linewidth=2) plt.plot(x, pdf_h1_avg, color=col20, linewidth=2) # xlabels and xtickslabels plt.plot([h1, h1], [0, xtl], 'k') plt.text(h1, xtm, '$h$', fontsize=fontsize, ha='center', va='top') plt.text(xmin_ax, ymax_ax-0.1, '$\\alpha=1$', fontsize=fontsize, ha='left', va='baseline') plt.axis('off') # PLOT OF F(x | x < a) ax = plt.subplot2grid((1, 8), (0, 4), rowspan=1, colspan=4) plt.xlim(xmin_ax, xmax_ax) plt.ylim(ymin_ax, ymax_ax) # axis arrows plt.annotate("", xytext=(xmin_ax, 0), xycoords='data', xy=(xmax_ax, 0), textcoords='data', arrowprops=dict(width=0.1, headwidth=6, headlength=8, facecolor='black', shrink=0.002)) plt.annotate("", xytext=(0, ymin_ax), xycoords='data', xy=(0, ymax_ax), textcoords='data', arrowprops=dict(width=0.1, headwidth=6, headlength=8, facecolor='black', shrink=0.002)) plt.plot(x, pdf_h2, color=col10, linewidth=2) plt.plot(x, pdf_h2_avg, color=col20, linewidth=2) # xlabels and xtickslabels plt.plot([h1, h1], [0, xtl], 'k') plt.text(h1, xtm, '$h$', fontsize=fontsize, ha='center', va='top') plt.plot([h2, h2], [0, xtl], 'k') plt.text(h2, xtm, '$\\dfrac{h}{2}$', fontsize=fontsize, ha='center', va='top') plt.text(xmin_ax, ymax_ax-0.1, '$\\alpha=\\dfrac{1}{2}$', fontsize=fontsize, ha='left', va='baseline') # legend leg = plt.legend(['$p(\hat{h}_i)$', '$p(\hat{h})$'], loc=1, fontsize=fontsize) leg.get_frame().set_facecolor(0.97*np.ones((3,))) leg.get_frame().set_edgecolor(0.97*np.ones((3,))) plt.axis('off') # save as pdf image plt.savefig('problem_2_4.pdf', bbox_inches='tight') plt.show()
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 629, 541, 88, 13, 34242, 1330, 2593, 198, 11748, 10688, 198, 11748, 2603, 29487, 8019, 13, 4033, 669, 355, 7577, 198, 198, 6738, 2603, 29487, 8019, 1330, 12067, 198, 6738, 2603, 29487, 8019, 1330, 48321, 198, 198, 834, 9800, 834, 796, 705, 1142, 395, 78, 6, 198, 198, 2, 611, 779, 47038, 393, 10688, 5239, 198, 6015, 10786, 5239, 3256, 514, 316, 1069, 28, 25101, 8, 198, 6015, 10786, 11018, 5239, 3256, 10369, 2617, 11639, 11215, 11537, 198, 198, 2, 27506, 4797, 2163, 329, 7110, 36066, 286, 4961, 4129, 287, 2124, 290, 331, 16488, 3805, 663, 16252, 13, 628, 198, 29113, 4242, 2, 198, 2, 29463, 2390, 2767, 4877, 532, 770, 460, 307, 9518, 1303, 198, 29113, 4242, 2, 198, 198, 2, 3487, 37124, 3210, 28833, 198, 82, 13495, 16, 796, 352, 198, 82, 13495, 17, 796, 264, 13495, 16, 1220, 838, 198, 2, 3487, 37124, 1612, 198, 71, 16, 796, 513, 198, 71, 17, 796, 289, 16, 1220, 362, 198, 198, 2, 5415, 28833, 422, 262, 1612, 810, 284, 7110, 1123, 31986, 31562, 198, 9806, 62, 32604, 62, 7959, 796, 513, 1635, 264, 13495, 16, 198, 198, 14468, 4242, 2, 198, 2, 23578, 3963, 29463, 2390, 2767, 4877, 1303, 198, 14468, 4242, 2, 198, 198, 2, 450, 1416, 13808, 3815, 198, 87, 1084, 796, 289, 17, 532, 3509, 62, 32604, 62, 7959, 198, 87, 9806, 796, 289, 16, 1343, 3509, 62, 32604, 62, 7959, 198, 198, 87, 796, 45941, 13, 21602, 10223, 7, 87, 1084, 11, 2124, 9806, 11, 5867, 8, 198, 2, 3487, 6082, 290, 12109, 3815, 287, 2124, 198, 12315, 62, 71, 16, 796, 2593, 13, 12315, 7, 87, 11, 289, 16, 11, 264, 13495, 16, 8, 198, 12315, 62, 71, 16, 62, 615, 70, 796, 2593, 13, 12315, 7, 87, 11, 289, 16, 11, 10688, 13, 31166, 17034, 7, 82, 13495, 17, 4008, 198, 12315, 62, 71, 17, 796, 2593, 13, 12315, 7, 87, 11, 289, 17, 11, 264, 13495, 16, 8, 198, 12315, 62, 71, 17, 62, 615, 70, 796, 2593, 13, 12315, 7, 87, 11, 289, 17, 11, 10688, 13, 31166, 17034, 7, 82, 13495, 17, 4008, 198, 198, 2, 16488, 10007, 198, 34350, 796, 2124, 9806, 1220, 1160, 198, 87, 1084, 62, 897, 796, 2124, 1084, 532, 44332, 198, 87, 9806, 62, 897, 796, 2124, 9806, 1343, 44332, 198, 198, 4948, 796, 45941, 13, 321, 897, 7, 12315, 62, 71, 16, 62, 615, 70, 8, 198, 4948, 897, 62, 897, 796, 331, 76, 1343, 331, 76, 1220, 838, 198, 88, 1084, 62, 897, 796, 532, 4948, 1220, 838, 198, 198, 2, 4129, 286, 262, 36066, 329, 477, 850, 29487, 357, 21, 17848, 8, 198, 13812, 62, 13664, 796, 718, 220, 1303, 287, 17848, 198, 2, 2124, 36066, 14722, 10330, 198, 742, 76, 796, 532, 15, 13, 3070, 198, 2, 10369, 2546, 198, 10331, 7857, 796, 1478, 198, 2, 7577, 422, 3608, 31975, 198, 66, 35393, 796, 7577, 13, 26447, 1096, 7, 85, 1084, 28, 15, 11, 410, 9806, 28, 16, 8, 198, 1416, 282, 283, 13912, 796, 12067, 13, 3351, 282, 283, 44, 1324, 540, 7, 27237, 28, 66, 35393, 11, 269, 8899, 28, 11215, 13, 24494, 31975, 8, 198, 4033, 940, 796, 16578, 283, 13912, 13, 1462, 62, 41345, 7012, 7, 15, 8, 198, 4033, 1238, 796, 16578, 283, 13912, 13, 1462, 62, 41345, 7012, 7, 16, 8, 198, 198, 5647, 796, 458, 83, 13, 26875, 7, 15, 11, 2336, 7857, 16193, 940, 11, 513, 828, 5739, 261, 28, 25101, 8, 198, 198, 2, 9297, 2394, 3963, 376, 7, 87, 930, 2124, 1279, 257, 8, 198, 897, 796, 458, 83, 13, 7266, 29487, 17, 25928, 19510, 16, 11, 807, 828, 357, 15, 11, 657, 828, 5752, 12626, 28, 16, 11, 951, 12626, 28, 19, 8, 198, 198, 489, 83, 13, 87, 2475, 7, 87, 1084, 62, 897, 11, 2124, 9806, 62, 897, 8, 198, 489, 83, 13, 88, 2475, 7, 88, 1084, 62, 897, 11, 331, 9806, 62, 897, 8, 198, 198, 2, 16021, 290, 11723, 36066, 4129, 198, 742, 75, 11, 331, 28781, 796, 10385, 62, 13812, 62, 1462, 62, 7890, 62, 37652, 17540, 7, 897, 13, 7645, 6601, 11, 4129, 28, 13812, 62, 13664, 8, 198, 198, 2, 16488, 20507, 198, 489, 83, 13, 34574, 378, 7203, 1600, 2124, 88, 5239, 16193, 87, 1084, 62, 897, 11, 657, 828, 2124, 88, 1073, 3669, 11639, 7890, 3256, 2124, 88, 16193, 87, 9806, 62, 897, 11, 657, 828, 2420, 1073, 3669, 11639, 7890, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15452, 1676, 862, 28, 11600, 7, 10394, 28, 15, 13, 16, 11, 1182, 10394, 28, 21, 11, 1182, 13664, 28, 23, 11, 1986, 8043, 11639, 13424, 3256, 22085, 28, 15, 13, 21601, 4008, 198, 489, 83, 13, 34574, 378, 7203, 1600, 2124, 88, 5239, 16193, 15, 11, 331, 1084, 62, 897, 828, 2124, 88, 1073, 3669, 11639, 7890, 3256, 2124, 88, 16193, 15, 11, 331, 9806, 62, 897, 828, 2420, 1073, 3669, 11639, 7890, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15452, 1676, 862, 28, 11600, 7, 10394, 28, 15, 13, 16, 11, 1182, 10394, 28, 21, 11, 1182, 13664, 28, 23, 11, 1986, 8043, 11639, 13424, 3256, 22085, 28, 15, 13, 21601, 4008, 198, 198, 489, 83, 13, 29487, 7, 87, 11, 37124, 62, 71, 16, 11, 3124, 28, 4033, 940, 11, 9493, 413, 5649, 28, 17, 8, 198, 489, 83, 13, 29487, 7, 87, 11, 37124, 62, 71, 16, 62, 615, 70, 11, 3124, 28, 4033, 1238, 11, 9493, 413, 5649, 28, 17, 8, 198, 198, 2, 2124, 23912, 1424, 290, 220, 742, 3378, 23912, 1424, 198, 489, 83, 13, 29487, 26933, 71, 16, 11, 289, 16, 4357, 685, 15, 11, 220, 742, 75, 4357, 705, 74, 11537, 198, 489, 83, 13, 5239, 7, 71, 16, 11, 220, 742, 76, 11, 705, 3, 71, 3, 3256, 10369, 7857, 28, 10331, 7857, 11, 387, 11639, 16159, 3256, 46935, 11639, 4852, 11537, 198, 489, 83, 13, 5239, 7, 87, 1084, 62, 897, 11, 331, 9806, 62, 897, 12, 15, 13, 16, 11, 705, 3, 6852, 26591, 28, 16, 3, 3256, 10369, 7857, 28, 10331, 7857, 11, 387, 11639, 9464, 3256, 46935, 11639, 12093, 4470, 11537, 628, 198, 489, 83, 13, 22704, 10786, 2364, 11537, 628, 198, 2, 9297, 2394, 3963, 376, 7, 87, 930, 2124, 1279, 257, 8, 198, 897, 796, 458, 83, 13, 7266, 29487, 17, 25928, 19510, 16, 11, 807, 828, 357, 15, 11, 604, 828, 5752, 12626, 28, 16, 11, 951, 12626, 28, 19, 8, 198, 198, 489, 83, 13, 87, 2475, 7, 87, 1084, 62, 897, 11, 2124, 9806, 62, 897, 8, 198, 489, 83, 13, 88, 2475, 7, 88, 1084, 62, 897, 11, 331, 9806, 62, 897, 8, 628, 198, 2, 16488, 20507, 198, 489, 83, 13, 34574, 378, 7203, 1600, 2124, 88, 5239, 16193, 87, 1084, 62, 897, 11, 657, 828, 2124, 88, 1073, 3669, 11639, 7890, 3256, 2124, 88, 16193, 87, 9806, 62, 897, 11, 657, 828, 2420, 1073, 3669, 11639, 7890, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15452, 1676, 862, 28, 11600, 7, 10394, 28, 15, 13, 16, 11, 1182, 10394, 28, 21, 11, 1182, 13664, 28, 23, 11, 1986, 8043, 11639, 13424, 3256, 22085, 28, 15, 13, 21601, 4008, 198, 489, 83, 13, 34574, 378, 7203, 1600, 2124, 88, 5239, 16193, 15, 11, 331, 1084, 62, 897, 828, 2124, 88, 1073, 3669, 11639, 7890, 3256, 2124, 88, 16193, 15, 11, 331, 9806, 62, 897, 828, 2420, 1073, 3669, 11639, 7890, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15452, 1676, 862, 28, 11600, 7, 10394, 28, 15, 13, 16, 11, 1182, 10394, 28, 21, 11, 1182, 13664, 28, 23, 11, 1986, 8043, 11639, 13424, 3256, 22085, 28, 15, 13, 21601, 4008, 198, 198, 489, 83, 13, 29487, 7, 87, 11, 37124, 62, 71, 17, 11, 3124, 28, 4033, 940, 11, 9493, 413, 5649, 28, 17, 8, 198, 489, 83, 13, 29487, 7, 87, 11, 37124, 62, 71, 17, 62, 615, 70, 11, 3124, 28, 4033, 1238, 11, 9493, 413, 5649, 28, 17, 8, 198, 198, 2, 2124, 23912, 1424, 290, 220, 742, 3378, 23912, 1424, 198, 489, 83, 13, 29487, 26933, 71, 16, 11, 289, 16, 4357, 685, 15, 11, 220, 742, 75, 4357, 705, 74, 11537, 198, 489, 83, 13, 5239, 7, 71, 16, 11, 220, 742, 76, 11, 705, 3, 71, 3, 3256, 10369, 7857, 28, 10331, 7857, 11, 387, 11639, 16159, 3256, 46935, 11639, 4852, 11537, 198, 489, 83, 13, 29487, 26933, 71, 17, 11, 289, 17, 4357, 685, 15, 11, 220, 742, 75, 4357, 705, 74, 11537, 198, 489, 83, 13, 5239, 7, 71, 17, 11, 220, 742, 76, 11, 705, 3, 6852, 7568, 11510, 90, 71, 18477, 17, 92, 3, 3256, 10369, 7857, 28, 10331, 7857, 11, 387, 11639, 16159, 3256, 46935, 11639, 4852, 11537, 628, 198, 489, 83, 13, 5239, 7, 87, 1084, 62, 897, 11, 331, 9806, 62, 897, 12, 15, 13, 16, 11, 705, 3, 6852, 26591, 28, 6852, 7568, 11510, 90, 16, 18477, 17, 92, 3, 3256, 10369, 7857, 28, 10331, 7857, 11, 387, 11639, 9464, 3256, 46935, 11639, 12093, 4470, 11537, 628, 198, 2, 8177, 198, 1455, 796, 458, 83, 13, 1455, 437, 7, 17816, 3, 79, 38016, 5183, 90, 71, 92, 62, 72, 8, 3, 3256, 705, 3, 79, 38016, 5183, 90, 71, 30072, 3, 6, 4357, 1179, 28, 16, 11, 10369, 7857, 28, 10331, 7857, 8, 198, 1455, 13, 1136, 62, 14535, 22446, 2617, 62, 2550, 8043, 7, 15, 13, 5607, 9, 37659, 13, 1952, 19510, 18, 11, 22305, 198, 1455, 13, 1136, 62, 14535, 22446, 2617, 62, 14907, 8043, 7, 15, 13, 5607, 9, 37659, 13, 1952, 19510, 18, 11, 22305, 198, 198, 489, 83, 13, 22704, 10786, 2364, 11537, 198, 198, 2, 3613, 355, 37124, 2939, 198, 489, 83, 13, 21928, 5647, 10786, 45573, 62, 17, 62, 19, 13, 12315, 3256, 275, 3524, 62, 45457, 11639, 33464, 11537, 198, 198, 489, 83, 13, 12860, 3419, 628 ]
2.276432
1,693
"""Generate a matplotlib canvas and add it to a QWidget contained in a QMainWindow. This will provide the display and interactions for the PyCCD plots.""" from lcmap_tap.logger import log, exc_handler from lcmap_tap.Plotting import POINTS, LINES import sys import datetime as dt import numpy as np import pkg_resources from PyQt5 import QtWidgets, QtCore from PyQt5.QtGui import QIcon, QPixmap import matplotlib matplotlib.use("Qt5Agg") from matplotlib.collections import PathCollection from matplotlib.lines import Line2D from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar sys.excepthook = exc_handler class MplCanvas(FigureCanvas): """ TODO: Add summary line """ def __init__(self, fig): """ TODO: Add Summary Args: fig: """ self.fig = fig FigureCanvas.__init__(self, self.fig) if len(fig.axes) >= 3: sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Minimum) else: sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Ignored) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) FigureCanvas.setSizePolicy(self, sizePolicy) FigureCanvas.updateGeometry(self)
[ 37811, 8645, 378, 257, 2603, 29487, 8019, 21978, 290, 751, 340, 284, 257, 1195, 38300, 7763, 287, 257, 1195, 13383, 27703, 13, 220, 770, 481, 2148, 262, 198, 13812, 290, 12213, 329, 262, 9485, 4093, 35, 21528, 526, 15931, 198, 198, 6738, 300, 66, 8899, 62, 44335, 13, 6404, 1362, 1330, 2604, 11, 2859, 62, 30281, 198, 6738, 300, 66, 8899, 62, 44335, 13, 43328, 889, 1330, 19922, 1268, 4694, 11, 43277, 1546, 198, 198, 11748, 25064, 198, 11748, 4818, 8079, 355, 288, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 279, 10025, 62, 37540, 198, 6738, 9485, 48, 83, 20, 1330, 33734, 54, 312, 11407, 11, 33734, 14055, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 8205, 72, 1330, 1195, 19578, 11, 1195, 47, 844, 8899, 198, 11748, 2603, 29487, 8019, 198, 198, 6759, 29487, 8019, 13, 1904, 7203, 48, 83, 20, 46384, 4943, 198, 6738, 2603, 29487, 8019, 13, 4033, 26448, 1330, 10644, 36307, 198, 6738, 2603, 29487, 8019, 13, 6615, 1330, 6910, 17, 35, 198, 6738, 2603, 29487, 8019, 13, 1891, 2412, 13, 1891, 437, 62, 39568, 20, 9460, 1330, 11291, 6090, 11017, 48, 5603, 1130, 355, 11291, 6090, 11017, 198, 6738, 2603, 29487, 8019, 13, 1891, 2412, 13, 1891, 437, 62, 39568, 20, 9460, 1330, 42115, 25391, 5657, 17, 48, 51, 355, 42115, 25391, 5657, 198, 198, 17597, 13, 1069, 344, 79, 400, 566, 796, 2859, 62, 30281, 628, 198, 4871, 337, 489, 6090, 11017, 7, 11337, 6090, 11017, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16926, 46, 25, 3060, 10638, 1627, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 2336, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 16926, 46, 25, 3060, 21293, 198, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2336, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5647, 796, 2336, 628, 220, 220, 220, 220, 220, 220, 220, 11291, 6090, 11017, 13, 834, 15003, 834, 7, 944, 11, 2116, 13, 5647, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 5647, 13, 897, 274, 8, 18189, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 36727, 796, 33734, 54, 312, 11407, 13, 48, 10699, 36727, 7, 48, 83, 54, 312, 11407, 13, 48, 10699, 36727, 13, 32916, 1850, 11, 33734, 54, 312, 11407, 13, 48, 10699, 36727, 13, 44046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 36727, 796, 33734, 54, 312, 11407, 13, 48, 10699, 36727, 7, 48, 83, 54, 312, 11407, 13, 48, 10699, 36727, 13, 32916, 1850, 11, 33734, 54, 312, 11407, 13, 48, 10699, 36727, 13, 32916, 1850, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2546, 36727, 13, 2617, 27991, 38342, 39181, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 36727, 13, 2617, 42369, 605, 39181, 7, 15, 8, 628, 220, 220, 220, 220, 220, 220, 220, 11291, 6090, 11017, 13, 2617, 10699, 36727, 7, 944, 11, 2546, 36727, 8, 628, 220, 220, 220, 220, 220, 220, 220, 11291, 6090, 11017, 13, 19119, 10082, 15748, 7, 944, 8, 628 ]
2.501748
572
""" Miscellaneous functions for working with files """ import os def canonicalize_path(path: str): """Converts a path string to its canonical form (easier for comparisons)""" return os.path.abspath(os.path.realpath(os.path.expanduser(path)))
[ 37811, 198, 198, 31281, 25673, 5499, 329, 1762, 351, 3696, 198, 198, 37811, 198, 198, 11748, 28686, 198, 198, 4299, 40091, 1096, 62, 6978, 7, 6978, 25, 965, 2599, 198, 220, 220, 220, 37227, 3103, 24040, 257, 3108, 4731, 284, 663, 40091, 1296, 357, 30412, 959, 329, 17909, 8, 37811, 198, 220, 220, 220, 1441, 28686, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 5305, 6978, 7, 418, 13, 6978, 13, 11201, 392, 7220, 7, 6978, 22305, 198 ]
3.135802
81
import os import _winreg def get_python_executables(): """ Find the Maya installation paths using _winreg. The path to the python executable is extended from the installation path. The dictionary is made up of keys that are made up of the Maya versions found installed and a path to the executable of that version of Maya as a value. :return: Windows maya python executables :rtype: dict """ # variables maya_pythons = {} registry = _winreg.HKEY_LOCAL_MACHINE registry_maya_path = r"SOFTWARE\Autodesk\Maya" # get maya key maya_key_data = [ registry, registry_maya_path, 0, _winreg.KEY_READ ] with _winreg.OpenKey(*maya_key_data) as maya_key: # loop keys for i in xrange(0, _winreg.QueryInfoKey(maya_key)[0]): # get version maya_version = _winreg.EnumKey(maya_key, i) # validate version if not maya_version.split(".")[0].isdigit(): continue # get install path registry_maya_install_path = os.path.join( registry_maya_path, maya_version, "Setup", "InstallPath" ) # get install key maya_install_key_data = [ registry, registry_maya_install_path, 0, _winreg.KEY_READ ] with _winreg.OpenKey(*maya_install_key_data) as maya_install_key: # get path maya_location_data = [maya_install_key, "MAYA_INSTALL_LOCATION"] maya_location = _winreg.QueryValueEx(*maya_location_data)[0] # set data maya_py = os.path.join(maya_location, "bin", "mayapy.exe") maya_pythons[maya_version] = maya_py return maya_pythons
[ 11748, 28686, 198, 11748, 4808, 5404, 2301, 628, 198, 4299, 651, 62, 29412, 62, 18558, 315, 2977, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9938, 262, 26041, 9988, 13532, 1262, 4808, 5404, 2301, 13, 383, 3108, 284, 262, 21015, 198, 220, 220, 220, 28883, 318, 7083, 422, 262, 9988, 3108, 13, 383, 22155, 318, 925, 198, 220, 220, 220, 510, 286, 8251, 326, 389, 925, 510, 286, 262, 26041, 6300, 1043, 6589, 290, 257, 220, 198, 220, 220, 220, 3108, 284, 262, 28883, 286, 326, 2196, 286, 26041, 355, 257, 1988, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1058, 7783, 25, 3964, 743, 64, 21015, 3121, 2977, 198, 220, 220, 220, 1058, 81, 4906, 25, 8633, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 9633, 198, 220, 220, 220, 743, 64, 62, 79, 5272, 684, 796, 23884, 198, 220, 220, 220, 220, 198, 220, 220, 220, 20478, 796, 4808, 5404, 2301, 13, 39, 20373, 62, 29701, 1847, 62, 44, 16219, 8881, 198, 220, 220, 220, 20478, 62, 11261, 64, 62, 6978, 796, 374, 1, 15821, 37485, 59, 16541, 4147, 74, 59, 6747, 64, 1, 628, 220, 220, 220, 1303, 651, 743, 64, 1994, 198, 220, 220, 220, 743, 64, 62, 2539, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 20478, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 20478, 62, 11261, 64, 62, 6978, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 657, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 5404, 2301, 13, 20373, 62, 15675, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 351, 4808, 5404, 2301, 13, 11505, 9218, 46491, 11261, 64, 62, 2539, 62, 7890, 8, 355, 743, 64, 62, 2539, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9052, 8251, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2124, 9521, 7, 15, 11, 4808, 5404, 2301, 13, 20746, 12360, 9218, 7, 11261, 64, 62, 2539, 38381, 15, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 9641, 796, 4808, 5404, 2301, 13, 4834, 388, 9218, 7, 11261, 64, 62, 2539, 11, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 26571, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 743, 64, 62, 9641, 13, 35312, 7203, 19570, 58, 15, 4083, 9409, 328, 270, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 2721, 3108, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 62, 11261, 64, 62, 17350, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 62, 11261, 64, 62, 6978, 11, 743, 64, 62, 9641, 11, 366, 40786, 1600, 366, 15798, 15235, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 2721, 1994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 17350, 62, 2539, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 62, 11261, 64, 62, 17350, 62, 6978, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 657, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 5404, 2301, 13, 20373, 62, 15675, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 4808, 5404, 2301, 13, 11505, 9218, 46491, 11261, 64, 62, 17350, 62, 2539, 62, 7890, 8, 355, 743, 64, 62, 17350, 62, 2539, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 3108, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 24886, 62, 7890, 796, 685, 11261, 64, 62, 17350, 62, 2539, 11, 366, 44, 4792, 32, 62, 38604, 7036, 62, 29701, 6234, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 24886, 796, 4808, 5404, 2301, 13, 20746, 11395, 3109, 46491, 11261, 64, 62, 24886, 62, 7890, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 900, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 9078, 796, 28686, 13, 6978, 13, 22179, 7, 11261, 64, 62, 24886, 11, 366, 8800, 1600, 366, 11261, 12826, 13, 13499, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 64, 62, 79, 5272, 684, 58, 11261, 64, 62, 9641, 60, 796, 743, 64, 62, 9078, 628, 220, 220, 220, 1441, 743, 64, 62, 79, 5272, 684, 198 ]
1.950455
989
"""A rule that provides file(s) specific via DefaultInfo from a given target's DefaultInfo or OutputGroupInfo """ load( "//lib/private:output_files.bzl", _make_output_files = "make_output_files", _output_files = "output_files", ) output_files = _output_files make_output_files = _make_output_files
[ 37811, 32, 3896, 326, 3769, 2393, 7, 82, 8, 2176, 2884, 15161, 12360, 422, 257, 1813, 2496, 338, 15161, 12360, 393, 25235, 13247, 12360, 198, 37811, 198, 198, 2220, 7, 198, 220, 220, 220, 366, 1003, 8019, 14, 19734, 25, 22915, 62, 16624, 13, 65, 48274, 1600, 198, 220, 220, 220, 4808, 15883, 62, 22915, 62, 16624, 796, 366, 15883, 62, 22915, 62, 16624, 1600, 198, 220, 220, 220, 4808, 22915, 62, 16624, 796, 366, 22915, 62, 16624, 1600, 198, 8, 198, 198, 22915, 62, 16624, 796, 4808, 22915, 62, 16624, 198, 15883, 62, 22915, 62, 16624, 796, 4808, 15883, 62, 22915, 62, 16624, 198 ]
2.971429
105
"""This script converts a collection of MIDI files to multitrack pianorolls. """ import os import json import argparse import warnings import pretty_midi from pypianoroll import Multitrack from utils import make_sure_path_exists, change_prefix, findall_endswith from config import CONFIG if CONFIG['multicore'] > 1: import joblib warnings.filterwarnings('ignore') def parse_args(): """Return the parsed command line arguments.""" parser = argparse.ArgumentParser() parser.add_argument('src', help="root path to the source dataset") parser.add_argument('dst', help="root path to the destination dataset") parser.add_argument('--midi-info-path', dest='midi_info_path', help="path to save the MIDI info dictionary") args = parser.parse_args() return args.src, args.dst, args.midi_info_path def get_midi_info(pm): """Return useful information from a MIDI object.""" if pm.time_signature_changes: pm.time_signature_changes.sort(key=lambda x: x.time) first_beat_time = pm.time_signature_changes[0].time else: first_beat_time = pm.estimate_beat_start() tc_times, tempi = pm.get_tempo_changes() if len(pm.time_signature_changes) == 1: time_sign = '{}/{}'.format(pm.time_signature_changes[0].numerator, pm.time_signature_changes[0].denominator) else: time_sign = None midi_info = { 'first_beat_time': first_beat_time, 'num_time_signature_change': len(pm.time_signature_changes), 'constant_time_signature': time_sign, 'constant_tempo': tempi[0] if len(tc_times) == 1 else None } return midi_info def converter(filepath, src, dst): """Convert a MIDI file to a multi-track piano-roll and save the resulting multi-track piano-roll to the destination directory. Return a tuple of `midi_md5` and useful information extracted from the MIDI file. """ try: midi_md5 = os.path.splitext(os.path.basename(filepath))[0] multitrack = Multitrack(beat_resolution=CONFIG['beat_resolution'], name=midi_md5) pm = pretty_midi.PrettyMIDI(filepath) multitrack.parse_pretty_midi(pm) midi_info = get_midi_info(pm) result_dir = change_prefix(os.path.dirname(filepath), src, dst) make_sure_path_exists(result_dir) multitrack.save(os.path.join(result_dir, midi_md5 + '.npz')) return (midi_md5, midi_info) except: return None def main(): """Main function.""" src, dst, midi_info_path = parse_args() make_sure_path_exists(dst) midi_info = {} if CONFIG['multicore'] > 1: kv_pairs = joblib.Parallel(n_jobs=CONFIG['multicore'], verbose=5)( joblib.delayed(converter)(midi_path, src, dst) for midi_path in findall_endswith('.mid', src)) for kv_pair in kv_pairs: if kv_pair is not None: midi_info[kv_pair[0]] = kv_pair[1] else: for midi_path in findall_endswith('.mid', src): kv_pair = converter(midi_path, src, dst) if kv_pair is not None: midi_info[kv_pair[0]] = kv_pair[1] if midi_info_path is not None: with open(midi_info_path, 'w') as f: json.dump(midi_info, f) print("{} files have been successfully converted".format(len(midi_info))) if __name__ == "__main__": main()
[ 37811, 1212, 4226, 26161, 257, 4947, 286, 33439, 3696, 284, 41785, 39638, 43923, 273, 33421, 13, 201, 198, 37811, 201, 198, 11748, 28686, 201, 198, 11748, 33918, 201, 198, 11748, 1822, 29572, 201, 198, 11748, 14601, 201, 198, 11748, 2495, 62, 13602, 72, 201, 198, 6738, 279, 4464, 666, 273, 692, 1330, 7854, 270, 39638, 201, 198, 6738, 3384, 4487, 1330, 787, 62, 19532, 62, 6978, 62, 1069, 1023, 11, 1487, 62, 40290, 11, 1064, 439, 62, 437, 2032, 342, 201, 198, 6738, 4566, 1330, 25626, 201, 198, 361, 25626, 17816, 16680, 291, 382, 20520, 1875, 352, 25, 201, 198, 220, 220, 220, 1330, 1693, 8019, 201, 198, 201, 198, 40539, 654, 13, 24455, 40539, 654, 10786, 46430, 11537, 201, 198, 201, 198, 4299, 21136, 62, 22046, 33529, 201, 198, 220, 220, 220, 37227, 13615, 262, 44267, 3141, 1627, 7159, 526, 15931, 201, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 201, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 10677, 3256, 1037, 2625, 15763, 3108, 284, 262, 2723, 27039, 4943, 201, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 67, 301, 3256, 1037, 2625, 15763, 3108, 284, 262, 10965, 27039, 4943, 201, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 438, 13602, 72, 12, 10951, 12, 6978, 3256, 2244, 11639, 13602, 72, 62, 10951, 62, 6978, 3256, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 6978, 284, 3613, 262, 33439, 7508, 22155, 4943, 201, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 201, 198, 220, 220, 220, 1441, 26498, 13, 10677, 11, 26498, 13, 67, 301, 11, 26498, 13, 13602, 72, 62, 10951, 62, 6978, 201, 198, 201, 198, 4299, 651, 62, 13602, 72, 62, 10951, 7, 4426, 2599, 201, 198, 220, 220, 220, 37227, 13615, 4465, 1321, 422, 257, 33439, 2134, 526, 15931, 201, 198, 220, 220, 220, 611, 9114, 13, 2435, 62, 12683, 1300, 62, 36653, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9114, 13, 2435, 62, 12683, 1300, 62, 36653, 13, 30619, 7, 2539, 28, 50033, 2124, 25, 2124, 13, 2435, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 717, 62, 12945, 62, 2435, 796, 9114, 13, 2435, 62, 12683, 1300, 62, 36653, 58, 15, 4083, 2435, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 717, 62, 12945, 62, 2435, 796, 9114, 13, 395, 1920, 62, 12945, 62, 9688, 3419, 201, 198, 201, 198, 220, 220, 220, 37096, 62, 22355, 11, 2169, 14415, 796, 9114, 13, 1136, 62, 11498, 7501, 62, 36653, 3419, 201, 198, 201, 198, 220, 220, 220, 611, 18896, 7, 4426, 13, 2435, 62, 12683, 1300, 62, 36653, 8, 6624, 352, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 640, 62, 12683, 796, 705, 90, 92, 14, 90, 92, 4458, 18982, 7, 4426, 13, 2435, 62, 12683, 1300, 62, 36653, 58, 15, 4083, 77, 6975, 1352, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9114, 13, 2435, 62, 12683, 1300, 62, 36653, 58, 15, 4083, 6559, 6351, 1352, 8, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 640, 62, 12683, 796, 6045, 201, 198, 201, 198, 220, 220, 220, 3095, 72, 62, 10951, 796, 1391, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 11085, 62, 12945, 62, 2435, 10354, 717, 62, 12945, 62, 2435, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22510, 62, 2435, 62, 12683, 1300, 62, 3803, 10354, 18896, 7, 4426, 13, 2435, 62, 12683, 1300, 62, 36653, 828, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9979, 415, 62, 2435, 62, 12683, 1300, 10354, 640, 62, 12683, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9979, 415, 62, 11498, 7501, 10354, 2169, 14415, 58, 15, 60, 611, 18896, 7, 23047, 62, 22355, 8, 6624, 352, 2073, 6045, 201, 198, 220, 220, 220, 1782, 201, 198, 201, 198, 220, 220, 220, 1441, 3095, 72, 62, 10951, 201, 198, 201, 198, 4299, 38394, 7, 7753, 6978, 11, 12351, 11, 29636, 2599, 201, 198, 220, 220, 220, 37227, 3103, 1851, 257, 33439, 2393, 284, 257, 5021, 12, 11659, 19132, 12, 2487, 290, 3613, 262, 201, 198, 220, 220, 220, 7186, 5021, 12, 11659, 19132, 12, 2487, 284, 262, 10965, 8619, 13, 8229, 257, 201, 198, 220, 220, 220, 46545, 286, 4600, 13602, 72, 62, 9132, 20, 63, 290, 4465, 1321, 21242, 422, 262, 33439, 2393, 13, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 72, 62, 9132, 20, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 418, 13, 6978, 13, 12093, 12453, 7, 7753, 6978, 4008, 58, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 41785, 39638, 796, 7854, 270, 39638, 7, 12945, 62, 29268, 28, 10943, 16254, 17816, 12945, 62, 29268, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 13602, 72, 62, 9132, 20, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9114, 796, 2495, 62, 13602, 72, 13, 35700, 44, 2389, 40, 7, 7753, 6978, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 41785, 39638, 13, 29572, 62, 37784, 62, 13602, 72, 7, 4426, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 72, 62, 10951, 796, 651, 62, 13602, 72, 62, 10951, 7, 4426, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 62, 15908, 796, 1487, 62, 40290, 7, 418, 13, 6978, 13, 15908, 3672, 7, 7753, 6978, 828, 12351, 11, 29636, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 787, 62, 19532, 62, 6978, 62, 1069, 1023, 7, 20274, 62, 15908, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 41785, 39638, 13, 21928, 7, 418, 13, 6978, 13, 22179, 7, 20274, 62, 15908, 11, 3095, 72, 62, 9132, 20, 1343, 45302, 37659, 89, 6, 4008, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 13602, 72, 62, 9132, 20, 11, 3095, 72, 62, 10951, 8, 201, 198, 201, 198, 220, 220, 220, 2845, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 201, 198, 201, 198, 4299, 1388, 33529, 201, 198, 220, 220, 220, 37227, 13383, 2163, 526, 15931, 201, 198, 220, 220, 220, 12351, 11, 29636, 11, 3095, 72, 62, 10951, 62, 6978, 796, 21136, 62, 22046, 3419, 201, 198, 220, 220, 220, 787, 62, 19532, 62, 6978, 62, 1069, 1023, 7, 67, 301, 8, 201, 198, 220, 220, 220, 3095, 72, 62, 10951, 796, 23884, 201, 198, 201, 198, 220, 220, 220, 611, 25626, 17816, 16680, 291, 382, 20520, 1875, 352, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 479, 85, 62, 79, 3468, 796, 1693, 8019, 13, 10044, 29363, 7, 77, 62, 43863, 28, 10943, 16254, 17816, 16680, 291, 382, 6, 4357, 15942, 577, 28, 20, 5769, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1693, 8019, 13, 12381, 16548, 7, 1102, 332, 353, 5769, 13602, 72, 62, 6978, 11, 12351, 11, 29636, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 3095, 72, 62, 6978, 287, 1064, 439, 62, 437, 2032, 342, 7, 4458, 13602, 3256, 12351, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 85, 62, 24874, 287, 479, 85, 62, 79, 3468, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 479, 85, 62, 24874, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3095, 72, 62, 10951, 58, 74, 85, 62, 24874, 58, 15, 11907, 796, 479, 85, 62, 24874, 58, 16, 60, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 3095, 72, 62, 6978, 287, 1064, 439, 62, 437, 2032, 342, 7, 4458, 13602, 3256, 12351, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 85, 62, 24874, 796, 38394, 7, 13602, 72, 62, 6978, 11, 12351, 11, 29636, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 479, 85, 62, 24874, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3095, 72, 62, 10951, 58, 74, 85, 62, 24874, 58, 15, 11907, 796, 479, 85, 62, 24874, 58, 16, 60, 201, 198, 201, 198, 220, 220, 220, 611, 3095, 72, 62, 10951, 62, 6978, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 13602, 72, 62, 10951, 62, 6978, 11, 705, 86, 11537, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33918, 13, 39455, 7, 13602, 72, 62, 10951, 11, 277, 8, 201, 198, 201, 198, 220, 220, 220, 3601, 7203, 90, 92, 3696, 423, 587, 7675, 11513, 1911, 18982, 7, 11925, 7, 13602, 72, 62, 10951, 22305, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 201, 198, 220, 220, 220, 1388, 3419, 201, 198 ]
2.191004
1,623
from flask import request, current_app import jwt from app.models.auth import User from app.api import api # required_token decorator
[ 6738, 42903, 1330, 2581, 11, 1459, 62, 1324, 198, 11748, 474, 46569, 198, 198, 6738, 598, 13, 27530, 13, 18439, 1330, 11787, 198, 6738, 598, 13, 15042, 1330, 40391, 628, 198, 2, 2672, 62, 30001, 11705, 1352, 198 ]
3.605263
38
#!/usr/bin/env python # -*- coding: utf-8 -*- """Fetches audit log data from the Mimecast API and saves to a folder for Sumo Logic data collection""" import base64 import hashlib import hmac import json import logging import os import pickle import uuid import time import datetime import sys from os.path import dirname, abspath import requests # Program Start with open(os.path.join(os.path.join(dirname(dirname(abspath(__file__))), 'checkpoint', 'config.txt')), 'rb') as f: config = pickle.load(f) log_dir = os.path.join(os.path.join(dirname(dirname(abspath(__file__))), 'log')) log_name = 'audit_' + datetime.datetime.utcnow().strftime('%d%m%Y') + '.log' logging.basicConfig(filename=os.path.join(log_dir, log_name), level=logging.INFO, format='%(levelname)s|%(asctime)s|%(message)s') account_code = config['account_code'] if len(account_code) < 0: logging.error('Log collection aborted. Account code not found, exiting.') sys.exit() logging.info('***** Mimecast Data Collector for Sumo Logic v1.0 *****') logging.info('Starting audit log collection for ' + account_code) data_dir = config['data_dir'] if len(data_dir) < 0: logging.error('Data directory not set, exiting.') sys.exit() logging.info('Using data directory: ' + data_dir) access_key = config['access_key'] if len(access_key) < 0: logging.error('Access Key not set, exiting.') sys.exit() secret_key = config['secret_key'] if len(secret_key) < 0: logging.error('Secret Key not set, exiting.') sys.exit() api_base_url = config['api_base_url'] if len(api_base_url) < 0: logging.error('API base URL not set, exiting.') sys.exit() if os.path.exists(os.path.join(dirname(dirname(abspath(__file__))), 'checkpoint', 'checkpoint_audit_start')): with open(os.path.join(dirname(dirname(abspath(__file__))), 'checkpoint', 'checkpoint_audit_start')) as csd: start = csd.read() else: start = get_iso_time(60) end = get_iso_time(0) while get_audit_logs(start=start, end=end) is True: logging.info('Collecting Audit logs') #Clean up data files remove_files(os.path.join(dirname(dirname(abspath(__file__))), 'log')) #Clean up log files remove_files(os.path.join(data_dir, 'audit')) logging.info('Audit log collection complete') sys.exit()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 37811, 37, 316, 2052, 14984, 2604, 1366, 422, 262, 337, 524, 2701, 7824, 290, 16031, 284, 257, 9483, 329, 5060, 78, 30146, 1366, 4947, 37811, 198, 198, 11748, 2779, 2414, 198, 11748, 12234, 8019, 198, 11748, 289, 20285, 198, 11748, 33918, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 2298, 293, 198, 11748, 334, 27112, 198, 11748, 640, 198, 11748, 4818, 8079, 198, 11748, 25064, 198, 6738, 28686, 13, 6978, 1330, 26672, 3672, 11, 2352, 6978, 198, 198, 11748, 7007, 628, 628, 198, 198, 2, 6118, 7253, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 22179, 7, 15908, 3672, 7, 15908, 3672, 7, 397, 2777, 776, 7, 834, 7753, 834, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9122, 4122, 3256, 705, 11250, 13, 14116, 11537, 828, 705, 26145, 11537, 355, 277, 25, 198, 220, 220, 220, 4566, 796, 2298, 293, 13, 2220, 7, 69, 8, 198, 198, 6404, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 22179, 7, 15908, 3672, 7, 15908, 3672, 7, 397, 2777, 776, 7, 834, 7753, 834, 4008, 828, 705, 6404, 6, 4008, 198, 198, 6404, 62, 3672, 796, 705, 3885, 270, 62, 6, 1343, 4818, 8079, 13, 19608, 8079, 13, 315, 66, 2197, 22446, 2536, 31387, 10786, 4, 67, 4, 76, 4, 56, 11537, 1343, 45302, 6404, 6, 198, 6404, 2667, 13, 35487, 16934, 7, 34345, 28, 418, 13, 6978, 13, 22179, 7, 6404, 62, 15908, 11, 2604, 62, 3672, 828, 1241, 28, 6404, 2667, 13, 10778, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 11639, 4, 7, 5715, 3672, 8, 82, 91, 4, 7, 292, 310, 524, 8, 82, 91, 4, 7, 20500, 8, 82, 11537, 198, 198, 23317, 62, 8189, 796, 4566, 17816, 23317, 62, 8189, 20520, 198, 361, 18896, 7, 23317, 62, 8189, 8, 1279, 657, 25, 198, 220, 220, 220, 18931, 13, 18224, 10786, 11187, 4947, 46847, 13, 10781, 2438, 407, 1043, 11, 33895, 2637, 8, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 198, 6404, 2667, 13, 10951, 10786, 35625, 337, 524, 2701, 6060, 17573, 329, 5060, 78, 30146, 410, 16, 13, 15, 25998, 9, 11537, 198, 6404, 2667, 13, 10951, 10786, 22851, 14984, 2604, 4947, 329, 705, 1343, 1848, 62, 8189, 8, 198, 198, 7890, 62, 15908, 796, 4566, 17816, 7890, 62, 15908, 20520, 198, 361, 18896, 7, 7890, 62, 15908, 8, 1279, 657, 25, 198, 220, 220, 220, 18931, 13, 18224, 10786, 6601, 8619, 407, 900, 11, 33895, 2637, 8, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 6404, 2667, 13, 10951, 10786, 12814, 1366, 8619, 25, 705, 1343, 1366, 62, 15908, 8, 198, 198, 15526, 62, 2539, 796, 4566, 17816, 15526, 62, 2539, 20520, 198, 361, 18896, 7, 15526, 62, 2539, 8, 1279, 657, 25, 198, 220, 220, 220, 18931, 13, 18224, 10786, 15457, 7383, 407, 900, 11, 33895, 2637, 8, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 21078, 62, 2539, 796, 4566, 17816, 21078, 62, 2539, 20520, 198, 361, 18896, 7, 21078, 62, 2539, 8, 1279, 657, 25, 198, 220, 220, 220, 18931, 13, 18224, 10786, 23725, 7383, 407, 900, 11, 33895, 2637, 8, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 15042, 62, 8692, 62, 6371, 796, 4566, 17816, 15042, 62, 8692, 62, 6371, 20520, 198, 361, 18896, 7, 15042, 62, 8692, 62, 6371, 8, 1279, 657, 25, 198, 220, 220, 220, 18931, 13, 18224, 10786, 17614, 2779, 10289, 407, 900, 11, 33895, 2637, 8, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 198, 361, 28686, 13, 6978, 13, 1069, 1023, 7, 418, 13, 6978, 13, 22179, 7, 15908, 3672, 7, 15908, 3672, 7, 397, 2777, 776, 7, 834, 7753, 834, 4008, 828, 705, 9122, 4122, 3256, 705, 9122, 4122, 62, 3885, 270, 62, 9688, 11537, 2599, 198, 220, 220, 220, 351, 1280, 7, 418, 13, 6978, 13, 22179, 7, 15908, 3672, 7, 15908, 3672, 7, 397, 2777, 776, 7, 834, 7753, 834, 4008, 828, 705, 9122, 4122, 3256, 705, 9122, 4122, 62, 3885, 270, 62, 9688, 6, 4008, 355, 269, 21282, 25, 198, 220, 220, 220, 220, 220, 220, 220, 923, 796, 269, 21282, 13, 961, 3419, 198, 17772, 25, 198, 220, 220, 220, 923, 796, 651, 62, 26786, 62, 2435, 7, 1899, 8, 198, 198, 437, 796, 651, 62, 26786, 62, 2435, 7, 15, 8, 198, 198, 4514, 651, 62, 3885, 270, 62, 6404, 82, 7, 9688, 28, 9688, 11, 886, 28, 437, 8, 318, 6407, 25, 198, 220, 220, 220, 18931, 13, 10951, 10786, 31337, 278, 46450, 17259, 11537, 198, 198, 2, 32657, 510, 1366, 3696, 198, 28956, 62, 16624, 7, 418, 13, 6978, 13, 22179, 7, 15908, 3672, 7, 15908, 3672, 7, 397, 2777, 776, 7, 834, 7753, 834, 4008, 828, 705, 6404, 6, 4008, 198, 2, 32657, 510, 2604, 3696, 198, 28956, 62, 16624, 7, 418, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 3885, 270, 6, 4008, 198, 6404, 2667, 13, 10951, 10786, 16353, 270, 2604, 4947, 1844, 11537, 198, 17597, 13, 37023, 3419, 198 ]
2.570166
905
import unittest from core.poly_parser import * if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 6738, 4755, 13, 35428, 62, 48610, 1330, 1635, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.621622
37
from typing import List, Optional from dataclasses import dataclass from botbuilder.schema import ActivityTypes, Activity from botbuilder.core import MessageFactory from botbuilder.dialogs import ( WaterfallDialog, WaterfallStepContext, DialogTurnResult, PromptOptions, Choice, ChoicePrompt, ) from botbuilder.dialogs.prompts import OAuthPrompt, OAuthPromptSettings from cards import get_azure_vms_card, AZURE_VMS_CARD_MAX_VMS from dialogs import LogoutDialog from cloud_clients import AzureClient from cloud_models.azure import Subscription, Vm @dataclass
[ 6738, 19720, 1330, 7343, 11, 32233, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 10214, 38272, 13, 15952, 2611, 1330, 24641, 31431, 11, 24641, 198, 6738, 10214, 38272, 13, 7295, 1330, 16000, 22810, 198, 6738, 10214, 38272, 13, 38969, 18463, 1330, 357, 198, 220, 220, 220, 5638, 7207, 44204, 11, 198, 220, 220, 220, 5638, 7207, 8600, 21947, 11, 198, 220, 220, 220, 21269, 519, 17278, 23004, 11, 198, 220, 220, 220, 45965, 29046, 11, 198, 220, 220, 220, 18502, 11, 198, 220, 220, 220, 18502, 24129, 457, 11, 198, 8, 198, 6738, 10214, 38272, 13, 38969, 18463, 13, 16963, 457, 82, 1330, 440, 30515, 24129, 457, 11, 440, 30515, 24129, 457, 26232, 198, 198, 6738, 4116, 1330, 651, 62, 1031, 495, 62, 85, 907, 62, 9517, 11, 26253, 11335, 62, 53, 5653, 62, 34, 9795, 62, 22921, 62, 53, 5653, 198, 6738, 17310, 82, 1330, 5972, 448, 44204, 198, 198, 6738, 6279, 62, 565, 2334, 1330, 22134, 11792, 198, 6738, 6279, 62, 27530, 13, 1031, 495, 1330, 3834, 33584, 11, 569, 76, 628, 198, 31, 19608, 330, 31172, 628 ]
3.202186
183
# Theory: Introduction to Python # Computer science has been around for a while, and # programming languages are one of its main tools. These are # designed to help us implement software to run on a computer. # Just as natural languages for people, they serve as a # communication tool, only between people and machines. In this # topic, we will learn about the one exponentially gaining # popularity among developers recently. Behold, this is an # introduction to Python! # 1. What is Python? # Python is a modern general-purpose programming language # initially developed by a Dutch programmer named Guido van # Rossum in the late 1980s. The name comes from the popular # Monty Python show, not the snake, as you might think. This # language has a clean, uniform, and well-readable syntax and is # designed to be easy to learn and use in practice. # Nowadays, Python is one of the most popular programming # languages worldwide, according to the TIOBE index. The # number of programmers who use it is growing every day! # The language has a huge community of developers around the # world. If you have a problem, you can always ask other # programmers for help or find a suitable answer on a site like # Stack Overflow. # Developing software with Python is easy and fun! # Python has a wide range of possible applications, especially in: # - Web development; # - Data science (including machine learning); # - Scripting (task automation, such as text processing or simulation of typical user actions). # It is also used in desktop development, though less commonly. # 2. Python is data science # Python's huge popularity in recent years is mostly due to its use # in data science. What makes it better than other languages for # this purpose. Well, there's a number of reasons: # - Its simple syntax allows people from non-programming # backgrounds to use it for data processing and model # training without spending much time learning a new # language. # - Python supports a very large number of third-party # libraries for machine learning, neural networks, statistics, # numeric calculations, which makes your job much # easier. # - With Python, it is possible to collect, clean, and explore # data, as well as train models and visualize the results - all # in one setting! # - Python ML developers' community is very large, so you # can always find support for your tasks. # As you can see, Python doest have a lot to offer for data science # enthusiats. # 3. A short history of Python # Like other programming languages, Python has gone through # a number of versions. Python 1.0 was released in 1994 and laid # the basic principles of the language with emphasis on simplicity. # # Python 2.0 was released in 2000. This version has become very # popular among programmers. Different 2.x subversions (2.6, # 2.7) are still used in various projects and libraries. The symbol x # in 2.x means any subversion of Python 2. # # Python 3.0 was the next major version released in 2008. It # broke backward compatibility with its predecessors in order to # rid the language of historic clutter and make Python more # readable and consistent. # # Today, two similar but incompatible versions of Python are # commonly used. # Throughout this course, we will be working with Python # 3.x. # 4. First program example # Here is a single line of Python that prints Learn Python to # be great!. print("Learn Python to be great!") # For now, you do not need to understand how this code works: # just appreciate its beautiful syntax that isn't too far from normal # English. # 5. Summary # Let's summarize what we've learned in this topic: # - what Python is; # - it applications; # - the reasons why Python is so popular in the field of data # science; # - the history of the language; # - how to write simple code in Python. # Now, when you know the most basic things about Python, you're # all setteld to continue your journey into it!
[ 2, 17003, 25, 22395, 284, 11361, 198, 2, 13851, 3783, 468, 587, 1088, 329, 257, 981, 11, 290, 198, 2, 8300, 8950, 389, 530, 286, 663, 1388, 4899, 13, 2312, 389, 198, 2, 3562, 284, 1037, 514, 3494, 3788, 284, 1057, 319, 257, 3644, 13, 198, 2, 2329, 355, 3288, 8950, 329, 661, 11, 484, 4691, 355, 257, 198, 2, 6946, 2891, 11, 691, 1022, 661, 290, 8217, 13, 554, 428, 198, 2, 7243, 11, 356, 481, 2193, 546, 262, 530, 35529, 13977, 198, 2, 11533, 1871, 6505, 2904, 13, 1355, 2946, 11, 428, 318, 281, 198, 2, 9793, 284, 11361, 0, 198, 198, 2, 352, 13, 1867, 318, 11361, 30, 198, 2, 11361, 318, 257, 3660, 2276, 12, 29983, 8300, 3303, 198, 2, 7317, 4166, 416, 257, 10914, 24292, 3706, 1962, 17305, 5719, 198, 2, 9847, 388, 287, 262, 2739, 7169, 82, 13, 383, 1438, 2058, 422, 262, 2968, 198, 2, 5575, 88, 11361, 905, 11, 407, 262, 17522, 11, 355, 345, 1244, 892, 13, 770, 198, 2, 3303, 468, 257, 3424, 11, 8187, 11, 290, 880, 12, 46155, 15582, 290, 318, 198, 2, 3562, 284, 307, 2562, 284, 2193, 290, 779, 287, 3357, 13, 198, 198, 2, 2735, 20544, 11, 11361, 318, 530, 286, 262, 749, 2968, 8300, 198, 2, 8950, 8688, 11, 1864, 284, 262, 309, 9399, 12473, 6376, 13, 383, 198, 2, 1271, 286, 24867, 508, 779, 340, 318, 3957, 790, 1110, 0, 198, 2, 383, 3303, 468, 257, 3236, 2055, 286, 6505, 1088, 262, 198, 2, 995, 13, 1002, 345, 423, 257, 1917, 11, 345, 460, 1464, 1265, 584, 198, 2, 24867, 329, 1037, 393, 1064, 257, 11080, 3280, 319, 257, 2524, 588, 198, 2, 23881, 3827, 11125, 13, 198, 198, 2, 6013, 278, 3788, 351, 11361, 318, 2562, 290, 1257, 0, 198, 198, 2, 11361, 468, 257, 3094, 2837, 286, 1744, 5479, 11, 2592, 287, 25, 198, 198, 2, 532, 5313, 2478, 26, 198, 2, 532, 6060, 3783, 357, 8201, 4572, 4673, 1776, 198, 2, 532, 12327, 278, 357, 35943, 22771, 11, 884, 355, 2420, 7587, 393, 18640, 286, 7226, 2836, 4028, 737, 198, 2, 632, 318, 635, 973, 287, 11364, 2478, 11, 996, 1342, 8811, 13, 198, 198, 2, 362, 13, 11361, 318, 1366, 3783, 198, 2, 11361, 338, 3236, 11533, 287, 2274, 812, 318, 4632, 2233, 284, 663, 779, 198, 2, 287, 1366, 3783, 13, 1867, 1838, 340, 1365, 621, 584, 8950, 329, 198, 2, 428, 4007, 13, 3894, 11, 612, 338, 257, 1271, 286, 3840, 25, 198, 2, 532, 6363, 2829, 15582, 3578, 661, 422, 1729, 12, 23065, 2229, 198, 2, 220, 220, 19063, 284, 779, 340, 329, 1366, 7587, 290, 2746, 198, 2, 220, 220, 3047, 1231, 4581, 881, 640, 4673, 257, 649, 198, 2, 220, 220, 3303, 13, 198, 2, 532, 11361, 6971, 257, 845, 1588, 1271, 286, 2368, 12, 10608, 198, 2, 220, 220, 12782, 329, 4572, 4673, 11, 17019, 7686, 11, 7869, 11, 198, 2, 220, 220, 35575, 16765, 11, 543, 1838, 534, 1693, 881, 198, 2, 220, 220, 4577, 13, 198, 2, 532, 2080, 11361, 11, 340, 318, 1744, 284, 2824, 11, 3424, 11, 290, 7301, 198, 2, 220, 220, 1366, 11, 355, 880, 355, 4512, 4981, 290, 38350, 262, 2482, 532, 477, 198, 2, 220, 220, 287, 530, 4634, 0, 198, 2, 532, 11361, 10373, 6505, 6, 2055, 318, 845, 1588, 11, 523, 345, 198, 2, 220, 220, 460, 1464, 1064, 1104, 329, 534, 8861, 13, 198, 198, 2, 1081, 345, 460, 766, 11, 11361, 466, 395, 423, 257, 1256, 284, 2897, 329, 1366, 3783, 198, 2, 11273, 1381, 13, 198, 198, 2, 513, 13, 317, 1790, 2106, 286, 11361, 198, 2, 4525, 584, 8300, 8950, 11, 11361, 468, 3750, 832, 198, 2, 257, 1271, 286, 6300, 13, 11361, 352, 13, 15, 373, 2716, 287, 9162, 290, 8104, 198, 2, 262, 4096, 7811, 286, 262, 3303, 351, 12476, 319, 21654, 13, 198, 2, 198, 2, 11361, 362, 13, 15, 373, 2716, 287, 4751, 13, 770, 2196, 468, 1716, 845, 198, 2, 2968, 1871, 24867, 13, 20615, 362, 13, 87, 850, 47178, 357, 17, 13, 21, 11, 198, 2, 362, 13, 22, 8, 389, 991, 973, 287, 2972, 4493, 290, 12782, 13, 383, 6194, 2124, 198, 2, 287, 362, 13, 87, 1724, 597, 850, 9641, 286, 11361, 362, 13, 198, 2, 198, 2, 11361, 513, 13, 15, 373, 262, 1306, 1688, 2196, 2716, 287, 3648, 13, 632, 198, 2, 6265, 19528, 17764, 351, 663, 27677, 287, 1502, 284, 198, 2, 5755, 262, 3303, 286, 9566, 45343, 290, 787, 11361, 517, 198, 2, 31744, 290, 6414, 13, 198, 2, 198, 2, 6288, 11, 734, 2092, 475, 27294, 6300, 286, 11361, 389, 198, 2, 8811, 973, 13, 198, 198, 2, 220, 220, 220, 220, 220, 220, 24581, 428, 1781, 11, 356, 481, 307, 1762, 351, 11361, 198, 2, 220, 220, 220, 220, 220, 220, 513, 13, 87, 13, 198, 198, 2, 604, 13, 3274, 1430, 1672, 198, 2, 3423, 318, 257, 2060, 1627, 286, 11361, 326, 20842, 14365, 11361, 284, 198, 2, 307, 1049, 43179, 198, 198, 4798, 7203, 20238, 11361, 284, 307, 1049, 2474, 8, 198, 198, 2, 1114, 783, 11, 345, 466, 407, 761, 284, 1833, 703, 428, 2438, 2499, 25, 198, 2, 655, 9144, 663, 4950, 15582, 326, 2125, 470, 1165, 1290, 422, 3487, 198, 2, 3594, 13, 198, 198, 2, 642, 13, 21293, 198, 2, 3914, 338, 35743, 644, 356, 1053, 4499, 287, 428, 7243, 25, 198, 2, 532, 644, 11361, 318, 26, 198, 2, 532, 340, 5479, 26, 198, 2, 532, 262, 3840, 1521, 11361, 318, 523, 2968, 287, 262, 2214, 286, 1366, 198, 2, 220, 220, 3783, 26, 198, 2, 532, 262, 2106, 286, 262, 3303, 26, 198, 2, 532, 703, 284, 3551, 2829, 2438, 287, 11361, 13, 198, 198, 2, 2735, 11, 618, 345, 760, 262, 749, 4096, 1243, 546, 11361, 11, 345, 821, 198, 2, 477, 900, 660, 335, 284, 2555, 534, 7002, 656, 340, 0, 198 ]
4.026342
987
from __future__ import print_function import pytest import requests from jenkinsapi.jenkins import Requester from jenkinsapi.custom_exceptions import JenkinsAPIException from mock import patch @patch('jenkinsapi.jenkins.Requester.AUTH_COOKIE', 'FAKE') @patch('jenkinsapi.jenkins.Requester.AUTH_COOKIE', 'FAKE')
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 12972, 9288, 198, 11748, 7007, 198, 6738, 474, 268, 5331, 15042, 13, 48796, 5331, 1330, 9394, 7834, 198, 6738, 474, 268, 5331, 15042, 13, 23144, 62, 1069, 11755, 1330, 21835, 17614, 16922, 198, 6738, 15290, 1330, 8529, 628, 628, 628, 628, 628, 628, 628, 198, 31, 17147, 10786, 48796, 5331, 15042, 13, 48796, 5331, 13, 16844, 7834, 13, 32, 24318, 62, 34, 15308, 10008, 3256, 705, 7708, 7336, 11537, 628, 198, 31, 17147, 10786, 48796, 5331, 15042, 13, 48796, 5331, 13, 16844, 7834, 13, 32, 24318, 62, 34, 15308, 10008, 3256, 705, 7708, 7336, 11537, 628, 628, 628, 628, 628, 628, 628, 628, 198 ]
3.008772
114
from flask import Blueprint, flash, redirect, render_template, request, url_for from flask_login import login_required from app.dao.rent import get_all_rentcodes from app.dao.money import get_acc_descs, get_moneydets, get_money_item, toggle_cleared from app.main.money import collect_search_filter, mget_money_acc, mget_money_items, mget_moneydict, \ mpost_money_acc, \ mpost_money_item, mpost_transfer from app.main.dashboard import mget_recent_money_searches, mpost_recent_money, mpost_search from app import db money_bp = Blueprint('money_bp', __name__) @money_bp.route('/money', methods=['GET', 'POST']) @money_bp.route('/money_acc/<int:acc_id>', methods=['GET', 'POST']) @login_required @money_bp.route('/money_item/<int:money_item_id>', methods=['GET', 'POST']) @money_bp.route('/money_items/<int:acc_id>', methods=["GET", "POST"]) @login_required @money_bp.route('/money_save_search', methods=['GET', 'POST']) @money_bp.route('/money_transfer/<int:acc_id>', methods=["GET", "POST"]) @login_required @money_bp.route('/toggle/<int:money_item_id>', methods=['GET', 'POST'])
[ 6738, 42903, 1330, 39932, 11, 7644, 11, 18941, 11, 8543, 62, 28243, 11, 220, 2581, 11, 19016, 62, 1640, 198, 6738, 42903, 62, 38235, 1330, 17594, 62, 35827, 198, 6738, 598, 13, 67, 5488, 13, 1156, 1330, 651, 62, 439, 62, 1156, 40148, 198, 6738, 598, 13, 67, 5488, 13, 26316, 1330, 651, 62, 4134, 62, 20147, 82, 11, 651, 62, 26316, 67, 1039, 11, 651, 62, 26316, 62, 9186, 11, 19846, 62, 2375, 1144, 198, 6738, 598, 13, 12417, 13, 26316, 1330, 2824, 62, 12947, 62, 24455, 11, 285, 1136, 62, 26316, 62, 4134, 11, 285, 1136, 62, 26316, 62, 23814, 11, 285, 1136, 62, 26316, 11600, 11, 3467, 198, 220, 220, 220, 285, 7353, 62, 26316, 62, 4134, 11, 3467, 198, 220, 220, 220, 285, 7353, 62, 26316, 62, 9186, 11, 285, 7353, 62, 39437, 198, 6738, 598, 13, 12417, 13, 42460, 3526, 1330, 285, 1136, 62, 49921, 62, 26316, 62, 325, 283, 2052, 11, 285, 7353, 62, 49921, 62, 26316, 11, 285, 7353, 62, 12947, 198, 6738, 598, 1330, 20613, 198, 198, 26316, 62, 46583, 796, 39932, 10786, 26316, 62, 46583, 3256, 11593, 3672, 834, 8, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 62, 4134, 14, 27, 600, 25, 4134, 62, 312, 29, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 198, 31, 38235, 62, 35827, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 62, 9186, 14, 27, 600, 25, 26316, 62, 9186, 62, 312, 29, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 62, 23814, 14, 27, 600, 25, 4134, 62, 312, 29, 3256, 5050, 28, 14692, 18851, 1600, 366, 32782, 8973, 8, 198, 31, 38235, 62, 35827, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 62, 21928, 62, 12947, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 26316, 62, 39437, 14, 27, 600, 25, 4134, 62, 312, 29, 3256, 5050, 28, 14692, 18851, 1600, 366, 32782, 8973, 8, 198, 31, 38235, 62, 35827, 628, 198, 31, 26316, 62, 46583, 13, 38629, 10786, 14, 44256, 14, 27, 600, 25, 26316, 62, 9186, 62, 312, 29, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 198 ]
2.70098
408
from synonym_dict import SynonymDict, SynonymSet class QuantitySynonyms(SynonymSet): """ QuantitySynonyms are string terms that all refer to the same quantity of measure. They must all have the same unit, because they are used to define the unit of measure of flowables. To repeat: quantity instances that have the same dimensionality but different units (e.g. kWh and MJ) are NOT SYNONYMS but distinct quantities. The LciaEngine should be able to handle conversions between these kinds of quantities. """ @classmethod @property @quantity.setter def _save_synonyms(self, other): """ adds to other's synonym set- :param other: :return: """ for k in other.terms: self._quantity.add_synonym(k) @property @property
[ 6738, 6171, 5177, 62, 11600, 1330, 16065, 5177, 35, 713, 11, 16065, 5177, 7248, 628, 628, 198, 198, 4871, 39789, 29934, 43612, 7, 29934, 5177, 7248, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 39789, 29934, 43612, 389, 4731, 2846, 326, 477, 3522, 284, 262, 976, 12040, 286, 3953, 13, 1119, 1276, 477, 423, 262, 976, 198, 220, 220, 220, 4326, 11, 780, 484, 389, 973, 284, 8160, 262, 4326, 286, 3953, 286, 5202, 2977, 13, 220, 1675, 9585, 25, 12040, 10245, 326, 423, 198, 220, 220, 220, 262, 976, 15793, 1483, 475, 1180, 4991, 357, 68, 13, 70, 13, 49223, 290, 33974, 8, 389, 5626, 19704, 45, 40508, 5653, 475, 7310, 17794, 13, 383, 198, 220, 220, 220, 406, 33743, 13798, 815, 307, 1498, 284, 5412, 32626, 1022, 777, 6982, 286, 17794, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 40972, 414, 13, 2617, 353, 628, 220, 220, 220, 825, 4808, 21928, 62, 28869, 43612, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6673, 284, 584, 338, 6171, 5177, 900, 12, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 584, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 584, 13, 38707, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40972, 414, 13, 2860, 62, 28869, 5177, 7, 74, 8, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628 ]
2.885417
288
import os import sys from algorithms import dijkstra, floyd from utils import * TASK1_START = 0 print '-'*35 + '\ntask1 - shortest ways from ({})\n'.format(TASK1_START + 1) + '-'*35 g_list, g_mat = read_graph_list('task1.in') dist, prev, table = dijkstra(g_list, TASK1_START) user_interaction(prev, dist, g_mat) write_debug_table('task1.out.md', table) print '\n' + '-'*35 + '\ntask2\n' + '-'*35 os.remove('task2.out.md') g_mat = read_graph_matrix('task2.in') dist, path = floyd(g_mat)
[ 11748, 28686, 198, 11748, 25064, 198, 198, 6738, 16113, 1330, 2566, 73, 74, 12044, 11, 781, 12192, 198, 6738, 3384, 4487, 1330, 1635, 628, 628, 198, 51, 1921, 42, 16, 62, 2257, 7227, 796, 657, 198, 4798, 705, 19355, 9, 2327, 1343, 705, 59, 429, 2093, 16, 532, 35581, 2842, 422, 37913, 92, 19415, 77, 4458, 18982, 7, 51, 1921, 42, 16, 62, 2257, 7227, 1343, 352, 8, 1343, 705, 19355, 9, 2327, 198, 70, 62, 4868, 11, 308, 62, 6759, 796, 1100, 62, 34960, 62, 4868, 10786, 35943, 16, 13, 259, 11537, 198, 17080, 11, 8654, 11, 3084, 796, 2566, 73, 74, 12044, 7, 70, 62, 4868, 11, 309, 1921, 42, 16, 62, 2257, 7227, 8, 198, 7220, 62, 3849, 2673, 7, 47050, 11, 1233, 11, 308, 62, 6759, 8, 198, 13564, 62, 24442, 62, 11487, 10786, 35943, 16, 13, 448, 13, 9132, 3256, 3084, 8, 198, 198, 4798, 705, 59, 77, 6, 1343, 705, 19355, 9, 2327, 1343, 705, 59, 429, 2093, 17, 59, 77, 6, 1343, 705, 19355, 9, 2327, 198, 418, 13, 28956, 10786, 35943, 17, 13, 448, 13, 9132, 11537, 198, 70, 62, 6759, 796, 1100, 62, 34960, 62, 6759, 8609, 10786, 35943, 17, 13, 259, 11537, 198, 17080, 11, 3108, 796, 781, 12192, 7, 70, 62, 6759, 8, 198 ]
2.288372
215
bashCommand = "rostopic pub -1 /spray_onoff std_msgs/Float32 1.0" import subprocess process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE) output, error = process.communicate()
[ 41757, 21575, 796, 366, 305, 11338, 291, 2240, 532, 16, 1220, 34975, 323, 62, 261, 2364, 14367, 62, 907, 14542, 14, 43879, 2624, 352, 13, 15, 1, 198, 11748, 850, 14681, 198, 14681, 796, 850, 14681, 13, 47, 9654, 7, 41757, 21575, 13, 35312, 22784, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 8, 198, 22915, 11, 4049, 796, 1429, 13, 10709, 5344, 3419 ]
2.969231
65
from fastapi import FastAPI from config import ServiceConfig from apps.libs import init_app
[ 6738, 3049, 15042, 1330, 12549, 17614, 198, 198, 6738, 4566, 1330, 4809, 16934, 198, 6738, 6725, 13, 8019, 82, 1330, 2315, 62, 1324, 628 ]
3.916667
24
import os from office365.sharepoint.client_context import ClientContext SITE_URL = os.getenv('SITE_URL') USER = os.getenv('USER') PASS = os.getenv('PASS') DESTINATION = os.getenv('DESTINATION') FILE = os.getenv('FILE') FILE_ON_SERVER = os.getenv('FILE_ON_SERVER') if __name__ == "__main__": main()
[ 11748, 28686, 198, 6738, 2607, 24760, 13, 20077, 4122, 13, 16366, 62, 22866, 1330, 20985, 21947, 198, 198, 50, 12709, 62, 21886, 796, 28686, 13, 1136, 24330, 10786, 50, 12709, 62, 21886, 11537, 198, 29904, 796, 28686, 13, 1136, 24330, 10786, 29904, 11537, 198, 47924, 796, 28686, 13, 1136, 24330, 10786, 47924, 11537, 198, 35, 6465, 1268, 6234, 796, 28686, 13, 1136, 24330, 10786, 35, 6465, 1268, 6234, 11537, 198, 25664, 796, 28686, 13, 1136, 24330, 10786, 25664, 11537, 198, 25664, 62, 1340, 62, 35009, 5959, 796, 28686, 13, 1136, 24330, 10786, 25664, 62, 1340, 62, 35009, 5959, 11537, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.571429
119
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. # import torch import torch.nn as nn import torch.nn.functional as F from crlapi.core import CLModel from crlapi.sl.clmodels.finetune import Finetune import time import copy import numpy as np from pydoc import locate class IndexDataset(torch.utils.data.Dataset): """ Wrapper that additionally returns the index for each sample """ class BoostingSampler(torch.utils.data.Sampler): """ Upsample points based on sample weight """
[ 2, 15069, 357, 66, 8, 3203, 11, 3457, 13, 290, 663, 29116, 13, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 770, 2723, 2438, 318, 11971, 739, 262, 5964, 1043, 287, 262, 198, 2, 38559, 24290, 2393, 287, 262, 6808, 8619, 286, 428, 2723, 5509, 13, 198, 2, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 1067, 75, 15042, 13, 7295, 1330, 7852, 17633, 198, 6738, 1067, 75, 15042, 13, 6649, 13, 565, 27530, 13, 15643, 316, 1726, 1330, 4463, 316, 1726, 198, 198, 11748, 640, 198, 11748, 4866, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 279, 5173, 420, 1330, 17276, 628, 198, 4871, 12901, 27354, 292, 316, 7, 13165, 354, 13, 26791, 13, 7890, 13, 27354, 292, 316, 2599, 198, 220, 220, 220, 37227, 27323, 2848, 326, 36527, 5860, 262, 6376, 329, 1123, 6291, 37227, 628, 198, 4871, 19835, 278, 16305, 20053, 7, 13165, 354, 13, 26791, 13, 7890, 13, 16305, 20053, 2599, 198, 220, 220, 220, 37227, 35949, 1403, 2173, 1912, 319, 6291, 3463, 37227, 628, 198 ]
3.42246
187
from ibm_db_sa import requirements Requirements = requirements.Requirements
[ 6738, 24283, 76, 62, 9945, 62, 11400, 1330, 5359, 198, 198, 42249, 796, 5359, 13, 42249, 198 ]
4.529412
17
from datetime import datetime, time, timedelta from PyShift.test.base_test import BaseTest from PyShift.workschedule.work_schedule import WorkSchedule
[ 6738, 4818, 8079, 1330, 4818, 8079, 11, 640, 11, 28805, 12514, 198, 6738, 9485, 33377, 13, 9288, 13, 8692, 62, 9288, 1330, 7308, 14402, 198, 6738, 9485, 33377, 13, 5225, 2395, 5950, 13, 1818, 62, 15952, 5950, 1330, 5521, 27054, 5950, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 628, 220, 220, 220, 220 ]
2.009174
109
# -*- coding: utf-8 -*- """ ppmeasurements.util ~~~~~~~~~~~~~~ This module contains utility functions for parsing information, checking for non-global IP address, convert traceroutes to machine-readable structures, etc. :author: Muzammil Abdul Rehman :copyright: Northeastern University © 2018. :license: Custom BSD, see LICENSE for more details. :email: [email protected] """ import json import trparse import socket import datetime import time ###remove-me-later-muz###import ormsettings as DJANGO_SETTINGS from ppstore.models import Hints_country_codes import os import csv import pputils import ipaddress """ Sample JSON: {"source": "127.0.1.1", "destName": "8.8.8.8", "destIP": "8.8.8.8", "resolvers": ["8.8.8.8"], "type": "Input_DNS_Resolver", "startTime": 1472651763386, "timestamp": 1472651763632, "entries": [ {"rtt": [0.231, 0.213, 0.242], "router": ["129.10.113.1", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [2.21, 2.389, 2.733], "router": ["129.10.110.2", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [0.963, 0.951, 0.951], "router": ["10.2.29.52", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [1.465, 1.518, 1.505], "router": ["10.2.29.33", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [1.554, 1.544, 1.489], "router": ["10.2.29.230", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [4.289, 4.469, 4.513], "router": ["207.210.142.101", null, null], "routerName": ["nox1sumgw1-neu-cps.nox.org.", null, null], "numRouters": 1}, {"rtt": [31.826, 31.246, 31.229], "router": ["198.71.47.61", null, null], "routerName": ["et-10-0-0.122.rtr.eqch.net.internet2.edu.", null, null], "numRouters": 1}, {"rtt": [31.204, 30.928, 31.072], "router": ["74.125.49.146", null, null], "routerName": ["unknown", null, null], "numRouters": 1}, {"rtt": [31.263, 31.251, 31.791], "router": ["209.85.143.154", "209.85.242.133", "209.85.254.120"], "routerName": ["unknown", "unknown", "unknown"], "numRouters": 3}, {"rtt": [31.787, 31.628, 31.447], "router": ["209.85.243.163", "209.85.241.47", null], "routerName": ["unknown", "unknown", null], "numRouters": 2}, {"rtt": [40.979, 41.171, 40.825], "router": ["209.85.247.4", "216.239.47.121", "209.85.247.4"], "routerName": ["unknown", "unknown", "unknown"], "numRouters": 3}, {"rtt": [40.97, 45.834, 45.785], "router": ["72.14.234.81", "216.239.62.13", "209.85.248.89"], "routerName": ["unknown", "unknown", "unknown"], "numRouters": 3}, {"rtt": [-1.0, -1.0, -1.0], "router": ["unknown", "unknown", "unknown"], "routerName": ["unknown", "unknown", "unknown"], "numRouters": 3}, {"rtt": [40.757, 41.006, 40.924], "router": ["8.8.8.8", null, null], "routerName": ["google-public-dns-a.google.com.", null, null], "numRouters": 1}]} """ if __name__ == "__main__": #test_from_traceroute_to_server_json() pass
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 628, 220, 220, 220, 9788, 1326, 5015, 902, 13, 22602, 198, 220, 220, 220, 220, 15116, 8728, 4907, 628, 220, 220, 220, 770, 8265, 4909, 10361, 5499, 329, 32096, 1321, 11, 198, 220, 220, 220, 10627, 329, 1729, 12, 20541, 6101, 2209, 11, 10385, 491, 11736, 448, 274, 284, 4572, 12, 46155, 198, 220, 220, 220, 8573, 11, 3503, 13, 628, 220, 220, 220, 1058, 9800, 25, 8252, 89, 6475, 346, 23547, 797, 71, 805, 198, 220, 220, 220, 1058, 22163, 4766, 25, 15209, 18160, 2059, 10673, 2864, 13, 198, 220, 220, 220, 1058, 43085, 25, 8562, 347, 10305, 11, 766, 38559, 24290, 329, 517, 3307, 13, 198, 220, 220, 220, 1058, 12888, 25, 17981, 31, 535, 82, 13, 710, 84, 13, 15532, 198, 198, 37811, 198, 198, 11748, 33918, 198, 11748, 491, 29572, 198, 11748, 17802, 198, 11748, 4818, 8079, 198, 11748, 640, 198, 21017, 28956, 12, 1326, 12, 36760, 12, 76, 10277, 21017, 11748, 393, 907, 12374, 355, 13004, 1565, 11230, 62, 28480, 51, 20754, 198, 6738, 9788, 8095, 13, 27530, 1330, 367, 29503, 62, 19315, 62, 40148, 198, 11748, 28686, 198, 11748, 269, 21370, 198, 11748, 279, 1996, 4487, 198, 11748, 20966, 21975, 198, 198, 37811, 198, 36674, 19449, 25, 198, 220, 220, 220, 19779, 10459, 1298, 366, 16799, 13, 15, 13, 16, 13, 16, 1600, 366, 16520, 5376, 1298, 366, 23, 13, 23, 13, 23, 13, 23, 1600, 366, 16520, 4061, 1298, 366, 23, 13, 23, 13, 23, 13, 23, 1600, 366, 411, 349, 690, 1298, 14631, 23, 13, 23, 13, 23, 13, 23, 33116, 198, 220, 220, 220, 220, 366, 4906, 1298, 366, 20560, 62, 35, 8035, 62, 4965, 14375, 1600, 366, 9688, 7575, 1298, 22909, 22980, 24096, 2091, 4521, 11, 366, 16514, 27823, 1298, 22909, 22980, 24096, 2623, 2624, 11, 366, 298, 1678, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 15, 13, 25667, 11, 657, 13, 26427, 11, 657, 13, 27877, 4357, 366, 472, 353, 1298, 14631, 18741, 13, 940, 13, 16616, 13, 16, 1600, 9242, 11, 9242, 4357, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 17, 13, 2481, 11, 362, 13, 29769, 11, 362, 13, 49995, 4357, 366, 472, 353, 1298, 14631, 18741, 13, 940, 13, 11442, 13, 17, 1600, 9242, 11, 9242, 4357, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 15, 13, 4846, 18, 11, 657, 13, 50119, 11, 657, 13, 50119, 4357, 366, 472, 353, 1298, 14631, 940, 13, 17, 13, 1959, 13, 4309, 1600, 9242, 11, 9242, 4357, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 16, 13, 42018, 11, 352, 13, 44085, 11, 352, 13, 31654, 4357, 366, 472, 353, 1298, 14631, 940, 13, 17, 13, 1959, 13, 2091, 1600, 9242, 11, 9242, 4357, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 16, 13, 44218, 11, 352, 13, 47576, 11, 352, 13, 35890, 4357, 366, 472, 353, 1298, 14631, 940, 13, 17, 13, 1959, 13, 19214, 1600, 9242, 11, 9242, 4357, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 19779, 81, 926, 1298, 685, 19, 13, 27693, 11, 604, 13, 42947, 11, 604, 13, 48645, 4357, 366, 472, 353, 1298, 14631, 22745, 13, 21536, 13, 23726, 13, 8784, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 35420, 16, 16345, 70, 86, 16, 12, 710, 84, 12, 66, 862, 13, 35420, 13, 2398, 33283, 9242, 11, 9242, 4357, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 3132, 13, 23, 2075, 11, 3261, 13, 26912, 11, 3261, 13, 23539, 4357, 366, 472, 353, 1298, 14631, 22337, 13, 4869, 13, 2857, 13, 5333, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 316, 12, 940, 12, 15, 12, 15, 13, 18376, 13, 81, 2213, 13, 27363, 354, 13, 3262, 13, 37675, 17, 13, 15532, 33283, 9242, 11, 9242, 4357, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 3132, 13, 18638, 11, 1542, 13, 24, 2078, 11, 3261, 13, 2998, 17, 4357, 366, 472, 353, 1298, 14631, 4524, 13, 11623, 13, 2920, 13, 20964, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 9242, 11, 9242, 4357, 366, 22510, 49, 280, 1010, 1298, 352, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 3132, 13, 29558, 11, 3261, 13, 28072, 11, 3261, 13, 3720, 16, 4357, 366, 472, 353, 1298, 14631, 22567, 13, 5332, 13, 21139, 13, 21526, 1600, 366, 22567, 13, 5332, 13, 27877, 13, 16945, 1600, 366, 22567, 13, 5332, 13, 24970, 13, 10232, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 366, 34680, 1600, 366, 34680, 33116, 366, 22510, 49, 280, 1010, 1298, 513, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 3132, 13, 41019, 11, 3261, 13, 48200, 11, 3261, 13, 34825, 4357, 366, 472, 353, 1298, 14631, 22567, 13, 5332, 13, 26660, 13, 24136, 1600, 366, 22567, 13, 5332, 13, 28872, 13, 2857, 1600, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 366, 34680, 1600, 9242, 4357, 366, 22510, 49, 280, 1010, 1298, 362, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 1821, 13, 24, 3720, 11, 6073, 13, 27192, 11, 2319, 13, 47338, 4357, 366, 472, 353, 1298, 14631, 22567, 13, 5332, 13, 23753, 13, 19, 1600, 366, 20666, 13, 23516, 13, 2857, 13, 19244, 1600, 366, 22567, 13, 5332, 13, 23753, 13, 19, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 366, 34680, 1600, 366, 34680, 33116, 366, 22510, 49, 280, 1010, 1298, 513, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 1821, 13, 5607, 11, 4153, 13, 23, 2682, 11, 4153, 13, 41172, 4357, 366, 472, 353, 1298, 14631, 4761, 13, 1415, 13, 24409, 13, 6659, 1600, 366, 20666, 13, 23516, 13, 5237, 13, 1485, 1600, 366, 22567, 13, 5332, 13, 23045, 13, 4531, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 366, 34680, 1600, 366, 34680, 33116, 366, 22510, 49, 280, 1010, 1298, 513, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 25915, 16, 13, 15, 11, 532, 16, 13, 15, 11, 532, 16, 13, 15, 4357, 366, 472, 353, 1298, 14631, 34680, 1600, 366, 34680, 1600, 366, 34680, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 34680, 1600, 366, 34680, 1600, 366, 34680, 33116, 366, 22510, 49, 280, 1010, 1298, 513, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 19779, 81, 926, 1298, 685, 1821, 13, 39251, 11, 6073, 13, 28041, 11, 2319, 13, 24, 1731, 4357, 366, 472, 353, 1298, 14631, 23, 13, 23, 13, 23, 13, 23, 1600, 9242, 11, 9242, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 472, 353, 5376, 1298, 14631, 13297, 12, 11377, 12, 67, 5907, 12, 64, 13, 13297, 13, 785, 33283, 9242, 11, 9242, 4357, 366, 22510, 49, 280, 1010, 1298, 352, 92, 48999, 198, 37811, 628, 628, 628, 628, 628, 628, 220, 220, 220, 220, 220, 220, 220, 220, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 9288, 62, 6738, 62, 2213, 11736, 13192, 62, 1462, 62, 15388, 62, 17752, 3419, 198, 220, 220, 220, 1208, 628 ]
2.181818
1,485
# Copyright (c) 2019-2021, Jonas Eschle, Jim Pivarski, Eduardo Rodrigues, and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/vector for details. import pytest import vector
[ 2, 15069, 357, 66, 8, 13130, 12, 1238, 2481, 11, 40458, 8678, 354, 293, 11, 5395, 350, 452, 945, 4106, 11, 40766, 13109, 16114, 947, 11, 290, 8616, 3059, 260, 7274, 13, 198, 2, 198, 2, 4307, 6169, 739, 262, 513, 12, 565, 682, 347, 10305, 5964, 11, 766, 19249, 2393, 38559, 24290, 198, 2, 393, 3740, 1378, 12567, 13, 785, 14, 36216, 15813, 12, 258, 79, 14, 31364, 329, 3307, 13, 198, 198, 11748, 12972, 9288, 198, 198, 11748, 15879, 628 ]
3.158537
82
# vim:set ts=8 sw=2 sts=2 et: """Store signals.""" import itertools import struct import wave SAMPLE_SIZE = 16 # In bits class WaveStream(object): """A stream of PCM audio data.""" def __init__(self, channels, sample_rate, sample_size): """Initialize a WaveStream with integer samples. Args: channels: An iterable of the audio channels in the stream. Each item is also an iterable containing the samples of that audio channel. All audio channels must have the same number of samples. The samples are signed integers that fit in the sample size. sample_rate: The number of samples per second in the audio stream, in Hz. sample_size: The number of bits used to store each sample. Must be 16. """ self.channels = channels self.sample_size = sample_size self.sample_rate = sample_rate self.num_channels = len(channels) self.num_samples = len(channels[0]) # TODO(serban): It's convenient to use the struct module to encode the # samples as 16-bit little endian signed integers. To support other sample # sizes, like 20 bits or 24 bits per sample, I would need to use another # utility to encode the samples. For now, only 16-bit samples are supported. assert sample_size == 16, 'Sorry, only 16-bit samples are supported' @classmethod def from_floating_point(cls, channels, sample_rate): """Initialize a WaveStream with floating point samples. Args: channels: An iterable of the audio channels in the stream. Each item is also an iterable containing the samples of that audio channel. All audio channels must have the same number of samples. The samples are floats between -1.0 and 1.0. sample_rate: The number of samples per second in the audio stream, in Hz. Returns: A WaveStream """ sample_max = 2**(SAMPLE_SIZE-1) - 1 int_channels = [ [int(sample * sample_max) for sample in channel] for channel in channels] return cls(int_channels, sample_rate, SAMPLE_SIZE) def get_interleaved_samples(self): """Interleave the samples in the channels into a single bytestring. Returns: A bytestring of little endian signed integers """ num_interleaved_samples = self.num_channels * self.num_samples interleaved_samples = itertools.chain.from_iterable(zip(*self.channels)) struct_format = '<{}h'.format(num_interleaved_samples) return struct.pack(struct_format, *interleaved_samples) def write_wave_file(self, output_path): """Write a WAVE file of the stream contents. Args: output_path: The path to the resulting WAVE file. """ # TODO(serban): As of January 2014, Python 3.4 is still in beta. wave.open() # supports the context manager protocol in Python 3.4, but I'll wait until # it becomes stable before using a context manager here. See # http://docs.python.org/dev/whatsnew/3.4.html#wave for more information. output_file = wave.open(output_path, 'wb') output_file.setsampwidth(self.sample_size // 8) output_file.setframerate(self.sample_rate) output_file.setnchannels(self.num_channels) output_file.setnframes(self.num_samples) output_file.setcomptype('NONE', 'not compressed') output_file.writeframes(self.get_interleaved_samples()) output_file.close()
[ 2, 43907, 25, 2617, 40379, 28, 23, 1509, 28, 17, 39747, 28, 17, 2123, 25, 198, 198, 37811, 22658, 10425, 526, 15931, 198, 198, 11748, 340, 861, 10141, 198, 11748, 2878, 198, 11748, 6769, 628, 198, 49302, 16437, 62, 33489, 796, 1467, 220, 1303, 554, 10340, 628, 198, 4871, 17084, 12124, 7, 15252, 2599, 198, 220, 37227, 32, 4269, 286, 4217, 44, 6597, 1366, 526, 15931, 628, 220, 825, 11593, 15003, 834, 7, 944, 11, 9619, 11, 6291, 62, 4873, 11, 6291, 62, 7857, 2599, 198, 220, 220, 220, 37227, 24243, 1096, 257, 17084, 12124, 351, 18253, 8405, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 9619, 25, 1052, 11629, 540, 286, 262, 6597, 9619, 287, 262, 4269, 13, 5501, 2378, 318, 198, 220, 220, 220, 220, 220, 220, 220, 635, 281, 11629, 540, 7268, 262, 8405, 286, 326, 6597, 6518, 13, 1439, 6597, 198, 220, 220, 220, 220, 220, 220, 220, 9619, 1276, 423, 262, 976, 1271, 286, 8405, 13, 383, 8405, 389, 4488, 198, 220, 220, 220, 220, 220, 220, 220, 37014, 326, 4197, 287, 262, 6291, 2546, 13, 198, 220, 220, 220, 220, 220, 6291, 62, 4873, 25, 383, 1271, 286, 8405, 583, 1218, 287, 262, 6597, 4269, 11, 287, 26109, 13, 198, 220, 220, 220, 220, 220, 6291, 62, 7857, 25, 383, 1271, 286, 10340, 973, 284, 3650, 1123, 6291, 13, 12039, 307, 1467, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2116, 13, 354, 8961, 796, 9619, 198, 220, 220, 220, 2116, 13, 39873, 62, 7857, 796, 6291, 62, 7857, 198, 220, 220, 220, 2116, 13, 39873, 62, 4873, 796, 6291, 62, 4873, 628, 220, 220, 220, 2116, 13, 22510, 62, 354, 8961, 796, 18896, 7, 354, 8961, 8, 198, 220, 220, 220, 2116, 13, 22510, 62, 82, 12629, 796, 18896, 7, 354, 8961, 58, 15, 12962, 628, 220, 220, 220, 1303, 16926, 46, 7, 2655, 3820, 2599, 632, 338, 11282, 284, 779, 262, 2878, 8265, 284, 37773, 262, 198, 220, 220, 220, 1303, 8405, 355, 1467, 12, 2545, 1310, 886, 666, 4488, 37014, 13, 1675, 1104, 584, 6291, 198, 220, 220, 220, 1303, 10620, 11, 588, 1160, 10340, 393, 1987, 10340, 583, 6291, 11, 314, 561, 761, 284, 779, 1194, 198, 220, 220, 220, 1303, 10361, 284, 37773, 262, 8405, 13, 1114, 783, 11, 691, 1467, 12, 2545, 8405, 389, 4855, 13, 198, 220, 220, 220, 6818, 6291, 62, 7857, 6624, 1467, 11, 705, 14385, 11, 691, 1467, 12, 2545, 8405, 389, 4855, 6, 628, 220, 2488, 4871, 24396, 198, 220, 825, 422, 62, 48679, 803, 62, 4122, 7, 565, 82, 11, 9619, 11, 6291, 62, 4873, 2599, 198, 220, 220, 220, 37227, 24243, 1096, 257, 17084, 12124, 351, 12462, 966, 8405, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 9619, 25, 1052, 11629, 540, 286, 262, 6597, 9619, 287, 262, 4269, 13, 5501, 2378, 318, 198, 220, 220, 220, 220, 220, 220, 220, 635, 281, 11629, 540, 7268, 262, 8405, 286, 326, 6597, 6518, 13, 1439, 6597, 198, 220, 220, 220, 220, 220, 220, 220, 9619, 1276, 423, 262, 976, 1271, 286, 8405, 13, 383, 8405, 389, 36016, 198, 220, 220, 220, 220, 220, 220, 220, 1022, 532, 16, 13, 15, 290, 352, 13, 15, 13, 198, 220, 220, 220, 220, 220, 6291, 62, 4873, 25, 383, 1271, 286, 8405, 583, 1218, 287, 262, 6597, 4269, 11, 287, 26109, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 317, 17084, 12124, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 6291, 62, 9806, 796, 362, 1174, 7, 49302, 16437, 62, 33489, 12, 16, 8, 532, 352, 198, 220, 220, 220, 493, 62, 354, 8961, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 685, 600, 7, 39873, 1635, 6291, 62, 9806, 8, 329, 6291, 287, 6518, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6518, 287, 9619, 60, 628, 220, 220, 220, 1441, 537, 82, 7, 600, 62, 354, 8961, 11, 6291, 62, 4873, 11, 28844, 16437, 62, 33489, 8, 628, 220, 825, 651, 62, 3849, 293, 9586, 62, 82, 12629, 7, 944, 2599, 198, 220, 220, 220, 37227, 9492, 47408, 262, 8405, 287, 262, 9619, 656, 257, 2060, 416, 9288, 1806, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 317, 416, 9288, 1806, 286, 1310, 886, 666, 4488, 37014, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 997, 62, 3849, 293, 9586, 62, 82, 12629, 796, 2116, 13, 22510, 62, 354, 8961, 1635, 2116, 13, 22510, 62, 82, 12629, 198, 220, 220, 220, 987, 293, 9586, 62, 82, 12629, 796, 340, 861, 10141, 13, 7983, 13, 6738, 62, 2676, 540, 7, 13344, 46491, 944, 13, 354, 8961, 4008, 628, 220, 220, 220, 2878, 62, 18982, 796, 705, 27, 90, 92, 71, 4458, 18982, 7, 22510, 62, 3849, 293, 9586, 62, 82, 12629, 8, 198, 220, 220, 220, 1441, 2878, 13, 8002, 7, 7249, 62, 18982, 11, 1635, 3849, 293, 9586, 62, 82, 12629, 8, 628, 220, 825, 3551, 62, 19204, 62, 7753, 7, 944, 11, 5072, 62, 6978, 2599, 198, 220, 220, 220, 37227, 16594, 257, 16400, 6089, 2393, 286, 262, 4269, 10154, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 5072, 62, 6978, 25, 383, 3108, 284, 262, 7186, 16400, 6089, 2393, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 16926, 46, 7, 2655, 3820, 2599, 1081, 286, 3269, 1946, 11, 11361, 513, 13, 19, 318, 991, 287, 12159, 13, 6769, 13, 9654, 3419, 198, 220, 220, 220, 1303, 6971, 262, 4732, 4706, 8435, 287, 11361, 513, 13, 19, 11, 475, 314, 1183, 4043, 1566, 198, 220, 220, 220, 1303, 340, 4329, 8245, 878, 1262, 257, 4732, 4706, 994, 13, 4091, 198, 220, 220, 220, 1303, 2638, 1378, 31628, 13, 29412, 13, 2398, 14, 7959, 14, 1929, 1381, 3605, 14, 18, 13, 19, 13, 6494, 2, 19204, 329, 517, 1321, 13, 198, 220, 220, 220, 5072, 62, 7753, 796, 6769, 13, 9654, 7, 22915, 62, 6978, 11, 705, 39346, 11537, 628, 220, 220, 220, 5072, 62, 7753, 13, 28709, 696, 10394, 7, 944, 13, 39873, 62, 7857, 3373, 807, 8, 198, 220, 220, 220, 5072, 62, 7753, 13, 2617, 19298, 21620, 7, 944, 13, 39873, 62, 4873, 8, 198, 220, 220, 220, 5072, 62, 7753, 13, 2617, 77, 354, 8961, 7, 944, 13, 22510, 62, 354, 8961, 8, 198, 220, 220, 220, 5072, 62, 7753, 13, 2617, 77, 37805, 7, 944, 13, 22510, 62, 82, 12629, 8, 198, 220, 220, 220, 5072, 62, 7753, 13, 2617, 785, 457, 2981, 10786, 45, 11651, 3256, 705, 1662, 25388, 11537, 628, 220, 220, 220, 5072, 62, 7753, 13, 13564, 37805, 7, 944, 13, 1136, 62, 3849, 293, 9586, 62, 82, 12629, 28955, 198, 220, 220, 220, 5072, 62, 7753, 13, 19836, 3419, 198 ]
2.937118
1,145
# encoding=utf-8 import logging logger = logging.getLogger(__name__)
[ 2, 21004, 28, 40477, 12, 23, 198, 11748, 18931, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198 ]
2.8
25
import xml.etree.ElementTree as ET from pprint import pprint as pp import re # from OMDB xmlstring = '''<?xml version="1.0" encoding="UTF-8"?> <root response="True"> <movie title="The Prestige" year="2006" rated="PG-13" released="20 Oct 2006" runtime="130 min" genre="Drama, Mystery, Sci-Fi" director="Christopher Nolan" /> <movie title="The Dark Knight" year="2008" rated="PG-13" released="18 Jul 2008" runtime="152 min" genre="Action, Crime, Drama" director="Christopher Nolan" /> <movie title="The Dark Knight Rises" year="2012" rated="PG-13" released="20 Jul 2012" runtime="164 min" genre="Action, Thriller" director="Christopher Nolan" /> <movie title="Dunkirk" year="2017" rated="PG-13" released="21 Jul 2017" runtime="106 min" genre="Action, Drama, History" director="Christopher Nolan" /> <movie title="Interstellar" year="2014" rated="PG-13" released="07 Nov 2014" runtime="169 min" genre="Adventure, Drama, Sci-Fi" director="Christopher Nolan"/> </root>''' # noqa E501 def get_tree(): """You probably want to use ET.fromstring""" root = ET.fromstring(xmlstring) return ET.ElementTree(root) def get_movies(): """Call get_tree and retrieve all movie titles, return a list or generator""" tree = get_tree() root = tree.getroot() for movie in root: yield movie.attrib['title'] def _get_runtime(movie): '''internal help function for receiving runtime of movie''' return int(re.search(r'(\d+) min', movie.attrib['runtime']).group(1)) def get_movie_longest_runtime(): """Call get_tree again and return the movie with the longest runtime in minutes, for latter consider adding a _get_runtime helper""" tree = get_tree() root = tree.getroot() max_runtime = 0 max_runtime_movie = '' for movie in root: if _get_runtime(movie) > max_runtime: max_runtime_movie = movie.attrib['title'] return max_runtime_movie
[ 11748, 35555, 13, 316, 631, 13, 20180, 27660, 355, 12152, 201, 198, 6738, 279, 4798, 1330, 279, 4798, 355, 9788, 201, 198, 11748, 302, 201, 198, 201, 198, 201, 198, 2, 422, 32468, 11012, 201, 198, 19875, 8841, 796, 705, 7061, 47934, 19875, 2196, 2625, 16, 13, 15, 1, 21004, 2625, 48504, 12, 23, 13984, 29, 201, 198, 27, 15763, 2882, 2625, 17821, 5320, 201, 198, 220, 1279, 41364, 3670, 2625, 464, 24158, 10045, 1, 614, 2625, 13330, 1, 13178, 2625, 6968, 12, 1485, 1, 2716, 2625, 1238, 2556, 4793, 1, 19124, 2625, 12952, 949, 1, 12121, 2625, 35, 20058, 11, 18208, 11, 10286, 12, 10547, 1, 3437, 2625, 38025, 27788, 1, 11037, 201, 198, 220, 1279, 41364, 3670, 2625, 464, 3801, 6700, 1, 614, 2625, 11528, 1, 13178, 2625, 6968, 12, 1485, 1, 2716, 2625, 1507, 5979, 3648, 1, 19124, 2625, 17827, 949, 1, 12121, 2625, 12502, 11, 10003, 11, 30647, 1, 3437, 2625, 38025, 27788, 1, 11037, 201, 198, 220, 1279, 41364, 3670, 2625, 464, 3801, 6700, 371, 2696, 1, 614, 2625, 6999, 1, 13178, 2625, 6968, 12, 1485, 1, 2716, 2625, 1238, 5979, 2321, 1, 19124, 2625, 23237, 949, 1, 12121, 2625, 12502, 11, 16283, 4665, 1, 3437, 2625, 38025, 27788, 1, 11037, 201, 198, 220, 1279, 41364, 3670, 2625, 35, 2954, 14232, 1, 614, 2625, 5539, 1, 13178, 2625, 6968, 12, 1485, 1, 2716, 2625, 2481, 5979, 2177, 1, 19124, 2625, 15801, 949, 1, 12121, 2625, 12502, 11, 30647, 11, 7443, 1, 3437, 2625, 38025, 27788, 1, 11037, 201, 198, 220, 1279, 41364, 3670, 2625, 9492, 28732, 1, 614, 2625, 4967, 1, 13178, 2625, 6968, 12, 1485, 1, 2716, 2625, 2998, 5267, 1946, 1, 19124, 2625, 22172, 949, 1, 12121, 2625, 48289, 11, 30647, 11, 10286, 12, 10547, 1, 3437, 2625, 38025, 27788, 26700, 201, 198, 3556, 15763, 29, 7061, 6, 220, 1303, 645, 20402, 412, 33548, 201, 198, 201, 198, 201, 198, 4299, 651, 62, 21048, 33529, 201, 198, 220, 220, 220, 37227, 1639, 2192, 765, 284, 779, 12152, 13, 6738, 8841, 37811, 201, 198, 220, 220, 220, 6808, 796, 12152, 13, 6738, 8841, 7, 19875, 8841, 8, 201, 198, 220, 220, 220, 1441, 12152, 13, 20180, 27660, 7, 15763, 8, 201, 198, 201, 198, 201, 198, 201, 198, 4299, 651, 62, 76, 20526, 33529, 201, 198, 220, 220, 220, 37227, 14134, 651, 62, 21048, 290, 19818, 477, 3807, 8714, 11, 1441, 257, 1351, 393, 17301, 37811, 201, 198, 220, 220, 220, 5509, 796, 651, 62, 21048, 3419, 201, 198, 220, 220, 220, 6808, 796, 5509, 13, 1136, 15763, 3419, 201, 198, 220, 220, 220, 329, 3807, 287, 6808, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 3807, 13, 1078, 822, 17816, 7839, 20520, 201, 198, 201, 198, 201, 198, 4299, 4808, 1136, 62, 43282, 7, 41364, 2599, 201, 198, 220, 220, 220, 705, 7061, 32538, 1037, 2163, 329, 6464, 19124, 286, 3807, 7061, 6, 201, 198, 220, 220, 220, 1441, 493, 7, 260, 13, 12947, 7, 81, 6, 38016, 67, 28988, 949, 3256, 3807, 13, 1078, 822, 17816, 43282, 20520, 737, 8094, 7, 16, 4008, 201, 198, 201, 198, 201, 198, 4299, 651, 62, 41364, 62, 6511, 395, 62, 43282, 33529, 201, 198, 220, 220, 220, 37227, 14134, 651, 62, 21048, 757, 290, 1441, 262, 3807, 351, 262, 14069, 19124, 287, 2431, 11, 201, 198, 220, 220, 220, 220, 220, 220, 329, 6846, 2074, 4375, 257, 4808, 1136, 62, 43282, 31904, 37811, 201, 198, 220, 220, 220, 5509, 796, 651, 62, 21048, 3419, 201, 198, 220, 220, 220, 6808, 796, 5509, 13, 1136, 15763, 3419, 201, 198, 220, 220, 220, 3509, 62, 43282, 796, 657, 201, 198, 220, 220, 220, 3509, 62, 43282, 62, 41364, 796, 10148, 201, 198, 220, 220, 220, 329, 3807, 287, 6808, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 1136, 62, 43282, 7, 41364, 8, 1875, 3509, 62, 43282, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 43282, 62, 41364, 796, 3807, 13, 1078, 822, 17816, 7839, 20520, 201, 198, 220, 220, 220, 1441, 3509, 62, 43282, 62, 41364, 201, 198 ]
2.874818
687