content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
# coding=UTF-8 """ -------------------------------------------------------- Copyright (c) ****-2018 ESR, Inc. All rights reserved. -------------------------------------------------------- Author: Mingdong Zhu Date: 2019/03/07 Design Name: The user interface of the DDS software Purpose: Design an UI and test function for DDS board using Python 3.6.3 -------------------------------------------------------- """ # _name_ = 'main_process' import time import numpy as np import dds def num_to_bytes(num, bytenum, high_head=True): """To get the bytes format of a given decimal number (used for data_pro) :param num: A given number :type num: int :param bytenum: The number of` bytes (or len()) of the return word :type bytenum: int :param high_head: True/False -- big/little-endian; eg:num_to_bytes(1, 2, True/False)-->b'\x00\x01' or b'\x01\x00' :type high_head: bool :returns: Bytes for num, len() = bytenum :rtype: bytes """ if high_head: return np.array([num], dtype='>u8').tobytes()[-bytenum:] # big-endian else: return np.array([num], dtype='<u8').tobytes()[:bytenum] # little-endian def bytes_to_num(bytes_, signed_=True, big_=True): """To get the int format of a given bytes (used for data_pro) :param bytes_: A given bytes :type bytes_: bytes :param signed_: True for signed input :type signed_: bool :param big_: Same as the "high_head" in the function 'num_to_bytes' :type big_: bool :returns: Int for bytes :rtype: int """ if not signed_: if big_: return int.from_bytes(bytes_, byteorder='big') else: return int.from_bytes(bytes_, byteorder='little') else: if big_: return int.from_bytes(bytes_, byteorder='big', signed=True) else: return int.from_bytes(bytes_, byteorder='little', signed=True) def bytes_to_hexstr(bytes_, space=True): """To get the string format of a given bytes (used for print/debug) :param bytes_: A given bytes :type bytes_: bytes :param space: True for insert a ' ' per byte :type space: bool :returns: String for bytes :rtype: str """ # ss = s_str.encode('hex') # original solution in Python2 string = bytes_.hex() # original solution in Python2 if space: string_with_space = [string[i:i + 2] for i in range(0, len(string), 2)] return ' '.join(string_with_space) else: return string class FPGA(dds.HardWare): # GenWave, """ A class used for integration, in other word, the final application """ """To clarify the user-defined scan-sign ****** var_type = [0, 1, 2, 3, 4], which is show the scan_para's variable type [0, 1, 2, 3, 4] represents ["no scan", "amp", "freq", "phase", "time"] scan_sign = [0, 1, 2, 3, 4] + 4*(para_num), which show the scan_para's type and group number para_num = 0, 1...; The group number for the scan_para """ def __init__(self, dev_index=0, test_mode=False): """ To launch the Instantiation of classes""" # GenWave.__init__(self) dds.HardWare.__init__(self, dev_index=dev_index, test_mode=test_mode) def cw_play(self, ch_num, amp, freq, phase): """Single channel setting for DDS (can be applied in spectrum test or non-sequence wave_play) :param ch_num: The number ch to be set, [0,1,...,15] is available :type ch_num: int :param amp: Amplitude of DDS, range:[0,1] :type amp: float :param freq: Frequency of DDS, unit: MHz :type freq: int or float :param amp: Phase of DDS, unit: pi, range: [0,2) :type amp: float :returns: unit: MHz, Hz :rtype: float, float """ hp_channel, reg_wr = self.ch2identify(ch_num) ch_num_byte = num_to_bytes(2**ch_num, 2) dds_data_list = self.dds_data_form(hp_channel, amp, freq, phase) print(bytes_to_hexstr(dds_data_list[0])) self.l_configure(ch_num_byte, reg_wr, dds_data_list[0]) """ return specification: 1--the real digital freq (set) 2--the difference of freq (real - set) """ return dds_data_list[1], dds_data_list[2] def ttl_set(self, ch_num, level): """To set the TTL manually :param ch_num: channel number of TTL, [0,1] correspond to TTL9,10 and 0x5/6 0,1 :type ch_num: int :param level: 0/1 for low and high :type level: int :returns: :rtype: """ word_in_num = 5*16 + ch_num + 16*level word_in_bytes = num_to_bytes(word_in_num % 256, 2) print(bytes_to_hexstr(word_in_bytes)) self.write(word_in_bytes) def ad5371_ini(self): """To initialize the AD5371 which is a 40-ch low-speed DAC :param : :type : :returns: :rtype: """ self.write(b'\x00\x34'+b'\x00'+b'\x02'+b'\x20\x00') # the b'\x02' can be b'\x03',b'\x04' self.write(b'\x00\x34'+b'\x00'+b'\x03'+b'\x20\x00') # the OFS_g1 is set to be +10V. self.write(b'\x00\x34'+b'\x00'+b'\x04'+b'\x20\x00') # the OFS_g2~4 is set to be +10V. self.write(b'\x00\x34'+b'\x00'+b'\x80'+b'\x80\x00') # C self.write(b'\x00\x34'+b'\x00'+b'\x40'+b'\xFF\xFC') # M self.write(b'\x00\x34'+b'\x00'+b'\xC0'+b'\x80\x00') # X = +10 stamp_list = [0, 1, 3] self.ad5371_wr_stamp_set(stamp_list) # To set the SPI rate # self.ad5371_play_set(ch_num, [106, 59, 111]) print('AD5371 initial has been finished') ################################################################# # integration-experiment function # 以下都是支持多个通道的操作 ################################################################# def initial_dds(self): """To initialize and synchronize the 16 DDSs :param : :type : :returns: :rtype: """ ch_num_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] self.delay_para_set() self.sync_on() for index_1 in range(len(ch_num_list)): if ch_num_list[index_1] < 4: self.initial_AD9915(ch_num_list[index_1]) else: self.initial_ad9910(ch_num_list[index_1]) self.mannual_sync_2g5() self.mannual_sync_1g() self.sync_off() self.stamp_reset() # When there are some bugs, this one will be used print('channel ', ch_num_list, ' initial has been finished') def phase_clear_dds(self, ch_num_list): """To clear the phase of DDS in ch_num_list, after that the phase in accumulator will be 0 What's more, if a dds is play at a freq != 0, we need to stop it and clear the phase for "sequence play". :param ch_num_list: List of ch_num(int), ch_num can be [0,1,..15] :type ch_num_list: list :returns: :rtype: """ for index_1 in range(len(ch_num_list)): if ch_num_list[index_1] < 4: self.phase_clear_2g5(ch_num_list[index_1]) else: self.phase_clear_1g(ch_num_list[index_1]) # print 'phase of channel ',ch_num_list,' has been cleared' def sequence_data_download(self, ch_num_list, raw_data_list_list, check_sign=False): """To download the sequence play data for multi channels :param ch_num_list: List of ch_num(int), ch_num can be [0,1,..15] :type ch_num_list: list :param raw_data_list_list: List of raw_data_list(for one channel) :*** format of raw_data_list: [ [scan_sign,[A,f(MHz),fai(pi)],[level,time]], ...] :*** eg: [ [scan_sign0,[A0, f0, fai0],[level0, time0]], [scan_sign1,[A1, f1, fai1],[level1, time1]], ... ] : scan_sign: int, [0,1, .. ,4,5,..8]--["no scan", "amp"_0, "freq"_0, "phase"_0, "time"_0] : amp: float, range: [0,1] : freq: int or float, unit: MHz : phase: float, unit: pi, range: [0,2) : level: str, 'high'/'low' : time: float, unit: us :type raw_data_list_list: list :param check_sign: If True, the check function will be carried out, which will consume more time. :type check_sign: bool :returns: :rtype: """ if len(ch_num_list) != len(raw_data_list_list): print('mismatch of ch_num and data_list') exit() else: play_address_word = b'' for index_1 in range(len(ch_num_list)): raw_data_list_temp = raw_data_list_list[index_1] play_address_word_temp = self.single_data_download(ch_num_list[index_1], raw_data_list_temp, check_sign, print_sign=True) play_address_word += play_address_word_temp print('\ndata-download of channel ', ch_num_list, ' has been finished') self.play_sequence_set(ch_num_list, play_address_word, print_sign=True) # return play_address_word """ var_type = [0, 1, 2, 3, 4], which is show the scan_para's variable type [0, 1, 2, 3, 4] represents ["no scan", "amp", "freq", "phase", "time"] scan_sign = [0, 1, 2, 3, 4] + 4*(para_num), which show the scan_para's type and group number para_num = 0, 1...; The group number for the scan_para """ def play(self, var_type, scan_para_list, check_sign=False): """To download the scan data and trigger the play What's more ,a PMT counter receive function will also be carried :param var_type: Int represents the variable type :type var_type: int :param scan_para_list: List of scan data :*** format: [[N_0, para0, para1], [N_1, para0, para1],..] :type scan_para_list: list :param check_sign: If True, the check function will be carried out, which will consume more time. :type check_sign: bool :returns: :rtype: """ print('') scan_para_gen = self.scan_data_gen(var_type, scan_para_list) print(bytes_to_hexstr(scan_para_gen[0])) self.scan_data_download(scan_para_gen[0], print_sign=True) if check_sign: if not self.scan_data_check(scan_para_gen[0]): self.write(b'\x00\x00') print('Scan_data download check failed!') exit() print('Play ins is ', bytes_to_hexstr(b'\x00\x01' + scan_para_gen[0][0:4])) self.write(b'\x00\x01' + scan_para_gen[0][0:4]) print("total_play ", scan_para_gen[1]) return self.counter_receive(scan_para_gen[1]) def counter_receive(self, cnt_number):#PMT """To receive PMT counter's result for each single play :param cnt_number: Total number of single play in current play :type cnt_number: int :returns: A list of PMT counter's result :rtype: list """ readout_bytes = b'' cnt_result_list = [] counter_end_sign = True print('') # t1 = time.time() while counter_end_sign: temp = self.read() readout_bytes += temp while readout_bytes != b'': # print('Current time consumed is ', time.time()-t1) # print(bytes_to_hexstr(readout_bytes)) # print('') if readout_bytes[0:2] == b'\xFF\xFA': # start sign readout_bytes = readout_bytes[2:] cnt_addr_start = bytes_to_num(readout_bytes[0:2]) elif readout_bytes[0:2] == b'\xFF\xF5': # stop sign(The end sign of this infinite loop) readout_bytes = readout_bytes[2:] cnt_addr_stop = bytes_to_num(readout_bytes[0:2]) counter_end_sign = False # To break from the whole while-loop break else: if readout_bytes[0:2] == b'\xFF\xF8': cnt_result_list.append('overflow') else: cnt_result_list.append(bytes_to_num(readout_bytes[0:2])) readout_bytes = readout_bytes[2:] # print('the start and stop of cnt_addr are %d, %d' % (cnt_addr_start, cnt_addr_stop)) # print('The length of result is %d' % len(cnt_result_list)) if cnt_number == (cnt_addr_stop-cnt_addr_start) + 1: print('The cnt_number match the input scan number') else: print('The cnt_number miss match') # print('Counter number is ', cnt_number) print('The counter results is ', cnt_result_list) return cnt_result_list def ad5371_play(self, ch_num_list, raw_wave_list, play_sign=True, check_sign=False):#PMT """To receive PMT counter's result for each single play :param ch_num_list: List of ch_num(int), ch_num can be [0,1,..39] :type ch_num_list: list :param raw_wave_list: List of raw_wave_data, len(raw_wave_list[0]) = len(ch_num_list) :*** format : [[ch0_pt0, ch1_pt0, ...], [ch0_pt1, ch1_pt1, ...], ...] :type raw_wave_list: list :param play_sign: True/False -- Enable/Disable the play :type play_sign: bool :param check_sign: If True, the check function will be carried out, which will consume more time. :type check_sign: bool :returns: :rtype: """ addr_start, addr_stop = self.dac_ad5371_data_download(ch_num_list, raw_wave_list, check_sign) if play_sign: ch_num = len(ch_num_list) self.ad5371_play_set(ch_num, [106, 59, 111]) # [106, 59, 111] self.write(b'\x00\x31' + addr_start + addr_stop) print(bytes_to_hexstr(b'\x00\x31' + addr_start + addr_stop)) time.sleep((bytes_to_num(addr_stop)-bytes_to_num(addr_start))*1e-6) if __name__ == '__main__': """ var_type = [0, 1, 2, 3, 4] scan_sign = [0, 1, 2, 3, 4] + 4*(para_num) para_num = 0, 1... """ # # Part1 # """ DDS and TTL test modules """ # fpga = DDSTestClass(1) # fpga.dll.flushInputBuffer() # To refresh the USB, just copy # fpga.initial_device() # # var_type = 0 # play_ch_num_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] # # play_ch_num_list = [0, 1, 2, 3, 4, 5] # # play_ch_num_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] # fpga.test_fun_basic(play_ch_num_list, var_type, check_sign=True) # Part2 4 """ AD5371 test modules """ ad5371 = DacTestClass(1) ad5371.dll.flushInputBuffer() ad5371.ad5371_ini() ad5371.ch_test_new(10) # # Part3 # """ AD5371 test modules """ # fpga = DDSTestClass(1) # fpga.cw_play(ch_num=5, amp=1, freq=0, phase=0) # ch_num=5 # hp_channel, reg_wr = fpga.ch2identify(ch_num) # ch_num_byte = num_to_bytes(2**ch_num, 2) # print(fpga.l_read(ch_num_byte, reg_wr, right_rd=b'\x00\x00\x00\x00\x00\x00\x00\x00'))
[ 2, 19617, 28, 48504, 12, 23, 201, 198, 37811, 201, 198, 43801, 201, 198, 15269, 357, 66, 8, 25998, 12, 7908, 412, 12562, 11, 3457, 13, 220, 1439, 2489, 10395, 13, 201, 198, 43801, 201, 198, 13838, 25, 26980, 67, 506, 33144, 201, 198, 10430, 25, 220, 13130, 14, 3070, 14, 2998, 201, 198, 23067, 6530, 25, 383, 2836, 7071, 286, 262, 360, 5258, 3788, 201, 198, 30026, 3455, 25, 8495, 281, 12454, 290, 1332, 2163, 329, 360, 5258, 3096, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1262, 11361, 513, 13, 21, 13, 18, 201, 198, 43801, 201, 198, 37811, 201, 198, 2, 4808, 3672, 62, 796, 705, 12417, 62, 14681, 6, 201, 198, 11748, 640, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 288, 9310, 201, 198, 201, 198, 201, 198, 4299, 997, 62, 1462, 62, 33661, 7, 22510, 11, 416, 1452, 388, 11, 1029, 62, 2256, 28, 17821, 2599, 201, 198, 220, 220, 220, 37227, 2514, 651, 262, 9881, 5794, 286, 257, 1813, 32465, 1271, 201, 198, 220, 220, 220, 357, 1484, 329, 1366, 62, 1676, 8, 201, 198, 201, 198, 220, 220, 220, 1058, 17143, 997, 25, 317, 1813, 1271, 201, 198, 220, 220, 220, 1058, 4906, 997, 25, 493, 201, 198, 220, 220, 220, 1058, 17143, 416, 1452, 388, 25, 383, 1271, 286, 63, 9881, 357, 273, 18896, 28955, 286, 262, 1441, 1573, 201, 198, 220, 220, 220, 1058, 4906, 416, 1452, 388, 25, 493, 201, 198, 220, 220, 220, 1058, 17143, 1029, 62, 2256, 25, 6407, 14, 25101, 1377, 1263, 14, 31629, 12, 437, 666, 26, 29206, 25, 22510, 62, 1462, 62, 33661, 7, 16, 11, 362, 11, 6407, 14, 25101, 42944, 29, 65, 6, 59, 87, 405, 59, 87, 486, 6, 393, 275, 6, 59, 87, 486, 59, 87, 405, 6, 201, 198, 220, 220, 220, 1058, 4906, 1029, 62, 2256, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 1058, 7783, 82, 25, 2750, 4879, 329, 997, 11, 18896, 3419, 796, 416, 1452, 388, 201, 198, 220, 220, 220, 1058, 81, 4906, 25, 9881, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 611, 1029, 62, 2256, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 18747, 26933, 22510, 4357, 288, 4906, 11639, 29, 84, 23, 27691, 83, 26730, 4879, 3419, 58, 12, 1525, 1452, 388, 47715, 220, 1303, 1263, 12, 437, 666, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 18747, 26933, 22510, 4357, 288, 4906, 11639, 27, 84, 23, 27691, 83, 26730, 4879, 3419, 58, 25, 1525, 1452, 388, 60, 220, 1303, 1310, 12, 437, 666, 201, 198, 201, 198, 201, 198, 4299, 9881, 62, 1462, 62, 22510, 7, 33661, 62, 11, 4488, 62, 28, 17821, 11, 1263, 62, 28, 17821, 2599, 201, 198, 220, 220, 220, 37227, 2514, 651, 262, 493, 5794, 286, 257, 1813, 9881, 201, 198, 220, 220, 220, 357, 1484, 329, 1366, 62, 1676, 8, 201, 198, 201, 198, 220, 220, 220, 1058, 17143, 9881, 62, 25, 317, 1813, 9881, 201, 198, 220, 220, 220, 1058, 4906, 9881, 62, 25, 9881, 201, 198, 220, 220, 220, 1058, 17143, 4488, 62, 25, 6407, 329, 4488, 5128, 201, 198, 220, 220, 220, 1058, 4906, 4488, 62, 25, 20512, 201, 198, 220, 220, 220, 1058, 17143, 1263, 62, 25, 16766, 355, 262, 366, 8929, 62, 2256, 1, 287, 262, 2163, 705, 22510, 62, 1462, 62, 33661, 6, 201, 198, 220, 220, 220, 1058, 4906, 1263, 62, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 1058, 7783, 82, 25, 2558, 329, 9881, 201, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 611, 407, 4488, 62, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1263, 62, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 13, 6738, 62, 33661, 7, 33661, 62, 11, 18022, 2875, 11639, 14261, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 13, 6738, 62, 33661, 7, 33661, 62, 11, 18022, 2875, 11639, 31629, 11537, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1263, 62, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 13, 6738, 62, 33661, 7, 33661, 62, 11, 18022, 2875, 11639, 14261, 3256, 4488, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 13, 6738, 62, 33661, 7, 33661, 62, 11, 18022, 2875, 11639, 31629, 3256, 4488, 28, 17821, 8, 201, 198, 201, 198, 201, 198, 4299, 9881, 62, 1462, 62, 33095, 2536, 7, 33661, 62, 11, 2272, 28, 17821, 2599, 201, 198, 220, 220, 220, 37227, 2514, 651, 262, 4731, 5794, 286, 257, 1813, 9881, 201, 198, 220, 220, 220, 357, 1484, 329, 3601, 14, 24442, 8, 201, 198, 201, 198, 220, 220, 220, 1058, 17143, 9881, 62, 25, 317, 1813, 9881, 201, 198, 220, 220, 220, 1058, 4906, 9881, 62, 25, 9881, 201, 198, 220, 220, 220, 1058, 17143, 2272, 25, 6407, 329, 7550, 257, 705, 705, 583, 18022, 201, 198, 220, 220, 220, 1058, 4906, 2272, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 1058, 7783, 82, 25, 10903, 329, 9881, 201, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 1303, 37786, 796, 264, 62, 2536, 13, 268, 8189, 10786, 33095, 11537, 1303, 2656, 4610, 287, 11361, 17, 201, 198, 220, 220, 220, 4731, 796, 9881, 44807, 33095, 3419, 1303, 2656, 4610, 287, 11361, 17, 201, 198, 220, 220, 220, 611, 2272, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 62, 4480, 62, 13200, 796, 685, 8841, 58, 72, 25, 72, 1343, 362, 60, 329, 1312, 287, 2837, 7, 15, 11, 18896, 7, 8841, 828, 362, 15437, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 45302, 22179, 7, 8841, 62, 4480, 62, 13200, 8, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4731, 201, 198, 201, 198, 201, 198, 4871, 376, 6968, 32, 7, 33714, 13, 17309, 38824, 2599, 220, 1303, 5215, 39709, 11, 201, 198, 220, 220, 220, 37227, 317, 1398, 973, 329, 11812, 11, 287, 584, 1573, 11, 262, 2457, 3586, 37227, 201, 198, 201, 198, 220, 220, 220, 37227, 2514, 18282, 262, 2836, 12, 23211, 9367, 12, 12683, 25998, 1174, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1401, 62, 4906, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 4357, 543, 318, 905, 262, 9367, 62, 1845, 64, 338, 7885, 2099, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 6870, 14631, 3919, 9367, 1600, 366, 696, 1600, 366, 19503, 80, 1600, 366, 40715, 1600, 366, 2435, 8973, 201, 198, 220, 220, 220, 9367, 62, 12683, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 1343, 604, 9, 7, 1845, 64, 62, 22510, 828, 543, 905, 262, 9367, 62, 1845, 64, 338, 2099, 290, 1448, 1271, 201, 198, 220, 220, 220, 31215, 62, 22510, 796, 657, 11, 352, 986, 26, 383, 1448, 1271, 329, 262, 9367, 62, 1845, 64, 220, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1614, 62, 9630, 28, 15, 11, 1332, 62, 14171, 28, 25101, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1675, 4219, 262, 24470, 3920, 286, 6097, 37811, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5215, 39709, 13, 834, 15003, 834, 7, 944, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 288, 9310, 13, 17309, 38824, 13, 834, 15003, 834, 7, 944, 11, 1614, 62, 9630, 28, 7959, 62, 9630, 11, 1332, 62, 14171, 28, 9288, 62, 14171, 8, 201, 198, 201, 198, 220, 220, 220, 825, 269, 86, 62, 1759, 7, 944, 11, 442, 62, 22510, 11, 20766, 11, 2030, 80, 11, 7108, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 28008, 6518, 4634, 329, 360, 5258, 201, 198, 220, 220, 220, 220, 220, 220, 220, 357, 5171, 307, 5625, 287, 10958, 1332, 393, 1729, 12, 43167, 6769, 62, 1759, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 442, 62, 22510, 25, 383, 1271, 442, 284, 307, 900, 11, 685, 15, 11, 16, 42303, 11, 1314, 60, 318, 1695, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 442, 62, 22510, 25, 493, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 20766, 25, 44074, 3984, 286, 360, 5258, 11, 2837, 33250, 15, 11, 16, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 20766, 25, 12178, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2030, 80, 25, 31902, 286, 360, 5258, 11, 4326, 25, 19805, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2030, 80, 25, 493, 393, 12178, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 20766, 25, 18983, 286, 360, 5258, 11, 4326, 25, 31028, 11, 2837, 25, 685, 15, 11, 17, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 20766, 25, 12178, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 4326, 25, 19805, 11, 26109, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 12178, 11, 12178, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 27673, 62, 17620, 11, 842, 62, 18351, 796, 2116, 13, 354, 17, 738, 1958, 7, 354, 62, 22510, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 442, 62, 22510, 62, 26327, 796, 997, 62, 1462, 62, 33661, 7, 17, 1174, 354, 62, 22510, 11, 362, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 288, 9310, 62, 7890, 62, 4868, 796, 2116, 13, 33714, 62, 7890, 62, 687, 7, 24831, 62, 17620, 11, 20766, 11, 2030, 80, 11, 7108, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 33661, 62, 1462, 62, 33095, 2536, 7, 33714, 62, 7890, 62, 4868, 58, 15, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 75, 62, 11250, 495, 7, 354, 62, 22510, 62, 26327, 11, 842, 62, 18351, 11, 288, 9310, 62, 7890, 62, 4868, 58, 15, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 20855, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 352, 438, 1169, 1103, 4875, 2030, 80, 357, 2617, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 362, 438, 1169, 3580, 286, 2030, 80, 357, 5305, 532, 900, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 288, 9310, 62, 7890, 62, 4868, 58, 16, 4357, 288, 9310, 62, 7890, 62, 4868, 58, 17, 60, 201, 198, 201, 198, 220, 220, 220, 825, 256, 28781, 62, 2617, 7, 944, 11, 442, 62, 22510, 11, 1241, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 900, 262, 42654, 14500, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 442, 62, 22510, 25, 6518, 1271, 286, 42654, 11, 685, 15, 11, 16, 60, 6053, 284, 42654, 24, 11, 940, 290, 657, 87, 20, 14, 21, 657, 11, 16, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 442, 62, 22510, 25, 493, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1241, 25, 657, 14, 16, 329, 1877, 290, 1029, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 1241, 25, 493, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1573, 62, 259, 62, 22510, 796, 642, 9, 1433, 1343, 442, 62, 22510, 1343, 1467, 9, 5715, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1573, 62, 259, 62, 33661, 796, 997, 62, 1462, 62, 33661, 7, 4775, 62, 259, 62, 22510, 4064, 17759, 11, 362, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 33661, 62, 1462, 62, 33095, 2536, 7, 4775, 62, 259, 62, 33661, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 4775, 62, 259, 62, 33661, 8, 201, 198, 201, 198, 220, 220, 220, 825, 512, 20, 38056, 62, 5362, 7, 944, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 41216, 262, 5984, 20, 38056, 543, 318, 257, 2319, 12, 354, 1877, 12, 12287, 45793, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1058, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 1058, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 2999, 6, 10, 65, 6, 59, 87, 1238, 59, 87, 405, 11537, 220, 1303, 262, 275, 6, 59, 87, 2999, 6, 460, 307, 275, 6, 59, 87, 3070, 3256, 65, 6, 59, 87, 3023, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 3070, 6, 10, 65, 6, 59, 87, 1238, 59, 87, 405, 11537, 220, 1303, 262, 3963, 50, 62, 70, 16, 318, 900, 284, 307, 1343, 940, 53, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 3023, 6, 10, 65, 6, 59, 87, 1238, 59, 87, 405, 11537, 220, 1303, 262, 3963, 50, 62, 70, 17, 93, 19, 318, 900, 284, 307, 1343, 940, 53, 13, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 1795, 6, 10, 65, 6, 59, 87, 1795, 59, 87, 405, 11537, 220, 1303, 327, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 1821, 6, 10, 65, 6, 59, 87, 5777, 59, 87, 4851, 11537, 220, 1303, 337, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 2682, 6, 10, 65, 6, 59, 87, 405, 6, 10, 65, 6, 59, 87, 34, 15, 6, 10, 65, 6, 59, 87, 1795, 59, 87, 405, 11537, 220, 1303, 1395, 796, 1343, 940, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 17977, 62, 4868, 796, 685, 15, 11, 352, 11, 513, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 324, 20, 38056, 62, 18351, 62, 301, 696, 62, 2617, 7, 301, 696, 62, 4868, 8, 220, 1303, 1675, 900, 262, 49091, 2494, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2116, 13, 324, 20, 38056, 62, 1759, 62, 2617, 7, 354, 62, 22510, 11, 685, 15801, 11, 7863, 11, 13374, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 2885, 20, 38056, 4238, 468, 587, 5201, 11537, 201, 198, 201, 198, 220, 220, 220, 1303, 29113, 29113, 201, 198, 220, 220, 220, 1303, 11812, 12, 23100, 3681, 2163, 201, 198, 220, 220, 220, 1303, 220, 20015, 98, 10310, 233, 32849, 121, 42468, 162, 242, 107, 162, 234, 223, 13783, 248, 10310, 103, 34460, 21253, 223, 241, 21410, 162, 241, 235, 43291, 201, 198, 220, 220, 220, 1303, 29113, 29113, 201, 198, 220, 220, 220, 825, 4238, 62, 33714, 7, 944, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 41216, 290, 18305, 1096, 262, 1467, 360, 5258, 82, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1058, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 1058, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 442, 62, 22510, 62, 4868, 796, 685, 15, 11, 352, 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, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40850, 62, 1845, 64, 62, 2617, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27261, 62, 261, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6376, 62, 16, 287, 2837, 7, 11925, 7, 354, 62, 22510, 62, 4868, 8, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 442, 62, 22510, 62, 4868, 58, 9630, 62, 16, 60, 1279, 604, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36733, 62, 2885, 2079, 1314, 7, 354, 62, 22510, 62, 4868, 58, 9630, 62, 16, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36733, 62, 324, 2079, 940, 7, 354, 62, 22510, 62, 4868, 58, 9630, 62, 16, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9038, 723, 62, 27261, 62, 17, 70, 20, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9038, 723, 62, 27261, 62, 16, 70, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27261, 62, 2364, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 301, 696, 62, 42503, 3419, 220, 220, 220, 1303, 1649, 612, 389, 617, 11316, 11, 428, 530, 481, 307, 973, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 17620, 46083, 442, 62, 22510, 62, 4868, 11, 705, 4238, 468, 587, 5201, 11537, 201, 198, 201, 198, 220, 220, 220, 825, 7108, 62, 20063, 62, 33714, 7, 944, 11, 442, 62, 22510, 62, 4868, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 1598, 262, 7108, 286, 360, 5258, 287, 442, 62, 22510, 62, 4868, 11, 706, 326, 262, 7108, 287, 10507, 8927, 481, 307, 657, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1867, 338, 517, 11, 611, 257, 288, 9310, 318, 711, 379, 257, 2030, 80, 14512, 657, 11, 356, 761, 284, 2245, 340, 290, 1598, 262, 7108, 329, 366, 43167, 711, 1911, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 442, 62, 22510, 62, 4868, 25, 7343, 286, 442, 62, 22510, 7, 600, 828, 442, 62, 22510, 460, 307, 685, 15, 11, 16, 11, 492, 1314, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 442, 62, 22510, 62, 4868, 25, 1351, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6376, 62, 16, 287, 2837, 7, 11925, 7, 354, 62, 22510, 62, 4868, 8, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 442, 62, 22510, 62, 4868, 58, 9630, 62, 16, 60, 1279, 604, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40715, 62, 20063, 62, 17, 70, 20, 7, 354, 62, 22510, 62, 4868, 58, 9630, 62, 16, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40715, 62, 20063, 62, 16, 70, 7, 354, 62, 22510, 62, 4868, 58, 9630, 62, 16, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 705, 40715, 286, 6518, 46083, 354, 62, 22510, 62, 4868, 4032, 468, 587, 12539, 6, 201, 198, 201, 198, 220, 220, 220, 825, 8379, 62, 7890, 62, 15002, 7, 944, 11, 442, 62, 22510, 62, 4868, 11, 8246, 62, 7890, 62, 4868, 62, 4868, 11, 2198, 62, 12683, 28, 25101, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 4321, 262, 8379, 711, 1366, 329, 5021, 9619, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 442, 62, 22510, 62, 4868, 25, 7343, 286, 442, 62, 22510, 7, 600, 828, 442, 62, 22510, 460, 307, 685, 15, 11, 16, 11, 492, 1314, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 442, 62, 22510, 62, 4868, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8246, 62, 7890, 62, 4868, 62, 4868, 25, 7343, 286, 8246, 62, 7890, 62, 4868, 7, 1640, 530, 6518, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 8162, 5794, 286, 8246, 62, 7890, 62, 4868, 25, 685, 220, 685, 35836, 62, 12683, 17414, 32, 11, 69, 7, 25983, 828, 69, 1872, 7, 14415, 8, 38430, 5715, 11, 2435, 60, 4357, 220, 2644, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 8162, 29206, 25, 685, 220, 685, 35836, 62, 12683, 15, 17414, 32, 15, 11, 277, 15, 11, 277, 1872, 15, 38430, 5715, 15, 11, 640, 15, 60, 4357, 220, 685, 35836, 62, 12683, 16, 17414, 32, 16, 11, 277, 16, 11, 277, 1872, 16, 38430, 5715, 16, 11, 640, 16, 60, 4357, 2644, 2361, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 9367, 62, 12683, 25, 493, 11, 685, 15, 11, 16, 11, 11485, 837, 19, 11, 20, 11, 492, 23, 60, 438, 14692, 3919, 9367, 1600, 366, 696, 1, 62, 15, 11, 366, 19503, 80, 1, 62, 15, 11, 366, 40715, 1, 62, 15, 11, 366, 2435, 1, 62, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 20766, 25, 12178, 11, 2837, 25, 685, 15, 11, 16, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 2030, 80, 25, 493, 393, 12178, 11, 4326, 25, 19805, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7108, 25, 12178, 11, 4326, 25, 31028, 11, 2837, 25, 685, 15, 11, 17, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 1241, 25, 965, 11, 705, 8929, 26488, 6, 9319, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 640, 25, 12178, 11, 4326, 25, 514, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 8246, 62, 7890, 62, 4868, 62, 4868, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2198, 62, 12683, 25, 1002, 6407, 11, 262, 2198, 2163, 481, 307, 5281, 503, 11, 543, 481, 15000, 517, 640, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2198, 62, 12683, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 354, 62, 22510, 62, 4868, 8, 14512, 18896, 7, 1831, 62, 7890, 62, 4868, 62, 4868, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 76, 1042, 963, 286, 442, 62, 22510, 290, 1366, 62, 4868, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8420, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 711, 62, 21975, 62, 4775, 796, 275, 7061, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 6376, 62, 16, 287, 2837, 7, 11925, 7, 354, 62, 22510, 62, 4868, 8, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 7890, 62, 4868, 62, 29510, 796, 8246, 62, 7890, 62, 4868, 62, 4868, 58, 9630, 62, 16, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 711, 62, 21975, 62, 4775, 62, 29510, 796, 2116, 13, 29762, 62, 7890, 62, 15002, 7, 354, 62, 22510, 62, 4868, 58, 9630, 62, 16, 4357, 8246, 62, 7890, 62, 4868, 62, 29510, 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, 220, 220, 220, 220, 220, 220, 220, 220, 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, 62, 12683, 11, 3601, 62, 12683, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 711, 62, 21975, 62, 4775, 15853, 711, 62, 21975, 62, 4775, 62, 29510, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 358, 1045, 12, 15002, 286, 6518, 46083, 442, 62, 22510, 62, 4868, 11, 705, 468, 587, 5201, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1759, 62, 43167, 62, 2617, 7, 354, 62, 22510, 62, 4868, 11, 711, 62, 21975, 62, 4775, 11, 3601, 62, 12683, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1441, 711, 62, 21975, 62, 4775, 201, 198, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 1401, 62, 4906, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 4357, 543, 318, 905, 262, 9367, 62, 1845, 64, 338, 7885, 2099, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 6870, 14631, 3919, 9367, 1600, 366, 696, 1600, 366, 19503, 80, 1600, 366, 40715, 1600, 366, 2435, 8973, 201, 198, 220, 220, 220, 9367, 62, 12683, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 1343, 604, 9, 7, 1845, 64, 62, 22510, 828, 543, 905, 262, 9367, 62, 1845, 64, 338, 2099, 290, 1448, 1271, 201, 198, 220, 220, 220, 31215, 62, 22510, 796, 657, 11, 352, 986, 26, 383, 1448, 1271, 329, 262, 9367, 62, 1845, 64, 220, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 825, 711, 7, 944, 11, 1401, 62, 4906, 11, 9367, 62, 1845, 64, 62, 4868, 11, 2198, 62, 12683, 28, 25101, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 4321, 262, 9367, 1366, 290, 7616, 262, 711, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1867, 338, 517, 837, 64, 3122, 51, 3753, 3328, 2163, 481, 635, 307, 5281, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1401, 62, 4906, 25, 2558, 6870, 262, 7885, 2099, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 1401, 62, 4906, 25, 493, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 9367, 62, 1845, 64, 62, 4868, 25, 7343, 286, 9367, 1366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 8162, 5794, 25, 16410, 45, 62, 15, 11, 31215, 15, 11, 31215, 16, 4357, 685, 45, 62, 16, 11, 31215, 15, 11, 31215, 16, 4357, 492, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 9367, 62, 1845, 64, 62, 4868, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2198, 62, 12683, 25, 1002, 6407, 11, 262, 2198, 2163, 481, 307, 5281, 503, 11, 543, 481, 15000, 517, 640, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2198, 62, 12683, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 7061, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9367, 62, 1845, 64, 62, 5235, 796, 2116, 13, 35836, 62, 7890, 62, 5235, 7, 7785, 62, 4906, 11, 9367, 62, 1845, 64, 62, 4868, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 33661, 62, 1462, 62, 33095, 2536, 7, 35836, 62, 1845, 64, 62, 5235, 58, 15, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35836, 62, 7890, 62, 15002, 7, 35836, 62, 1845, 64, 62, 5235, 58, 15, 4357, 3601, 62, 12683, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2198, 62, 12683, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 35836, 62, 7890, 62, 9122, 7, 35836, 62, 1845, 64, 62, 5235, 58, 15, 60, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 405, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 33351, 62, 7890, 4321, 2198, 4054, 0, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8420, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11002, 1035, 318, 46083, 9881, 62, 1462, 62, 33095, 2536, 7, 65, 6, 59, 87, 405, 59, 87, 486, 6, 1343, 9367, 62, 1845, 64, 62, 5235, 58, 15, 7131, 15, 25, 19, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 486, 6, 1343, 9367, 62, 1845, 64, 62, 5235, 58, 15, 7131, 15, 25, 19, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 23350, 62, 1759, 33172, 9367, 62, 1845, 64, 62, 5235, 58, 16, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 24588, 62, 260, 15164, 7, 35836, 62, 1845, 64, 62, 5235, 58, 16, 12962, 201, 198, 201, 198, 220, 220, 220, 825, 3753, 62, 260, 15164, 7, 944, 11, 269, 429, 62, 17618, 2599, 2, 5868, 51, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 3328, 3122, 51, 3753, 338, 1255, 329, 1123, 2060, 711, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 269, 429, 62, 17618, 25, 7472, 1271, 286, 2060, 711, 287, 1459, 711, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 269, 429, 62, 17618, 25, 493, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 317, 1351, 286, 3122, 51, 3753, 338, 1255, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1100, 448, 62, 33661, 796, 275, 7061, 201, 198, 220, 220, 220, 220, 220, 220, 220, 269, 429, 62, 20274, 62, 4868, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 437, 62, 12683, 796, 6407, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 7061, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 256, 16, 796, 640, 13, 2435, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 981, 3753, 62, 437, 62, 12683, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20218, 796, 2116, 13, 961, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 448, 62, 33661, 15853, 20218, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 1100, 448, 62, 33661, 14512, 275, 7061, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 11297, 640, 13529, 318, 46083, 640, 13, 2435, 3419, 12, 83, 16, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 33661, 62, 1462, 62, 33095, 2536, 7, 961, 448, 62, 33661, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 7061, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1100, 448, 62, 33661, 58, 15, 25, 17, 60, 6624, 275, 6, 59, 87, 5777, 59, 87, 7708, 10354, 220, 1303, 923, 1051, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 448, 62, 33661, 796, 1100, 448, 62, 33661, 58, 17, 47715, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 429, 62, 29851, 62, 9688, 796, 9881, 62, 1462, 62, 22510, 7, 961, 448, 62, 33661, 58, 15, 25, 17, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1100, 448, 62, 33661, 58, 15, 25, 17, 60, 6624, 275, 6, 59, 87, 5777, 59, 87, 37, 20, 10354, 220, 1303, 2245, 1051, 7, 464, 886, 1051, 286, 428, 15541, 9052, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 448, 62, 33661, 796, 1100, 448, 62, 33661, 58, 17, 47715, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 429, 62, 29851, 62, 11338, 796, 9881, 62, 1462, 62, 22510, 7, 961, 448, 62, 33661, 58, 15, 25, 17, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 437, 62, 12683, 796, 10352, 220, 1303, 1675, 2270, 422, 262, 2187, 981, 12, 26268, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1100, 448, 62, 33661, 58, 15, 25, 17, 60, 6624, 275, 6, 59, 87, 5777, 59, 87, 37, 23, 10354, 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, 269, 429, 62, 20274, 62, 4868, 13, 33295, 10786, 2502, 11125, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 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, 269, 429, 62, 20274, 62, 4868, 13, 33295, 7, 33661, 62, 1462, 62, 22510, 7, 961, 448, 62, 33661, 58, 15, 25, 17, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 448, 62, 33661, 796, 1100, 448, 62, 33661, 58, 17, 47715, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 1169, 923, 290, 2245, 286, 269, 429, 62, 29851, 389, 4064, 67, 11, 4064, 67, 6, 4064, 357, 66, 429, 62, 29851, 62, 9688, 11, 269, 429, 62, 29851, 62, 11338, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 464, 4129, 286, 1255, 318, 4064, 67, 6, 4064, 18896, 7, 66, 429, 62, 20274, 62, 4868, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 429, 62, 17618, 6624, 357, 66, 429, 62, 29851, 62, 11338, 12, 66, 429, 62, 29851, 62, 9688, 8, 1343, 352, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 464, 269, 429, 62, 17618, 2872, 262, 5128, 9367, 1271, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 464, 269, 429, 62, 17618, 2051, 2872, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 31694, 1271, 318, 46083, 269, 429, 62, 17618, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 464, 3753, 2482, 318, 46083, 269, 429, 62, 20274, 62, 4868, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 269, 429, 62, 20274, 62, 4868, 201, 198, 201, 198, 220, 220, 220, 825, 512, 20, 38056, 62, 1759, 7, 944, 11, 442, 62, 22510, 62, 4868, 11, 8246, 62, 19204, 62, 4868, 11, 711, 62, 12683, 28, 17821, 11, 2198, 62, 12683, 28, 25101, 2599, 2, 5868, 51, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2514, 3328, 3122, 51, 3753, 338, 1255, 329, 1123, 2060, 711, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 442, 62, 22510, 62, 4868, 25, 7343, 286, 442, 62, 22510, 7, 600, 828, 442, 62, 22510, 460, 307, 685, 15, 11, 16, 11, 492, 2670, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 442, 62, 22510, 62, 4868, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8246, 62, 19204, 62, 4868, 25, 7343, 286, 8246, 62, 19204, 62, 7890, 11, 18896, 7, 1831, 62, 19204, 62, 4868, 58, 15, 12962, 796, 18896, 7, 354, 62, 22510, 62, 4868, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 8162, 5794, 1058, 16410, 354, 15, 62, 457, 15, 11, 442, 16, 62, 457, 15, 11, 2644, 4357, 685, 354, 15, 62, 457, 16, 11, 442, 16, 62, 457, 16, 11, 2644, 4357, 2644, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 8246, 62, 19204, 62, 4868, 25, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 711, 62, 12683, 25, 6407, 14, 25101, 1377, 27882, 14, 48893, 262, 711, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 711, 62, 12683, 25, 20512, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2198, 62, 12683, 25, 1002, 6407, 11, 262, 2198, 2163, 481, 307, 5281, 503, 11, 543, 481, 15000, 517, 640, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2198, 62, 12683, 25, 20512, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37817, 62, 9688, 11, 37817, 62, 11338, 796, 2116, 13, 67, 330, 62, 324, 20, 38056, 62, 7890, 62, 15002, 7, 354, 62, 22510, 62, 4868, 11, 8246, 62, 19204, 62, 4868, 11, 2198, 62, 12683, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 711, 62, 12683, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 442, 62, 22510, 796, 18896, 7, 354, 62, 22510, 62, 4868, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 324, 20, 38056, 62, 1759, 62, 2617, 7, 354, 62, 22510, 11, 685, 15801, 11, 7863, 11, 13374, 12962, 220, 1303, 685, 15801, 11, 7863, 11, 13374, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13564, 7, 65, 6, 59, 87, 405, 59, 87, 3132, 6, 1343, 37817, 62, 9688, 1343, 37817, 62, 11338, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 33661, 62, 1462, 62, 33095, 2536, 7, 65, 6, 59, 87, 405, 59, 87, 3132, 6, 1343, 37817, 62, 9688, 1343, 37817, 62, 11338, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 19510, 33661, 62, 1462, 62, 22510, 7, 29851, 62, 11338, 13219, 33661, 62, 1462, 62, 22510, 7, 29851, 62, 9688, 4008, 9, 16, 68, 12, 21, 8, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 1401, 62, 4906, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 201, 198, 220, 220, 220, 9367, 62, 12683, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 60, 1343, 604, 9, 7, 1845, 64, 62, 22510, 8, 201, 198, 220, 220, 220, 31215, 62, 22510, 796, 657, 11, 352, 986, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 1303, 1303, 2142, 16, 201, 198, 220, 220, 220, 1303, 37227, 360, 5258, 290, 42654, 1332, 13103, 37227, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 796, 20084, 2257, 395, 9487, 7, 16, 8, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 13, 12736, 13, 25925, 20560, 28632, 3419, 220, 1303, 1675, 14976, 262, 8450, 11, 655, 4866, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 13, 36733, 62, 25202, 3419, 201, 198, 220, 220, 220, 1303, 201, 198, 220, 220, 220, 1303, 1401, 62, 4906, 796, 657, 201, 198, 220, 220, 220, 1303, 711, 62, 354, 62, 22510, 62, 4868, 796, 685, 15, 11, 352, 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, 60, 201, 198, 220, 220, 220, 1303, 1303, 711, 62, 354, 62, 22510, 62, 4868, 796, 685, 15, 11, 352, 11, 362, 11, 513, 11, 604, 11, 642, 60, 201, 198, 220, 220, 220, 1303, 1303, 711, 62, 354, 62, 22510, 62, 4868, 796, 685, 15, 11, 352, 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, 60, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 13, 9288, 62, 12543, 62, 35487, 7, 1759, 62, 354, 62, 22510, 62, 4868, 11, 1401, 62, 4906, 11, 2198, 62, 12683, 28, 17821, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 2142, 17, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 604, 201, 198, 220, 220, 220, 37227, 5984, 20, 38056, 1332, 13103, 37227, 201, 198, 220, 220, 220, 512, 20, 38056, 796, 360, 330, 14402, 9487, 7, 16, 8, 201, 198, 220, 220, 220, 512, 20, 38056, 13, 12736, 13, 25925, 20560, 28632, 3419, 201, 198, 220, 220, 220, 512, 20, 38056, 13, 324, 20, 38056, 62, 5362, 3419, 201, 198, 220, 220, 220, 512, 20, 38056, 13, 354, 62, 9288, 62, 3605, 7, 940, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 1303, 2142, 18, 201, 198, 220, 220, 220, 1303, 37227, 5984, 20, 38056, 1332, 13103, 37227, 201, 198, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 796, 20084, 2257, 395, 9487, 7, 16, 8, 201, 198, 220, 220, 220, 1303, 277, 79, 4908, 13, 66, 86, 62, 1759, 7, 354, 62, 22510, 28, 20, 11, 20766, 28, 16, 11, 2030, 80, 28, 15, 11, 7108, 28, 15, 8, 201, 198, 220, 220, 220, 1303, 442, 62, 22510, 28, 20, 201, 198, 220, 220, 220, 1303, 27673, 62, 17620, 11, 842, 62, 18351, 796, 277, 79, 4908, 13, 354, 17, 738, 1958, 7, 354, 62, 22510, 8, 201, 198, 220, 220, 220, 1303, 442, 62, 22510, 62, 26327, 796, 997, 62, 1462, 62, 33661, 7, 17, 1174, 354, 62, 22510, 11, 362, 8, 201, 198, 220, 220, 220, 1303, 3601, 7, 46428, 4908, 13, 75, 62, 961, 7, 354, 62, 22510, 62, 26327, 11, 842, 62, 18351, 11, 826, 62, 4372, 28, 65, 6, 59, 87, 405, 59, 87, 405, 59, 87, 405, 59, 87, 405, 59, 87, 405, 59, 87, 405, 59, 87, 405, 59, 87, 405, 6, 4008, 201, 198 ]
1.910498
8,592
from django.conf.urls import url from .views import listings_listing_view, listings_api_view urlpatterns = [ url( r'^listings/(?P<listing_hostname>[a-z0-9-\.]+)/?$', listings_listing_view, name='listings_listing_view', ), url( r'^api/v1/listings/(?P<listing_hostname>[a-z0-9-\.]+)/?$', listings_api_view, name='listings_api_view', ) ]
[ 6738, 42625, 14208, 13, 10414, 13, 6371, 82, 1330, 19016, 198, 198, 6738, 764, 33571, 1330, 26890, 62, 4868, 278, 62, 1177, 11, 26890, 62, 15042, 62, 1177, 628, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 19016, 7, 198, 220, 220, 220, 220, 220, 220, 220, 374, 6, 61, 4868, 654, 29006, 30, 47, 27, 4868, 278, 62, 4774, 3672, 36937, 64, 12, 89, 15, 12, 24, 12, 59, 8183, 10, 20679, 30, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 26890, 62, 4868, 278, 62, 1177, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 4868, 654, 62, 4868, 278, 62, 1177, 3256, 198, 220, 220, 220, 10612, 628, 220, 220, 220, 19016, 7, 198, 220, 220, 220, 220, 220, 220, 220, 374, 6, 61, 15042, 14, 85, 16, 14, 4868, 654, 29006, 30, 47, 27, 4868, 278, 62, 4774, 3672, 36937, 64, 12, 89, 15, 12, 24, 12, 59, 8183, 10, 20679, 30, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 26890, 62, 15042, 62, 1177, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 4868, 654, 62, 15042, 62, 1177, 3256, 198, 220, 220, 220, 1267, 198, 60, 198 ]
1.985222
203
''' Author: xyb Date: 2020-08-10 18:35:32 LastEditTime: 2020-08-10 18:52:50 ''' from flask import Flask, make_response, request app = Flask(__name__) app.secret_key = 'dfslkfjdlfsdkjfnskj' #直接设置 #间接设置 # class DefaultConfig(object): # SECRET_KEY = 'dfslkfjdlfsdkjfnskj' # app.config.from_object(DefaultConfig) @app.route('/set_session') @app.route('/get_session') if __name__ == "__main__": app.run(host='', port=5000, debug=False)
[ 7061, 6, 198, 13838, 25, 2124, 88, 65, 198, 10430, 25, 12131, 12, 2919, 12, 940, 1248, 25, 2327, 25, 2624, 198, 5956, 18378, 7575, 25, 12131, 12, 2919, 12, 940, 1248, 25, 4309, 25, 1120, 198, 7061, 6, 198, 6738, 42903, 1330, 46947, 11, 787, 62, 26209, 11, 2581, 198, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 198, 1324, 13, 21078, 62, 2539, 796, 705, 7568, 6649, 74, 69, 73, 67, 1652, 21282, 42421, 69, 5907, 42421, 6, 220, 1303, 33566, 112, 162, 236, 98, 164, 106, 122, 163, 121, 106, 198, 2, 29785, 112, 162, 236, 98, 164, 106, 122, 163, 121, 106, 198, 2, 1398, 15161, 16934, 7, 15252, 2599, 198, 2, 220, 220, 220, 220, 10729, 26087, 62, 20373, 796, 705, 7568, 6649, 74, 69, 73, 67, 1652, 21282, 42421, 69, 5907, 42421, 6, 198, 2, 598, 13, 11250, 13, 6738, 62, 15252, 7, 19463, 16934, 8, 628, 198, 31, 1324, 13, 38629, 10786, 14, 2617, 62, 29891, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 1136, 62, 29891, 11537, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 598, 13, 5143, 7, 4774, 11639, 3256, 2493, 28, 27641, 11, 14257, 28, 25101, 8, 198 ]
2.138756
209
import tempfile from pysubs2 import SSAFile, SSAStyle, Color, SSAEvent, make_time from audio_pipeline import logging_config from audio_pipeline.audio_processing.ffmpeg_processor import run_ffmpeg logger = logging_config.get_logger(__name__) def _adjust_for_clashing_subs(combined_subs, working_sub, exclude): """ Helper function for the append code. Looking for overlapping subtitles and make adjustments """ # If we haven't got a set of subs to check against early return if not combined_subs or not exclude: return working_sub, None second_working_sub = None for sub in combined_subs: # Standard style exit if exclude and sub.style not in exclude: continue if sub.start <= working_sub.start <= sub.end: # Drop the start of the working sub working_sub.start = sub.end elif working_sub.start <= sub.start <= working_sub.end: # Drop the end of the working sub if sub.end < working_sub.end: # We might need to split the sub second_working_sub = working_sub.copy() second_working_sub.start = sub.end second_working_sub.end = working_sub.end working_sub.end = sub.start # Check that we now have a sub that has no duration if working_sub.start >= working_sub.end: working_sub = None return working_sub, second_working_sub def append_subs(combined_subs, new_subs, style=None, formatter=None, exclude=None): """ Append a set of subs to a current set avoiding a clash if needed. Also allows for styling and formatting """ if exclude is None: exclude = [] new_combined_subs = SSAFile() if combined_subs: # First add the subs we are keeping new_combined_subs.extend(combined_subs) for sub in new_subs: # Add a style if style: sub.style = style # Perform the formatting if formatter: sub.text = formatter(sub.text) # See if we want to cater for clashes sub, second_sub = _adjust_for_clashing_subs(combined_subs, sub, exclude) # Prepare results if sub: new_combined_subs.append(sub) if second_sub: new_combined_subs.append(second_sub) new_combined_subs.sort() return new_combined_subs def flatten_subs(starting_subs, style=None): """ Take some subs and merge them together (adjacent subtitle which are the same) """ new_subs = SSAFile() for sub in starting_subs: # Standard style exit if style and sub.style != style: continue if not new_subs: new_subs.append(sub) elif sub.text == new_subs[-1].text and sub.start <= new_subs[-1].end: if sub.end > new_subs[-1].end: new_subs[-1].end = sub.end else: new_subs.append(sub) # Copy in all the subs we skipped due to styling if style: for sub in starting_subs: if sub.style != style: new_subs.append(sub) new_subs.sort() return new_subs def merge_subs(starting_subs, tolerance_millis=1000, style=None): """ Take some subs and eliminate any blank spots where they are less than a tolerance (default of 1 second) """ merged_subs = SSAFile() for sub in starting_subs: if style and sub.style != style: continue if merged_subs and merged_subs[-1].end + tolerance_millis >= sub.start: merged_subs[-1].end = sub.start merged_subs.append(sub) if style: for sub in starting_subs: if sub.style != style: merged_subs.append(sub) merged_subs.sort() return merged_subs def compress_subs(subs, max_chars=30, max_stretch_millis=3000, max_oldest_millis=10000, style=None): """ Mostly for the use of speech subtitles this will take individual words and create a running subtitle """ # Phase 1 based on character count so that we dont overflow the screen # Phase 2 is to make sure that the oldest word on the screen has not been there for too long # First remove gaps where they exist merged_subs = merge_subs(subs, max_stretch_millis, style) char_count = 0 oldest_start_time = 0 compressed_subs = SSAFile() for sub in merged_subs: if style and sub.style is not style: continue char_count += len(sub.text) # Check the character count and reset if needed if char_count > max_chars: char_count = len(sub.text) oldest_start_time = sub.start # Check if subtitle has been on screen for too long then reset elif sub.start - oldest_start_time > max_oldest_millis: char_count = len(sub.text) oldest_start_time = sub.start # If there is a gap in time between subtitles then reset elif len(compressed_subs) > 0 and sub.start != compressed_subs[-1].end: char_count = len(sub.text) oldest_start_time = sub.start # Add this sub elif len(compressed_subs) > 0: sub.text = compressed_subs[-1].text + ' ' + sub.text char_count += 1 compressed_subs.append(sub) # Append all the other subs if style: for sub in merged_subs: if sub.style is not style: compressed_subs.append(sub) compressed_subs.sort() return compressed_subs def remove_tiny_subs(subs, duration_millis=1000, left_millis=2000, right_millis=2000, style=None): """ Remove any subs that are out on their own or too short """ copy_subs = SSAFile() new_subs = SSAFile() for sub in subs: if (style and sub.style is style) or not style: copy_subs.append(sub) for i, sub in enumerate(copy_subs): # if it is longer it goes in if sub.duration >= duration_millis: new_subs.append(sub) continue # if its the first one then look right only # if its the last one then look left only # if its in the middle then look both ways if left_millis is None and right_millis is None: continue if i == 0: if copy_subs[i + 1].start - sub.end < right_millis: new_subs.append(sub) elif i == len(copy_subs) - 1: if sub.start - copy_subs[i - 1].end < left_millis: new_subs.append(sub) elif copy_subs[i + 1].start - sub.end < right_millis or sub.start - copy_subs[i - 1].end < left_millis: new_subs.append(sub) if style: for sub in subs: if sub.style is not style: new_subs.append(sub) new_subs.sort() return new_subs def add_styles(subs, style_list=None): """ Add styles to the subtitle file based on the style strings in each individual subtitle """ if style_list is None: style_list = [] for style in style_list: new_style = SSAStyle() # Number for position refers to the number on a keypad if 'top_left' in style: new_style.alignment = 7 elif 'top_right' in style: new_style.alignment = 9 elif 'bottom_left' in style: new_style.alignment = 1 elif 'bottom_right' in style: new_style.alignment = 3 elif 'left' in style: new_style.alignment = 4 elif 'right' in style: new_style.alignment = 6 elif 'top' in style: new_style.alignment = 8 elif 'bottom' in style: new_style.alignment = 2 # Setting the RGB values for the text if 'pred' in style: new_style.primarycolor = Color(255, 0, 0, 0) elif 'pblue' in style: new_style.primarycolor = Color(0, 0, 255, 0) elif 'pgreen' in style: new_style.primarycolor = Color(0, 255, 0, 0) elif 'pwhite' in style: new_style.primarycolor = Color(255, 255, 255, 0) # Setting the RGB values for the text's background if 'bred' in style: new_style.backcolor = Color(255, 0, 0, 0) elif 'bblue' in style: new_style.backcolor = Color(0, 0, 255, 0) elif 'bgreen' in style: new_style.backcolor = Color(0, 255, 0, 0) elif 'bwhite' in style: new_style.backcolor = Color(255, 255, 255, 0) # Setting different font types if 'bold' in style: new_style.bold = True if 'italic' in style: new_style.italic = True subs.styles[style] = new_style return subs def save_to_subtitles(results, formatter): """ Save to subtitle file :param results: Dictionary containing info and start/end times :param formatter: Apply text formating to the subtitle :return: New subtitle file """ subs = SSAFile() for result in results: event = SSAEvent(start=make_time(s=result['start']), end=make_time(s=result['end']), text=formatter(result)) if 'highlight' in result and result['highlight']: event.style = 'red' subs.append(event) logger.info(f'Processed {len(results)} results to subtitle events') return subs def create_styles(subs): """ Gather text from subtitles and call the subtitle adder """ styles = set() for sub in subs: styles.add(sub.style) add_styles(subs, styles) def burn_subtitles_into_video(video_path, subtitle_path, output_path): """ Create new video with subtitles burned in :param video_path: input video path :param subtitle_path: subtitle input path :param output_path: video output path :return: File name that it has written to """ temp_file_name = tempfile.mktemp(dir=output_path, prefix='output_with_hard_subtitles_', suffix='.mp4') # Handle srt files if needed if subtitle_path.endswith('.srt.'): subtitle_ass_file = subtitle_path.replace(".srt", ".ass") run_ffmpeg(f'ffmpeg -y -i {subtitle_path} {subtitle_ass_file}') else: subtitle_ass_file = subtitle_path run_ffmpeg(f'ffmpeg -i {video_path} -vf "ass={subtitle_ass_file}" {temp_file_name}') logger.info(f'Burnt subtitles {subtitle_path} to {video_path} stored in {temp_file_name}') return temp_file_name
[ 11748, 20218, 7753, 198, 6738, 279, 893, 23161, 17, 1330, 311, 4090, 8979, 11, 6723, 1921, 774, 293, 11, 5315, 11, 311, 4090, 9237, 11, 787, 62, 2435, 198, 6738, 6597, 62, 79, 541, 4470, 1330, 18931, 62, 11250, 198, 6738, 6597, 62, 79, 541, 4470, 13, 24051, 62, 36948, 13, 487, 43913, 62, 41341, 1330, 1057, 62, 487, 43913, 198, 198, 6404, 1362, 796, 18931, 62, 11250, 13, 1136, 62, 6404, 1362, 7, 834, 3672, 834, 8, 628, 198, 4299, 4808, 23032, 62, 1640, 62, 565, 2140, 62, 7266, 82, 7, 24011, 1389, 62, 7266, 82, 11, 1762, 62, 7266, 11, 19607, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5053, 525, 2163, 329, 262, 24443, 2438, 13, 220, 15616, 329, 32997, 44344, 290, 787, 16895, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1002, 356, 4398, 470, 1392, 257, 900, 286, 6352, 284, 2198, 1028, 1903, 1441, 198, 220, 220, 220, 611, 407, 5929, 62, 7266, 82, 393, 407, 19607, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1762, 62, 7266, 11, 6045, 198, 220, 220, 220, 1218, 62, 16090, 62, 7266, 796, 6045, 198, 220, 220, 220, 329, 850, 287, 5929, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8997, 3918, 8420, 198, 220, 220, 220, 220, 220, 220, 220, 611, 19607, 290, 850, 13, 7635, 407, 287, 19607, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 9688, 19841, 1762, 62, 7266, 13, 9688, 19841, 850, 13, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14258, 262, 923, 286, 262, 1762, 850, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1762, 62, 7266, 13, 9688, 796, 850, 13, 437, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1762, 62, 7266, 13, 9688, 19841, 850, 13, 9688, 19841, 1762, 62, 7266, 13, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14258, 262, 886, 286, 262, 1762, 850, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 437, 1279, 1762, 62, 7266, 13, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 1244, 761, 284, 6626, 262, 850, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1218, 62, 16090, 62, 7266, 796, 1762, 62, 7266, 13, 30073, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1218, 62, 16090, 62, 7266, 13, 9688, 796, 850, 13, 437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1218, 62, 16090, 62, 7266, 13, 437, 796, 1762, 62, 7266, 13, 437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1762, 62, 7266, 13, 437, 796, 850, 13, 9688, 198, 220, 220, 220, 1303, 6822, 326, 356, 783, 423, 257, 850, 326, 468, 645, 9478, 198, 220, 220, 220, 611, 1762, 62, 7266, 13, 9688, 18189, 1762, 62, 7266, 13, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1762, 62, 7266, 796, 6045, 198, 220, 220, 220, 1441, 1762, 62, 7266, 11, 1218, 62, 16090, 62, 7266, 628, 198, 4299, 24443, 62, 7266, 82, 7, 24011, 1389, 62, 7266, 82, 11, 649, 62, 7266, 82, 11, 3918, 28, 14202, 11, 1296, 1436, 28, 14202, 11, 19607, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2034, 437, 257, 900, 286, 6352, 284, 257, 1459, 900, 14928, 257, 19122, 611, 2622, 13, 220, 4418, 3578, 329, 35517, 290, 33313, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 19607, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 19607, 796, 17635, 198, 220, 220, 220, 649, 62, 24011, 1389, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 611, 5929, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 751, 262, 6352, 356, 389, 5291, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 24011, 1389, 62, 7266, 82, 13, 2302, 437, 7, 24011, 1389, 62, 7266, 82, 8, 198, 220, 220, 220, 329, 850, 287, 649, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 257, 3918, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13, 7635, 796, 3918, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 35006, 262, 33313, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1296, 1436, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13, 5239, 796, 1296, 1436, 7, 7266, 13, 5239, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4091, 611, 356, 765, 284, 20825, 329, 21022, 198, 220, 220, 220, 220, 220, 220, 220, 850, 11, 1218, 62, 7266, 796, 4808, 23032, 62, 1640, 62, 565, 2140, 62, 7266, 82, 7, 24011, 1389, 62, 7266, 82, 11, 850, 11, 19607, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 43426, 2482, 198, 220, 220, 220, 220, 220, 220, 220, 611, 850, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 24011, 1389, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1218, 62, 7266, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 24011, 1389, 62, 7266, 82, 13, 33295, 7, 12227, 62, 7266, 8, 198, 220, 220, 220, 649, 62, 24011, 1389, 62, 7266, 82, 13, 30619, 3419, 198, 220, 220, 220, 1441, 649, 62, 24011, 1389, 62, 7266, 82, 628, 198, 4299, 27172, 268, 62, 7266, 82, 7, 38690, 62, 7266, 82, 11, 3918, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7214, 617, 6352, 290, 20121, 606, 1978, 357, 41255, 12643, 37960, 543, 389, 262, 976, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 649, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 329, 850, 287, 3599, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8997, 3918, 8420, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3918, 290, 850, 13, 7635, 14512, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 649, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 850, 13, 5239, 6624, 649, 62, 7266, 82, 58, 12, 16, 4083, 5239, 290, 850, 13, 9688, 19841, 649, 62, 7266, 82, 58, 12, 16, 4083, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 437, 1875, 649, 62, 7266, 82, 58, 12, 16, 4083, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 58, 12, 16, 4083, 437, 796, 850, 13, 437, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 1303, 17393, 287, 477, 262, 6352, 356, 26684, 2233, 284, 35517, 198, 220, 220, 220, 611, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 850, 287, 3599, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 7635, 14512, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 649, 62, 7266, 82, 13, 30619, 3419, 198, 220, 220, 220, 1441, 649, 62, 7266, 82, 628, 198, 4299, 20121, 62, 7266, 82, 7, 38690, 62, 7266, 82, 11, 15621, 62, 17805, 271, 28, 12825, 11, 3918, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7214, 617, 6352, 290, 11005, 597, 9178, 10222, 810, 484, 389, 1342, 621, 257, 15621, 357, 12286, 286, 352, 1218, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23791, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 329, 850, 287, 3599, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3918, 290, 850, 13, 7635, 14512, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 23791, 62, 7266, 82, 290, 23791, 62, 7266, 82, 58, 12, 16, 4083, 437, 1343, 15621, 62, 17805, 271, 18189, 850, 13, 9688, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23791, 62, 7266, 82, 58, 12, 16, 4083, 437, 796, 850, 13, 9688, 198, 220, 220, 220, 220, 220, 220, 220, 23791, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 611, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 850, 287, 3599, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 7635, 14512, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23791, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 23791, 62, 7266, 82, 13, 30619, 3419, 198, 220, 220, 220, 1441, 23791, 62, 7266, 82, 628, 198, 4299, 27413, 62, 7266, 82, 7, 7266, 82, 11, 3509, 62, 354, 945, 28, 1270, 11, 3509, 62, 301, 22592, 62, 17805, 271, 28, 23924, 11, 3509, 62, 727, 395, 62, 17805, 271, 28, 49388, 11, 3918, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33495, 329, 262, 779, 286, 4046, 44344, 428, 481, 1011, 1981, 2456, 290, 2251, 257, 2491, 37960, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 18983, 352, 1912, 319, 2095, 954, 523, 326, 356, 17666, 30343, 262, 3159, 198, 220, 220, 220, 1303, 18983, 362, 318, 284, 787, 1654, 326, 262, 13325, 1573, 319, 262, 3159, 468, 407, 587, 612, 329, 1165, 890, 198, 220, 220, 220, 1303, 3274, 4781, 17332, 810, 484, 2152, 198, 220, 220, 220, 23791, 62, 7266, 82, 796, 20121, 62, 7266, 82, 7, 7266, 82, 11, 3509, 62, 301, 22592, 62, 17805, 271, 11, 3918, 8, 198, 220, 220, 220, 1149, 62, 9127, 796, 657, 198, 220, 220, 220, 13325, 62, 9688, 62, 2435, 796, 657, 198, 220, 220, 220, 25388, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 329, 850, 287, 23791, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3918, 290, 850, 13, 7635, 318, 407, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 1149, 62, 9127, 15853, 18896, 7, 7266, 13, 5239, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 262, 2095, 954, 290, 13259, 611, 2622, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1149, 62, 9127, 1875, 3509, 62, 354, 945, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1149, 62, 9127, 796, 18896, 7, 7266, 13, 5239, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13325, 62, 9688, 62, 2435, 796, 850, 13, 9688, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 37960, 468, 587, 319, 3159, 329, 1165, 890, 788, 13259, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 850, 13, 9688, 532, 13325, 62, 9688, 62, 2435, 1875, 3509, 62, 727, 395, 62, 17805, 271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1149, 62, 9127, 796, 18896, 7, 7266, 13, 5239, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13325, 62, 9688, 62, 2435, 796, 850, 13, 9688, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 612, 318, 257, 7625, 287, 640, 1022, 44344, 788, 13259, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 5589, 2790, 62, 7266, 82, 8, 1875, 657, 290, 850, 13, 9688, 14512, 25388, 62, 7266, 82, 58, 12, 16, 4083, 437, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1149, 62, 9127, 796, 18896, 7, 7266, 13, 5239, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13325, 62, 9688, 62, 2435, 796, 850, 13, 9688, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 428, 850, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 5589, 2790, 62, 7266, 82, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13, 5239, 796, 25388, 62, 7266, 82, 58, 12, 16, 4083, 5239, 1343, 705, 705, 1343, 850, 13, 5239, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1149, 62, 9127, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 25388, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 1303, 2034, 437, 477, 262, 584, 6352, 198, 220, 220, 220, 611, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 850, 287, 23791, 62, 7266, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 7635, 318, 407, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25388, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 25388, 62, 7266, 82, 13, 30619, 3419, 198, 220, 220, 220, 1441, 25388, 62, 7266, 82, 628, 198, 4299, 4781, 62, 44152, 62, 7266, 82, 7, 7266, 82, 11, 9478, 62, 17805, 271, 28, 12825, 11, 1364, 62, 17805, 271, 28, 11024, 11, 826, 62, 17805, 271, 28, 11024, 11, 3918, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17220, 597, 6352, 326, 389, 503, 319, 511, 898, 393, 1165, 1790, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4866, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 649, 62, 7266, 82, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 329, 850, 287, 6352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 7635, 290, 850, 13, 7635, 318, 3918, 8, 393, 407, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4866, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 329, 1312, 11, 850, 287, 27056, 378, 7, 30073, 62, 7266, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 340, 318, 2392, 340, 2925, 287, 198, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 32257, 18189, 9478, 62, 17805, 271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 663, 262, 717, 530, 788, 804, 826, 691, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 663, 262, 938, 530, 788, 804, 1364, 691, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 663, 287, 262, 3504, 788, 804, 1111, 2842, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1364, 62, 17805, 271, 318, 6045, 290, 826, 62, 17805, 271, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4866, 62, 7266, 82, 58, 72, 1343, 352, 4083, 9688, 532, 850, 13, 437, 1279, 826, 62, 17805, 271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1312, 6624, 18896, 7, 30073, 62, 7266, 82, 8, 532, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 9688, 532, 4866, 62, 7266, 82, 58, 72, 532, 352, 4083, 437, 1279, 1364, 62, 17805, 271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4866, 62, 7266, 82, 58, 72, 1343, 352, 4083, 9688, 532, 850, 13, 437, 1279, 826, 62, 17805, 271, 393, 850, 13, 9688, 532, 4866, 62, 7266, 82, 58, 72, 532, 352, 4083, 437, 1279, 1364, 62, 17805, 271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 611, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 850, 287, 6352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 13, 7635, 318, 407, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7266, 82, 13, 33295, 7, 7266, 8, 198, 220, 220, 220, 649, 62, 7266, 82, 13, 30619, 3419, 198, 220, 220, 220, 1441, 649, 62, 7266, 82, 628, 198, 4299, 751, 62, 47720, 7, 7266, 82, 11, 3918, 62, 4868, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3060, 12186, 284, 262, 37960, 2393, 1912, 319, 262, 3918, 13042, 287, 1123, 1981, 37960, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 3918, 62, 4868, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3918, 62, 4868, 796, 17635, 198, 220, 220, 220, 329, 3918, 287, 3918, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 796, 6723, 1921, 774, 293, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7913, 329, 2292, 10229, 284, 262, 1271, 319, 257, 1994, 15636, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 4852, 62, 9464, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 767, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 4852, 62, 3506, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 860, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 22487, 62, 9464, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 22487, 62, 3506, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 9464, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 604, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 3506, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 718, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 4852, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 807, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 22487, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 282, 16747, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25700, 262, 25228, 3815, 329, 262, 2420, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 28764, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 39754, 8043, 796, 5315, 7, 13381, 11, 657, 11, 657, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 79, 17585, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 39754, 8043, 796, 5315, 7, 15, 11, 657, 11, 14280, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 6024, 1361, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 39754, 8043, 796, 5315, 7, 15, 11, 14280, 11, 657, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 79, 11186, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 39754, 8043, 796, 5315, 7, 13381, 11, 14280, 11, 14280, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25700, 262, 25228, 3815, 329, 262, 2420, 338, 4469, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 36074, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 1891, 8043, 796, 5315, 7, 13381, 11, 657, 11, 657, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 65, 17585, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 1891, 8043, 796, 5315, 7, 15, 11, 657, 11, 14280, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 65, 14809, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 1891, 8043, 796, 5315, 7, 15, 11, 14280, 11, 657, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 65, 11186, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 1891, 8043, 796, 5315, 7, 13381, 11, 14280, 11, 14280, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25700, 1180, 10369, 3858, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 36575, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 36575, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 1287, 291, 6, 287, 3918, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 7635, 13, 1287, 291, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 6352, 13, 47720, 58, 7635, 60, 796, 649, 62, 7635, 198, 220, 220, 220, 1441, 6352, 628, 198, 4299, 3613, 62, 1462, 62, 7266, 83, 30540, 7, 43420, 11, 1296, 1436, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 12793, 284, 37960, 2393, 198, 220, 220, 220, 1058, 17143, 2482, 25, 28261, 7268, 7508, 290, 923, 14, 437, 1661, 198, 220, 220, 220, 1058, 17143, 1296, 1436, 25, 27967, 2420, 1296, 803, 284, 262, 37960, 198, 220, 220, 220, 1058, 7783, 25, 968, 37960, 2393, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6352, 796, 311, 4090, 8979, 3419, 198, 220, 220, 220, 329, 1255, 287, 2482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 796, 311, 4090, 9237, 7, 9688, 28, 15883, 62, 2435, 7, 82, 28, 20274, 17816, 9688, 20520, 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, 886, 28, 15883, 62, 2435, 7, 82, 28, 20274, 17816, 437, 20520, 828, 2420, 28, 687, 1436, 7, 20274, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 8929, 2971, 6, 287, 1255, 290, 1255, 17816, 8929, 2971, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 13, 7635, 796, 705, 445, 6, 198, 220, 220, 220, 220, 220, 220, 220, 6352, 13, 33295, 7, 15596, 8, 198, 220, 220, 220, 49706, 13, 10951, 7, 69, 6, 18709, 276, 1391, 11925, 7, 43420, 38165, 2482, 284, 37960, 2995, 11537, 198, 220, 220, 220, 1441, 6352, 628, 198, 4299, 2251, 62, 47720, 7, 7266, 82, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 402, 1032, 2420, 422, 44344, 290, 869, 262, 37960, 751, 263, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 12186, 796, 900, 3419, 198, 220, 220, 220, 329, 850, 287, 6352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12186, 13, 2860, 7, 7266, 13, 7635, 8, 198, 220, 220, 220, 751, 62, 47720, 7, 7266, 82, 11, 12186, 8, 628, 198, 4299, 4245, 62, 7266, 83, 30540, 62, 20424, 62, 15588, 7, 15588, 62, 6978, 11, 37960, 62, 6978, 11, 5072, 62, 6978, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13610, 649, 2008, 351, 44344, 11544, 287, 198, 220, 220, 220, 1058, 17143, 2008, 62, 6978, 25, 5128, 2008, 3108, 198, 220, 220, 220, 1058, 17143, 37960, 62, 6978, 25, 37960, 5128, 3108, 198, 220, 220, 220, 1058, 17143, 5072, 62, 6978, 25, 2008, 5072, 3108, 198, 220, 220, 220, 1058, 7783, 25, 9220, 1438, 326, 340, 468, 3194, 284, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 20218, 62, 7753, 62, 3672, 796, 20218, 7753, 13, 28015, 29510, 7, 15908, 28, 22915, 62, 6978, 11, 21231, 11639, 22915, 62, 4480, 62, 10424, 62, 7266, 83, 30540, 62, 3256, 35488, 28, 4458, 3149, 19, 11537, 198, 220, 220, 220, 1303, 33141, 264, 17034, 3696, 611, 2622, 198, 220, 220, 220, 611, 37960, 62, 6978, 13, 437, 2032, 342, 7, 4458, 82, 17034, 2637, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37960, 62, 562, 62, 7753, 796, 37960, 62, 6978, 13, 33491, 7, 1911, 82, 17034, 1600, 27071, 562, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 487, 43913, 7, 69, 6, 487, 43913, 532, 88, 532, 72, 1391, 7266, 7839, 62, 6978, 92, 1391, 7266, 7839, 62, 562, 62, 7753, 92, 11537, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37960, 62, 562, 62, 7753, 796, 37960, 62, 6978, 198, 220, 220, 220, 1057, 62, 487, 43913, 7, 69, 6, 487, 43913, 532, 72, 1391, 15588, 62, 6978, 92, 532, 85, 69, 366, 562, 34758, 7266, 7839, 62, 562, 62, 7753, 36786, 1391, 29510, 62, 7753, 62, 3672, 92, 11537, 198, 220, 220, 220, 49706, 13, 10951, 7, 69, 6, 22991, 429, 44344, 1391, 7266, 7839, 62, 6978, 92, 284, 1391, 15588, 62, 6978, 92, 8574, 287, 1391, 29510, 62, 7753, 62, 3672, 92, 11537, 198, 220, 220, 220, 1441, 20218, 62, 7753, 62, 3672, 198 ]
2.287371
4,569
# Generated by Django 2.2 on 2019-06-04 23:00 from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 362, 13, 17, 319, 13130, 12, 3312, 12, 3023, 2242, 25, 405, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
2.966667
30
#Gizem Özgün / 160401007 # -*- coding: utf-8 -*- import sys if __name__ == "__main__": menu()
[ 2, 38, 528, 368, 43307, 89, 70, 9116, 77, 1220, 1467, 3023, 486, 25816, 198, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 25064, 198, 220, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 6859, 3419, 198 ]
1.927273
55
# This script assumes taht the freesurfer csv for the BANC data has already been generated import os import pandas as pd import numpy as np import pdb import seaborn as sns sns.set() import matplotlib.pyplot as plt from BayOptPy.helperfunctions import get_paths, get_data, drop_missing_features def str_to_bool(s): ''' As arg pass does not acess boolen, transfrom the string into booleans ''' if s == 'True': return True elif s == 'False': return False #----------------------------------------------------------------------------- # Settings #----------------------------------------------------------------------------- debug = False dataset = 'freesurf_combined' resamplefactor = 1 save_path = os.path.join('/code/BayOptPy', 'freesurfer_preprocess') raw = 'False' analysis = 'uniform' project_wd, project_data, project_sink = get_paths(debug, dataset) demographics, imgs, dataframe = get_data(project_data, dataset, debug, project_wd, resamplefactor, raw=str_to_bool(raw), analysis=analysis) # transform age into ints demographics['age_int'] = demographics['age'].astype('int32', copy=False) # Select 14 subjects for all ages that have 14 representatives. age_range = np.arange(demographics['age'].min(), demographics['age'].max()) # remove entry where you don't have 14 subjects max_n = 14 age_to_remove = [35, 36, 39, 42, 78, 79, 80, 81, 82, 83, 85, 89] age_range = np.setdiff1d(age_range, age_to_remove) # iterate over the dataframe and select 14 subjects for each age range ids_to_use = [] for age in age_range: ids_to_use.append(demographics.index[demographics['age_int'] == age].tolist()[:max_n]) # flatten ids_to_use ids_to_use = [item for sublist in ids_to_use for item in sublist] # Filter the demographics dataframe demographics = demographics[demographics.index.isin(ids_to_use)] # set subject's id as index demographics = demographics.set_index('id') # filter dataset using index of the subjects dataframe = dataframe.loc[demographics.index] # Print some diagnosis print('Shape of the new demographics:') print(demographics.shape) print('Oldest %d and youngest %d subject' %(demographics['age_int'].max(), demographics['age_int'].min())) print('Number of age bins %d' %len(demographics['age_int'].unique())) import pdb pdb.set_trace() print('Done')
[ 2, 770, 4226, 18533, 256, 993, 83, 262, 2030, 274, 333, 2232, 269, 21370, 329, 262, 347, 20940, 1366, 468, 1541, 587, 7560, 198, 11748, 28686, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 279, 9945, 198, 11748, 384, 397, 1211, 355, 3013, 82, 198, 82, 5907, 13, 2617, 3419, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 6738, 4696, 27871, 20519, 13, 2978, 525, 12543, 2733, 1330, 651, 62, 6978, 82, 11, 651, 62, 7890, 11, 4268, 62, 45688, 62, 40890, 198, 198, 4299, 965, 62, 1462, 62, 30388, 7, 82, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1081, 1822, 1208, 857, 407, 257, 919, 20512, 268, 11, 1007, 6738, 262, 4731, 656, 198, 220, 220, 220, 1489, 2305, 504, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 264, 6624, 705, 17821, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 1288, 361, 264, 6624, 705, 25101, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 2, 10097, 32501, 198, 2, 16163, 198, 2, 10097, 32501, 198, 24442, 796, 10352, 198, 19608, 292, 316, 796, 705, 69, 6037, 333, 69, 62, 24011, 1389, 6, 198, 411, 1403, 31412, 796, 352, 198, 21928, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 10786, 14, 8189, 14, 15262, 27871, 20519, 3256, 705, 69, 6037, 333, 2232, 62, 3866, 14681, 11537, 198, 1831, 796, 705, 25101, 6, 198, 20930, 796, 705, 403, 6933, 6, 198, 16302, 62, 16993, 11, 1628, 62, 7890, 11, 1628, 62, 82, 676, 796, 651, 62, 6978, 82, 7, 24442, 11, 27039, 8, 198, 198, 9536, 24188, 11, 545, 14542, 11, 1366, 14535, 220, 796, 651, 62, 7890, 7, 16302, 62, 7890, 11, 27039, 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, 14257, 11, 1628, 62, 16993, 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, 581, 1403, 31412, 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, 8246, 28, 2536, 62, 1462, 62, 30388, 7, 1831, 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, 220, 220, 220, 220, 3781, 28, 20930, 8, 198, 198, 2, 6121, 2479, 656, 493, 82, 198, 9536, 24188, 17816, 496, 62, 600, 20520, 796, 30084, 17816, 496, 6, 4083, 459, 2981, 10786, 600, 2624, 3256, 4866, 28, 25101, 8, 198, 198, 2, 9683, 1478, 7481, 329, 477, 9337, 326, 423, 1478, 10826, 13, 198, 496, 62, 9521, 796, 45941, 13, 283, 858, 7, 9536, 24188, 17816, 496, 6, 4083, 1084, 22784, 30084, 17816, 496, 6, 4083, 9806, 28955, 198, 2, 4781, 5726, 810, 345, 836, 470, 423, 1478, 7481, 198, 9806, 62, 77, 796, 1478, 198, 496, 62, 1462, 62, 28956, 796, 685, 2327, 11, 4570, 11, 5014, 11, 5433, 11, 8699, 11, 9225, 11, 4019, 11, 9773, 11, 9415, 11, 9698, 11, 7600, 11, 9919, 60, 198, 496, 62, 9521, 796, 45941, 13, 2617, 26069, 16, 67, 7, 496, 62, 9521, 11, 2479, 62, 1462, 62, 28956, 8, 198, 2, 11629, 378, 625, 262, 1366, 14535, 290, 2922, 1478, 7481, 329, 1123, 2479, 2837, 198, 2340, 62, 1462, 62, 1904, 796, 17635, 198, 1640, 2479, 287, 2479, 62, 9521, 25, 198, 220, 220, 220, 220, 2340, 62, 1462, 62, 1904, 13, 33295, 7, 9536, 24188, 13, 9630, 58, 9536, 24188, 17816, 496, 62, 600, 20520, 6624, 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, 2479, 4083, 83, 349, 396, 3419, 58, 25, 9806, 62, 77, 12962, 198, 198, 2, 27172, 268, 220, 2340, 62, 1462, 62, 1904, 198, 2340, 62, 1462, 62, 1904, 796, 685, 9186, 329, 850, 4868, 287, 220, 2340, 62, 1462, 62, 1904, 329, 2378, 287, 850, 4868, 60, 198, 2, 25853, 262, 30084, 1366, 14535, 198, 9536, 24188, 796, 30084, 58, 9536, 24188, 13, 9630, 13, 45763, 7, 2340, 62, 1462, 62, 1904, 15437, 198, 2, 900, 2426, 338, 4686, 355, 6376, 198, 9536, 24188, 796, 30084, 13, 2617, 62, 9630, 10786, 312, 11537, 198, 2, 8106, 27039, 1262, 6376, 286, 262, 7481, 198, 7890, 14535, 796, 1366, 14535, 13, 17946, 58, 9536, 24188, 13, 9630, 60, 198, 198, 2, 12578, 617, 13669, 198, 4798, 10786, 33383, 286, 262, 649, 30084, 25, 11537, 198, 4798, 7, 9536, 24188, 13, 43358, 8, 198, 4798, 10786, 19620, 395, 4064, 67, 290, 18887, 4064, 67, 2426, 6, 4064, 7, 9536, 24188, 17816, 496, 62, 600, 6, 4083, 9806, 22784, 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, 30084, 17816, 496, 62, 600, 6, 4083, 1084, 3419, 4008, 198, 4798, 10786, 15057, 286, 2479, 41701, 4064, 67, 6, 4064, 11925, 7, 9536, 24188, 17816, 496, 62, 600, 6, 4083, 34642, 3419, 4008, 198, 11748, 279, 9945, 198, 79, 9945, 13, 2617, 62, 40546, 3419, 198, 4798, 10786, 45677, 11537, 198 ]
2.584258
991
# pylint: disable=invalid-name,missing-docstring # Generated by Django 2.2.1 on 2020-06-19 05:29 from django.db import migrations from django.db import models
[ 2, 279, 2645, 600, 25, 15560, 28, 259, 12102, 12, 3672, 11, 45688, 12, 15390, 8841, 201, 198, 2, 2980, 515, 416, 37770, 362, 13, 17, 13, 16, 319, 12131, 12, 3312, 12, 1129, 8870, 25, 1959, 201, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 201, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 201, 198, 201, 198 ]
2.75
60
from .abstract_dash_mp4_representation import AbstractDashMP4Representation
[ 6738, 764, 397, 8709, 62, 42460, 62, 3149, 19, 62, 15603, 341, 1330, 27741, 43041, 7378, 19, 40171, 341, 628 ]
3.85
20
from flask_login import UserMixin from werkzeug.security import generate_password_hash, check_password_hash from flask_login import UserMixin from werkzeug.security import generate_password_hash, check_password_hash from __init__ import db class User(db.Model): """Data model for user accounts.""" __tablename__ = 'usuario' id = db.Column( db.Integer, primary_key=True ) email = db.Column( db.String(80), index=True, unique=True, nullable=False ) isadmin = db.Column( db.Boolean, index=False, unique=False, nullable=False ) password_hash = db.Column( db.String(128), index=False, unique=False, nullable=False) @staticmethod @staticmethod @property def password(self): """ Prevent pasword from being accessed """ raise AttributeError('password is not a readable attribute.') @password.setter def password(self, password): """ Set password to a hashed password """ self.password_hash = generate_password_hash(password) def verify_password(self, password): """ Check if hashed password matches actual password """ return check_password_hash(self.password_hash, password)
[ 6738, 42903, 62, 38235, 1330, 11787, 35608, 259, 201, 198, 6738, 266, 9587, 2736, 1018, 13, 12961, 1330, 7716, 62, 28712, 62, 17831, 11, 2198, 62, 28712, 62, 17831, 201, 198, 6738, 42903, 62, 38235, 1330, 11787, 35608, 259, 201, 198, 6738, 266, 9587, 2736, 1018, 13, 12961, 1330, 7716, 62, 28712, 62, 17831, 11, 2198, 62, 28712, 62, 17831, 201, 198, 201, 198, 201, 198, 6738, 11593, 15003, 834, 1330, 20613, 201, 198, 4871, 11787, 7, 9945, 13, 17633, 2599, 201, 198, 220, 220, 220, 37227, 6601, 2746, 329, 2836, 5504, 526, 15931, 201, 198, 201, 198, 220, 220, 220, 11593, 8658, 11925, 480, 834, 796, 705, 385, 84, 4982, 6, 201, 198, 220, 220, 220, 4686, 796, 20613, 13, 39470, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 46541, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4165, 62, 2539, 28, 17821, 201, 198, 220, 220, 220, 1267, 201, 198, 201, 198, 220, 220, 220, 3053, 796, 20613, 13, 39470, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 10100, 7, 1795, 828, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 28, 17821, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3748, 28, 17821, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9242, 540, 28, 25101, 201, 198, 220, 220, 220, 1267, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 318, 28482, 796, 20613, 13, 39470, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 46120, 13087, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 28, 25101, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3748, 28, 25101, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9242, 540, 28, 25101, 201, 198, 220, 220, 220, 1267, 201, 198, 220, 220, 220, 9206, 62, 17831, 796, 20613, 13, 39470, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 10100, 7, 12762, 828, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 28, 25101, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3748, 28, 25101, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 9242, 540, 28, 25101, 8, 201, 198, 201, 198, 220, 220, 220, 2488, 12708, 24396, 201, 198, 201, 198, 220, 220, 220, 2488, 12708, 24396, 201, 198, 201, 198, 220, 220, 220, 2488, 26745, 201, 198, 220, 220, 220, 825, 9206, 7, 944, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 31572, 38836, 4775, 422, 852, 17535, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 10786, 28712, 318, 407, 257, 31744, 11688, 2637, 8, 201, 198, 201, 198, 220, 220, 220, 2488, 28712, 13, 2617, 353, 201, 198, 220, 220, 220, 825, 9206, 7, 944, 11, 9206, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 5345, 9206, 284, 257, 468, 704, 9206, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28712, 62, 17831, 796, 7716, 62, 28712, 62, 17831, 7, 28712, 8, 201, 198, 201, 198, 220, 220, 220, 825, 11767, 62, 28712, 7, 944, 11, 9206, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6822, 611, 468, 704, 9206, 7466, 4036, 9206, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2198, 62, 28712, 62, 17831, 7, 944, 13, 28712, 62, 17831, 11, 9206, 8, 201, 198, 201, 198 ]
2.230284
634
# MINLP written by GAMS Convert at 05/15/20 00:51:23 # # Equation counts # Total E G L N X C B # 152 71 6 75 0 0 0 0 # # Variable counts # x b i s1s s2s sc si # Total cont binary integer sos1 sos2 scont sint # 105 85 20 0 0 0 0 0 # FX 0 0 0 0 0 0 0 0 # # Nonzero counts # Total const NL DLL # 352 334 18 0 # # Reformulation has removed 1 variable and 1 equation from pyomo.environ import * model = m = ConcreteModel() m.x2 = Var(within=Reals,bounds=(None,None),initialize=0) m.x3 = Var(within=Reals,bounds=(None,None),initialize=0) m.x4 = Var(within=Reals,bounds=(None,None),initialize=0) m.x5 = Var(within=Reals,bounds=(None,None),initialize=0) m.x6 = Var(within=Reals,bounds=(None,None),initialize=0) m.x7 = Var(within=Reals,bounds=(None,None),initialize=0) m.x8 = Var(within=Reals,bounds=(None,None),initialize=0) m.x9 = Var(within=Reals,bounds=(None,None),initialize=0) m.x10 = Var(within=Reals,bounds=(None,None),initialize=0) m.x11 = Var(within=Reals,bounds=(None,None),initialize=0) m.x12 = Var(within=Reals,bounds=(0,40),initialize=0) m.x13 = Var(within=Reals,bounds=(0,40),initialize=0) m.x14 = Var(within=Reals,bounds=(0,None),initialize=0) m.x15 = Var(within=Reals,bounds=(0,None),initialize=0) m.x16 = Var(within=Reals,bounds=(0,None),initialize=0) m.x17 = Var(within=Reals,bounds=(0,None),initialize=0) m.x18 = Var(within=Reals,bounds=(0,None),initialize=0) m.x19 = Var(within=Reals,bounds=(0,None),initialize=0) m.x20 = Var(within=Reals,bounds=(0,None),initialize=0) m.x21 = Var(within=Reals,bounds=(0,None),initialize=0) m.x22 = Var(within=Reals,bounds=(0,None),initialize=0) m.x23 = Var(within=Reals,bounds=(0,None),initialize=0) m.x24 = Var(within=Reals,bounds=(0,None),initialize=0) m.x25 = Var(within=Reals,bounds=(0,None),initialize=0) m.x26 = Var(within=Reals,bounds=(0,None),initialize=0) m.x27 = Var(within=Reals,bounds=(0,None),initialize=0) m.x28 = Var(within=Reals,bounds=(0,None),initialize=0) m.x29 = Var(within=Reals,bounds=(0,None),initialize=0) m.x30 = Var(within=Reals,bounds=(0,None),initialize=0) m.x31 = Var(within=Reals,bounds=(0,None),initialize=0) m.x32 = Var(within=Reals,bounds=(0,None),initialize=0) m.x33 = Var(within=Reals,bounds=(0,None),initialize=0) m.x34 = Var(within=Reals,bounds=(0,30),initialize=0) m.x35 = Var(within=Reals,bounds=(0,30),initialize=0) m.x36 = Var(within=Reals,bounds=(0,None),initialize=0) m.x37 = Var(within=Reals,bounds=(0,None),initialize=0) m.x38 = Var(within=Reals,bounds=(0,None),initialize=0) m.x39 = Var(within=Reals,bounds=(0,None),initialize=0) m.x40 = Var(within=Reals,bounds=(0,None),initialize=0) m.x41 = Var(within=Reals,bounds=(0,None),initialize=0) m.x42 = Var(within=Reals,bounds=(0,None),initialize=0) m.x43 = Var(within=Reals,bounds=(0,None),initialize=0) m.x44 = Var(within=Reals,bounds=(0,None),initialize=0) m.x45 = Var(within=Reals,bounds=(0,None),initialize=0) m.x46 = Var(within=Reals,bounds=(0,None),initialize=0) m.x47 = Var(within=Reals,bounds=(0,None),initialize=0) m.x48 = Var(within=Reals,bounds=(0,None),initialize=0) m.x49 = Var(within=Reals,bounds=(0,None),initialize=0) m.x50 = Var(within=Reals,bounds=(0,None),initialize=0) m.x51 = Var(within=Reals,bounds=(0,None),initialize=0) m.x52 = Var(within=Reals,bounds=(0,None),initialize=0) m.x53 = Var(within=Reals,bounds=(0,None),initialize=0) m.x54 = Var(within=Reals,bounds=(0,None),initialize=0) m.x55 = Var(within=Reals,bounds=(0,None),initialize=0) m.x56 = Var(within=Reals,bounds=(0,None),initialize=0) m.x57 = Var(within=Reals,bounds=(0,None),initialize=0) m.x58 = Var(within=Reals,bounds=(0,None),initialize=0) m.x59 = Var(within=Reals,bounds=(0,None),initialize=0) m.x60 = Var(within=Reals,bounds=(0,None),initialize=0) m.x61 = Var(within=Reals,bounds=(0,None),initialize=0) m.x62 = Var(within=Reals,bounds=(0,None),initialize=0) m.x63 = Var(within=Reals,bounds=(0,None),initialize=0) m.x64 = Var(within=Reals,bounds=(0,None),initialize=0) m.x65 = Var(within=Reals,bounds=(0,None),initialize=0) m.x66 = Var(within=Reals,bounds=(0,None),initialize=0) m.x67 = Var(within=Reals,bounds=(0,None),initialize=0) m.x68 = Var(within=Reals,bounds=(0,None),initialize=0) m.x69 = Var(within=Reals,bounds=(0,None),initialize=0) m.x70 = Var(within=Reals,bounds=(0,None),initialize=0) m.x71 = Var(within=Reals,bounds=(0,None),initialize=0) m.x72 = Var(within=Reals,bounds=(0,None),initialize=0) m.x73 = Var(within=Reals,bounds=(0,None),initialize=0) m.x74 = Var(within=Reals,bounds=(0,None),initialize=0) m.x75 = Var(within=Reals,bounds=(0,None),initialize=0) m.x76 = Var(within=Reals,bounds=(0,None),initialize=0) m.x77 = Var(within=Reals,bounds=(0,None),initialize=0) m.x78 = Var(within=Reals,bounds=(0,None),initialize=0) m.x79 = Var(within=Reals,bounds=(0,None),initialize=0) m.x80 = Var(within=Reals,bounds=(0,None),initialize=0) m.x81 = Var(within=Reals,bounds=(0,None),initialize=0) m.x82 = Var(within=Reals,bounds=(0,None),initialize=0) m.x83 = Var(within=Reals,bounds=(0,None),initialize=0) m.x84 = Var(within=Reals,bounds=(0,None),initialize=0) m.x85 = Var(within=Reals,bounds=(0,None),initialize=0) m.b86 = Var(within=Binary,bounds=(0,1),initialize=0) m.b87 = Var(within=Binary,bounds=(0,1),initialize=0) m.b88 = Var(within=Binary,bounds=(0,1),initialize=0) m.b89 = Var(within=Binary,bounds=(0,1),initialize=0) m.b90 = Var(within=Binary,bounds=(0,1),initialize=0) m.b91 = Var(within=Binary,bounds=(0,1),initialize=0) m.b92 = Var(within=Binary,bounds=(0,1),initialize=0) m.b93 = Var(within=Binary,bounds=(0,1),initialize=0) m.b94 = Var(within=Binary,bounds=(0,1),initialize=0) m.b95 = Var(within=Binary,bounds=(0,1),initialize=0) m.b96 = Var(within=Binary,bounds=(0,1),initialize=0) m.b97 = Var(within=Binary,bounds=(0,1),initialize=0) m.b98 = Var(within=Binary,bounds=(0,1),initialize=0) m.b99 = Var(within=Binary,bounds=(0,1),initialize=0) m.b100 = Var(within=Binary,bounds=(0,1),initialize=0) m.b101 = Var(within=Binary,bounds=(0,1),initialize=0) m.b102 = Var(within=Binary,bounds=(0,1),initialize=0) m.b103 = Var(within=Binary,bounds=(0,1),initialize=0) m.b104 = Var(within=Binary,bounds=(0,1),initialize=0) m.b105 = Var(within=Binary,bounds=(0,1),initialize=0) m.obj = Objective(expr= - m.x12 - m.x13 + 5*m.x24 + 10*m.x25 - 2*m.x34 - m.x35 + 80*m.x36 + 90*m.x37 + 285*m.x38 + 390*m.x39 + 290*m.x40 + 405*m.x41 - 5*m.b96 - 4*m.b97 - 8*m.b98 - 7*m.b99 - 6*m.b100 - 9*m.b101 - 10*m.b102 - 9*m.b103 - 6*m.b104 - 10*m.b105, sense=maximize) m.c2 = Constraint(expr= m.x12 - m.x14 - m.x16 == 0) m.c3 = Constraint(expr= m.x13 - m.x15 - m.x17 == 0) m.c4 = Constraint(expr= - m.x18 - m.x20 + m.x22 == 0) m.c5 = Constraint(expr= - m.x19 - m.x21 + m.x23 == 0) m.c6 = Constraint(expr= m.x22 - m.x24 - m.x26 == 0) m.c7 = Constraint(expr= m.x23 - m.x25 - m.x27 == 0) m.c8 = Constraint(expr= m.x26 - m.x28 - m.x30 - m.x32 == 0) m.c9 = Constraint(expr= m.x27 - m.x29 - m.x31 - m.x33 == 0) m.c10 = Constraint(expr=(m.x50/(1e-6 + m.b86) - log(1 + m.x42/(1e-6 + m.b86)))*(1e-6 + m.b86) <= 0) m.c11 = Constraint(expr=(m.x51/(1e-6 + m.b87) - log(1 + m.x43/(1e-6 + m.b87)))*(1e-6 + m.b87) <= 0) m.c12 = Constraint(expr= m.x44 == 0) m.c13 = Constraint(expr= m.x45 == 0) m.c14 = Constraint(expr= m.x52 == 0) m.c15 = Constraint(expr= m.x53 == 0) m.c16 = Constraint(expr= m.x14 - m.x42 - m.x44 == 0) m.c17 = Constraint(expr= m.x15 - m.x43 - m.x45 == 0) m.c18 = Constraint(expr= m.x18 - m.x50 - m.x52 == 0) m.c19 = Constraint(expr= m.x19 - m.x51 - m.x53 == 0) m.c20 = Constraint(expr= m.x42 - 40*m.b86 <= 0) m.c21 = Constraint(expr= m.x43 - 40*m.b87 <= 0) m.c22 = Constraint(expr= m.x44 + 40*m.b86 <= 40) m.c23 = Constraint(expr= m.x45 + 40*m.b87 <= 40) m.c24 = Constraint(expr= m.x50 - 3.71357206670431*m.b86 <= 0) m.c25 = Constraint(expr= m.x51 - 3.71357206670431*m.b87 <= 0) m.c26 = Constraint(expr= m.x52 + 3.71357206670431*m.b86 <= 3.71357206670431) m.c27 = Constraint(expr= m.x53 + 3.71357206670431*m.b87 <= 3.71357206670431) m.c28 = Constraint(expr=(m.x54/(1e-6 + m.b88) - 1.2*log(1 + m.x46/(1e-6 + m.b88)))*(1e-6 + m.b88) <= 0) m.c29 = Constraint(expr=(m.x55/(1e-6 + m.b89) - 1.2*log(1 + m.x47/(1e-6 + m.b89)))*(1e-6 + m.b89) <= 0) m.c30 = Constraint(expr= m.x48 == 0) m.c31 = Constraint(expr= m.x49 == 0) m.c32 = Constraint(expr= m.x56 == 0) m.c33 = Constraint(expr= m.x57 == 0) m.c34 = Constraint(expr= m.x16 - m.x46 - m.x48 == 0) m.c35 = Constraint(expr= m.x17 - m.x47 - m.x49 == 0) m.c36 = Constraint(expr= m.x20 - m.x54 - m.x56 == 0) m.c37 = Constraint(expr= m.x21 - m.x55 - m.x57 == 0) m.c38 = Constraint(expr= m.x46 - 40*m.b88 <= 0) m.c39 = Constraint(expr= m.x47 - 40*m.b89 <= 0) m.c40 = Constraint(expr= m.x48 + 40*m.b88 <= 40) m.c41 = Constraint(expr= m.x49 + 40*m.b89 <= 40) m.c42 = Constraint(expr= m.x54 - 4.45628648004517*m.b88 <= 0) m.c43 = Constraint(expr= m.x55 - 4.45628648004517*m.b89 <= 0) m.c44 = Constraint(expr= m.x56 + 4.45628648004517*m.b88 <= 4.45628648004517) m.c45 = Constraint(expr= m.x57 + 4.45628648004517*m.b89 <= 4.45628648004517) m.c46 = Constraint(expr= - 0.75*m.x58 + m.x74 == 0) m.c47 = Constraint(expr= - 0.75*m.x59 + m.x75 == 0) m.c48 = Constraint(expr= m.x60 == 0) m.c49 = Constraint(expr= m.x61 == 0) m.c50 = Constraint(expr= m.x76 == 0) m.c51 = Constraint(expr= m.x77 == 0) m.c52 = Constraint(expr= m.x28 - m.x58 - m.x60 == 0) m.c53 = Constraint(expr= m.x29 - m.x59 - m.x61 == 0) m.c54 = Constraint(expr= m.x36 - m.x74 - m.x76 == 0) m.c55 = Constraint(expr= m.x37 - m.x75 - m.x77 == 0) m.c56 = Constraint(expr= m.x58 - 4.45628648004517*m.b90 <= 0) m.c57 = Constraint(expr= m.x59 - 4.45628648004517*m.b91 <= 0) m.c58 = Constraint(expr= m.x60 + 4.45628648004517*m.b90 <= 4.45628648004517) m.c59 = Constraint(expr= m.x61 + 4.45628648004517*m.b91 <= 4.45628648004517) m.c60 = Constraint(expr= m.x74 - 3.34221486003388*m.b90 <= 0) m.c61 = Constraint(expr= m.x75 - 3.34221486003388*m.b91 <= 0) m.c62 = Constraint(expr= m.x76 + 3.34221486003388*m.b90 <= 3.34221486003388) m.c63 = Constraint(expr= m.x77 + 3.34221486003388*m.b91 <= 3.34221486003388) m.c64 = Constraint(expr=(m.x78/(1e-6 + m.b92) - 1.5*log(1 + m.x62/(1e-6 + m.b92)))*(1e-6 + m.b92) <= 0) m.c65 = Constraint(expr=(m.x79/(1e-6 + m.b93) - 1.5*log(1 + m.x63/(1e-6 + m.b93)))*(1e-6 + m.b93) <= 0) m.c66 = Constraint(expr= m.x64 == 0) m.c67 = Constraint(expr= m.x65 == 0) m.c68 = Constraint(expr= m.x80 == 0) m.c69 = Constraint(expr= m.x81 == 0) m.c70 = Constraint(expr= m.x30 - m.x62 - m.x64 == 0) m.c71 = Constraint(expr= m.x31 - m.x63 - m.x65 == 0) m.c72 = Constraint(expr= m.x38 - m.x78 - m.x80 == 0) m.c73 = Constraint(expr= m.x39 - m.x79 - m.x81 == 0) m.c74 = Constraint(expr= m.x62 - 4.45628648004517*m.b92 <= 0) m.c75 = Constraint(expr= m.x63 - 4.45628648004517*m.b93 <= 0) m.c76 = Constraint(expr= m.x64 + 4.45628648004517*m.b92 <= 4.45628648004517) m.c77 = Constraint(expr= m.x65 + 4.45628648004517*m.b93 <= 4.45628648004517) m.c78 = Constraint(expr= m.x78 - 2.54515263975353*m.b92 <= 0) m.c79 = Constraint(expr= m.x79 - 2.54515263975353*m.b93 <= 0) m.c80 = Constraint(expr= m.x80 + 2.54515263975353*m.b92 <= 2.54515263975353) m.c81 = Constraint(expr= m.x81 + 2.54515263975353*m.b93 <= 2.54515263975353) m.c82 = Constraint(expr= - m.x66 + m.x82 == 0) m.c83 = Constraint(expr= - m.x67 + m.x83 == 0) m.c84 = Constraint(expr= - 0.5*m.x70 + m.x82 == 0) m.c85 = Constraint(expr= - 0.5*m.x71 + m.x83 == 0) m.c86 = Constraint(expr= m.x68 == 0) m.c87 = Constraint(expr= m.x69 == 0) m.c88 = Constraint(expr= m.x72 == 0) m.c89 = Constraint(expr= m.x73 == 0) m.c90 = Constraint(expr= m.x84 == 0) m.c91 = Constraint(expr= m.x85 == 0) m.c92 = Constraint(expr= m.x32 - m.x66 - m.x68 == 0) m.c93 = Constraint(expr= m.x33 - m.x67 - m.x69 == 0) m.c94 = Constraint(expr= m.x34 - m.x70 - m.x72 == 0) m.c95 = Constraint(expr= m.x35 - m.x71 - m.x73 == 0) m.c96 = Constraint(expr= m.x40 - m.x82 - m.x84 == 0) m.c97 = Constraint(expr= m.x41 - m.x83 - m.x85 == 0) m.c98 = Constraint(expr= m.x66 - 4.45628648004517*m.b94 <= 0) m.c99 = Constraint(expr= m.x67 - 4.45628648004517*m.b95 <= 0) m.c100 = Constraint(expr= m.x68 + 4.45628648004517*m.b94 <= 4.45628648004517) m.c101 = Constraint(expr= m.x69 + 4.45628648004517*m.b95 <= 4.45628648004517) m.c102 = Constraint(expr= m.x70 - 30*m.b94 <= 0) m.c103 = Constraint(expr= m.x71 - 30*m.b95 <= 0) m.c104 = Constraint(expr= m.x72 + 30*m.b94 <= 30) m.c105 = Constraint(expr= m.x73 + 30*m.b95 <= 30) m.c106 = Constraint(expr= m.x82 - 15*m.b94 <= 0) m.c107 = Constraint(expr= m.x83 - 15*m.b95 <= 0) m.c108 = Constraint(expr= m.x84 + 15*m.b94 <= 15) m.c109 = Constraint(expr= m.x85 + 15*m.b95 <= 15) m.c110 = Constraint(expr= m.x2 + 5*m.b96 == 0) m.c111 = Constraint(expr= m.x3 + 4*m.b97 == 0) m.c112 = Constraint(expr= m.x4 + 8*m.b98 == 0) m.c113 = Constraint(expr= m.x5 + 7*m.b99 == 0) m.c114 = Constraint(expr= m.x6 + 6*m.b100 == 0) m.c115 = Constraint(expr= m.x7 + 9*m.b101 == 0) m.c116 = Constraint(expr= m.x8 + 10*m.b102 == 0) m.c117 = Constraint(expr= m.x9 + 9*m.b103 == 0) m.c118 = Constraint(expr= m.x10 + 6*m.b104 == 0) m.c119 = Constraint(expr= m.x11 + 10*m.b105 == 0) m.c120 = Constraint(expr= m.b86 - m.b87 <= 0) m.c121 = Constraint(expr= m.b88 - m.b89 <= 0) m.c122 = Constraint(expr= m.b90 - m.b91 <= 0) m.c123 = Constraint(expr= m.b92 - m.b93 <= 0) m.c124 = Constraint(expr= m.b94 - m.b95 <= 0) m.c125 = Constraint(expr= m.b96 + m.b97 <= 1) m.c126 = Constraint(expr= m.b96 + m.b97 <= 1) m.c127 = Constraint(expr= m.b98 + m.b99 <= 1) m.c128 = Constraint(expr= m.b98 + m.b99 <= 1) m.c129 = Constraint(expr= m.b100 + m.b101 <= 1) m.c130 = Constraint(expr= m.b100 + m.b101 <= 1) m.c131 = Constraint(expr= m.b102 + m.b103 <= 1) m.c132 = Constraint(expr= m.b102 + m.b103 <= 1) m.c133 = Constraint(expr= m.b104 + m.b105 <= 1) m.c134 = Constraint(expr= m.b104 + m.b105 <= 1) m.c135 = Constraint(expr= m.b86 - m.b96 <= 0) m.c136 = Constraint(expr= - m.b86 + m.b87 - m.b97 <= 0) m.c137 = Constraint(expr= m.b88 - m.b98 <= 0) m.c138 = Constraint(expr= - m.b88 + m.b89 - m.b99 <= 0) m.c139 = Constraint(expr= m.b90 - m.b100 <= 0) m.c140 = Constraint(expr= - m.b90 + m.b91 - m.b101 <= 0) m.c141 = Constraint(expr= m.b92 - m.b102 <= 0) m.c142 = Constraint(expr= - m.b92 + m.b93 - m.b103 <= 0) m.c143 = Constraint(expr= m.b94 - m.b104 <= 0) m.c144 = Constraint(expr= - m.b94 + m.b95 - m.b105 <= 0) m.c145 = Constraint(expr= m.b86 + m.b88 == 1) m.c146 = Constraint(expr= m.b87 + m.b89 == 1) m.c147 = Constraint(expr= m.b86 + m.b88 - m.b90 >= 0) m.c148 = Constraint(expr= m.b87 + m.b89 - m.b91 >= 0) m.c149 = Constraint(expr= m.b86 + m.b88 - m.b92 >= 0) m.c150 = Constraint(expr= m.b87 + m.b89 - m.b93 >= 0) m.c151 = Constraint(expr= m.b86 + m.b88 - m.b94 >= 0) m.c152 = Constraint(expr= m.b87 + m.b89 - m.b95 >= 0)
[ 2, 220, 20625, 19930, 3194, 416, 402, 40834, 38240, 379, 8870, 14, 1314, 14, 1238, 3571, 25, 4349, 25, 1954, 198, 2, 220, 220, 198, 2, 220, 7889, 341, 9853, 198, 2, 220, 220, 220, 220, 220, 7472, 220, 220, 220, 220, 220, 220, 220, 412, 220, 220, 220, 220, 220, 220, 220, 402, 220, 220, 220, 220, 220, 220, 220, 406, 220, 220, 220, 220, 220, 220, 220, 399, 220, 220, 220, 220, 220, 220, 220, 1395, 220, 220, 220, 220, 220, 220, 220, 327, 220, 220, 220, 220, 220, 220, 220, 347, 198, 2, 220, 220, 220, 220, 220, 220, 220, 24848, 220, 220, 220, 220, 220, 220, 9166, 220, 220, 220, 220, 220, 220, 220, 718, 220, 220, 220, 220, 220, 220, 5441, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 198, 2, 220, 220, 198, 2, 220, 35748, 9853, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 220, 220, 220, 220, 220, 220, 220, 275, 220, 220, 220, 220, 220, 220, 220, 1312, 220, 220, 220, 220, 220, 264, 16, 82, 220, 220, 220, 220, 220, 264, 17, 82, 220, 220, 220, 220, 220, 220, 629, 220, 220, 220, 220, 220, 220, 33721, 198, 2, 220, 220, 220, 220, 220, 7472, 220, 220, 220, 220, 542, 220, 220, 13934, 220, 18253, 220, 220, 220, 220, 264, 418, 16, 220, 220, 220, 220, 264, 418, 17, 220, 220, 220, 629, 756, 220, 220, 220, 220, 264, 600, 198, 2, 220, 220, 220, 220, 220, 220, 220, 13343, 220, 220, 220, 220, 220, 220, 7600, 220, 220, 220, 220, 220, 220, 1160, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 198, 2, 220, 19534, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 220, 220, 220, 657, 198, 2, 220, 220, 198, 2, 220, 8504, 22570, 9853, 198, 2, 220, 220, 220, 220, 220, 7472, 220, 220, 220, 1500, 220, 220, 220, 220, 220, 220, 22879, 220, 220, 220, 220, 220, 360, 3069, 198, 2, 220, 220, 220, 220, 220, 220, 220, 44063, 220, 220, 220, 220, 220, 42819, 220, 220, 220, 220, 220, 220, 1248, 220, 220, 220, 220, 220, 220, 220, 657, 198, 2, 220, 198, 2, 220, 17893, 1741, 468, 4615, 352, 7885, 290, 352, 16022, 628, 198, 6738, 12972, 17902, 13, 268, 2268, 1330, 1635, 198, 198, 19849, 796, 285, 796, 1482, 38669, 17633, 3419, 628, 198, 76, 13, 87, 17, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 18, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 19, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 20, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 21, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 22, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 23, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 24, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 940, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1157, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 14202, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1065, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 1821, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1485, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 1821, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1415, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1314, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1433, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1558, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1507, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1129, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1238, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2481, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1828, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1954, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1731, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1495, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2075, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1983, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2078, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1959, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1270, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3132, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2624, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2091, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2682, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 1270, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2327, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 1270, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2623, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2718, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2548, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2670, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1821, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3901, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3682, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3559, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2598, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2231, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3510, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2857, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2780, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2920, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1120, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4349, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4309, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4310, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4051, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2816, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3980, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3553, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3365, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3270, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1899, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5333, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5237, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5066, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2414, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2996, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2791, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3134, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3104, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3388, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2154, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4869, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4761, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4790, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4524, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 2425, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 4304, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3324, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3695, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 3720, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 1795, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 6659, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 6469, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5999, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5705, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 87, 5332, 796, 12372, 7, 33479, 28, 3041, 874, 11, 65, 3733, 16193, 15, 11, 14202, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 4521, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 5774, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 3459, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 4531, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 3829, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 6420, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 5892, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 6052, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 5824, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 3865, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 4846, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 5607, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 4089, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 2079, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 3064, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 8784, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 15377, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 15197, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 13464, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 76, 13, 65, 13348, 796, 12372, 7, 33479, 28, 33, 3219, 11, 65, 3733, 16193, 15, 11, 16, 828, 36733, 1096, 28, 15, 8, 198, 198, 76, 13, 26801, 796, 37092, 7, 31937, 28, 532, 285, 13, 87, 1065, 532, 285, 13, 87, 1485, 1343, 642, 9, 76, 13, 87, 1731, 1343, 838, 9, 76, 13, 87, 1495, 532, 362, 9, 76, 13, 87, 2682, 532, 285, 13, 87, 2327, 1343, 4019, 9, 76, 13, 87, 2623, 1343, 4101, 9, 76, 13, 87, 2718, 1343, 33015, 9, 76, 13, 87, 2548, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 33882, 9, 76, 13, 87, 2670, 1343, 26481, 9, 76, 13, 87, 1821, 1343, 36966, 9, 76, 13, 87, 3901, 532, 642, 9, 76, 13, 65, 4846, 532, 604, 9, 76, 13, 65, 5607, 532, 807, 9, 76, 13, 65, 4089, 532, 767, 9, 76, 13, 65, 2079, 532, 718, 9, 76, 13, 65, 3064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 860, 9, 76, 13, 65, 8784, 532, 838, 9, 76, 13, 65, 15377, 532, 860, 9, 76, 13, 65, 15197, 532, 718, 9, 76, 13, 65, 13464, 532, 838, 9, 76, 13, 65, 13348, 11, 2565, 28, 9806, 48439, 8, 198, 198, 76, 13, 66, 17, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1065, 532, 285, 13, 87, 1415, 532, 285, 13, 87, 1433, 6624, 657, 8, 198, 198, 76, 13, 66, 18, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1485, 532, 285, 13, 87, 1314, 532, 285, 13, 87, 1558, 6624, 657, 8, 198, 198, 76, 13, 66, 19, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 87, 1507, 532, 285, 13, 87, 1238, 1343, 285, 13, 87, 1828, 6624, 657, 8, 198, 198, 76, 13, 66, 20, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 87, 1129, 532, 285, 13, 87, 2481, 1343, 285, 13, 87, 1954, 6624, 657, 8, 198, 198, 76, 13, 66, 21, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1828, 532, 285, 13, 87, 1731, 532, 285, 13, 87, 2075, 6624, 657, 8, 198, 198, 76, 13, 66, 22, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1954, 532, 285, 13, 87, 1495, 532, 285, 13, 87, 1983, 6624, 657, 8, 198, 198, 76, 13, 66, 23, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2075, 532, 285, 13, 87, 2078, 532, 285, 13, 87, 1270, 532, 285, 13, 87, 2624, 6624, 657, 8, 198, 198, 76, 13, 66, 24, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1983, 532, 285, 13, 87, 1959, 532, 285, 13, 87, 3132, 532, 285, 13, 87, 2091, 6624, 657, 8, 198, 198, 76, 13, 66, 940, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 1120, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 4521, 8, 532, 2604, 7, 16, 1343, 285, 13, 87, 3682, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 4521, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 4521, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 1157, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 4349, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 5774, 8, 532, 2604, 7, 16, 1343, 285, 13, 87, 3559, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 5774, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 5774, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 1065, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2598, 6624, 657, 8, 198, 198, 76, 13, 66, 1485, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2231, 6624, 657, 8, 198, 198, 76, 13, 66, 1415, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4309, 6624, 657, 8, 198, 198, 76, 13, 66, 1314, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4310, 6624, 657, 8, 198, 198, 76, 13, 66, 1433, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1415, 532, 285, 13, 87, 3682, 532, 285, 13, 87, 2598, 6624, 657, 8, 198, 198, 76, 13, 66, 1558, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1314, 532, 285, 13, 87, 3559, 532, 285, 13, 87, 2231, 6624, 657, 8, 198, 198, 76, 13, 66, 1507, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1507, 532, 285, 13, 87, 1120, 532, 285, 13, 87, 4309, 6624, 657, 8, 198, 198, 76, 13, 66, 1129, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1129, 532, 285, 13, 87, 4349, 532, 285, 13, 87, 4310, 6624, 657, 8, 198, 198, 76, 13, 66, 1238, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3682, 532, 2319, 9, 76, 13, 65, 4521, 19841, 657, 8, 198, 198, 76, 13, 66, 2481, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3559, 532, 2319, 9, 76, 13, 65, 5774, 19841, 657, 8, 198, 198, 76, 13, 66, 1828, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2598, 1343, 2319, 9, 76, 13, 65, 4521, 19841, 2319, 8, 198, 198, 76, 13, 66, 1954, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2231, 1343, 2319, 9, 76, 13, 65, 5774, 19841, 2319, 8, 198, 198, 76, 13, 66, 1731, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1120, 532, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 9, 76, 13, 65, 4521, 19841, 657, 8, 198, 198, 76, 13, 66, 1495, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4349, 532, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 9, 76, 13, 65, 5774, 19841, 657, 8, 198, 198, 76, 13, 66, 2075, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4309, 1343, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 9, 76, 13, 65, 4521, 19841, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 8, 198, 198, 76, 13, 66, 1983, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4310, 1343, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 9, 76, 13, 65, 5774, 19841, 513, 13, 50055, 3553, 1238, 2791, 32869, 3132, 8, 198, 198, 76, 13, 66, 2078, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 4051, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 3459, 8, 532, 352, 13, 17, 9, 6404, 7, 16, 1343, 285, 13, 87, 3510, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 3459, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 3459, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 1959, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 2816, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 4531, 8, 532, 352, 13, 17, 9, 6404, 7, 16, 1343, 285, 13, 87, 2857, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 4531, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 4531, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 1270, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2780, 6624, 657, 8, 198, 198, 76, 13, 66, 3132, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2920, 6624, 657, 8, 198, 198, 76, 13, 66, 2624, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3980, 6624, 657, 8, 198, 198, 76, 13, 66, 2091, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3553, 6624, 657, 8, 198, 198, 76, 13, 66, 2682, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1433, 532, 285, 13, 87, 3510, 532, 285, 13, 87, 2780, 6624, 657, 8, 198, 198, 76, 13, 66, 2327, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1558, 532, 285, 13, 87, 2857, 532, 285, 13, 87, 2920, 6624, 657, 8, 198, 198, 76, 13, 66, 2623, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1238, 532, 285, 13, 87, 4051, 532, 285, 13, 87, 3980, 6624, 657, 8, 198, 198, 76, 13, 66, 2718, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2481, 532, 285, 13, 87, 2816, 532, 285, 13, 87, 3553, 6624, 657, 8, 198, 198, 76, 13, 66, 2548, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3510, 532, 2319, 9, 76, 13, 65, 3459, 19841, 657, 8, 198, 198, 76, 13, 66, 2670, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2857, 532, 2319, 9, 76, 13, 65, 4531, 19841, 657, 8, 198, 198, 76, 13, 66, 1821, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2780, 1343, 2319, 9, 76, 13, 65, 3459, 19841, 2319, 8, 198, 198, 76, 13, 66, 3901, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2920, 1343, 2319, 9, 76, 13, 65, 4531, 19841, 2319, 8, 198, 198, 76, 13, 66, 3682, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4051, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3459, 19841, 657, 8, 198, 198, 76, 13, 66, 3559, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2816, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 4531, 19841, 657, 8, 198, 198, 76, 13, 66, 2598, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3980, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3459, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 2231, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3553, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 4531, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 3510, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 657, 13, 2425, 9, 76, 13, 87, 3365, 1343, 285, 13, 87, 4524, 6624, 657, 8, 198, 198, 76, 13, 66, 2857, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 657, 13, 2425, 9, 76, 13, 87, 3270, 1343, 285, 13, 87, 2425, 6624, 657, 8, 198, 198, 76, 13, 66, 2780, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1899, 6624, 657, 8, 198, 198, 76, 13, 66, 2920, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5333, 6624, 657, 8, 198, 198, 76, 13, 66, 1120, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4304, 6624, 657, 8, 198, 198, 76, 13, 66, 4349, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3324, 6624, 657, 8, 198, 198, 76, 13, 66, 4309, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2078, 532, 285, 13, 87, 3365, 532, 285, 13, 87, 1899, 6624, 657, 8, 198, 198, 76, 13, 66, 4310, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1959, 532, 285, 13, 87, 3270, 532, 285, 13, 87, 5333, 6624, 657, 8, 198, 198, 76, 13, 66, 4051, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2623, 532, 285, 13, 87, 4524, 532, 285, 13, 87, 4304, 6624, 657, 8, 198, 198, 76, 13, 66, 2816, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2718, 532, 285, 13, 87, 2425, 532, 285, 13, 87, 3324, 6624, 657, 8, 198, 198, 76, 13, 66, 3980, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3365, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3829, 19841, 657, 8, 198, 198, 76, 13, 66, 3553, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3270, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 6420, 19841, 657, 8, 198, 198, 76, 13, 66, 3365, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1899, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3829, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 3270, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5333, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 6420, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 1899, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4524, 532, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 9, 76, 13, 65, 3829, 19841, 657, 8, 198, 198, 76, 13, 66, 5333, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2425, 532, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 9, 76, 13, 65, 6420, 19841, 657, 8, 198, 198, 76, 13, 66, 5237, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4304, 1343, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 9, 76, 13, 65, 3829, 19841, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 8, 198, 198, 76, 13, 66, 5066, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3324, 1343, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 9, 76, 13, 65, 6420, 19841, 513, 13, 2682, 1828, 1415, 4521, 405, 2091, 3459, 8, 198, 198, 76, 13, 66, 2414, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 3695, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 5892, 8, 532, 352, 13, 20, 9, 6404, 7, 16, 1343, 285, 13, 87, 5237, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 5892, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 5892, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 2996, 796, 1482, 2536, 2913, 7, 31937, 16193, 76, 13, 87, 3720, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 6052, 8, 532, 352, 13, 20, 9, 6404, 7, 16, 1343, 285, 13, 87, 5066, 29006, 16, 68, 12, 21, 1343, 285, 13, 65, 6052, 22305, 9, 7, 16, 68, 12, 21, 1343, 285, 13, 65, 6052, 8, 19841, 657, 8, 198, 198, 76, 13, 66, 2791, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2414, 6624, 657, 8, 198, 198, 76, 13, 66, 3134, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2996, 6624, 657, 8, 198, 198, 76, 13, 66, 3104, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1795, 6624, 657, 8, 198, 198, 76, 13, 66, 3388, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 6659, 6624, 657, 8, 198, 198, 76, 13, 66, 2154, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1270, 532, 285, 13, 87, 5237, 532, 285, 13, 87, 2414, 6624, 657, 8, 198, 198, 76, 13, 66, 4869, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3132, 532, 285, 13, 87, 5066, 532, 285, 13, 87, 2996, 6624, 657, 8, 198, 198, 76, 13, 66, 4761, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2548, 532, 285, 13, 87, 3695, 532, 285, 13, 87, 1795, 6624, 657, 8, 198, 198, 76, 13, 66, 4790, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2670, 532, 285, 13, 87, 3720, 532, 285, 13, 87, 6659, 6624, 657, 8, 198, 198, 76, 13, 66, 4524, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5237, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 5892, 19841, 657, 8, 198, 198, 76, 13, 66, 2425, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5066, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 6052, 19841, 657, 8, 198, 198, 76, 13, 66, 4304, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2414, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 5892, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 3324, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2996, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 6052, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 3695, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3695, 532, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 9, 76, 13, 65, 5892, 19841, 657, 8, 198, 198, 76, 13, 66, 3720, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3720, 532, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 9, 76, 13, 65, 6052, 19841, 657, 8, 198, 198, 76, 13, 66, 1795, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1795, 1343, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 9, 76, 13, 65, 5892, 19841, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 8, 198, 198, 76, 13, 66, 6659, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 6659, 1343, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 9, 76, 13, 65, 6052, 19841, 362, 13, 45326, 1314, 2075, 2670, 2425, 33319, 8, 198, 198, 76, 13, 66, 6469, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 87, 2791, 1343, 285, 13, 87, 6469, 6624, 657, 8, 198, 198, 76, 13, 66, 5999, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 87, 3134, 1343, 285, 13, 87, 5999, 6624, 657, 8, 198, 198, 76, 13, 66, 5705, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 657, 13, 20, 9, 76, 13, 87, 2154, 1343, 285, 13, 87, 6469, 6624, 657, 8, 198, 198, 76, 13, 66, 5332, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 657, 13, 20, 9, 76, 13, 87, 4869, 1343, 285, 13, 87, 5999, 6624, 657, 8, 198, 198, 76, 13, 66, 4521, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3104, 6624, 657, 8, 198, 198, 76, 13, 66, 5774, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3388, 6624, 657, 8, 198, 198, 76, 13, 66, 3459, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4761, 6624, 657, 8, 198, 198, 76, 13, 66, 4531, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4790, 6624, 657, 8, 198, 198, 76, 13, 66, 3829, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5705, 6624, 657, 8, 198, 198, 76, 13, 66, 6420, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5332, 6624, 657, 8, 198, 198, 76, 13, 66, 5892, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2624, 532, 285, 13, 87, 2791, 532, 285, 13, 87, 3104, 6624, 657, 8, 198, 198, 76, 13, 66, 6052, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2091, 532, 285, 13, 87, 3134, 532, 285, 13, 87, 3388, 6624, 657, 8, 198, 198, 76, 13, 66, 5824, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2682, 532, 285, 13, 87, 2154, 532, 285, 13, 87, 4761, 6624, 657, 8, 198, 198, 76, 13, 66, 3865, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2327, 532, 285, 13, 87, 4869, 532, 285, 13, 87, 4790, 6624, 657, 8, 198, 198, 76, 13, 66, 4846, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1821, 532, 285, 13, 87, 6469, 532, 285, 13, 87, 5705, 6624, 657, 8, 198, 198, 76, 13, 66, 5607, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3901, 532, 285, 13, 87, 5999, 532, 285, 13, 87, 5332, 6624, 657, 8, 198, 198, 76, 13, 66, 4089, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2791, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 5824, 19841, 657, 8, 198, 198, 76, 13, 66, 2079, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3134, 532, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3865, 19841, 657, 8, 198, 198, 76, 13, 66, 3064, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3104, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 5824, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 8784, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 3388, 1343, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 9, 76, 13, 65, 3865, 19841, 604, 13, 29228, 2078, 2414, 7410, 2231, 1558, 8, 198, 198, 76, 13, 66, 15377, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 2154, 532, 1542, 9, 76, 13, 65, 5824, 19841, 657, 8, 198, 198, 76, 13, 66, 15197, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4869, 532, 1542, 9, 76, 13, 65, 3865, 19841, 657, 8, 198, 198, 76, 13, 66, 13464, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4761, 1343, 1542, 9, 76, 13, 65, 5824, 19841, 1542, 8, 198, 198, 76, 13, 66, 13348, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 4790, 1343, 1542, 9, 76, 13, 65, 3865, 19841, 1542, 8, 198, 198, 76, 13, 66, 15801, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 6469, 532, 1315, 9, 76, 13, 65, 5824, 19841, 657, 8, 198, 198, 76, 13, 66, 15982, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5999, 532, 1315, 9, 76, 13, 65, 3865, 19841, 657, 8, 198, 198, 76, 13, 66, 15711, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5705, 1343, 1315, 9, 76, 13, 65, 5824, 19841, 1315, 8, 198, 198, 76, 13, 66, 14454, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 5332, 1343, 1315, 9, 76, 13, 65, 3865, 19841, 1315, 8, 198, 198, 76, 13, 66, 11442, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 17, 1343, 642, 9, 76, 13, 65, 4846, 6624, 657, 8, 198, 198, 76, 13, 66, 16243, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 18, 1343, 604, 9, 76, 13, 65, 5607, 6624, 657, 8, 198, 198, 76, 13, 66, 14686, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 19, 1343, 807, 9, 76, 13, 65, 4089, 6624, 657, 8, 198, 198, 76, 13, 66, 16616, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 20, 1343, 767, 9, 76, 13, 65, 2079, 6624, 657, 8, 198, 198, 76, 13, 66, 16562, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 21, 1343, 718, 9, 76, 13, 65, 3064, 6624, 657, 8, 198, 198, 76, 13, 66, 15363, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 22, 1343, 860, 9, 76, 13, 65, 8784, 6624, 657, 8, 198, 198, 76, 13, 66, 18298, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 23, 1343, 838, 9, 76, 13, 65, 15377, 6624, 657, 8, 198, 198, 76, 13, 66, 17657, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 24, 1343, 860, 9, 76, 13, 65, 15197, 6624, 657, 8, 198, 198, 76, 13, 66, 16817, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 940, 1343, 718, 9, 76, 13, 65, 13464, 6624, 657, 8, 198, 198, 76, 13, 66, 16315, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 87, 1157, 1343, 838, 9, 76, 13, 65, 13348, 6624, 657, 8, 198, 198, 76, 13, 66, 10232, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 532, 285, 13, 65, 5774, 19841, 657, 8, 198, 198, 76, 13, 66, 19244, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3459, 532, 285, 13, 65, 4531, 19841, 657, 8, 198, 198, 76, 13, 66, 18376, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3829, 532, 285, 13, 65, 6420, 19841, 657, 8, 198, 198, 76, 13, 66, 10163, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5892, 532, 285, 13, 65, 6052, 19841, 657, 8, 198, 198, 76, 13, 66, 17464, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5824, 532, 285, 13, 65, 3865, 19841, 657, 8, 198, 198, 76, 13, 66, 11623, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4846, 1343, 285, 13, 65, 5607, 19841, 352, 8, 198, 198, 76, 13, 66, 19420, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4846, 1343, 285, 13, 65, 5607, 19841, 352, 8, 198, 198, 76, 13, 66, 16799, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4089, 1343, 285, 13, 65, 2079, 19841, 352, 8, 198, 198, 76, 13, 66, 12762, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4089, 1343, 285, 13, 65, 2079, 19841, 352, 8, 198, 198, 76, 13, 66, 18741, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3064, 1343, 285, 13, 65, 8784, 19841, 352, 8, 198, 198, 76, 13, 66, 12952, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3064, 1343, 285, 13, 65, 8784, 19841, 352, 8, 198, 198, 76, 13, 66, 22042, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 15377, 1343, 285, 13, 65, 15197, 19841, 352, 8, 198, 198, 76, 13, 66, 19924, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 15377, 1343, 285, 13, 65, 15197, 19841, 352, 8, 198, 198, 76, 13, 66, 16945, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 13464, 1343, 285, 13, 65, 13348, 19841, 352, 8, 198, 198, 76, 13, 66, 19880, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 13464, 1343, 285, 13, 65, 13348, 19841, 352, 8, 198, 198, 76, 13, 66, 17059, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 532, 285, 13, 65, 4846, 19841, 657, 8, 198, 198, 76, 13, 66, 20809, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 65, 4521, 1343, 285, 13, 65, 5774, 532, 285, 13, 65, 5607, 19841, 657, 8, 198, 198, 76, 13, 66, 19708, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3459, 532, 285, 13, 65, 4089, 19841, 657, 8, 198, 198, 76, 13, 66, 20107, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 65, 3459, 1343, 285, 13, 65, 4531, 532, 285, 13, 65, 2079, 19841, 657, 8, 198, 198, 76, 13, 66, 20219, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 3829, 532, 285, 13, 65, 3064, 19841, 657, 8, 198, 198, 76, 13, 66, 15187, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 65, 3829, 1343, 285, 13, 65, 6420, 532, 285, 13, 65, 8784, 19841, 657, 8, 198, 198, 76, 13, 66, 23756, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5892, 532, 285, 13, 65, 15377, 19841, 657, 8, 198, 198, 76, 13, 66, 23726, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 65, 5892, 1343, 285, 13, 65, 6052, 532, 285, 13, 65, 15197, 19841, 657, 8, 198, 198, 76, 13, 66, 21139, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5824, 532, 285, 13, 65, 13464, 19841, 657, 8, 198, 198, 76, 13, 66, 18444, 796, 1482, 2536, 2913, 7, 31937, 28, 532, 285, 13, 65, 5824, 1343, 285, 13, 65, 3865, 532, 285, 13, 65, 13348, 19841, 657, 8, 198, 198, 76, 13, 66, 18781, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 1343, 285, 13, 65, 3459, 6624, 352, 8, 198, 198, 76, 13, 66, 20964, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5774, 1343, 285, 13, 65, 4531, 6624, 352, 8, 198, 198, 76, 13, 66, 20198, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 1343, 285, 13, 65, 3459, 532, 285, 13, 65, 3829, 18189, 657, 8, 198, 198, 76, 13, 66, 18294, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5774, 1343, 285, 13, 65, 4531, 532, 285, 13, 65, 6420, 18189, 657, 8, 198, 198, 76, 13, 66, 19442, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 1343, 285, 13, 65, 3459, 532, 285, 13, 65, 5892, 18189, 657, 8, 198, 198, 76, 13, 66, 8628, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5774, 1343, 285, 13, 65, 4531, 532, 285, 13, 65, 6052, 18189, 657, 8, 198, 198, 76, 13, 66, 24309, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 4521, 1343, 285, 13, 65, 3459, 532, 285, 13, 65, 5824, 18189, 657, 8, 198, 198, 76, 13, 66, 17827, 796, 1482, 2536, 2913, 7, 31937, 28, 220, 220, 285, 13, 65, 5774, 1343, 285, 13, 65, 4531, 532, 285, 13, 65, 3865, 18189, 657, 8, 198 ]
1.889175
8,148
import numpy as np import pytest from inverse_covariance import ( QuicGraphicalLassoEBIC, AdaptiveGraphicalLasso, QuicGraphicalLassoCV, ) from inverse_covariance.profiling import ClusterGraph
[ 11748, 299, 32152, 355, 45941, 198, 11748, 12972, 9288, 198, 198, 6738, 34062, 62, 66, 709, 2743, 590, 1330, 357, 198, 220, 220, 220, 2264, 291, 37065, 605, 43, 28372, 30195, 2149, 11, 198, 220, 220, 220, 30019, 425, 37065, 605, 43, 28372, 11, 198, 220, 220, 220, 2264, 291, 37065, 605, 43, 28372, 33538, 11, 198, 8, 198, 6738, 34062, 62, 66, 709, 2743, 590, 13, 5577, 4386, 1330, 38279, 37065, 628 ]
2.821918
73
DEVELOPERS_EMAILS = ['[email protected]', '[email protected]']
[ 7206, 18697, 3185, 4877, 62, 27630, 45484, 796, 37250, 274, 78, 6422, 417, 31, 27740, 18013, 13, 785, 3256, 705, 82, 445, 9892, 31, 27740, 18013, 13, 785, 20520 ]
2.206897
29
import os import pickle import time import pandas as pd from sklearn.base import BaseEstimator, TransformerMixin TARGET = 'target' THRESHOLD = 0.7 df = pd.read_csv('data_test.csv', index_col=[1]) \ .drop('Unnamed: 0', axis=1) with open('model.pkl', 'rb') as f: model = pickle.load(f) df[TARGET] = (model.predict_proba(df)[:, 1] > THRESHOLD).astype('int') df.to_csv('answers_test.csv')
[ 11748, 28686, 198, 11748, 2298, 293, 198, 11748, 640, 198, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 6738, 1341, 35720, 13, 8692, 1330, 7308, 22362, 320, 1352, 11, 3602, 16354, 35608, 259, 628, 628, 628, 198, 51, 46095, 796, 705, 16793, 6, 198, 4221, 19535, 39, 15173, 796, 657, 13, 22, 198, 198, 7568, 796, 279, 67, 13, 961, 62, 40664, 10786, 7890, 62, 9288, 13, 40664, 3256, 6376, 62, 4033, 41888, 16, 12962, 3467, 198, 220, 220, 220, 764, 14781, 10786, 3118, 13190, 25, 657, 3256, 16488, 28, 16, 8, 198, 198, 4480, 1280, 10786, 19849, 13, 79, 41582, 3256, 705, 26145, 11537, 355, 277, 25, 198, 220, 220, 220, 2746, 796, 2298, 293, 13, 2220, 7, 69, 8, 198, 198, 7568, 58, 51, 46095, 60, 796, 357, 19849, 13, 79, 17407, 62, 1676, 7012, 7, 7568, 38381, 45299, 352, 60, 1875, 2320, 19535, 39, 15173, 737, 459, 2981, 10786, 600, 11537, 198, 198, 7568, 13, 1462, 62, 40664, 10786, 504, 86, 364, 62, 9288, 13, 40664, 11537, 198 ]
2.354651
172
from _Funções_e_Valores.verify_authors import treat_exceptions from _Funções_e_Valores.values import ND import pandas as pd # Proceedings and Journals separated
[ 6738, 4808, 24629, 16175, 127, 113, 274, 62, 68, 62, 7762, 2850, 13, 332, 1958, 62, 41617, 1330, 2190, 62, 1069, 11755, 198, 6738, 4808, 24629, 16175, 127, 113, 274, 62, 68, 62, 7762, 2850, 13, 27160, 1330, 25524, 198, 198, 11748, 19798, 292, 355, 279, 67, 628, 628, 197, 2, 30641, 290, 48608, 11266, 628, 628, 628 ]
2.948276
58
"""Split sorted modely_02.""" import pandas as pd url = "https://onemocneni-aktualne.mzcr.cz/api/account/mifLSHU2re3GAmiotOkdYExeoQ/file/modely%252Fmodely_02_efektivita_testovani.csv" df = pd.read_csv(url, delimiter=';') df = df.sort_values(['datum_hlaseni', 'datum_prvniho_priznaku', 'orp', 'vek_kat', 'pohlavi']) df[df['datum_hlaseni'] < '2021'].to_csv('modely_02_efektivita_testovani_sorted_2020_v1.csv') df.loc[(df['datum_hlaseni'] >= '2021') & (df['datum_hlaseni'] < '2021-07')].to_csv('modely_02_efektivita_testovani_sorted_2021_1_v1.csv') df.loc[(df['datum_hlaseni'] >= '2021') & (df['datum_hlaseni'] >= '2021-07')].to_csv('modely_02_efektivita_testovani_sorted_2021_2_v1.csv') df.loc[(df['datum_hlaseni'] >= '2022')].to_csv('modely_02_efektivita_testovani_sorted_2022_v1.csv') df[(df['datum_hlaseni'] >= '2023') | df['datum_hlaseni'].isnull()].to_csv('modely_02_efektivita_testovani_sorted_null_v1.csv')
[ 37811, 41205, 23243, 4235, 306, 62, 2999, 526, 15931, 198, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 6371, 796, 366, 5450, 1378, 261, 368, 420, 38572, 72, 12, 461, 83, 723, 710, 13, 76, 89, 6098, 13, 26691, 14, 15042, 14, 23317, 14, 76, 361, 6561, 39, 52, 17, 260, 18, 38, 5840, 5151, 18690, 67, 56, 3109, 68, 78, 48, 14, 7753, 14, 14171, 306, 4, 22800, 37, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 13, 40664, 1, 198, 198, 7568, 796, 279, 67, 13, 961, 62, 40664, 7, 6371, 11, 46728, 2676, 11639, 26, 11537, 198, 198, 7568, 796, 47764, 13, 30619, 62, 27160, 7, 17816, 19608, 388, 62, 18519, 292, 43850, 3256, 705, 19608, 388, 62, 1050, 85, 37373, 78, 62, 3448, 47347, 8719, 3256, 705, 16300, 3256, 705, 303, 74, 62, 41826, 3256, 705, 79, 48988, 15820, 6, 12962, 198, 198, 7568, 58, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 1279, 705, 1238, 2481, 6, 4083, 1462, 62, 40664, 10786, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 62, 82, 9741, 62, 42334, 62, 85, 16, 13, 40664, 11537, 198, 198, 7568, 13, 17946, 58, 7, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 18189, 705, 1238, 2481, 11537, 1222, 357, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 1279, 705, 1238, 2481, 12, 2998, 11537, 4083, 1462, 62, 40664, 10786, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 62, 82, 9741, 62, 1238, 2481, 62, 16, 62, 85, 16, 13, 40664, 11537, 198, 198, 7568, 13, 17946, 58, 7, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 18189, 705, 1238, 2481, 11537, 1222, 357, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 18189, 705, 1238, 2481, 12, 2998, 11537, 4083, 1462, 62, 40664, 10786, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 62, 82, 9741, 62, 1238, 2481, 62, 17, 62, 85, 16, 13, 40664, 11537, 198, 198, 7568, 13, 17946, 58, 7, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 18189, 705, 1238, 1828, 11537, 4083, 1462, 62, 40664, 10786, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 62, 82, 9741, 62, 1238, 1828, 62, 85, 16, 13, 40664, 11537, 198, 198, 7568, 58, 7, 7568, 17816, 19608, 388, 62, 18519, 292, 43850, 20520, 18189, 705, 1238, 1954, 11537, 930, 47764, 17816, 19608, 388, 62, 18519, 292, 43850, 6, 4083, 271, 8423, 3419, 4083, 1462, 62, 40664, 10786, 14171, 306, 62, 2999, 62, 891, 988, 83, 452, 5350, 62, 9288, 709, 3216, 62, 82, 9741, 62, 8423, 62, 85, 16, 13, 40664, 11537 ]
2.004357
459
from bokeh.models.widgets import Panel class BacktraderPlottingTab: ''' Abstract class for tabs This class needs to be extended from when creating custom tabs. It is required to overwrite the _is_useable and _get_panel method. The _get_panel method needs to return a panel child and a title. ''' def is_useable(self): ''' Returns if the tab is useable within the current environment ''' return self._is_useable() def get_panel(self): ''' Returns the panel to show as a tab ''' child, title = self._get_panel() self._panel = Panel(child=child, title=title) return self._panel
[ 6738, 1489, 365, 71, 13, 27530, 13, 28029, 11407, 1330, 18810, 628, 198, 4871, 5157, 2213, 5067, 43328, 889, 33349, 25, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 27741, 1398, 329, 22524, 198, 220, 220, 220, 770, 1398, 2476, 284, 307, 7083, 422, 618, 4441, 2183, 22524, 13, 198, 220, 220, 220, 632, 318, 2672, 284, 49312, 262, 4808, 271, 62, 1904, 540, 290, 4808, 1136, 62, 35330, 2446, 13, 198, 220, 220, 220, 383, 4808, 1136, 62, 35330, 2446, 2476, 284, 1441, 257, 6103, 1200, 290, 257, 3670, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 825, 318, 62, 1904, 540, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 16409, 611, 262, 7400, 318, 779, 540, 1626, 262, 1459, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 271, 62, 1904, 540, 3419, 628, 220, 220, 220, 825, 651, 62, 35330, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 16409, 262, 6103, 284, 905, 355, 257, 7400, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 1200, 11, 3670, 796, 2116, 13557, 1136, 62, 35330, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 35330, 796, 18810, 7, 9410, 28, 9410, 11, 3670, 28, 7839, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 35330, 198 ]
2.601504
266
"""Functions that create samples.""" import chaospy as cp import numpy as np import respy as rp import pandas as pd from pathlib import Path PROJECT_ROOT = Path(__file__).resolve().parents[1] DATA_PATH = PROJECT_ROOT / "data" CHAOSPY_SAMPLING_METHODS = { "random", "grid", "chebyshev", "korobov", "sobol", "halton", "hammersley", "latin_hypercube", } def create_sample( n_samples=30, seed=123, M="None", sampling_method="random", MC_method="Brute force", ): """Simulate samples of qoi. Parameters ---------- n_samples : int Number of samples to draw. seed : int Seed for the random number generators. M : int The number of conditional bins to genetate if `MC_method` is "DLR". sampling_method : string Specifies which sampling method should be employed. Possible arguments are in {"random", "grid", "chebyshev", "korobov","sobol", "halton", "hammersley", "latin_hypercube"} MC_method : string Specify the Monte Carlo estimator. One of ["brute force", "DLR"], where "DLR" denotes to the double loop reordering approach. Returns ------- input_x_respy: list A list of input parameters that are ready to be passed into the `respy` function. input_x_mix_respy: list A list of conditional input parameters that are ready to be passed into the `respy` function. """ # load mean and cov mean, cov = load_mean_and_cov() # get unconditioal samples sample_x, sample_x_prime = unconditional_samples( mean, cov, n_samples, seed, sampling_method, ) # fix parameters of interest x_3 = subset_params(sample_x) x_prime_3 = subset_params(sample_x_prime) x = fix_true_params(x_3, mean) # get conditional samples x_mix_3 = conditional_samples(x_3, x_prime_3, MC_method, M) # fix parameters of interest x_mix = fix_true_params_mix(x_mix_3, mean, MC_method) input_x_respy = [(params_to_respy)(i) for i in x] input_x_mix_respy = [(params_to_respy)(z) for x in x_mix for y in x for z in y] return input_x_respy, input_x_mix_respy def load_mean_and_cov(): """Return mean and covariance for Keane and Wolpin (1994) model.""" # load model specifications base_params = pd.read_pickle(DATA_PATH / "params_kw_94_one_se.pkl") # mean and cov for sampling mean = base_params["value"].to_numpy()[:27] cov = pd.read_pickle(DATA_PATH / "covariance_kw_94_one.pkl").to_numpy() return mean, cov def unconditional_samples( mean, cov, n_samples, seed, sampling_method, ): """Generate two independent groups of sample points. Parameters ---------- mean : pd.DataFrame or np.ndarray The mean, of shape (k, ). cov : pd.DataFrame or np.ndarrary The covariance, has to be of shape (k, k). n_samples : int Number of samples to draw. seed : int, optional Random number generator seed. sampling_method : string Specifies which sampling method should be employed. Possible arguments are in {"random", "grid", "chebyshev", "korobov","sobol", "halton", "hammersley", "latin_hypercube"} Returns ------- sample_x, sample_x_prime : np.ndarray Two arrays of shape (n_draws, n_params) with i.i.d draws from a given joint distribution. """ distribution = cp.MvNormal(loc=mean, scale=cov) if sampling_method in CHAOSPY_SAMPLING_METHODS: np.random.seed(seed) sample_x = np.array(distribution.sample(size=n_samples, rule=sampling_method).T) np.random.seed(seed + 1) sample_x_prime = np.array( distribution.sample(size=n_samples, rule=sampling_method).T ) else: raise ValueError(f"Argument 'method' is not in {CHAOSPY_SAMPLING_METHODS}.") return sample_x, sample_x_prime def subset_params(x): """Pick a subset of samples from the sampled parameters. Parameters ---------- x : np.ndarray Array of shape (n_draws, n_params). Returns ------- params_interests : np.ndarray Array of shape (n_draws, 3) contains only 3 seleted parameters. """ n_draws = x.shape[0] indices = [2, 14, 16] params_interests = np.zeros((n_draws, 3)) for i in range(n_draws): params_interests[i] = np.take(x[i], indices) return params_interests def conditional_samples(x_3, x_prime_3, MC_method, M): """Generate mixed sample sets of interest distributed accroding to a conditional PDF. Parameters ---------- x_3 : np.ndarray Array with shape (n_draws, 3). x_prime : np.ndarray Array with shape (n_draws, 3). MC_method : string Specify the Monte Carlo estimator. One of ["brute force", "DLR"], where "DLR" denotes to the double loop reordering approach. M : int The number of conditional bins to genetate if `MC_method` is "DLR". Returns ------- x_mix : np.ndarray Mixed sample sets. Shape has the form (n_draws, 3, n_draws, 3). """ n_draws, n_params = x_3.shape if MC_method == "Brute force": x_3_mix = np.zeros((n_draws, n_params, n_draws, n_params)) for i in range(n_params): for j in range(n_draws): x_3_mix[j, i] = x_3 x_3_mix[j, i, :, i] = x_prime_3[j, i] if MC_method == "DLR": conditional_bin = x_3[:M] x_3_mix = np.zeros((M, n_params, n_draws, n_params)) # subdivide unconditional samples into M eaually bins, # within each bin x_i being fixed. for i in range(n_params): for j in range(M): x_3_mix[j, i] = x_3 x_3_mix[j, i, :, i] = conditional_bin[j, i] return x_3_mix def fix_true_params(x_3, true_values): """Replace the 3 selected point estimates with the sampled parameters. Parameters ---------- x_3 : np.ndarray Array with shape (n_draws, 3). true_values : np.ndarray The point estimated, of shape (k, ). Returns ------- true_params_fix : np.ndarray Shape has the form (n_draws, n_params, n_draws, n_params). """ n_draws = x_3.shape[0] true_params_fix = np.tile(true_values, (n_draws, 1)) for i in range(n_draws): np.put(true_params_fix[i], [2, 14, 16], x_3[i]) return true_params_fix def fix_true_params_mix(x_3, true_values, MC_method): """Replace the 3 selected point estimates with the conditional sampled parameters. Parameters ---------- x_3 : np.ndarray Array with shape (n_draws, 3). true_values : np.ndarray The point estimated, of shape (k, ). Returns ------- true_params_fix : np.ndarray Shape has the form (n_draws, n_params, n_draws, n_params). """ if MC_method == "Brute force": n_draws, n_3_parmas = x_3.shape[:2] true_params_fix = np.tile(true_values, (n_draws, n_3_parmas, n_draws, 1)) for i in range(n_draws): for j in range(n_3_parmas): for k in range(n_draws): np.put(true_params_fix[i, j, k], [2, 14, 16], x_3[i, j, k]) if MC_method == "DLR": M, n_3_parmas, n_draws = x_3.shape[:3] true_params_fix = np.tile(true_values, (M, n_3_parmas, n_draws, 1)) for i in range(M): for j in range(n_3_parmas): for k in range(n_draws): np.put(true_params_fix[i, j, k], [2, 14, 16], x_3[i, j, k]) return true_params_fix def params_to_respy(input_params, *args): """transfer sampled paramters to respy format.""" # baseline options and params for the indices. base_params = pd.read_pickle(DATA_PATH / "params_kw_94_one_se.pkl") params_idx = pd.Series(data=input_params, index=base_params.index[0:27]) assert len(params_idx) == 27, "Length of KW94 vector must be 27." part_1 = params_idx rp_params, _ = rp.get_example_model("kw_94_one", with_data=False) part_2 = rp_params.iloc[27:31, 0] parts = [part_1, part_2] rp_params_series = pd.concat(parts) input_params_respy = pd.DataFrame(rp_params_series, columns=["value"]) return input_params_respy
[ 37811, 24629, 2733, 326, 2251, 8405, 526, 15931, 198, 11748, 17792, 2117, 88, 355, 31396, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 1217, 88, 355, 374, 79, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 3108, 8019, 1330, 10644, 628, 198, 31190, 23680, 62, 13252, 2394, 796, 10644, 7, 834, 7753, 834, 737, 411, 6442, 22446, 23743, 58, 16, 60, 198, 26947, 62, 34219, 796, 21965, 23680, 62, 13252, 2394, 1220, 366, 7890, 1, 198, 198, 49285, 47053, 56, 62, 49302, 6489, 2751, 62, 49273, 50, 796, 1391, 198, 220, 220, 220, 366, 25120, 1600, 198, 220, 220, 220, 366, 25928, 1600, 198, 220, 220, 220, 366, 2395, 48209, 258, 85, 1600, 198, 220, 220, 220, 366, 74, 273, 672, 709, 1600, 198, 220, 220, 220, 366, 568, 28984, 1600, 198, 220, 220, 220, 366, 14201, 1122, 1600, 198, 220, 220, 220, 366, 2763, 11056, 1636, 1600, 198, 220, 220, 220, 366, 75, 10680, 62, 49229, 40296, 1600, 198, 92, 628, 198, 4299, 2251, 62, 39873, 7, 198, 220, 220, 220, 299, 62, 82, 12629, 28, 1270, 11, 198, 220, 220, 220, 9403, 28, 10163, 11, 198, 220, 220, 220, 337, 2625, 14202, 1600, 198, 220, 220, 220, 19232, 62, 24396, 2625, 25120, 1600, 198, 220, 220, 220, 13122, 62, 24396, 2625, 9414, 1133, 2700, 1600, 198, 2599, 198, 220, 220, 220, 37227, 8890, 5039, 8405, 286, 10662, 23013, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 299, 62, 82, 12629, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 8405, 284, 3197, 13, 198, 220, 220, 220, 9403, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 23262, 329, 262, 4738, 1271, 27298, 13, 198, 220, 220, 220, 337, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1271, 286, 26340, 41701, 284, 2429, 316, 378, 611, 4600, 9655, 62, 24396, 63, 318, 366, 19260, 49, 1911, 198, 220, 220, 220, 19232, 62, 24396, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 6945, 543, 19232, 2446, 815, 307, 9322, 13, 33671, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 389, 287, 19779, 25120, 1600, 366, 25928, 1600, 366, 2395, 48209, 258, 85, 1600, 366, 74, 273, 672, 709, 2430, 568, 28984, 1600, 366, 14201, 1122, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2763, 11056, 1636, 1600, 366, 75, 10680, 62, 49229, 40296, 20662, 198, 220, 220, 220, 13122, 62, 24396, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 1958, 262, 22489, 40089, 3959, 1352, 13, 1881, 286, 14631, 1671, 1133, 2700, 1600, 366, 19260, 49, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 810, 366, 19260, 49, 1, 43397, 284, 262, 4274, 9052, 302, 34555, 3164, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 5128, 62, 87, 62, 4363, 88, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 5128, 10007, 326, 389, 3492, 284, 307, 3804, 656, 262, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 4363, 88, 63, 2163, 13, 198, 220, 220, 220, 5128, 62, 87, 62, 19816, 62, 4363, 88, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 26340, 5128, 10007, 326, 389, 3492, 284, 307, 3804, 198, 220, 220, 220, 220, 220, 220, 220, 656, 262, 4600, 4363, 88, 63, 2163, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 3440, 1612, 290, 39849, 198, 220, 220, 220, 1612, 11, 39849, 796, 3440, 62, 32604, 62, 392, 62, 66, 709, 3419, 628, 220, 220, 220, 1303, 651, 31776, 270, 952, 282, 8405, 198, 220, 220, 220, 6291, 62, 87, 11, 6291, 62, 87, 62, 35505, 796, 42423, 62, 82, 12629, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1612, 11, 198, 220, 220, 220, 220, 220, 220, 220, 39849, 11, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 82, 12629, 11, 198, 220, 220, 220, 220, 220, 220, 220, 9403, 11, 198, 220, 220, 220, 220, 220, 220, 220, 19232, 62, 24396, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 4259, 10007, 286, 1393, 198, 220, 220, 220, 2124, 62, 18, 796, 24637, 62, 37266, 7, 39873, 62, 87, 8, 198, 220, 220, 220, 2124, 62, 35505, 62, 18, 796, 24637, 62, 37266, 7, 39873, 62, 87, 62, 35505, 8, 198, 220, 220, 220, 2124, 796, 4259, 62, 7942, 62, 37266, 7, 87, 62, 18, 11, 1612, 8, 628, 220, 220, 220, 1303, 651, 26340, 8405, 198, 220, 220, 220, 2124, 62, 19816, 62, 18, 796, 26340, 62, 82, 12629, 7, 87, 62, 18, 11, 2124, 62, 35505, 62, 18, 11, 13122, 62, 24396, 11, 337, 8, 628, 220, 220, 220, 1303, 4259, 10007, 286, 1393, 198, 220, 220, 220, 2124, 62, 19816, 796, 4259, 62, 7942, 62, 37266, 62, 19816, 7, 87, 62, 19816, 62, 18, 11, 1612, 11, 13122, 62, 24396, 8, 628, 220, 220, 220, 5128, 62, 87, 62, 4363, 88, 796, 47527, 37266, 62, 1462, 62, 4363, 88, 5769, 72, 8, 329, 1312, 287, 2124, 60, 198, 220, 220, 220, 5128, 62, 87, 62, 19816, 62, 4363, 88, 796, 47527, 37266, 62, 1462, 62, 4363, 88, 5769, 89, 8, 329, 2124, 287, 2124, 62, 19816, 329, 331, 287, 2124, 329, 1976, 287, 331, 60, 628, 220, 220, 220, 1441, 5128, 62, 87, 62, 4363, 88, 11, 5128, 62, 87, 62, 19816, 62, 4363, 88, 628, 198, 4299, 3440, 62, 32604, 62, 392, 62, 66, 709, 33529, 198, 220, 220, 220, 37227, 13615, 1612, 290, 44829, 590, 329, 46160, 290, 27094, 11635, 357, 22666, 8, 2746, 526, 15931, 198, 220, 220, 220, 1303, 3440, 2746, 20640, 198, 220, 220, 220, 2779, 62, 37266, 796, 279, 67, 13, 961, 62, 27729, 293, 7, 26947, 62, 34219, 1220, 366, 37266, 62, 46265, 62, 5824, 62, 505, 62, 325, 13, 79, 41582, 4943, 628, 220, 220, 220, 1303, 1612, 290, 39849, 329, 19232, 198, 220, 220, 220, 1612, 796, 2779, 62, 37266, 14692, 8367, 1, 4083, 1462, 62, 77, 32152, 3419, 58, 25, 1983, 60, 198, 220, 220, 220, 39849, 796, 279, 67, 13, 961, 62, 27729, 293, 7, 26947, 62, 34219, 1220, 366, 66, 709, 2743, 590, 62, 46265, 62, 5824, 62, 505, 13, 79, 41582, 11074, 1462, 62, 77, 32152, 3419, 628, 220, 220, 220, 1441, 1612, 11, 39849, 628, 198, 4299, 42423, 62, 82, 12629, 7, 198, 220, 220, 220, 1612, 11, 198, 220, 220, 220, 39849, 11, 198, 220, 220, 220, 299, 62, 82, 12629, 11, 198, 220, 220, 220, 9403, 11, 198, 220, 220, 220, 19232, 62, 24396, 11, 198, 2599, 198, 220, 220, 220, 37227, 8645, 378, 734, 4795, 2628, 286, 6291, 2173, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 1612, 1058, 279, 67, 13, 6601, 19778, 393, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1612, 11, 286, 5485, 357, 74, 11, 6739, 198, 220, 220, 220, 39849, 1058, 279, 67, 13, 6601, 19778, 393, 45941, 13, 358, 3258, 560, 198, 220, 220, 220, 220, 220, 220, 220, 383, 44829, 590, 11, 468, 284, 307, 286, 5485, 357, 74, 11, 479, 737, 198, 220, 220, 220, 299, 62, 82, 12629, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 8405, 284, 3197, 13, 198, 220, 220, 220, 9403, 1058, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 14534, 1271, 17301, 9403, 13, 198, 220, 220, 220, 19232, 62, 24396, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 6945, 543, 19232, 2446, 815, 307, 9322, 13, 33671, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 389, 287, 19779, 25120, 1600, 366, 25928, 1600, 366, 2395, 48209, 258, 85, 1600, 366, 74, 273, 672, 709, 2430, 568, 28984, 1600, 366, 14201, 1122, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2763, 11056, 1636, 1600, 366, 75, 10680, 62, 49229, 40296, 20662, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 6291, 62, 87, 11, 6291, 62, 87, 62, 35505, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 4930, 26515, 286, 5485, 357, 77, 62, 19334, 82, 11, 299, 62, 37266, 8, 351, 1312, 13, 72, 13, 67, 14293, 422, 257, 198, 220, 220, 220, 220, 220, 220, 220, 1813, 6466, 6082, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 6082, 796, 31396, 13, 44, 85, 26447, 7, 17946, 28, 32604, 11, 5046, 28, 66, 709, 8, 628, 220, 220, 220, 611, 19232, 62, 24396, 287, 5870, 32, 47053, 56, 62, 49302, 6489, 2751, 62, 49273, 50, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 28826, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6291, 62, 87, 796, 45941, 13, 18747, 7, 17080, 3890, 13, 39873, 7, 7857, 28, 77, 62, 82, 12629, 11, 3896, 28, 37687, 11347, 62, 24396, 737, 51, 8, 628, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 28826, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6291, 62, 87, 62, 35505, 796, 45941, 13, 18747, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6082, 13, 39873, 7, 7857, 28, 77, 62, 82, 12629, 11, 3896, 28, 37687, 11347, 62, 24396, 737, 51, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 1, 28100, 1713, 705, 24396, 6, 318, 407, 287, 1391, 49285, 47053, 56, 62, 49302, 6489, 2751, 62, 49273, 50, 92, 19570, 628, 220, 220, 220, 1441, 6291, 62, 87, 11, 6291, 62, 87, 62, 35505, 628, 198, 4299, 24637, 62, 37266, 7, 87, 2599, 198, 220, 220, 220, 37227, 31686, 257, 24637, 286, 8405, 422, 262, 35846, 10007, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 286, 5485, 357, 77, 62, 19334, 82, 11, 299, 62, 37266, 737, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 42287, 62, 9446, 82, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 286, 5485, 357, 77, 62, 19334, 82, 11, 513, 8, 4909, 691, 513, 384, 33342, 10007, 13, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 299, 62, 19334, 82, 796, 2124, 13, 43358, 58, 15, 60, 628, 220, 220, 220, 36525, 796, 685, 17, 11, 1478, 11, 1467, 60, 198, 220, 220, 220, 42287, 62, 9446, 82, 796, 45941, 13, 9107, 418, 19510, 77, 62, 19334, 82, 11, 513, 4008, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9446, 82, 58, 72, 60, 796, 45941, 13, 20657, 7, 87, 58, 72, 4357, 36525, 8, 628, 220, 220, 220, 1441, 42287, 62, 9446, 82, 628, 198, 4299, 26340, 62, 82, 12629, 7, 87, 62, 18, 11, 2124, 62, 35505, 62, 18, 11, 13122, 62, 24396, 11, 337, 2599, 198, 220, 220, 220, 37227, 8645, 378, 7668, 6291, 5621, 286, 1393, 9387, 697, 305, 12083, 284, 257, 26340, 12960, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 62, 18, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 351, 5485, 357, 77, 62, 19334, 82, 11, 513, 737, 198, 220, 220, 220, 2124, 62, 35505, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 351, 5485, 357, 77, 62, 19334, 82, 11, 513, 737, 198, 220, 220, 220, 13122, 62, 24396, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 1958, 262, 22489, 40089, 3959, 1352, 13, 1881, 286, 14631, 1671, 1133, 2700, 1600, 366, 19260, 49, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 810, 366, 19260, 49, 1, 43397, 284, 262, 4274, 9052, 302, 34555, 3164, 13, 198, 220, 220, 220, 337, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1271, 286, 26340, 41701, 284, 2429, 316, 378, 611, 4600, 9655, 62, 24396, 63, 318, 366, 19260, 49, 1911, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2124, 62, 19816, 1058, 220, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 35250, 6291, 5621, 13, 25959, 468, 262, 1296, 357, 77, 62, 19334, 82, 11, 513, 11, 299, 62, 19334, 82, 11, 513, 737, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 299, 62, 19334, 82, 11, 299, 62, 37266, 796, 2124, 62, 18, 13, 43358, 628, 220, 220, 220, 611, 13122, 62, 24396, 6624, 366, 9414, 1133, 2700, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 796, 45941, 13, 9107, 418, 19510, 77, 62, 19334, 82, 11, 299, 62, 37266, 11, 299, 62, 19334, 82, 11, 299, 62, 37266, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 37266, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 58, 73, 11, 1312, 60, 796, 2124, 62, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 58, 73, 11, 1312, 11, 1058, 11, 1312, 60, 796, 2124, 62, 35505, 62, 18, 58, 73, 11, 1312, 60, 628, 220, 220, 220, 611, 13122, 62, 24396, 6624, 366, 19260, 49, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 26340, 62, 8800, 796, 2124, 62, 18, 58, 25, 44, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 796, 45941, 13, 9107, 418, 19510, 44, 11, 299, 62, 37266, 11, 299, 62, 19334, 82, 11, 299, 62, 37266, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 45944, 485, 42423, 8405, 656, 337, 304, 559, 453, 41701, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1626, 1123, 9874, 2124, 62, 72, 852, 5969, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 37266, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 44, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 58, 73, 11, 1312, 60, 796, 2124, 62, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 18, 62, 19816, 58, 73, 11, 1312, 11, 1058, 11, 1312, 60, 796, 26340, 62, 8800, 58, 73, 11, 1312, 60, 628, 220, 220, 220, 1441, 2124, 62, 18, 62, 19816, 628, 198, 4299, 4259, 62, 7942, 62, 37266, 7, 87, 62, 18, 11, 2081, 62, 27160, 2599, 198, 220, 220, 220, 37227, 3041, 5372, 262, 513, 6163, 966, 7746, 351, 262, 35846, 10007, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 62, 18, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 351, 5485, 357, 77, 62, 19334, 82, 11, 513, 737, 198, 220, 220, 220, 2081, 62, 27160, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 966, 6108, 11, 286, 5485, 357, 74, 11, 6739, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2081, 62, 37266, 62, 13049, 1058, 220, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 25959, 468, 262, 1296, 357, 77, 62, 19334, 82, 11, 299, 62, 37266, 11, 299, 62, 19334, 82, 11, 299, 62, 37266, 737, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 299, 62, 19334, 82, 796, 2124, 62, 18, 13, 43358, 58, 15, 60, 628, 220, 220, 220, 2081, 62, 37266, 62, 13049, 796, 45941, 13, 40927, 7, 7942, 62, 27160, 11, 357, 77, 62, 19334, 82, 11, 352, 4008, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 1996, 7, 7942, 62, 37266, 62, 13049, 58, 72, 4357, 685, 17, 11, 1478, 11, 1467, 4357, 2124, 62, 18, 58, 72, 12962, 628, 220, 220, 220, 1441, 2081, 62, 37266, 62, 13049, 628, 198, 4299, 4259, 62, 7942, 62, 37266, 62, 19816, 7, 87, 62, 18, 11, 2081, 62, 27160, 11, 13122, 62, 24396, 2599, 198, 220, 220, 220, 37227, 3041, 5372, 262, 513, 6163, 966, 7746, 351, 262, 26340, 35846, 10007, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 62, 18, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 351, 5485, 357, 77, 62, 19334, 82, 11, 513, 737, 198, 220, 220, 220, 2081, 62, 27160, 1058, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 966, 6108, 11, 286, 5485, 357, 74, 11, 6739, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2081, 62, 37266, 62, 13049, 1058, 220, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 25959, 468, 262, 1296, 357, 77, 62, 19334, 82, 11, 299, 62, 37266, 11, 299, 62, 19334, 82, 11, 299, 62, 37266, 737, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 13122, 62, 24396, 6624, 366, 9414, 1133, 2700, 1298, 628, 220, 220, 220, 220, 220, 220, 220, 299, 62, 19334, 82, 11, 299, 62, 18, 62, 79, 1670, 292, 796, 2124, 62, 18, 13, 43358, 58, 25, 17, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2081, 62, 37266, 62, 13049, 796, 45941, 13, 40927, 7, 7942, 62, 27160, 11, 357, 77, 62, 19334, 82, 11, 299, 62, 18, 62, 79, 1670, 292, 11, 299, 62, 19334, 82, 11, 352, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 77, 62, 18, 62, 79, 1670, 292, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 1996, 7, 7942, 62, 37266, 62, 13049, 58, 72, 11, 474, 11, 479, 4357, 685, 17, 11, 1478, 11, 1467, 4357, 2124, 62, 18, 58, 72, 11, 474, 11, 479, 12962, 628, 220, 220, 220, 611, 13122, 62, 24396, 6624, 366, 19260, 49, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 337, 11, 299, 62, 18, 62, 79, 1670, 292, 11, 299, 62, 19334, 82, 796, 2124, 62, 18, 13, 43358, 58, 25, 18, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2081, 62, 37266, 62, 13049, 796, 45941, 13, 40927, 7, 7942, 62, 27160, 11, 357, 44, 11, 299, 62, 18, 62, 79, 1670, 292, 11, 299, 62, 19334, 82, 11, 352, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 44, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 77, 62, 18, 62, 79, 1670, 292, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 2837, 7, 77, 62, 19334, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 1996, 7, 7942, 62, 37266, 62, 13049, 58, 72, 11, 474, 11, 479, 4357, 685, 17, 11, 1478, 11, 1467, 4357, 2124, 62, 18, 58, 72, 11, 474, 11, 479, 12962, 198, 220, 220, 220, 1441, 2081, 62, 37266, 62, 13049, 628, 198, 4299, 42287, 62, 1462, 62, 4363, 88, 7, 15414, 62, 37266, 11, 1635, 22046, 2599, 198, 220, 220, 220, 37227, 39437, 35846, 5772, 1010, 284, 1217, 88, 5794, 526, 15931, 628, 220, 220, 220, 1303, 14805, 3689, 290, 42287, 329, 262, 36525, 13, 198, 220, 220, 220, 2779, 62, 37266, 796, 279, 67, 13, 961, 62, 27729, 293, 7, 26947, 62, 34219, 1220, 366, 37266, 62, 46265, 62, 5824, 62, 505, 62, 325, 13, 79, 41582, 4943, 628, 220, 220, 220, 42287, 62, 312, 87, 796, 279, 67, 13, 27996, 7, 7890, 28, 15414, 62, 37266, 11, 6376, 28, 8692, 62, 37266, 13, 9630, 58, 15, 25, 1983, 12962, 628, 220, 220, 220, 6818, 18896, 7, 37266, 62, 312, 87, 8, 6624, 2681, 11, 366, 24539, 286, 509, 54, 5824, 15879, 1276, 307, 2681, 526, 198, 220, 220, 220, 636, 62, 16, 796, 42287, 62, 312, 87, 628, 220, 220, 220, 374, 79, 62, 37266, 11, 4808, 796, 374, 79, 13, 1136, 62, 20688, 62, 19849, 7203, 46265, 62, 5824, 62, 505, 1600, 351, 62, 7890, 28, 25101, 8, 198, 220, 220, 220, 636, 62, 17, 796, 374, 79, 62, 37266, 13, 346, 420, 58, 1983, 25, 3132, 11, 657, 60, 628, 220, 220, 220, 3354, 796, 685, 3911, 62, 16, 11, 636, 62, 17, 60, 198, 220, 220, 220, 374, 79, 62, 37266, 62, 25076, 796, 279, 67, 13, 1102, 9246, 7, 42632, 8, 198, 220, 220, 220, 5128, 62, 37266, 62, 4363, 88, 796, 279, 67, 13, 6601, 19778, 7, 81, 79, 62, 37266, 62, 25076, 11, 15180, 28, 14692, 8367, 8973, 8, 628, 220, 220, 220, 1441, 5128, 62, 37266, 62, 4363, 88, 198 ]
2.281395
3,671
# -*- coding: utf-8 -*- from http import HTTPStatus from typing import Optional from flask_httpauth import HTTPTokenAuth from app.config import config auth = HTTPTokenAuth(scheme="Bearer", header="Authorization") @auth.verify_token @auth.error_handler
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 2638, 1330, 14626, 19580, 198, 6738, 19720, 1330, 32233, 198, 198, 6738, 42903, 62, 4023, 18439, 1330, 14626, 30642, 30515, 198, 198, 6738, 598, 13, 11250, 1330, 4566, 198, 198, 18439, 796, 14626, 30642, 30515, 7, 15952, 1326, 2625, 3856, 11258, 1600, 13639, 2625, 13838, 1634, 4943, 628, 198, 31, 18439, 13, 332, 1958, 62, 30001, 628, 198, 31, 18439, 13, 18224, 62, 30281, 198 ]
3.2375
80
from re import M import bottom import asyncio import platform
[ 6738, 302, 1330, 337, 198, 11748, 4220, 198, 11748, 30351, 952, 198, 11748, 3859, 628 ]
4.2
15
import logging import os import numpy as np import pandas._libs.json as ujson import pyarrow as pa import pyarrow.parquet as pq import scipy.sparse from cirrocumulus.anndata_util import DataType logger = logging.getLogger("cirro")
[ 11748, 18931, 198, 11748, 28686, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 13557, 8019, 82, 13, 17752, 355, 334, 17752, 198, 11748, 12972, 6018, 355, 14187, 198, 11748, 12972, 6018, 13, 1845, 21108, 355, 279, 80, 198, 11748, 629, 541, 88, 13, 82, 29572, 198, 198, 6738, 10774, 12204, 388, 23515, 13, 272, 358, 1045, 62, 22602, 1330, 6060, 6030, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7203, 66, 343, 305, 4943, 628, 628, 628 ]
2.914634
82
import json import pytest from rest_framework import status from usaspending_api.common.helpers.unit_test_helper import add_to_mock_objects from usaspending_api.search.tests.test_mock_data_search import all_filters from django_mock_queries.query import MockModel @pytest.mark.django_db @pytest.mark.django_db @pytest.mark.django_db def test_spending_by_award_pop_zip_filter(client, mock_matviews_qs): """ Test that filtering by pop zips works""" mock_model_1 = MockModel(pop_zip5="00501", pop_country_code='USA', award_id=1, piid=None, fain='abc', uri=None, type='B', pulled_from="AWARD") mock_model_2 = MockModel(pop_zip5="00502", pop_country_code='USA', award_id=2, piid=None, fain='abd', uri=None, type='B', pulled_from="AWARD") mock_model_3 = MockModel(pop_zip5="00503", pop_country_code='USA', award_id=3, piid=None, fain='abe', uri=None, type='B', pulled_from="AWARD") add_to_mock_objects(mock_matviews_qs, [mock_model_1, mock_model_2, mock_model_3]) # test simple, single zip resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "place_of_performance_locations": [{"country": "USA", "zip": "00501"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00501'} # test that adding a zip that has no results doesn't remove the results from the first zip resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "place_of_performance_locations": [{"country": "USA", "zip": "00501"}, {"country": "USA", "zip": "10000"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00501'} # test that we get 2 results with 2 valid zips resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "place_of_performance_locations": [{"country": "USA", "zip": "00501"}, {"country": "USA", "zip": "00502"}] } })) possible_results = ({'internal_id': 1, 'Place of Performance Zip5': '00501'}, {'internal_id': 2, 'Place of Performance Zip5': '00502'}) assert len(resp.data['results']) == 2 assert resp.data['results'][0] in possible_results assert resp.data['results'][1] in possible_results # Just to make sure it isn't returning the same thing twice somehow assert resp.data['results'][0] != resp.data['results'][1] @pytest.mark.django_db def test_spending_by_award_recipient_zip_filter(client, mock_matviews_qs): """ Test that filtering by recipient zips works""" mock_model_1 = MockModel(recipient_location_zip5="00501", recipient_location_country_code='USA', pop_zip5='00001', award_id=1, piid=None, fain='abc', uri=None, type='B', pulled_from="AWARD") mock_model_2 = MockModel(recipient_location_zip5="00502", recipient_location_country_code='USA', pop_zip5='00002', award_id=2, piid=None, fain='abd', uri=None, type='B', pulled_from="AWARD") mock_model_3 = MockModel(recipient_location_zip5="00503", recipient_location_country_code='USA', pop_zip5='00003', award_id=3, piid=None, fain='abe', uri=None, type='B', pulled_from="AWARD") add_to_mock_objects(mock_matviews_qs, [mock_model_1, mock_model_2, mock_model_3]) # test simple, single zip resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00001'} # test that adding a zip that has no results doesn't remove the results from the first zip resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}, {"country": "USA", "zip": "10000"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00001'} # test that we get 2 results with 2 valid zips resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}, {"country": "USA", "zip": "00502"}] } })) possible_results = ({'internal_id': 1, 'Place of Performance Zip5': '00001'}, {'internal_id': 2, 'Place of Performance Zip5': '00002'}) assert len(resp.data['results']) == 2 assert resp.data['results'][0] in possible_results assert resp.data['results'][1] in possible_results # Just to make sure it isn't returning the same thing twice somehow assert resp.data['results'][0] != resp.data['results'][1] @pytest.mark.django_db def test_spending_by_award_both_zip_filter(client, mock_matviews_qs): """ Test that filtering by both kinds of zips works""" mock_model_1 = MockModel(recipient_location_zip5="00501", recipient_location_country_code='USA', pop_zip5='00001', pop_country_code='USA', award_id=1, piid=None, fain='abc', uri=None, type='B', pulled_from="AWARD") mock_model_2 = MockModel(recipient_location_zip5="00502", recipient_location_country_code='USA', pop_zip5='00002', pop_country_code='USA', award_id=2, piid=None, fain='abd', uri=None, type='B', pulled_from="AWARD") mock_model_3 = MockModel(recipient_location_zip5="00503", recipient_location_country_code='USA', pop_zip5='00003', pop_country_code='USA', award_id=3, piid=None, fain='abe', uri=None, type='B', pulled_from="AWARD") add_to_mock_objects(mock_matviews_qs, [mock_model_1, mock_model_2, mock_model_3]) # test simple, single pair of zips that both match resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}], "place_of_performance_locations": [{"country": "USA", "zip": "00001"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00001'} # test simple, single pair of zips that don't match resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}], "place_of_performance_locations": [{"country": "USA", "zip": "00002"}] } })) assert len(resp.data['results']) == 0 # test 2 pairs (only one pair can be made from this) resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "fields": ["Place of Performance Zip5"], "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_locations": [{"country": "USA", "zip": "00501"}, {"country": "USA", "zip": "00502"}], "place_of_performance_locations": [{"country": "USA", "zip": "00001"}, {"country": "USA", "zip": "00003"}] } })) assert len(resp.data['results']) == 1 assert resp.data['results'][0] == {'internal_id': 1, 'Place of Performance Zip5': '00001'} @pytest.mark.django_db def test_spending_by_award_foreign_filter(client, mock_matviews_qs): """ Verify that foreign country filter is returning the correct results """ mock_model_0 = MockModel(award_id=0, piid=None, fain='aaa', uri=None, type='B', pulled_from="AWARD", recipient_location_country_name="UNITED STATES", recipient_location_country_code="USA") mock_model_1 = MockModel(award_id=1, piid=None, fain='abc', uri=None, type='B', pulled_from="AWARD", recipient_location_country_name="", recipient_location_country_code="USA") mock_model_2 = MockModel(award_id=2, piid=None, fain='abd', uri=None, type='B', pulled_from="AWARD", recipient_location_country_name="UNITED STATES", recipient_location_country_code="") mock_model_3 = MockModel(award_id=3, piid=None, fain='abe', uri=None, type='B', pulled_from="AWARD", recipient_location_country_name="Gibraltar", recipient_location_country_code="GIB") add_to_mock_objects(mock_matviews_qs, [mock_model_0, mock_model_1, mock_model_2, mock_model_3]) # add_to_mock_objects(mock_matviews_qs, [mock_model_1, mock_model_3]) resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "filters": { "award_type_codes": ["A", "B", "C", "D"], # "recipient_locations": [{"country": "USA"}] "recipient_scope": "domestic" }, "fields": ["Award ID"] })) # Three results are returned when searching for "USA"-based recipients # e.g. "USA"; "UNITED STATES"; "USA" and "UNITED STATES"; assert len(resp.data['results']) == 3 resp = client.post( '/api/v2/search/spending_by_award/', content_type='application/json', data=json.dumps({ "filters": { "award_type_codes": ["A", "B", "C", "D"], "recipient_scope": "foreign" }, "fields": ["Award ID"], })) # One result is returned when searching for "Foreign" recipients assert len(resp.data['results']) == 1
[ 11748, 33918, 198, 11748, 12972, 9288, 198, 198, 6738, 1334, 62, 30604, 1330, 3722, 198, 6738, 514, 5126, 1571, 62, 15042, 13, 11321, 13, 16794, 364, 13, 20850, 62, 9288, 62, 2978, 525, 1330, 751, 62, 1462, 62, 76, 735, 62, 48205, 198, 6738, 514, 5126, 1571, 62, 15042, 13, 12947, 13, 41989, 13, 9288, 62, 76, 735, 62, 7890, 62, 12947, 1330, 477, 62, 10379, 1010, 198, 198, 6738, 42625, 14208, 62, 76, 735, 62, 421, 10640, 13, 22766, 1330, 44123, 17633, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 198, 4299, 1332, 62, 2777, 1571, 62, 1525, 62, 707, 446, 62, 12924, 62, 13344, 62, 24455, 7, 16366, 11, 15290, 62, 6759, 33571, 62, 48382, 2599, 198, 220, 220, 220, 37227, 6208, 326, 25431, 416, 1461, 1976, 2419, 2499, 37811, 198, 220, 220, 220, 15290, 62, 19849, 62, 16, 796, 44123, 17633, 7, 12924, 62, 13344, 20, 2625, 22544, 486, 1600, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 16, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 39305, 3256, 2956, 72, 28, 14202, 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, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 17, 796, 44123, 17633, 7, 12924, 62, 13344, 20, 2625, 405, 35126, 1600, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 17, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 397, 67, 3256, 2956, 72, 28, 14202, 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, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 18, 796, 44123, 17633, 7, 12924, 62, 13344, 20, 2625, 405, 31938, 1600, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 18, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 11231, 3256, 2956, 72, 28, 14202, 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, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 751, 62, 1462, 62, 76, 735, 62, 48205, 7, 76, 735, 62, 6759, 33571, 62, 48382, 11, 685, 76, 735, 62, 19849, 62, 16, 11, 15290, 62, 19849, 62, 17, 11, 15290, 62, 19849, 62, 18, 12962, 628, 220, 220, 220, 1303, 1332, 2829, 11, 2060, 19974, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 22544, 486, 6, 92, 628, 220, 220, 220, 1303, 1332, 326, 4375, 257, 19974, 326, 468, 645, 2482, 1595, 470, 4781, 262, 2482, 422, 262, 717, 19974, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 49388, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 22544, 486, 6, 92, 628, 220, 220, 220, 1303, 1332, 326, 356, 651, 362, 2482, 351, 362, 4938, 1976, 2419, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 405, 35126, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 1744, 62, 43420, 796, 37913, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 22544, 486, 6, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 32538, 62, 312, 10354, 362, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 405, 35126, 6, 30072, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 362, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 287, 1744, 62, 43420, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 16, 60, 287, 1744, 62, 43420, 198, 220, 220, 220, 1303, 2329, 284, 787, 1654, 340, 2125, 470, 8024, 262, 976, 1517, 5403, 7599, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 14512, 1217, 13, 7890, 17816, 43420, 6, 7131, 16, 60, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 198, 4299, 1332, 62, 2777, 1571, 62, 1525, 62, 707, 446, 62, 8344, 48137, 62, 13344, 62, 24455, 7, 16366, 11, 15290, 62, 6759, 33571, 62, 48382, 2599, 198, 220, 220, 220, 37227, 6208, 326, 25431, 416, 17800, 1976, 2419, 2499, 37811, 198, 220, 220, 220, 15290, 62, 19849, 62, 16, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 22544, 486, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 16, 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, 5764, 62, 312, 28, 16, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 39305, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 17, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 405, 35126, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 17, 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, 5764, 62, 312, 28, 17, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 397, 67, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 18, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 405, 31938, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 18, 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, 5764, 62, 312, 28, 18, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 11231, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 751, 62, 1462, 62, 76, 735, 62, 48205, 7, 76, 735, 62, 6759, 33571, 62, 48382, 11, 685, 76, 735, 62, 19849, 62, 16, 11, 15290, 62, 19849, 62, 17, 11, 15290, 62, 19849, 62, 18, 12962, 628, 220, 220, 220, 1303, 1332, 2829, 11, 2060, 19974, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 16, 6, 92, 628, 220, 220, 220, 1303, 1332, 326, 4375, 257, 19974, 326, 468, 645, 2482, 1595, 470, 4781, 262, 2482, 422, 262, 717, 19974, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 49388, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 16, 6, 92, 628, 220, 220, 220, 1303, 1332, 326, 356, 651, 362, 2482, 351, 362, 4938, 1976, 2419, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 405, 35126, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 1744, 62, 43420, 796, 37913, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 16, 6, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 32538, 62, 312, 10354, 362, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 17, 6, 30072, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 362, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 287, 1744, 62, 43420, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 16, 60, 287, 1744, 62, 43420, 198, 220, 220, 220, 1303, 2329, 284, 787, 1654, 340, 2125, 470, 8024, 262, 976, 1517, 5403, 7599, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 14512, 1217, 13, 7890, 17816, 43420, 6, 7131, 16, 60, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 198, 4299, 1332, 62, 2777, 1571, 62, 1525, 62, 707, 446, 62, 16885, 62, 13344, 62, 24455, 7, 16366, 11, 15290, 62, 6759, 33571, 62, 48382, 2599, 198, 220, 220, 220, 37227, 6208, 326, 25431, 416, 1111, 6982, 286, 1976, 2419, 2499, 37811, 198, 220, 220, 220, 15290, 62, 19849, 62, 16, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 22544, 486, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 16, 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, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 16, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 39305, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 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, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 17, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 405, 35126, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 17, 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, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 17, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 397, 67, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 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, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 18, 796, 44123, 17633, 7, 8344, 48137, 62, 24886, 62, 13344, 20, 2625, 405, 31938, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 11639, 14053, 3256, 1461, 62, 13344, 20, 11639, 2388, 18, 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, 1461, 62, 19315, 62, 8189, 11639, 14053, 3256, 5764, 62, 312, 28, 18, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 11231, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 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, 5954, 62, 6738, 2625, 12298, 9795, 4943, 198, 220, 220, 220, 751, 62, 1462, 62, 76, 735, 62, 48205, 7, 76, 735, 62, 6759, 33571, 62, 48382, 11, 685, 76, 735, 62, 19849, 62, 16, 11, 15290, 62, 19849, 62, 17, 11, 15290, 62, 19849, 62, 18, 12962, 628, 220, 220, 220, 1303, 1332, 2829, 11, 2060, 5166, 286, 1976, 2419, 326, 1111, 2872, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 20662, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 2388, 16, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 16, 6, 92, 628, 220, 220, 220, 1303, 1332, 2829, 11, 2060, 5166, 286, 1976, 2419, 326, 836, 470, 2872, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 20662, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 2388, 17, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 657, 628, 220, 220, 220, 1303, 1332, 362, 14729, 357, 8807, 530, 5166, 460, 307, 925, 422, 428, 8, 198, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 27271, 286, 15193, 38636, 20, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 22544, 486, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 405, 35126, 20662, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 62, 1659, 62, 26585, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 2388, 16, 25719, 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, 19779, 19315, 1298, 366, 14053, 1600, 366, 13344, 1298, 366, 2388, 18, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198, 220, 220, 220, 6818, 1217, 13, 7890, 17816, 43420, 6, 7131, 15, 60, 6624, 1391, 6, 32538, 62, 312, 10354, 352, 11, 705, 27271, 286, 15193, 38636, 20, 10354, 705, 2388, 16, 6, 92, 628, 198, 31, 9078, 9288, 13, 4102, 13, 28241, 14208, 62, 9945, 198, 4299, 1332, 62, 2777, 1571, 62, 1525, 62, 707, 446, 62, 38823, 62, 24455, 7, 16366, 11, 15290, 62, 6759, 33571, 62, 48382, 2599, 198, 220, 220, 220, 37227, 49899, 326, 3215, 1499, 8106, 318, 8024, 262, 3376, 2482, 37227, 198, 220, 220, 220, 15290, 62, 19849, 62, 15, 796, 44123, 17633, 7, 707, 446, 62, 312, 28, 15, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 46071, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 1600, 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, 17800, 62, 24886, 62, 19315, 62, 3672, 2625, 4944, 22061, 47023, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 2625, 14053, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 16, 796, 44123, 17633, 7, 707, 446, 62, 312, 28, 16, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 39305, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 1600, 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, 17800, 62, 24886, 62, 19315, 62, 3672, 2625, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 2625, 14053, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 17, 796, 44123, 17633, 7, 707, 446, 62, 312, 28, 17, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 397, 67, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 1600, 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, 17800, 62, 24886, 62, 19315, 62, 3672, 2625, 4944, 22061, 47023, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 2625, 4943, 198, 220, 220, 220, 15290, 62, 19849, 62, 18, 796, 44123, 17633, 7, 707, 446, 62, 312, 28, 18, 11, 31028, 312, 28, 14202, 11, 277, 391, 11639, 11231, 3256, 2956, 72, 28, 14202, 11, 2099, 11639, 33, 3256, 5954, 62, 6738, 2625, 12298, 9795, 1600, 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, 17800, 62, 24886, 62, 19315, 62, 3672, 2625, 38, 571, 45662, 1600, 17800, 62, 24886, 62, 19315, 62, 8189, 2625, 38, 9865, 4943, 628, 220, 220, 220, 751, 62, 1462, 62, 76, 735, 62, 48205, 7, 76, 735, 62, 6759, 33571, 62, 48382, 11, 685, 76, 735, 62, 19849, 62, 15, 11, 15290, 62, 19849, 62, 16, 11, 15290, 62, 19849, 62, 17, 11, 15290, 62, 19849, 62, 18, 12962, 198, 220, 220, 220, 1303, 751, 62, 1462, 62, 76, 735, 62, 48205, 7, 76, 735, 62, 6759, 33571, 62, 48382, 11, 685, 76, 735, 62, 19849, 62, 16, 11, 15290, 62, 19849, 62, 18, 12962, 628, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 366, 8344, 48137, 62, 17946, 602, 1298, 685, 4895, 19315, 1298, 366, 14053, 20662, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 29982, 1298, 366, 3438, 4699, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 32, 904, 4522, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 1303, 7683, 2482, 389, 4504, 618, 10342, 329, 366, 14053, 26793, 3106, 20352, 198, 220, 220, 220, 1303, 304, 13, 70, 13, 366, 14053, 8172, 366, 4944, 22061, 47023, 8172, 366, 14053, 1, 290, 366, 4944, 22061, 47023, 8172, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 513, 628, 220, 220, 220, 1217, 796, 5456, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 31051, 15042, 14, 85, 17, 14, 12947, 14, 2777, 1571, 62, 1525, 62, 707, 446, 14, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11639, 31438, 14, 17752, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 17752, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10379, 1010, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 707, 446, 62, 4906, 62, 40148, 1298, 14631, 32, 1600, 366, 33, 1600, 366, 34, 1600, 366, 35, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 48137, 62, 29982, 1298, 366, 38823, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25747, 1298, 14631, 32, 904, 4522, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 4008, 198, 220, 220, 220, 1303, 1881, 1255, 318, 4504, 618, 10342, 329, 366, 33616, 1, 20352, 198, 220, 220, 220, 6818, 18896, 7, 4363, 13, 7890, 17816, 43420, 6, 12962, 6624, 352, 198 ]
2.12543
5,517
from abei.interfaces import ( IProcedure, IProcedureClass, IProcedureFactory, IProcedureData, IProcedureLink, ) from .procedure_joint_basic import ( joint_validate, joint_run, ) # native_function = staticmethod(lambda x, y: x) # composite procedure class ------------------------------ procedure_class_composite = ProcedureClassComposite() # bool procedure classes ---------------------------------- procedure_class_not = ProcedureClassBasic( signature='not', docstring='logic not', procedure_type=ProcedureUnaryOperator, native_function=lambda x: not x, ) procedure_class_and = ProcedureClassBasic( signature='and', docstring='logic and', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x and y, ) procedure_class_or = ProcedureClassBasic( signature='or', docstring='logic or', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x or y, ) # calculation procedure classes --------------------------- procedure_class_negate = ProcedureClassBasic( signature='neg', docstring='negate operator', procedure_type=ProcedureUnaryOperator, native_function=lambda x: not x, ) procedure_class_add = ProcedureClassBasic( signature='add', docstring='add operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x + y, ) procedure_class_subtract = ProcedureClassBasic( signature='sub', docstring='subtract operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x - y, ) procedure_class_multiply = ProcedureClassBasic( signature='mul', docstring='multiply operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x * y, ) procedure_class_divide = ProcedureClassBasic( signature='div', docstring='divide operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x / y, ) procedure_class_modulo = ProcedureClassBasic( signature='mod', docstring='modulo operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x % y, ) procedure_class_mod_divide = ProcedureClassBasic( signature='modDiv', docstring='modulo divide operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x // y, ) procedure_class_square = ProcedureClassBasic( signature='sq', docstring='square operator', procedure_type=ProcedureUnaryOperator, native_function=lambda x: x * x, ) procedure_class_power = ProcedureClassBasic( signature='pow', docstring='power operator', procedure_type=ProcedureBinaryOperator, native_function=lambda x, y: x ** y, ) # comparision procedure classes --------------------------- procedure_class_equal = ProcedureClassBasic( signature='eq', docstring='equal', procedure_type=ProcedureComparator, native_function=lambda x, y: x == y, ) procedure_class_not_equal = ProcedureClassBasic( signature='ne', docstring='not equal', procedure_type=ProcedureComparator, native_function=lambda x, y: x != y, ) procedure_class_less_than = ProcedureClassBasic( signature='lt', docstring='less than', procedure_type=ProcedureComparator, native_function=lambda x, y: x < y, ) procedure_class_less_than_or_equal = ProcedureClassBasic( signature='lte', docstring='less than or equal', procedure_type=ProcedureComparator, native_function=lambda x, y: x <= y, ) procedure_class_greater_than = ProcedureClassBasic( signature='gt', docstring='greater than', procedure_type=ProcedureComparator, native_function=lambda x, y: x > y, ) procedure_class_greater_than_or_equal = ProcedureClassBasic( signature='gte', docstring='greater than or equal', procedure_type=ProcedureComparator, native_function=lambda x, y: x >= y, ) # probe class -------------------------------------------- procedure_class_probe = ProcedureClassBasic( signature='probe', docstring='probe', procedure_type=ProcedureProbe, ) # data class cast ----------------------------------------- procedure_class_cast_2_bool = ProcedureClassBasic( signature='castToBool', docstring='cast to bool', procedure_type=ProcedureCast, native_function=lambda x: bool(x), ) procedure_class_cast_2_int = ProcedureClassBasic( signature='castToInt', docstring='cast to int', procedure_type=ProcedureCast, native_function=lambda x: int(x), ) procedure_class_cast_2_float = ProcedureClassBasic( signature='castToFloat', docstring='cast to float', procedure_type=ProcedureCast, native_function=lambda x: float(x), ) # data flow control --------------------------------------- procedure_class_diverge = ProcedureClassBasic( signature='diverge2', docstring='diverge 1 branch to 2', procedure_type=ProcedureDiverge2, ) procedure_class_converge = ProcedureClassBasic( signature='converge2', docstring='converge 2 branches to 1', procedure_type=ProcedureConverge2, ) # implement procedure class factory ----------------------- class ProcedureFactory(IProcedureFactory): """ basic procedure class factory """
[ 6738, 450, 20295, 13, 3849, 32186, 1330, 357, 198, 220, 220, 220, 314, 2964, 771, 495, 11, 198, 220, 220, 220, 314, 2964, 771, 495, 9487, 11, 198, 220, 220, 220, 314, 2964, 771, 495, 22810, 11, 198, 220, 220, 220, 314, 2964, 771, 495, 6601, 11, 198, 220, 220, 220, 314, 2964, 771, 495, 11280, 11, 198, 8, 198, 6738, 764, 1676, 771, 495, 62, 73, 1563, 62, 35487, 1330, 357, 198, 220, 220, 220, 6466, 62, 12102, 378, 11, 198, 220, 220, 220, 6466, 62, 5143, 11, 198, 8, 628, 628, 628, 198, 220, 220, 220, 1303, 6868, 62, 8818, 796, 9037, 24396, 7, 50033, 2124, 11, 331, 25, 2124, 8, 628, 628, 628, 198, 198, 2, 24185, 8771, 1398, 34400, 26171, 198, 1676, 771, 495, 62, 4871, 62, 785, 1930, 578, 796, 34997, 9487, 5377, 1930, 578, 3419, 198, 198, 2, 20512, 8771, 6097, 20368, 438, 198, 1676, 771, 495, 62, 4871, 62, 1662, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 1662, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 6404, 291, 407, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 3118, 560, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 407, 2124, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 392, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 392, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 6404, 291, 290, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 290, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 273, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 273, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 6404, 291, 393, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 393, 331, 11, 198, 8, 198, 198, 2, 17952, 8771, 6097, 220, 22369, 6329, 198, 1676, 771, 495, 62, 4871, 62, 710, 10494, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 12480, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 710, 10494, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 3118, 560, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 407, 2124, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 2860, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 2860, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 2860, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 1343, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 7266, 83, 974, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 7266, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 7266, 83, 974, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 532, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 16680, 541, 306, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 76, 377, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 16680, 541, 306, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 1635, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 7146, 485, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 7146, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 7146, 485, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 1220, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 4666, 43348, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 4666, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 4666, 43348, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 4064, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 4666, 62, 7146, 485, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 4666, 24095, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 4666, 43348, 14083, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 3373, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 23415, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 31166, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 23415, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 3118, 560, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 2124, 1635, 2124, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 6477, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 79, 322, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 6477, 10088, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 33, 3219, 18843, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 12429, 331, 11, 198, 8, 198, 198, 2, 4616, 1166, 8771, 6097, 220, 22369, 6329, 198, 1676, 771, 495, 62, 4871, 62, 40496, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 27363, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 40496, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 6624, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 1662, 62, 40496, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 710, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 1662, 4961, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 14512, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 1203, 62, 14813, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 2528, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 1203, 621, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 1279, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 1203, 62, 14813, 62, 273, 62, 40496, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 75, 660, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 1203, 621, 393, 4961, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 19841, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 18223, 263, 62, 14813, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 13655, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 18223, 263, 621, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 1875, 331, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 18223, 263, 62, 14813, 62, 273, 62, 40496, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 70, 660, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 18223, 263, 621, 393, 4961, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 50249, 1352, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 11, 331, 25, 2124, 18189, 331, 11, 198, 8, 198, 198, 2, 12774, 1398, 20368, 10541, 198, 1676, 771, 495, 62, 4871, 62, 1676, 1350, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 1676, 1350, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 1676, 1350, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 2964, 1350, 11, 198, 8, 198, 198, 2, 1366, 1398, 3350, 20368, 45537, 198, 1676, 771, 495, 62, 4871, 62, 2701, 62, 17, 62, 30388, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 2701, 2514, 33, 970, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 2701, 284, 20512, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 19248, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 20512, 7, 87, 828, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 2701, 62, 17, 62, 600, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 2701, 2514, 5317, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 2701, 284, 493, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 19248, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 493, 7, 87, 828, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 2701, 62, 17, 62, 22468, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 2701, 2514, 43879, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 2701, 284, 12178, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 19248, 11, 198, 220, 220, 220, 6868, 62, 8818, 28, 50033, 2124, 25, 12178, 7, 87, 828, 198, 8, 198, 198, 2, 1366, 5202, 1630, 20368, 26866, 198, 1676, 771, 495, 62, 4871, 62, 67, 1428, 469, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 67, 1428, 469, 17, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 67, 1428, 469, 352, 8478, 284, 362, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 35, 1428, 469, 17, 11, 198, 8, 198, 1676, 771, 495, 62, 4871, 62, 1102, 332, 469, 796, 34997, 9487, 26416, 7, 198, 220, 220, 220, 9877, 11639, 1102, 332, 469, 17, 3256, 198, 220, 220, 220, 2205, 8841, 11639, 1102, 332, 469, 362, 13737, 284, 352, 3256, 198, 220, 220, 220, 8771, 62, 4906, 28, 2964, 771, 495, 3103, 332, 469, 17, 11, 198, 8, 628, 198, 2, 3494, 8771, 1398, 8860, 41436, 6329, 198, 4871, 34997, 22810, 7, 40, 2964, 771, 495, 22810, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4096, 8771, 1398, 8860, 198, 220, 220, 220, 37227, 198 ]
2.863337
1,822
#!/usr/bin/python # -*- coding: utf-8 -*- # thumbor imaging service # https://github.com/thumbor/thumbor/wiki # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2011 globo.com [email protected] from json import loads from shutil import which from preggy import expect from tornado.testing import gen_test from tests.handlers.test_base_handler import BaseImagingTestCase from thumbor.config import Config from thumbor.context import Context, ServerParameters from thumbor.engines.pil import Engine from thumbor.importer import Importer from thumbor.storages.file_storage import Storage as FileStorage from thumbor.storages.no_storage import Storage as NoStorage # pylint: disable=broad-except,abstract-method,attribute-defined-outside-init,line-too-long,too-many-public-methods # pylint: disable=too-many-lines
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 15683, 273, 19560, 2139, 198, 2, 3740, 1378, 12567, 13, 785, 14, 400, 2178, 273, 14, 400, 2178, 273, 14, 15466, 198, 198, 2, 49962, 739, 262, 17168, 5964, 25, 198, 2, 2638, 1378, 2503, 13, 44813, 1668, 13, 2398, 14, 677, 4541, 14, 2781, 12, 43085, 198, 2, 15069, 357, 66, 8, 2813, 15095, 78, 13, 785, 15683, 273, 31, 2188, 519, 1455, 14459, 13, 785, 198, 198, 6738, 33918, 1330, 15989, 198, 6738, 4423, 346, 1330, 543, 198, 198, 6738, 662, 19970, 1330, 1607, 198, 6738, 33718, 13, 33407, 1330, 2429, 62, 9288, 198, 198, 6738, 5254, 13, 4993, 8116, 13, 9288, 62, 8692, 62, 30281, 1330, 7308, 3546, 3039, 14402, 20448, 198, 6738, 15683, 273, 13, 11250, 1330, 17056, 198, 6738, 15683, 273, 13, 22866, 1330, 30532, 11, 9652, 48944, 198, 6738, 15683, 273, 13, 1516, 1127, 13, 79, 346, 1330, 7117, 198, 6738, 15683, 273, 13, 320, 26634, 1330, 1846, 26634, 198, 6738, 15683, 273, 13, 301, 273, 1095, 13, 7753, 62, 35350, 1330, 20514, 355, 9220, 31425, 198, 6738, 15683, 273, 13, 301, 273, 1095, 13, 3919, 62, 35350, 1330, 20514, 355, 1400, 31425, 198, 198, 2, 279, 2645, 600, 25, 15560, 28, 36654, 12, 16341, 11, 397, 8709, 12, 24396, 11, 42348, 12, 23211, 12, 43435, 12, 15003, 11, 1370, 12, 18820, 12, 6511, 11, 18820, 12, 21834, 12, 11377, 12, 24396, 82, 198, 2, 279, 2645, 600, 25, 15560, 28, 18820, 12, 21834, 12, 6615, 628, 198 ]
3.257463
268
"""empty message Revision ID: 69858d32aaff Revises: 160db434d139 Create Date: 2016-07-20 16:08:00.219265 """ # revision identifiers, used by Alembic. revision = '69858d32aaff' down_revision = '160db434d139' from alembic import op import sqlalchemy as sa
[ 37811, 28920, 3275, 198, 198, 18009, 1166, 4522, 25, 39861, 3365, 67, 2624, 64, 2001, 198, 18009, 2696, 25, 13454, 9945, 47101, 67, 20219, 198, 16447, 7536, 25, 1584, 12, 2998, 12, 1238, 1467, 25, 2919, 25, 405, 13, 28896, 22980, 198, 198, 37811, 198, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 39357, 3365, 67, 2624, 64, 2001, 6, 198, 2902, 62, 260, 10178, 796, 705, 14198, 9945, 47101, 67, 20219, 6, 198, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 628, 198 ]
2.653061
98
from .abstract_dict_writer import AbstractDictWriter from typing import Union, Sequence
[ 6738, 764, 397, 8709, 62, 11600, 62, 16002, 1330, 27741, 35, 713, 34379, 198, 6738, 19720, 1330, 4479, 11, 45835, 628 ]
4.238095
21
import os import time import logging from ....utils.loaders import load_pkl from ....utils.exceptions import TimeLimitExceeded from ......core import args from ......scheduler.reporter import LocalStatusReporter logger = logging.getLogger(__name__) @args() def model_trial(args, reporter: LocalStatusReporter): """ Training script for hyperparameter evaluation of an arbitrary model that subclasses AbstractModel. Notes: - Model object itself must be passed as kwarg: model - All model hyperparameters must be stored in model.params dict that may contain special keys such as: 'seed_value' to ensure reproducibility 'num_threads', 'num_gpus' to set specific resources in model.fit() - model.save() must have return_filename, file_prefix, directory options """ try: model, args, util_args = prepare_inputs(args=args) X_train, y_train = load_pkl.load(util_args.directory + util_args.dataset_train_filename) X_val, y_val = load_pkl.load(util_args.directory + util_args.dataset_val_filename) fit_model_args = dict(X_train=X_train, Y_train=y_train, X_test=X_val, Y_test=y_val) predict_proba_args = dict(X=X_val) model = fit_and_save_model(model=model, params=args, fit_args=fit_model_args, predict_proba_args=predict_proba_args, y_test=y_val, time_start=util_args.time_start, time_limit=util_args.get('time_limit', None), reporter=None) except Exception as e: if not isinstance(e, TimeLimitExceeded): logger.exception(e, exc_info=True) reporter.terminate() else: reporter(epoch=1, validation_performance=model.val_score)
[ 11748, 28686, 198, 11748, 640, 198, 11748, 18931, 198, 198, 6738, 19424, 26791, 13, 2220, 364, 1330, 3440, 62, 79, 41582, 198, 6738, 19424, 26791, 13, 1069, 11755, 1330, 3862, 39184, 3109, 2707, 276, 198, 6738, 47082, 7295, 1330, 26498, 198, 6738, 47082, 1416, 704, 18173, 13, 260, 26634, 1330, 10714, 19580, 6207, 4337, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 31, 22046, 3419, 198, 4299, 2746, 62, 45994, 7, 22046, 11, 9095, 25, 10714, 19580, 6207, 4337, 2599, 198, 220, 220, 220, 37227, 13614, 4226, 329, 8718, 17143, 2357, 12660, 286, 281, 14977, 2746, 326, 850, 37724, 27741, 17633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 11822, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9104, 2134, 2346, 1276, 307, 3804, 355, 479, 86, 853, 25, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1439, 2746, 8718, 17143, 7307, 1276, 307, 8574, 287, 2746, 13, 37266, 8633, 326, 743, 3994, 2041, 8251, 884, 355, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28826, 62, 8367, 6, 284, 4155, 8186, 66, 2247, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22510, 62, 16663, 82, 3256, 705, 22510, 62, 31197, 385, 6, 284, 900, 2176, 4133, 287, 2746, 13, 11147, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2746, 13, 21928, 3419, 1276, 423, 1441, 62, 34345, 11, 2393, 62, 40290, 11, 8619, 3689, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 11, 26498, 11, 7736, 62, 22046, 796, 8335, 62, 15414, 82, 7, 22046, 28, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 27432, 11, 331, 62, 27432, 796, 3440, 62, 79, 41582, 13, 2220, 7, 22602, 62, 22046, 13, 34945, 1343, 7736, 62, 22046, 13, 19608, 292, 316, 62, 27432, 62, 34345, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 2100, 11, 331, 62, 2100, 796, 3440, 62, 79, 41582, 13, 2220, 7, 22602, 62, 22046, 13, 34945, 1343, 7736, 62, 22046, 13, 19608, 292, 316, 62, 2100, 62, 34345, 8, 628, 220, 220, 220, 220, 220, 220, 220, 4197, 62, 19849, 62, 22046, 796, 8633, 7, 55, 62, 27432, 28, 55, 62, 27432, 11, 575, 62, 27432, 28, 88, 62, 27432, 11, 1395, 62, 9288, 28, 55, 62, 2100, 11, 575, 62, 9288, 28, 88, 62, 2100, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4331, 62, 1676, 7012, 62, 22046, 796, 8633, 7, 55, 28, 55, 62, 2100, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 4197, 62, 392, 62, 21928, 62, 19849, 7, 19849, 28, 19849, 11, 42287, 28, 22046, 11, 4197, 62, 22046, 28, 11147, 62, 19849, 62, 22046, 11, 4331, 62, 1676, 7012, 62, 22046, 28, 79, 17407, 62, 1676, 7012, 62, 22046, 11, 331, 62, 9288, 28, 88, 62, 2100, 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, 640, 62, 9688, 28, 22602, 62, 22046, 13, 2435, 62, 9688, 11, 640, 62, 32374, 28, 22602, 62, 22046, 13, 1136, 10786, 2435, 62, 32374, 3256, 6045, 828, 9095, 28, 14202, 8, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 68, 11, 3862, 39184, 3109, 2707, 276, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 1069, 4516, 7, 68, 11, 2859, 62, 10951, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 9095, 13, 23705, 378, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9095, 7, 538, 5374, 28, 16, 11, 21201, 62, 26585, 28, 19849, 13, 2100, 62, 26675, 8, 628, 198 ]
2.507891
697
from typing import Optional from aioftx.session import FTXClientSession from .schemas import ( FundingPayment, GetFundingPaymentsRequest, GetFundingPaymentsResponse, ) async def get_funding_payments( session: FTXClientSession, *, future: Optional[str] = None, start_time: Optional[int] = None, end_time: Optional[int] = None, ) -> list[FundingPayment]: """ Get the funding payments from the FTX API """ request = GetFundingPaymentsRequest( future=future, start_time=start_time, end_time=end_time, ) async with session.get(request.url) as resp: data = await resp.json() return GetFundingPaymentsResponse(**data).data()
[ 6738, 19720, 1330, 32233, 198, 198, 6738, 257, 952, 701, 87, 13, 29891, 1330, 19446, 55, 11792, 36044, 198, 198, 6738, 764, 1416, 4411, 292, 1330, 357, 198, 220, 220, 220, 35249, 19197, 434, 11, 198, 220, 220, 220, 3497, 24553, 278, 19197, 902, 18453, 11, 198, 220, 220, 220, 3497, 24553, 278, 19197, 902, 31077, 11, 198, 8, 628, 198, 292, 13361, 825, 651, 62, 25032, 62, 15577, 902, 7, 198, 220, 220, 220, 6246, 25, 19446, 55, 11792, 36044, 11, 198, 220, 220, 220, 1635, 11, 198, 220, 220, 220, 2003, 25, 32233, 58, 2536, 60, 796, 6045, 11, 198, 220, 220, 220, 923, 62, 2435, 25, 32233, 58, 600, 60, 796, 6045, 11, 198, 220, 220, 220, 886, 62, 2435, 25, 32233, 58, 600, 60, 796, 6045, 11, 198, 8, 4613, 1351, 58, 24553, 278, 19197, 434, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3497, 262, 4918, 7524, 422, 262, 19446, 55, 7824, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2581, 796, 3497, 24553, 278, 19197, 902, 18453, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2003, 28, 37443, 11, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 2435, 28, 9688, 62, 2435, 11, 198, 220, 220, 220, 220, 220, 220, 220, 886, 62, 2435, 28, 437, 62, 2435, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30351, 351, 6246, 13, 1136, 7, 25927, 13, 6371, 8, 355, 1217, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 25507, 1217, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 3497, 24553, 278, 19197, 902, 31077, 7, 1174, 7890, 737, 7890, 3419, 198 ]
2.564286
280
import os import getpass from pathlib import Path from argparse import ArgumentParser from pyonepassword import OP, OPServerItem if __name__ == "__main__": main()
[ 11748, 28686, 198, 11748, 651, 6603, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 1822, 29572, 1330, 45751, 46677, 198, 6738, 12972, 505, 28712, 1330, 13349, 11, 40490, 18497, 7449, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
3.372549
51
import uuid import msgpack import redis
[ 11748, 334, 27112, 198, 11748, 31456, 8002, 198, 11748, 2266, 271, 198 ]
3.333333
12
#Dependencies from array import array from operator import mod from statistics import mode from unicodedata import name import praw import os from datetime import datetime import time from prawcore.exceptions import NotFound import json from dotenv import load_dotenv import scraper as scrape load_dotenv("./.env") CLIENT_ID = os.getenv("CLIENT_ID") CLIENT_SECRET = os.getenv("CLIENT_SECRET") PASSWORD = os.getenv("PASS") USER_AGENT = os.getenv("USER_AGENT") USERNAME = os.getenv("USERNAME") abs_path = os.path.abspath(__file__) dir_name = os.path.dirname(abs_path) os.chdir(dir_name) if __name__ == '__main__': reddit = praw.Reddit( #instance of praw reddit for API access client_id = CLIENT_ID, client_secret = CLIENT_SECRET, password = PASSWORD, user_agent = USER_AGENT, username = USERNAME, ) reddit.read_only = True; print() user_name = GetUsernameInput(reddit) print() with open("scraper_output.json", mode='w') as outfile: json.dump([], outfile, indent=2) user_as_redditor = reddit.redditor(user_name) user_info = UserInfo() user_comments_list = list(user_as_redditor.comments.new(limit=99)).copy() #Limited to 100 historical submissions by Reddit API user_submissions_list = list(user_as_redditor.submissions.new(limit=99)).copy() #Limited to 100 historical submissions by Reddit API if user_info.IsSuspended(): #todo issuspended status needs to be updated accurately prior print("User is shadowbanned - only contains name and is_suspended attributes") else: user_info.SetBasicInfo() user_info.PrintBasicInfo() user_info.ConvertBasicInfoToTxt() u1 = TopFiveVotedSubmissionsData() u1.FindFiveMostVotedSubmissions(user_submissions_list) u1.PrintFiveMostVotedSubmissions() u1.ConvertFiveMostVotedSubmissionsToTxt() u2 = TopFiveVotedCommentsData() u2.FindFiveMostVotedComments(user_comments_list) u2.PrintFiveMostVotedComments() u2.ConvertFiveMostVotedCommentsToTxt() u3 = VoteDistribution() u3.FindVoteDistribution(user_comments_list, user_submissions_list) u3.PrintVoteDistribution() u3.ConvertVoteDistributionToTxt() u4 = MostActiveSubs() u4.FindMostActive(user_comments_list, user_submissions_list) u4.PrintActiveSubs() u4.ConvertActiveSubsToTxt() #test json reader '''print("") temp = GetUserFromJson("scraper_output.json") temp["UserInfo"].PrintBasicInfo() temp["FiveMostVotedSubmissions"].PrintFiveMostVotedSubmissions() temp["FiveMostVotedComments"].PrintFiveMostVotedComments() temp["VoteDistribution"].PrintVoteDistribution() temp["MostActiveSubreddits"].PrintActiveSubs()''' print("")
[ 2, 35, 2690, 3976, 198, 6738, 7177, 1330, 7177, 198, 6738, 10088, 1330, 953, 198, 6738, 7869, 1330, 4235, 198, 6738, 28000, 9043, 1045, 1330, 1438, 198, 11748, 279, 1831, 198, 11748, 28686, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 11748, 640, 198, 6738, 279, 1831, 7295, 13, 1069, 11755, 1330, 1892, 21077, 198, 11748, 33918, 198, 198, 6738, 16605, 24330, 1330, 3440, 62, 26518, 24330, 198, 11748, 19320, 525, 355, 42778, 198, 198, 2220, 62, 26518, 24330, 7, 1911, 11757, 24330, 4943, 198, 5097, 28495, 62, 2389, 796, 28686, 13, 1136, 24330, 7203, 5097, 28495, 62, 2389, 4943, 198, 5097, 28495, 62, 23683, 26087, 796, 28686, 13, 1136, 24330, 7203, 5097, 28495, 62, 23683, 26087, 4943, 198, 47924, 54, 12532, 796, 28686, 13, 1136, 24330, 7203, 47924, 4943, 198, 29904, 62, 4760, 3525, 796, 28686, 13, 1136, 24330, 7203, 29904, 62, 4760, 3525, 4943, 198, 29904, 20608, 796, 28686, 13, 1136, 24330, 7203, 29904, 20608, 4943, 198, 198, 8937, 62, 6978, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 8, 198, 15908, 62, 3672, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 8937, 62, 6978, 8, 198, 418, 13, 354, 15908, 7, 15908, 62, 3672, 8, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 220, 198, 220, 220, 220, 18374, 796, 279, 1831, 13, 22367, 7, 1303, 39098, 286, 279, 1831, 18374, 329, 7824, 1895, 198, 220, 220, 220, 5456, 62, 312, 796, 45148, 62, 2389, 11, 198, 220, 220, 220, 5456, 62, 21078, 796, 45148, 62, 23683, 26087, 11, 198, 220, 220, 220, 9206, 796, 41752, 54, 12532, 11, 198, 220, 220, 220, 2836, 62, 25781, 796, 1294, 1137, 62, 4760, 3525, 11, 198, 220, 220, 220, 20579, 796, 1294, 1137, 20608, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 18374, 13, 961, 62, 8807, 796, 6407, 26, 198, 220, 220, 220, 220, 198, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 2836, 62, 3672, 796, 3497, 5842, 13292, 20560, 7, 10748, 8, 198, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 351, 1280, 7203, 1416, 38545, 62, 22915, 13, 17752, 1600, 4235, 11639, 86, 11537, 355, 503, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 13, 39455, 26933, 4357, 503, 7753, 11, 33793, 28, 17, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2836, 62, 292, 62, 26504, 2072, 796, 18374, 13, 26504, 2072, 7, 7220, 62, 3672, 8, 198, 220, 220, 220, 2836, 62, 10951, 796, 11787, 12360, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2836, 62, 15944, 62, 4868, 796, 1351, 7, 7220, 62, 292, 62, 26504, 2072, 13, 15944, 13, 3605, 7, 32374, 28, 2079, 29720, 30073, 3419, 1303, 37214, 284, 1802, 6754, 22129, 416, 10750, 7824, 198, 220, 220, 220, 2836, 62, 7266, 8481, 62, 4868, 796, 1351, 7, 7220, 62, 292, 62, 26504, 2072, 13, 7266, 8481, 13, 3605, 7, 32374, 28, 2079, 29720, 30073, 3419, 1303, 37214, 284, 1802, 6754, 22129, 416, 10750, 7824, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 2836, 62, 10951, 13, 3792, 50, 17723, 1631, 33529, 1303, 83, 24313, 1189, 17723, 1631, 3722, 2476, 284, 307, 6153, 14351, 3161, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 12982, 318, 9082, 65, 3577, 532, 691, 4909, 1438, 290, 318, 62, 40409, 1631, 12608, 4943, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 10951, 13, 7248, 26416, 12360, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 10951, 13, 18557, 26416, 12360, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 10951, 13, 3103, 1851, 26416, 12360, 2514, 51, 742, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 334, 16, 796, 5849, 20029, 53, 5191, 7004, 8481, 6601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 16, 13, 16742, 20029, 6943, 53, 5191, 7004, 8481, 7, 7220, 62, 7266, 8481, 62, 4868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 334, 16, 13, 18557, 20029, 6943, 53, 5191, 7004, 8481, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 16, 13, 3103, 1851, 20029, 6943, 53, 5191, 7004, 8481, 2514, 51, 742, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 334, 17, 796, 5849, 20029, 53, 5191, 23903, 6601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 17, 13, 16742, 20029, 6943, 53, 5191, 23903, 7, 7220, 62, 15944, 62, 4868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 334, 17, 13, 18557, 20029, 6943, 53, 5191, 23903, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 17, 13, 3103, 1851, 20029, 6943, 53, 5191, 23903, 2514, 51, 742, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 334, 18, 796, 19175, 20344, 3890, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 18, 13, 16742, 37394, 20344, 3890, 7, 7220, 62, 15944, 62, 4868, 11, 2836, 62, 7266, 8481, 62, 4868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 334, 18, 13, 18557, 37394, 20344, 3890, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 18, 13, 3103, 1851, 37394, 20344, 3890, 2514, 51, 742, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 334, 19, 796, 4042, 13739, 7004, 82, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 19, 13, 16742, 6943, 13739, 7, 7220, 62, 15944, 62, 4868, 11, 2836, 62, 7266, 8481, 62, 4868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 334, 19, 13, 18557, 13739, 7004, 82, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 334, 19, 13, 3103, 1851, 13739, 7004, 82, 2514, 51, 742, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9288, 33918, 9173, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 4798, 7203, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 796, 3497, 12982, 4863, 41, 1559, 7203, 1416, 38545, 62, 22915, 13, 17752, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 14692, 12982, 12360, 1, 4083, 18557, 26416, 12360, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 14692, 20029, 6943, 53, 5191, 7004, 8481, 1, 4083, 18557, 20029, 6943, 53, 5191, 7004, 8481, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 14692, 20029, 6943, 53, 5191, 23903, 1, 4083, 18557, 20029, 6943, 53, 5191, 23903, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 14692, 37394, 20344, 3890, 1, 4083, 18557, 37394, 20344, 3890, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 14692, 6943, 13739, 7004, 36581, 1, 4083, 18557, 13739, 7004, 82, 3419, 7061, 6, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 4943 ]
2.457555
1,178
from flask_wtf import FlaskForm from wtforms import StringField, SelectField, SubmitField from wtforms.validators import DataRequired from .models import AccountType
[ 6738, 42903, 62, 86, 27110, 1330, 46947, 8479, 198, 6738, 266, 83, 23914, 1330, 10903, 15878, 11, 9683, 15878, 11, 39900, 15878, 198, 6738, 266, 83, 23914, 13, 12102, 2024, 1330, 6060, 37374, 198, 6738, 764, 27530, 1330, 10781, 6030, 198 ]
4.04878
41
import logging from datetime import datetime from functools import wraps LOGGER = logging.getLogger(__name__)
[ 11748, 18931, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 1257, 310, 10141, 1330, 27521, 198, 198, 25294, 30373, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628 ]
3.5
32
#!/usr/bin/python import sys import struct import numpy as np matrix = [] with open('dataset/glove.840B.300d.txt', 'r') as inf: with open('dataset/glove.840B.300d.dat', 'wb') as ouf: counter = 0 for line in inf: row = [float(x) for x in line.split()[1:]] assert len(row) == 300 ouf.write(struct.pack('i', len(row))) ouf.write(struct.pack('%sf' % len(row), *row)) counter += 1 matrix.append(np.array(row, dtype=np.float32)) if counter % 10000 == 0: sys.stdout.write('%d points processed...\n' % counter) np.save('dataset/glove.840B.300d', np.array(matrix))
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 25064, 198, 11748, 2878, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6759, 8609, 796, 17635, 198, 4480, 1280, 10786, 19608, 292, 316, 14, 4743, 659, 13, 40675, 33, 13, 6200, 67, 13, 14116, 3256, 705, 81, 11537, 355, 1167, 25, 198, 220, 220, 220, 351, 1280, 10786, 19608, 292, 316, 14, 4743, 659, 13, 40675, 33, 13, 6200, 67, 13, 19608, 3256, 705, 39346, 11537, 355, 267, 3046, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3753, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 1167, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5752, 796, 685, 22468, 7, 87, 8, 329, 2124, 287, 1627, 13, 35312, 3419, 58, 16, 25, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 808, 8, 6624, 5867, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 3046, 13, 13564, 7, 7249, 13, 8002, 10786, 72, 3256, 18896, 7, 808, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 3046, 13, 13564, 7, 7249, 13, 8002, 10786, 4, 28202, 6, 4064, 18896, 7, 808, 828, 1635, 808, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3753, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17593, 13, 33295, 7, 37659, 13, 18747, 7, 808, 11, 288, 4906, 28, 37659, 13, 22468, 2624, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3753, 4064, 33028, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 13564, 10786, 4, 67, 2173, 13686, 986, 59, 77, 6, 4064, 3753, 8, 198, 37659, 13, 21928, 10786, 19608, 292, 316, 14, 4743, 659, 13, 40675, 33, 13, 6200, 67, 3256, 45941, 13, 18747, 7, 6759, 8609, 4008, 198 ]
2.017857
336
# -*- coding: utf-8 -*- from builtins import object import re from numbers import Integral from collections import namedtuple __all__ = ["countries"] try: str except NameError: str = str Country = namedtuple('Country', 'name alpha2 alpha3 numeric apolitical_name') _records = [ Country(u"Afghanistan", "AF", "AFG", "004", u"Afghanistan"), Country(u"Åland Islands", "AX", "ALA", "248", u"Åland Islands"), Country(u"Albania", "AL", "ALB", "008", u"Albania"), Country(u"Algeria", "DZ", "DZA", "012", u"Algeria"), Country(u"American Samoa", "AS", "ASM", "016", u"American Samoa"), Country(u"Andorra", "AD", "AND", "020", u"Andorra"), Country(u"Angola", "AO", "AGO", "024", u"Angola"), Country(u"Anguilla", "AI", "AIA", "660", u"Anguilla"), Country(u"Antarctica", "AQ", "ATA", "010", u"Antarctica"), Country(u"Antigua and Barbuda", "AG", "ATG", "028", u"Antigua and Barbuda"), Country(u"Argentina", "AR", "ARG", "032", u"Argentina"), Country(u"Armenia", "AM", "ARM", "051", u"Armenia"), Country(u"Aruba", "AW", "ABW", "533", u"Aruba"), Country(u"Australia", "AU", "AUS", "036", u"Australia"), Country(u"Austria", "AT", "AUT", "040", u"Austria"), Country(u"Azerbaijan", "AZ", "AZE", "031", u"Azerbaijan"), Country(u"Bahamas", "BS", "BHS", "044", u"Bahamas"), Country(u"Bahrain", "BH", "BHR", "048", u"Bahrain"), Country(u"Bangladesh", "BD", "BGD", "050", u"Bangladesh"), Country(u"Barbados", "BB", "BRB", "052", u"Barbados"), Country(u"Belarus", "BY", "BLR", "112", u"Belarus"), Country(u"Belgium", "BE", "BEL", "056", u"Belgium"), Country(u"Belize", "BZ", "BLZ", "084", u"Belize"), Country(u"Benin", "BJ", "BEN", "204", u"Benin"), Country(u"Bermuda", "BM", "BMU", "060", u"Bermuda"), Country(u"Bhutan", "BT", "BTN", "064", u"Bhutan"), Country(u"Bolivia, Plurinational State of", "BO", "BOL", "068", u"Bolivia, Plurinational State of"), Country(u"Bonaire, Sint Eustatius and Saba", "BQ", "BES", "535", u"Bonaire, Sint Eustatius and Saba"), Country(u"Bosnia and Herzegovina", "BA", "BIH", "070", u"Bosnia and Herzegovina"), Country(u"Botswana", "BW", "BWA", "072", u"Botswana"), Country(u"Bouvet Island", "BV", "BVT", "074", u"Bouvet Island"), Country(u"Brazil", "BR", "BRA", "076", u"Brazil"), Country(u"British Indian Ocean Territory", "IO", "IOT", "086", u"British Indian Ocean Territory"), Country(u"Brunei Darussalam", "BN", "BRN", "096", u"Brunei Darussalam"), Country(u"Bulgaria", "BG", "BGR", "100", u"Bulgaria"), Country(u"Burkina Faso", "BF", "BFA", "854", u"Burkina Faso"), Country(u"Burundi", "BI", "BDI", "108", u"Burundi"), Country(u"Cambodia", "KH", "KHM", "116", u"Cambodia"), Country(u"Cameroon", "CM", "CMR", "120", u"Cameroon"), Country(u"Canada", "CA", "CAN", "124", u"Canada"), Country(u"Cabo Verde", "CV", "CPV", "132", u"Cabo Verde"), Country(u"Cayman Islands", "KY", "CYM", "136", u"Cayman Islands"), Country(u"Central African Republic", "CF", "CAF", "140", u"Central African Republic"), Country(u"Chad", "TD", "TCD", "148", u"Chad"), Country(u"Chile", "CL", "CHL", "152", u"Chile"), Country(u"China", "CN", "CHN", "156", u"China"), Country(u"Christmas Island", "CX", "CXR", "162", u"Christmas Island"), Country(u"Cocos (Keeling) Islands", "CC", "CCK", "166", u"Cocos (Keeling) Islands"), Country(u"Colombia", "CO", "COL", "170", u"Colombia"), Country(u"Comoros", "KM", "COM", "174", u"Comoros"), Country(u"Congo", "CG", "COG", "178", u"Congo"), Country(u"Congo, Democratic Republic of the", "CD", "COD", "180", u"Congo, Democratic Republic of the"), Country(u"Cook Islands", "CK", "COK", "184", u"Cook Islands"), Country(u"Costa Rica", "CR", "CRI", "188", u"Costa Rica"), Country(u"Côte d'Ivoire", "CI", "CIV", "384", u"Côte d'Ivoire"), Country(u"Croatia", "HR", "HRV", "191", u"Croatia"), Country(u"Cuba", "CU", "CUB", "192", u"Cuba"), Country(u"Curaçao", "CW", "CUW", "531", u"Curaçao"), Country(u"Cyprus", "CY", "CYP", "196", u"Cyprus"), Country(u"Czechia", "CZ", "CZE", "203", u"Czechia"), Country(u"Denmark", "DK", "DNK", "208", u"Denmark"), Country(u"Djibouti", "DJ", "DJI", "262", u"Djibouti"), Country(u"Dominica", "DM", "DMA", "212", u"Dominica"), Country(u"Dominican Republic", "DO", "DOM", "214", u"Dominican Republic"), Country(u"Ecuador", "EC", "ECU", "218", u"Ecuador"), Country(u"Egypt", "EG", "EGY", "818", u"Egypt"), Country(u"El Salvador", "SV", "SLV", "222", u"El Salvador"), Country(u"Equatorial Guinea", "GQ", "GNQ", "226", u"Equatorial Guinea"), Country(u"Eritrea", "ER", "ERI", "232", u"Eritrea"), Country(u"Estonia", "EE", "EST", "233", u"Estonia"), Country(u"Ethiopia", "ET", "ETH", "231", u"Ethiopia"), Country(u"Falkland Islands (Malvinas)", "FK", "FLK", "238", u"Falkland Islands (Malvinas)"), Country(u"Faroe Islands", "FO", "FRO", "234", u"Faroe Islands"), Country(u"Fiji", "FJ", "FJI", "242", u"Fiji"), Country(u"Finland", "FI", "FIN", "246", u"Finland"), Country(u"France", "FR", "FRA", "250", u"France"), Country(u"French Guiana", "GF", "GUF", "254", u"French Guiana"), Country(u"French Polynesia", "PF", "PYF", "258", u"French Polynesia"), Country(u"French Southern Territories", "TF", "ATF", "260", u"French Southern Territories"), Country(u"Gabon", "GA", "GAB", "266", u"Gabon"), Country(u"Gambia", "GM", "GMB", "270", u"Gambia"), Country(u"Georgia", "GE", "GEO", "268", u"Georgia"), Country(u"Germany", "DE", "DEU", "276", u"Germany"), Country(u"Ghana", "GH", "GHA", "288", u"Ghana"), Country(u"Gibraltar", "GI", "GIB", "292", u"Gibraltar"), Country(u"Greece", "GR", "GRC", "300", u"Greece"), Country(u"Greenland", "GL", "GRL", "304", u"Greenland"), Country(u"Grenada", "GD", "GRD", "308", u"Grenada"), Country(u"Guadeloupe", "GP", "GLP", "312", u"Guadeloupe"), Country(u"Guam", "GU", "GUM", "316", u"Guam"), Country(u"Guatemala", "GT", "GTM", "320", u"Guatemala"), Country(u"Guernsey", "GG", "GGY", "831", u"Guernsey"), Country(u"Guinea", "GN", "GIN", "324", u"Guinea"), Country(u"Guinea-Bissau", "GW", "GNB", "624", u"Guinea-Bissau"), Country(u"Guyana", "GY", "GUY", "328", u"Guyana"), Country(u"Haiti", "HT", "HTI", "332", u"Haiti"), Country(u"Heard Island and McDonald Islands", "HM", "HMD", "334", u"Heard Island and McDonald Islands"), Country(u"Holy See", "VA", "VAT", "336", u"Holy See"), Country(u"Honduras", "HN", "HND", "340", u"Honduras"), Country(u"Hong Kong", "HK", "HKG", "344", u"Hong Kong"), Country(u"Hungary", "HU", "HUN", "348", u"Hungary"), Country(u"Iceland", "IS", "ISL", "352", u"Iceland"), Country(u"India", "IN", "IND", "356", u"India"), Country(u"Indonesia", "ID", "IDN", "360", u"Indonesia"), Country(u"Iran, Islamic Republic of", "IR", "IRN", "364", u"Iran, Islamic Republic of"), Country(u"Iraq", "IQ", "IRQ", "368", u"Iraq"), Country(u"Ireland", "IE", "IRL", "372", u"Ireland"), Country(u"Isle of Man", "IM", "IMN", "833", u"Isle of Man"), Country(u"Israel", "IL", "ISR", "376", u"Israel"), Country(u"Italy", "IT", "ITA", "380", u"Italy"), Country(u"Jamaica", "JM", "JAM", "388", u"Jamaica"), Country(u"Japan", "JP", "JPN", "392", u"Japan"), Country(u"Jersey", "JE", "JEY", "832", u"Jersey"), Country(u"Jordan", "JO", "JOR", "400", u"Jordan"), Country(u"Kazakhstan", "KZ", "KAZ", "398", u"Kazakhstan"), Country(u"Kenya", "KE", "KEN", "404", u"Kenya"), Country(u"Kiribati", "KI", "KIR", "296", u"Kiribati"), Country(u"Korea, Democratic People's Republic of", "KP", "PRK", "408", u"Korea, Democratic People's Republic of"), Country(u"Korea, Republic of", "KR", "KOR", "410", u"Korea, Republic of"), Country(u"Kuwait", "KW", "KWT", "414", u"Kuwait"), Country(u"Kyrgyzstan", "KG", "KGZ", "417", u"Kyrgyzstan"), Country(u"Lao People's Democratic Republic", "LA", "LAO", "418", u"Lao People's Democratic Republic"), Country(u"Latvia", "LV", "LVA", "428", u"Latvia"), Country(u"Lebanon", "LB", "LBN", "422", u"Lebanon"), Country(u"Lesotho", "LS", "LSO", "426", u"Lesotho"), Country(u"Liberia", "LR", "LBR", "430", u"Liberia"), Country(u"Libya", "LY", "LBY", "434", u"Libya"), Country(u"Liechtenstein", "LI", "LIE", "438", u"Liechtenstein"), Country(u"Lithuania", "LT", "LTU", "440", u"Lithuania"), Country(u"Luxembourg", "LU", "LUX", "442", u"Luxembourg"), Country(u"Macao", "MO", "MAC", "446", u"Macao"), Country(u"Macedonia, the former Yugoslav Republic of", "MK", "MKD", "807", u"Macedonia, the former Yugoslav Republic of"), Country(u"Madagascar", "MG", "MDG", "450", u"Madagascar"), Country(u"Malawi", "MW", "MWI", "454", u"Malawi"), Country(u"Malaysia", "MY", "MYS", "458", u"Malaysia"), Country(u"Maldives", "MV", "MDV", "462", u"Maldives"), Country(u"Mali", "ML", "MLI", "466", u"Mali"), Country(u"Malta", "MT", "MLT", "470", u"Malta"), Country(u"Marshall Islands", "MH", "MHL", "584", u"Marshall Islands"), Country(u"Martinique", "MQ", "MTQ", "474", u"Martinique"), Country(u"Mauritania", "MR", "MRT", "478", u"Mauritania"), Country(u"Mauritius", "MU", "MUS", "480", u"Mauritius"), Country(u"Mayotte", "YT", "MYT", "175", u"Mayotte"), Country(u"Mexico", "MX", "MEX", "484", u"Mexico"), Country(u"Micronesia, Federated States of", "FM", "FSM", "583", u"Micronesia, Federated States of"), Country(u"Moldova, Republic of", "MD", "MDA", "498", u"Moldova, Republic of"), Country(u"Monaco", "MC", "MCO", "492", u"Monaco"), Country(u"Mongolia", "MN", "MNG", "496", u"Mongolia"), Country(u"Montenegro", "ME", "MNE", "499", u"Montenegro"), Country(u"Montserrat", "MS", "MSR", "500", u"Montserrat"), Country(u"Morocco", "MA", "MAR", "504", u"Morocco"), Country(u"Mozambique", "MZ", "MOZ", "508", u"Mozambique"), Country(u"Myanmar", "MM", "MMR", "104", u"Myanmar"), Country(u"Namibia", "NA", "NAM", "516", u"Namibia"), Country(u"Nauru", "NR", "NRU", "520", u"Nauru"), Country(u"Nepal", "NP", "NPL", "524", u"Nepal"), Country(u"Netherlands", "NL", "NLD", "528", u"Netherlands"), Country(u"New Caledonia", "NC", "NCL", "540", u"New Caledonia"), Country(u"New Zealand", "NZ", "NZL", "554", u"New Zealand"), Country(u"Nicaragua", "NI", "NIC", "558", u"Nicaragua"), Country(u"Niger", "NE", "NER", "562", u"Niger"), Country(u"Nigeria", "NG", "NGA", "566", u"Nigeria"), Country(u"Niue", "NU", "NIU", "570", u"Niue"), Country(u"Norfolk Island", "NF", "NFK", "574", u"Norfolk Island"), Country(u"Northern Mariana Islands", "MP", "MNP", "580", u"Northern Mariana Islands"), Country(u"Norway", "NO", "NOR", "578", u"Norway"), Country(u"Oman", "OM", "OMN", "512", u"Oman"), Country(u"Pakistan", "PK", "PAK", "586", u"Pakistan"), Country(u"Palau", "PW", "PLW", "585", u"Palau"), Country(u"Palestine, State of", "PS", "PSE", "275", u"Palestine"), Country(u"Panama", "PA", "PAN", "591", u"Panama"), Country(u"Papua New Guinea", "PG", "PNG", "598", u"Papua New Guinea"), Country(u"Paraguay", "PY", "PRY", "600", u"Paraguay"), Country(u"Peru", "PE", "PER", "604", u"Peru"), Country(u"Philippines", "PH", "PHL", "608", u"Philippines"), Country(u"Pitcairn", "PN", "PCN", "612", u"Pitcairn"), Country(u"Poland", "PL", "POL", "616", u"Poland"), Country(u"Portugal", "PT", "PRT", "620", u"Portugal"), Country(u"Puerto Rico", "PR", "PRI", "630", u"Puerto Rico"), Country(u"Qatar", "QA", "QAT", "634", u"Qatar"), Country(u"Réunion", "RE", "REU", "638", u"Réunion"), Country(u"Romania", "RO", "ROU", "642", u"Romania"), Country(u"Russian Federation", "RU", "RUS", "643", u"Russian Federation"), Country(u"Rwanda", "RW", "RWA", "646", u"Rwanda"), Country(u"Saint Barthélemy", "BL", "BLM", "652", u"Saint Barthélemy"), Country(u"Saint Helena, Ascension and Tristan da Cunha", "SH", "SHN", "654", u"Saint Helena, Ascension and Tristan da Cunha"), Country(u"Saint Kitts and Nevis", "KN", "KNA", "659", u"Saint Kitts and Nevis"), Country(u"Saint Lucia", "LC", "LCA", "662", u"Saint Lucia"), Country(u"Saint Martin (French part)", "MF", "MAF", "663", u"Saint Martin (French part)"), Country(u"Saint Pierre and Miquelon", "PM", "SPM", "666", u"Saint Pierre and Miquelon"), Country(u"Saint Vincent and the Grenadines", "VC", "VCT", "670", u"Saint Vincent and the Grenadines"), Country(u"Samoa", "WS", "WSM", "882", u"Samoa"), Country(u"San Marino", "SM", "SMR", "674", u"San Marino"), Country(u"Sao Tome and Principe", "ST", "STP", "678", u"Sao Tome and Principe"), Country(u"Saudi Arabia", "SA", "SAU", "682", u"Saudi Arabia"), Country(u"Senegal", "SN", "SEN", "686", u"Senegal"), Country(u"Serbia", "RS", "SRB", "688", u"Serbia"), Country(u"Seychelles", "SC", "SYC", "690", u"Seychelles"), Country(u"Sierra Leone", "SL", "SLE", "694", u"Sierra Leone"), Country(u"Singapore", "SG", "SGP", "702", u"Singapore"), Country(u"Sint Maarten (Dutch part)", "SX", "SXM", "534", u"Sint Maarten (Dutch part)"), Country(u"Slovakia", "SK", "SVK", "703", u"Slovakia"), Country(u"Slovenia", "SI", "SVN", "705", u"Slovenia"), Country(u"Solomon Islands", "SB", "SLB", "090", u"Solomon Islands"), Country(u"Somalia", "SO", "SOM", "706", u"Somalia"), Country(u"South Africa", "ZA", "ZAF", "710", u"South Africa"), Country(u"South Georgia and the South Sandwich Islands", "GS", "SGS", "239", u"South Georgia and the South Sandwich Islands",), Country(u"South Sudan", "SS", "SSD", "728", u"South Sudan"), Country(u"Spain", "ES", "ESP", "724", u"Spain"), Country(u"Sri Lanka", "LK", "LKA", "144", u"Sri Lanka"), Country(u"Sudan", "SD", "SDN", "729", u"Sudan"), Country(u"Suriname", "SR", "SUR", "740", u"Suriname"), Country(u"Svalbard and Jan Mayen", "SJ", "SJM", "744", u"Svalbard and Jan Mayen"), Country(u"Swaziland", "SZ", "SWZ", "748", u"Swaziland"), Country(u"Sweden", "SE", "SWE", "752", u"Sweden"), Country(u"Switzerland", "CH", "CHE", "756", u"Switzerland"), Country(u"Syrian Arab Republic", "SY", "SYR", "760", u"Syrian Arab Republic"), Country(u"Taiwan, Province of China", "TW", "TWN", "158", u"Taiwan"), Country(u"Tajikistan", "TJ", "TJK", "762", u"Tajikistan"), Country(u"Tanzania, United Republic of", "TZ", "TZA", "834", u"Tanzania, United Republic of"), Country(u"Thailand", "TH", "THA", "764", u"Thailand"), Country(u"Timor-Leste", "TL", "TLS", "626", u"Timor-Leste"), Country(u"Togo", "TG", "TGO", "768", u"Togo"), Country(u"Tokelau", "TK", "TKL", "772", u"Tokelau"), Country(u"Tonga", "TO", "TON", "776", u"Tonga"), Country(u"Trinidad and Tobago", "TT", "TTO", "780", u"Trinidad and Tobago"), Country(u"Tunisia", "TN", "TUN", "788", u"Tunisia"), Country(u"Turkey", "TR", "TUR", "792", u"Turkey"), Country(u"Turkmenistan", "TM", "TKM", "795", u"Turkmenistan"), Country(u"Turks and Caicos Islands", "TC", "TCA", "796", u"Turks and Caicos Islands"), Country(u"Tuvalu", "TV", "TUV", "798", u"Tuvalu"), Country(u"Uganda", "UG", "UGA", "800", u"Uganda"), Country(u"Ukraine", "UA", "UKR", "804", u"Ukraine"), Country(u"United Arab Emirates", "AE", "ARE", "784", u"United Arab Emirates"), Country(u"United Kingdom of Great Britain and Northern Ireland", "GB", "GBR", "826", u"United Kingdom of Great Britain and Northern Ireland"), Country(u"United States of America", "US", "USA", "840", u"United States of America"), Country(u"United States Minor Outlying Islands", "UM", "UMI", "581", u"United States Minor Outlying Islands"), Country(u"Uruguay", "UY", "URY", "858", u"Uruguay"), Country(u"Uzbekistan", "UZ", "UZB", "860", u"Uzbekistan"), Country(u"Vanuatu", "VU", "VUT", "548", u"Vanuatu"), Country(u"Venezuela, Bolivarian Republic of", "VE", "VEN", "862", u"Venezuela, Bolivarian Republic of"), Country(u"Viet Nam", "VN", "VNM", "704", u"Viet Nam"), Country(u"Virgin Islands, British", "VG", "VGB", "092", u"Virgin Islands, British"), Country(u"Virgin Islands, U.S.", "VI", "VIR", "850", u"Virgin Islands, U.S."), Country(u"Wallis and Futuna", "WF", "WLF", "876", u"Wallis and Futuna"), Country(u"Western Sahara", "EH", "ESH", "732", u"Western Sahara"), Country(u"Yemen", "YE", "YEM", "887", u"Yemen"), Country(u"Zambia", "ZM", "ZMB", "894", u"Zambia"), Country(u"Zimbabwe", "ZW", "ZWE", "716", u"Zimbabwe")] # Internal country indexes _by_alpha2 = _build_index(1) _by_alpha3 = _build_index(2) _by_numeric = _build_index(3) _by_name = _build_index(0) _by_apolitical_name = _build_index(4) # Documented accessors for the country indexes countries_by_alpha2 = _by_alpha2 countries_by_alpha3 = _by_alpha3 countries_by_numeric = _by_numeric countries_by_name = _by_name countries_by_apolitical_name = _by_apolitical_name NOT_FOUND = object() countries = _CountryLookup()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 3170, 1040, 1330, 2134, 198, 11748, 302, 198, 6738, 3146, 1330, 15995, 1373, 198, 6738, 17268, 1330, 3706, 83, 29291, 198, 198, 834, 439, 834, 796, 14631, 9127, 1678, 8973, 198, 198, 28311, 25, 198, 220, 220, 220, 965, 198, 16341, 6530, 12331, 25, 198, 220, 220, 220, 965, 796, 965, 198, 198, 33921, 796, 3706, 83, 29291, 10786, 33921, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 17130, 17, 17130, 18, 35575, 2471, 13781, 62, 3672, 11537, 198, 198, 62, 8344, 3669, 796, 685, 198, 220, 220, 220, 12946, 7, 84, 1, 17584, 6064, 4103, 1600, 366, 8579, 1600, 366, 8579, 38, 1600, 366, 22914, 1600, 334, 1, 17584, 6064, 4103, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 127, 227, 1044, 12010, 1600, 366, 25922, 1600, 366, 1847, 32, 1600, 366, 23045, 1600, 334, 1, 127, 227, 1044, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 2348, 3820, 544, 1600, 366, 1847, 1600, 366, 1847, 33, 1600, 366, 25257, 1600, 334, 1, 2348, 3820, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 2348, 1362, 544, 1600, 366, 35, 57, 1600, 366, 35, 34892, 1600, 366, 30206, 1600, 334, 1, 2348, 1362, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 7437, 43663, 1600, 366, 1921, 1600, 366, 1921, 44, 1600, 366, 27037, 1600, 334, 1, 7437, 43663, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 1870, 273, 430, 1600, 366, 2885, 1600, 366, 6981, 1600, 366, 33618, 1600, 334, 1, 1870, 273, 430, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13450, 5708, 1600, 366, 32, 46, 1600, 366, 4760, 46, 1600, 366, 40839, 1600, 334, 1, 13450, 5708, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13450, 84, 5049, 1600, 366, 20185, 1600, 366, 32, 3539, 1600, 366, 39885, 1600, 334, 1, 13450, 84, 5049, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13217, 283, 28914, 1600, 366, 32, 48, 1600, 366, 13563, 1600, 366, 20943, 1600, 334, 1, 13217, 283, 28914, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13217, 328, 6413, 290, 10593, 15339, 1600, 366, 4760, 1600, 366, 1404, 38, 1600, 366, 46957, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 13217, 328, 6413, 290, 10593, 15339, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3163, 6783, 1437, 1600, 366, 1503, 1600, 366, 1503, 38, 1600, 366, 49959, 1600, 334, 1, 3163, 6783, 1437, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3163, 3653, 544, 1600, 366, 2390, 1600, 366, 33456, 1600, 366, 2713, 16, 1600, 334, 1, 3163, 3653, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3163, 22013, 1600, 366, 12298, 1600, 366, 6242, 54, 1600, 366, 44994, 1600, 334, 1, 3163, 22013, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 27429, 1600, 366, 26830, 1600, 366, 32, 2937, 1600, 366, 48597, 1600, 334, 1, 27429, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 15160, 7496, 1600, 366, 1404, 1600, 366, 39371, 1600, 366, 36676, 1600, 334, 1, 15160, 7496, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 32, 9107, 65, 1872, 13881, 1600, 366, 22778, 1600, 366, 32, 21211, 1600, 366, 43637, 1600, 334, 1, 32, 9107, 65, 1872, 13881, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47514, 17485, 1600, 366, 4462, 1600, 366, 33, 7998, 1600, 366, 43977, 1600, 334, 1, 47514, 17485, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47514, 3201, 1600, 366, 33, 39, 1600, 366, 33, 17184, 1600, 366, 47202, 1600, 334, 1, 47514, 3201, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43984, 75, 13410, 1600, 366, 14529, 1600, 366, 40469, 35, 1600, 366, 28669, 1600, 334, 1, 43984, 75, 13410, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10374, 14774, 418, 1600, 366, 15199, 1600, 366, 11473, 33, 1600, 366, 37841, 1600, 334, 1, 10374, 14774, 418, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 12193, 20272, 1600, 366, 17513, 1600, 366, 9148, 49, 1600, 366, 14686, 1600, 334, 1, 12193, 20272, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 12193, 70, 1505, 1600, 366, 12473, 1600, 366, 33, 3698, 1600, 366, 2713, 21, 1600, 334, 1, 12193, 70, 1505, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 12193, 1096, 1600, 366, 33, 57, 1600, 366, 9148, 57, 1600, 366, 2919, 19, 1600, 334, 1, 12193, 1096, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 11696, 259, 1600, 366, 33, 41, 1600, 366, 33, 1677, 1600, 366, 18638, 1600, 334, 1, 11696, 259, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 7780, 15339, 1600, 366, 12261, 1600, 366, 12261, 52, 1600, 366, 41322, 1600, 334, 1, 33, 7780, 15339, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 71, 37878, 1600, 366, 19313, 1600, 366, 19313, 45, 1600, 366, 15, 2414, 1600, 334, 1, 33, 71, 37878, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 349, 20817, 11, 1345, 333, 26201, 1812, 286, 1600, 366, 8202, 1600, 366, 33, 3535, 1600, 366, 15, 3104, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 33, 349, 20817, 11, 1345, 333, 26201, 1812, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 4450, 557, 11, 311, 600, 412, 436, 265, 3754, 290, 9910, 64, 1600, 366, 33, 48, 1600, 366, 33, 1546, 1600, 366, 44465, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 33, 4450, 557, 11, 311, 600, 412, 436, 265, 3754, 290, 9910, 64, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 418, 18142, 290, 34321, 1533, 709, 1437, 1600, 366, 4339, 1600, 366, 3483, 39, 1600, 366, 43509, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 33, 418, 18142, 290, 34321, 1533, 709, 1437, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 1747, 49484, 1600, 366, 48802, 1600, 366, 33, 15543, 1600, 366, 2998, 17, 1600, 334, 1, 33, 1747, 49484, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33, 280, 16809, 5451, 1600, 366, 33, 53, 1600, 366, 33, 36392, 1600, 366, 2998, 19, 1600, 334, 1, 33, 280, 16809, 5451, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 39190, 1600, 366, 11473, 1600, 366, 33, 3861, 1600, 366, 2998, 21, 1600, 334, 1, 39190, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 25631, 3942, 10692, 25219, 1600, 366, 9399, 1600, 366, 40, 2394, 1600, 366, 2919, 21, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 25631, 3942, 10692, 25219, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 9414, 1726, 72, 7491, 1046, 44949, 1600, 366, 15766, 1600, 366, 11473, 45, 1600, 366, 2931, 21, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 9414, 1726, 72, 7491, 1046, 44949, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33481, 4563, 544, 1600, 366, 40469, 1600, 366, 33, 10761, 1600, 366, 3064, 1600, 334, 1, 33481, 4563, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 22991, 74, 1437, 38971, 78, 1600, 366, 29499, 1600, 366, 33, 7708, 1600, 366, 23, 4051, 1600, 334, 1, 22991, 74, 1437, 38971, 78, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 22991, 917, 72, 1600, 366, 3483, 1600, 366, 14529, 40, 1600, 366, 15711, 1600, 334, 1, 22991, 917, 72, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 4131, 375, 544, 1600, 366, 42, 39, 1600, 366, 42, 36905, 1600, 366, 18298, 1600, 334, 1, 34, 4131, 375, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 2382, 2049, 1600, 366, 24187, 1600, 366, 34, 13599, 1600, 366, 10232, 1600, 334, 1, 34, 2382, 2049, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17940, 1600, 366, 8141, 1600, 366, 44565, 1600, 366, 17464, 1600, 334, 1, 17940, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 34748, 4643, 2934, 1600, 366, 33538, 1600, 366, 8697, 53, 1600, 366, 19924, 1600, 334, 1, 34, 34748, 4643, 2934, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 323, 805, 12010, 1600, 366, 31159, 1600, 366, 34, 56, 44, 1600, 366, 20809, 1600, 334, 1, 34, 323, 805, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 30645, 5510, 2066, 1600, 366, 22495, 1600, 366, 8141, 37, 1600, 366, 15187, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 30645, 5510, 2066, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 1925, 324, 1600, 366, 21016, 1600, 366, 4825, 35, 1600, 366, 18294, 1600, 334, 1, 1925, 324, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 1925, 576, 1600, 366, 5097, 1600, 366, 3398, 43, 1600, 366, 17827, 1600, 334, 1, 1925, 576, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14581, 1600, 366, 44175, 1600, 366, 3398, 45, 1600, 366, 21599, 1600, 334, 1, 14581, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44614, 5451, 1600, 366, 34, 55, 1600, 366, 34, 55, 49, 1600, 366, 25061, 1600, 334, 1, 44614, 5451, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 420, 418, 357, 8896, 10809, 8, 12010, 1600, 366, 4093, 1600, 366, 4093, 42, 1600, 366, 23055, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 34, 420, 418, 357, 8896, 10809, 8, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 5216, 2381, 544, 1600, 366, 8220, 1600, 366, 25154, 1600, 366, 17279, 1600, 334, 1, 5216, 2381, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 5377, 40877, 1600, 366, 42, 44, 1600, 366, 9858, 1600, 366, 22985, 1600, 334, 1, 5377, 40877, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 18649, 78, 1600, 366, 39816, 1600, 366, 34, 7730, 1600, 366, 23188, 1600, 334, 1, 18649, 78, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 18649, 78, 11, 4390, 2066, 286, 262, 1600, 366, 8610, 1600, 366, 34, 3727, 1600, 366, 15259, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 18649, 78, 11, 4390, 2066, 286, 262, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 28937, 12010, 1600, 366, 34, 42, 1600, 366, 8220, 42, 1600, 366, 22883, 1600, 334, 1, 28937, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13729, 64, 31656, 1600, 366, 9419, 1600, 366, 34, 7112, 1600, 366, 20356, 1600, 334, 1, 13729, 64, 31656, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 27083, 660, 288, 6, 40, 13038, 557, 1600, 366, 25690, 1600, 366, 34, 3824, 1600, 366, 22842, 1600, 334, 1, 34, 27083, 660, 288, 6, 40, 13038, 557, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 35403, 265, 544, 1600, 366, 17184, 1600, 366, 17184, 53, 1600, 366, 26492, 1600, 334, 1, 35403, 265, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 22013, 1600, 366, 43633, 1600, 366, 34, 10526, 1600, 366, 17477, 1600, 334, 1, 34, 22013, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 5330, 16175, 5488, 1600, 366, 43538, 1600, 366, 43633, 54, 1600, 366, 20, 3132, 1600, 334, 1, 34, 5330, 16175, 5488, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 20418, 26440, 1600, 366, 34, 56, 1600, 366, 34, 48232, 1600, 366, 25272, 1600, 334, 1, 20418, 26440, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34, 15356, 544, 1600, 366, 34, 57, 1600, 366, 34, 21211, 1600, 366, 22416, 1600, 334, 1, 34, 15356, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 21306, 4102, 1600, 366, 48510, 1600, 366, 35504, 42, 1600, 366, 21315, 1600, 334, 1, 21306, 4102, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 35, 73, 571, 448, 72, 1600, 366, 35028, 1600, 366, 35028, 40, 1600, 366, 29119, 1600, 334, 1, 35, 73, 571, 448, 72, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43417, 3970, 1600, 366, 23127, 1600, 366, 35, 5673, 1600, 366, 21777, 1600, 334, 1, 43417, 3970, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43417, 7490, 2066, 1600, 366, 18227, 1600, 366, 39170, 1600, 366, 22291, 1600, 334, 1, 43417, 7490, 2066, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 49136, 24201, 1600, 366, 2943, 1600, 366, 2943, 52, 1600, 366, 28727, 1600, 334, 1, 49136, 24201, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 39299, 1600, 366, 7156, 1600, 366, 7156, 56, 1600, 366, 23, 1507, 1600, 334, 1, 39299, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 9527, 26482, 1600, 366, 50, 53, 1600, 366, 8634, 53, 1600, 366, 23148, 1600, 334, 1, 9527, 26482, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 23588, 21592, 22777, 1600, 366, 38, 48, 1600, 366, 16630, 48, 1600, 366, 24909, 1600, 334, 1, 23588, 21592, 22777, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 36, 799, 21468, 1600, 366, 1137, 1600, 366, 1137, 40, 1600, 366, 24339, 1600, 334, 1, 36, 799, 21468, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 36, 3743, 544, 1600, 366, 6500, 1600, 366, 6465, 1600, 366, 25429, 1600, 334, 1, 36, 3743, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 40226, 14922, 544, 1600, 366, 2767, 1600, 366, 20702, 1600, 366, 25667, 1600, 334, 1, 40226, 14922, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 37, 971, 1044, 12010, 357, 15029, 7114, 292, 42501, 366, 26236, 1600, 366, 3697, 42, 1600, 366, 23721, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 37, 971, 1044, 12010, 357, 15029, 7114, 292, 8, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 21428, 2577, 12010, 1600, 366, 6080, 1600, 366, 10913, 46, 1600, 366, 24409, 1600, 334, 1, 21428, 2577, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 37, 20770, 1600, 366, 37, 41, 1600, 366, 37, 41, 40, 1600, 366, 27877, 1600, 334, 1, 37, 20770, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 18467, 1044, 1600, 366, 11674, 1600, 366, 20032, 1600, 366, 26912, 1600, 334, 1, 18467, 1044, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 28572, 1600, 366, 10913, 1600, 366, 37, 3861, 1600, 366, 9031, 1600, 334, 1, 28572, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24111, 1962, 7484, 1600, 366, 21713, 1600, 366, 38, 36820, 1600, 366, 24970, 1600, 334, 1, 24111, 1962, 7484, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24111, 12280, 31401, 1600, 366, 42668, 1600, 366, 47, 56, 37, 1600, 366, 25600, 1600, 334, 1, 24111, 12280, 31401, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24111, 8050, 42354, 1600, 366, 10234, 1600, 366, 1404, 37, 1600, 366, 21719, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 24111, 8050, 42354, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 46079, 261, 1600, 366, 9273, 1600, 366, 38, 6242, 1600, 366, 25540, 1600, 334, 1, 46079, 261, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 38, 4131, 544, 1600, 366, 15548, 1600, 366, 38, 10744, 1600, 366, 20233, 1600, 334, 1, 38, 4131, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 41072, 1600, 366, 8264, 1600, 366, 38, 4720, 1600, 366, 25022, 1600, 334, 1, 41072, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 27079, 1600, 366, 7206, 1600, 366, 7206, 52, 1600, 366, 27988, 1600, 334, 1, 27079, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 41126, 2271, 1600, 366, 17511, 1600, 366, 38, 7801, 1600, 366, 25270, 1600, 334, 1, 41126, 2271, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 38, 571, 45662, 1600, 366, 18878, 1600, 366, 38, 9865, 1600, 366, 32759, 1600, 334, 1, 38, 571, 45662, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 38, 631, 344, 1600, 366, 10761, 1600, 366, 38, 7397, 1600, 366, 6200, 1600, 334, 1, 38, 631, 344, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13719, 1044, 1600, 366, 8763, 1600, 366, 38, 7836, 1600, 366, 21288, 1600, 334, 1, 13719, 1044, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 38, 918, 4763, 1600, 366, 45113, 1600, 366, 10761, 35, 1600, 366, 21495, 1600, 334, 1, 38, 918, 4763, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 6959, 280, 431, 1600, 366, 16960, 1600, 366, 8763, 47, 1600, 366, 27970, 1600, 334, 1, 8205, 6959, 280, 431, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 321, 1600, 366, 38022, 1600, 366, 38, 5883, 1600, 366, 33400, 1600, 334, 1, 8205, 321, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 23900, 6081, 1600, 366, 19555, 1600, 366, 38, 15972, 1600, 366, 19504, 1600, 334, 1, 8205, 23900, 6081, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 1142, 4397, 1600, 366, 11190, 1600, 366, 11190, 56, 1600, 366, 23, 3132, 1600, 334, 1, 8205, 1142, 4397, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 18343, 1600, 366, 16630, 1600, 366, 38, 1268, 1600, 366, 33916, 1600, 334, 1, 8205, 18343, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8205, 18343, 12, 33, 747, 559, 1600, 366, 33191, 1600, 366, 16630, 33, 1600, 366, 21, 1731, 1600, 334, 1, 8205, 18343, 12, 33, 747, 559, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 31080, 2271, 1600, 366, 31212, 1600, 366, 38022, 56, 1600, 366, 34256, 1600, 334, 1, 31080, 2271, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 39, 4548, 72, 1600, 366, 6535, 1600, 366, 6535, 40, 1600, 366, 32148, 1600, 334, 1, 39, 4548, 72, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 1544, 446, 5451, 290, 14115, 12010, 1600, 366, 36905, 1600, 366, 39, 12740, 1600, 366, 31380, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 1544, 446, 5451, 290, 14115, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33336, 4091, 1600, 366, 11731, 1600, 366, 53, 1404, 1600, 366, 29211, 1600, 334, 1, 33336, 4091, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 39, 623, 17786, 1600, 366, 39, 45, 1600, 366, 39, 8575, 1600, 366, 23601, 1600, 334, 1, 39, 623, 17786, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48559, 9071, 1600, 366, 38730, 1600, 366, 38730, 38, 1600, 366, 33535, 1600, 334, 1, 48559, 9071, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 39505, 560, 1600, 366, 39, 52, 1600, 366, 39, 4944, 1600, 366, 28978, 1600, 334, 1, 39505, 560, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 23709, 1044, 1600, 366, 1797, 1600, 366, 1797, 43, 1600, 366, 33394, 1600, 334, 1, 23709, 1044, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 21569, 1600, 366, 1268, 1600, 366, 12115, 1600, 366, 32066, 1600, 334, 1, 21569, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 5497, 1952, 544, 1600, 366, 2389, 1600, 366, 2389, 45, 1600, 366, 15277, 1600, 334, 1, 5497, 1952, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 23798, 11, 5533, 2066, 286, 1600, 366, 4663, 1600, 366, 4663, 45, 1600, 366, 26780, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 23798, 11, 5533, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 31206, 1600, 366, 33866, 1600, 366, 4663, 48, 1600, 366, 27412, 1600, 334, 1, 31206, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 49752, 1600, 366, 10008, 1600, 366, 4663, 43, 1600, 366, 36720, 1600, 334, 1, 49752, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3792, 293, 286, 1869, 1600, 366, 3955, 1600, 366, 3955, 45, 1600, 366, 48634, 1600, 334, 1, 3792, 293, 286, 1869, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14040, 1600, 366, 4146, 1600, 366, 1797, 49, 1600, 366, 32128, 1600, 334, 1, 14040, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45001, 1600, 366, 2043, 1600, 366, 2043, 32, 1600, 366, 23734, 1600, 334, 1, 45001, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 41, 1689, 3970, 1600, 366, 50229, 1600, 366, 41, 2390, 1600, 366, 30460, 1600, 334, 1, 41, 1689, 3970, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 16504, 1600, 366, 12889, 1600, 366, 12889, 45, 1600, 366, 32321, 1600, 334, 1, 16504, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 36134, 4397, 1600, 366, 41, 36, 1600, 366, 41, 22348, 1600, 366, 23, 2624, 1600, 334, 1, 36134, 4397, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34522, 1600, 366, 45006, 1600, 366, 41, 1581, 1600, 366, 7029, 1600, 334, 1, 34522, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42, 1031, 11322, 14192, 1600, 366, 42, 57, 1600, 366, 42, 22778, 1600, 366, 31952, 1600, 334, 1, 42, 1031, 11322, 14192, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 27827, 3972, 1600, 366, 7336, 1600, 366, 43959, 1600, 366, 26429, 1600, 334, 1, 27827, 3972, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42, 343, 571, 7246, 1600, 366, 37845, 1600, 366, 42, 4663, 1600, 366, 27137, 1600, 334, 1, 42, 343, 571, 7246, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42, 46215, 11, 4390, 4380, 338, 2066, 286, 1600, 366, 42, 47, 1600, 366, 4805, 42, 1600, 366, 26200, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 42, 46215, 11, 4390, 4380, 338, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42, 46215, 11, 2066, 286, 1600, 366, 30758, 1600, 366, 42, 1581, 1600, 366, 33289, 1600, 334, 1, 42, 46215, 11, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 41733, 17077, 1600, 366, 42, 54, 1600, 366, 42, 39386, 1600, 366, 37309, 1600, 334, 1, 41733, 17077, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42, 2417, 1360, 89, 14192, 1600, 366, 42, 38, 1600, 366, 42, 38, 57, 1600, 366, 38547, 1600, 334, 1, 42, 2417, 1360, 89, 14192, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43, 5488, 4380, 338, 4390, 2066, 1600, 366, 13534, 1600, 366, 13534, 46, 1600, 366, 39667, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 43, 5488, 4380, 338, 4390, 2066, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24220, 8869, 1600, 366, 30976, 1600, 366, 43, 11731, 1600, 366, 40173, 1600, 334, 1, 24220, 8869, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43, 1765, 36902, 1600, 366, 30501, 1600, 366, 43, 15766, 1600, 366, 44361, 1600, 334, 1, 43, 1765, 36902, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 35882, 849, 78, 1600, 366, 6561, 1600, 366, 6561, 46, 1600, 366, 42780, 1600, 334, 1, 35882, 849, 78, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 31199, 544, 1600, 366, 35972, 1600, 366, 43, 11473, 1600, 366, 31794, 1600, 334, 1, 31199, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 25835, 3972, 1600, 366, 11319, 1600, 366, 43, 17513, 1600, 366, 47101, 1600, 334, 1, 25835, 3972, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47918, 354, 1452, 5714, 1600, 366, 31271, 1600, 366, 43, 10008, 1600, 366, 43704, 1600, 334, 1, 47918, 354, 1452, 5714, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43, 342, 29743, 1600, 366, 27734, 1600, 366, 27734, 52, 1600, 366, 25644, 1600, 334, 1, 43, 342, 29743, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 43, 2821, 368, 24256, 1600, 366, 41596, 1600, 366, 43, 31235, 1600, 366, 39506, 1600, 334, 1, 43, 2821, 368, 24256, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14155, 5488, 1600, 366, 11770, 1600, 366, 44721, 1600, 366, 27260, 1600, 334, 1, 14155, 5488, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 2286, 11339, 11, 262, 1966, 30655, 2066, 286, 1600, 366, 33907, 1600, 366, 33907, 35, 1600, 366, 36928, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 44, 2286, 11339, 11, 262, 1966, 30655, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 18454, 44309, 1600, 366, 20474, 1600, 366, 12740, 38, 1600, 366, 17885, 1600, 334, 1, 18454, 44309, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 15029, 23368, 1600, 366, 14326, 1600, 366, 14326, 40, 1600, 366, 34229, 1600, 334, 1, 15029, 23368, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 15029, 592, 544, 1600, 366, 26708, 1600, 366, 44, 16309, 1600, 366, 29334, 1600, 334, 1, 15029, 592, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 1940, 1083, 1600, 366, 44, 53, 1600, 366, 12740, 53, 1600, 366, 39997, 1600, 334, 1, 44, 1940, 1083, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 7344, 1600, 366, 5805, 1600, 366, 5805, 40, 1600, 366, 42199, 1600, 334, 1, 44, 7344, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 2501, 64, 1600, 366, 13752, 1600, 366, 5805, 51, 1600, 366, 27790, 1600, 334, 1, 44, 2501, 64, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 41984, 439, 12010, 1600, 366, 36208, 1600, 366, 44, 6581, 1600, 366, 46352, 1600, 334, 1, 41984, 439, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24778, 2350, 1600, 366, 49215, 1600, 366, 13752, 48, 1600, 366, 38652, 1600, 334, 1, 24778, 2350, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 2899, 270, 5411, 1600, 366, 13599, 1600, 366, 13599, 51, 1600, 366, 29059, 1600, 334, 1, 44, 2899, 270, 5411, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 2899, 270, 3754, 1600, 366, 42422, 1600, 366, 44, 2937, 1600, 366, 22148, 1600, 334, 1, 44, 2899, 270, 3754, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 6747, 11404, 1600, 366, 56, 51, 1600, 366, 26708, 51, 1600, 366, 17430, 1600, 334, 1, 6747, 11404, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 33006, 1600, 366, 43243, 1600, 366, 44, 6369, 1600, 366, 34137, 1600, 334, 1, 33006, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 25437, 9821, 544, 11, 35089, 515, 1829, 286, 1600, 366, 23264, 1600, 366, 10652, 44, 1600, 366, 46239, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 25437, 9821, 544, 11, 35089, 515, 1829, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 727, 10071, 11, 2066, 286, 1600, 366, 12740, 1600, 366, 44, 5631, 1600, 366, 36260, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 44, 727, 10071, 11, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 9069, 10602, 1600, 366, 9655, 1600, 366, 44, 8220, 1600, 366, 40256, 1600, 334, 1, 9069, 10602, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 506, 22703, 1600, 366, 39764, 1600, 366, 44, 10503, 1600, 366, 37747, 1600, 334, 1, 44, 506, 22703, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 26031, 46495, 305, 1600, 366, 11682, 1600, 366, 44, 12161, 1600, 366, 28324, 1600, 334, 1, 26031, 46495, 305, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 26031, 2655, 10366, 1600, 366, 5653, 1600, 366, 5653, 49, 1600, 366, 4059, 1600, 334, 1, 26031, 2655, 10366, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 20044, 420, 1073, 1600, 366, 5673, 1600, 366, 40569, 1600, 366, 33580, 1600, 334, 1, 20044, 420, 1073, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44, 8590, 4131, 2350, 1600, 366, 44, 57, 1600, 366, 11770, 57, 1600, 366, 33042, 1600, 334, 1, 44, 8590, 4131, 2350, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3666, 21708, 1600, 366, 12038, 1600, 366, 12038, 49, 1600, 366, 13464, 1600, 334, 1, 3666, 21708, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 321, 41145, 1600, 366, 4535, 1600, 366, 45, 2390, 1600, 366, 47493, 1600, 334, 1, 45, 321, 41145, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 2899, 84, 1600, 366, 24723, 1600, 366, 24723, 52, 1600, 366, 31211, 1600, 334, 1, 45, 2899, 84, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 538, 282, 1600, 366, 22182, 1600, 366, 45, 6489, 1600, 366, 48057, 1600, 334, 1, 45, 538, 282, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 6750, 4447, 1600, 366, 32572, 1600, 366, 45, 11163, 1600, 366, 49351, 1600, 334, 1, 45, 6750, 4447, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3791, 2199, 276, 11339, 1600, 366, 7792, 1600, 366, 45, 5097, 1600, 366, 35005, 1600, 334, 1, 3791, 2199, 276, 11339, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 3791, 8936, 1600, 366, 37371, 1600, 366, 37371, 43, 1600, 366, 44218, 1600, 334, 1, 3791, 8936, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 30403, 29967, 6413, 1600, 366, 22125, 1600, 366, 45, 2149, 1600, 366, 40486, 1600, 334, 1, 30403, 29967, 6413, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 8254, 1600, 366, 12161, 1600, 366, 21479, 1600, 366, 43918, 1600, 334, 1, 45, 8254, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45, 328, 5142, 1600, 366, 10503, 1600, 366, 45, 9273, 1600, 366, 20, 2791, 1600, 334, 1, 45, 328, 5142, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34153, 518, 1600, 366, 45, 52, 1600, 366, 22125, 52, 1600, 366, 39254, 1600, 334, 1, 34153, 518, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 21991, 19956, 5451, 1600, 366, 21870, 1600, 366, 21870, 42, 1600, 366, 46900, 1600, 334, 1, 21991, 19956, 5451, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 40495, 1526, 7484, 12010, 1600, 366, 7378, 1600, 366, 44, 22182, 1600, 366, 39322, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 40495, 1526, 7484, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 21991, 1014, 1600, 366, 15285, 1600, 366, 35510, 1600, 366, 38907, 1600, 334, 1, 21991, 1014, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 46, 805, 1600, 366, 2662, 1600, 366, 2662, 45, 1600, 366, 25836, 1600, 334, 1, 46, 805, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 38485, 1600, 366, 40492, 1600, 366, 4537, 42, 1600, 366, 29796, 1600, 334, 1, 38485, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 11531, 559, 1600, 366, 47, 54, 1600, 366, 6489, 54, 1600, 366, 38905, 1600, 334, 1, 11531, 559, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 11531, 27374, 11, 1812, 286, 1600, 366, 3705, 1600, 366, 3705, 36, 1600, 366, 23195, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 11531, 27374, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 15730, 1689, 1600, 366, 4537, 1600, 366, 47, 1565, 1600, 366, 48952, 1600, 334, 1, 15730, 1689, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47, 499, 6413, 968, 22777, 1600, 366, 6968, 1600, 366, 47, 10503, 1600, 366, 41292, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 47, 499, 6413, 968, 22777, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10044, 11433, 323, 1600, 366, 47, 56, 1600, 366, 4805, 56, 1600, 366, 8054, 1600, 334, 1, 10044, 11433, 323, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 5990, 84, 1600, 366, 11401, 1600, 366, 18973, 1600, 366, 31916, 1600, 334, 1, 5990, 84, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 49680, 1127, 1600, 366, 11909, 1600, 366, 47, 6581, 1600, 366, 28688, 1600, 334, 1, 49680, 1127, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47, 270, 37155, 77, 1600, 366, 13137, 1600, 366, 5662, 45, 1600, 366, 43610, 1600, 334, 1, 47, 270, 37155, 77, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 8017, 392, 1600, 366, 6489, 1600, 366, 45472, 1600, 366, 44214, 1600, 334, 1, 8017, 392, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 13924, 43778, 1600, 366, 11571, 1600, 366, 4805, 51, 1600, 366, 38850, 1600, 334, 1, 13924, 43778, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47, 84, 13806, 16707, 1600, 366, 4805, 1600, 366, 4805, 40, 1600, 366, 30005, 1600, 334, 1, 47, 84, 13806, 16707, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48, 9459, 1600, 366, 48, 32, 1600, 366, 48, 1404, 1600, 366, 21, 2682, 1600, 334, 1, 48, 9459, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 49, 2634, 24592, 1600, 366, 2200, 1600, 366, 2200, 52, 1600, 366, 21, 2548, 1600, 334, 1, 49, 2634, 24592, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 32454, 544, 1600, 366, 13252, 1600, 366, 49, 2606, 1600, 366, 41290, 1600, 334, 1, 32454, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 16220, 11937, 1600, 366, 49, 52, 1600, 366, 49, 2937, 1600, 366, 41813, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 16220, 11937, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 49, 86, 5282, 1600, 366, 46747, 1600, 366, 49, 15543, 1600, 366, 27720, 1600, 334, 1, 49, 86, 5282, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 44414, 2634, 293, 1820, 1600, 366, 9148, 1600, 366, 9148, 44, 1600, 366, 43193, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 44414, 2634, 293, 1820, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 42916, 11, 41416, 290, 833, 4103, 12379, 327, 403, 3099, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9693, 1600, 366, 9693, 45, 1600, 366, 39111, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 42916, 11, 41416, 290, 833, 4103, 12379, 327, 403, 3099, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 43670, 82, 290, 9873, 271, 1600, 366, 29132, 1600, 366, 42, 4535, 1600, 366, 36445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 43670, 82, 290, 9873, 271, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 48158, 1600, 366, 5639, 1600, 366, 5639, 32, 1600, 366, 39380, 1600, 334, 1, 48615, 48158, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 5780, 357, 24111, 636, 42501, 366, 49800, 1600, 366, 5673, 37, 1600, 366, 45791, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 5780, 357, 24111, 636, 8, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 21204, 290, 337, 1557, 417, 261, 1600, 366, 5868, 1600, 366, 4303, 44, 1600, 366, 27310, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 21204, 290, 337, 1557, 417, 261, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 48615, 18653, 290, 262, 19674, 324, 1127, 1600, 366, 15922, 1600, 366, 53, 4177, 1600, 366, 43798, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 48615, 18653, 290, 262, 19674, 324, 1127, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 16305, 12162, 1600, 366, 19416, 1600, 366, 54, 12310, 1600, 366, 42980, 1600, 334, 1, 16305, 12162, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 15017, 46043, 1600, 366, 12310, 1600, 366, 12310, 49, 1600, 366, 45385, 1600, 334, 1, 15017, 46043, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 5488, 46403, 290, 7489, 979, 431, 1600, 366, 2257, 1600, 366, 2257, 47, 1600, 366, 30924, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 50, 5488, 46403, 290, 7489, 979, 431, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 36939, 9671, 1600, 366, 4090, 1600, 366, 4090, 52, 1600, 366, 43950, 1600, 334, 1, 36939, 9671, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10445, 39839, 1600, 366, 15571, 1600, 366, 50, 1677, 1600, 366, 33808, 1600, 334, 1, 10445, 39839, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 7089, 23339, 1600, 366, 6998, 1600, 366, 12562, 33, 1600, 366, 34427, 1600, 334, 1, 7089, 23339, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 2959, 12398, 274, 1600, 366, 6173, 1600, 366, 23060, 34, 1600, 366, 35844, 1600, 334, 1, 50, 2959, 12398, 274, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 16367, 30399, 1600, 366, 8634, 1600, 366, 50, 2538, 1600, 366, 45214, 1600, 334, 1, 50, 16367, 30399, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 29974, 11656, 1600, 366, 38475, 1600, 366, 50, 16960, 1600, 366, 36680, 1600, 334, 1, 29974, 11656, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 600, 6669, 23996, 357, 49717, 636, 42501, 366, 50, 55, 1600, 366, 50, 37643, 1600, 366, 20, 2682, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 50, 600, 6669, 23996, 357, 49717, 636, 8, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 11122, 709, 21897, 1600, 366, 18831, 1600, 366, 50, 47191, 1600, 366, 36809, 1600, 334, 1, 11122, 709, 21897, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 5439, 574, 544, 1600, 366, 11584, 1600, 366, 50, 53, 45, 1600, 366, 34801, 1600, 334, 1, 50, 5439, 574, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 36949, 16698, 12010, 1600, 366, 16811, 1600, 366, 8634, 33, 1600, 366, 42534, 1600, 334, 1, 36949, 16698, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 296, 9752, 1600, 366, 15821, 1600, 366, 50, 2662, 1600, 366, 35402, 1600, 334, 1, 50, 296, 9752, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14942, 5478, 1600, 366, 34892, 1600, 366, 57, 8579, 1600, 366, 43147, 1600, 334, 1, 14942, 5478, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14942, 7859, 290, 262, 2520, 45000, 12010, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14313, 1600, 366, 50, 14313, 1600, 366, 23516, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 14942, 7859, 290, 262, 2520, 45000, 12010, 1600, 828, 198, 220, 220, 220, 12946, 7, 84, 1, 14942, 19610, 1600, 366, 5432, 1600, 366, 5432, 35, 1600, 366, 48524, 1600, 334, 1, 14942, 19610, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 45355, 1600, 366, 1546, 1600, 366, 1546, 47, 1600, 366, 22, 1731, 1600, 334, 1, 45355, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 380, 28143, 1600, 366, 43, 42, 1600, 366, 43, 25123, 1600, 366, 18444, 1600, 334, 1, 50, 380, 28143, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 463, 272, 1600, 366, 10305, 1600, 366, 10305, 45, 1600, 366, 48555, 1600, 334, 1, 50, 463, 272, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14214, 259, 480, 1600, 366, 12562, 1600, 366, 50, 4261, 1600, 366, 45598, 1600, 334, 1, 14214, 259, 480, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 50, 2100, 23024, 290, 2365, 1737, 268, 1600, 366, 50, 41, 1600, 366, 50, 50229, 1600, 366, 22, 2598, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 50, 2100, 23024, 290, 2365, 1737, 268, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10462, 1031, 40855, 1600, 366, 50, 57, 1600, 366, 17887, 57, 1600, 366, 48246, 1600, 334, 1, 10462, 1031, 40855, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10462, 31829, 1600, 366, 5188, 1600, 366, 50, 8845, 1600, 366, 43665, 1600, 334, 1, 10462, 31829, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 10462, 13947, 1600, 366, 3398, 1600, 366, 3398, 36, 1600, 366, 38219, 1600, 334, 1, 10462, 13947, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 42747, 4498, 2066, 1600, 366, 23060, 1600, 366, 23060, 49, 1600, 366, 40761, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 42747, 4498, 2066, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47976, 8149, 11, 22783, 286, 2807, 1600, 366, 34551, 1600, 366, 51, 29767, 1600, 366, 21273, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 47976, 8149, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 1228, 1134, 4103, 1600, 366, 51, 41, 1600, 366, 51, 41, 42, 1600, 366, 48194, 1600, 334, 1, 51, 1228, 1134, 4103, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 35410, 5411, 11, 1578, 2066, 286, 1600, 366, 51, 57, 1600, 366, 51, 34892, 1600, 366, 23, 2682, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 51, 35410, 5411, 11, 1578, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 817, 16188, 1600, 366, 4221, 1600, 366, 4221, 32, 1600, 366, 22, 2414, 1600, 334, 1, 817, 16188, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 14967, 273, 12, 43, 29872, 1600, 366, 14990, 1600, 366, 51, 6561, 1600, 366, 45191, 1600, 334, 1, 14967, 273, 12, 43, 29872, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 24076, 1600, 366, 35990, 1600, 366, 51, 11230, 1600, 366, 30610, 1600, 334, 1, 51, 24076, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 2088, 75, 559, 1600, 366, 51, 42, 1600, 366, 51, 42, 43, 1600, 366, 43571, 1600, 334, 1, 51, 2088, 75, 559, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 44294, 1600, 366, 10468, 1600, 366, 11357, 1600, 366, 39509, 1600, 334, 1, 51, 44294, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 2898, 259, 32482, 290, 13695, 3839, 1600, 366, 15751, 1600, 366, 51, 10468, 1600, 366, 40873, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 2898, 259, 32482, 290, 13695, 3839, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 51, 403, 271, 544, 1600, 366, 46559, 1600, 366, 51, 4944, 1600, 366, 22, 3459, 1600, 334, 1, 51, 403, 271, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 31632, 1600, 366, 5446, 1600, 366, 51, 4261, 1600, 366, 48156, 1600, 334, 1, 31632, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17483, 74, 3653, 4103, 1600, 366, 15972, 1600, 366, 51, 42, 44, 1600, 366, 41544, 1600, 334, 1, 17483, 74, 3653, 4103, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17483, 591, 290, 6488, 291, 418, 12010, 1600, 366, 4825, 1600, 366, 4825, 32, 1600, 366, 41060, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 17483, 591, 290, 6488, 291, 418, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 47247, 2100, 84, 1600, 366, 6849, 1600, 366, 51, 31667, 1600, 366, 43240, 1600, 334, 1, 47247, 2100, 84, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 52, 70, 5282, 1600, 366, 7340, 1600, 366, 7340, 32, 1600, 366, 7410, 1600, 334, 1, 52, 70, 5282, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 44814, 1600, 366, 34970, 1600, 366, 15039, 49, 1600, 366, 36088, 1600, 334, 1, 44814, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17013, 4498, 24880, 1600, 366, 14242, 1600, 366, 12203, 1600, 366, 37688, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 17013, 4498, 24880, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17013, 7526, 286, 3878, 5491, 290, 8342, 7517, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4579, 1600, 366, 4579, 49, 1600, 366, 23, 2075, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 17013, 7526, 286, 3878, 5491, 290, 8342, 7517, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17013, 1829, 286, 2253, 1600, 366, 2937, 1600, 366, 14053, 1600, 366, 40675, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 17013, 1829, 286, 2253, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 17013, 1829, 15367, 3806, 3157, 12010, 1600, 366, 5883, 1600, 366, 5883, 40, 1600, 366, 48630, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 17013, 1829, 15367, 3806, 3157, 12010, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 52, 2143, 30106, 1600, 366, 52, 56, 1600, 366, 4261, 56, 1600, 366, 23, 3365, 1600, 334, 1, 52, 2143, 30106, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 52, 40413, 4103, 1600, 366, 52, 57, 1600, 366, 52, 57, 33, 1600, 366, 45039, 1600, 334, 1, 52, 40413, 4103, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 25298, 84, 33419, 1600, 366, 53, 52, 1600, 366, 53, 3843, 1600, 366, 49934, 1600, 334, 1, 25298, 84, 33419, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 53, 12596, 64, 11, 10797, 452, 3699, 2066, 286, 1600, 366, 6089, 1600, 366, 28290, 1600, 366, 4521, 17, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 53, 12596, 64, 11, 10797, 452, 3699, 2066, 286, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 53, 1155, 17871, 1600, 366, 53, 45, 1600, 366, 53, 32755, 1600, 366, 32869, 1600, 334, 1, 53, 1155, 17871, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34674, 12010, 11, 3517, 1600, 366, 43490, 1600, 366, 53, 4579, 1600, 366, 2931, 17, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 34674, 12010, 11, 3517, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 34674, 12010, 11, 471, 13, 50, 33283, 366, 12861, 1600, 366, 53, 4663, 1600, 366, 25764, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 1, 34674, 12010, 11, 471, 13, 50, 526, 828, 198, 220, 220, 220, 12946, 7, 84, 1, 22401, 271, 290, 24002, 9613, 1600, 366, 48397, 1600, 366, 54, 43, 37, 1600, 366, 23, 4304, 1600, 334, 1, 22401, 271, 290, 24002, 9613, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 24227, 46882, 1600, 366, 42413, 1600, 366, 44011, 1600, 366, 22, 2624, 1600, 334, 1, 24227, 46882, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 56, 8952, 1600, 366, 48743, 1600, 366, 56, 3620, 1600, 366, 46660, 1600, 334, 1, 56, 8952, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 57, 4131, 544, 1600, 366, 57, 44, 1600, 366, 57, 10744, 1600, 366, 4531, 19, 1600, 334, 1, 57, 4131, 544, 12340, 198, 220, 220, 220, 12946, 7, 84, 1, 57, 27175, 1600, 366, 57, 54, 1600, 366, 57, 8845, 1600, 366, 22, 1433, 1600, 334, 1, 57, 27175, 4943, 60, 628, 198, 198, 2, 18628, 1499, 39199, 198, 62, 1525, 62, 26591, 17, 796, 4808, 11249, 62, 9630, 7, 16, 8, 198, 62, 1525, 62, 26591, 18, 796, 4808, 11249, 62, 9630, 7, 17, 8, 198, 62, 1525, 62, 77, 39223, 796, 4808, 11249, 62, 9630, 7, 18, 8, 198, 62, 1525, 62, 3672, 796, 4808, 11249, 62, 9630, 7, 15, 8, 198, 62, 1525, 62, 499, 13781, 62, 3672, 796, 4808, 11249, 62, 9630, 7, 19, 8, 628, 198, 2, 16854, 276, 1895, 669, 329, 262, 1499, 39199, 198, 9127, 1678, 62, 1525, 62, 26591, 17, 796, 4808, 1525, 62, 26591, 17, 198, 9127, 1678, 62, 1525, 62, 26591, 18, 796, 4808, 1525, 62, 26591, 18, 198, 9127, 1678, 62, 1525, 62, 77, 39223, 796, 4808, 1525, 62, 77, 39223, 198, 9127, 1678, 62, 1525, 62, 3672, 796, 4808, 1525, 62, 3672, 198, 9127, 1678, 62, 1525, 62, 499, 13781, 62, 3672, 796, 4808, 1525, 62, 499, 13781, 62, 3672, 628, 198, 11929, 62, 37, 15919, 796, 2134, 3419, 628, 198, 9127, 1678, 796, 4808, 33921, 8567, 929, 3419, 198 ]
2.201094
8,046
"""user_timezone Revision ID: 2cd20ff3d23a Revises: b4b8d57b54e5 Create Date: 2016-11-08 11:32:00.903232 """ # revision identifiers, used by Alembic. revision = '2cd20ff3d23a' down_revision = 'b4b8d57b54e5' from alembic import op import sqlalchemy as sa
[ 37811, 7220, 62, 2435, 11340, 198, 198, 18009, 1166, 4522, 25, 362, 10210, 1238, 487, 18, 67, 1954, 64, 198, 18009, 2696, 25, 275, 19, 65, 23, 67, 3553, 65, 4051, 68, 20, 198, 16447, 7536, 25, 1584, 12, 1157, 12, 2919, 1367, 25, 2624, 25, 405, 13, 24, 3070, 24339, 198, 198, 37811, 198, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 17, 10210, 1238, 487, 18, 67, 1954, 64, 6, 198, 2902, 62, 260, 10178, 796, 705, 65, 19, 65, 23, 67, 3553, 65, 4051, 68, 20, 6, 198, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 628, 198 ]
2.26087
115
import pathlib from setuptools import setup here = pathlib.Path(__file__).parent.resolve() long_description = (here / 'README.md').read_text(encoding='utf-8') setup( name='lavacord.py', version='1.0.4a1', description='Its a lavalink nodes manger to make a music bots for discord with python.', long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/CraazzzyyFoxx/lavacord.py', author='CraazzzyyFoxx', author_email='[email protected]', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.9', "Programming Language :: Python :: 3.10", 'Programming Language :: Python :: 3 :: Only', ], keywords='lavalink, discord, discord-lavalink, lavacord.py', packages=["lavacord", "lavacord.types"], install_requires=["aiohttp", "hikari", "yarl", "tekore", "pydantic"], project_urls={ 'Bug Reports': 'https://github.com/CraazzzyyFoxx/lavacord.py/issues', 'Source': 'https://github.com/CraazzzyyFoxx/lavacord.py/', }, )
[ 11748, 3108, 8019, 198, 198, 6738, 900, 37623, 10141, 1330, 9058, 198, 198, 1456, 796, 3108, 8019, 13, 15235, 7, 834, 7753, 834, 737, 8000, 13, 411, 6442, 3419, 198, 6511, 62, 11213, 796, 357, 1456, 1220, 705, 15675, 11682, 13, 9132, 27691, 961, 62, 5239, 7, 12685, 7656, 11639, 40477, 12, 23, 11537, 628, 198, 40406, 7, 198, 220, 220, 220, 1438, 11639, 18809, 330, 585, 13, 9078, 3256, 198, 220, 220, 220, 2196, 11639, 16, 13, 15, 13, 19, 64, 16, 3256, 198, 220, 220, 220, 6764, 11639, 20459, 257, 300, 9226, 676, 13760, 582, 1362, 284, 787, 257, 2647, 29641, 329, 36446, 351, 21015, 2637, 11, 198, 220, 220, 220, 890, 62, 11213, 28, 6511, 62, 11213, 11, 198, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 11639, 5239, 14, 4102, 2902, 3256, 198, 220, 220, 220, 19016, 11639, 5450, 1378, 12567, 13, 785, 14, 33800, 1031, 3019, 22556, 19399, 87, 14, 18809, 330, 585, 13, 9078, 3256, 198, 220, 220, 220, 1772, 11639, 33800, 1031, 3019, 22556, 19399, 87, 3256, 198, 220, 220, 220, 1772, 62, 12888, 11639, 23734, 22, 2718, 5999, 10, 33800, 1031, 3019, 22556, 19399, 87, 31, 18417, 13, 77, 382, 2145, 13, 12567, 13, 785, 3256, 198, 220, 220, 220, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 705, 41206, 12678, 7904, 513, 532, 12995, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 5317, 1631, 7591, 1240, 7904, 34152, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 33221, 7904, 10442, 7712, 7904, 10934, 20003, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 34156, 7904, 7294, 40, 20010, 1079, 7904, 17168, 13789, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 24, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 940, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 7904, 5514, 3256, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 26286, 11639, 75, 9226, 676, 11, 36446, 11, 36446, 12, 75, 9226, 676, 11, 21606, 330, 585, 13, 9078, 3256, 198, 220, 220, 220, 10392, 28, 14692, 18809, 330, 585, 1600, 366, 18809, 330, 585, 13, 19199, 33116, 198, 220, 220, 220, 2721, 62, 47911, 28, 14692, 64, 952, 4023, 1600, 366, 71, 1134, 2743, 1600, 366, 88, 7063, 1600, 366, 35424, 382, 1600, 366, 79, 5173, 5109, 33116, 198, 220, 220, 220, 1628, 62, 6371, 82, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25624, 17905, 10354, 705, 5450, 1378, 12567, 13, 785, 14, 33800, 1031, 3019, 22556, 19399, 87, 14, 18809, 330, 585, 13, 9078, 14, 37165, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7416, 10354, 705, 5450, 1378, 12567, 13, 785, 14, 33800, 1031, 3019, 22556, 19399, 87, 14, 18809, 330, 585, 13, 9078, 14, 3256, 198, 220, 220, 220, 8964, 198, 8, 198 ]
2.56513
499
""" Chirp CWT with Ricker ======================= In this example, we analyze a chirp signal with a Ricker (a.k.a. Mexican Hat wavelet) """ # Configure JAX to work with 64-bit floating point precision. from jax.config import config config.update("jax_enable_x64", True) # %% # Let's import necessary libraries import jax import numpy as np import jax.numpy as jnp # CR.Sparse libraries import cr.sparse as crs import cr.sparse.wt as wt # Utilty functions to construct sinusoids import cr.sparse.dsp.signals as signals # Plotting import matplotlib.pyplot as plt # %% # Test signal generation # ------------------------------ # Sampling frequency in Hz fs = 100 # Signal duration in seconds T = 10 # Initial instantaneous frequency for the chirp f0 = 1 # Final instantaneous frequency for the chirp f1 = 4 # Construct the chirp signal t, x = signals.chirp(fs, T, f0, f1, initial_phase=0) # Plot the chirp signal fig, ax = plt.subplots(figsize=(12, 4)) ax.plot(t, x) ax.grid('on') # %% # Power spectrum # ------------------------------ # Compute the power spectrum f, sxx = crs.power_spectrum(x, dt=1/fs) # Plot the power spectrum fig, ax = plt.subplots(1, figsize=(12,4)) ax.plot(f, sxx) ax.grid('on') ax.set_xlabel('Frequency (Hz)') ax.set_ylabel('Power') # %% # As expected, the power spectrum is able to identify the # frequencies in the zone 1Hz to 4Hz in the chirp. # However, the spectrum is unable to localize the # changes in frequency over time. # %% # Ricker/Mexican Hat Wavelet # ------------------------------ wavelet = wt.build_wavelet('mexh') # generate the wavelet function for the range of time [-8, 8] psi, t_psi = wavelet.wavefun() # plot the wavelet fig, ax = plt.subplots(figsize=(12, 4)) ax.plot(t_psi, psi) ax.grid('on') # %% # Wavelet Analysis # ------------------------------ # select a set of scales for wavelet analysis # voices per octave nu = 8 scales = wt.scales_from_voices_per_octave(nu, jnp.arange(32)) scales = jax.device_get(scales) # Compute the wavelet analysis output = wt.cwt(x, scales, wavelet) # Identify the frequencies for the analysis frequencies = wt.scale2frequency(wavelet, scales) * fs # Plot the analysis cmap = plt.cm.seismic fig, ax = plt.subplots(1, figsize=(10,10)) title = 'Wavelet Transform (Power Spectrum) of signal' ylabel = 'Frequency (Hz)' xlabel = 'Time' power = (abs(output)) ** 2 levels = [0.0625, 0.125, 0.25, 0.5, 1, 2, 4, 8] contourlevels = np.log2(levels) im = ax.contourf(t, jnp.log2(frequencies), jnp.log2(power), contourlevels, extend='both',cmap=cmap) ax.set_title(title, fontsize=20) ax.set_ylabel(ylabel, fontsize=18) ax.set_xlabel(xlabel, fontsize=18) yticks = 2**np.arange(np.ceil(np.log2(frequencies.min())), np.ceil(np.log2(frequencies.max()))) ax.set_yticks(np.log2(yticks)) ax.set_yticklabels(yticks) ylim = ax.get_ylim()
[ 37811, 198, 1925, 343, 79, 24006, 51, 351, 8759, 263, 220, 198, 4770, 1421, 18604, 198, 198, 818, 428, 1672, 11, 356, 16602, 257, 442, 343, 79, 6737, 351, 257, 8759, 263, 357, 64, 13, 74, 13, 64, 13, 10816, 10983, 6769, 1616, 8, 198, 37811, 198, 198, 2, 17056, 495, 449, 25922, 284, 670, 351, 5598, 12, 2545, 12462, 966, 15440, 13, 220, 198, 6738, 474, 897, 13, 11250, 1330, 4566, 198, 11250, 13, 19119, 7203, 73, 897, 62, 21633, 62, 87, 2414, 1600, 6407, 8, 198, 198, 2, 43313, 220, 198, 2, 3914, 338, 1330, 3306, 12782, 198, 11748, 474, 897, 220, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 474, 897, 13, 77, 32152, 355, 474, 37659, 198, 2, 8740, 13, 50, 29572, 12782, 198, 11748, 1067, 13, 82, 29572, 355, 1067, 82, 198, 11748, 1067, 13, 82, 29572, 13, 46569, 355, 266, 83, 198, 2, 7273, 6267, 5499, 284, 5678, 7813, 385, 10994, 198, 11748, 1067, 13, 82, 29572, 13, 67, 2777, 13, 12683, 874, 355, 10425, 198, 2, 28114, 889, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 2, 43313, 220, 198, 2, 6208, 6737, 5270, 198, 2, 34400, 26171, 198, 2, 3409, 11347, 8373, 287, 26109, 198, 9501, 796, 1802, 198, 2, 26484, 9478, 287, 4201, 198, 51, 796, 838, 198, 2, 20768, 47707, 8373, 329, 262, 442, 343, 79, 198, 69, 15, 796, 352, 198, 2, 8125, 47707, 8373, 329, 262, 442, 343, 79, 198, 69, 16, 796, 604, 198, 2, 28407, 262, 442, 343, 79, 6737, 198, 83, 11, 2124, 796, 10425, 13, 354, 343, 79, 7, 9501, 11, 309, 11, 277, 15, 11, 277, 16, 11, 4238, 62, 40715, 28, 15, 8, 198, 2, 28114, 262, 442, 343, 79, 6737, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 5647, 7857, 16193, 1065, 11, 604, 4008, 198, 897, 13, 29487, 7, 83, 11, 2124, 8, 198, 897, 13, 25928, 10786, 261, 11537, 198, 198, 2, 43313, 220, 198, 2, 4333, 10958, 198, 2, 34400, 26171, 198, 198, 2, 3082, 1133, 262, 1176, 10958, 198, 69, 11, 264, 5324, 796, 1067, 82, 13, 6477, 62, 4443, 6582, 7, 87, 11, 288, 83, 28, 16, 14, 9501, 8, 198, 2, 28114, 262, 1176, 10958, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 2336, 7857, 16193, 1065, 11, 19, 4008, 198, 897, 13, 29487, 7, 69, 11, 264, 5324, 8, 198, 897, 13, 25928, 10786, 261, 11537, 198, 897, 13, 2617, 62, 87, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 897, 13, 2617, 62, 2645, 9608, 10786, 13434, 11537, 198, 2, 43313, 220, 198, 2, 1081, 2938, 11, 262, 1176, 10958, 318, 1498, 284, 5911, 262, 198, 2, 19998, 287, 262, 6516, 352, 7399, 284, 604, 7399, 287, 262, 442, 343, 79, 13, 220, 198, 2, 2102, 11, 262, 10958, 318, 5906, 284, 1957, 1096, 262, 220, 198, 2, 2458, 287, 8373, 625, 640, 13, 198, 198, 2, 43313, 220, 198, 2, 8759, 263, 14, 24670, 7490, 10983, 17084, 1616, 198, 2, 34400, 26171, 198, 19204, 1616, 796, 266, 83, 13, 11249, 62, 19204, 1616, 10786, 76, 1069, 71, 11537, 198, 2, 7716, 262, 6769, 1616, 2163, 329, 262, 2837, 286, 640, 25915, 23, 11, 807, 60, 198, 862, 72, 11, 256, 62, 862, 72, 796, 6769, 1616, 13, 19204, 12543, 3419, 198, 2, 7110, 262, 6769, 1616, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 5647, 7857, 16193, 1065, 11, 604, 4008, 198, 897, 13, 29487, 7, 83, 62, 862, 72, 11, 46231, 8, 198, 897, 13, 25928, 10786, 261, 11537, 198, 198, 2, 43313, 220, 198, 2, 17084, 1616, 14691, 198, 2, 34400, 26171, 198, 2, 2922, 257, 900, 286, 16252, 329, 6769, 1616, 3781, 198, 2, 10839, 583, 19318, 1015, 198, 28803, 796, 807, 198, 1416, 2040, 796, 266, 83, 13, 1416, 2040, 62, 6738, 62, 13038, 1063, 62, 525, 62, 38441, 1015, 7, 28803, 11, 474, 37659, 13, 283, 858, 7, 2624, 4008, 198, 1416, 2040, 796, 474, 897, 13, 25202, 62, 1136, 7, 1416, 2040, 8, 198, 2, 3082, 1133, 262, 6769, 1616, 3781, 198, 22915, 796, 266, 83, 13, 66, 46569, 7, 87, 11, 16252, 11, 6769, 1616, 8, 198, 2, 11440, 1958, 262, 19998, 329, 262, 3781, 198, 69, 8897, 3976, 796, 266, 83, 13, 9888, 17, 35324, 7, 19204, 1616, 11, 16252, 8, 1635, 43458, 198, 2, 28114, 262, 3781, 198, 66, 8899, 796, 458, 83, 13, 11215, 13, 325, 1042, 291, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 2336, 7857, 16193, 940, 11, 940, 4008, 198, 198, 7839, 796, 705, 39709, 1616, 26981, 357, 13434, 27217, 8, 286, 6737, 6, 198, 2645, 9608, 796, 705, 37, 28707, 357, 7399, 33047, 198, 87, 18242, 796, 705, 7575, 6, 198, 198, 6477, 796, 357, 8937, 7, 22915, 4008, 12429, 362, 198, 46170, 796, 685, 15, 13, 3312, 1495, 11, 657, 13, 11623, 11, 657, 13, 1495, 11, 657, 13, 20, 11, 352, 11, 362, 11, 604, 11, 807, 60, 198, 3642, 454, 46170, 796, 45941, 13, 6404, 17, 7, 46170, 8, 198, 198, 320, 796, 7877, 13, 3642, 454, 69, 7, 83, 11, 474, 37659, 13, 6404, 17, 7, 69, 8897, 3976, 828, 474, 37659, 13, 6404, 17, 7, 6477, 828, 542, 454, 46170, 11, 9117, 11639, 16885, 3256, 66, 8899, 28, 66, 8899, 8, 198, 198, 897, 13, 2617, 62, 7839, 7, 7839, 11, 10369, 7857, 28, 1238, 8, 198, 897, 13, 2617, 62, 2645, 9608, 7, 2645, 9608, 11, 10369, 7857, 28, 1507, 8, 198, 897, 13, 2617, 62, 87, 18242, 7, 87, 18242, 11, 10369, 7857, 28, 1507, 8, 198, 198, 20760, 3378, 796, 362, 1174, 37659, 13, 283, 858, 7, 37659, 13, 344, 346, 7, 37659, 13, 6404, 17, 7, 69, 8897, 3976, 13, 1084, 28955, 828, 45941, 13, 344, 346, 7, 37659, 13, 6404, 17, 7, 69, 8897, 3976, 13, 9806, 3419, 22305, 198, 897, 13, 2617, 62, 20760, 3378, 7, 37659, 13, 6404, 17, 7, 20760, 3378, 4008, 198, 897, 13, 2617, 62, 20760, 624, 23912, 1424, 7, 20760, 3378, 8, 198, 88, 2475, 796, 7877, 13, 1136, 62, 88, 2475, 3419, 628 ]
2.717036
1,039
# # ISC License # # Copyright (C) 2021-present lifehackerhansol # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import discord from discord.ext import commands class Maps(commands.Cog): """ Map commands """ @commands.command() async def kalos(self, ctx): """Kalos map""" await self.simple_embed(ctx, "kalos.png", "Kalos Region Map") @commands.command() async def r1(self, ctx): """Route 1""" await self.simple_embed(ctx, "r1.png", "Route 1") @commands.command() async def r2(self, ctx): """Route 2""" await self.simple_embed(ctx, "r2.png", "Route 2") @commands.command() async def r3(self, ctx): """Route 3""" await self.simple_embed(ctx, "r3.png", "Route 3") @commands.command() async def r4(self, ctx): """Route 4""" await self.simple_embed(ctx, "r4.png", "Route 4") @commands.command() async def r5(self, ctx): """Route 5""" await self.simple_embed(ctx, "r5.png", "Route 5") @commands.command() async def r6(self, ctx): """Route 6""" await self.simple_embed(ctx, "r6.png", "Route 6") @commands.command() async def r7(self, ctx): """Route 7""" await self.simple_embed(ctx, "r7.png", "Route 7") @commands.command() async def r8(self, ctx): """Route 8""" await self.simple_embed(ctx, "r8.png", "Route 8") @commands.command() async def r9(self, ctx): """Route 9""" await self.simple_embed(ctx, "r9.png", "Route 9") @commands.command() async def r10(self, ctx): """Route 10""" await self.simple_embed(ctx, "r10.png", "Route 10") @commands.command() async def r11(self, ctx): """Route 11""" await self.simple_embed(ctx, "r11.png", "Route 11") @commands.command() async def r12(self, ctx): """Route 12""" await self.simple_embed(ctx, "r12.png", "Route 12") @commands.command() async def r13(self, ctx): """Route 13""" await self.simple_embed(ctx, "r13.png", "Route 13") @commands.command() async def r14(self, ctx): """Route 14""" await self.simple_embed(ctx, "r14.png", "Route 14") @commands.command() async def r15(self, ctx): """Route 15""" await self.simple_embed(ctx, "r15.png", "Route 15") @commands.command() async def r16(self, ctx): """Route 16""" await self.simple_embed(ctx, "r16.png", "Route 16") @commands.command() async def r17(self, ctx): """Route 17""" await self.simple_embed(ctx, "r17.png", "Route 17") @commands.command() async def r18(self, ctx): """Route 18""" await self.simple_embed(ctx, "r18.png", "Route 18") @commands.command() async def r19(self, ctx): """Route 19""" await self.simple_embed(ctx, "r19.png", "Route 19") @commands.command() async def r20(self, ctx): """Route 20""" await self.simple_embed(ctx, "r20.png", "Route 20") @commands.command() async def r21(self, ctx): """Route 21""" await self.simple_embed(ctx, "r21.png", "Route 21") @commands.command() async def r22(self, ctx): """Route 22""" await self.simple_embed(ctx, "r22.png", "Route 22") @commands.command() async def vaniville(self, ctx): """Vaniville Town""" await self.simple_embed(ctx, "vaniville.png", "Vaniville Town") @commands.command() async def aquacorde(self, ctx): """Aquacorde Town""" await self.simple_embed(ctx, "aquacorde.png", "Aquacorde Town") @commands.command() async def santalune(self, ctx): """Santalune City""" await self.simple_embed(ctx, "santalune.png", "Santalune City") @commands.command() async def lumiosesouth(self, ctx): """Lumiose City South""" await self.simple_embed(ctx, "lumiosesouth.png", "Lumiose City - South Boulevard") @commands.command() async def lumiosenorth(self, ctx): """Lumiose City North""" await self.simple_embed(ctx, "lumiosenorth.png", "Lumiose City - North Boulevard") @commands.command() async def camphrier(self, ctx): """Camphrier Town""" await self.simple_embed(ctx, "camphrier.png", "Camphrier Town") @commands.command() async def cyllage(self, ctx): """Cyllage City""" await self.simple_embed(ctx, "cyllage.png", "Cyllage City") @commands.command() async def ambrette(self, ctx): """Ambrette Town""" await self.simple_embed(ctx, "ambrette.png", "Ambrette Town") async def geosenge(self, ctx): """Geosenge Town""" await self.simple_embed(ctx, "geosenge.png", "Geosenge Town") @commands.command() async def shalour(self, ctx): """Shalour City""" await self.simple_embed(ctx, "shalour.png", "Shalour City") @commands.command() async def coumarine(self, ctx): """Coumarine City""" await self.simple_embed(ctx, "coumarine.png", "Coumarine City") @commands.command() async def laverre(self, ctx): """Laverre City""" await self.simple_embed(ctx, "laverre.png", "Laverre City") @commands.command() async def dendemille(self, ctx): """Dendemille Town""" await self.simple_embed(ctx, "dendemille.png", "Dendemille Town") @commands.command() async def anistar(self, ctx): """Anistar City""" await self.simple_embed(ctx, "anistar.png", "Anistar City") @commands.command() async def couriway(self, ctx): """Couriway Town""" await self.simple_embed(ctx, "couriway.png", "Couriway Town") @commands.command() async def kiloude(self, ctx): """Kiloude City""" await self.simple_embed(ctx, "kiloude.png", "Kiloude City")
[ 2, 198, 2, 3180, 34, 13789, 198, 2, 198, 2, 15069, 357, 34, 8, 33448, 12, 25579, 1204, 71, 10735, 71, 504, 349, 198, 2, 198, 2, 2448, 3411, 284, 779, 11, 4866, 11, 13096, 11, 290, 14, 273, 14983, 428, 3788, 329, 597, 198, 2, 4007, 351, 393, 1231, 6838, 318, 29376, 7520, 11, 2810, 326, 262, 2029, 198, 2, 6634, 4003, 290, 428, 7170, 4003, 1656, 287, 477, 9088, 13, 198, 2, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1, 5357, 3336, 44746, 13954, 48778, 50, 11096, 34764, 11015, 198, 2, 13315, 23337, 9795, 5390, 12680, 47466, 47783, 2751, 11096, 8959, 49094, 34764, 11015, 3963, 198, 2, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 13, 3268, 8005, 49261, 50163, 3336, 44746, 9348, 43031, 19146, 7473, 198, 2, 15529, 38846, 11, 42242, 11, 3268, 17931, 23988, 11, 6375, 7102, 5188, 10917, 3525, 12576, 29506, 25552, 6375, 15529, 29506, 25552, 198, 2, 25003, 15821, 36, 5959, 15731, 16724, 2751, 16034, 406, 18420, 3963, 23210, 11, 42865, 6375, 4810, 19238, 29722, 11, 7655, 2767, 16879, 3268, 3537, 198, 2, 40282, 3963, 27342, 10659, 11, 399, 7156, 43, 3528, 18310, 6375, 25401, 309, 9863, 40, 20958, 40282, 11, 5923, 1797, 2751, 16289, 3963, 198, 2, 6375, 3268, 7102, 45, 24565, 13315, 3336, 23210, 6375, 19878, 13775, 10725, 5222, 3963, 12680, 47466, 13, 198, 2, 198, 198, 11748, 36446, 198, 198, 6738, 36446, 13, 2302, 1330, 9729, 628, 198, 4871, 20347, 7, 9503, 1746, 13, 34, 519, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9347, 9729, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 479, 41823, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 41428, 418, 3975, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 74, 41823, 13, 11134, 1600, 366, 41428, 418, 17718, 9347, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 16, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 352, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 16, 13, 11134, 1600, 366, 43401, 352, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 17, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 362, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 17, 13, 11134, 1600, 366, 43401, 362, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 18, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 513, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 18, 13, 11134, 1600, 366, 43401, 513, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 19, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 604, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 19, 13, 11134, 1600, 366, 43401, 604, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 20, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 642, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 20, 13, 11134, 1600, 366, 43401, 642, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 21, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 718, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 21, 13, 11134, 1600, 366, 43401, 718, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 22, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 767, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 22, 13, 11134, 1600, 366, 43401, 767, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 23, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 807, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 23, 13, 11134, 1600, 366, 43401, 807, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 24, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 860, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 24, 13, 11134, 1600, 366, 43401, 860, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 940, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 838, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 940, 13, 11134, 1600, 366, 43401, 838, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1157, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1367, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1157, 13, 11134, 1600, 366, 43401, 1367, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1065, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1105, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1065, 13, 11134, 1600, 366, 43401, 1105, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1485, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1511, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1485, 13, 11134, 1600, 366, 43401, 1511, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1415, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1478, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1415, 13, 11134, 1600, 366, 43401, 1478, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1314, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1315, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1314, 13, 11134, 1600, 366, 43401, 1315, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1433, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1467, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1433, 13, 11134, 1600, 366, 43401, 1467, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1558, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1596, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1558, 13, 11134, 1600, 366, 43401, 1596, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1507, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1248, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1507, 13, 11134, 1600, 366, 43401, 1248, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1129, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 678, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1129, 13, 11134, 1600, 366, 43401, 678, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1238, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 1160, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1238, 13, 11134, 1600, 366, 43401, 1160, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 2481, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 2310, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 2481, 13, 11134, 1600, 366, 43401, 2310, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 374, 1828, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43401, 2534, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 81, 1828, 13, 11134, 1600, 366, 43401, 2534, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 5719, 2464, 293, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 25298, 2464, 293, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 10438, 2464, 293, 13, 11134, 1600, 366, 25298, 2464, 293, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 14839, 330, 17531, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 32, 421, 330, 17531, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 36129, 330, 17531, 13, 11134, 1600, 366, 32, 421, 330, 17531, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 264, 415, 282, 1726, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 415, 282, 1726, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 82, 415, 282, 1726, 13, 11134, 1600, 366, 50, 415, 282, 1726, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 46390, 4267, 274, 1536, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43, 12994, 577, 2254, 2520, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 75, 388, 4267, 274, 1536, 13, 11134, 1600, 366, 43, 12994, 577, 2254, 532, 2520, 23889, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 46390, 4267, 268, 1506, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43, 12994, 577, 2254, 2258, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 75, 388, 4267, 268, 1506, 13, 11134, 1600, 366, 43, 12994, 577, 2254, 532, 2258, 23889, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 1413, 71, 5277, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21111, 71, 5277, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 16544, 71, 5277, 13, 11134, 1600, 366, 21111, 71, 5277, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 3075, 297, 496, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20418, 297, 496, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 948, 297, 496, 13, 11134, 1600, 366, 20418, 297, 496, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 4915, 42908, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35649, 42908, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 4131, 42908, 13, 11134, 1600, 366, 35649, 42908, 8329, 4943, 628, 220, 220, 220, 30351, 825, 4903, 418, 3540, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10082, 418, 3540, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 469, 418, 3540, 13, 11134, 1600, 366, 10082, 418, 3540, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 427, 282, 454, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2484, 282, 454, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 1477, 282, 454, 13, 11134, 1600, 366, 2484, 282, 454, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 2284, 42380, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 34, 280, 42380, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 66, 280, 42380, 13, 11134, 1600, 366, 34, 280, 42380, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 8591, 332, 260, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 43, 8770, 260, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 5031, 332, 260, 13, 11134, 1600, 366, 43, 8770, 260, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 288, 437, 368, 8270, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35, 437, 368, 8270, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 67, 437, 368, 8270, 13, 11134, 1600, 366, 35, 437, 368, 8270, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 281, 47229, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2025, 47229, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 272, 47229, 13, 11134, 1600, 366, 2025, 47229, 2254, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 2284, 380, 1014, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 34, 10300, 1014, 8329, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 66, 10300, 1014, 13, 11134, 1600, 366, 34, 10300, 1014, 8329, 4943, 628, 220, 220, 220, 2488, 9503, 1746, 13, 21812, 3419, 198, 220, 220, 220, 30351, 825, 8769, 2778, 68, 7, 944, 11, 269, 17602, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 42, 346, 2778, 68, 2254, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 36439, 62, 20521, 7, 49464, 11, 366, 34553, 2778, 68, 13, 11134, 1600, 366, 42, 346, 2778, 68, 2254, 4943, 628 ]
2.339576
2,830
from django.contrib import admin from .models import Post, TagDict # Register your models here. admin.site.register(Post) admin.site.register(TagDict)
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 198, 6738, 764, 27530, 1330, 2947, 11, 17467, 35, 713, 198, 198, 2, 17296, 534, 4981, 994, 13, 198, 198, 28482, 13, 15654, 13, 30238, 7, 6307, 8, 198, 28482, 13, 15654, 13, 30238, 7, 24835, 35, 713, 8, 628 ]
3.163265
49
from src.day4 import Board, Game, load_data from unittest.mock import patch, mock_open EXAMPLE_IN = """7,4,9,5,11,17,23,2,0,14,21,24,10,16,13,6,15,25,12,22,18,20,8,19,3,26,1 22 13 17 11 0 8 2 23 4 24 21 9 14 16 7 6 10 3 18 5 1 12 20 15 19 3 15 0 2 22 9 18 13 17 5 19 8 7 25 23 20 11 10 24 4 14 21 16 12 6 14 21 17 24 4 10 16 15 9 19 18 8 23 26 20 22 11 13 6 5 2 0 12 3 7 """
[ 6738, 12351, 13, 820, 19, 1330, 5926, 11, 3776, 11, 3440, 62, 7890, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 8529, 11, 15290, 62, 9654, 198, 198, 6369, 2390, 16437, 62, 1268, 796, 37227, 22, 11, 19, 11, 24, 11, 20, 11, 1157, 11, 1558, 11, 1954, 11, 17, 11, 15, 11, 1415, 11, 2481, 11, 1731, 11, 940, 11, 1433, 11, 1485, 11, 21, 11, 1314, 11, 1495, 11, 1065, 11, 1828, 11, 1507, 11, 1238, 11, 23, 11, 1129, 11, 18, 11, 2075, 11, 16, 198, 198, 1828, 1511, 1596, 1367, 220, 657, 198, 807, 220, 362, 2242, 220, 604, 1987, 198, 2481, 220, 860, 1478, 1467, 220, 767, 198, 718, 838, 220, 513, 1248, 220, 642, 198, 352, 1105, 1160, 1315, 678, 628, 513, 1315, 220, 657, 220, 362, 2534, 198, 860, 1248, 1511, 1596, 220, 642, 198, 1129, 220, 807, 220, 767, 1679, 2242, 198, 1238, 1367, 838, 1987, 220, 604, 198, 1415, 2310, 1467, 1105, 220, 718, 198, 198, 1415, 2310, 1596, 1987, 220, 604, 198, 940, 1467, 1315, 220, 860, 678, 198, 1507, 220, 807, 2242, 2608, 1160, 198, 1828, 1367, 1511, 220, 718, 220, 642, 198, 362, 220, 657, 1105, 220, 513, 220, 767, 198, 37811, 628, 628, 628 ]
1.980769
208
#!/usr/bin/env python # Copyright 2012-2018 CERN for the benefit of the ATLAS collaboration. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Authors: # - Mario Lassnig <[email protected]>, 2012-2018 # - Hannes Hansen <[email protected]>, 2018-2019 # # PY3K COMPATIBLE from __future__ import print_function from traceback import format_exc try: from urlparse import parse_qs except ImportError: from urllib.parse import parse_qs from web import application, ctx, OK, header, InternalError from rucio.api.authentication import validate_auth_token from rucio.api.credential import get_signed_url from rucio.common.exception import RucioException from rucio.common.utils import generate_http_error from rucio.web.rest.common import RucioController, check_accept_header_wrapper URLS = ( '/signurl?$', 'SignURL', ) class SignURL(RucioController): """ Request a signed URL. """ def OPTIONS(self): """ HTTP Success: 200 OK Allow cross-site scripting. Explicit for Authorisation. """ header('Access-Control-Allow-Origin', ctx.env.get('HTTP_ORIGIN')) header('Access-Control-Allow-Headers', ctx.env.get('HTTP_ACCESS_CONTROL_REQUEST_HEADERS')) header('Access-Control-Allow-Methods', '*') header('Access-Control-Allow-Credentials', 'true') header('Access-Control-Expose-Headers', 'X-Rucio-Auth-Token') raise OK @check_accept_header_wrapper(['application/octet-stream']) def GET(self): """ HTTP Success: 200 OK HTTP Error: 400 Bad Request 401 Unauthorized 406 Not Acceptable 500 Internal Server Error :param Rucio-VO: VO name as a string (Multi-VO only). :param Rucio-Account: Account identifier as a string. :param Rucio-AppID: Application identifier as a string. :returns: Signed URL. """ vo = ctx.env.get('HTTP_X_RUCIO_VO') account = ctx.env.get('HTTP_X_RUCIO_ACCOUNT') appid = ctx.env.get('HTTP_X_RUCIO_APPID') if appid is None: appid = 'unknown' ip = ctx.env.get('HTTP_X_FORWARDED_FOR') if ip is None: ip = ctx.ip try: validate_auth_token(ctx.env.get('HTTP_X_RUCIO_AUTH_TOKEN')) except RucioException as e: raise generate_http_error(500, e.__class__.__name__, e.args[0][0]) except Exception as e: print(format_exc()) raise InternalError(e) svc, operation, url = None, None, None try: params = parse_qs(ctx.query[1:]) lifetime = params.get('lifetime', [600])[0] service = params.get('svc', ['gcs'])[0] operation = params.get('op', ['read'])[0] url = params.get('url', [None])[0] except ValueError: raise generate_http_error(400, 'ValueError', 'Cannot decode json parameter list') if service not in ['gcs', 's3', 'swift']: raise generate_http_error(400, 'ValueError', 'Parameter "svc" must be either empty(=gcs), gcs, s3 or swift') if url is None: raise generate_http_error(400, 'ValueError', 'Parameter "url" not found') if operation not in ['read', 'write', 'delete']: raise generate_http_error(400, 'ValueError', 'Parameter "op" must be either empty(=read), read, write, or delete.') try: result = get_signed_url(account, appid, ip, service=service, operation=operation, url=url, lifetime=lifetime, vo=vo) except RucioException as e: raise generate_http_error(500, e.__class__.__name__, e.args[0]) except Exception as e: print(format_exc()) raise InternalError(e) if not result: raise generate_http_error(401, 'CannotAuthenticate', 'Cannot generate signed URL for account %(account)s' % locals()) return result """---------------------- Web service startup ----------------------""" APP = application(URLS, globals()) application = APP.wsgifunc()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 15069, 2321, 12, 7908, 327, 28778, 329, 262, 4414, 286, 262, 41051, 1921, 12438, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 2, 46665, 25, 198, 2, 532, 10682, 406, 562, 77, 328, 1279, 3876, 952, 13, 31172, 77, 328, 31, 30903, 13, 354, 22330, 2321, 12, 7908, 198, 2, 532, 14353, 274, 27667, 1279, 71, 1236, 274, 13, 73, 461, 672, 13, 71, 33807, 31, 30903, 13, 354, 22330, 2864, 12, 23344, 198, 2, 198, 2, 350, 56, 18, 42, 24301, 1404, 34563, 198, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 6738, 12854, 1891, 1330, 5794, 62, 41194, 198, 28311, 25, 198, 220, 220, 220, 422, 19016, 29572, 1330, 21136, 62, 48382, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 422, 2956, 297, 571, 13, 29572, 1330, 21136, 62, 48382, 198, 6738, 3992, 1330, 3586, 11, 269, 17602, 11, 7477, 11, 13639, 11, 18628, 12331, 198, 198, 6738, 374, 1229, 952, 13, 15042, 13, 41299, 3299, 1330, 26571, 62, 18439, 62, 30001, 198, 6738, 374, 1229, 952, 13, 15042, 13, 66, 445, 1843, 1330, 651, 62, 32696, 62, 6371, 198, 6738, 374, 1229, 952, 13, 11321, 13, 1069, 4516, 1330, 371, 1229, 952, 16922, 198, 6738, 374, 1229, 952, 13, 11321, 13, 26791, 1330, 7716, 62, 4023, 62, 18224, 198, 6738, 374, 1229, 952, 13, 12384, 13, 2118, 13, 11321, 1330, 371, 1229, 952, 22130, 11, 2198, 62, 13635, 62, 25677, 62, 48553, 198, 198, 4261, 6561, 796, 357, 198, 220, 220, 220, 31051, 12683, 6371, 30, 3, 3256, 705, 11712, 21886, 3256, 198, 8, 628, 198, 4871, 5865, 21886, 7, 49, 1229, 952, 22130, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 19390, 257, 4488, 10289, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 39852, 11053, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 16282, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 939, 7477, 628, 220, 220, 220, 220, 220, 220, 220, 22507, 3272, 12, 15654, 36883, 13, 11884, 329, 6434, 5612, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 13639, 10786, 15457, 12, 15988, 12, 35265, 12, 39688, 3256, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 1581, 3528, 1268, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 10786, 15457, 12, 15988, 12, 35265, 12, 13847, 364, 3256, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 26861, 7597, 62, 10943, 5446, 3535, 62, 2200, 35780, 62, 37682, 4877, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 10786, 15457, 12, 15988, 12, 35265, 12, 46202, 3256, 705, 9, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 10786, 15457, 12, 15988, 12, 35265, 12, 34, 445, 14817, 3256, 705, 7942, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 10786, 15457, 12, 15988, 12, 3109, 3455, 12, 13847, 364, 3256, 705, 55, 12, 49, 1229, 952, 12, 30515, 12, 30642, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 7477, 628, 220, 220, 220, 2488, 9122, 62, 13635, 62, 25677, 62, 48553, 7, 17816, 31438, 14, 38441, 316, 12, 5532, 6, 12962, 198, 220, 220, 220, 825, 17151, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 16282, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 939, 7477, 628, 220, 220, 220, 220, 220, 220, 220, 14626, 13047, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7337, 7772, 19390, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22219, 791, 19721, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45439, 1892, 21699, 540, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5323, 18628, 9652, 13047, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 371, 1229, 952, 12, 29516, 25, 30578, 1438, 355, 257, 4731, 357, 29800, 12, 29516, 691, 737, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 371, 1229, 952, 12, 30116, 25, 10781, 27421, 355, 257, 4731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 371, 1229, 952, 12, 4677, 2389, 25, 15678, 27421, 355, 257, 4731, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 36215, 10289, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 7608, 796, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 55, 62, 49, 9598, 9399, 62, 29516, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1848, 796, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 55, 62, 49, 9598, 9399, 62, 26861, 28270, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 598, 312, 796, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 55, 62, 49, 9598, 9399, 62, 24805, 2389, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 598, 312, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 598, 312, 796, 705, 34680, 6, 198, 220, 220, 220, 220, 220, 220, 220, 20966, 796, 269, 17602, 13, 24330, 13, 1136, 10786, 40717, 62, 55, 62, 13775, 39743, 1961, 62, 13775, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 20966, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20966, 796, 269, 17602, 13, 541, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 18439, 62, 30001, 7, 49464, 13, 24330, 13, 1136, 10786, 40717, 62, 55, 62, 49, 9598, 9399, 62, 32, 24318, 62, 10468, 43959, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 371, 1229, 952, 16922, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 4059, 11, 304, 13, 834, 4871, 834, 13, 834, 3672, 834, 11, 304, 13, 22046, 58, 15, 7131, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 18982, 62, 41194, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 18628, 12331, 7, 68, 8, 628, 220, 220, 220, 220, 220, 220, 220, 264, 28435, 11, 4905, 11, 19016, 796, 6045, 11, 6045, 11, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 796, 21136, 62, 48382, 7, 49464, 13, 22766, 58, 16, 25, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10869, 796, 42287, 13, 1136, 10786, 36195, 8079, 3256, 685, 8054, 12962, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2139, 796, 42287, 13, 1136, 10786, 21370, 66, 3256, 37250, 70, 6359, 6, 12962, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4905, 796, 42287, 13, 1136, 10786, 404, 3256, 37250, 961, 6, 12962, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 796, 42287, 13, 1136, 10786, 6371, 3256, 685, 14202, 12962, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 7029, 11, 705, 11395, 12331, 3256, 705, 34, 34574, 36899, 33918, 11507, 1351, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2139, 407, 287, 37250, 70, 6359, 3256, 705, 82, 18, 3256, 705, 2032, 2135, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 7029, 11, 705, 11395, 12331, 3256, 705, 36301, 366, 21370, 66, 1, 1276, 307, 2035, 6565, 7, 28, 70, 6359, 828, 308, 6359, 11, 264, 18, 393, 14622, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 19016, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 7029, 11, 705, 11395, 12331, 3256, 705, 36301, 366, 6371, 1, 407, 1043, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 4905, 407, 287, 37250, 961, 3256, 705, 13564, 3256, 705, 33678, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 7029, 11, 705, 11395, 12331, 3256, 705, 36301, 366, 404, 1, 1276, 307, 2035, 6565, 7, 28, 961, 828, 1100, 11, 3551, 11, 393, 12233, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 651, 62, 32696, 62, 6371, 7, 23317, 11, 598, 312, 11, 20966, 11, 2139, 28, 15271, 11, 4905, 28, 27184, 11, 19016, 28, 6371, 11, 10869, 28, 36195, 8079, 11, 7608, 28, 13038, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 371, 1229, 952, 16922, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 4059, 11, 304, 13, 834, 4871, 834, 13, 834, 3672, 834, 11, 304, 13, 22046, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 18982, 62, 41194, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 18628, 12331, 7, 68, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1255, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7716, 62, 4023, 62, 18224, 7, 21844, 11, 705, 34, 34574, 47649, 5344, 3256, 705, 34, 34574, 7716, 4488, 10289, 329, 1848, 4064, 7, 23317, 8, 82, 6, 4064, 17205, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 198, 37811, 19351, 438, 198, 220, 220, 5313, 2139, 13693, 198, 19351, 438, 37811, 198, 198, 24805, 796, 3586, 7, 4261, 6561, 11, 15095, 874, 28955, 198, 31438, 796, 43504, 13, 18504, 27908, 19524, 3419, 198 ]
2.453919
1,888
__author__ = 'dkarchmer' import datetime import json import logging import pprint import boto3 from django.conf import settings from .common import AWS_REGION # Get an instance of a logger logger = logging.getLogger(__name__) FIREHOSE_STREAM_NAME = getattr(settings, 'FIREHOSE_STREAM_NAME') firehose_client = boto3.client('firehose', region_name=AWS_REGION)
[ 834, 9800, 834, 796, 705, 34388, 998, 647, 6, 198, 198, 11748, 4818, 8079, 198, 11748, 33918, 198, 11748, 18931, 198, 11748, 279, 4798, 198, 198, 11748, 275, 2069, 18, 198, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 198, 6738, 764, 11321, 1330, 30865, 62, 31553, 2849, 198, 198, 2, 3497, 281, 4554, 286, 257, 49706, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 198, 11674, 2200, 39, 14058, 62, 2257, 32235, 62, 20608, 796, 651, 35226, 7, 33692, 11, 705, 11674, 2200, 39, 14058, 62, 2257, 32235, 62, 20608, 11537, 198, 198, 6495, 71, 577, 62, 16366, 796, 275, 2069, 18, 13, 16366, 10786, 6495, 71, 577, 3256, 3814, 62, 3672, 28, 12298, 50, 62, 31553, 2849, 8, 628, 628, 198 ]
2.816794
131
import sys from PySide6 import QtGui
[ 11748, 25064, 198, 6738, 9485, 24819, 21, 1330, 33734, 8205, 72, 198 ]
3.083333
12
file_object.writelines(list_of_text_strings) open('abinfile', 'wb').writelines(list_of_data_strings)
[ 7753, 62, 15252, 13, 8933, 20655, 7, 4868, 62, 1659, 62, 5239, 62, 37336, 8, 198, 9654, 10786, 6014, 7753, 3256, 705, 39346, 27691, 8933, 20655, 7, 4868, 62, 1659, 62, 7890, 62, 37336, 8, 198 ]
2.805556
36
from django.db import models
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 628 ]
3.75
8
# Copyright 2018 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import os import six.moves.urllib.parse # pylint: disable=import-error from core import benchmark_finders from core import benchmark_utils from telemetry.story import story_filter _SHARD_MAP_DIR = os.path.join(os.path.dirname(__file__), 'shard_maps') _ALL_BENCHMARKS_BY_NAMES = dict( (b.Name(), b) for b in benchmark_finders.GetAllBenchmarks()) OFFICIAL_BENCHMARKS = frozenset( b for b in benchmark_finders.GetOfficialBenchmarks() if not b.Name().startswith('UNSCHEDULED_')) CONTRIB_BENCHMARKS = frozenset(benchmark_finders.GetContribBenchmarks()) ALL_SCHEDULEABLE_BENCHMARKS = OFFICIAL_BENCHMARKS | CONTRIB_BENCHMARKS GTEST_STORY_NAME = '_gtest_' # Global |benchmarks| is convenient way to keep BenchmarkConfig objects # unique, which allows us to use set subtraction below. benchmarks = {b.Name(): {True: BenchmarkConfig(b, abridged=True), False: BenchmarkConfig(b, abridged=False)} for b in ALL_SCHEDULEABLE_BENCHMARKS} OFFICIAL_BENCHMARK_CONFIGS = PerfSuite( [_GetBenchmarkConfig(b.Name()) for b in OFFICIAL_BENCHMARKS]) # power.mobile requires special hardware. # only run blink_perf.sanitizer-api on linux-perf. OFFICIAL_BENCHMARK_CONFIGS = OFFICIAL_BENCHMARK_CONFIGS.Remove([ 'power.mobile', 'blink_perf.sanitizer-api', ]) # TODO(crbug.com/965158): Remove OFFICIAL_BENCHMARK_NAMES once sharding # scripts are no longer using it. OFFICIAL_BENCHMARK_NAMES = frozenset( b.name for b in OFFICIAL_BENCHMARK_CONFIGS.Frozenset()) # TODO(crbug.com/1030840): Stop using these 'OFFICIAL_EXCEPT' suites and instead # define each benchmarking config separately as is already done for many of the # suites below. _OFFICIAL_EXCEPT_DISPLAY_LOCKING = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove( ['blink_perf.display_locking']) _OFFICIAL_EXCEPT_JETSTREAM2 = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove( ['jetstream2']) _OFFICIAL_EXCEPT_DISPLAY_LOCKING_JETSTREAM2 = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove( ['blink_perf.display_locking', 'jetstream2']) _CHROME_HEALTH_BENCHMARK_CONFIGS_DESKTOP = PerfSuite([ _GetBenchmarkConfig('system_health.common_desktop') ]) _LINUX_BENCHMARK_CONFIGS = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'v8.runtime_stats.top_25', ]).Add([ 'blink_perf.sanitizer-api', ]) _LINUX_EXECUTABLE_CONFIGS = frozenset([ # TODO(crbug.com/811766): Add views_perftests. _base_perftests(200), _load_library_perf_tests(), _performance_browser_tests(165), _tracing_perftests(5), ]) _MAC_HIGH_END_BENCHMARK_CONFIGS = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'v8.runtime_stats.top_25', ]) _MAC_HIGH_END_EXECUTABLE_CONFIGS = frozenset([ _base_perftests(300), _dawn_perf_tests(330), _performance_browser_tests(190), _views_perftests(), ]) _MAC_LOW_END_BENCHMARK_CONFIGS = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'jetstream2', 'v8.runtime_stats.top_25', ]) _MAC_LOW_END_EXECUTABLE_CONFIGS = frozenset([ _load_library_perf_tests(), _performance_browser_tests(210), ]) _MAC_M1_MINI_2020_BENCHMARK_CONFIGS = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'v8.runtime_stats.top_25', ]) _MAC_M1_MINI_2020_EXECUTABLE_CONFIGS = frozenset([ _base_perftests(300), _dawn_perf_tests(330), _performance_browser_tests(190), _views_perftests(), ]) _WIN_10_BENCHMARK_CONFIGS = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'v8.runtime_stats.top_25', ]) _WIN_10_EXECUTABLE_CONFIGS = frozenset([ _base_perftests(200), _components_perftests(125), _dawn_perf_tests(600), _views_perftests(), ]) _WIN_10_LOW_END_BENCHMARK_CONFIGS = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', ]) _WIN_10_LOW_END_HP_CANDIDATE_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('v8.browsing_desktop'), _GetBenchmarkConfig('rendering.desktop', abridged=True), ]) _WIN_10_AMD_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('jetstream'), _GetBenchmarkConfig('jetstream2'), _GetBenchmarkConfig('kraken'), _GetBenchmarkConfig('octane'), _GetBenchmarkConfig('system_health.common_desktop'), ]) _WIN_7_BENCHMARK_CONFIGS = PerfSuite([ 'loading.desktop', ]).Abridge([ 'loading.desktop', ]) _WIN_7_GPU_BENCHMARK_CONFIGS = PerfSuite(['rendering.desktop']).Abridge( ['rendering.desktop']) _ANDROID_GO_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('system_health.memory_mobile'), _GetBenchmarkConfig('system_health.common_mobile'), _GetBenchmarkConfig('startup.mobile'), _GetBenchmarkConfig('system_health.webview_startup'), _GetBenchmarkConfig('v8.browsing_mobile'), _GetBenchmarkConfig('speedometer'), _GetBenchmarkConfig('speedometer2')]) _ANDROID_GO_WEBVIEW_BENCHMARK_CONFIGS = _ANDROID_GO_BENCHMARK_CONFIGS # Note that Nexus 5 bot capacity is very low, so we must severely limit # the benchmarks that we run on it and abridge large benchmarks in order # to run them on it. See crbug.com/1030840 for details. _ANDROID_NEXUS_5_BENCHMARK_CONFIGS = PerfSuite([ 'loading.mobile', 'startup.mobile', 'system_health.common_mobile', 'system_health.webview_startup', ]).Abridge(['loading.mobile', 'startup.mobile', 'system_health.common_mobile']) _ANDROID_NEXUS_5_EXECUTABLE_CONFIGS = frozenset([ _components_perftests(100), _gpu_perftests(45), _tracing_perftests(55), ]) _ANDROID_NEXUS_5X_WEBVIEW_BENCHMARK_CONFIGS = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'jetstream2', 'system_health.weblayer_startup', 'v8.browsing_mobile-future', ]) _ANDROID_PIXEL2_BENCHMARK_CONFIGS = PerfSuite( _OFFICIAL_EXCEPT_DISPLAY_LOCKING).Remove(['system_health.weblayer_startup']) _ANDROID_PIXEL2_EXECUTABLE_CONFIGS = frozenset([ _components_perftests(60), ]) _ANDROID_PIXEL2_WEBVIEW_BENCHMARK_CONFIGS = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'jetstream2', 'system_health.weblayer_startup', 'v8.browsing_mobile-future', ]) _ANDROID_PIXEL2_WEBLAYER_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('system_health.common_mobile', True), _GetBenchmarkConfig('system_health.memory_mobile', True), _GetBenchmarkConfig('startup.mobile'), _GetBenchmarkConfig('system_health.weblayer_startup') ]) _ANDROID_PIXEL4_BENCHMARK_CONFIGS = PerfSuite( _OFFICIAL_EXCEPT_DISPLAY_LOCKING).Remove(['system_health.weblayer_startup']) _ANDROID_PIXEL4_EXECUTABLE_CONFIGS = frozenset([ _components_perftests(60), ]) _ANDROID_PIXEL4_WEBVIEW_BENCHMARK_CONFIGS = PerfSuite( OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'jetstream2', 'system_health.weblayer_startup', 'v8.browsing_mobile-future', ]) _ANDROID_PIXEL4_WEBLAYER_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('system_health.common_mobile', True), _GetBenchmarkConfig('system_health.memory_mobile', True), _GetBenchmarkConfig('startup.mobile'), _GetBenchmarkConfig('system_health.weblayer_startup') ]) _ANDROID_PIXEL4A_POWER_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('power.mobile'), _GetBenchmarkConfig('system_health.scroll_jank_mobile') ]) _ANDROID_NEXUS5X_FYI_BENCHMARK_CONFIGS = PerfSuite( [_GetBenchmarkConfig('system_health.scroll_jank_mobile')]) _ANDROID_PIXEL2_AAB_FYI_BENCHMARK_CONFIGS = PerfSuite( [_GetBenchmarkConfig('startup.mobile')]) _ANDROID_PIXEL2_FYI_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('v8.browsing_mobile'), _GetBenchmarkConfig('system_health.memory_mobile'), _GetBenchmarkConfig('system_health.common_mobile'), _GetBenchmarkConfig('startup.mobile'), _GetBenchmarkConfig('speedometer2'), _GetBenchmarkConfig('rendering.mobile'), _GetBenchmarkConfig('octane'), _GetBenchmarkConfig('jetstream'), _GetBenchmarkConfig('system_health.scroll_jank_mobile') ]) _CHROMEOS_KEVIN_FYI_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('rendering.desktop')]) _LACROS_EVE_BENCHMARK_CONFIGS = PerfSuite(OFFICIAL_BENCHMARK_CONFIGS).Remove([ 'blink_perf.display_locking', 'v8.runtime_stats.top_25', ]) _LINUX_PERF_FYI_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('power.desktop'), _GetBenchmarkConfig('rendering.desktop'), _GetBenchmarkConfig('system_health.common_desktop') ]) _FUCHSIA_PERF_FYI_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('system_health.memory_desktop'), _GetBenchmarkConfig('media.mobile') ]) _LINUX_PERF_CALIBRATION_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('speedometer2'), _GetBenchmarkConfig('blink_perf.shadow_dom'), ]) _ANDROID_PIXEL2_PERF_CALIBRATION_BENCHMARK_CONFIGS = PerfSuite([ _GetBenchmarkConfig('system_health.common_mobile'), _GetBenchmarkConfig('system_health.memory_mobile'), ]) # Linux LINUX = PerfPlatform( 'linux-perf', 'Ubuntu-18.04, 8 core, NVIDIA Quadro P400', _LINUX_BENCHMARK_CONFIGS, 26, 'linux', executables=_LINUX_EXECUTABLE_CONFIGS) LINUX_REL = PerfPlatform( 'linux-perf-rel', 'Ubuntu-18.04, 8 core, NVIDIA Quadro P400', _CHROME_HEALTH_BENCHMARK_CONFIGS_DESKTOP, 2, 'linux', executables=_LINUX_EXECUTABLE_CONFIGS) # Mac MAC_HIGH_END = PerfPlatform( 'mac-10_13_laptop_high_end-perf', 'MacBook Pro, Core i7 2.8 GHz, 16GB RAM, 256GB SSD, Radeon 55', _MAC_HIGH_END_BENCHMARK_CONFIGS, 26, 'mac', executables=_MAC_HIGH_END_EXECUTABLE_CONFIGS) MAC_LOW_END = PerfPlatform( 'mac-10_12_laptop_low_end-perf', 'MacBook Air, Core i5 1.8 GHz, 8GB RAM, 128GB SSD, HD Graphics', _MAC_LOW_END_BENCHMARK_CONFIGS, 26, 'mac', executables=_MAC_LOW_END_EXECUTABLE_CONFIGS) MAC_M1_MINI_2020 = PerfPlatform( 'mac-m1_mini_2020-perf', 'Mac M1 Mini 2020', _MAC_M1_MINI_2020_BENCHMARK_CONFIGS, 26, 'mac', executables=_MAC_M1_MINI_2020_EXECUTABLE_CONFIGS) # Win WIN_10_LOW_END = PerfPlatform( 'win-10_laptop_low_end-perf', 'Low end windows 10 HP laptops. HD Graphics 5500, x86-64-i3-5005U, ' 'SSD, 4GB RAM.', _WIN_10_LOW_END_BENCHMARK_CONFIGS, # TODO(crbug.com/998161): Increase the number of shards once you # have enough test data to make a shard map and when more devices # are added to the data center. 46, 'win') WIN_10 = PerfPlatform( 'win-10-perf', 'Windows Intel HD 630 towers, Core i7-7700 3.6 GHz, 16GB RAM,' ' Intel Kaby Lake HD Graphics 630', _WIN_10_BENCHMARK_CONFIGS, 26, 'win', executables=_WIN_10_EXECUTABLE_CONFIGS) WIN_10_AMD = PerfPlatform('win-10_amd-perf', 'Windows AMD chipset', _WIN_10_AMD_BENCHMARK_CONFIGS, 2, 'win') WIN_7 = PerfPlatform('Win 7 Perf', 'N/A', _WIN_7_BENCHMARK_CONFIGS, 2, 'win') WIN_7_GPU = PerfPlatform('Win 7 Nvidia GPU Perf', 'N/A', _WIN_7_GPU_BENCHMARK_CONFIGS, 3, 'win') # Android ANDROID_GO = PerfPlatform( 'android-go-perf', 'Android O (gobo)', _ANDROID_GO_BENCHMARK_CONFIGS, 19, 'android') ANDROID_GO_WEBVIEW = PerfPlatform('android-go_webview-perf', 'Android OPM1.171019.021 (gobo)', _ANDROID_GO_WEBVIEW_BENCHMARK_CONFIGS, 13, 'android') ANDROID_NEXUS_5 = PerfPlatform('Android Nexus5 Perf', 'Android KOT49H', _ANDROID_NEXUS_5_BENCHMARK_CONFIGS, 10, 'android', executables=_ANDROID_NEXUS_5_EXECUTABLE_CONFIGS) ANDROID_NEXUS_5X_WEBVIEW = PerfPlatform( 'Android Nexus5X WebView Perf', 'Android AOSP MOB30K', _ANDROID_NEXUS_5X_WEBVIEW_BENCHMARK_CONFIGS, 16, 'android') ANDROID_PIXEL2 = PerfPlatform('android-pixel2-perf', 'Android OPM1.171019.021', _ANDROID_PIXEL2_BENCHMARK_CONFIGS, 28, 'android', executables=_ANDROID_PIXEL2_EXECUTABLE_CONFIGS) ANDROID_PIXEL2_WEBVIEW = PerfPlatform( 'android-pixel2_webview-perf', 'Android OPM1.171019.021', _ANDROID_PIXEL2_WEBVIEW_BENCHMARK_CONFIGS, 21, 'android') ANDROID_PIXEL2_WEBLAYER = PerfPlatform( 'android-pixel2_weblayer-perf', 'Android OPM1.171019.021', _ANDROID_PIXEL2_WEBLAYER_BENCHMARK_CONFIGS, 4, 'android') ANDROID_PIXEL4 = PerfPlatform('android-pixel4-perf', 'Android R', _ANDROID_PIXEL4_BENCHMARK_CONFIGS, 28, 'android', executables=_ANDROID_PIXEL4_EXECUTABLE_CONFIGS) ANDROID_PIXEL4_WEBVIEW = PerfPlatform( 'android-pixel4_webview-perf', 'Android R', _ANDROID_PIXEL4_WEBVIEW_BENCHMARK_CONFIGS, 21, 'android') ANDROID_PIXEL4_WEBLAYER = PerfPlatform( 'android-pixel4_weblayer-perf', 'Android R', _ANDROID_PIXEL4_WEBLAYER_BENCHMARK_CONFIGS, 4, 'android') ANDROID_PIXEL4A_POWER = PerfPlatform('android-pixel4a_power-perf', 'Android QD4A.200102.001.A1', _ANDROID_PIXEL4A_POWER_BENCHMARK_CONFIGS, 1, 'android') # Cros/Lacros LACROS_EVE_PERF = PerfPlatform('lacros-eve-perf', '', _LACROS_EVE_BENCHMARK_CONFIGS, 10, 'chromeos') # FYI bots WIN_10_LOW_END_HP_CANDIDATE = PerfPlatform( 'win-10_laptop_low_end-perf_HP-Candidate', 'HP 15-BS121NR Laptop Candidate', _WIN_10_LOW_END_HP_CANDIDATE_BENCHMARK_CONFIGS, 1, 'win', is_fyi=True) ANDROID_NEXUS5X_PERF_FYI = PerfPlatform('android-nexus5x-perf-fyi', 'Android MMB29Q', _ANDROID_NEXUS5X_FYI_BENCHMARK_CONFIGS, 2, 'android', is_fyi=True) ANDROID_PIXEL2_PERF_AAB_FYI = PerfPlatform( 'android-pixel2-perf-aab-fyi', 'Android OPM1.171019.021', _ANDROID_PIXEL2_AAB_FYI_BENCHMARK_CONFIGS, 1, 'android', is_fyi=True) ANDROID_PIXEL2_PERF_FYI = PerfPlatform('android-pixel2-perf-fyi', 'Android OPM1.171019.021', _ANDROID_PIXEL2_FYI_BENCHMARK_CONFIGS, 4, 'android', is_fyi=True) CHROMEOS_KEVIN_PERF_FYI = PerfPlatform('chromeos-kevin-perf-fyi', '', _CHROMEOS_KEVIN_FYI_BENCHMARK_CONFIGS, 4, 'chromeos', is_fyi=True) LINUX_PERF_FYI = PerfPlatform('linux-perf-fyi', '', _LINUX_PERF_FYI_BENCHMARK_CONFIGS, 1, 'linux', is_fyi=True) FUCHSIA_PERF_FYI = PerfPlatform('fuchsia-perf-fyi', '', _FUCHSIA_PERF_FYI_BENCHMARK_CONFIGS, 7, 'fuchsia', is_fyi=True) # Calibration bots LINUX_PERF_CALIBRATION = PerfPlatform( 'linux-perf-calibration', 'Ubuntu-18.04, 8 core, NVIDIA Quadro P400', _LINUX_PERF_CALIBRATION_BENCHMARK_CONFIGS, 28, 'linux', is_calibration=True) ANDROID_PIXEL2_PERF_CALIBRATION = PerfPlatform( 'android-pixel2-perf-calibration', 'Android OPM1.171019.021', _ANDROID_PIXEL2_PERF_CALIBRATION_BENCHMARK_CONFIGS, 42, 'android', is_calibration=True) ALL_PLATFORMS = { p for p in locals().values() if isinstance(p, PerfPlatform) } PLATFORMS_BY_NAME = {p.name: p for p in ALL_PLATFORMS} FYI_PLATFORMS = { p for p in ALL_PLATFORMS if p.is_fyi } CALIBRATION_PLATFORMS = {p for p in ALL_PLATFORMS if p.is_calibration} OFFICIAL_PLATFORMS = {p for p in ALL_PLATFORMS if p.is_official} ALL_PLATFORM_NAMES = { p.name for p in ALL_PLATFORMS } OFFICIAL_PLATFORM_NAMES = { p.name for p in OFFICIAL_PLATFORMS }
[ 2, 15069, 2864, 383, 18255, 1505, 46665, 13, 1439, 2489, 10395, 13, 198, 2, 5765, 286, 428, 2723, 2438, 318, 21825, 416, 257, 347, 10305, 12, 7635, 5964, 326, 460, 307, 198, 2, 1043, 287, 262, 38559, 24290, 2393, 13, 198, 11748, 28686, 198, 11748, 2237, 13, 76, 5241, 13, 333, 297, 571, 13, 29572, 220, 1303, 279, 2645, 600, 25, 15560, 28, 11748, 12, 18224, 198, 198, 6738, 4755, 1330, 18335, 62, 19796, 364, 198, 6738, 4755, 1330, 18335, 62, 26791, 198, 198, 6738, 5735, 41935, 13, 13571, 1330, 1621, 62, 24455, 628, 198, 62, 9693, 9795, 62, 33767, 62, 34720, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 828, 705, 1477, 446, 62, 31803, 11537, 198, 198, 62, 7036, 62, 33, 1677, 3398, 44, 14175, 50, 62, 17513, 62, 45, 29559, 796, 8633, 7, 198, 220, 220, 220, 357, 65, 13, 5376, 22784, 275, 8, 329, 275, 287, 18335, 62, 19796, 364, 13, 3855, 3237, 44199, 14306, 28955, 198, 198, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 50, 796, 8400, 8247, 316, 7, 198, 220, 220, 220, 275, 329, 275, 287, 18335, 62, 19796, 364, 13, 3855, 28529, 44199, 14306, 3419, 198, 220, 220, 220, 611, 407, 275, 13, 5376, 22446, 9688, 2032, 342, 10786, 4944, 50, 3398, 1961, 6239, 1961, 62, 6, 4008, 198, 10943, 5446, 9865, 62, 33, 1677, 3398, 44, 14175, 50, 796, 8400, 8247, 316, 7, 26968, 4102, 62, 19796, 364, 13, 3855, 4264, 822, 44199, 14306, 28955, 198, 7036, 62, 50, 3398, 1961, 24212, 17534, 62, 33, 1677, 3398, 44, 14175, 50, 796, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 50, 930, 27342, 9865, 62, 33, 1677, 3398, 44, 14175, 50, 198, 19555, 6465, 62, 2257, 15513, 62, 20608, 796, 705, 62, 70, 9288, 62, 6, 628, 628, 628, 198, 198, 2, 8060, 930, 26968, 14306, 91, 318, 11282, 835, 284, 1394, 25187, 4102, 16934, 5563, 198, 2, 3748, 11, 543, 3578, 514, 284, 779, 900, 13284, 7861, 2174, 13, 198, 26968, 14306, 796, 1391, 65, 13, 5376, 33529, 1391, 17821, 25, 25187, 4102, 16934, 7, 65, 11, 450, 6058, 2004, 28, 17821, 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, 10352, 25, 25187, 4102, 16934, 7, 65, 11, 450, 6058, 2004, 28, 25101, 38165, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 275, 287, 11096, 62, 50, 3398, 1961, 24212, 17534, 62, 33, 1677, 3398, 44, 14175, 50, 92, 198, 198, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 685, 62, 3855, 44199, 4102, 16934, 7, 65, 13, 5376, 28955, 329, 275, 287, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 50, 12962, 198, 2, 1176, 13, 24896, 4433, 2041, 6890, 13, 198, 2, 691, 1057, 21019, 62, 525, 69, 13, 12807, 3029, 263, 12, 15042, 319, 32639, 12, 525, 69, 13, 198, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 13, 27914, 26933, 198, 220, 220, 220, 705, 6477, 13, 24896, 3256, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 12807, 3029, 263, 12, 15042, 3256, 198, 12962, 198, 2, 16926, 46, 7, 6098, 25456, 13, 785, 14, 24, 2996, 21273, 2599, 17220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 45, 29559, 1752, 427, 13493, 198, 2, 14750, 389, 645, 2392, 1262, 340, 13, 198, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 45, 29559, 796, 8400, 8247, 316, 7, 198, 220, 220, 220, 275, 13, 3672, 329, 275, 287, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 13, 37, 305, 8247, 316, 28955, 198, 198, 2, 16926, 46, 7, 6098, 25456, 13, 785, 14, 940, 21495, 1821, 2599, 13707, 1262, 777, 705, 27977, 2149, 12576, 62, 6369, 42006, 6, 45861, 290, 2427, 198, 2, 8160, 1123, 18335, 278, 4566, 13869, 355, 318, 1541, 1760, 329, 867, 286, 262, 198, 2, 45861, 2174, 13, 198, 62, 27977, 2149, 12576, 62, 6369, 42006, 62, 26288, 31519, 62, 36840, 2751, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 7, 198, 220, 220, 220, 37250, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 6, 12962, 198, 62, 27977, 2149, 12576, 62, 6369, 42006, 62, 41, 2767, 2257, 32235, 17, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 7, 198, 220, 220, 220, 37250, 31173, 5532, 17, 6, 12962, 198, 62, 27977, 2149, 12576, 62, 6369, 42006, 62, 26288, 31519, 62, 36840, 2751, 62, 41, 2767, 2257, 32235, 17, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 7, 198, 220, 220, 220, 220, 220, 220, 220, 37250, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 705, 31173, 5532, 17, 6, 12962, 628, 628, 628, 628, 198, 62, 37846, 13649, 62, 13909, 40818, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 62, 30910, 42, 35222, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 41375, 11537, 198, 12962, 628, 198, 62, 34509, 31235, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 35944, 4550, 26933, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 12807, 3029, 263, 12, 15042, 3256, 198, 12962, 198, 62, 34509, 31235, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 1303, 16926, 46, 7, 6098, 25456, 13, 785, 14, 23, 17657, 2791, 2599, 3060, 5009, 62, 525, 701, 3558, 13, 198, 220, 220, 220, 4808, 8692, 62, 525, 701, 3558, 7, 2167, 828, 198, 220, 220, 220, 4808, 2220, 62, 32016, 62, 525, 69, 62, 41989, 22784, 198, 220, 220, 220, 4808, 26585, 62, 40259, 62, 41989, 7, 20986, 828, 198, 220, 220, 220, 4808, 2213, 4092, 62, 525, 701, 3558, 7, 20, 828, 198, 12962, 198, 62, 44721, 62, 39, 18060, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 12962, 198, 62, 44721, 62, 39, 18060, 62, 10619, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 8692, 62, 525, 701, 3558, 7, 6200, 828, 198, 220, 220, 220, 4808, 67, 3832, 62, 525, 69, 62, 41989, 7, 26073, 828, 198, 220, 220, 220, 4808, 26585, 62, 40259, 62, 41989, 7, 19782, 828, 198, 220, 220, 220, 4808, 33571, 62, 525, 701, 3558, 22784, 198, 12962, 198, 62, 44721, 62, 43, 3913, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 705, 31173, 5532, 17, 3256, 198, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 12962, 198, 62, 44721, 62, 43, 3913, 62, 10619, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 2220, 62, 32016, 62, 525, 69, 62, 41989, 22784, 198, 220, 220, 220, 4808, 26585, 62, 40259, 62, 41989, 7, 21536, 828, 198, 12962, 198, 62, 44721, 62, 44, 16, 62, 23678, 40, 62, 42334, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 220, 220, 220, 33761, 198, 62, 44721, 62, 44, 16, 62, 23678, 40, 62, 42334, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 8692, 62, 525, 701, 3558, 7, 6200, 828, 198, 220, 220, 220, 4808, 67, 3832, 62, 525, 69, 62, 41989, 7, 26073, 828, 198, 220, 220, 220, 4808, 26585, 62, 40259, 62, 41989, 7, 19782, 828, 198, 220, 220, 220, 4808, 33571, 62, 525, 701, 3558, 22784, 198, 12962, 198, 198, 62, 37620, 62, 940, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 12962, 198, 62, 37620, 62, 940, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 8692, 62, 525, 701, 3558, 7, 2167, 828, 198, 220, 220, 220, 4808, 5589, 3906, 62, 525, 701, 3558, 7, 11623, 828, 198, 220, 220, 220, 4808, 67, 3832, 62, 525, 69, 62, 41989, 7, 8054, 828, 198, 220, 220, 220, 4808, 33571, 62, 525, 701, 3558, 22784, 198, 12962, 198, 62, 37620, 62, 940, 62, 43, 3913, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 33761, 198, 62, 37620, 62, 940, 62, 43, 3913, 62, 10619, 62, 14082, 62, 34, 6981, 2389, 6158, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 85, 23, 13, 65, 8516, 278, 62, 41375, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 13287, 278, 13, 41375, 3256, 450, 6058, 2004, 28, 17821, 828, 198, 12962, 198, 62, 37620, 62, 940, 62, 28075, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 31173, 5532, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 31173, 5532, 17, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 74, 430, 3464, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 38441, 1531, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 41375, 33809, 198, 12962, 198, 62, 37620, 62, 22, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 705, 25138, 13, 41375, 3256, 198, 35944, 32, 9458, 26933, 198, 220, 220, 220, 705, 25138, 13, 41375, 3256, 198, 12962, 198, 62, 37620, 62, 22, 62, 33346, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 17816, 13287, 278, 13, 41375, 20520, 737, 32, 9458, 7, 198, 220, 220, 220, 37250, 13287, 278, 13, 41375, 6, 12962, 198, 62, 6981, 13252, 2389, 62, 11230, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 9688, 929, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 12384, 1177, 62, 9688, 929, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 85, 23, 13, 65, 8516, 278, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 12287, 15635, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 12287, 15635, 17, 11537, 12962, 198, 62, 6981, 13252, 2389, 62, 11230, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 4808, 6981, 13252, 2389, 62, 11230, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 198, 2, 5740, 326, 16756, 642, 10214, 5339, 318, 845, 1877, 11, 523, 356, 1276, 15052, 4179, 198, 2, 262, 31747, 326, 356, 1057, 319, 340, 290, 450, 12818, 1588, 31747, 287, 1502, 198, 2, 284, 1057, 606, 319, 340, 13, 4091, 1067, 25456, 13, 785, 14, 940, 21495, 1821, 329, 3307, 13, 198, 62, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 705, 25138, 13, 24896, 3256, 198, 220, 220, 220, 705, 9688, 929, 13, 24896, 3256, 198, 220, 220, 220, 705, 10057, 62, 13948, 13, 11321, 62, 24896, 3256, 198, 220, 220, 220, 705, 10057, 62, 13948, 13, 12384, 1177, 62, 9688, 929, 3256, 198, 35944, 32, 9458, 7, 17816, 25138, 13, 24896, 3256, 705, 9688, 929, 13, 24896, 3256, 705, 10057, 62, 13948, 13, 11321, 62, 24896, 6, 12962, 198, 62, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 5589, 3906, 62, 525, 701, 3558, 7, 3064, 828, 198, 220, 220, 220, 4808, 46999, 62, 525, 701, 3558, 7, 2231, 828, 198, 220, 220, 220, 4808, 2213, 4092, 62, 525, 701, 3558, 7, 2816, 828, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 55, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31173, 5532, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 85, 23, 13, 65, 8516, 278, 62, 24896, 12, 37443, 3256, 198, 220, 220, 220, 33761, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 4808, 27977, 2149, 12576, 62, 6369, 42006, 62, 26288, 31519, 62, 36840, 2751, 737, 27914, 7, 17816, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 6, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 5589, 3906, 62, 525, 701, 3558, 7, 1899, 828, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31173, 5532, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 85, 23, 13, 65, 8516, 278, 62, 24896, 12, 37443, 3256, 198, 220, 220, 220, 33761, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 9148, 4792, 1137, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 24896, 3256, 6407, 828, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 24896, 3256, 6407, 828, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 9688, 929, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 11537, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 4808, 27977, 2149, 12576, 62, 6369, 42006, 62, 26288, 31519, 62, 36840, 2751, 737, 27914, 7, 17816, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 6, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 4808, 5589, 3906, 62, 525, 701, 3558, 7, 1899, 828, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 47601, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31173, 5532, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 85, 23, 13, 65, 8516, 278, 62, 24896, 12, 37443, 3256, 198, 220, 220, 220, 33761, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 9148, 4792, 1137, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 24896, 3256, 6407, 828, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 24896, 3256, 6407, 828, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 9688, 929, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 732, 2436, 2794, 62, 9688, 929, 11537, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 32, 62, 47, 36048, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 6477, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 48728, 62, 73, 962, 62, 24896, 11537, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 45, 6369, 2937, 20, 55, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 685, 62, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 48728, 62, 73, 962, 62, 24896, 11537, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 3838, 33, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 198, 220, 220, 220, 685, 62, 3855, 44199, 4102, 16934, 10786, 9688, 929, 13, 24896, 11537, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 85, 23, 13, 65, 8516, 278, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 9688, 929, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 12287, 15635, 17, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 13287, 278, 13, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 38441, 1531, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 31173, 5532, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 48728, 62, 73, 962, 62, 24896, 11537, 198, 12962, 198, 62, 37846, 13649, 2640, 62, 7336, 53, 1268, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 13287, 278, 13, 41375, 11537, 12962, 198, 62, 43, 2246, 49, 2640, 62, 36, 6089, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 7, 27977, 2149, 12576, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 737, 27914, 26933, 198, 220, 220, 220, 705, 2436, 676, 62, 525, 69, 13, 13812, 62, 48331, 3256, 198, 220, 220, 220, 705, 85, 23, 13, 43282, 62, 34242, 13, 4852, 62, 1495, 3256, 198, 12962, 198, 62, 34509, 31235, 62, 18973, 37, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 6477, 13, 41375, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 13287, 278, 13, 41375, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 41375, 11537, 198, 12962, 198, 62, 38989, 3398, 50, 3539, 62, 18973, 37, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 41375, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 11431, 13, 24896, 11537, 198, 12962, 198, 62, 34509, 31235, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 12287, 15635, 17, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 2436, 676, 62, 525, 69, 13, 19106, 62, 3438, 33809, 198, 12962, 198, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 796, 2448, 69, 5606, 578, 26933, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 11321, 62, 24896, 33809, 198, 220, 220, 220, 4808, 3855, 44199, 4102, 16934, 10786, 10057, 62, 13948, 13, 31673, 62, 24896, 33809, 198, 12962, 628, 198, 2, 7020, 198, 34509, 31235, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 23289, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 36609, 11157, 12, 1507, 13, 3023, 11, 807, 4755, 11, 15127, 48447, 350, 7029, 3256, 198, 220, 220, 220, 4808, 34509, 31235, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2608, 11, 198, 220, 220, 220, 705, 23289, 3256, 198, 220, 220, 220, 3121, 2977, 28, 62, 34509, 31235, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 34509, 31235, 62, 16448, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 23289, 12, 525, 69, 12, 2411, 3256, 198, 220, 220, 220, 705, 36609, 11157, 12, 1507, 13, 3023, 11, 807, 4755, 11, 15127, 48447, 350, 7029, 3256, 198, 220, 220, 220, 4808, 37846, 13649, 62, 13909, 40818, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 62, 30910, 42, 35222, 11, 198, 220, 220, 220, 362, 11, 198, 220, 220, 220, 705, 23289, 3256, 198, 220, 220, 220, 3121, 2977, 28, 62, 34509, 31235, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 198, 2, 4100, 198, 44721, 62, 39, 18060, 62, 10619, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 20285, 12, 940, 62, 1485, 62, 75, 45007, 62, 8929, 62, 437, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 14155, 10482, 1041, 11, 7231, 1312, 22, 362, 13, 23, 26499, 11, 1467, 4579, 13931, 11, 17759, 4579, 21252, 11, 13082, 5996, 3256, 198, 220, 220, 220, 4808, 44721, 62, 39, 18060, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2608, 11, 198, 220, 220, 220, 705, 20285, 3256, 198, 220, 220, 220, 3121, 2977, 28, 62, 44721, 62, 39, 18060, 62, 10619, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 44721, 62, 43, 3913, 62, 10619, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 20285, 12, 940, 62, 1065, 62, 75, 45007, 62, 9319, 62, 437, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 14155, 10482, 3701, 11, 7231, 1312, 20, 352, 13, 23, 26499, 11, 807, 4579, 13931, 11, 13108, 4579, 21252, 11, 5572, 19840, 3256, 198, 220, 220, 220, 4808, 44721, 62, 43, 3913, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2608, 11, 198, 220, 220, 220, 705, 20285, 3256, 198, 220, 220, 220, 3121, 2977, 28, 62, 44721, 62, 43, 3913, 62, 10619, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 44721, 62, 44, 16, 62, 23678, 40, 62, 42334, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 20285, 12, 76, 16, 62, 45313, 62, 42334, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 14155, 337, 16, 12558, 12131, 3256, 198, 220, 220, 220, 4808, 44721, 62, 44, 16, 62, 23678, 40, 62, 42334, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2608, 11, 198, 220, 220, 220, 705, 20285, 3256, 198, 220, 220, 220, 3121, 2977, 28, 62, 44721, 62, 44, 16, 62, 23678, 40, 62, 42334, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 198, 2, 7178, 198, 37620, 62, 940, 62, 43, 3913, 62, 10619, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 5404, 12, 940, 62, 75, 45007, 62, 9319, 62, 437, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 20535, 886, 9168, 838, 6574, 26635, 13, 5572, 19840, 642, 4059, 11, 2124, 4521, 12, 2414, 12, 72, 18, 12, 4059, 20, 52, 11, 705, 198, 220, 220, 220, 705, 5432, 35, 11, 604, 4579, 13931, 2637, 11, 198, 220, 220, 220, 4808, 37620, 62, 940, 62, 43, 3913, 62, 10619, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 1303, 16926, 46, 7, 6098, 25456, 13, 785, 14, 34808, 25948, 2599, 25285, 262, 1271, 286, 39991, 1752, 345, 198, 220, 220, 220, 1303, 423, 1576, 1332, 1366, 284, 787, 257, 427, 446, 3975, 290, 618, 517, 4410, 198, 220, 220, 220, 1303, 389, 2087, 284, 262, 1366, 3641, 13, 198, 220, 220, 220, 6337, 11, 198, 220, 220, 220, 705, 5404, 11537, 198, 37620, 62, 940, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 5404, 12, 940, 12, 525, 69, 3256, 198, 220, 220, 220, 705, 11209, 8180, 5572, 44505, 18028, 11, 7231, 1312, 22, 12, 3324, 405, 513, 13, 21, 26499, 11, 1467, 4579, 13931, 4032, 198, 220, 220, 220, 705, 8180, 509, 3930, 6233, 5572, 19840, 44505, 3256, 4808, 37620, 62, 940, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2608, 11, 705, 5404, 3256, 3121, 2977, 28, 62, 37620, 62, 940, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 37620, 62, 940, 62, 28075, 796, 2448, 69, 37148, 10786, 5404, 12, 940, 62, 28745, 12, 525, 69, 3256, 705, 11209, 10324, 49013, 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, 4808, 37620, 62, 940, 62, 28075, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 362, 11, 705, 5404, 11537, 198, 37620, 62, 22, 796, 2448, 69, 37148, 10786, 16643, 767, 2448, 69, 3256, 705, 45, 14, 32, 3256, 4808, 37620, 62, 22, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 362, 11, 705, 5404, 11537, 198, 37620, 62, 22, 62, 33346, 796, 2448, 69, 37148, 10786, 16643, 767, 27699, 11362, 2448, 69, 3256, 705, 45, 14, 32, 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, 4808, 37620, 62, 22, 62, 33346, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 513, 11, 705, 5404, 11537, 198, 198, 2, 5565, 198, 6981, 13252, 2389, 62, 11230, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 2188, 12, 525, 69, 3256, 705, 25934, 440, 357, 70, 20391, 8, 3256, 4808, 6981, 13252, 2389, 62, 11230, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 678, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 11230, 62, 8845, 33, 28206, 796, 2448, 69, 37148, 10786, 19411, 12, 2188, 62, 12384, 1177, 12, 525, 69, 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, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 357, 70, 20391, 8, 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, 4808, 6981, 13252, 2389, 62, 11230, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 1511, 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, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 796, 2448, 69, 37148, 10786, 25934, 16756, 20, 2448, 69, 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, 705, 25934, 509, 2394, 2920, 39, 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, 4808, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 838, 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, 705, 19411, 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, 3121, 2977, 28, 62, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 55, 62, 8845, 33, 28206, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 25934, 16756, 20, 55, 5313, 7680, 2448, 69, 3256, 705, 25934, 317, 47053, 337, 9864, 1270, 42, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 45, 6369, 2937, 62, 20, 55, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 1467, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 796, 2448, 69, 37148, 10786, 19411, 12, 32515, 17, 12, 525, 69, 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, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 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, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 2579, 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, 705, 19411, 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, 3121, 2977, 28, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 33, 28206, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 17, 62, 12384, 1177, 12, 525, 69, 3256, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 2310, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 9148, 4792, 1137, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 17, 62, 732, 2436, 2794, 12, 525, 69, 3256, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 8845, 9148, 4792, 1137, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 604, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 796, 2448, 69, 37148, 10786, 19411, 12, 32515, 19, 12, 525, 69, 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, 705, 25934, 371, 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, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 2579, 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, 705, 19411, 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, 3121, 2977, 28, 62, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 6369, 2943, 3843, 17534, 62, 10943, 16254, 50, 8, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 33, 28206, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 19, 62, 12384, 1177, 12, 525, 69, 3256, 705, 25934, 371, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 33, 28206, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 2310, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 9148, 4792, 1137, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 19, 62, 732, 2436, 2794, 12, 525, 69, 3256, 705, 25934, 371, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 62, 8845, 9148, 4792, 1137, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 604, 11, 705, 19411, 11537, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 32, 62, 47, 36048, 796, 2448, 69, 37148, 10786, 19411, 12, 32515, 19, 64, 62, 6477, 12, 525, 69, 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, 705, 25934, 1195, 35, 19, 32, 13, 2167, 15377, 13, 8298, 13, 32, 16, 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, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 19, 32, 62, 47, 36048, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 352, 11, 705, 19411, 11537, 198, 198, 2, 26942, 14, 43, 330, 4951, 198, 43, 2246, 49, 2640, 62, 36, 6089, 62, 18973, 37, 796, 2448, 69, 37148, 10786, 75, 330, 4951, 12, 44655, 12, 525, 69, 3256, 705, 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, 4808, 43, 2246, 49, 2640, 62, 36, 6089, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 838, 11, 705, 46659, 418, 11537, 198, 198, 2, 23639, 40, 29641, 198, 37620, 62, 940, 62, 43, 3913, 62, 10619, 62, 14082, 62, 34, 6981, 2389, 6158, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 5404, 12, 940, 62, 75, 45007, 62, 9319, 62, 437, 12, 525, 69, 62, 14082, 12, 41572, 20540, 3256, 705, 14082, 1315, 12, 4462, 19244, 24723, 406, 45007, 40327, 3256, 198, 220, 220, 220, 4808, 37620, 62, 940, 62, 43, 3913, 62, 10619, 62, 14082, 62, 34, 6981, 2389, 6158, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 352, 11, 705, 5404, 3256, 318, 62, 24928, 72, 28, 17821, 8, 198, 6981, 13252, 2389, 62, 45, 6369, 2937, 20, 55, 62, 18973, 37, 62, 43833, 40, 796, 2448, 69, 37148, 10786, 19411, 12, 44520, 20, 87, 12, 525, 69, 12, 24928, 72, 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, 705, 25934, 337, 10744, 1959, 48, 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, 4808, 6981, 13252, 2389, 62, 45, 6369, 2937, 20, 55, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 362, 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, 705, 19411, 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, 318, 62, 24928, 72, 28, 17821, 8, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 18973, 37, 62, 3838, 33, 62, 43833, 40, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 17, 12, 525, 69, 12, 64, 397, 12, 24928, 72, 3256, 198, 220, 220, 220, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 3838, 33, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 352, 11, 198, 220, 220, 220, 705, 19411, 3256, 198, 220, 220, 220, 318, 62, 24928, 72, 28, 17821, 8, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 18973, 37, 62, 43833, 40, 796, 2448, 69, 37148, 10786, 19411, 12, 32515, 17, 12, 525, 69, 12, 24928, 72, 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, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 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, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 604, 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, 705, 19411, 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, 318, 62, 24928, 72, 28, 17821, 8, 198, 37846, 13649, 2640, 62, 7336, 53, 1268, 62, 18973, 37, 62, 43833, 40, 796, 2448, 69, 37148, 10786, 46659, 418, 12, 365, 7114, 12, 525, 69, 12, 24928, 72, 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, 705, 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, 4808, 37846, 13649, 2640, 62, 7336, 53, 1268, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 604, 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, 705, 46659, 418, 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, 318, 62, 24928, 72, 28, 17821, 8, 198, 34509, 31235, 62, 18973, 37, 62, 43833, 40, 796, 2448, 69, 37148, 10786, 23289, 12, 525, 69, 12, 24928, 72, 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, 705, 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, 4808, 34509, 31235, 62, 18973, 37, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 352, 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, 705, 23289, 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, 318, 62, 24928, 72, 28, 17821, 8, 198, 38989, 3398, 50, 3539, 62, 18973, 37, 62, 43833, 40, 796, 2448, 69, 37148, 10786, 69, 37533, 544, 12, 525, 69, 12, 24928, 72, 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, 705, 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, 4808, 38989, 3398, 50, 3539, 62, 18973, 37, 62, 43833, 40, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 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, 767, 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, 705, 69, 37533, 544, 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, 318, 62, 24928, 72, 28, 17821, 8, 198, 198, 2, 2199, 571, 1358, 29641, 198, 34509, 31235, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 23289, 12, 525, 69, 12, 9948, 571, 1358, 3256, 198, 220, 220, 220, 705, 36609, 11157, 12, 1507, 13, 3023, 11, 807, 4755, 11, 15127, 48447, 350, 7029, 3256, 198, 220, 220, 220, 4808, 34509, 31235, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 2579, 11, 198, 220, 220, 220, 705, 23289, 3256, 198, 220, 220, 220, 318, 62, 9948, 571, 1358, 28, 17821, 8, 198, 198, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 796, 2448, 69, 37148, 7, 198, 220, 220, 220, 705, 19411, 12, 32515, 17, 12, 525, 69, 12, 9948, 571, 1358, 3256, 198, 220, 220, 220, 705, 25934, 440, 5868, 16, 13, 1558, 8784, 24, 13, 46821, 3256, 198, 220, 220, 220, 4808, 6981, 13252, 2389, 62, 47, 10426, 3698, 17, 62, 18973, 37, 62, 34, 1847, 9865, 49, 6234, 62, 33, 1677, 3398, 44, 14175, 62, 10943, 16254, 50, 11, 198, 220, 220, 220, 5433, 11, 198, 220, 220, 220, 705, 19411, 3256, 198, 220, 220, 220, 318, 62, 9948, 571, 1358, 28, 17821, 8, 198, 198, 7036, 62, 6489, 1404, 13775, 5653, 796, 1391, 198, 220, 220, 220, 279, 329, 279, 287, 17205, 22446, 27160, 3419, 611, 318, 39098, 7, 79, 11, 2448, 69, 37148, 8, 198, 92, 198, 6489, 1404, 13775, 5653, 62, 17513, 62, 20608, 796, 1391, 79, 13, 3672, 25, 279, 329, 279, 287, 11096, 62, 6489, 1404, 13775, 5653, 92, 198, 43833, 40, 62, 6489, 1404, 13775, 5653, 796, 1391, 198, 220, 220, 220, 279, 329, 279, 287, 11096, 62, 6489, 1404, 13775, 5653, 611, 279, 13, 271, 62, 24928, 72, 198, 92, 198, 34, 1847, 9865, 49, 6234, 62, 6489, 1404, 13775, 5653, 796, 1391, 79, 329, 279, 287, 11096, 62, 6489, 1404, 13775, 5653, 611, 279, 13, 271, 62, 9948, 571, 1358, 92, 198, 27977, 2149, 12576, 62, 6489, 1404, 13775, 5653, 796, 1391, 79, 329, 279, 287, 11096, 62, 6489, 1404, 13775, 5653, 611, 279, 13, 271, 62, 16841, 92, 198, 7036, 62, 6489, 1404, 21389, 62, 45, 29559, 796, 1391, 198, 220, 220, 220, 279, 13, 3672, 329, 279, 287, 11096, 62, 6489, 1404, 13775, 5653, 198, 92, 198, 27977, 2149, 12576, 62, 6489, 1404, 21389, 62, 45, 29559, 796, 1391, 198, 220, 220, 220, 279, 13, 3672, 329, 279, 287, 47601, 12576, 62, 6489, 1404, 13775, 5653, 198, 92, 628 ]
1.984234
8,436
# Copyright 2018 The Cirq Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """An optimization pass that removes operations with tiny effects.""" from typing import TYPE_CHECKING from cirq import protocols from cirq.circuits import optimization_pass, circuit as _circuit if TYPE_CHECKING: # pylint: disable=unused-import from typing import List, Tuple from cirq import ops class DropNegligible(optimization_pass.OptimizationPass): """An optimization pass that removes operations with tiny effects."""
[ 2, 15069, 2864, 383, 21239, 80, 34152, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 3740, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 37811, 2025, 23989, 1208, 326, 20694, 4560, 351, 7009, 3048, 526, 15931, 198, 198, 6738, 19720, 1330, 41876, 62, 50084, 2751, 198, 198, 6738, 10774, 80, 1330, 19565, 198, 6738, 10774, 80, 13, 21170, 15379, 1330, 23989, 62, 6603, 11, 10349, 355, 4808, 21170, 5013, 198, 198, 361, 41876, 62, 50084, 2751, 25, 198, 220, 220, 220, 1303, 279, 2645, 600, 25, 15560, 28, 403, 1484, 12, 11748, 198, 220, 220, 220, 422, 19720, 1330, 7343, 11, 309, 29291, 198, 220, 220, 220, 422, 10774, 80, 1330, 39628, 628, 198, 4871, 14258, 32863, 4604, 856, 7, 40085, 1634, 62, 6603, 13, 27871, 320, 1634, 14478, 2599, 198, 220, 220, 220, 37227, 2025, 23989, 1208, 326, 20694, 4560, 351, 7009, 3048, 526, 15931, 198 ]
3.762774
274
from datetime import datetime from typing import Optional import attr @attr.dataclass
[ 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 19720, 1330, 32233, 198, 198, 11748, 708, 81, 628, 198, 31, 35226, 13, 19608, 330, 31172, 198 ]
3.56
25
import itertools import json import re from collections import OrderedDict, defaultdict from os.path import abspath, dirname, join import click def ascii_encode(non_compatible_string): """Primarily used for ensuring terminal display compatibility""" if non_compatible_string: return non_compatible_string.encode("ascii", errors="ignore").decode("ascii") else: return "" def regex_manifest(protocol, input): """Special input types, gets updated as more input types are added""" if "type" in input and input["type"] == "choice": if "options" in input: pattern = r"\[(.*?)\]" match = re.search(pattern, str(input["options"])) if not match: click.echo( 'Error in %s: input type "choice" options must ' 'be in the form of: \n[\n {\n "value": ' '<choice value>, \n "label": <choice label>\n ' "},\n ...\n]" % protocol["name"] ) raise RuntimeError else: click.echo( f"Must have options for 'choice' input type. Error in: {protocol['name']}" ) raise RuntimeError def makedirs(name, mode=None, exist_ok=False): """Forward ports `exist_ok` flag for Py2 makedirs. Retains mode defaults""" from os import makedirs mode = mode if mode is not None else 0o777 makedirs(name, mode, exist_ok) class PreviewParameters: """ A PreviewParameters object modifies web browser quick launch parameters and modifies them for application protocol testing and debugging. Attributes ------ api : object the Connection object to provide session for using api endpoints quick_launch_params: dict web browser generated inputs for quick launch selected_samples: defaultdict all aliquots selected through the web quick launch manifest modified_params: dict the modified quick launch launch parameters, converts quick launch aliquot objects into strings for debugging refs: dict all unique refs seen in the quick launch parameters preview: dict the combination of refs and modified_params for scientific application debugging protocol_obj: dict the protocol object from the manifest """ def __init__(self, api, quick_launch_params, protocol_obj): """ Initialize TestParameter by providing a web generated params dict. Parameters ---------- quick_launch_params: dict web browser generated inputs for quick launch """ self.api = api self.protocol_obj = protocol_obj self.container_cache = {} self.selected_samples = {} self.csv_templates = {} self.quick_launch_params = quick_launch_params self.preview = self.build_preview() def build_preview(self): """Builds preview parameters""" self.modify_preview_parameters() self.refs = self.generate_refs() preview = defaultdict(lambda: defaultdict(dict)) preview["preview"]["parameters"].update(self.modified_params) preview["preview"].update(self.refs) return preview def adjust_csv_table_input_type(self): """ Traverses the protocol object from the manifest to find any csv-table input types. If it finds one it creates the headers and modifies the modified_params that eventually will be the preview parameters for autoprotocol testing. """ self.traverse_protocol_obj(self.protocol_obj["inputs"]) def modify_preview_parameters(self): """ This method will traverse the quick launch 'raw_inputs' and modify container ids and aliquot dicts into a preview parameter container string for autoprotocol generation debugging. """ self.modified_params = self.traverse_quick_launch( obj=self.quick_launch_params, callback=self.create_preview_string ) self.adjust_csv_table_input_type() def generate_refs(self): """ This method takes the aggregated containers and aliquots to produce the refs aliquot values """ ref_dict = defaultdict(lambda: defaultdict(dict)) ref_dict["refs"] = {} for cid, index_arr in self.selected_samples.items(): container = self.container_cache.get(cid) cont_name = PreviewParameters.format_container_name(container) ref_dict["refs"][cont_name] = { "label": cont_name, "type": container.get("container_type").get("id"), "store": container.get("storage_condition"), "cover": container.get("cover", None), "properties": container.get("properties"), "aliquots": {}, } if None not in index_arr: ref_dict["refs"][cont_name]["aliquots"] = self.get_selected_aliquots( container, index_arr ) elif container.get("aliquots", None): for ali in container.get("aliquots"): ref_dict["refs"][cont_name]["aliquots"][ali["well_idx"]] = { "name": ali["name"], "volume": ali["volume_ul"] + ":microliter", "properties": ali["properties"], } return ref_dict def traverse_quick_launch(self, obj, callback=None): """ Will traverse quick launch object and send value to a callback action method. """ if isinstance(obj, dict): # If object has 'containerId' and 'wellIndex', then it is an aliquot if "containerId" and "wellIndex" in obj.keys(): return self.create_string_from_aliquot(value=obj) else: value = { k: self.traverse_quick_launch(v, callback) for k, v in obj.items() } elif isinstance(obj, list): return [self.traverse_quick_launch(elem, callback) for elem in obj] else: value = obj if callback is None: return value else: return callback(value) def add_to_cache(self, container_id): """Adds requested container to cache for later use""" if container_id in self.container_cache: container = self.container_cache[container_id] else: container = self.api.get_container(container_id) self.container_cache[container_id] = container return container def create_string_from_aliquot(self, value): """Creates preview aliquot representation""" well_idx = value.get("wellIndex") container_id = value.get("containerId") container = self.add_to_cache(container_id) cont_name = PreviewParameters.format_container_name(container) self.add_to_selected(container_id, well_idx) return "{}/{}".format(cont_name, well_idx) def create_preview_string(self, value): """Creates preview parameters string representation""" if isinstance(value, str): if value[:2] == "ct": container_id = value container = self.add_to_cache(container_id) cont_name = PreviewParameters.format_container_name(container) self.add_to_selected(container_id) return cont_name else: return value else: return value def add_to_selected(self, container_id, well_idx=None): """Saves which containers were selected.""" if container_id in self.selected_samples: self.selected_samples[container_id].append(well_idx) else: self.selected_samples[container_id] = [well_idx] def get_selected_aliquots(self, container, index_arr): """Grabs the properties from the selected aliquots""" ref_aliquots = dict() container_aliquots = { ali.get("well_idx"): ali for ali in container.get("aliquots") } for i in index_arr: ali = container_aliquots.get(i, container) ref_aliquots[i] = { "name": ali.get("name"), "volume": "{}:microliter".format(ali.get("volume_ul", 10)), "properties": ali.get("properties"), } return ref_aliquots @classmethod
[ 11748, 340, 861, 10141, 198, 11748, 33918, 198, 11748, 302, 198, 198, 6738, 17268, 1330, 14230, 1068, 35, 713, 11, 4277, 11600, 198, 6738, 28686, 13, 6978, 1330, 2352, 6978, 11, 26672, 3672, 11, 4654, 198, 198, 11748, 3904, 628, 628, 198, 4299, 355, 979, 72, 62, 268, 8189, 7, 13159, 62, 38532, 62, 8841, 2599, 198, 220, 220, 220, 37227, 23828, 3093, 973, 329, 13359, 12094, 3359, 17764, 37811, 198, 220, 220, 220, 611, 1729, 62, 38532, 62, 8841, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1729, 62, 38532, 62, 8841, 13, 268, 8189, 7203, 292, 979, 72, 1600, 8563, 2625, 46430, 11074, 12501, 1098, 7203, 292, 979, 72, 4943, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 628, 198, 198, 4299, 40364, 62, 805, 8409, 7, 11235, 4668, 11, 5128, 2599, 198, 220, 220, 220, 37227, 13409, 5128, 3858, 11, 3011, 6153, 355, 517, 5128, 3858, 389, 2087, 37811, 198, 220, 220, 220, 611, 366, 4906, 1, 287, 5128, 290, 5128, 14692, 4906, 8973, 6624, 366, 25541, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 611, 366, 25811, 1, 287, 5128, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3912, 796, 374, 1, 59, 58, 7, 15885, 10091, 59, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2872, 796, 302, 13, 12947, 7, 33279, 11, 965, 7, 15414, 14692, 25811, 8973, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2872, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3904, 13, 30328, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12331, 287, 4064, 82, 25, 5128, 2099, 366, 25541, 1, 3689, 1276, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1350, 287, 262, 1296, 286, 25, 3467, 77, 58, 59, 77, 220, 43839, 77, 220, 366, 8367, 1298, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 27, 25541, 1988, 22330, 3467, 77, 220, 366, 18242, 1298, 1279, 25541, 6167, 29, 59, 77, 220, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5512, 59, 77, 220, 2644, 59, 77, 30866, 4064, 8435, 14692, 3672, 8973, 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, 5298, 43160, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3904, 13, 30328, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 34320, 423, 3689, 329, 705, 25541, 6, 5128, 2099, 13, 13047, 287, 25, 1391, 11235, 4668, 17816, 3672, 20520, 36786, 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, 5298, 43160, 12331, 628, 628, 198, 4299, 285, 4335, 17062, 7, 3672, 11, 4235, 28, 14202, 11, 2152, 62, 482, 28, 25101, 2599, 198, 220, 220, 220, 37227, 39746, 14090, 4600, 38476, 62, 482, 63, 6056, 329, 9485, 17, 285, 4335, 17062, 13, 4990, 1299, 4235, 26235, 37811, 198, 220, 220, 220, 422, 28686, 1330, 285, 4335, 17062, 628, 220, 220, 220, 4235, 796, 4235, 611, 4235, 318, 407, 6045, 2073, 657, 78, 29331, 198, 220, 220, 220, 285, 4335, 17062, 7, 3672, 11, 4235, 11, 2152, 62, 482, 8, 628, 628, 628, 198, 4871, 22217, 48944, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 22217, 48944, 2134, 953, 6945, 3992, 6444, 2068, 4219, 10007, 290, 198, 220, 220, 220, 953, 6945, 606, 329, 3586, 8435, 4856, 290, 28769, 13, 628, 220, 220, 220, 49213, 198, 220, 220, 220, 40103, 198, 220, 220, 220, 40391, 1058, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 262, 26923, 2134, 284, 2148, 6246, 329, 1262, 40391, 886, 13033, 628, 220, 220, 220, 2068, 62, 35681, 62, 37266, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 3992, 6444, 7560, 17311, 329, 2068, 4219, 628, 220, 220, 220, 6163, 62, 82, 12629, 25, 4277, 11600, 198, 220, 220, 220, 220, 220, 220, 220, 477, 435, 1557, 1747, 6163, 832, 262, 3992, 2068, 4219, 10561, 628, 220, 220, 220, 9518, 62, 37266, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 262, 9518, 2068, 4219, 4219, 10007, 11, 26161, 2068, 4219, 198, 220, 220, 220, 220, 220, 220, 220, 435, 1557, 313, 5563, 656, 13042, 329, 28769, 628, 220, 220, 220, 1006, 82, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 477, 3748, 1006, 82, 1775, 287, 262, 2068, 4219, 10007, 628, 220, 220, 220, 12714, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 262, 6087, 286, 1006, 82, 290, 9518, 62, 37266, 329, 5654, 198, 220, 220, 220, 220, 220, 220, 220, 3586, 28769, 628, 220, 220, 220, 8435, 62, 26801, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 262, 8435, 2134, 422, 262, 10561, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 40391, 11, 2068, 62, 35681, 62, 37266, 11, 8435, 62, 26801, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 1096, 6208, 36301, 416, 4955, 257, 3992, 7560, 42287, 8633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 2068, 62, 35681, 62, 37266, 25, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3992, 6444, 7560, 17311, 329, 2068, 4219, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15042, 796, 40391, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 62, 26801, 796, 8435, 62, 26801, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34924, 62, 23870, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34213, 62, 82, 12629, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40664, 62, 11498, 17041, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 24209, 62, 35681, 62, 37266, 796, 2068, 62, 35681, 62, 37266, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3866, 1177, 796, 2116, 13, 11249, 62, 3866, 1177, 3419, 628, 220, 220, 220, 825, 1382, 62, 3866, 1177, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15580, 82, 12714, 10007, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4666, 1958, 62, 3866, 1177, 62, 17143, 7307, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5420, 82, 796, 2116, 13, 8612, 378, 62, 5420, 82, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 12714, 796, 4277, 11600, 7, 50033, 25, 4277, 11600, 7, 11600, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 12714, 14692, 3866, 1177, 1, 7131, 1, 17143, 7307, 1, 4083, 19119, 7, 944, 13, 41771, 62, 37266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 12714, 14692, 3866, 1177, 1, 4083, 19119, 7, 944, 13, 5420, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 12714, 628, 220, 220, 220, 825, 4532, 62, 40664, 62, 11487, 62, 15414, 62, 4906, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4759, 690, 274, 262, 8435, 2134, 422, 262, 10561, 284, 1064, 597, 269, 21370, 12, 11487, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 3858, 13, 1002, 340, 7228, 530, 340, 8075, 262, 24697, 290, 953, 6945, 262, 198, 220, 220, 220, 220, 220, 220, 220, 9518, 62, 37266, 326, 4191, 481, 307, 262, 12714, 10007, 329, 198, 220, 220, 220, 220, 220, 220, 220, 22320, 10599, 4668, 4856, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9535, 4399, 62, 11235, 4668, 62, 26801, 7, 944, 13, 11235, 4668, 62, 26801, 14692, 15414, 82, 8973, 8, 628, 220, 220, 220, 825, 13096, 62, 3866, 1177, 62, 17143, 7307, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 481, 38138, 262, 2068, 4219, 705, 1831, 62, 15414, 82, 6, 290, 13096, 198, 220, 220, 220, 220, 220, 220, 220, 9290, 220, 2340, 290, 435, 1557, 313, 8633, 82, 656, 257, 12714, 11507, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 329, 22320, 10599, 4668, 5270, 28769, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 41771, 62, 37266, 796, 2116, 13, 9535, 4399, 62, 24209, 62, 35681, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 28, 944, 13, 24209, 62, 35681, 62, 37266, 11, 23838, 28, 944, 13, 17953, 62, 3866, 1177, 62, 8841, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23032, 62, 40664, 62, 11487, 62, 15414, 62, 4906, 3419, 628, 220, 220, 220, 825, 7716, 62, 5420, 82, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 2753, 262, 13262, 515, 16472, 290, 435, 1557, 1747, 284, 4439, 198, 220, 220, 220, 220, 220, 220, 220, 262, 1006, 82, 435, 1557, 313, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 11600, 796, 4277, 11600, 7, 50033, 25, 4277, 11600, 7, 11600, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 11600, 14692, 5420, 82, 8973, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 269, 312, 11, 6376, 62, 3258, 287, 2116, 13, 34213, 62, 82, 12629, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 34924, 62, 23870, 13, 1136, 7, 66, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 62, 3672, 796, 22217, 48944, 13, 18982, 62, 34924, 62, 3672, 7, 34924, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 11600, 14692, 5420, 82, 1, 7131, 3642, 62, 3672, 60, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 18242, 1298, 542, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4906, 1298, 9290, 13, 1136, 7203, 34924, 62, 4906, 11074, 1136, 7203, 312, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8095, 1298, 9290, 13, 1136, 7203, 35350, 62, 31448, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9631, 1298, 9290, 13, 1136, 7203, 9631, 1600, 6045, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48310, 1298, 9290, 13, 1136, 7203, 48310, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 282, 1557, 1747, 1298, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6045, 407, 287, 6376, 62, 3258, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 11600, 14692, 5420, 82, 1, 7131, 3642, 62, 3672, 7131, 1, 282, 1557, 1747, 8973, 796, 2116, 13, 1136, 62, 34213, 62, 282, 1557, 1747, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 11, 6376, 62, 3258, 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, 1288, 361, 9290, 13, 1136, 7203, 282, 1557, 1747, 1600, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 34965, 287, 9290, 13, 1136, 7203, 282, 1557, 1747, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 11600, 14692, 5420, 82, 1, 7131, 3642, 62, 3672, 7131, 1, 282, 1557, 1747, 1, 7131, 7344, 14692, 4053, 62, 312, 87, 8973, 60, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3672, 1298, 34965, 14692, 3672, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29048, 1298, 34965, 14692, 29048, 62, 377, 8973, 1343, 366, 25, 24055, 17201, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48310, 1298, 34965, 14692, 48310, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1006, 62, 11600, 628, 220, 220, 220, 825, 38138, 62, 24209, 62, 35681, 7, 944, 11, 26181, 11, 23838, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2561, 38138, 2068, 4219, 2134, 290, 3758, 1988, 284, 257, 23838, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2446, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 26801, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 2134, 468, 705, 34924, 7390, 6, 290, 705, 4053, 15732, 3256, 788, 340, 318, 281, 435, 1557, 313, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 34924, 7390, 1, 290, 366, 4053, 15732, 1, 287, 26181, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 17953, 62, 8841, 62, 6738, 62, 282, 1557, 313, 7, 8367, 28, 26801, 8, 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, 1988, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 25, 2116, 13, 9535, 4399, 62, 24209, 62, 35681, 7, 85, 11, 23838, 8, 329, 479, 11, 410, 287, 26181, 13, 23814, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 26801, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 944, 13, 9535, 4399, 62, 24209, 62, 35681, 7, 68, 10671, 11, 23838, 8, 329, 9766, 76, 287, 26181, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 26181, 628, 220, 220, 220, 220, 220, 220, 220, 611, 23838, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 23838, 7, 8367, 8, 628, 220, 220, 220, 825, 751, 62, 1462, 62, 23870, 7, 944, 11, 9290, 62, 312, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46245, 9167, 9290, 284, 12940, 329, 1568, 779, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9290, 62, 312, 287, 2116, 13, 34924, 62, 23870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 34924, 62, 23870, 58, 34924, 62, 312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 15042, 13, 1136, 62, 34924, 7, 34924, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34924, 62, 23870, 58, 34924, 62, 312, 60, 796, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 9290, 628, 220, 220, 220, 825, 2251, 62, 8841, 62, 6738, 62, 282, 1557, 313, 7, 944, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16719, 274, 12714, 435, 1557, 313, 10552, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 880, 62, 312, 87, 796, 1988, 13, 1136, 7203, 4053, 15732, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 312, 796, 1988, 13, 1136, 7203, 34924, 7390, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 2860, 62, 1462, 62, 23870, 7, 34924, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 542, 62, 3672, 796, 22217, 48944, 13, 18982, 62, 34924, 62, 3672, 7, 34924, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2860, 62, 1462, 62, 34213, 7, 34924, 62, 312, 11, 880, 62, 312, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45144, 92, 14, 90, 92, 1911, 18982, 7, 3642, 62, 3672, 11, 880, 62, 312, 87, 8, 628, 220, 220, 220, 825, 2251, 62, 3866, 1177, 62, 8841, 7, 944, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16719, 274, 12714, 10007, 4731, 10552, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 8367, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 58, 25, 17, 60, 6624, 366, 310, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 312, 796, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 2860, 62, 1462, 62, 23870, 7, 34924, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 62, 3672, 796, 22217, 48944, 13, 18982, 62, 34924, 62, 3672, 7, 34924, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2860, 62, 1462, 62, 34213, 7, 34924, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 542, 62, 3672, 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, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 751, 62, 1462, 62, 34213, 7, 944, 11, 9290, 62, 312, 11, 880, 62, 312, 87, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 3080, 543, 16472, 547, 6163, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9290, 62, 312, 287, 2116, 13, 34213, 62, 82, 12629, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34213, 62, 82, 12629, 58, 34924, 62, 312, 4083, 33295, 7, 4053, 62, 312, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34213, 62, 82, 12629, 58, 34924, 62, 312, 60, 796, 685, 4053, 62, 312, 87, 60, 628, 220, 220, 220, 825, 651, 62, 34213, 62, 282, 1557, 1747, 7, 944, 11, 9290, 11, 6376, 62, 3258, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8642, 8937, 262, 6608, 422, 262, 6163, 435, 1557, 1747, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 282, 1557, 1747, 796, 8633, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 282, 1557, 1747, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34965, 13, 1136, 7203, 4053, 62, 312, 87, 1, 2599, 34965, 329, 34965, 287, 9290, 13, 1136, 7203, 282, 1557, 1747, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 6376, 62, 3258, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34965, 796, 9290, 62, 282, 1557, 1747, 13, 1136, 7, 72, 11, 9290, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 62, 282, 1557, 1747, 58, 72, 60, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3672, 1298, 34965, 13, 1136, 7203, 3672, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29048, 1298, 45144, 38362, 24055, 17201, 1911, 18982, 7, 7344, 13, 1136, 7203, 29048, 62, 377, 1600, 838, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48310, 1298, 34965, 13, 1136, 7203, 48310, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1006, 62, 282, 1557, 1747, 628, 220, 220, 220, 2488, 4871, 24396, 198 ]
2.304744
3,731
import os from dotenv import load_dotenv, find_dotenv from pymongo import MongoClient load_dotenv(find_dotenv()) mongo_url = os.getenv("mongo_url") myclient = MongoClient(mongo_url) mydb_master = myclient["SCDF"] col = mydb_master["investigacoes"]
[ 11748, 28686, 198, 198, 6738, 16605, 24330, 1330, 3440, 62, 26518, 24330, 11, 1064, 62, 26518, 24330, 198, 6738, 279, 4948, 25162, 1330, 42591, 11792, 198, 198, 2220, 62, 26518, 24330, 7, 19796, 62, 26518, 24330, 28955, 198, 76, 25162, 62, 6371, 796, 28686, 13, 1136, 24330, 7203, 76, 25162, 62, 6371, 4943, 198, 1820, 16366, 796, 42591, 11792, 7, 76, 25162, 62, 6371, 8, 198, 1820, 9945, 62, 9866, 796, 616, 16366, 14692, 6173, 8068, 8973, 198, 4033, 796, 616, 9945, 62, 9866, 14692, 24859, 328, 330, 3028, 8973 ]
2.766667
90
# -*- coding: utf-8 -*- # # Copyright (c) 2021 CS GROUP - France. # # This file is part of EOTile. # See https://github.com/CS-SI/eotile for further info. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """ EO tile :author: mgerma :organization: CS GROUP - France :copyright: 2021 CS GROUP - France. All rights reserved. :license: see LICENSE file. """ import argparse import logging import sys from pathlib import Path from geopy.geocoders import Nominatim from eotile import eotile_module from eotile.eotiles.eotiles import write_tiles_bb def build_parser(): """Creates a parser suitable for parsing a command line invoking this program. :return: An parser. :rtype: :class:`argparse.ArgumentParser` """ parser = argparse.ArgumentParser() parser.add_argument( "input", help="Choose amongst : a file, a tile_id, a location, a wkt, a bbox", ) parser.add_argument("-epsg", help="Specify the epsg of the input") parser.add_argument("-no_l8", action="store_true", help="output L8 tiles") parser.add_argument("-no_s2", action="store_true", help="Disable S2 tiles") parser.add_argument("-dem", action="store_true", help='Use DEM 1" tiles as well') parser.add_argument( "-srtm5x5", action="store_true", help="Use specific srtm 5x5 tiles as well" ) # Output arguments parser.add_argument("-to_file", help="Write tiles to a file") parser.add_argument( "-to_wkt", action="store_true", help="Output the geometry of matching tiles with wkt format on standard output", ) parser.add_argument( "-to_bbox", action="store_true", help="Output the bounding box of matching tiles on standard output", ) parser.add_argument( "-to_tile_id", action="store_true", help="Output the id(s) of matching tiles on standard output", ) parser.add_argument( "-to_location", action="store_true", help="Output the location of the centroid of matching tiles " "on standard output", ) parser.add_argument( "-s2_overlap", action="store_true", help="Do you want to have overlaps on S2 tiles ?", ) parser.add_argument( "-v", "--verbose", action="count", help="Increase output verbosity" ) parser.add_argument( "-logger_file", help="Redirect information from standard output to a file" ) parser.add_argument( "-location_type", help="If needed, specify the location type that is requested (city, county, state, country)", ) parser.add_argument( "-threshold", help="For large polygons at high resolution, you might want to simplify them using a threshold" "(0 to 1)", ) parser.add_argument( "-min_overlap", help="Minimum percentage of overlap to consider a tile (0 to 1)", ) return parser def build_output(source, tile_list, user_logger, message, args): """ Sub-function of the main Formats an output depending on a specified message & arguments over a dataframe pandas of tiles. :param source: Type of the source (DEM, S2, L8) :type source: str :param user_logger: LOGGER to log the message to :type user_logger: logging.LOGGER :param tile_list: pandas dataframe of the tiles to format :type tile_list: pandas DataFrame :param message: The message to format :type message: str :param args: fields to look in :type args: list """ if source != "DEM": interesting_columns = [] for elt in args: if elt == "bounds": interesting_columns.append("geometry") else: interesting_columns.append(elt) for elt in tile_list[interesting_columns].iterrows(): arguments = [] for arg in args: if arg == "geometry": arguments.append(elt[1]["geometry"].wkt) elif arg == "bounds": arguments.append(elt[1]["geometry"].bounds) else: arguments.append(str(elt[1][arg])) user_logger.info(message.format(source, *arguments)) else: interesting_columns = ["EXIST_SRTM", "EXIST_COP30", "EXIST_COP90"] for elt in args: if elt == "bounds": interesting_columns.append("geometry") else: interesting_columns.append(elt) for elt in tile_list[interesting_columns].iterrows(): availability = [] if elt[1]["EXIST_SRTM"]: availability.append("SRTM") if elt[1]["EXIST_COP30"]: availability.append("Copernicus 30") if elt[1]["EXIST_COP90"]: availability.append("Copernicus 90") arguments = [] for arg in args: if arg == "geometry": arguments.append(elt[1]["geometry"].wkt) elif arg == "bounds": arguments.append(elt[1]["geometry"].bounds) else: arguments.append(str(elt[1][arg])) user_logger.info(message.format(", ".join(availability), *arguments)) def main(arguments=None): """ Command line interface to perform :param list arguments: list of arguments """ arg_parser = build_parser() args = arg_parser.parse_args(args=arguments) [tile_list_s2, tile_list_l8, tile_list_dem, tile_list_srtm5x5] = eotile_module.main( args.input, args.logger_file, args.no_l8, args.no_s2, args.dem, args.srtm5x5, args.location_type, args.min_overlap, args.epsg, args.threshold, args.verbose, args.s2_overlap, ) tile_sources = ["S2", "L8", "DEM", "SRTM 5x5"] user_logger = logging.getLogger("user_logger") # Outputting the result tile_lists = [tile_list_s2, tile_list_l8, tile_list_dem, tile_list_srtm5x5] if args.to_file is not None: output_path = Path(args.to_file) for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: if output_path.suffix == ".gpkg": # Using layers method to combine sources if geopackage write_tiles_bb(tile_list, output_path, source=source) else: # Else, we split into several files write_tiles_bb( tile_list, output_path.with_name( output_path.stem + "_" + source + output_path.suffix ), ) elif args.to_wkt: for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: build_output( source, tile_list, user_logger, "[{}] Tile: {}", ["geometry"] ) elif args.to_bbox: for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: build_output( source, tile_list, user_logger, "[{}] Tile Bounds: {}", ["bounds"] ) elif args.to_tile_id: for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: build_output(source, tile_list, user_logger, "[{}] Tile id: {}", ["id"]) elif args.to_location: geolocator = Nominatim(user_agent="EOTile") for tile_list in tile_lists: if len(tile_list) > 0: for elt in tile_list["geometry"]: centroid = list(list(elt.centroid.coords)[0]) centroid.reverse() location = geolocator.reverse(centroid, language="en") if location is not None: user_logger.info(str(location)) else: for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: build_output( source, tile_list, user_logger, "[{} tile]\n {}\n {}", ["id", "geometry"], ) # counts user_logger.info("--- Summary ---") for i, tile_list in enumerate(tile_lists): source = tile_sources[i] if len(tile_list) > 0: user_logger.info("- %s %s Tiles", len(tile_list), source) if __name__ == "__main__": sys.exit(main())
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 198, 2, 15069, 357, 66, 8, 33448, 9429, 44441, 532, 4881, 13, 198, 2, 198, 2, 770, 2393, 318, 636, 286, 412, 2394, 576, 13, 198, 2, 4091, 3740, 1378, 12567, 13, 785, 14, 7902, 12, 11584, 14, 68, 313, 576, 329, 2252, 7508, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 37811, 198, 4720, 17763, 198, 198, 25, 9800, 25, 285, 1362, 2611, 198, 25, 9971, 1634, 25, 9429, 44441, 532, 4881, 198, 25, 22163, 4766, 25, 33448, 9429, 44441, 532, 4881, 13, 1439, 2489, 10395, 13, 198, 25, 43085, 25, 766, 38559, 24290, 2393, 13, 198, 37811, 198, 198, 11748, 1822, 29572, 198, 11748, 18931, 198, 11748, 25064, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 6738, 4903, 11081, 13, 469, 420, 375, 364, 1330, 399, 6351, 265, 320, 198, 198, 6738, 304, 313, 576, 1330, 304, 313, 576, 62, 21412, 198, 6738, 304, 313, 576, 13, 68, 313, 2915, 13, 68, 313, 2915, 1330, 3551, 62, 83, 2915, 62, 11848, 628, 198, 4299, 1382, 62, 48610, 33529, 198, 220, 220, 220, 37227, 16719, 274, 257, 30751, 11080, 329, 32096, 257, 3141, 1627, 39744, 428, 1430, 13, 628, 220, 220, 220, 1058, 7783, 25, 1052, 30751, 13, 198, 220, 220, 220, 1058, 81, 4906, 25, 1058, 4871, 25, 63, 853, 29572, 13, 28100, 1713, 46677, 63, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15414, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 31851, 12077, 1058, 257, 2393, 11, 257, 17763, 62, 312, 11, 257, 4067, 11, 257, 266, 21841, 11, 257, 275, 3524, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 25386, 70, 1600, 1037, 2625, 22882, 1958, 262, 304, 862, 70, 286, 262, 5128, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 3919, 62, 75, 23, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 2625, 22915, 406, 23, 19867, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 3919, 62, 82, 17, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 2625, 48893, 311, 17, 19867, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 9536, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 11639, 11041, 40101, 352, 1, 19867, 355, 880, 11537, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 82, 17034, 76, 20, 87, 20, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 2625, 11041, 2176, 264, 17034, 76, 642, 87, 20, 19867, 355, 880, 1, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1303, 25235, 7159, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 1462, 62, 7753, 1600, 1037, 2625, 16594, 19867, 284, 257, 2393, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 1462, 62, 86, 21841, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 26410, 262, 22939, 286, 12336, 19867, 351, 266, 21841, 5794, 319, 3210, 5072, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 1462, 62, 65, 3524, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 26410, 262, 5421, 278, 3091, 286, 12336, 19867, 319, 3210, 5072, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 1462, 62, 40927, 62, 312, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 26410, 262, 4686, 7, 82, 8, 286, 12336, 19867, 319, 3210, 5072, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 1462, 62, 24886, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 26410, 262, 4067, 286, 262, 1247, 3882, 286, 12336, 19867, 366, 198, 220, 220, 220, 220, 220, 220, 220, 366, 261, 3210, 5072, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 82, 17, 62, 2502, 37796, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 5211, 345, 765, 284, 423, 12893, 1686, 319, 311, 17, 19867, 5633, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 85, 1600, 366, 438, 19011, 577, 1600, 2223, 2625, 9127, 1600, 1037, 2625, 46890, 5072, 15942, 16579, 1, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 6404, 1362, 62, 7753, 1600, 1037, 2625, 7738, 1060, 1321, 422, 3210, 5072, 284, 257, 2393, 1, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 24886, 62, 4906, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 1532, 2622, 11, 11986, 262, 4067, 2099, 326, 318, 9167, 357, 19205, 11, 7968, 11, 1181, 11, 1499, 42501, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 400, 10126, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 1890, 1588, 25052, 684, 379, 1029, 6323, 11, 345, 1244, 765, 284, 30276, 606, 1262, 257, 11387, 1, 198, 220, 220, 220, 220, 220, 220, 220, 30629, 15, 284, 352, 42501, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 1084, 62, 2502, 37796, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 44046, 5873, 286, 21721, 284, 2074, 257, 17763, 357, 15, 284, 352, 42501, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1441, 30751, 628, 198, 4299, 1382, 62, 22915, 7, 10459, 11, 17763, 62, 4868, 11, 2836, 62, 6404, 1362, 11, 3275, 11, 26498, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3834, 12, 8818, 286, 262, 1388, 198, 220, 220, 220, 5178, 1381, 281, 5072, 6906, 319, 257, 7368, 3275, 1222, 7159, 625, 257, 1366, 14535, 19798, 292, 286, 19867, 13, 198, 220, 220, 220, 1058, 17143, 2723, 25, 5994, 286, 262, 2723, 357, 39429, 11, 311, 17, 11, 406, 23, 8, 198, 220, 220, 220, 1058, 4906, 2723, 25, 965, 198, 220, 220, 220, 1058, 17143, 2836, 62, 6404, 1362, 25, 41605, 30373, 284, 2604, 262, 3275, 284, 198, 220, 220, 220, 1058, 4906, 2836, 62, 6404, 1362, 25, 18931, 13, 25294, 30373, 198, 220, 220, 220, 1058, 17143, 17763, 62, 4868, 25, 19798, 292, 1366, 14535, 286, 262, 19867, 284, 5794, 198, 220, 220, 220, 1058, 4906, 17763, 62, 4868, 25, 19798, 292, 6060, 19778, 198, 220, 220, 220, 1058, 17143, 3275, 25, 383, 3275, 284, 5794, 198, 220, 220, 220, 1058, 4906, 3275, 25, 965, 198, 220, 220, 220, 1058, 17143, 26498, 25, 7032, 284, 804, 287, 198, 220, 220, 220, 1058, 4906, 26498, 25, 1351, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2723, 14512, 366, 39429, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 3499, 62, 28665, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1288, 83, 287, 26498, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1288, 83, 6624, 366, 65, 3733, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3499, 62, 28665, 82, 13, 33295, 7203, 469, 15748, 4943, 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, 3499, 62, 28665, 82, 13, 33295, 7, 2120, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1288, 83, 287, 17763, 62, 4868, 58, 47914, 62, 28665, 82, 4083, 2676, 8516, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1822, 287, 26498, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1822, 6624, 366, 469, 15748, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 33295, 7, 2120, 58, 16, 7131, 1, 469, 15748, 1, 4083, 86, 21841, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1822, 6624, 366, 65, 3733, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 33295, 7, 2120, 58, 16, 7131, 1, 469, 15748, 1, 4083, 65, 3733, 8, 198, 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, 7159, 13, 33295, 7, 2536, 7, 2120, 58, 16, 7131, 853, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 6404, 1362, 13, 10951, 7, 20500, 13, 18982, 7, 10459, 11, 1635, 853, 2886, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3499, 62, 28665, 82, 796, 14631, 6369, 8808, 62, 12562, 15972, 1600, 366, 6369, 8808, 62, 34, 3185, 1270, 1600, 366, 6369, 8808, 62, 34, 3185, 3829, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1288, 83, 287, 26498, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1288, 83, 6624, 366, 65, 3733, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3499, 62, 28665, 82, 13, 33295, 7203, 469, 15748, 4943, 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, 3499, 62, 28665, 82, 13, 33295, 7, 2120, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1288, 83, 287, 17763, 62, 4868, 58, 47914, 62, 28665, 82, 4083, 2676, 8516, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1288, 83, 58, 16, 7131, 1, 6369, 8808, 62, 12562, 15972, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 13, 33295, 7203, 12562, 15972, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1288, 83, 58, 16, 7131, 1, 6369, 8808, 62, 34, 3185, 1270, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 13, 33295, 7203, 13379, 1142, 24552, 1542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1288, 83, 58, 16, 7131, 1, 6369, 8808, 62, 34, 3185, 3829, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 13, 33295, 7203, 13379, 1142, 24552, 4101, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1822, 287, 26498, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1822, 6624, 366, 469, 15748, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 33295, 7, 2120, 58, 16, 7131, 1, 469, 15748, 1, 4083, 86, 21841, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1822, 6624, 366, 65, 3733, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 33295, 7, 2120, 58, 16, 7131, 1, 469, 15748, 1, 4083, 65, 3733, 8, 198, 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, 7159, 13, 33295, 7, 2536, 7, 2120, 58, 16, 7131, 853, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 6404, 1362, 13, 10951, 7, 20500, 13, 18982, 7, 1600, 27071, 22179, 7, 47274, 828, 1635, 853, 2886, 4008, 628, 198, 4299, 1388, 7, 853, 2886, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9455, 1627, 7071, 284, 1620, 628, 220, 220, 220, 1058, 17143, 1351, 7159, 25, 1351, 286, 7159, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1822, 62, 48610, 796, 1382, 62, 48610, 3419, 198, 220, 220, 220, 26498, 796, 1822, 62, 48610, 13, 29572, 62, 22046, 7, 22046, 28, 853, 2886, 8, 198, 220, 220, 220, 685, 40927, 62, 4868, 62, 82, 17, 11, 17763, 62, 4868, 62, 75, 23, 11, 17763, 62, 4868, 62, 9536, 11, 17763, 62, 4868, 62, 82, 17034, 76, 20, 87, 20, 60, 796, 304, 313, 576, 62, 21412, 13, 12417, 7, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 15414, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 6404, 1362, 62, 7753, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 3919, 62, 75, 23, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 3919, 62, 82, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 9536, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 82, 17034, 76, 20, 87, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 24886, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 1084, 62, 2502, 37796, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 25386, 70, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 400, 10126, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 19011, 577, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 82, 17, 62, 2502, 37796, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 17763, 62, 82, 2203, 796, 14631, 50, 17, 1600, 366, 43, 23, 1600, 366, 39429, 1600, 366, 12562, 15972, 642, 87, 20, 8973, 198, 220, 220, 220, 2836, 62, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7203, 7220, 62, 6404, 1362, 4943, 628, 220, 220, 220, 1303, 25235, 889, 262, 1255, 198, 220, 220, 220, 17763, 62, 20713, 796, 685, 40927, 62, 4868, 62, 82, 17, 11, 17763, 62, 4868, 62, 75, 23, 11, 17763, 62, 4868, 62, 9536, 11, 17763, 62, 4868, 62, 82, 17034, 76, 20, 87, 20, 60, 198, 220, 220, 220, 611, 26498, 13, 1462, 62, 7753, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 6978, 796, 10644, 7, 22046, 13, 1462, 62, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5072, 62, 6978, 13, 37333, 844, 6624, 27071, 31197, 10025, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8554, 11685, 2446, 284, 12082, 4237, 611, 30324, 441, 496, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 83, 2915, 62, 11848, 7, 40927, 62, 4868, 11, 5072, 62, 6978, 11, 2723, 28, 10459, 8, 198, 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, 1303, 25974, 11, 356, 6626, 656, 1811, 3696, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 83, 2915, 62, 11848, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17763, 62, 4868, 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, 5072, 62, 6978, 13, 4480, 62, 3672, 7, 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, 5072, 62, 6978, 13, 927, 1343, 45434, 1, 1343, 2723, 1343, 5072, 62, 6978, 13, 37333, 844, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1288, 361, 26498, 13, 1462, 62, 86, 21841, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22915, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 11, 17763, 62, 4868, 11, 2836, 62, 6404, 1362, 11, 12878, 90, 92, 60, 47870, 25, 23884, 1600, 14631, 469, 15748, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 1288, 361, 26498, 13, 1462, 62, 65, 3524, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22915, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 11, 17763, 62, 4868, 11, 2836, 62, 6404, 1362, 11, 12878, 90, 92, 60, 47870, 347, 3733, 25, 23884, 1600, 14631, 65, 3733, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 1288, 361, 26498, 13, 1462, 62, 40927, 62, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22915, 7, 10459, 11, 17763, 62, 4868, 11, 2836, 62, 6404, 1362, 11, 12878, 90, 92, 60, 47870, 4686, 25, 23884, 1600, 14631, 312, 8973, 8, 628, 220, 220, 220, 1288, 361, 26498, 13, 1462, 62, 24886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4903, 349, 420, 1352, 796, 399, 6351, 265, 320, 7, 7220, 62, 25781, 2625, 36, 2394, 576, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 17763, 62, 4868, 287, 17763, 62, 20713, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1288, 83, 287, 17763, 62, 4868, 14692, 469, 15748, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1247, 3882, 796, 1351, 7, 4868, 7, 2120, 13, 1087, 3882, 13, 1073, 3669, 38381, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1247, 3882, 13, 50188, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4067, 796, 4903, 349, 420, 1352, 13, 50188, 7, 1087, 3882, 11, 3303, 2625, 268, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4067, 318, 407, 6045, 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, 2836, 62, 6404, 1362, 13, 10951, 7, 2536, 7, 24886, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22915, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17763, 62, 4868, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 6404, 1362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12878, 90, 92, 17763, 60, 59, 77, 23884, 59, 77, 23884, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14631, 312, 1600, 366, 469, 15748, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 9853, 198, 220, 220, 220, 2836, 62, 6404, 1362, 13, 10951, 7203, 6329, 21293, 11420, 4943, 198, 220, 220, 220, 329, 1312, 11, 17763, 62, 4868, 287, 27056, 378, 7, 40927, 62, 20713, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 17763, 62, 82, 2203, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40927, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 6404, 1362, 13, 10951, 7203, 12, 4064, 82, 4064, 82, 309, 2915, 1600, 18896, 7, 40927, 62, 4868, 828, 2723, 8, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 25064, 13, 37023, 7, 12417, 28955, 198 ]
2.144525
4,283
from rest_framework.viewsets import ViewSet from backend.models import AwsEnvironmentModel, TenantModel from backend.serializers.aws_environment_model_serializer import (AwsEnvironmentModelGetDetailSerializer, AwsEnvironmentModelCreateSerializer, AwsEnvironmentModelUpdateSerializer) from backend.usecases.control_aws_environment import ControlAwsEnvironment from rest_framework.response import Response from rest_framework import status from backend.logger import NarukoLogging from django.db import transaction from rest_framework.decorators import action
[ 6738, 1334, 62, 30604, 13, 1177, 28709, 1330, 3582, 7248, 201, 198, 6738, 30203, 13, 27530, 1330, 5851, 82, 31441, 17633, 11, 9368, 415, 17633, 201, 198, 6738, 30203, 13, 46911, 11341, 13, 8356, 62, 38986, 62, 19849, 62, 46911, 7509, 1330, 357, 32, 18504, 31441, 17633, 3855, 11242, 603, 32634, 7509, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5851, 82, 31441, 17633, 16447, 32634, 7509, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5851, 82, 31441, 17633, 10260, 32634, 7509, 8, 201, 198, 6738, 30203, 13, 1904, 33964, 13, 13716, 62, 8356, 62, 38986, 1330, 6779, 32, 18504, 31441, 201, 198, 6738, 1334, 62, 30604, 13, 26209, 1330, 18261, 201, 198, 6738, 1334, 62, 30604, 1330, 3722, 201, 198, 6738, 30203, 13, 6404, 1362, 1330, 13596, 29794, 11187, 2667, 201, 198, 6738, 42625, 14208, 13, 9945, 1330, 8611, 201, 198, 6738, 1334, 62, 30604, 13, 12501, 273, 2024, 1330, 2223, 201, 198, 201, 198 ]
2.547101
276
from distutils.core import setup setup( name='openabis-fingerjetfx', version='0.0.1', packages=['openabis_fingerjetfx'], url='https://github.com/newlogic42/openabis-fingerjetfx', license='Apache License', author='newlogic42', author_email='', description='OpenAbis\' plugin implementation of FingerJetFXOSE/FingerJetFXOSE.', install_requires=[ 'pillow==6.2.1' ], package_data={ '': ['*'], } )
[ 6738, 1233, 26791, 13, 7295, 1330, 9058, 198, 198, 40406, 7, 198, 220, 220, 220, 1438, 11639, 9654, 8102, 12, 35461, 31173, 21373, 3256, 198, 220, 220, 220, 2196, 11639, 15, 13, 15, 13, 16, 3256, 198, 220, 220, 220, 10392, 28, 17816, 9654, 8102, 62, 35461, 31173, 21373, 6, 4357, 198, 220, 220, 220, 19016, 11639, 5450, 1378, 12567, 13, 785, 14, 3605, 6404, 291, 3682, 14, 9654, 8102, 12, 35461, 31173, 21373, 3256, 198, 220, 220, 220, 5964, 11639, 25189, 4891, 13789, 3256, 198, 220, 220, 220, 1772, 11639, 3605, 6404, 291, 3682, 3256, 198, 220, 220, 220, 1772, 62, 12888, 11639, 3256, 198, 220, 220, 220, 6764, 11639, 11505, 4826, 271, 43054, 13877, 7822, 286, 39454, 42273, 17213, 14058, 14, 37, 3889, 42273, 17213, 14058, 2637, 11, 198, 220, 220, 220, 2721, 62, 47911, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27215, 322, 855, 21, 13, 17, 13, 16, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 5301, 62, 7890, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 10148, 25, 37250, 9, 6, 4357, 198, 220, 220, 220, 1782, 198, 8, 198 ]
2.397906
191
import memory import instructions cpu_flags = { "N": 0x80, # negative "V": 0x40, # overflow "M": 0x20, # accumulator size (set => 8bits) "X": 0x10, # index size (set => 8bits) "D": 0x08, # decimal flag (does nothing on SNES, I think) "I": 0x04, # IRQ disabled when set "Z": 0x02, # zero "C": 0x01 # carry (can be copied to the emulation flag) } if __name__ == "__main__": main()
[ 11748, 4088, 198, 11748, 7729, 198, 198, 36166, 62, 33152, 796, 1391, 198, 220, 220, 220, 366, 45, 1298, 657, 87, 1795, 11, 1303, 4633, 198, 220, 220, 220, 366, 53, 1298, 657, 87, 1821, 11, 1303, 30343, 198, 220, 220, 220, 366, 44, 1298, 657, 87, 1238, 11, 1303, 10507, 8927, 2546, 357, 2617, 5218, 807, 9895, 8, 198, 220, 220, 220, 366, 55, 1298, 657, 87, 940, 11, 1303, 6376, 2546, 357, 2617, 5218, 807, 9895, 8, 198, 220, 220, 220, 366, 35, 1298, 657, 87, 2919, 11, 1303, 32465, 6056, 357, 22437, 2147, 319, 11346, 1546, 11, 314, 892, 8, 198, 220, 220, 220, 366, 40, 1298, 657, 87, 3023, 11, 1303, 14826, 48, 10058, 618, 900, 198, 220, 220, 220, 366, 57, 1298, 657, 87, 2999, 11, 1303, 6632, 198, 220, 220, 220, 366, 34, 1298, 657, 87, 486, 220, 1303, 3283, 357, 5171, 307, 18984, 284, 262, 47065, 6056, 8, 198, 92, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.380682
176
import cv2 import json import statistics import matplotlib.pyplot as plt import numpy as np import libs.method.QcImage as QcImage import libs.method.SICCalibrationRegression_MB3 as SICCalibrationRegression_MB3 from libs.model.TrainingSet import TrainingSet JSON_PATH = 'Dataset/data_color_chart/tags.json' IMAGE_PATH = 'Dataset/data_color_chart/' RECT_SCALE = 1000 if __name__ == "__main__": jsonPath = JSON_PATH imagePath = IMAGE_PATH vis = False channel = 'green' # train with open(jsonPath) as json_data: objs = json.load(json_data) images_b = None images_g = None images_r = None for obj in objs: colors_b = [] colors_g = [] colors_r = [] trainingSet = TrainingSet(obj) cv_image = cv2.imread( imagePath + trainingSet.imagePath, cv2.IMREAD_COLOR) if cv_image is None: print('Training image: ' + trainingSet.imagePath + ' cannot be found.') continue dis_image = cv_image.copy() height, width, channels = cv_image.shape background_anno = trainingSet.background background_area = QcImage.crop_image_by_position_and_rect( cv_image, background_anno.position, background_anno.rect) background_bgr = QcImage.get_average_rgb(background_area) colors_b.append(background_bgr[0]) colors_g.append(background_bgr[1]) colors_r.append(background_bgr[2]) for anno in trainingSet.references: colour_area = QcImage.crop_image_by_position_and_rect( cv_image, anno.position, anno.rect) sample_bgr = QcImage.get_average_rgb(colour_area) colors_b.append(sample_bgr[0]) colors_g.append(sample_bgr[1]) colors_r.append(sample_bgr[2]) # draw training label if vis: pos_x = int(width * anno.position.x) pos_y = int(height * anno.position.y) dim_x = int(width * anno.rect.x / RECT_SCALE) + pos_x dim_y = int(height * anno.rect.y / RECT_SCALE) + pos_y cv2.rectangle(dis_image, (pos_x, pos_y), (dim_x, dim_y), (0, 255, 0), 1) images_b = np.array([colors_b]) if images_b is None else np.append( images_b, [colors_b], axis=0) images_g = np.array([colors_g]) if images_g is None else np.append( images_g, [colors_g], axis=0) images_r = np.array([colors_r]) if images_r is None else np.append( images_r, [colors_r], axis=0) # display training image and label if vis: dis_image = cv2.cvtColor(dis_image, cv2.COLOR_BGR2RGB) plt.imshow(dis_image) plt.title(trainingSet.imagePath) plt.show() if 'blue' in channel: # blue channel print('blue============') M_b, B_b, err_b = SICCalibrationRegression_MB3.sic_calibration_regression( images_b) print('a, b and error for blue channel: %s,%s, %s' % (M_b, B_b, err_b)) if 'green' in channel: # green channel print('green============') M_g, B_g, err_g = SICCalibrationRegression_MB3.sic_calibration_regression( images_g) print('a, b and error for green channel: %s,%s, %s' % (M_g, B_g, err_g)) if 'red' in channel: # red channel print('red============') M_r, B_r, err_r = SICCalibrationRegression_MB3.sic_calibration_regression( images_r) print('a, b and error for red channel: %s,%s, %s' % (M_r, B_r, err_r)) input("Press Enter to exit...")
[ 11748, 269, 85, 17, 198, 11748, 33918, 198, 11748, 7869, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 9195, 82, 13, 24396, 13, 48, 66, 5159, 355, 1195, 66, 5159, 198, 11748, 9195, 82, 13, 24396, 13, 50, 2149, 9771, 571, 1358, 8081, 2234, 62, 10744, 18, 355, 311, 2149, 9771, 571, 1358, 8081, 2234, 62, 10744, 18, 198, 6738, 9195, 82, 13, 19849, 13, 44357, 7248, 1330, 13614, 7248, 628, 198, 40386, 62, 34219, 796, 705, 27354, 292, 316, 14, 7890, 62, 8043, 62, 40926, 14, 31499, 13, 17752, 6, 198, 3955, 11879, 62, 34219, 796, 705, 27354, 292, 316, 14, 7890, 62, 8043, 62, 40926, 14, 6, 198, 198, 23988, 62, 6173, 21358, 796, 8576, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 33918, 15235, 796, 19449, 62, 34219, 198, 220, 220, 220, 2939, 15235, 796, 8959, 11879, 62, 34219, 198, 220, 220, 220, 1490, 796, 10352, 198, 220, 220, 220, 6518, 796, 705, 14809, 6, 628, 220, 220, 220, 1303, 4512, 198, 220, 220, 220, 351, 1280, 7, 17752, 15235, 8, 355, 33918, 62, 7890, 25, 198, 220, 220, 220, 220, 220, 220, 220, 909, 8457, 796, 33918, 13, 2220, 7, 17752, 62, 7890, 8, 628, 220, 220, 220, 4263, 62, 65, 796, 6045, 198, 220, 220, 220, 4263, 62, 70, 796, 6045, 198, 220, 220, 220, 4263, 62, 81, 796, 6045, 628, 220, 220, 220, 329, 26181, 287, 909, 8457, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 65, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 70, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 81, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 3047, 7248, 796, 13614, 7248, 7, 26801, 8, 628, 220, 220, 220, 220, 220, 220, 220, 269, 85, 62, 9060, 796, 269, 85, 17, 13, 320, 961, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 15235, 1343, 3047, 7248, 13, 9060, 15235, 11, 269, 85, 17, 13, 3955, 15675, 62, 46786, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 269, 85, 62, 9060, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 44357, 2939, 25, 705, 1343, 3047, 7248, 13, 9060, 15235, 1343, 705, 2314, 307, 1043, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 595, 62, 9060, 796, 269, 85, 62, 9060, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 6001, 11, 9647, 11, 9619, 796, 269, 85, 62, 9060, 13, 43358, 628, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 1236, 78, 796, 3047, 7248, 13, 25249, 628, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 20337, 796, 1195, 66, 5159, 13, 31476, 62, 9060, 62, 1525, 62, 9150, 62, 392, 62, 2554, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 62, 9060, 11, 4469, 62, 1236, 78, 13, 9150, 11, 4469, 62, 1236, 78, 13, 2554, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 65, 2164, 796, 1195, 66, 5159, 13, 1136, 62, 23913, 62, 81, 22296, 7, 25249, 62, 20337, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 65, 13, 33295, 7, 25249, 62, 65, 2164, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 70, 13, 33295, 7, 25249, 62, 65, 2164, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 81, 13, 33295, 7, 25249, 62, 65, 2164, 58, 17, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1529, 78, 287, 3047, 7248, 13, 5420, 4972, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9568, 62, 20337, 796, 1195, 66, 5159, 13, 31476, 62, 9060, 62, 1525, 62, 9150, 62, 392, 62, 2554, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 62, 9060, 11, 1529, 78, 13, 9150, 11, 1529, 78, 13, 2554, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6291, 62, 65, 2164, 796, 1195, 66, 5159, 13, 1136, 62, 23913, 62, 81, 22296, 7, 49903, 62, 20337, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 65, 13, 33295, 7, 39873, 62, 65, 2164, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 70, 13, 33295, 7, 39873, 62, 65, 2164, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 62, 81, 13, 33295, 7, 39873, 62, 65, 2164, 58, 17, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3197, 3047, 6167, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1490, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 62, 87, 796, 493, 7, 10394, 1635, 1529, 78, 13, 9150, 13, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 62, 88, 796, 493, 7, 17015, 1635, 1529, 78, 13, 9150, 13, 88, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5391, 62, 87, 796, 493, 7, 10394, 1635, 1529, 78, 13, 2554, 13, 87, 1220, 371, 9782, 62, 6173, 21358, 8, 1343, 1426, 62, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5391, 62, 88, 796, 493, 7, 17015, 1635, 1529, 78, 13, 2554, 13, 88, 1220, 371, 9782, 62, 6173, 21358, 8, 1343, 1426, 62, 88, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 17, 13, 2554, 9248, 7, 6381, 62, 9060, 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, 357, 1930, 62, 87, 11, 1426, 62, 88, 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, 357, 27740, 62, 87, 11, 5391, 62, 88, 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, 357, 15, 11, 14280, 11, 657, 828, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 65, 796, 45941, 13, 18747, 26933, 4033, 669, 62, 65, 12962, 611, 4263, 62, 65, 318, 6045, 2073, 45941, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 65, 11, 685, 4033, 669, 62, 65, 4357, 16488, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 70, 796, 45941, 13, 18747, 26933, 4033, 669, 62, 70, 12962, 611, 4263, 62, 70, 318, 6045, 2073, 45941, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 70, 11, 685, 4033, 669, 62, 70, 4357, 16488, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 81, 796, 45941, 13, 18747, 26933, 4033, 669, 62, 81, 12962, 611, 4263, 62, 81, 318, 6045, 2073, 45941, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 81, 11, 685, 4033, 669, 62, 81, 4357, 16488, 28, 15, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3359, 3047, 2939, 290, 6167, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1490, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 62, 9060, 796, 269, 85, 17, 13, 33967, 83, 10258, 7, 6381, 62, 9060, 11, 269, 85, 17, 13, 46786, 62, 33, 10761, 17, 36982, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 320, 12860, 7, 6381, 62, 9060, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 7839, 7, 34409, 7248, 13, 9060, 15235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 220, 220, 220, 611, 705, 17585, 6, 287, 6518, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4171, 6518, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 17585, 25609, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 337, 62, 65, 11, 347, 62, 65, 11, 11454, 62, 65, 796, 311, 2149, 9771, 571, 1358, 8081, 2234, 62, 10744, 18, 13, 21383, 62, 9948, 571, 1358, 62, 2301, 2234, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 64, 11, 275, 290, 4049, 329, 4171, 6518, 25, 4064, 82, 11, 4, 82, 11, 4064, 82, 6, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 44, 62, 65, 11, 347, 62, 65, 11, 11454, 62, 65, 4008, 628, 220, 220, 220, 611, 705, 14809, 6, 287, 6518, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4077, 6518, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 14809, 25609, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 337, 62, 70, 11, 347, 62, 70, 11, 11454, 62, 70, 796, 311, 2149, 9771, 571, 1358, 8081, 2234, 62, 10744, 18, 13, 21383, 62, 9948, 571, 1358, 62, 2301, 2234, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 70, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 64, 11, 275, 290, 4049, 329, 4077, 6518, 25, 4064, 82, 11, 4, 82, 11, 4064, 82, 6, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 44, 62, 70, 11, 347, 62, 70, 11, 11454, 62, 70, 4008, 628, 220, 220, 220, 611, 705, 445, 6, 287, 6518, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2266, 6518, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 445, 25609, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 337, 62, 81, 11, 347, 62, 81, 11, 11454, 62, 81, 796, 311, 2149, 9771, 571, 1358, 8081, 2234, 62, 10744, 18, 13, 21383, 62, 9948, 571, 1358, 62, 2301, 2234, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 62, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 64, 11, 275, 290, 4049, 329, 2266, 6518, 25, 4064, 82, 11, 4, 82, 11, 4064, 82, 6, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 44, 62, 81, 11, 347, 62, 81, 11, 11454, 62, 81, 4008, 628, 220, 220, 220, 5128, 7203, 13800, 6062, 284, 8420, 9313, 8, 198 ]
2.003181
1,886
from setuptools import setup, find_packages setup(name = 'MELKE', version = '1', description = 'Extract entities and relations from BIO-text', long_description = 'You can read brief description of MELKE here: \nhttps://github.com/im-na02/melke/', url = 'https://github.com/im-na02/melke/', license = 'MIT', packages = ['melke'], keywords = ['bio', 'text', 'NER', 'entity', 'relation'], py_modules = ['EntityRelation'], python_requires = '>=3', include_package_data = True, package_data = {'melke':['*']}, zip_safe = False )
[ 201, 198, 6738, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 201, 198, 201, 198, 40406, 7, 3672, 796, 705, 44, 3698, 7336, 3256, 201, 198, 220, 220, 220, 220, 220, 2196, 796, 705, 16, 3256, 201, 198, 220, 220, 220, 220, 220, 6764, 796, 705, 11627, 974, 12066, 290, 2316, 422, 347, 9399, 12, 5239, 3256, 201, 198, 220, 220, 220, 220, 220, 890, 62, 11213, 796, 705, 1639, 460, 1100, 4506, 6764, 286, 337, 3698, 7336, 994, 25, 3467, 77, 5450, 1378, 12567, 13, 785, 14, 320, 12, 2616, 2999, 14, 17694, 365, 14, 3256, 201, 198, 220, 220, 220, 220, 220, 19016, 796, 705, 5450, 1378, 12567, 13, 785, 14, 320, 12, 2616, 2999, 14, 17694, 365, 14, 3256, 201, 198, 220, 220, 220, 220, 220, 5964, 796, 705, 36393, 3256, 201, 198, 220, 220, 220, 220, 220, 10392, 796, 37250, 17694, 365, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 26286, 796, 37250, 65, 952, 3256, 705, 5239, 3256, 705, 21479, 3256, 705, 26858, 3256, 705, 49501, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 12972, 62, 18170, 796, 37250, 32398, 6892, 341, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 21015, 62, 47911, 796, 705, 29, 28, 18, 3256, 201, 198, 220, 220, 220, 220, 220, 2291, 62, 26495, 62, 7890, 796, 6407, 11, 201, 198, 220, 220, 220, 220, 220, 5301, 62, 7890, 796, 1391, 6, 17694, 365, 10354, 17816, 9, 20520, 5512, 201, 198, 220, 220, 220, 220, 220, 19974, 62, 21230, 796, 10352, 201, 198, 220, 220, 220, 1267, 201, 198, 201, 198 ]
2.343396
265
"""Tests for motion_frontend integration."""
[ 37811, 51, 3558, 329, 6268, 62, 8534, 437, 11812, 526, 15931, 198 ]
3.75
12
# Crie um programa que tenha a função leiaInt(), que vai funcionar # de forma semelhante ‘a função input() do Python, só que fazendo a # validação para aceitar apenas um valor numérico. Ex: n = leiaInt(‘Digite um n: ‘) n = leiaInt('Número: ') print(n)
[ 2, 327, 5034, 23781, 1430, 64, 8358, 3478, 3099, 257, 1257, 16175, 28749, 443, 544, 5317, 22784, 8358, 410, 1872, 25439, 295, 283, 198, 2, 390, 1296, 64, 5026, 417, 71, 12427, 564, 246, 64, 1257, 16175, 28749, 5128, 3419, 466, 11361, 11, 264, 10205, 8358, 277, 1031, 31110, 257, 198, 2, 1188, 3755, 16175, 28749, 31215, 31506, 7940, 2471, 268, 292, 23781, 1188, 273, 997, 2634, 1173, 78, 13, 1475, 25, 299, 796, 443, 544, 5317, 7, 447, 246, 19511, 578, 23781, 299, 25, 564, 246, 8, 628, 198, 77, 796, 443, 544, 5317, 10786, 45, 21356, 647, 78, 25, 705, 8, 198, 4798, 7, 77, 8 ]
2.342593
108
# Import our database and initialize it from db import DB import send_email import re import hashlib import uuid import traceback from datetime import datetime from base64 import standard_b64encode sql = DB() sql.clear_db() sql.init_db() sql.populate() # Checker function to check all form variables # Checker function to check that all form variables are alphabetic # Checker function to check that all form variables are alphanum # Checker function to check that all form variables are alphanum # Get user information by supplying their UUID
[ 2, 17267, 674, 6831, 290, 41216, 340, 198, 6738, 20613, 1330, 20137, 198, 11748, 3758, 62, 12888, 198, 11748, 302, 198, 11748, 12234, 8019, 198, 11748, 334, 27112, 198, 11748, 12854, 1891, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 2779, 2414, 1330, 3210, 62, 65, 2414, 268, 8189, 628, 198, 25410, 796, 20137, 3419, 198, 25410, 13, 20063, 62, 9945, 3419, 198, 25410, 13, 15003, 62, 9945, 3419, 198, 25410, 13, 12924, 5039, 3419, 198, 198, 2, 6822, 263, 2163, 284, 2198, 477, 1296, 9633, 198, 198, 2, 6822, 263, 2163, 284, 2198, 326, 477, 1296, 9633, 389, 435, 746, 33312, 198, 198, 2, 6822, 263, 2163, 284, 2198, 326, 477, 1296, 9633, 389, 435, 19080, 388, 198, 198, 2, 6822, 263, 2163, 284, 2198, 326, 477, 1296, 9633, 389, 435, 19080, 388, 628, 197, 2, 3497, 2836, 1321, 416, 28099, 511, 471, 27586, 628 ]
3.761905
147
from fanstatic import Library, Resource from fanstatic.core import render_js library = Library('json2', 'resources') def earlier_than_ie8(url): """Native JSON support was introduced in IE8.""" return '<!--[if lt IE 8]>%s<![endif]-->' % render_js(url) json2 = Resource(library, 'json2.js', renderer=earlier_than_ie8)
[ 6738, 4336, 12708, 1330, 10074, 11, 20857, 198, 6738, 4336, 12708, 13, 7295, 1330, 8543, 62, 8457, 198, 198, 32016, 796, 10074, 10786, 17752, 17, 3256, 705, 37540, 11537, 198, 198, 4299, 2961, 62, 14813, 62, 494, 23, 7, 6371, 2599, 198, 220, 220, 220, 37227, 31272, 19449, 1104, 373, 5495, 287, 28157, 23, 526, 15931, 198, 220, 220, 220, 1441, 705, 27, 28112, 58, 361, 300, 83, 28157, 807, 60, 29, 4, 82, 27, 0, 58, 32088, 60, 46904, 6, 4064, 8543, 62, 8457, 7, 6371, 8, 198, 198, 17752, 17, 796, 20857, 7, 32016, 11, 705, 17752, 17, 13, 8457, 3256, 9851, 11882, 28, 451, 2505, 62, 14813, 62, 494, 23, 8, 198 ]
2.843478
115
from .base import BaseCompiler, ExecCompiler
[ 6738, 764, 8692, 1330, 7308, 7293, 5329, 11, 8393, 7293, 5329, 198 ]
3.75
12
'''Swiss pairing simulation''' import matplotlib matplotlib.use('SVG') import matplotlib.pyplot as plt import numpy as np from tournament import SwissTournament, PairingError if __name__ == '__main__': main()
[ 7061, 6, 10462, 747, 27356, 18640, 7061, 6, 198, 11748, 2603, 29487, 8019, 198, 6759, 29487, 8019, 13, 1904, 10786, 50, 43490, 11537, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 7756, 1330, 14780, 51, 5138, 11, 39645, 278, 12331, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
3.028169
71
import matplotlib.pyplot as plt import numpy as np t, x, y = np.loadtxt("out/traiettoria.dat", skiprows=1, unpack=True) # Traiettoria plt.figure(figsize=(5, 5)) plt.plot(x, y, "-o", color="tab:blue", markersize=3) plt.title("Traiettoria") plt.xlabel("x(t)") plt.ylabel("y(t)") plt.savefig("out/traiettoria") # x plt.figure(figsize=(5, 5)) plt.plot(t, x, "-o", color="tab:green", markersize=3) plt.title("x") plt.xlabel("t") plt.ylabel("x(t)") plt.savefig("out/x") # y plt.figure(figsize=(5, 5)) plt.plot(t, y, "-o", color="tab:red", markersize=3) plt.title("y") plt.xlabel("t") plt.ylabel("y(t)") plt.savefig("out/y") plt.show()
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 198, 83, 11, 2124, 11, 331, 796, 45941, 13, 2220, 14116, 7203, 448, 14, 9535, 1155, 83, 7661, 13, 19608, 1600, 14267, 8516, 28, 16, 11, 555, 8002, 28, 17821, 8, 198, 198, 2, 4759, 1155, 83, 7661, 198, 489, 83, 13, 26875, 7, 5647, 7857, 16193, 20, 11, 642, 4008, 198, 489, 83, 13, 29487, 7, 87, 11, 331, 11, 27444, 78, 1600, 3124, 2625, 8658, 25, 17585, 1600, 19736, 1096, 28, 18, 8, 198, 198, 489, 83, 13, 7839, 7203, 15721, 1155, 83, 7661, 4943, 198, 489, 83, 13, 87, 18242, 7203, 87, 7, 83, 8, 4943, 198, 489, 83, 13, 2645, 9608, 7203, 88, 7, 83, 8, 4943, 198, 489, 83, 13, 21928, 5647, 7203, 448, 14, 9535, 1155, 83, 7661, 4943, 198, 198, 2, 2124, 198, 489, 83, 13, 26875, 7, 5647, 7857, 16193, 20, 11, 642, 4008, 198, 489, 83, 13, 29487, 7, 83, 11, 2124, 11, 27444, 78, 1600, 3124, 2625, 8658, 25, 14809, 1600, 19736, 1096, 28, 18, 8, 198, 198, 489, 83, 13, 7839, 7203, 87, 4943, 198, 489, 83, 13, 87, 18242, 7203, 83, 4943, 198, 489, 83, 13, 2645, 9608, 7203, 87, 7, 83, 8, 4943, 198, 489, 83, 13, 21928, 5647, 7203, 448, 14, 87, 4943, 198, 198, 2, 331, 198, 489, 83, 13, 26875, 7, 5647, 7857, 16193, 20, 11, 642, 4008, 198, 489, 83, 13, 29487, 7, 83, 11, 331, 11, 27444, 78, 1600, 3124, 2625, 8658, 25, 445, 1600, 19736, 1096, 28, 18, 8, 198, 198, 489, 83, 13, 7839, 7203, 88, 4943, 198, 489, 83, 13, 87, 18242, 7203, 83, 4943, 198, 489, 83, 13, 2645, 9608, 7203, 88, 7, 83, 8, 4943, 198, 489, 83, 13, 21928, 5647, 7203, 448, 14, 88, 4943, 628, 198, 489, 83, 13, 12860, 3419, 198 ]
2.031847
314
"""Simple wrapper to upgrade the files by github URL""" import json import logging import os import re import shutil import subprocess import urllib from hashlib import md5 from typing import Tuple, List import requests import tensorflow as tf # TODO: install file properly with `pip install -e .` import sys sys.path.append(os.path.abspath(os.path.dirname(__file__))) from storage import FileStorage from flask import ( Flask, redirect, request, render_template, send_from_directory) app = Flask(__name__) class NotebookDownloadException(Exception): """Notebook download exception""" class ConvertionException(Exception): """NBdime conversion exception""" def download_file(requested_url: str) -> str: """Download a file from github repository""" url = f"https://github.com/{requested_url.replace('blob', 'raw')}" resp = requests.get(url) logging.info(F"Requested URL: {requested_url}") if resp.status_code != 200: logging.info(f"Can not download {url}") raise NotebookDownloadException("Can not download the file. Please, check the URL") return resp.text # TODO: Run conversion in temp folder, # so we do not have issues with concurrent conversion def convert_file(in_file: str, out_file: str) -> List[str]: """Upgrade file with tf_upgrade_v2.""" comand = f"tf_upgrade_v2 --infile {in_file} --outfile {out_file}" process = subprocess.Popen(comand, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) result_bytes = process.stdout.readlines() process.wait() result = [line.decode('utf-8') for line in result_bytes] if process.returncode: details = "<br>".join(result) raise ConvertionException("Can not convert the file", details) return result def save_ipynb_from_py(folder: str, py_filename: str) -> str: """Save ipynb file based on python file""" full_filename = f"{folder}/{py_filename}" with open(full_filename) as pyfile: code_lines = [line.replace("\n", "\\n").replace('"', '\\"') for line in pyfile.readlines()] pycode = '",\n"'.join(code_lines) with open('template.ipynb') as template: template_body = ''.join(template.readlines()) ipynb_code = template_body.replace('{{TEMPLATE}}', pycode) new_filename = full_filename.replace('.py', '.ipynb') with open(new_filename, "w") as ipynb_file: ipynb_file.write(ipynb_code) return py_filename.replace('.py', '.ipynb') def process_file(file_url: str) -> Tuple[str, Tuple[str, ...]]: """Process file with download, cache and upgrade.""" _, file_ext = os.path.splitext(file_url) folder_hash = md5(file_url.encode('utf-8')).hexdigest() path = f"/notebooks/{folder_hash}" original = f"original{file_ext}" converted = f"converted{file_ext}" # TODO: delete the folder completely if `force` if not os.path.exists(path): file_content = download_file(file_url) os.mkdir(path) with open(f"{path}/{original}", "w") as original_file: original_file.write(file_content) try: output = convert_file(f"{path}/{original}", f"{path}/{converted}") except ConvertionException as error: shutil.rmtree(path) raise error with open(f"{path}/output", "w") as summary_output: summary_output.write('\n'.join(output)) shutil.copy('report.txt', f"{path}/report") # persist `report.txt` to GCS storage = FileStorage() storage.save_file('report.txt', folder_hash) # found a python file, need to encode separately if original.endswith('.py'): result_filenames = [] for py_file in [original, converted]: result_filenames.append(save_ipynb_from_py(path, py_file)) assert len(result_filenames) == 2 return path, tuple(result_filenames[:2]) if original.endswith('.py'): return path, (original.replace('.py', '.ipynb'), converted.replace('.py', '.ipynb')) return path, (original, converted) def inject_nbdime(content: str, folder_hash: str) -> str: """Inject report strings before `nbdime`' diff""" replace_token = "<h3>Notebook Diff</h3>" position = content.find(replace_token) # nothing to inject here, just return the content if position == -1: return content path = f"/notebooks/{folder_hash}" with open(f"{path}/report") as summary_output: report_lines = [line for line in summary_output.readlines() if line.strip() != ''] return render_template("nbdime_inject.html", before=content[:position], report_lines=report_lines, after=content[position:], folder=folder_hash, file='converted.ipynb', tf_version=tf.version.VERSION) @app.route("/") def hello(): """Index page with intro info.""" return render_template('index.html', tf_version=tf.version.VERSION) @app.route('/download/<path:folder>/<path:filename>') def download(folder, filename): """Allow to download files.""" # TODO: move all /notebooks to a single config uploads = os.path.join('/notebooks/', folder) return send_from_directory(directory=uploads, filename=filename) @app.route("/d/<path:path>", methods=['GET']) def proxy(path): """Proxy request to index of `nbdime`""" nbdime_url = os.environ.get('NBDIME_URL') params = '&'.join([f"{k}={v}" for k, v in request.values.items()]) url = f"{nbdime_url}{path}?{params}" logging.info(f"URL: {url}") try: response = urllib.request.urlopen(url) content = response.read() if b'notebooks' in content: folder_hash = re.findall(r"/notebooks\/([^\/]+)/", url)[0] try: content = inject_nbdime(content.decode('utf-8'), folder_hash) return content except FileNotFoundError: return ("The cache was invalidated meanwhile. " "Please start by submitting the URL again.") else: return content except urllib.error.URLError: logging.error(f"Can not proxy nbdime for GET: {url}") message = "Something went wrong, can not proxy nbdime" return render_template('error.html', message=message), 502 @app.route("/d/<path:path>", methods=['POST']) def proxy_api(path): """Proxy request to `nbdime` API""" nbdime_url = os.environ.get('NBDIME_URL') url = f"{nbdime_url}{path}" try: payload = json.dumps(request.json).encode() headers = {'content-type': 'application/json'} # dirty hack: seems like sometimes nbdime looses `content type` # from `application/json` to `text/plain;charset=UTF-8` if not request.json: logging.warning(f"WARNING: somehow lost json payload {request.json}") base = re.findall(r"base=([^\&]+)", request.referrer)[0] remote = re.findall(r"remote=([^\&]+)", request.referrer)[0] payload = json.dumps({'base': base, 'remote': remote}) payload = payload.replace('%2F', '/').encode('utf-8') req = urllib.request.Request(url, data=payload, headers=headers) resp = urllib.request.urlopen(req) return resp.read() except urllib.error.URLError: logging.error(f"Can not proxy nbdime for POST: {url}") message = "Something went wrong, can not proxy nbdime" return render_template('error.html', message=message), 502 # TODO force refresh @app.route('/<path:path>') def catch_all(path): """Endpoint for all URLs from Github""" if not (path.endswith('.py') or path.endswith('.ipynb')): message = "Currently we only support `.py` and `.ipynb` files." return render_template('error.html', message=message), 501 try: folder, files = process_file(path) url = f"/d/diff?base={folder}/{files[0]}&remote={folder}/{files[1]}" return redirect(url, code=302) except NotebookDownloadException as error: message = error.args[0] return render_template('error.html', message=message), 400 except ConvertionException as error: logging.error(f"Can not convert for path {path}: {error.details}") return render_template('error.html', message=error.message, details=error.details), 400 if __name__ == "__main__": app.run(debug=True, host="0.0.0.0")
[ 37811, 26437, 29908, 284, 8515, 262, 3696, 416, 33084, 10289, 37811, 198, 198, 11748, 33918, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 4423, 346, 198, 11748, 850, 14681, 198, 11748, 2956, 297, 571, 198, 198, 6738, 12234, 8019, 1330, 45243, 20, 198, 6738, 19720, 1330, 309, 29291, 11, 7343, 198, 198, 11748, 7007, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 198, 2, 16926, 46, 25, 2721, 2393, 6105, 351, 4600, 79, 541, 2721, 532, 68, 764, 63, 198, 11748, 25064, 198, 17597, 13, 6978, 13, 33295, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 22305, 198, 198, 6738, 6143, 1330, 9220, 31425, 628, 198, 6738, 42903, 1330, 357, 198, 220, 220, 220, 46947, 11, 18941, 11, 2581, 11, 8543, 62, 28243, 11, 3758, 62, 6738, 62, 34945, 8, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 628, 198, 4871, 5740, 2070, 10002, 16922, 7, 16922, 2599, 198, 220, 220, 220, 37227, 6425, 2070, 4321, 6631, 37811, 198, 198, 4871, 38240, 295, 16922, 7, 16922, 2599, 198, 220, 220, 220, 37227, 32819, 67, 524, 11315, 6631, 37811, 628, 198, 198, 4299, 4321, 62, 7753, 7, 25927, 276, 62, 6371, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 10002, 257, 2393, 422, 33084, 16099, 37811, 628, 220, 220, 220, 19016, 796, 277, 1, 5450, 1378, 12567, 13, 785, 14, 90, 25927, 276, 62, 6371, 13, 33491, 10786, 2436, 672, 3256, 705, 1831, 11537, 36786, 198, 220, 220, 220, 1217, 796, 7007, 13, 1136, 7, 6371, 8, 198, 220, 220, 220, 18931, 13, 10951, 7, 37, 1, 18453, 276, 10289, 25, 1391, 25927, 276, 62, 6371, 92, 4943, 628, 220, 220, 220, 611, 1217, 13, 13376, 62, 8189, 14512, 939, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 7, 69, 1, 6090, 407, 4321, 1391, 6371, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5740, 2070, 10002, 16922, 7203, 6090, 407, 4321, 262, 2393, 13, 4222, 11, 2198, 262, 10289, 4943, 628, 220, 220, 220, 1441, 1217, 13, 5239, 628, 198, 2, 16926, 46, 25, 5660, 11315, 287, 20218, 9483, 11, 198, 2, 523, 356, 466, 407, 423, 2428, 351, 24580, 11315, 198, 4299, 10385, 62, 7753, 7, 259, 62, 7753, 25, 965, 11, 503, 62, 7753, 25, 965, 8, 4613, 7343, 58, 2536, 5974, 198, 220, 220, 220, 37227, 44948, 2393, 351, 48700, 62, 929, 9526, 62, 85, 17, 526, 15931, 628, 220, 220, 220, 401, 392, 796, 277, 1, 27110, 62, 929, 9526, 62, 85, 17, 1377, 259, 7753, 1391, 259, 62, 7753, 92, 1377, 448, 7753, 1391, 448, 62, 7753, 36786, 628, 220, 220, 220, 1429, 796, 850, 14681, 13, 47, 9654, 7, 785, 392, 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, 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, 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, 336, 1082, 81, 28, 7266, 14681, 13, 36886, 8, 198, 220, 220, 220, 1255, 62, 33661, 796, 1429, 13, 19282, 448, 13, 961, 6615, 3419, 198, 220, 220, 220, 1429, 13, 17077, 3419, 628, 220, 220, 220, 1255, 796, 685, 1370, 13, 12501, 1098, 10786, 40477, 12, 23, 11537, 329, 1627, 287, 1255, 62, 33661, 60, 198, 220, 220, 220, 611, 1429, 13, 7783, 8189, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3307, 796, 33490, 1671, 29, 1911, 22179, 7, 20274, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 38240, 295, 16922, 7203, 6090, 407, 10385, 262, 2393, 1600, 3307, 8, 628, 220, 220, 220, 1441, 1255, 198, 198, 4299, 3613, 62, 541, 2047, 65, 62, 6738, 62, 9078, 7, 43551, 25, 965, 11, 12972, 62, 34345, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 16928, 20966, 2047, 65, 2393, 1912, 319, 21015, 2393, 37811, 628, 220, 220, 220, 1336, 62, 34345, 796, 277, 1, 90, 43551, 92, 14, 90, 9078, 62, 34345, 36786, 198, 220, 220, 220, 351, 1280, 7, 12853, 62, 34345, 8, 355, 12972, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 6615, 796, 685, 1370, 13, 33491, 7203, 59, 77, 1600, 366, 6852, 77, 11074, 33491, 10786, 1, 3256, 705, 6852, 1, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 12972, 7753, 13, 961, 6615, 3419, 60, 198, 220, 220, 220, 220, 220, 220, 220, 12972, 8189, 796, 705, 1600, 59, 77, 1, 4458, 22179, 7, 8189, 62, 6615, 8, 628, 220, 220, 220, 351, 1280, 10786, 28243, 13, 541, 2047, 65, 11537, 355, 11055, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 62, 2618, 796, 705, 4458, 22179, 7, 28243, 13, 961, 6615, 28955, 628, 220, 220, 220, 20966, 2047, 65, 62, 8189, 796, 11055, 62, 2618, 13, 33491, 10786, 27007, 51, 3620, 6489, 6158, 11709, 3256, 12972, 8189, 8, 628, 220, 220, 220, 649, 62, 34345, 796, 1336, 62, 34345, 13, 33491, 7, 4458, 9078, 3256, 45302, 541, 2047, 65, 11537, 198, 220, 220, 220, 351, 1280, 7, 3605, 62, 34345, 11, 366, 86, 4943, 355, 20966, 2047, 65, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 20966, 2047, 65, 62, 7753, 13, 13564, 7, 541, 2047, 65, 62, 8189, 8, 628, 220, 220, 220, 1441, 12972, 62, 34345, 13, 33491, 7, 4458, 9078, 3256, 45302, 541, 2047, 65, 11537, 628, 198, 4299, 1429, 62, 7753, 7, 7753, 62, 6371, 25, 965, 8, 4613, 309, 29291, 58, 2536, 11, 309, 29291, 58, 2536, 11, 2644, 60, 5974, 198, 220, 220, 220, 37227, 18709, 2393, 351, 4321, 11, 12940, 290, 8515, 526, 15931, 628, 220, 220, 220, 4808, 11, 2393, 62, 2302, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 7753, 62, 6371, 8, 198, 220, 220, 220, 9483, 62, 17831, 796, 45243, 20, 7, 7753, 62, 6371, 13, 268, 8189, 10786, 40477, 12, 23, 11537, 737, 33095, 12894, 395, 3419, 628, 220, 220, 220, 3108, 796, 277, 1, 14, 11295, 12106, 14, 90, 43551, 62, 17831, 36786, 198, 220, 220, 220, 2656, 796, 277, 1, 14986, 90, 7753, 62, 2302, 36786, 198, 220, 220, 220, 11513, 796, 277, 1, 1102, 13658, 90, 7753, 62, 2302, 36786, 628, 220, 220, 220, 1303, 16926, 46, 25, 12233, 262, 9483, 3190, 611, 4600, 3174, 63, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 62, 11299, 796, 4321, 62, 7753, 7, 7753, 62, 6371, 8, 628, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 69, 1, 90, 6978, 92, 14, 90, 14986, 92, 1600, 366, 86, 4943, 355, 2656, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2656, 62, 7753, 13, 13564, 7, 7753, 62, 11299, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 796, 10385, 62, 7753, 7, 69, 1, 90, 6978, 92, 14, 90, 14986, 92, 1600, 277, 1, 90, 6978, 92, 14, 90, 1102, 13658, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 38240, 295, 16922, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 4049, 628, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 69, 1, 90, 6978, 92, 14, 22915, 1600, 366, 86, 4943, 355, 10638, 62, 22915, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10638, 62, 22915, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 22915, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 30073, 10786, 13116, 13, 14116, 3256, 277, 1, 90, 6978, 92, 14, 13116, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 21160, 4600, 13116, 13, 14116, 63, 284, 402, 7902, 198, 220, 220, 220, 220, 220, 220, 220, 6143, 796, 9220, 31425, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 6143, 13, 21928, 62, 7753, 10786, 13116, 13, 14116, 3256, 9483, 62, 17831, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1043, 257, 21015, 2393, 11, 761, 284, 37773, 13869, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2656, 13, 437, 2032, 342, 7, 4458, 9078, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 62, 10379, 268, 1047, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 12972, 62, 7753, 287, 685, 14986, 11, 11513, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 62, 10379, 268, 1047, 13, 33295, 7, 21928, 62, 541, 2047, 65, 62, 6738, 62, 9078, 7, 6978, 11, 12972, 62, 7753, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 20274, 62, 10379, 268, 1047, 8, 6624, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3108, 11, 46545, 7, 20274, 62, 10379, 268, 1047, 58, 25, 17, 12962, 628, 220, 220, 220, 611, 2656, 13, 437, 2032, 342, 7, 4458, 9078, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 3108, 11, 357, 14986, 13, 33491, 7, 4458, 9078, 3256, 45302, 541, 2047, 65, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11513, 13, 33491, 7, 4458, 9078, 3256, 45302, 541, 2047, 65, 6, 4008, 628, 220, 220, 220, 1441, 3108, 11, 357, 14986, 11, 11513, 8, 628, 198, 4299, 8677, 62, 77, 17457, 524, 7, 11299, 25, 965, 11, 9483, 62, 17831, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 818, 752, 989, 13042, 878, 4600, 77, 17457, 524, 63, 6, 814, 37811, 198, 220, 220, 220, 6330, 62, 30001, 796, 33490, 71, 18, 29, 6425, 2070, 10631, 3556, 71, 18, 24618, 198, 220, 220, 220, 2292, 796, 2695, 13, 19796, 7, 33491, 62, 30001, 8, 628, 220, 220, 220, 1303, 2147, 284, 8677, 994, 11, 655, 1441, 262, 2695, 198, 220, 220, 220, 611, 2292, 6624, 532, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2695, 628, 220, 220, 220, 3108, 796, 277, 1, 14, 11295, 12106, 14, 90, 43551, 62, 17831, 36786, 198, 220, 220, 220, 351, 1280, 7, 69, 1, 90, 6978, 92, 14, 13116, 4943, 355, 10638, 62, 22915, 25, 198, 220, 220, 220, 220, 220, 220, 220, 989, 62, 6615, 796, 685, 1370, 329, 1627, 287, 10638, 62, 22915, 13, 961, 6615, 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, 611, 1627, 13, 36311, 3419, 14512, 10148, 60, 628, 220, 220, 220, 1441, 8543, 62, 28243, 7203, 77, 17457, 524, 62, 259, 752, 13, 6494, 1600, 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, 878, 28, 11299, 58, 25, 9150, 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, 989, 62, 6615, 28, 13116, 62, 6615, 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, 706, 28, 11299, 58, 9150, 25, 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, 9483, 28, 43551, 62, 17831, 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, 2393, 11639, 1102, 13658, 13, 541, 2047, 65, 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, 48700, 62, 9641, 28, 27110, 13, 9641, 13, 43717, 8, 628, 198, 31, 1324, 13, 38629, 7203, 14, 4943, 198, 4299, 23748, 33529, 198, 220, 220, 220, 37227, 15732, 2443, 351, 18951, 7508, 526, 15931, 198, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 9630, 13, 6494, 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, 48700, 62, 9641, 28, 27110, 13, 9641, 13, 43717, 8, 628, 198, 31, 1324, 13, 38629, 10786, 14, 15002, 14, 27, 6978, 25, 43551, 29, 14, 27, 6978, 25, 34345, 29, 11537, 198, 4299, 4321, 7, 43551, 11, 29472, 2599, 198, 220, 220, 220, 37227, 35265, 284, 4321, 3696, 526, 15931, 628, 220, 220, 220, 1303, 16926, 46, 25, 1445, 477, 1220, 11295, 12106, 284, 257, 2060, 4566, 198, 220, 220, 220, 9516, 82, 796, 28686, 13, 6978, 13, 22179, 10786, 14, 11295, 12106, 14, 3256, 9483, 8, 198, 220, 220, 220, 1441, 3758, 62, 6738, 62, 34945, 7, 34945, 28, 39920, 11, 29472, 28, 34345, 8, 628, 198, 31, 1324, 13, 38629, 7203, 14, 67, 14, 27, 6978, 25, 6978, 29, 1600, 5050, 28, 17816, 18851, 6, 12962, 198, 4299, 15741, 7, 6978, 2599, 198, 220, 220, 220, 37227, 44148, 2581, 284, 6376, 286, 4600, 77, 17457, 524, 63, 37811, 628, 220, 220, 220, 299, 17457, 524, 62, 6371, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 45, 14529, 12789, 62, 21886, 11537, 198, 220, 220, 220, 42287, 796, 705, 5, 4458, 22179, 26933, 69, 1, 90, 74, 92, 34758, 85, 36786, 329, 479, 11, 410, 287, 2581, 13, 27160, 13, 23814, 3419, 12962, 198, 220, 220, 220, 19016, 796, 277, 1, 90, 77, 17457, 524, 62, 6371, 18477, 6978, 92, 30, 90, 37266, 36786, 628, 220, 220, 220, 18931, 13, 10951, 7, 69, 1, 21886, 25, 1391, 6371, 92, 4943, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2956, 297, 571, 13, 25927, 13, 6371, 9654, 7, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 796, 2882, 13, 961, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 275, 6, 11295, 12106, 6, 287, 2695, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9483, 62, 17831, 796, 302, 13, 19796, 439, 7, 81, 1, 14, 11295, 12106, 11139, 26933, 61, 11139, 48688, 20679, 1600, 19016, 38381, 15, 60, 628, 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, 2695, 796, 8677, 62, 77, 17457, 524, 7, 11299, 13, 12501, 1098, 10786, 40477, 12, 23, 33809, 9483, 62, 17831, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2695, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 9220, 3673, 21077, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 5855, 464, 12940, 373, 12515, 515, 15066, 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, 366, 5492, 923, 416, 24353, 262, 10289, 757, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2695, 628, 220, 220, 220, 2845, 2956, 297, 571, 13, 18224, 13, 4261, 2538, 81, 1472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 18224, 7, 69, 1, 6090, 407, 15741, 299, 17457, 524, 329, 17151, 25, 1391, 6371, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 366, 22210, 1816, 2642, 11, 460, 407, 15741, 299, 17457, 524, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 18224, 13, 6494, 3256, 3275, 28, 20500, 828, 47233, 628, 198, 198, 31, 1324, 13, 38629, 7203, 14, 67, 14, 27, 6978, 25, 6978, 29, 1600, 5050, 28, 17816, 32782, 6, 12962, 198, 4299, 15741, 62, 15042, 7, 6978, 2599, 198, 220, 220, 220, 37227, 44148, 2581, 284, 4600, 77, 17457, 524, 63, 7824, 37811, 628, 220, 220, 220, 299, 17457, 524, 62, 6371, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 45, 14529, 12789, 62, 21886, 11537, 198, 220, 220, 220, 19016, 796, 277, 1, 90, 77, 17457, 524, 62, 6371, 18477, 6978, 36786, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 21437, 796, 33918, 13, 67, 8142, 7, 25927, 13, 17752, 737, 268, 8189, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 24697, 796, 1391, 6, 11299, 12, 4906, 10354, 705, 31438, 14, 17752, 6, 92, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 11841, 8156, 25, 2331, 588, 3360, 299, 17457, 524, 2376, 4629, 4600, 11299, 2099, 63, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 422, 4600, 31438, 14, 17752, 63, 284, 4600, 5239, 14, 25638, 26, 354, 945, 316, 28, 48504, 12, 23, 63, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2581, 13, 17752, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 43917, 7, 69, 1, 31502, 25, 7599, 2626, 33918, 21437, 1391, 25927, 13, 17752, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 796, 302, 13, 19796, 439, 7, 81, 1, 8692, 16193, 58, 61, 59, 5, 60, 28988, 1600, 2581, 13, 260, 2232, 11751, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6569, 796, 302, 13, 19796, 439, 7, 81, 1, 47960, 16193, 58, 61, 59, 5, 60, 28988, 1600, 2581, 13, 260, 2232, 11751, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21437, 796, 33918, 13, 67, 8142, 15090, 6, 8692, 10354, 2779, 11, 705, 47960, 10354, 6569, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21437, 796, 21437, 13, 33491, 10786, 4, 17, 37, 3256, 31051, 27691, 268, 8189, 10786, 40477, 12, 23, 11537, 628, 198, 220, 220, 220, 220, 220, 220, 220, 43089, 796, 2956, 297, 571, 13, 25927, 13, 18453, 7, 6371, 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, 1366, 28, 15577, 2220, 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, 24697, 28, 50145, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 2956, 297, 571, 13, 25927, 13, 6371, 9654, 7, 42180, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1217, 13, 961, 3419, 628, 220, 220, 220, 2845, 2956, 297, 571, 13, 18224, 13, 4261, 2538, 81, 1472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 18224, 7, 69, 1, 6090, 407, 15741, 299, 17457, 524, 329, 24582, 25, 1391, 6371, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 366, 22210, 1816, 2642, 11, 460, 407, 15741, 299, 17457, 524, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 18224, 13, 6494, 3256, 3275, 28, 20500, 828, 47233, 628, 198, 2, 16926, 46, 2700, 14976, 198, 31, 1324, 13, 38629, 10786, 14, 27, 6978, 25, 6978, 29, 11537, 198, 4299, 4929, 62, 439, 7, 6978, 2599, 198, 220, 220, 220, 37227, 12915, 4122, 329, 477, 32336, 422, 38994, 37811, 628, 220, 220, 220, 611, 407, 357, 6978, 13, 437, 2032, 342, 7, 4458, 9078, 11537, 393, 3108, 13, 437, 2032, 342, 7, 4458, 541, 2047, 65, 11537, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 366, 21327, 356, 691, 1104, 4600, 13, 9078, 63, 290, 4600, 13, 541, 2047, 65, 63, 3696, 526, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 18224, 13, 6494, 3256, 3275, 28, 20500, 828, 24555, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9483, 11, 3696, 796, 1429, 62, 7753, 7, 6978, 8, 628, 220, 220, 220, 220, 220, 220, 220, 19016, 796, 277, 1, 14, 67, 14, 26069, 30, 8692, 34758, 43551, 92, 14, 90, 16624, 58, 15, 48999, 5, 47960, 34758, 43551, 92, 14, 90, 16624, 58, 16, 60, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18941, 7, 6371, 11, 2438, 28, 22709, 8, 628, 220, 220, 220, 2845, 5740, 2070, 10002, 16922, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 4049, 13, 22046, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 18224, 13, 6494, 3256, 3275, 28, 20500, 828, 7337, 628, 220, 220, 220, 2845, 38240, 295, 16922, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 18224, 7, 69, 1, 6090, 407, 10385, 329, 3108, 1391, 6978, 38362, 1391, 18224, 13, 36604, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 62, 28243, 10786, 18224, 13, 6494, 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, 3275, 28, 18224, 13, 20500, 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, 3307, 28, 18224, 13, 36604, 828, 7337, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 598, 13, 5143, 7, 24442, 28, 17821, 11, 2583, 2625, 15, 13, 15, 13, 15, 13, 15, 4943, 198 ]
2.326007
3,822
def resolve(): ''' code here ''' X = int(input()) if X >= 30: print('Yes') else: print('No') if __name__ == "__main__": resolve()
[ 4299, 10568, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2438, 994, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1395, 796, 493, 7, 15414, 28955, 628, 220, 220, 220, 611, 1395, 18189, 1542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 5297, 11537, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 2949, 11537, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 10568, 3419, 198 ]
1.988764
89
from twistedbot.plugins.base import PluginChatBase from twistedbot.behavior_tree import FollowPlayer plugin = Follow
[ 198, 6738, 19074, 13645, 13, 37390, 13, 8692, 1330, 42636, 30820, 14881, 198, 6738, 19074, 13645, 13, 46571, 62, 21048, 1330, 7281, 14140, 628, 198, 198, 33803, 796, 7281, 198 ]
4.033333
30
import pytest from transiter.db import models @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture
[ 11748, 12972, 9288, 198, 198, 6738, 1007, 2676, 13, 9945, 1330, 4981, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 198 ]
2.644444
45
from collections import defaultdict import copy import networkx as nx from zincbase import context class Edge: """Class representing an edge in the KB. """ @property def nodes(self): """Return the nodes that this edge is connected to as tuple of (subject, object) """ return [context.kb.node(self._sub), context.kb.node(self._ob)] @property def attrs(self): """Returns attributes of the edge stored in the KB """ attributes = None for _, edge in self._edge.items(): if edge['pred'] == self._pred: attributes = copy.deepcopy(edge) if attributes is None: return False try: del attributes['pred'] del attributes['_watches'] except: pass return attributes def watch(self, attribute, fn): """Execute user-defined function when the value of attribute changes. Function takes two args: `edge` which has access to all its own attributes, and the second arg is the previous value of the attribute that changed. As cycles are possible in the graph, changes to an edge attribute, that change the attributes of the nodes it's connected to, etc, may eventually propagate back to change the original edge's attribute again, ad infinitum until the stack explodes. To prevent this, in one "update cycle", more than `kb._MAX_RECURSION` updates will be rejected. :returns int: id of the watch :Example: >>> from zincbase import KB >>> kb = KB() >>> kb.store('edge(a,b)') 0 >>> edge = kb.edge('a', 'edge', 'b') >>> edge.resistance = 3 >>> print(edge.resistance) 3 >>> edge.watch('resistance', lambda x, prev_val: print('resistance changed to ' + str(x.resistance))) ('resistance', 0) >>> edge.resistance += 1 resistance changed to 4 """ self._watches[attribute].append(fn) return (attribute, len(self._watches) - 1) def remove_watch(self, attribute_or_watch_id): """Stop watching `attribute_or_watch_id`. If it is a string, delete all watches for that attribute. If it is a tuple of (attribute, watch_id): delete that specific watch. """ if isinstance(attribute_or_watch_id, tuple): self._watches[attribute_or_watch_id[0]].pop(attribute_or_watch_id[1]) else: self._watches[attribute_or_watch_id] = []
[ 6738, 17268, 1330, 4277, 11600, 198, 11748, 4866, 198, 198, 11748, 3127, 87, 355, 299, 87, 198, 198, 6738, 31861, 8692, 1330, 4732, 198, 198, 4871, 13113, 25, 198, 220, 220, 220, 37227, 9487, 10200, 281, 5743, 287, 262, 14204, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 13760, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 13760, 326, 428, 5743, 318, 5884, 284, 355, 46545, 286, 357, 32796, 11, 2134, 8, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 22866, 13, 32812, 13, 17440, 7, 944, 13557, 7266, 828, 4732, 13, 32812, 13, 17440, 7, 944, 13557, 672, 15437, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 708, 3808, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 12608, 286, 262, 5743, 8574, 287, 262, 14204, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 12608, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 329, 4808, 11, 5743, 287, 2116, 13557, 14907, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5743, 17816, 28764, 20520, 6624, 2116, 13557, 28764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12608, 796, 4866, 13, 22089, 30073, 7, 14907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12608, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 12608, 17816, 28764, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 12608, 17816, 62, 86, 20981, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 12608, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 2342, 7, 944, 11, 11688, 11, 24714, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23002, 1133, 2836, 12, 23211, 2163, 618, 262, 1988, 286, 11688, 2458, 13, 198, 220, 220, 220, 220, 220, 220, 220, 15553, 2753, 734, 26498, 25, 4600, 14907, 63, 543, 468, 1895, 284, 477, 198, 220, 220, 220, 220, 220, 220, 220, 663, 898, 12608, 11, 290, 262, 1218, 198, 220, 220, 220, 220, 220, 220, 220, 1822, 318, 262, 2180, 1988, 286, 262, 11688, 326, 3421, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1081, 16006, 389, 1744, 287, 262, 4823, 11, 2458, 284, 281, 5743, 11688, 11, 326, 198, 220, 220, 220, 220, 220, 220, 220, 1487, 262, 12608, 286, 262, 13760, 340, 338, 5884, 284, 11, 3503, 11, 198, 220, 220, 220, 220, 220, 220, 220, 743, 4191, 47933, 736, 284, 1487, 262, 2656, 5743, 338, 11688, 757, 11, 198, 220, 220, 220, 220, 220, 220, 220, 512, 1167, 15003, 388, 1566, 262, 8931, 38711, 13, 1675, 2948, 428, 11, 287, 530, 366, 19119, 6772, 1600, 517, 198, 220, 220, 220, 220, 220, 220, 220, 621, 4600, 32812, 13557, 22921, 62, 38827, 4261, 50, 2849, 63, 5992, 481, 307, 8606, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 493, 25, 4686, 286, 262, 2342, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 16281, 25, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 422, 31861, 8692, 1330, 14204, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 47823, 796, 14204, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 47823, 13, 8095, 10786, 14907, 7, 64, 11, 65, 8, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 657, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 5743, 796, 47823, 13, 14907, 10786, 64, 3256, 705, 14907, 3256, 705, 65, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 5743, 13, 411, 9311, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 3601, 7, 14907, 13, 411, 9311, 8, 198, 220, 220, 220, 220, 220, 220, 220, 513, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 5743, 13, 8340, 10786, 411, 9311, 3256, 37456, 2124, 11, 8654, 62, 2100, 25, 3601, 10786, 411, 9311, 3421, 284, 705, 1343, 965, 7, 87, 13, 411, 9311, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 411, 9311, 3256, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 5743, 13, 411, 9311, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 6625, 3421, 284, 604, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 86, 20981, 58, 42348, 4083, 33295, 7, 22184, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 42348, 11, 18896, 7, 944, 13557, 86, 20981, 8, 532, 352, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 4781, 62, 8340, 7, 944, 11, 11688, 62, 273, 62, 8340, 62, 312, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19485, 4964, 4600, 42348, 62, 273, 62, 8340, 62, 312, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 340, 318, 257, 4731, 11, 12233, 477, 16860, 329, 326, 11688, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 340, 318, 257, 46545, 286, 357, 42348, 11, 2342, 62, 312, 2599, 12233, 326, 2176, 2342, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 42348, 62, 273, 62, 8340, 62, 312, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 86, 20981, 58, 42348, 62, 273, 62, 8340, 62, 312, 58, 15, 60, 4083, 12924, 7, 42348, 62, 273, 62, 8340, 62, 312, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 86, 20981, 58, 42348, 62, 273, 62, 8340, 62, 312, 60, 796, 17635 ]
2.480269
1,039
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ SemKITTI dataloader """ import os import numpy as np import torch import random import time import numba as nb import yaml import pickle from torch.utils import data from tqdm import tqdm from scipy import stats as s from os.path import join # load Semantic KITTI class info with open("semantic-kitti.yaml", 'r') as stream: semkittiyaml = yaml.safe_load(stream) SemKITTI_label_name = dict() for i in sorted(list(semkittiyaml['learning_map'].keys()))[::-1]: SemKITTI_label_name[semkittiyaml['learning_map'][i]] = semkittiyaml['labels'][i] # things = ['car', 'truck', 'bicycle', 'motorcycle', 'bus', 'person', 'bicyclist', 'motorcyclist'] # stuff = ['road', 'sidewalk', 'parking', 'other-ground', 'building', 'vegetation', 'trunk', 'terrain', 'fence', 'pole', 'traffic-sign'] # things_ids = [] # for i in sorted(list(semkittiyaml['labels'].keys())): # if SemKITTI_label_name[semkittiyaml['learning_map'][i]] in things: # things_ids.append(i) # print(things_ids) # transformation between Cartesian coordinates and polar coordinates things_ids = set([10, 11, 13, 15, 16, 18, 20, 30, 31, 32, 252, 253, 254, 255, 256, 257, 258, 259]) # @nb.jit #TODO: why jit would lead to offsets all zero? @nb.jit('u1[:,:,:](u1[:,:,:],i8[:,:])',nopython=True,cache=True,parallel = False) if __name__ == '__main__': dataset = SemKITTI('./sequences', 'train') dataset.count_box_size()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 13900, 42, 22470, 40, 4818, 282, 1170, 263, 198, 37811, 198, 11748, 28686, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 11748, 4738, 198, 11748, 640, 198, 11748, 997, 7012, 355, 299, 65, 198, 11748, 331, 43695, 198, 11748, 2298, 293, 198, 6738, 28034, 13, 26791, 1330, 1366, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 6738, 629, 541, 88, 1330, 9756, 355, 264, 198, 6738, 28686, 13, 6978, 1330, 4654, 198, 198, 2, 3440, 12449, 5109, 509, 22470, 40, 1398, 7508, 198, 4480, 1280, 7203, 43616, 5109, 12, 74, 715, 72, 13, 88, 43695, 1600, 705, 81, 11537, 355, 4269, 25, 198, 220, 220, 220, 5026, 74, 715, 7745, 43695, 796, 331, 43695, 13, 21230, 62, 2220, 7, 5532, 8, 198, 13900, 42, 22470, 40, 62, 18242, 62, 3672, 796, 8633, 3419, 198, 1640, 1312, 287, 23243, 7, 4868, 7, 325, 28015, 715, 7745, 43695, 17816, 40684, 62, 8899, 6, 4083, 13083, 3419, 4008, 58, 3712, 12, 16, 5974, 198, 220, 220, 220, 12449, 42, 22470, 40, 62, 18242, 62, 3672, 58, 325, 28015, 715, 7745, 43695, 17816, 40684, 62, 8899, 6, 7131, 72, 11907, 796, 5026, 74, 715, 7745, 43695, 17816, 23912, 1424, 6, 7131, 72, 60, 198, 198, 2, 1243, 796, 37250, 7718, 3256, 705, 83, 30915, 3256, 705, 65, 35298, 3256, 705, 76, 20965, 13696, 3256, 705, 10885, 3256, 705, 6259, 3256, 705, 65, 4611, 565, 396, 3256, 705, 76, 20965, 15539, 396, 20520, 198, 2, 3404, 796, 37250, 6344, 3256, 705, 30255, 413, 971, 3256, 705, 20928, 278, 3256, 705, 847, 12, 2833, 3256, 705, 16894, 3256, 705, 303, 1136, 341, 3256, 705, 2213, 2954, 3256, 705, 353, 3201, 3256, 705, 69, 594, 3256, 705, 36869, 3256, 705, 9535, 2108, 12, 12683, 20520, 198, 2, 1243, 62, 2340, 796, 17635, 198, 2, 329, 1312, 287, 23243, 7, 4868, 7, 325, 28015, 715, 7745, 43695, 17816, 23912, 1424, 6, 4083, 13083, 28955, 2599, 198, 2, 220, 220, 220, 220, 611, 12449, 42, 22470, 40, 62, 18242, 62, 3672, 58, 325, 28015, 715, 7745, 43695, 17816, 40684, 62, 8899, 6, 7131, 72, 11907, 287, 1243, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1243, 62, 2340, 13, 33295, 7, 72, 8, 198, 198, 2, 3601, 7, 27971, 62, 2340, 8, 198, 198, 2, 13389, 1022, 13690, 35610, 22715, 290, 13559, 22715, 198, 198, 27971, 62, 2340, 796, 900, 26933, 940, 11, 1367, 11, 1511, 11, 1315, 11, 1467, 11, 1248, 11, 1160, 11, 1542, 11, 3261, 11, 3933, 11, 25264, 11, 32056, 11, 35360, 11, 14280, 11, 17759, 11, 36100, 11, 37528, 11, 37831, 12962, 198, 198, 2, 2488, 46803, 13, 45051, 1303, 51, 3727, 46, 25, 1521, 474, 270, 561, 1085, 284, 49005, 477, 6632, 30, 198, 198, 31, 46803, 13, 45051, 10786, 84, 16, 58, 45299, 45299, 25, 16151, 84, 16, 58, 45299, 45299, 25, 4357, 72, 23, 58, 45299, 25, 12962, 3256, 77, 404, 7535, 28, 17821, 11, 23870, 28, 17821, 11, 1845, 29363, 796, 10352, 8, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 27039, 796, 12449, 42, 22470, 40, 7, 4458, 14, 3107, 3007, 3256, 705, 27432, 11537, 198, 220, 220, 220, 27039, 13, 9127, 62, 3524, 62, 7857, 3419, 198 ]
2.542105
570
#!/usr/bin/python # -*- coding: ascii -*- """ Serialized usage test. :date: 2021 :author: Christian Wiche :contact: [email protected] :license: The MIT License (MIT) """ import unittest from examples.stream_setup import SimplePacket from embutils.utils import CRC # -->> Definitions <<------------------ # -->> Test API <<--------------------- class TestSerialized(unittest.TestCase): """ Basic reference tests using the SimplePacket example. """ def test_01_serialize(self): """ Check if the serialization is being done correctly. """ # By hand raw = bytearray([0x01, 0x02, 0x02, 0xDD, 0x07]) raw.extend(CRC().compute(data=raw).to_bytes(length=2, byteorder='little', signed=False)) # Frame implementation item = SimplePacket(source=0x01, destination=0x02, payload=bytearray([0xDD, 0x07])) # Compare assert raw == item.serialize() def test_02_deserialize(self): """ Check if the deserialization is being done correctly. """ # By hand raw = bytearray([0x01, 0x02, 0x02, 0xDD, 0x07]) raw.extend(CRC().compute(data=raw).to_bytes(length=2, byteorder='little', signed=False)) # Frame creation item = SimplePacket.deserialize(data=raw) # Compare assert item is not None assert raw == item.serialize() def test_03_comparison(self): """ Check if the comparison is being done correctly. """ # Create frames item_1 = SimplePacket(source=0x01, destination=0x02, payload=bytearray([0xDD, 0x07])) item_2 = SimplePacket(source=0x01, destination=0x02, payload=bytearray([0xDD, 0x07])) item_3 = SimplePacket(source=0x02, destination=0x01, payload=bytearray([0xDD, 0x08])) # Compare assert item_1 is not item_2 assert item_1 == item_2 assert item_1.serialize() == item_2.serialize() assert item_1 != item_3 assert item_1.serialize() != item_3.serialize() # -->> Test Execution <<--------------- if __name__ == '__main__': unittest.main()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 355, 979, 72, 532, 9, 12, 198, 37811, 198, 32634, 1143, 8748, 1332, 13, 198, 198, 25, 4475, 25, 220, 220, 220, 220, 220, 33448, 198, 25, 9800, 25, 220, 220, 220, 4302, 370, 14234, 198, 25, 32057, 25, 220, 220, 269, 22664, 2978, 31, 14816, 13, 785, 198, 25, 43085, 25, 220, 220, 383, 17168, 13789, 357, 36393, 8, 198, 37811, 198, 198, 11748, 555, 715, 395, 198, 198, 6738, 6096, 13, 5532, 62, 40406, 1330, 17427, 47, 8317, 198, 198, 6738, 4072, 26791, 13, 26791, 1330, 45623, 628, 198, 2, 1377, 4211, 45205, 9959, 1783, 438, 628, 198, 2, 1377, 4211, 6208, 7824, 9959, 19351, 12, 198, 4871, 6208, 32634, 1143, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 14392, 4941, 5254, 1262, 262, 17427, 47, 8317, 1672, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 1332, 62, 486, 62, 46911, 1096, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6822, 611, 262, 11389, 1634, 318, 852, 1760, 9380, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2750, 1021, 198, 220, 220, 220, 220, 220, 220, 220, 8246, 796, 416, 83, 451, 2433, 26933, 15, 87, 486, 11, 657, 87, 2999, 11, 657, 87, 2999, 11, 657, 87, 16458, 11, 657, 87, 2998, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 8246, 13, 2302, 437, 7, 34, 7397, 22446, 5589, 1133, 7, 7890, 28, 1831, 737, 1462, 62, 33661, 7, 13664, 28, 17, 11, 18022, 2875, 11639, 31629, 3256, 4488, 28, 25101, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25184, 7822, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 796, 17427, 47, 8317, 7, 10459, 28, 15, 87, 486, 11, 10965, 28, 15, 87, 2999, 11, 21437, 28, 1525, 83, 451, 2433, 26933, 15, 87, 16458, 11, 657, 87, 2998, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 27814, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 8246, 6624, 2378, 13, 46911, 1096, 3419, 628, 220, 220, 220, 825, 1332, 62, 2999, 62, 8906, 48499, 1096, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6822, 611, 262, 748, 48499, 1634, 318, 852, 1760, 9380, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2750, 1021, 198, 220, 220, 220, 220, 220, 220, 220, 8246, 796, 416, 83, 451, 2433, 26933, 15, 87, 486, 11, 657, 87, 2999, 11, 657, 87, 2999, 11, 657, 87, 16458, 11, 657, 87, 2998, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 8246, 13, 2302, 437, 7, 34, 7397, 22446, 5589, 1133, 7, 7890, 28, 1831, 737, 1462, 62, 33661, 7, 13664, 28, 17, 11, 18022, 2875, 11639, 31629, 3256, 4488, 28, 25101, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25184, 6282, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 796, 17427, 47, 8317, 13, 8906, 48499, 1096, 7, 7890, 28, 1831, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 27814, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 318, 407, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 8246, 6624, 2378, 13, 46911, 1096, 3419, 628, 220, 220, 220, 825, 1332, 62, 3070, 62, 785, 1845, 1653, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6822, 611, 262, 7208, 318, 852, 1760, 9380, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 13431, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 16, 796, 17427, 47, 8317, 7, 10459, 28, 15, 87, 486, 11, 10965, 28, 15, 87, 2999, 11, 21437, 28, 1525, 83, 451, 2433, 26933, 15, 87, 16458, 11, 657, 87, 2998, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 17, 796, 17427, 47, 8317, 7, 10459, 28, 15, 87, 486, 11, 10965, 28, 15, 87, 2999, 11, 21437, 28, 1525, 83, 451, 2433, 26933, 15, 87, 16458, 11, 657, 87, 2998, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 18, 796, 17427, 47, 8317, 7, 10459, 28, 15, 87, 2999, 11, 10965, 28, 15, 87, 486, 11, 21437, 28, 1525, 83, 451, 2433, 26933, 15, 87, 16458, 11, 657, 87, 2919, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 27814, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 62, 16, 318, 407, 2378, 62, 17, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 62, 16, 6624, 2378, 62, 17, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 62, 16, 13, 46911, 1096, 3419, 6624, 2378, 62, 17, 13, 46911, 1096, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 62, 16, 14512, 2378, 62, 18, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2378, 62, 16, 13, 46911, 1096, 3419, 14512, 2378, 62, 18, 13, 46911, 1096, 3419, 628, 198, 2, 1377, 4211, 6208, 37497, 9959, 24305, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.35082
915
from __future__ import absolute_import, print_function import logging import re import six import itertools from django.db import models, IntegrityError, transaction from django.db.models import F from django.utils import timezone from time import time from sentry.app import locks from sentry.db.models import ( ArrayField, BoundedPositiveIntegerField, FlexibleForeignKey, JSONField, Model, sane_repr, ) from sentry.constants import BAD_RELEASE_CHARS, COMMIT_RANGE_DELIMITER from sentry.models import CommitFileChange from sentry.signals import issue_resolved, release_commits_updated from sentry.utils import metrics from sentry.utils.cache import cache from sentry.utils.hashlib import md5_text from sentry.utils.retries import TimedRetryPolicy logger = logging.getLogger(__name__) _sha1_re = re.compile(r"^[a-f0-9]{40}$") _dotted_path_prefix_re = re.compile(r"^([a-zA-Z][a-zA-Z0-9-]+)(\.[a-zA-Z][a-zA-Z0-9-]+)+-") DB_VERSION_LENGTH = 250 class Release(Model): """ A release is generally created when a new version is pushed into a production state. """ __core__ = False organization = FlexibleForeignKey("sentry.Organization") projects = models.ManyToManyField( "sentry.Project", related_name="releases", through=ReleaseProject ) # DEPRECATED project_id = BoundedPositiveIntegerField(null=True) version = models.CharField(max_length=DB_VERSION_LENGTH) # ref might be the branch name being released ref = models.CharField(max_length=DB_VERSION_LENGTH, null=True, blank=True) url = models.URLField(null=True, blank=True) date_added = models.DateTimeField(default=timezone.now) # DEPRECATED - not available in UI or editable from API date_started = models.DateTimeField(null=True, blank=True) date_released = models.DateTimeField(null=True, blank=True) # arbitrary data recorded with the release data = JSONField(default={}) new_groups = BoundedPositiveIntegerField(default=0) # generally the release manager, or the person initiating the process owner = FlexibleForeignKey("sentry.User", null=True, blank=True, on_delete=models.SET_NULL) # materialized stats commit_count = BoundedPositiveIntegerField(null=True, default=0) last_commit_id = BoundedPositiveIntegerField(null=True) authors = ArrayField(null=True) total_deploys = BoundedPositiveIntegerField(null=True, default=0) last_deploy_id = BoundedPositiveIntegerField(null=True) __repr__ = sane_repr("organization_id", "version") @staticmethod @classmethod @classmethod @classmethod @classmethod @classmethod def add_project(self, project): """ Add a project to this release. Returns True if the project was added and did not already exist. """ from sentry.models import Project try: with transaction.atomic(): ReleaseProject.objects.create(project=project, release=self) if not project.flags.has_releases: project.flags.has_releases = True project.update(flags=F("flags").bitor(Project.flags.has_releases)) except IntegrityError: return False else: return True def handle_commit_ranges(self, refs): """ Takes commit refs of the form: [ { 'previousCommit': None, 'commit': 'previous_commit..commit', } ] Note: Overwrites 'previousCommit' and 'commit' """ for ref in refs: if COMMIT_RANGE_DELIMITER in ref["commit"]: ref["previousCommit"], ref["commit"] = ref["commit"].split(COMMIT_RANGE_DELIMITER) def set_commits(self, commit_list): """ Bind a list of commits to this release. This will clear any existing commit log and replace it with the given commits. """ # Sort commit list in reverse order commit_list.sort(key=lambda commit: commit.get("timestamp"), reverse=True) # TODO(dcramer): this function could use some cleanup/refactoring as its a bit unwieldly from sentry.models import ( Commit, CommitAuthor, Group, GroupLink, GroupResolution, GroupStatus, ReleaseCommit, ReleaseHeadCommit, Repository, PullRequest, ) from sentry.plugins.providers.repository import RepositoryProvider from sentry.tasks.integrations import kick_off_status_syncs # todo(meredith): implement for IntegrationRepositoryProvider commit_list = [ c for c in commit_list if not RepositoryProvider.should_ignore_commit(c.get("message", "")) ] lock_key = type(self).get_lock_key(self.organization_id, self.id) lock = locks.get(lock_key, duration=10) with TimedRetryPolicy(10)(lock.acquire): start = time() with transaction.atomic(): # TODO(dcramer): would be good to optimize the logic to avoid these # deletes but not overly important initial_commit_ids = set( ReleaseCommit.objects.filter(release=self).values_list("commit_id", flat=True) ) ReleaseCommit.objects.filter(release=self).delete() authors = {} repos = {} commit_author_by_commit = {} head_commit_by_repo = {} latest_commit = None for idx, data in enumerate(commit_list): repo_name = data.get("repository") or u"organization-{}".format( self.organization_id ) if repo_name not in repos: repos[repo_name] = repo = Repository.objects.get_or_create( organization_id=self.organization_id, name=repo_name )[0] else: repo = repos[repo_name] author_email = data.get("author_email") if author_email is None and data.get("author_name"): author_email = ( re.sub(r"[^a-zA-Z0-9\-_\.]*", "", data["author_name"]).lower() + "@localhost" ) if not author_email: author = None elif author_email not in authors: author_data = {"name": data.get("author_name")} author, created = CommitAuthor.objects.create_or_update( organization_id=self.organization_id, email=author_email, values=author_data, ) if not created: author = CommitAuthor.objects.get( organization_id=self.organization_id, email=author_email ) authors[author_email] = author else: author = authors[author_email] commit_data = {} defaults = {} # Update/set message and author if they are provided. if author is not None: commit_data["author"] = author if "message" in data: commit_data["message"] = data["message"] if "timestamp" in data: commit_data["date_added"] = data["timestamp"] else: defaults["date_added"] = timezone.now() commit, created = Commit.objects.create_or_update( organization_id=self.organization_id, repository_id=repo.id, key=data["id"], defaults=defaults, values=commit_data, ) if not created: commit = Commit.objects.get( organization_id=self.organization_id, repository_id=repo.id, key=data["id"], ) if author is None: author = commit.author commit_author_by_commit[commit.id] = author patch_set = data.get("patch_set", []) for patched_file in patch_set: try: with transaction.atomic(): CommitFileChange.objects.create( organization_id=self.organization.id, commit=commit, filename=patched_file["path"], type=patched_file["type"], ) except IntegrityError: pass try: with transaction.atomic(): ReleaseCommit.objects.create( organization_id=self.organization_id, release=self, commit=commit, order=idx, ) except IntegrityError: pass if latest_commit is None: latest_commit = commit head_commit_by_repo.setdefault(repo.id, commit.id) self.update( commit_count=len(commit_list), authors=[ six.text_type(a_id) for a_id in ReleaseCommit.objects.filter( release=self, commit__author_id__isnull=False ) .values_list("commit__author_id", flat=True) .distinct() ], last_commit_id=latest_commit.id if latest_commit else None, ) metrics.timing("release.set_commits.duration", time() - start) # fill any missing ReleaseHeadCommit entries for repo_id, commit_id in six.iteritems(head_commit_by_repo): try: with transaction.atomic(): ReleaseHeadCommit.objects.create( organization_id=self.organization_id, release_id=self.id, repository_id=repo_id, commit_id=commit_id, ) except IntegrityError: pass release_commits = list( ReleaseCommit.objects.filter(release=self) .select_related("commit") .values("commit_id", "commit__key") ) final_commit_ids = set(rc["commit_id"] for rc in release_commits) removed_commit_ids = initial_commit_ids - final_commit_ids added_commit_ids = final_commit_ids - initial_commit_ids if removed_commit_ids or added_commit_ids: release_commits_updated.send_robust( release=self, removed_commit_ids=removed_commit_ids, added_commit_ids=added_commit_ids, sender=self.__class__, ) commit_resolutions = list( GroupLink.objects.filter( linked_type=GroupLink.LinkedType.commit, linked_id__in=[rc["commit_id"] for rc in release_commits], ).values_list("group_id", "linked_id") ) commit_group_authors = [ (cr[0], commit_author_by_commit.get(cr[1])) for cr in commit_resolutions # group_id ] pr_ids_by_merge_commit = list( PullRequest.objects.filter( merge_commit_sha__in=[rc["commit__key"] for rc in release_commits], organization_id=self.organization_id, ).values_list("id", flat=True) ) pull_request_resolutions = list( GroupLink.objects.filter( relationship=GroupLink.Relationship.resolves, linked_type=GroupLink.LinkedType.pull_request, linked_id__in=pr_ids_by_merge_commit, ).values_list("group_id", "linked_id") ) pr_authors = list( PullRequest.objects.filter( id__in=[prr[1] for prr in pull_request_resolutions] ).select_related("author") ) pr_authors_dict = {pra.id: pra.author for pra in pr_authors} pull_request_group_authors = [ (prr[0], pr_authors_dict.get(prr[1])) for prr in pull_request_resolutions ] user_by_author = {None: None} commits_and_prs = list(itertools.chain(commit_group_authors, pull_request_group_authors)) group_project_lookup = dict( Group.objects.filter(id__in=[group_id for group_id, _ in commits_and_prs]).values_list( "id", "project_id" ) ) for group_id, author in commits_and_prs: if author not in user_by_author: try: user_by_author[author] = author.find_users()[0] except IndexError: user_by_author[author] = None actor = user_by_author[author] with transaction.atomic(): GroupResolution.objects.create_or_update( group_id=group_id, values={ "release": self, "type": GroupResolution.Type.in_release, "status": GroupResolution.Status.resolved, "actor_id": actor.id if actor else None, }, ) group = Group.objects.get(id=group_id) group.update(status=GroupStatus.RESOLVED) metrics.incr("group.resolved", instance="in_commit", skip_internal=True) issue_resolved.send_robust( organization_id=self.organization_id, user=actor, group=group, project=group.project, resolution_type="with_commit", sender=type(self), ) kick_off_status_syncs.apply_async( kwargs={"project_id": group_project_lookup[group_id], "group_id": group_id} )
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 3601, 62, 8818, 198, 198, 11748, 18931, 198, 11748, 302, 198, 11748, 2237, 198, 11748, 340, 861, 10141, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 11, 39348, 12331, 11, 8611, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 376, 198, 6738, 42625, 14208, 13, 26791, 1330, 640, 11340, 198, 6738, 640, 1330, 640, 198, 198, 6738, 1908, 563, 13, 1324, 1330, 19253, 198, 6738, 1908, 563, 13, 9945, 13, 27530, 1330, 357, 198, 220, 220, 220, 15690, 15878, 11, 198, 220, 220, 220, 347, 6302, 21604, 1800, 46541, 15878, 11, 198, 220, 220, 220, 26719, 856, 33616, 9218, 11, 198, 220, 220, 220, 19449, 15878, 11, 198, 220, 220, 220, 9104, 11, 198, 220, 220, 220, 33241, 62, 260, 1050, 11, 198, 8, 198, 198, 6738, 1908, 563, 13, 9979, 1187, 1330, 33934, 62, 2200, 22781, 62, 3398, 27415, 11, 22240, 2043, 62, 49, 27746, 62, 35, 3698, 3955, 2043, 1137, 198, 6738, 1908, 563, 13, 27530, 1330, 35910, 8979, 19400, 198, 6738, 1908, 563, 13, 12683, 874, 1330, 2071, 62, 411, 5634, 11, 2650, 62, 9503, 896, 62, 43162, 198, 6738, 1908, 563, 13, 26791, 1330, 20731, 198, 6738, 1908, 563, 13, 26791, 13, 23870, 1330, 12940, 198, 6738, 1908, 563, 13, 26791, 13, 17831, 8019, 1330, 45243, 20, 62, 5239, 198, 6738, 1908, 563, 13, 26791, 13, 1186, 1678, 1330, 5045, 276, 9781, 563, 36727, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 198, 62, 26270, 16, 62, 260, 796, 302, 13, 5589, 576, 7, 81, 1, 61, 58, 64, 12, 69, 15, 12, 24, 60, 90, 1821, 92, 3, 4943, 198, 62, 67, 8426, 62, 6978, 62, 40290, 62, 260, 796, 302, 13, 5589, 576, 7, 81, 1, 61, 26933, 64, 12, 89, 32, 12, 57, 7131, 64, 12, 89, 32, 12, 57, 15, 12, 24, 12, 48688, 5769, 59, 3693, 64, 12, 89, 32, 12, 57, 7131, 64, 12, 89, 32, 12, 57, 15, 12, 24, 12, 60, 28988, 10, 12, 4943, 198, 11012, 62, 43717, 62, 43, 49494, 796, 8646, 628, 198, 198, 4871, 13868, 7, 17633, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 2650, 318, 4143, 2727, 618, 257, 649, 2196, 318, 7121, 656, 257, 198, 220, 220, 220, 3227, 1181, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 11593, 7295, 834, 796, 10352, 628, 220, 220, 220, 4009, 796, 26719, 856, 33616, 9218, 7203, 82, 13000, 13, 26121, 1634, 4943, 198, 220, 220, 220, 4493, 796, 4981, 13, 7085, 2514, 7085, 15878, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 82, 13000, 13, 16775, 1600, 3519, 62, 3672, 2625, 260, 29329, 1600, 832, 28, 26362, 16775, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1303, 5550, 47, 38827, 11617, 198, 220, 220, 220, 1628, 62, 312, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 8423, 28, 17821, 8, 198, 220, 220, 220, 2196, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 11012, 62, 43717, 62, 43, 49494, 8, 198, 220, 220, 220, 1303, 1006, 1244, 307, 262, 8478, 1438, 852, 2716, 198, 220, 220, 220, 1006, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 11012, 62, 43717, 62, 43, 49494, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 19016, 796, 4981, 13, 21886, 15878, 7, 8423, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 3128, 62, 29373, 796, 4981, 13, 10430, 7575, 15878, 7, 12286, 28, 2435, 11340, 13, 2197, 8, 198, 220, 220, 220, 1303, 5550, 47, 38827, 11617, 532, 407, 1695, 287, 12454, 393, 4370, 540, 422, 7824, 198, 220, 220, 220, 3128, 62, 46981, 796, 4981, 13, 10430, 7575, 15878, 7, 8423, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 3128, 62, 30147, 796, 4981, 13, 10430, 7575, 15878, 7, 8423, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 1303, 14977, 1366, 6264, 351, 262, 2650, 198, 220, 220, 220, 1366, 796, 19449, 15878, 7, 12286, 34758, 30072, 198, 220, 220, 220, 649, 62, 24432, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 12286, 28, 15, 8, 198, 220, 220, 220, 1303, 4143, 262, 2650, 4706, 11, 393, 262, 1048, 40150, 262, 1429, 198, 220, 220, 220, 4870, 796, 26719, 856, 33616, 9218, 7203, 82, 13000, 13, 12982, 1600, 9242, 28, 17821, 11, 9178, 28, 17821, 11, 319, 62, 33678, 28, 27530, 13, 28480, 62, 33991, 8, 628, 220, 220, 220, 1303, 2587, 1143, 9756, 198, 220, 220, 220, 4589, 62, 9127, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 8423, 28, 17821, 11, 4277, 28, 15, 8, 198, 220, 220, 220, 938, 62, 41509, 62, 312, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 8423, 28, 17821, 8, 198, 220, 220, 220, 7035, 796, 15690, 15878, 7, 8423, 28, 17821, 8, 198, 220, 220, 220, 2472, 62, 2934, 1420, 82, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 8423, 28, 17821, 11, 4277, 28, 15, 8, 198, 220, 220, 220, 938, 62, 2934, 1420, 62, 312, 796, 347, 6302, 21604, 1800, 46541, 15878, 7, 8423, 28, 17821, 8, 628, 220, 220, 220, 11593, 260, 1050, 834, 796, 33241, 62, 260, 1050, 7203, 9971, 1634, 62, 312, 1600, 366, 9641, 4943, 628, 220, 220, 220, 2488, 12708, 24396, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 825, 751, 62, 16302, 7, 944, 11, 1628, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3060, 257, 1628, 284, 428, 2650, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6407, 611, 262, 1628, 373, 2087, 290, 750, 407, 1541, 2152, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1908, 563, 13, 27530, 1330, 4935, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 8611, 13, 47116, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 16775, 13, 48205, 13, 17953, 7, 16302, 28, 16302, 11, 2650, 28, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1628, 13, 33152, 13, 10134, 62, 260, 29329, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1628, 13, 33152, 13, 10134, 62, 260, 29329, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1628, 13, 19119, 7, 33152, 28, 37, 7203, 33152, 11074, 65, 2072, 7, 16775, 13, 33152, 13, 10134, 62, 260, 29329, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 39348, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 825, 5412, 62, 41509, 62, 81, 6231, 7, 944, 11, 1006, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 33687, 4589, 1006, 82, 286, 262, 1296, 25, 198, 220, 220, 220, 220, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3866, 1442, 6935, 270, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41509, 10354, 705, 3866, 1442, 62, 41509, 492, 41509, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 5740, 25, 3827, 8933, 274, 705, 3866, 1442, 6935, 270, 6, 290, 705, 41509, 6, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1006, 287, 1006, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 22240, 2043, 62, 49, 27746, 62, 35, 3698, 3955, 2043, 1137, 287, 1006, 14692, 41509, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 14692, 3866, 1442, 6935, 270, 33116, 1006, 14692, 41509, 8973, 796, 1006, 14692, 41509, 1, 4083, 35312, 7, 9858, 36393, 62, 49, 27746, 62, 35, 3698, 3955, 2043, 1137, 8, 628, 220, 220, 220, 825, 900, 62, 9503, 896, 7, 944, 11, 4589, 62, 4868, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 41211, 257, 1351, 286, 23463, 284, 428, 2650, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 481, 1598, 597, 4683, 4589, 2604, 290, 6330, 340, 351, 262, 1813, 198, 220, 220, 220, 220, 220, 220, 220, 23463, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 33947, 4589, 1351, 287, 9575, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 4868, 13, 30619, 7, 2539, 28, 50033, 4589, 25, 4589, 13, 1136, 7203, 16514, 27823, 12340, 9575, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 7, 17896, 29172, 2599, 428, 2163, 714, 779, 617, 27425, 14, 5420, 529, 3255, 355, 663, 257, 1643, 7379, 1164, 306, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1908, 563, 13, 27530, 1330, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35910, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35910, 13838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 11280, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 4965, 2122, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 19580, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 6935, 270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 13847, 6935, 270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1432, 13264, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21429, 18453, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1908, 563, 13, 37390, 13, 15234, 4157, 13, 260, 1930, 37765, 1330, 1432, 13264, 29495, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1908, 563, 13, 83, 6791, 13, 18908, 9143, 1330, 4829, 62, 2364, 62, 13376, 62, 28869, 6359, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 284, 4598, 7, 76, 36897, 2599, 3494, 329, 38410, 6207, 13264, 29495, 198, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 4868, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 269, 287, 4589, 62, 4868, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1432, 13264, 29495, 13, 21754, 62, 46430, 62, 41509, 7, 66, 13, 1136, 7203, 20500, 1600, 13538, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 5793, 62, 2539, 796, 2099, 7, 944, 737, 1136, 62, 5354, 62, 2539, 7, 944, 13, 9971, 1634, 62, 312, 11, 2116, 13, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5793, 796, 19253, 13, 1136, 7, 5354, 62, 2539, 11, 9478, 28, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 351, 5045, 276, 9781, 563, 36727, 7, 940, 5769, 5354, 13, 330, 29782, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 796, 640, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 8611, 13, 47116, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 7, 17896, 29172, 2599, 561, 307, 922, 284, 27183, 262, 9156, 284, 3368, 777, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28128, 274, 475, 407, 17698, 1593, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4238, 62, 41509, 62, 2340, 796, 900, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 6935, 270, 13, 48205, 13, 24455, 7, 20979, 28, 944, 737, 27160, 62, 4868, 7203, 41509, 62, 312, 1600, 6228, 28, 17821, 8, 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, 13868, 6935, 270, 13, 48205, 13, 24455, 7, 20979, 28, 944, 737, 33678, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7035, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1128, 418, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 9800, 62, 1525, 62, 41509, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1182, 62, 41509, 62, 1525, 62, 260, 7501, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3452, 62, 41509, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 1366, 287, 27056, 378, 7, 41509, 62, 4868, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29924, 62, 3672, 796, 1366, 13, 1136, 7203, 260, 1930, 37765, 4943, 393, 334, 1, 9971, 1634, 12, 90, 92, 1911, 18982, 7, 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, 9971, 1634, 62, 312, 198, 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, 611, 29924, 62, 3672, 407, 287, 1128, 418, 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, 1128, 418, 58, 260, 7501, 62, 3672, 60, 796, 29924, 796, 1432, 13264, 13, 48205, 13, 1136, 62, 273, 62, 17953, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 11, 1438, 28, 260, 7501, 62, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 58, 15, 60, 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, 29924, 796, 1128, 418, 58, 260, 7501, 62, 3672, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1772, 62, 12888, 796, 1366, 13, 1136, 7203, 9800, 62, 12888, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1772, 62, 12888, 318, 6045, 290, 1366, 13, 1136, 7203, 9800, 62, 3672, 1, 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, 1772, 62, 12888, 796, 357, 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, 302, 13, 7266, 7, 81, 17912, 61, 64, 12, 89, 32, 12, 57, 15, 12, 24, 41441, 62, 59, 8183, 9, 1600, 366, 1600, 1366, 14692, 9800, 62, 3672, 8973, 737, 21037, 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, 220, 220, 220, 220, 1343, 44212, 36750, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1772, 62, 12888, 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, 1772, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1772, 62, 12888, 407, 287, 7035, 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, 1772, 62, 7890, 796, 19779, 3672, 1298, 1366, 13, 1136, 7203, 9800, 62, 3672, 4943, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1772, 11, 2727, 796, 35910, 13838, 13, 48205, 13, 17953, 62, 273, 62, 19119, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 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, 3053, 28, 9800, 62, 12888, 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, 3815, 28, 9800, 62, 7890, 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, 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, 407, 2727, 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, 1772, 796, 35910, 13838, 13, 48205, 13, 1136, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 11, 3053, 28, 9800, 62, 12888, 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, 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, 7035, 58, 9800, 62, 12888, 60, 796, 1772, 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, 1772, 796, 7035, 58, 9800, 62, 12888, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 7890, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 796, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10133, 14, 2617, 3275, 290, 1772, 611, 484, 389, 2810, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1772, 318, 407, 6045, 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, 4589, 62, 7890, 14692, 9800, 8973, 796, 1772, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 20500, 1, 287, 1366, 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, 4589, 62, 7890, 14692, 20500, 8973, 796, 1366, 14692, 20500, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 16514, 27823, 1, 287, 1366, 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, 4589, 62, 7890, 14692, 4475, 62, 29373, 8973, 796, 1366, 14692, 16514, 27823, 8973, 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, 26235, 14692, 4475, 62, 29373, 8973, 796, 640, 11340, 13, 2197, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 11, 2727, 796, 35910, 13, 48205, 13, 17953, 62, 273, 62, 19119, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 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, 16099, 62, 312, 28, 260, 7501, 13, 312, 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, 1994, 28, 7890, 14692, 312, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 28, 12286, 82, 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, 3815, 28, 41509, 62, 7890, 11, 198, 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, 611, 407, 2727, 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, 4589, 796, 35910, 13, 48205, 13, 1136, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 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, 16099, 62, 312, 28, 260, 7501, 13, 312, 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, 1994, 28, 7890, 14692, 312, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1772, 318, 6045, 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, 1772, 796, 4589, 13, 9800, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 9800, 62, 1525, 62, 41509, 58, 41509, 13, 312, 60, 796, 1772, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8529, 62, 2617, 796, 1366, 13, 1136, 7203, 17147, 62, 2617, 1600, 685, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 39378, 62, 7753, 287, 8529, 62, 2617, 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, 1949, 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, 351, 8611, 13, 47116, 33529, 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, 35910, 8979, 19400, 13, 48205, 13, 17953, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 13, 312, 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, 4589, 28, 41509, 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, 29472, 28, 8071, 1740, 62, 7753, 14692, 6978, 33116, 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, 2099, 28, 8071, 1740, 62, 7753, 14692, 4906, 33116, 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, 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, 2845, 39348, 12331, 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, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 351, 8611, 13, 47116, 33529, 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, 13868, 6935, 270, 13, 48205, 13, 17953, 7, 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, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 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, 2650, 28, 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, 4589, 28, 41509, 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, 1502, 28, 312, 87, 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, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 39348, 12331, 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, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3452, 62, 41509, 318, 6045, 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, 3452, 62, 41509, 796, 4589, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1182, 62, 41509, 62, 1525, 62, 260, 7501, 13, 2617, 12286, 7, 260, 7501, 13, 312, 11, 4589, 13, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19119, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 9127, 28, 11925, 7, 41509, 62, 4868, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7035, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2237, 13, 5239, 62, 4906, 7, 64, 62, 312, 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, 329, 257, 62, 312, 287, 13868, 6935, 270, 13, 48205, 13, 24455, 7, 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, 2650, 28, 944, 11, 4589, 834, 9800, 62, 312, 834, 271, 8423, 28, 25101, 198, 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, 764, 27160, 62, 4868, 7203, 41509, 834, 9800, 62, 312, 1600, 6228, 28, 17821, 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, 764, 17080, 4612, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 938, 62, 41509, 62, 312, 28, 42861, 62, 41509, 13, 312, 611, 3452, 62, 41509, 2073, 6045, 11, 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, 20731, 13, 16514, 278, 7203, 20979, 13, 2617, 62, 9503, 896, 13, 32257, 1600, 640, 3419, 532, 923, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6070, 597, 4814, 13868, 13847, 6935, 270, 12784, 198, 220, 220, 220, 220, 220, 220, 220, 329, 29924, 62, 312, 11, 4589, 62, 312, 287, 2237, 13, 2676, 23814, 7, 2256, 62, 41509, 62, 1525, 62, 260, 7501, 2599, 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, 351, 8611, 13, 47116, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 13847, 6935, 270, 13, 48205, 13, 17953, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 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, 2650, 62, 312, 28, 944, 13, 312, 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, 16099, 62, 312, 28, 260, 7501, 62, 312, 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, 4589, 62, 312, 28, 41509, 62, 312, 11, 198, 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, 2845, 39348, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 2650, 62, 9503, 896, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13868, 6935, 270, 13, 48205, 13, 24455, 7, 20979, 28, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 19738, 62, 5363, 7203, 41509, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 27160, 7203, 41509, 62, 312, 1600, 366, 41509, 834, 2539, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 41509, 62, 2340, 796, 900, 7, 6015, 14692, 41509, 62, 312, 8973, 329, 48321, 287, 2650, 62, 9503, 896, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4615, 62, 41509, 62, 2340, 796, 4238, 62, 41509, 62, 2340, 532, 2457, 62, 41509, 62, 2340, 198, 220, 220, 220, 220, 220, 220, 220, 2087, 62, 41509, 62, 2340, 796, 2457, 62, 41509, 62, 2340, 532, 4238, 62, 41509, 62, 2340, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4615, 62, 41509, 62, 2340, 393, 2087, 62, 41509, 62, 2340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2650, 62, 9503, 896, 62, 43162, 13, 21280, 62, 22609, 436, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2650, 28, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4615, 62, 41509, 62, 2340, 28, 2787, 2668, 62, 41509, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2087, 62, 41509, 62, 2340, 28, 29373, 62, 41509, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29788, 28, 944, 13, 834, 4871, 834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 411, 14191, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 11280, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6692, 62, 4906, 28, 13247, 11280, 13, 11280, 276, 6030, 13, 41509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6692, 62, 312, 834, 259, 41888, 6015, 14692, 41509, 62, 312, 8973, 329, 48321, 287, 2650, 62, 9503, 896, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 27160, 62, 4868, 7203, 8094, 62, 312, 1600, 366, 25614, 62, 312, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 4589, 62, 8094, 62, 41617, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 6098, 58, 15, 4357, 4589, 62, 9800, 62, 1525, 62, 41509, 13, 1136, 7, 6098, 58, 16, 60, 4008, 329, 1067, 287, 4589, 62, 411, 14191, 220, 1303, 1448, 62, 312, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 778, 62, 2340, 62, 1525, 62, 647, 469, 62, 41509, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21429, 18453, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20121, 62, 41509, 62, 26270, 834, 259, 41888, 6015, 14692, 41509, 834, 2539, 8973, 329, 48321, 287, 2650, 62, 9503, 896, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 27160, 62, 4868, 7203, 312, 1600, 6228, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 25927, 62, 411, 14191, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 11280, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2776, 28, 13247, 11280, 13, 47117, 1056, 13, 411, 9010, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6692, 62, 4906, 28, 13247, 11280, 13, 11280, 276, 6030, 13, 31216, 62, 25927, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6692, 62, 312, 834, 259, 28, 1050, 62, 2340, 62, 1525, 62, 647, 469, 62, 41509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 27160, 62, 4868, 7203, 8094, 62, 312, 1600, 366, 25614, 62, 312, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 778, 62, 41617, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21429, 18453, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 834, 259, 41888, 1050, 81, 58, 16, 60, 329, 778, 81, 287, 2834, 62, 25927, 62, 411, 14191, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 19738, 62, 5363, 7203, 9800, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 778, 62, 41617, 62, 11600, 796, 1391, 79, 430, 13, 312, 25, 7201, 13, 9800, 329, 7201, 287, 778, 62, 41617, 92, 628, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 25927, 62, 8094, 62, 41617, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1050, 81, 58, 15, 4357, 778, 62, 41617, 62, 11600, 13, 1136, 7, 1050, 81, 58, 16, 60, 4008, 329, 778, 81, 287, 2834, 62, 25927, 62, 411, 14191, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 1525, 62, 9800, 796, 1391, 14202, 25, 6045, 92, 628, 220, 220, 220, 220, 220, 220, 220, 23463, 62, 392, 62, 1050, 82, 796, 1351, 7, 270, 861, 10141, 13, 7983, 7, 41509, 62, 8094, 62, 41617, 11, 2834, 62, 25927, 62, 8094, 62, 41617, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 16302, 62, 5460, 929, 796, 8633, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 13, 48205, 13, 24455, 7, 312, 834, 259, 41888, 8094, 62, 312, 329, 1448, 62, 312, 11, 4808, 287, 23463, 62, 392, 62, 1050, 82, 35944, 27160, 62, 4868, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 312, 1600, 366, 16302, 62, 312, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1448, 62, 312, 11, 1772, 287, 23463, 62, 392, 62, 1050, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1772, 407, 287, 2836, 62, 1525, 62, 9800, 25, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 2836, 62, 1525, 62, 9800, 58, 9800, 60, 796, 1772, 13, 19796, 62, 18417, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 12901, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 1525, 62, 9800, 58, 9800, 60, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8674, 796, 2836, 62, 1525, 62, 9800, 58, 9800, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 8611, 13, 47116, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4912, 4965, 2122, 13, 48205, 13, 17953, 62, 273, 62, 19119, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 312, 28, 8094, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3815, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20979, 1298, 2116, 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, 366, 4906, 1298, 4912, 4965, 2122, 13, 6030, 13, 259, 62, 20979, 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, 366, 13376, 1298, 4912, 4965, 2122, 13, 19580, 13, 411, 5634, 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, 366, 11218, 62, 312, 1298, 8674, 13, 312, 611, 8674, 2073, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 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, 1448, 796, 4912, 13, 48205, 13, 1136, 7, 312, 28, 8094, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 13, 19119, 7, 13376, 28, 13247, 19580, 13, 19535, 3535, 53, 1961, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 13, 1939, 81, 7203, 8094, 13, 411, 5634, 1600, 4554, 2625, 259, 62, 41509, 1600, 14267, 62, 32538, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2071, 62, 411, 5634, 13, 21280, 62, 22609, 436, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4009, 62, 312, 28, 944, 13, 9971, 1634, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 28, 11218, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 28, 8094, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1628, 28, 8094, 13, 16302, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6323, 62, 4906, 2625, 4480, 62, 41509, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29788, 28, 4906, 7, 944, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4829, 62, 2364, 62, 13376, 62, 28869, 6359, 13, 39014, 62, 292, 13361, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 28, 4895, 16302, 62, 312, 1298, 1448, 62, 16302, 62, 5460, 929, 58, 8094, 62, 312, 4357, 366, 8094, 62, 312, 1298, 1448, 62, 312, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198 ]
1.914754
7,754
print('abc'.startswith('a')) print('abc'.startswith('b')) print('abc'.startswith('c')) print('abc'.startswith('bc')) print('abc'.startswith('abc')) print('aBc'.casefold().startswith(('b', 'c'))) print('aBc'.casefold().startswith(('x', 'y'))) print('aBc'.casefold().startswith('A'.casefold())) print('aBc'.casefold().startswith('b'.casefold())) print('aBc'.casefold().startswith('C'.casefold())) print('aBc'.casefold().startswith('bC'.casefold())) print('aBc'.casefold().startswith('AbC'.casefold())) print() print('abc'.endswith('a')) print('abc'.endswith('b')) print('abc'.endswith('c')) print('abc'.endswith('bc')) print('abc'.endswith('abc')) print('aBc'.casefold().endswith(('b', 'c'))) print('aBc'.casefold().endswith(('x', 'y'))) print('aBc'.casefold().endswith('A'.casefold())) print('aBc'.casefold().endswith('b'.casefold())) print('aBc'.casefold().endswith('C'.casefold())) print('aBc'.casefold().endswith('bC'.casefold())) print('aBc'.casefold().endswith('AbC'.casefold()))
[ 4798, 10786, 39305, 4458, 9688, 2032, 342, 10786, 64, 6, 4008, 198, 4798, 10786, 39305, 4458, 9688, 2032, 342, 10786, 65, 6, 4008, 198, 4798, 10786, 39305, 4458, 9688, 2032, 342, 10786, 66, 6, 4008, 198, 4798, 10786, 39305, 4458, 9688, 2032, 342, 10786, 15630, 6, 4008, 198, 4798, 10786, 39305, 4458, 9688, 2032, 342, 10786, 39305, 6, 4008, 198, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 7, 10786, 65, 3256, 705, 66, 6, 22305, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 7, 10786, 87, 3256, 705, 88, 6, 22305, 198, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 10786, 32, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 10786, 65, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 10786, 34, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 10786, 65, 34, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 9688, 2032, 342, 10786, 4826, 34, 4458, 7442, 11379, 3419, 4008, 628, 198, 198, 4798, 3419, 198, 4798, 10786, 39305, 4458, 437, 2032, 342, 10786, 64, 6, 4008, 198, 4798, 10786, 39305, 4458, 437, 2032, 342, 10786, 65, 6, 4008, 198, 4798, 10786, 39305, 4458, 437, 2032, 342, 10786, 66, 6, 4008, 198, 4798, 10786, 39305, 4458, 437, 2032, 342, 10786, 15630, 6, 4008, 198, 4798, 10786, 39305, 4458, 437, 2032, 342, 10786, 39305, 6, 4008, 198, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 7, 10786, 65, 3256, 705, 66, 6, 22305, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 7, 10786, 87, 3256, 705, 88, 6, 22305, 198, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 10786, 32, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 10786, 65, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 10786, 34, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 10786, 65, 34, 4458, 7442, 11379, 3419, 4008, 198, 4798, 10786, 64, 33, 66, 4458, 7442, 11379, 22446, 437, 2032, 342, 10786, 4826, 34, 4458, 7442, 11379, 3419, 4008, 628 ]
2.378897
417
import matplotlib.pyplot as plt import numpy as np plt.title('Un primo plot con Python') x, y = np.loadtxt('ex1.dat', unpack=True) plt.plot(x ,y, 'o-.b', label='Temperature Convertite') plt.xlim((-10,130)) # intervallo lungo asse x plt.ylim((10,250)) # intervallo lungo asse y plt.xlabel('Temperature Celsius') plt.ylabel('Temperature Fahrenheit') plt.savefig('temp.png') plt.legend() plt.show()
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 220, 198, 11748, 299, 32152, 355, 45941, 198, 489, 83, 13, 7839, 10786, 3118, 2684, 78, 7110, 369, 11361, 11537, 198, 87, 11, 331, 796, 45941, 13, 2220, 14116, 10786, 1069, 16, 13, 19608, 3256, 555, 8002, 28, 17821, 8, 198, 489, 83, 13, 29487, 7, 87, 837, 88, 11, 705, 78, 34507, 65, 3256, 6167, 11639, 42492, 38240, 578, 11537, 220, 198, 489, 83, 13, 87, 2475, 19510, 12, 940, 11, 12952, 4008, 1303, 987, 85, 49457, 12317, 78, 355, 325, 2124, 220, 198, 489, 83, 13, 88, 2475, 19510, 940, 11, 9031, 4008, 1303, 987, 85, 49457, 12317, 78, 355, 325, 331, 198, 489, 83, 13, 87, 18242, 10786, 42492, 34186, 11537, 198, 489, 83, 13, 2645, 9608, 10786, 42492, 35935, 11537, 198, 489, 83, 13, 21928, 5647, 10786, 29510, 13, 11134, 11537, 198, 489, 83, 13, 1455, 437, 3419, 198, 489, 83, 13, 12860, 3419 ]
2.518987
158
import os from flask import url_for from dimensigon.domain.entities import Software, Server from dimensigon.utils.helpers import md5 from dimensigon.web import db from tests.base import TestResourceBase
[ 11748, 28686, 198, 198, 6738, 42903, 1330, 19016, 62, 1640, 198, 198, 6738, 5391, 641, 37107, 13, 27830, 13, 298, 871, 1330, 10442, 11, 9652, 198, 6738, 5391, 641, 37107, 13, 26791, 13, 16794, 364, 1330, 45243, 20, 198, 6738, 5391, 641, 37107, 13, 12384, 1330, 20613, 198, 6738, 5254, 13, 8692, 1330, 6208, 26198, 14881, 628 ]
3.614035
57
from django.conf.urls import url, patterns from . import views urlpatterns = patterns('clustering.views', url(r'^accueil$', 'home'), url(r'^screen/(\d+)$', views.view_screen), )
[ 6738, 42625, 14208, 13, 10414, 13, 6371, 82, 1330, 19016, 11, 7572, 198, 6738, 764, 1330, 5009, 198, 198, 6371, 33279, 82, 796, 220, 7572, 10786, 565, 436, 1586, 13, 33571, 3256, 220, 198, 197, 6371, 7, 81, 6, 61, 4134, 518, 346, 3, 3256, 705, 11195, 33809, 198, 197, 6371, 7, 81, 6, 61, 9612, 29006, 59, 67, 28988, 3, 3256, 5009, 13, 1177, 62, 9612, 828, 198, 8, 198 ]
2.577465
71
import os import os.path from setuptools import setup, Extension import versioneer # Default description in markdown LONG_DESCRIPTION = open('README.md').read() PKG_NAME = 'tessdb-cmdline' AUTHOR = 'Rafael Gonzalez' AUTHOR_EMAIL = '[email protected]' DESCRIPTION = 'tessdb command line tool to manage tessdb database', LICENSE = 'MIT' KEYWORDS = 'Astronomy Python RaspberryPi LightPollution' URL = 'http://github.com/stars4all/tessdb-comdline/' PACKAGES = ["tess"] DEPENDENCIES = [ 'tabulate', 'matplotlib' ] CLASSIFIERS = [ 'Environment :: Console', 'Intended Audience :: Science/Research', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.6', 'Programming Language :: SQL', 'Topic :: Scientific/Engineering :: Astronomy', 'Topic :: Scientific/Engineering :: Atmospheric Science', 'Development Status :: 4 - Beta', ] SCRIPTS = [ 'files/usr/local/bin/tess' ] if os.name == "posix": setup(name = PKG_NAME, version = versioneer.get_version(), cmdclass = versioneer.get_cmdclass(), author = AUTHOR, author_email = AUTHOR_EMAIL, description = DESCRIPTION, long_description_content_type = "text/markdown", long_description = LONG_DESCRIPTION, license = LICENSE, keywords = KEYWORDS, url = URL, classifiers = CLASSIFIERS, packages = PACKAGES, install_requires = DEPENDENCIES, scripts = SCRIPTS ) else: print("Not supported OS")
[ 11748, 28686, 198, 11748, 28686, 13, 6978, 198, 198, 6738, 900, 37623, 10141, 1330, 9058, 11, 27995, 198, 11748, 2196, 28153, 198, 198, 2, 15161, 6764, 287, 1317, 2902, 198, 43, 18494, 62, 30910, 40165, 796, 1280, 10786, 15675, 11682, 13, 9132, 27691, 961, 3419, 628, 198, 40492, 38, 62, 20608, 220, 220, 220, 220, 796, 705, 83, 408, 9945, 12, 28758, 1370, 6, 198, 32, 24318, 1581, 220, 220, 220, 220, 220, 220, 796, 705, 49, 1878, 3010, 24416, 6, 198, 32, 24318, 1581, 62, 27630, 4146, 796, 705, 459, 1472, 1878, 3010, 31, 40774, 13, 274, 6, 198, 30910, 40165, 220, 796, 705, 83, 408, 9945, 3141, 1627, 2891, 284, 6687, 256, 408, 9945, 6831, 3256, 198, 43, 2149, 24290, 220, 220, 220, 220, 220, 796, 705, 36393, 6, 198, 20373, 45359, 5258, 220, 220, 220, 220, 796, 705, 33751, 1313, 9145, 11361, 24244, 38729, 4401, 39176, 1009, 6, 198, 21886, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 705, 4023, 1378, 12567, 13, 785, 14, 30783, 19, 439, 14, 83, 408, 9945, 12, 785, 67, 1370, 14, 6, 198, 47, 8120, 25552, 220, 220, 220, 220, 796, 14631, 83, 408, 8973, 198, 46162, 10619, 24181, 11015, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8658, 5039, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 6759, 29487, 8019, 6, 198, 60, 198, 198, 31631, 5064, 40, 4877, 220, 796, 685, 198, 220, 220, 220, 705, 31441, 7904, 24371, 3256, 198, 220, 220, 220, 705, 5317, 1631, 7591, 1240, 7904, 5800, 14, 25104, 3256, 198, 220, 220, 220, 705, 5317, 1631, 7591, 1240, 7904, 34152, 3256, 198, 220, 220, 220, 705, 34156, 7904, 7294, 40, 20010, 1079, 7904, 17168, 13789, 3256, 198, 220, 220, 220, 705, 18843, 803, 4482, 7904, 28069, 10426, 7904, 7020, 3256, 198, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 362, 13, 22, 3256, 198, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 21, 3256, 198, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 16363, 3256, 198, 220, 220, 220, 705, 33221, 7904, 22060, 14, 13798, 1586, 7904, 25398, 9145, 3256, 198, 220, 220, 220, 705, 33221, 7904, 22060, 14, 13798, 1586, 7904, 41516, 5800, 3256, 198, 220, 220, 220, 705, 41206, 12678, 7904, 604, 532, 17993, 3256, 198, 60, 628, 198, 6173, 32618, 4694, 796, 685, 198, 220, 220, 220, 705, 16624, 14, 14629, 14, 12001, 14, 8800, 14, 83, 408, 6, 198, 60, 198, 198, 361, 28686, 13, 3672, 6624, 366, 1930, 844, 1298, 628, 220, 9058, 7, 3672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 29673, 38, 62, 20608, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 2196, 28153, 13, 1136, 62, 9641, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 4871, 220, 220, 220, 220, 220, 220, 220, 220, 796, 2196, 28153, 13, 1136, 62, 28758, 4871, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1772, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 44746, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1772, 62, 12888, 220, 220, 220, 220, 796, 44746, 62, 27630, 4146, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 220, 220, 220, 220, 220, 796, 22196, 40165, 11, 198, 220, 220, 220, 220, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 796, 366, 5239, 14, 4102, 2902, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 890, 62, 11213, 796, 44533, 62, 30910, 40165, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5964, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 38559, 24290, 11, 198, 220, 220, 220, 220, 220, 220, 220, 26286, 220, 220, 220, 220, 220, 220, 220, 220, 796, 35374, 45359, 5258, 11, 198, 220, 220, 220, 220, 220, 220, 220, 19016, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 10289, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1398, 13350, 220, 220, 220, 220, 220, 796, 42715, 5064, 40, 4877, 11, 198, 220, 220, 220, 220, 220, 220, 220, 10392, 220, 220, 220, 220, 220, 220, 220, 220, 796, 47035, 25552, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2721, 62, 47911, 796, 5550, 47, 10619, 24181, 11015, 11, 198, 220, 220, 220, 220, 220, 220, 220, 14750, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 6374, 32618, 4694, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 198, 220, 220, 198, 198, 17772, 25, 198, 220, 220, 198, 220, 3601, 7203, 3673, 4855, 7294, 4943, 198 ]
2.283396
801
#-*-coding:utf8;-*- import re from random import choice class sub(object): """ a simple text to number evaluating class """ def text_to_number(self,text): '''convert a number written as text to its real number equivalence''' text = text.lower() text = re.sub(r"ten", "10", text) text = re.sub(r"eleven", "11", text) text = re.sub(r"twelve", "12", text) text = re.sub(r"thirteen", "13", text) text = re.sub(r"fourteen", "14", text) text = re.sub(r"fifteen", "15", text) text = re.sub(r"sixteen", "16", text) text = re.sub(r"seventeen", "17", text) text = re.sub(r"eighteen", "18", text) text = re.sub(r"nineteen", "19", text) text = re.sub(r"twenty one", "21", text) text = re.sub(r"twenty two", "22", text) text = re.sub(r"twenty three", "23", text) text = re.sub(r"twenty four", "24", text) text = re.sub(r"twenty five", "25", text) text = re.sub(r"twenty six", "26", text) text = re.sub(r"twenty seven", "27", text) text = re.sub(r"twenty eight", "28", text) text = re.sub(r"twenty nine", "29", text) text = re.sub(r"twenty", "20", text) text = re.sub(r"thirty one", "31", text) text = re.sub(r"thirty two", "32", text) text = re.sub(r"thirty three", "33", text) text = re.sub(r"thirty four", "34", text) text = re.sub(r"thirty five", "35", text) text = re.sub(r"thirty six", "36", text) text = re.sub(r"thirty seven", "37", text) text = re.sub(r"thirty eight", "38", text) text = re.sub(r"thirty nine", "39", text) text = re.sub(r"thirty", "30", text) text = re.sub(r"forty one", "41", text) text = re.sub(r"forty two", "42", text) text = re.sub(r"forty three", "43", text) text = re.sub(r"forty four", "44", text) text = re.sub(r"forty five", "45", text) text = re.sub(r"forty six", "46", text) text = re.sub(r"forty seven", "47", text) text = re.sub(r"forty eight", "48", text) text = re.sub(r"forty nine", "49", text) text = re.sub(r"forty", "40", text) text = re.sub(r"fifty one", "51", text) text = re.sub(r"fifty two", "52", text) text = re.sub(r"fifty three", "53", text) text = re.sub(r"fifty four", "54", text) text = re.sub(r"fifty five", "55", text) text = re.sub(r"fifty six", "56", text) text = re.sub(r"fifty seven", "57", text) text = re.sub(r"fifty eight", "58", text) text = re.sub(r"fifty nine", "59", text) text = re.sub(r"fifty", "50", text) text = re.sub(r"sixty one", "61", text) text = re.sub(r"sixty two", "62", text) text = re.sub(r"sixty three", "63", text) text = re.sub(r"sixty four", "64", text) text = re.sub(r"sixty five", "65", text) text = re.sub(r"sixty six", "66", text) text = re.sub(r"sixty seven", "67", text) text = re.sub(r"sixty eight", "68", text) text = re.sub(r"sixty nine", "69", text) text = re.sub(r"sixty", "60", text) text = re.sub(r"seventy one", "71", text) text = re.sub(r"seventy two", "72", text) text = re.sub(r"seventy three", "73", text) text = re.sub(r"seventy four", "74", text) text = re.sub(r"seventy five", "75", text) text = re.sub(r"seventy six", "76", text) text = re.sub(r"seventy seven", "77", text) text = re.sub(r"seventy eight", "78", text) text = re.sub(r"seventy nine", "79", text) text = re.sub(r"seventy", "70", text) text = re.sub(r"eighty one", "81", text) text = re.sub(r"eighty two", "82", text) text = re.sub(r"eighty three", "83", text) text = re.sub(r"eighty four", "84", text) text = re.sub(r"eighty five", "85", text) text = re.sub(r"eighty six", "86", text) text = re.sub(r"eighty seven", "87", text) text = re.sub(r"eighty eight", "88", text) text = re.sub(r"eighty nine", "89", text) text = re.sub(r"eighty", "80", text) text = re.sub(r"ninety one", "91", text) text = re.sub(r"ninety two", "92", text) text = re.sub(r"ninety three", "93", text) text = re.sub(r"ninety four", "94", text) text = re.sub(r"ninety five", "95", text) text = re.sub(r"ninety six", "96", text) text = re.sub(r"ninety seven", "97", text) text = re.sub(r"ninety eight", "98", text) text = re.sub(r"ninety nine", "99", text) text = re.sub(r"ninety", "90", text) text = re.sub(r"one", "01", text) text = re.sub(r"two", "02", text) text = re.sub(r"three", "03", text) text = re.sub(r"four", "04", text) text = re.sub(r"five", "05", text) text = re.sub(r"six", "06", text) text = re.sub(r"seven", "07", text) text = re.sub(r"eight", "08", text) text = re.sub(r"nine", "09", text) text = re.sub(r"hundred", "00", text) text = re.sub(r"thousand", "000", text) text = re.sub(r"million", "000000", text) text = re.sub(r"billion", "000000000", text) return text
[ 2, 12, 9, 12, 66, 7656, 25, 40477, 23, 26, 12, 9, 12, 198, 11748, 302, 198, 6738, 4738, 1330, 3572, 628, 198, 4871, 850, 7, 15252, 2599, 198, 220, 220, 220, 37227, 257, 2829, 2420, 284, 1271, 22232, 1398, 37227, 198, 220, 220, 220, 825, 2420, 62, 1462, 62, 17618, 7, 944, 11, 5239, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 1102, 1851, 257, 1271, 3194, 355, 2420, 284, 663, 1103, 1271, 6854, 594, 7061, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 2420, 13, 21037, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 1452, 1600, 366, 940, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 11129, 574, 1600, 366, 1157, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 9954, 1600, 366, 1065, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 22530, 1600, 366, 1485, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 14337, 7821, 1600, 366, 1415, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 32041, 7821, 1600, 366, 1314, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 19412, 7821, 1600, 366, 1433, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 6429, 1600, 366, 1558, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 26022, 6429, 1600, 366, 1507, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 34026, 1600, 366, 1129, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 530, 1600, 366, 2481, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 734, 1600, 366, 1828, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 1115, 1600, 366, 1954, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 1440, 1600, 366, 1731, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 1936, 1600, 366, 1495, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 2237, 1600, 366, 2075, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 3598, 1600, 366, 1983, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 3624, 1600, 366, 2078, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 5193, 1600, 366, 1959, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 4246, 3787, 1600, 366, 1238, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 530, 1600, 366, 3132, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 734, 1600, 366, 2624, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 1115, 1600, 366, 2091, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 1440, 1600, 366, 2682, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 1936, 1600, 366, 2327, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 2237, 1600, 366, 2623, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 3598, 1600, 366, 2718, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 3624, 1600, 366, 2548, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 5193, 1600, 366, 2670, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 5893, 1600, 366, 1270, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 530, 1600, 366, 3901, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 734, 1600, 366, 3682, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 1115, 1600, 366, 3559, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 1440, 1600, 366, 2598, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 1936, 1600, 366, 2231, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 2237, 1600, 366, 3510, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 3598, 1600, 366, 2857, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 3624, 1600, 366, 2780, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 5193, 1600, 366, 2920, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 3319, 88, 1600, 366, 1821, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 530, 1600, 366, 4349, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 734, 1600, 366, 4309, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 1115, 1600, 366, 4310, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 1440, 1600, 366, 4051, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 1936, 1600, 366, 2816, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 2237, 1600, 366, 3980, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 3598, 1600, 366, 3553, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 3624, 1600, 366, 3365, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 5193, 1600, 366, 3270, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 69, 24905, 1600, 366, 1120, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 530, 1600, 366, 5333, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 734, 1600, 366, 5237, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 1115, 1600, 366, 5066, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 1440, 1600, 366, 2414, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 1936, 1600, 366, 2996, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 2237, 1600, 366, 2791, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 3598, 1600, 366, 3134, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 3624, 1600, 366, 3104, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 5193, 1600, 366, 3388, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 82, 19404, 1600, 366, 1899, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 530, 1600, 366, 4869, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 734, 1600, 366, 4761, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 1115, 1600, 366, 4790, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 1440, 1600, 366, 4524, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 1936, 1600, 366, 2425, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 2237, 1600, 366, 4304, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 3598, 1600, 366, 3324, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 3624, 1600, 366, 3695, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 5193, 1600, 366, 3720, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 325, 1151, 88, 1600, 366, 2154, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 530, 1600, 366, 6659, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 734, 1600, 366, 6469, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 1115, 1600, 366, 5999, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 1440, 1600, 366, 5705, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 1936, 1600, 366, 5332, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 2237, 1600, 366, 4521, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 3598, 1600, 366, 5774, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 3624, 1600, 366, 3459, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 5193, 1600, 366, 4531, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 68, 14400, 1600, 366, 1795, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 530, 1600, 366, 6420, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 734, 1600, 366, 5892, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 1115, 1600, 366, 6052, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 1440, 1600, 366, 5824, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 1936, 1600, 366, 3865, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 2237, 1600, 366, 4846, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 3598, 1600, 366, 5607, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 3624, 1600, 366, 4089, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 5193, 1600, 366, 2079, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 35073, 2963, 1600, 366, 3829, 1600, 2420, 8, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 505, 1600, 366, 486, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 11545, 1600, 366, 2999, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 15542, 1600, 366, 3070, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 14337, 1600, 366, 3023, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 13261, 1600, 366, 2713, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 19412, 1600, 366, 3312, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 26548, 1600, 366, 2998, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 26022, 1600, 366, 2919, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 30888, 1600, 366, 2931, 1600, 2420, 8, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 71, 3229, 1600, 366, 405, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 400, 29910, 1600, 366, 830, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 14100, 1600, 366, 10535, 1600, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 302, 13, 7266, 7, 81, 1, 24540, 1600, 366, 10535, 830, 1600, 2420, 8, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2420, 198, 220, 220, 220, 220, 628, 628 ]
1.981689
2,676
""" This example shows how to create a Messaging Interactions transcripts CSV flat file from the lp_api_wrapper library. """ from lp_api_wrapper import MessagingInteractions, UserLogin from datetime import datetime, timedelta import pandas as pd # For User Login auth = UserLogin(account_id='1234', username='YOURUSERNAME', password='YOURPASSWORD') # Create MI Connections mi_conn = MessagingInteractions(auth=auth) # Creates Epoch Time from 1 day ago. (If your volume is low, or none. Consider increasing days) start_from = int((datetime.now() - timedelta(days=1)).timestamp() * 1000) # Creates Epoch Time right now. start_to = int(datetime.now().timestamp() * 1000) # Conversations from date range created above body = {'start': {'from': start_from, 'to': start_to}} # Get data! conversations = mi_conn.conversations(body=body) # Convert into Pandas DataFrame df = pd.DataFrame(conversations.message_record) # File path with file name. file_path = './transcripts.csv' # Export into CSV with no index column df.to_csv(path_or_buf=file_path, index=False) # Now you have a Transcripts Flat File!
[ 37811, 198, 1212, 1672, 2523, 703, 284, 2251, 257, 10626, 3039, 4225, 4658, 29351, 44189, 6228, 2393, 422, 262, 300, 79, 62, 15042, 62, 48553, 5888, 13, 198, 37811, 198, 198, 6738, 300, 79, 62, 15042, 62, 48553, 1330, 10626, 3039, 9492, 4658, 11, 11787, 47790, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 28805, 12514, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 2, 1114, 11787, 23093, 198, 18439, 796, 11787, 47790, 7, 23317, 62, 312, 11639, 1065, 2682, 3256, 20579, 11639, 56, 11698, 29904, 20608, 3256, 9206, 11639, 56, 11698, 47924, 54, 12532, 11537, 198, 198, 2, 13610, 15789, 8113, 507, 198, 11632, 62, 37043, 796, 10626, 3039, 9492, 4658, 7, 18439, 28, 18439, 8, 198, 198, 2, 7921, 274, 4551, 5374, 3862, 422, 352, 1110, 2084, 13, 357, 1532, 534, 6115, 318, 1877, 11, 393, 4844, 13, 12642, 3649, 1528, 8, 198, 9688, 62, 6738, 796, 493, 19510, 19608, 8079, 13, 2197, 3419, 532, 28805, 12514, 7, 12545, 28, 16, 29720, 16514, 27823, 3419, 1635, 8576, 8, 198, 198, 2, 7921, 274, 4551, 5374, 3862, 826, 783, 13, 198, 9688, 62, 1462, 796, 493, 7, 19608, 8079, 13, 2197, 22446, 16514, 27823, 3419, 1635, 8576, 8, 198, 198, 2, 32200, 602, 422, 3128, 2837, 2727, 2029, 198, 2618, 796, 1391, 6, 9688, 10354, 1391, 6, 6738, 10354, 923, 62, 6738, 11, 705, 1462, 10354, 923, 62, 1462, 11709, 198, 198, 2, 3497, 1366, 0, 198, 1102, 690, 602, 796, 21504, 62, 37043, 13, 1102, 690, 602, 7, 2618, 28, 2618, 8, 198, 198, 2, 38240, 656, 16492, 292, 6060, 19778, 198, 7568, 796, 279, 67, 13, 6601, 19778, 7, 1102, 690, 602, 13, 20500, 62, 22105, 8, 198, 198, 2, 9220, 3108, 351, 2393, 1438, 13, 198, 7753, 62, 6978, 796, 705, 19571, 7645, 6519, 82, 13, 40664, 6, 198, 198, 2, 36472, 656, 44189, 351, 645, 6376, 5721, 198, 7568, 13, 1462, 62, 40664, 7, 6978, 62, 273, 62, 29325, 28, 7753, 62, 6978, 11, 6376, 28, 25101, 8, 198, 198, 2, 2735, 345, 423, 257, 42978, 82, 21939, 9220, 0, 198 ]
3.18732
347
from selenium import webdriver from time import sleep from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.options import Options usr=input('Enter Email Address :') pwd=input('Enter Password:') driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get('https://zoom.us/signin') print ("Opened Zoom") sleep(1) username_box = driver.find_element_by_css_selector("#email") username_box.send_keys(usr) print ("Email Id entered") sleep(1) password_box = driver.find_element_by_css_selector('#password') password_box.send_keys(pwd) print ("Password entered") sleep(1) login_box = driver.find_element_by_css_selector("#login-form > div:nth-child(4) > div > div.signin > button") login_box.click() print ("Done") input('Press anything to quit') driver.quit() print("Finished")
[ 6738, 384, 11925, 1505, 1330, 3992, 26230, 220, 198, 6738, 640, 1330, 3993, 220, 198, 6738, 3992, 26230, 62, 37153, 13, 46659, 1330, 13282, 32103, 13511, 220, 198, 6738, 384, 11925, 1505, 13, 12384, 26230, 13, 46659, 13, 25811, 1330, 18634, 220, 220, 198, 220, 220, 198, 14629, 28, 15414, 10786, 17469, 9570, 17917, 1058, 11537, 220, 220, 198, 79, 16993, 28, 15414, 10786, 17469, 30275, 25, 11537, 220, 220, 198, 220, 220, 198, 26230, 796, 3992, 26230, 13, 1925, 5998, 7, 1925, 5998, 32103, 13511, 22446, 17350, 28955, 220, 198, 26230, 13, 1136, 10786, 5450, 1378, 89, 4207, 13, 385, 14, 12683, 259, 11537, 220, 198, 4798, 5855, 18257, 2945, 40305, 4943, 220, 198, 42832, 7, 16, 8, 220, 198, 220, 220, 198, 29460, 62, 3524, 796, 4639, 13, 19796, 62, 30854, 62, 1525, 62, 25471, 62, 19738, 273, 7203, 2, 12888, 4943, 198, 29460, 62, 3524, 13, 21280, 62, 13083, 7, 14629, 8, 220, 198, 4798, 5855, 15333, 5121, 5982, 4943, 220, 198, 42832, 7, 16, 8, 220, 628, 198, 28712, 62, 3524, 796, 4639, 13, 19796, 62, 30854, 62, 1525, 62, 25471, 62, 19738, 273, 10786, 2, 28712, 11537, 198, 28712, 62, 3524, 13, 21280, 62, 13083, 7, 79, 16993, 8, 220, 198, 4798, 5855, 35215, 5982, 4943, 220, 198, 42832, 7, 16, 8, 220, 198, 198, 38235, 62, 3524, 796, 4639, 13, 19796, 62, 30854, 62, 1525, 62, 25471, 62, 19738, 273, 7203, 2, 38235, 12, 687, 1875, 2659, 25, 77, 400, 12, 9410, 7, 19, 8, 1875, 2659, 1875, 2659, 13, 12683, 259, 1875, 4936, 4943, 220, 198, 38235, 62, 3524, 13, 12976, 3419, 220, 198, 220, 220, 198, 4798, 5855, 45677, 4943, 220, 198, 15414, 10786, 13800, 1997, 284, 11238, 11537, 220, 198, 26230, 13, 47391, 3419, 220, 198, 4798, 7203, 18467, 1348, 4943, 220 ]
2.840532
301
# Generated by Django 3.2.5 on 2021-07-12 05:08 from django.db import migrations
[ 2, 2980, 515, 416, 37770, 513, 13, 17, 13, 20, 319, 33448, 12, 2998, 12, 1065, 8870, 25, 2919, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 628 ]
2.766667
30
from logging import getLogger from pandas import read_html # from ecsim._scrapers.base import state_names logger = getLogger(__name__) url = "https://en.wikipedia.org/wiki/List_of_U.S._states_and_territories_by_historical_population" # if __name__ == "__main__": # data = scrape_data() # for foo, bar in zip(data.index, state_names): # print(f"Checking that {foo} is the same as {bar}") # assert foo == bar
[ 6738, 18931, 1330, 651, 11187, 1362, 198, 198, 6738, 19798, 292, 1330, 1100, 62, 6494, 198, 198, 2, 422, 304, 6359, 320, 13557, 1416, 2416, 364, 13, 8692, 1330, 1181, 62, 14933, 628, 198, 6404, 1362, 796, 651, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 6371, 796, 366, 5450, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 8053, 62, 1659, 62, 52, 13, 50, 13557, 27219, 62, 392, 62, 353, 799, 1749, 62, 1525, 62, 10034, 12409, 62, 39748, 1, 628, 628, 198, 2, 611, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 2, 220, 220, 220, 220, 1366, 796, 42778, 62, 7890, 3419, 198, 2, 220, 220, 220, 220, 329, 22944, 11, 2318, 287, 19974, 7, 7890, 13, 9630, 11, 1181, 62, 14933, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 9787, 278, 326, 1391, 21943, 92, 318, 262, 976, 355, 1391, 5657, 92, 4943, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 22944, 6624, 2318, 198 ]
2.549133
173
# -*- coding: utf-8 -*- # MinIO Python Library for Amazon S3 Compatible Cloud Storage, (C) # 2020 MinIO, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Request/response of PutBucketVersioning and GetBucketVersioning APIs.""" from __future__ import absolute_import from .commonconfig import DISABLED, ENABLED from .xml import Element, SubElement, findtext OFF = "Off" SUSPENDED = "Suspended" class VersioningConfig: """Versioning configuration.""" @property def status(self): """Get status.""" return self._status or OFF @property def mfa_delete(self): """Get MFA delete.""" return self._mfa_delete @classmethod def fromxml(cls, element): """Create new object with values from XML element.""" status = findtext(element, "Status") mfa_delete = findtext(element, "MFADelete") return cls(status, mfa_delete) def toxml(self, element): """Convert to XML.""" element = Element("VersioningConfiguration") if self._status: SubElement(element, "Status", self._status) if self._mfa_delete: SubElement(element, "MFADelete", self._mfa_delete) return element
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 1855, 9399, 11361, 10074, 329, 6186, 311, 18, 3082, 16873, 10130, 20514, 11, 357, 34, 8, 198, 2, 12131, 1855, 9399, 11, 3457, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 37811, 18453, 14, 26209, 286, 5930, 33, 38811, 14815, 278, 290, 3497, 33, 38811, 14815, 278, 23113, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 198, 6738, 764, 11321, 11250, 1330, 13954, 6242, 30465, 11, 412, 4535, 9148, 1961, 198, 6738, 764, 19875, 1330, 11703, 11, 3834, 20180, 11, 1064, 5239, 198, 198, 27977, 796, 366, 9362, 1, 198, 50, 2937, 47, 49361, 796, 366, 50, 17723, 1631, 1, 628, 198, 4871, 10628, 278, 16934, 25, 198, 220, 220, 220, 37227, 14815, 278, 8398, 526, 15931, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 3722, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 3722, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 13376, 393, 18562, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 285, 13331, 62, 33678, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 337, 7708, 12233, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 76, 13331, 62, 33678, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 422, 19875, 7, 565, 82, 11, 5002, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 649, 2134, 351, 3815, 422, 23735, 5002, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 796, 1064, 5239, 7, 30854, 11, 366, 19580, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 285, 13331, 62, 33678, 796, 1064, 5239, 7, 30854, 11, 366, 49800, 2885, 68, 5807, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 537, 82, 7, 13376, 11, 285, 13331, 62, 33678, 8, 628, 220, 220, 220, 825, 8293, 4029, 7, 944, 11, 5002, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 284, 23735, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5002, 796, 11703, 7203, 14815, 278, 38149, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3834, 20180, 7, 30854, 11, 366, 19580, 1600, 2116, 13557, 13376, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 76, 13331, 62, 33678, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3834, 20180, 7, 30854, 11, 366, 49800, 2885, 68, 5807, 1600, 2116, 13557, 76, 13331, 62, 33678, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 5002, 198 ]
2.865225
601
from __future__ import print_function, absolute_import, division import os import KratosMultiphysics import KratosMultiphysics.KratosUnittest as KratosUnittest import KratosMultiphysics.MetisApplication as MetisApplication import KratosMultiphysics.TrilinosApplication as TrilinosApplication import KratosMultiphysics.kratos_utilities as KratosUtils from KratosMultiphysics.mpi import distributed_import_model_part_utility from KratosMultiphysics.TrilinosApplication import trilinos_linear_solver_factory from KratosMultiphysics import ParallelEnvironment if __name__ == '__main__': KratosUnittest.main()
[ 171, 119, 123, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 11, 4112, 62, 11748, 11, 7297, 201, 198, 201, 198, 11748, 28686, 201, 198, 201, 198, 11748, 509, 10366, 418, 15205, 13323, 23154, 201, 198, 11748, 509, 10366, 418, 15205, 13323, 23154, 13, 42, 10366, 418, 3118, 715, 395, 355, 509, 10366, 418, 3118, 715, 395, 201, 198, 11748, 509, 10366, 418, 15205, 13323, 23154, 13, 9171, 271, 23416, 355, 3395, 271, 23416, 201, 198, 11748, 509, 10366, 418, 15205, 13323, 23154, 13, 2898, 346, 11996, 23416, 355, 833, 346, 11996, 23416, 201, 198, 11748, 509, 10366, 418, 15205, 13323, 23154, 13, 74, 10366, 418, 62, 315, 2410, 355, 509, 10366, 418, 18274, 4487, 201, 198, 201, 198, 6738, 509, 10366, 418, 15205, 13323, 23154, 13, 3149, 72, 1330, 9387, 62, 11748, 62, 19849, 62, 3911, 62, 315, 879, 201, 198, 6738, 509, 10366, 418, 15205, 13323, 23154, 13, 2898, 346, 11996, 23416, 1330, 491, 346, 11996, 62, 29127, 62, 82, 14375, 62, 69, 9548, 201, 198, 201, 198, 6738, 509, 10366, 418, 15205, 13323, 23154, 1330, 42945, 31441, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 509, 10366, 418, 3118, 715, 395, 13, 12417, 3419 ]
3.028846
208
import zipfile import os.path
[ 201, 198, 11748, 19974, 7753, 201, 198, 11748, 28686, 13, 6978, 201, 198 ]
2.615385
13
# Mock settings file imported by sphinx when building docs SECRET_KEY = 'not empty'
[ 2, 44123, 6460, 2393, 17392, 416, 599, 20079, 87, 618, 2615, 34165, 198, 198, 23683, 26087, 62, 20373, 796, 705, 1662, 6565, 6, 198 ]
3.541667
24
''' Author: Liu Xin Date: 2021-11-29 11:08:53 LastEditors: Liu Xin LastEditTime: 2021-11-30 19:43:19 Description: file content FilePath: /CVMI_Sementic_Segmentation/model/decode_heads/encnet/encnet.py ''' ''' Author: Liu Xin Date: 2021-11-29 11:08:53 LastEditors: Liu Xin LastEditTime: 2021-11-30 19:31:07 Description: file content FilePath: /CVMI_Sementic_Segmentation/model/decode_heads/encnet/encnet.py ''' """Context Encoding for Semantic Segmentation""" import torch import torch.nn as nn import torch.nn.functional as F from model.utils.enc_module import EncModule from model.builder import DECODE_HEAD __all__ = ['EncNet'] @DECODE_HEAD.register_module("EncNet") if __name__ == '__main__': x1 = torch.randn(4,256,64,64) x2 = torch.randn(4,512,16,16) x3 = torch.randn(4,1024,16,16) x4 = torch.randn(4,2048,16,16) model = EncNet(2048,11) out = model([x1,x2,x3,x4]) print(type(out)) # outputs = model(img)
[ 7061, 6, 198, 13838, 25, 18258, 25426, 198, 10430, 25, 33448, 12, 1157, 12, 1959, 1367, 25, 2919, 25, 4310, 198, 5956, 18378, 669, 25, 18258, 25426, 198, 5956, 18378, 7575, 25, 33448, 12, 1157, 12, 1270, 678, 25, 3559, 25, 1129, 198, 11828, 25, 2393, 2695, 198, 8979, 15235, 25, 1220, 33538, 8895, 62, 50, 972, 291, 62, 41030, 14374, 14, 19849, 14, 12501, 1098, 62, 16600, 14, 12685, 3262, 14, 12685, 3262, 13, 9078, 198, 7061, 6, 198, 7061, 6, 198, 13838, 25, 18258, 25426, 198, 10430, 25, 33448, 12, 1157, 12, 1959, 1367, 25, 2919, 25, 4310, 198, 5956, 18378, 669, 25, 18258, 25426, 198, 5956, 18378, 7575, 25, 33448, 12, 1157, 12, 1270, 678, 25, 3132, 25, 2998, 198, 11828, 25, 2393, 2695, 198, 8979, 15235, 25, 1220, 33538, 8895, 62, 50, 972, 291, 62, 41030, 14374, 14, 19849, 14, 12501, 1098, 62, 16600, 14, 12685, 3262, 14, 12685, 3262, 13, 9078, 198, 7061, 6, 198, 198, 37811, 21947, 14711, 7656, 329, 12449, 5109, 1001, 5154, 341, 37811, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 2746, 13, 26791, 13, 12685, 62, 21412, 1330, 14711, 26796, 198, 6738, 2746, 13, 38272, 1330, 27196, 16820, 62, 37682, 198, 198, 834, 439, 834, 796, 37250, 27195, 7934, 20520, 628, 198, 31, 41374, 16820, 62, 37682, 13, 30238, 62, 21412, 7203, 27195, 7934, 4943, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 2124, 16, 796, 28034, 13, 25192, 77, 7, 19, 11, 11645, 11, 2414, 11, 2414, 8, 198, 220, 220, 220, 2124, 17, 796, 28034, 13, 25192, 77, 7, 19, 11, 25836, 11, 1433, 11, 1433, 8, 198, 220, 220, 220, 2124, 18, 796, 28034, 13, 25192, 77, 7, 19, 11, 35500, 11, 1433, 11, 1433, 8, 198, 220, 220, 220, 2124, 19, 796, 28034, 13, 25192, 77, 7, 19, 11, 1238, 2780, 11, 1433, 11, 1433, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2746, 796, 14711, 7934, 7, 1238, 2780, 11, 1157, 8, 198, 220, 220, 220, 503, 796, 2746, 26933, 87, 16, 11, 87, 17, 11, 87, 18, 11, 87, 19, 12962, 198, 220, 220, 220, 3601, 7, 4906, 7, 448, 4008, 198, 220, 220, 220, 1303, 23862, 796, 2746, 7, 9600, 8, 198 ]
2.418782
394
import numpy as np import numpy.typing as npt from .. import tools from ..algo import Algo class TCO(Algo): """Transaction costs optimization. The TCO algorithm needs just a next return prediction to work, see the paper for more details. Paper : https://ink.library.smu.edu.sg/cgi/viewcontent.cgi?referer=&httpsredir=1&article=4761&context=sis_research """ PRICE_TYPE = "raw" REPLACE_MISSING = True def __init__(self, trx_fee_pct=0, eta=10, **kwargs): """ :param trx_fee_pct: transaction fee in percent :param eta: smoothing parameter """ super().__init__(**kwargs) self.trx_fee_pct = trx_fee_pct self.eta = eta def predict(self, p, history) -> npt.NDArray: """Predict returns on next day. :param p: raw price """ raise NotImplementedError() def update_tco(self, x: npt.NDArray, b: npt.NDArray, x_pred: npt.NDArray): """ :param x: ratio of change in price """ lambd = 10 * self.trx_fee_pct # last price adjusted weights updated_b = np.multiply(b, x) / np.dot(b, x) # Calculate variables vt = x_pred / np.dot(updated_b, x_pred) v_t_ = np.mean(vt) # Update portfolio b_1 = self.eta * (vt - np.dot(v_t_, 1)) b_ = updated_b + np.sign(b_1) * np.maximum( np.zeros(len(b_1)), np.abs(b_1) - lambd ) # project it onto simplex proj = tools.simplex_proj(y=b_) return proj if __name__ == "__main__": tools.quickrun(TCO1())
[ 11748, 299, 32152, 355, 45941, 198, 11748, 299, 32152, 13, 774, 13886, 355, 299, 457, 198, 198, 6738, 11485, 1330, 4899, 198, 6738, 11485, 282, 2188, 1330, 978, 2188, 628, 198, 4871, 309, 8220, 7, 2348, 2188, 2599, 198, 220, 220, 220, 37227, 48720, 3484, 23989, 13, 383, 309, 8220, 11862, 2476, 655, 257, 1306, 1441, 17724, 198, 220, 220, 220, 284, 670, 11, 766, 262, 3348, 329, 517, 3307, 13, 628, 220, 220, 220, 14962, 1058, 3740, 1378, 676, 13, 32016, 13, 5796, 84, 13, 15532, 13, 45213, 14, 37157, 14, 1177, 11299, 13, 37157, 30, 5420, 11882, 28, 5, 5450, 445, 343, 28, 16, 5, 20205, 28, 2857, 5333, 5, 22866, 28, 13429, 62, 34033, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 4810, 8476, 62, 25216, 796, 366, 1831, 1, 198, 220, 220, 220, 45285, 11598, 62, 44, 16744, 2751, 796, 6407, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 491, 87, 62, 39071, 62, 79, 310, 28, 15, 11, 2123, 64, 28, 940, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 491, 87, 62, 39071, 62, 79, 310, 25, 8611, 6838, 287, 1411, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2123, 64, 25, 32746, 722, 11507, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 22446, 834, 15003, 834, 7, 1174, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2213, 87, 62, 39071, 62, 79, 310, 796, 491, 87, 62, 39071, 62, 79, 310, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17167, 796, 2123, 64, 628, 220, 220, 220, 825, 4331, 7, 944, 11, 279, 11, 2106, 8, 4613, 299, 457, 13, 8575, 19182, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 47, 17407, 5860, 319, 1306, 1110, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 279, 25, 8246, 2756, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 825, 4296, 62, 83, 1073, 7, 944, 11, 2124, 25, 299, 457, 13, 8575, 19182, 11, 275, 25, 299, 457, 13, 8575, 19182, 11, 2124, 62, 28764, 25, 299, 457, 13, 8575, 19182, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2124, 25, 8064, 286, 1487, 287, 2756, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 19343, 67, 796, 838, 1635, 2116, 13, 2213, 87, 62, 39071, 62, 79, 310, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 938, 2756, 12328, 19590, 198, 220, 220, 220, 220, 220, 220, 220, 6153, 62, 65, 796, 45941, 13, 16680, 541, 306, 7, 65, 11, 2124, 8, 1220, 45941, 13, 26518, 7, 65, 11, 2124, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 27131, 378, 9633, 198, 220, 220, 220, 220, 220, 220, 220, 410, 83, 796, 2124, 62, 28764, 1220, 45941, 13, 26518, 7, 43162, 62, 65, 11, 2124, 62, 28764, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 62, 83, 62, 796, 45941, 13, 32604, 7, 36540, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 10133, 15320, 198, 220, 220, 220, 220, 220, 220, 220, 275, 62, 16, 796, 2116, 13, 17167, 1635, 357, 36540, 532, 45941, 13, 26518, 7, 85, 62, 83, 62, 11, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 275, 62, 796, 6153, 62, 65, 1343, 45941, 13, 12683, 7, 65, 62, 16, 8, 1635, 45941, 13, 47033, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 9107, 418, 7, 11925, 7, 65, 62, 16, 36911, 45941, 13, 8937, 7, 65, 62, 16, 8, 532, 19343, 67, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1628, 340, 4291, 2829, 87, 198, 220, 220, 220, 220, 220, 220, 220, 386, 73, 796, 4899, 13, 14323, 11141, 62, 1676, 73, 7, 88, 28, 65, 62, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 386, 73, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 4899, 13, 24209, 5143, 7, 4825, 46, 16, 28955, 198 ]
2.132353
748
import matplotlib.pyplot as plt import numpy as np import matplotlib from datetime import datetime, timedelta from floodsystem.analysis import polyfit
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 28805, 12514, 198, 6738, 6947, 10057, 13, 20930, 1330, 7514, 11147, 628 ]
3.707317
41
import sys import numpy as np ''' This function parses the yaml input file, assuming the input is correct The parsing works in the following way: given a correct file that defines len = n, the function returns two arrays of length n - cell_value_arr (beauty/num coins in each cell) and cell_title_arr (princess or dragon) ''' ''' index - an index of a princess in the input arrays title_arr - cell_title_arr (input) this functions returns the index of the previous princess ''' ''' index - an index of a princess in the input arrays title_arr - cell_title_arr (input) output_array - this array contains the lower_bound and upper_bound for each princess this functions returns the index of the previous princess with non empty lower bound (explanation will follow) ''' ''' cell_value_arr - a version of cell_value_array num_dragons_allowed - a number of dragons the knight is allowed to kill this function returns the indices of the dragons with most of the coins (bound by num_dragons_allowed) ''' ''' cell_title_arr - a version of cell_title_arr this function counts the number of dragons in it, and returns the count ''' ''' cell_value_arr - a version of cell_value_arr cell_title_arr - a version of cell_title_arr index_list - an index_list of dragon cells prev_princess_index - the index of a previous princess this function marks the following cells: all cells before prev_princess_index are marked if they are not in index_list or not a dragon, and the rest of the cells are marked if they are not a dragon the mark is the lowest integer number (i'm assuming it won't be given as an input) ''' # This as an explanation for calculate_princess_lower_bound(), calculate_princess_upper_bound(): the output array # will hold for each princess two lists of indices - lower_bound: minimal number of dragons to kill, that maximize # coin sum and allow marrying that princess upper_bound: maximal number of dragons to kill, that maximal coin sum and # allow marrying that princess (without marrying previous princesses) ''' prev_lower_bound - lower bound of the previous princess cell_value_arr - a version of cell_value_arr cell_title_arr - a version of cell_title_arr i - current princess index beauty_val - current princess beauty value prev_princess_index - the index of a previous princess this function returns the current princess lower_bound ''' ''' prev_lower_bound - lower bound of the previous princess cell_value_arr - a version of cell_value_arr cell_title_arr - a version of cell_title_arr dragon_count_in_range - number of dragons in between current princess and previous princess i - current princess index prev_princess_index - the index of a previous princess this function returns the current princess upper_bound ''' ''' i - current index in output array cell_title_arr - a version of cell_title_arr cell_value_arr - a version of cell_value_arr output_array - this array contains the lower_bound and upper_bound for each princess this function uses the previous functions and the previous cells of output_array to calculate lower_bound and upper_bound of output_array[i], and returns it ''' ''' output_array - this array contains the lower_bound and upper_bound for each princess value_array - cell_value_arr (input) n - index of princess we want to print this function prints the output according to the instruction ''' ''' title_arr - cell_title_arr (input) value_array - cell_value_arr (input) this function initializes output_array, fills it and prints it ''' ''' main parses the input and runs run() ''' if __name__ == '__main__': input_file = input("Enter file name: for example input_file.yaml\n After output is printed, press Enter\n") parser_val = parse_input_file(input_file) if parser_val is not None: input_title_arr, input_value_arr = parser_val if len(input_title_arr) != 0: run(input_title_arr, input_value_arr) else: # No princess print(-1) input("")
[ 11748, 25064, 198, 11748, 299, 32152, 355, 45941, 198, 198, 7061, 6, 198, 1212, 2163, 13544, 274, 262, 331, 43695, 5128, 2393, 11, 13148, 262, 5128, 318, 3376, 383, 32096, 2499, 287, 262, 1708, 835, 25, 220, 198, 35569, 257, 3376, 2393, 326, 15738, 18896, 796, 299, 11, 262, 2163, 5860, 734, 26515, 286, 4129, 299, 532, 2685, 62, 8367, 62, 3258, 357, 40544, 88, 14, 22510, 198, 14624, 287, 1123, 2685, 8, 290, 2685, 62, 7839, 62, 3258, 357, 1050, 259, 919, 393, 10441, 8, 220, 198, 7061, 6, 628, 628, 198, 7061, 6, 198, 9630, 532, 281, 6376, 286, 257, 21752, 287, 262, 5128, 26515, 198, 7839, 62, 3258, 532, 2685, 62, 7839, 62, 3258, 357, 15414, 8, 198, 5661, 5499, 5860, 262, 6376, 286, 262, 2180, 21752, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 9630, 532, 281, 6376, 286, 257, 21752, 287, 262, 5128, 26515, 198, 7839, 62, 3258, 532, 2685, 62, 7839, 62, 3258, 357, 15414, 8, 198, 22915, 62, 18747, 532, 428, 7177, 4909, 262, 2793, 62, 7784, 290, 6727, 62, 7784, 329, 1123, 21752, 198, 5661, 5499, 5860, 262, 6376, 286, 262, 2180, 21752, 351, 1729, 6565, 2793, 5421, 357, 1069, 11578, 341, 481, 1061, 8, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 3846, 62, 8367, 62, 3258, 532, 257, 2196, 286, 2685, 62, 8367, 62, 18747, 198, 22510, 62, 7109, 34765, 62, 40845, 532, 257, 1271, 286, 20308, 262, 22062, 318, 3142, 284, 1494, 198, 5661, 2163, 5860, 262, 36525, 286, 262, 20308, 351, 749, 286, 262, 10796, 357, 7784, 416, 997, 62, 7109, 34765, 62, 40845, 8, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 3846, 62, 7839, 62, 3258, 532, 257, 2196, 286, 2685, 62, 7839, 62, 3258, 198, 5661, 2163, 9853, 262, 1271, 286, 20308, 287, 340, 11, 290, 5860, 262, 954, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 3846, 62, 8367, 62, 3258, 532, 257, 2196, 286, 2685, 62, 8367, 62, 3258, 198, 3846, 62, 7839, 62, 3258, 532, 257, 2196, 286, 2685, 62, 7839, 62, 3258, 198, 9630, 62, 4868, 532, 281, 6376, 62, 4868, 286, 10441, 4778, 198, 47050, 62, 1050, 259, 919, 62, 9630, 532, 262, 6376, 286, 257, 2180, 21752, 198, 5661, 2163, 8849, 262, 1708, 4778, 25, 477, 4778, 878, 8654, 62, 1050, 259, 919, 62, 9630, 389, 7498, 611, 220, 198, 9930, 389, 407, 287, 6376, 62, 4868, 393, 407, 257, 10441, 11, 290, 262, 1334, 286, 262, 4778, 389, 7498, 611, 484, 389, 407, 257, 10441, 198, 1169, 1317, 318, 262, 9016, 18253, 1271, 357, 72, 1101, 13148, 340, 1839, 470, 307, 1813, 355, 281, 5128, 8, 198, 7061, 6, 628, 198, 198, 2, 770, 355, 281, 7468, 329, 15284, 62, 1050, 259, 919, 62, 21037, 62, 7784, 22784, 15284, 62, 1050, 259, 919, 62, 45828, 62, 7784, 33529, 262, 5072, 7177, 198, 2, 481, 1745, 329, 1123, 21752, 734, 8341, 286, 36525, 532, 2793, 62, 7784, 25, 10926, 1271, 286, 20308, 284, 1494, 11, 326, 20487, 198, 2, 10752, 2160, 290, 1249, 34862, 326, 21752, 6727, 62, 7784, 25, 40708, 1271, 286, 20308, 284, 1494, 11, 326, 40708, 10752, 2160, 290, 198, 2, 1249, 34862, 326, 21752, 357, 19419, 34862, 2180, 21752, 274, 8, 198, 198, 7061, 6, 198, 47050, 62, 21037, 62, 7784, 532, 2793, 5421, 286, 262, 2180, 21752, 198, 3846, 62, 8367, 62, 3258, 532, 257, 2196, 286, 2685, 62, 8367, 62, 3258, 198, 3846, 62, 7839, 62, 3258, 532, 257, 2196, 286, 2685, 62, 7839, 62, 3258, 198, 72, 532, 1459, 21752, 6376, 198, 40544, 88, 62, 2100, 532, 1459, 21752, 8737, 1988, 198, 47050, 62, 1050, 259, 919, 62, 9630, 532, 262, 6376, 286, 257, 2180, 21752, 198, 5661, 2163, 5860, 262, 1459, 21752, 2793, 62, 7784, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 47050, 62, 21037, 62, 7784, 532, 2793, 5421, 286, 262, 2180, 21752, 198, 3846, 62, 8367, 62, 3258, 532, 257, 2196, 286, 2685, 62, 8367, 62, 3258, 198, 3846, 62, 7839, 62, 3258, 532, 257, 2196, 286, 2685, 62, 7839, 62, 3258, 198, 14844, 62, 9127, 62, 259, 62, 9521, 532, 1271, 286, 20308, 287, 1022, 1459, 21752, 290, 2180, 21752, 198, 72, 532, 1459, 21752, 6376, 198, 47050, 62, 1050, 259, 919, 62, 9630, 532, 262, 6376, 286, 257, 2180, 21752, 198, 5661, 2163, 5860, 262, 1459, 21752, 6727, 62, 7784, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 72, 532, 1459, 6376, 287, 5072, 7177, 198, 3846, 62, 7839, 62, 3258, 532, 257, 2196, 286, 2685, 62, 7839, 62, 3258, 198, 3846, 62, 8367, 62, 3258, 532, 257, 2196, 286, 2685, 62, 8367, 62, 3258, 198, 22915, 62, 18747, 532, 428, 7177, 4909, 262, 2793, 62, 7784, 290, 6727, 62, 7784, 329, 1123, 21752, 198, 5661, 2163, 3544, 262, 2180, 5499, 290, 262, 2180, 4778, 286, 5072, 62, 18747, 284, 15284, 198, 21037, 62, 7784, 290, 6727, 62, 7784, 286, 5072, 62, 18747, 58, 72, 4357, 290, 5860, 340, 220, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 22915, 62, 18747, 532, 428, 7177, 4909, 262, 2793, 62, 7784, 290, 6727, 62, 7784, 329, 1123, 21752, 198, 8367, 62, 18747, 532, 2685, 62, 8367, 62, 3258, 357, 15414, 8, 198, 77, 532, 6376, 286, 21752, 356, 765, 284, 3601, 198, 5661, 2163, 20842, 262, 5072, 1864, 284, 262, 12064, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 7839, 62, 3258, 532, 2685, 62, 7839, 62, 3258, 357, 15414, 8, 198, 8367, 62, 18747, 532, 2685, 62, 8367, 62, 3258, 357, 15414, 8, 198, 5661, 2163, 4238, 4340, 5072, 62, 18747, 11, 23816, 340, 290, 20842, 340, 198, 7061, 6, 628, 198, 198, 7061, 6, 198, 12417, 13544, 274, 262, 5128, 290, 4539, 1057, 3419, 198, 7061, 6, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 5128, 62, 7753, 796, 5128, 7203, 17469, 2393, 1438, 25, 329, 1672, 5128, 62, 7753, 13, 88, 43695, 59, 77, 2293, 5072, 318, 10398, 11, 1803, 6062, 59, 77, 4943, 198, 220, 220, 220, 30751, 62, 2100, 796, 21136, 62, 15414, 62, 7753, 7, 15414, 62, 7753, 8, 198, 220, 220, 220, 611, 30751, 62, 2100, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 7839, 62, 3258, 11, 5128, 62, 8367, 62, 3258, 796, 30751, 62, 2100, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 15414, 62, 7839, 62, 3258, 8, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 7, 15414, 62, 7839, 62, 3258, 11, 5128, 62, 8367, 62, 3258, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1400, 21752, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 32590, 16, 8, 198, 220, 220, 220, 5128, 7203, 4943, 198 ]
3.470078
1,153
# -*- coding: utf-8 -*- # Copyright Hannah von Reth <[email protected]> # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. 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. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. import os import utils from CraftOS.osutils import OsUtils from CraftCore import CraftCore
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 15069, 26013, 18042, 371, 2788, 1279, 26982, 40978, 31, 74, 2934, 13, 2398, 29, 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, 352, 13, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 198, 2, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 198, 2, 362, 13, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 198, 2, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 262, 198, 2, 220, 220, 220, 10314, 290, 14, 273, 584, 5696, 2810, 351, 262, 6082, 13, 198, 2, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 23337, 15365, 5357, 27342, 9865, 3843, 20673, 7559, 1921, 3180, 7061, 5357, 198, 2, 15529, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 40880, 5390, 11, 3336, 198, 2, 8959, 49094, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 198, 2, 15986, 13954, 48778, 1961, 13, 220, 3268, 8005, 49261, 50163, 3336, 23337, 15365, 6375, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 198, 2, 7473, 15529, 42242, 11, 3268, 17931, 23988, 11, 19387, 25256, 1847, 11, 38846, 11, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 198, 2, 29506, 25552, 357, 1268, 39149, 2751, 11, 21728, 5626, 40880, 5390, 11, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 198, 2, 6375, 49254, 26, 406, 18420, 3963, 23210, 11, 42865, 11, 6375, 4810, 19238, 29722, 26, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 198, 2, 29630, 36, 5959, 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, 15529, 34882, 198, 2, 16289, 3963, 3336, 23210, 3963, 12680, 47466, 11, 45886, 16876, 5984, 29817, 1961, 3963, 3336, 28069, 11584, 25382, 3963, 198, 2, 13558, 3398, 29506, 11879, 13, 198, 198, 11748, 28686, 198, 198, 11748, 3384, 4487, 198, 198, 6738, 15745, 2640, 13, 418, 26791, 1330, 8834, 18274, 4487, 198, 6738, 15745, 14055, 1330, 15745, 14055 ]
3.415274
419
import argparse import ora_tools as ora
[ 11748, 1822, 29572, 198, 11748, 393, 64, 62, 31391, 355, 393, 64, 198 ]
3.076923
13
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
import databricks_test from databricks_test import SessionAlreadyExistsException
[ 11748, 4818, 397, 23706, 62, 9288, 198, 6738, 4818, 397, 23706, 62, 9288, 1330, 23575, 37447, 3109, 1023, 16922, 628 ]
4.1
20
"""Module that implements the Switch class.""" from __future__ import annotations from ..const import SwitchAttribute, ZWaveDeviceAttribute from . import VivintDevice class Switch(VivintDevice): """Represents a Vivint switch device.""" @property def is_on(self) -> bool: """Return True if switch is on.""" return self.data[SwitchAttribute.STATE] @property def level(self) -> int: """Return the level of the switch betwen 0..100.""" return self.data[SwitchAttribute.VALUE] @property def node_online(self) -> bool: """Return True if the node is online.""" return self.data[ZWaveDeviceAttribute.ONLINE] async def set_state(self, on: bool | None = None, level: int | None = None) -> None: """Set switch's state.""" await self.vivintskyapi.set_switch_state( self.alarm_panel.id, self.alarm_panel.partition_id, self.id, on, level ) async def turn_on(self) -> None: """Turn on the switch.""" await self.set_state(on=True) async def turn_off(self) -> None: """Turn off the switch.""" await self.set_state(on=False) class BinarySwitch(Switch): """Represents a Vivint binary switch device.""" class MultilevelSwitch(Switch): """Represents a Vivint multilevel switch device.""" async def set_level(self, level: int) -> None: """Set the level of the switch between 0..100.""" await self.set_state(level=level)
[ 37811, 26796, 326, 23986, 262, 14645, 1398, 526, 15931, 198, 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 6738, 11485, 9979, 1330, 14645, 33682, 11, 1168, 39709, 24728, 33682, 198, 6738, 764, 1330, 25313, 600, 24728, 628, 198, 4871, 14645, 7, 53, 452, 600, 24728, 2599, 198, 220, 220, 220, 37227, 6207, 6629, 257, 25313, 600, 5078, 3335, 526, 15931, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 318, 62, 261, 7, 944, 8, 4613, 20512, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 6407, 611, 5078, 318, 319, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 58, 38978, 33682, 13, 44724, 60, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 1241, 7, 944, 8, 4613, 493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 1241, 286, 262, 5078, 731, 21006, 657, 492, 3064, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 58, 38978, 33682, 13, 39488, 60, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 10139, 62, 25119, 7, 944, 8, 4613, 20512, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 6407, 611, 262, 10139, 318, 2691, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 7890, 58, 57, 39709, 24728, 33682, 13, 1340, 24027, 60, 628, 220, 220, 220, 30351, 825, 900, 62, 5219, 7, 944, 11, 319, 25, 20512, 930, 6045, 796, 6045, 11, 1241, 25, 493, 930, 6045, 796, 6045, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 5078, 338, 1181, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 85, 452, 600, 15688, 15042, 13, 2617, 62, 31943, 62, 5219, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 282, 1670, 62, 35330, 13, 312, 11, 2116, 13, 282, 1670, 62, 35330, 13, 3911, 653, 62, 312, 11, 2116, 13, 312, 11, 319, 11, 1241, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 30351, 825, 1210, 62, 261, 7, 944, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17278, 319, 262, 5078, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 2617, 62, 5219, 7, 261, 28, 17821, 8, 628, 220, 220, 220, 30351, 825, 1210, 62, 2364, 7, 944, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17278, 572, 262, 5078, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 2617, 62, 5219, 7, 261, 28, 25101, 8, 628, 198, 4871, 45755, 38978, 7, 38978, 2599, 198, 220, 220, 220, 37227, 6207, 6629, 257, 25313, 600, 13934, 5078, 3335, 526, 15931, 628, 198, 4871, 7854, 576, 626, 38978, 7, 38978, 2599, 198, 220, 220, 220, 37227, 6207, 6629, 257, 25313, 600, 1963, 576, 626, 5078, 3335, 526, 15931, 628, 220, 220, 220, 30351, 825, 900, 62, 5715, 7, 944, 11, 1241, 25, 493, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 262, 1241, 286, 262, 5078, 1022, 657, 492, 3064, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 2617, 62, 5219, 7, 5715, 28, 5715, 8, 198 ]
2.681004
558
from sprp.core.alg import * from sprp.export.shapefile import * if __name__ == "__main__": slc = SimpleLineCalculator(116.23589,39.90387,116.25291,39.90391,**{ "cameraWidth": 4000, "cameraHeight":3000, "focusLength":35, "pixelSize":2, "gsd":0.05, "flightSpeed":80, "courseOverlap":0.8, "sidewiseOverlap":0.6 }) print(slc) linePointsResult,forwardAngle = slc.caculate_line(116.23589,39.90387,116.25291,39.90391) #slc.setLine(116.23589,39.90387,116.25291,39.90391) result = slc.calculate() print(result) print(slc.points) print("###############################################################################") ssc = SimpleStripCalculator(116.23589,39.90387,116.25291,39.90391, 3,2, **{ "cameraWidth": 4000, "cameraHeight":3000, "focusLength":35, "pixelSize":2, "gsd":0.05, "flightSpeed":80, "courseOverlap":0.8, "sidewiseOverlap":0.6, }) result = ssc.calculate() print(result) print(ssc.points) print(len(ssc.points)) sfe = ShapefileExportor('/Users/luoxiangyong/Devel/sprp/Data', 'test-project') sfe.save(ssc) ################################################################ ############################################################################### CAMERA_WIDTH = 2000 CAMERA_HEIGHT = 1000 CAMERA_GSD = 0.05 OVERLAP_FWD = 0.8 OVERLAP_CROSS = 0.6 BASELINE = (1-OVERLAP_FWD) * CAMERA_HEIGHT * CAMERA_GSD CROSSLINE = (1-OVERLAP_CROSS) * CAMERA_WIDTH * CAMERA_GSD """ @brief 从点和指定的角度计算地面覆盖的矩形(footprint) @param point 指定点 @param angle 航线方向 @param iwidth 图像长度 @param iheight 图像高度 @param gsd 地面分辨率 @return 返回地面覆盖的矩形的四脚点坐标 """ if __name__ == "__main__": # points,angle = caculateLine(116.23589,39.90387,116.25291,39.90391,50) # print("Angle:{}".format(angle)) # writeLineToShapefile(points,'test-shapefile-01') # points,angle = caculateLine(116.23589,39.90287,116.25291,39.90291,50) # print("Angle:{}".format(angle)) # writeLineToShapefile(points,'test-shapefile-02') start_long = 116.23589 start_lat = 39.90387 end_long = 116.25291 end_lat = 39.90591 geod = pyproj.Geod(ellps="WGS84") #long,lat,tmpAngle = geod.fwd(point[0],point[1],angleTR, distance/2) # 计算两点的角度 angle,backAngle,distanceTmp = geod.inv(start_long, start_lat,end_long,end_lat) pointsOfLine = [] long = start_long lat = start_lat for index in range(10): long,lat,tmpAngle = geod.fwd(long,lat, angle-90,CROSSLINE) end_long,end_lat,tempAngle = geod.fwd(long,lat, angle,distanceTmp) pointsOfLine.append((long,lat,end_long,end_lat)) caculateArea(pointsOfLine,BASELINE) # caculateArea([[116.23589,39.90387,116.25291,39.90391], # [116.23589,39.90287,116.25291,39.90291]], # CAMERA_GSD)
[ 6738, 7500, 79, 13, 7295, 13, 14016, 1330, 1635, 198, 6738, 7500, 79, 13, 39344, 13, 43358, 7753, 1330, 1635, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1017, 66, 796, 17427, 13949, 9771, 3129, 1352, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 11, 1174, 90, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25695, 30916, 1298, 30123, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25695, 23106, 1298, 23924, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 37635, 24539, 1298, 2327, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32515, 10699, 1298, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 14542, 67, 1298, 15, 13, 2713, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 22560, 22785, 1298, 1795, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 17319, 5886, 37796, 1298, 15, 13, 23, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 30255, 413, 786, 5886, 37796, 1298, 15, 13, 21, 198, 220, 220, 220, 32092, 628, 220, 220, 220, 3601, 7, 6649, 66, 8, 628, 220, 220, 220, 1627, 40710, 23004, 11, 11813, 13450, 293, 796, 1017, 66, 13, 66, 330, 5039, 62, 1370, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 8, 628, 220, 220, 220, 1303, 6649, 66, 13, 2617, 13949, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 8, 198, 220, 220, 220, 1255, 796, 1017, 66, 13, 9948, 3129, 378, 3419, 198, 220, 220, 220, 3601, 7, 20274, 8, 198, 220, 220, 220, 3601, 7, 6649, 66, 13, 13033, 8, 628, 220, 220, 220, 3601, 7203, 29113, 29113, 7804, 4242, 21017, 4943, 628, 220, 220, 220, 264, 1416, 796, 17427, 1273, 5528, 9771, 3129, 1352, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 11, 198, 220, 220, 220, 220, 220, 220, 220, 513, 11, 17, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 90, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25695, 30916, 1298, 30123, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25695, 23106, 1298, 23924, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 37635, 24539, 1298, 2327, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32515, 10699, 1298, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 14542, 67, 1298, 15, 13, 2713, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 22560, 22785, 1298, 1795, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 17319, 5886, 37796, 1298, 15, 13, 23, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 30255, 413, 786, 5886, 37796, 1298, 15, 13, 21, 11, 220, 198, 220, 220, 220, 32092, 198, 220, 220, 220, 1255, 796, 264, 1416, 13, 9948, 3129, 378, 3419, 198, 220, 220, 220, 3601, 7, 20274, 8, 198, 220, 220, 220, 3601, 7, 824, 66, 13, 13033, 8, 198, 220, 220, 220, 3601, 7, 11925, 7, 824, 66, 13, 13033, 4008, 628, 220, 220, 220, 264, 5036, 796, 25959, 7753, 43834, 273, 10786, 14, 14490, 14, 2290, 1140, 15483, 88, 506, 14, 5005, 626, 14, 34975, 79, 14, 6601, 3256, 705, 9288, 12, 16302, 11537, 198, 220, 220, 220, 264, 5036, 13, 21928, 7, 824, 66, 8, 628, 198, 29113, 29113, 198, 29113, 29113, 7804, 4242, 21017, 198, 34, 2390, 46461, 62, 54, 2389, 4221, 796, 4751, 198, 34, 2390, 46461, 62, 13909, 9947, 796, 8576, 198, 34, 2390, 46461, 62, 38, 10305, 796, 657, 13, 2713, 198, 41983, 43, 2969, 62, 37, 22332, 796, 657, 13, 23, 198, 41983, 43, 2969, 62, 9419, 18420, 796, 657, 13, 21, 198, 33, 1921, 3698, 8881, 796, 357, 16, 12, 41983, 43, 2969, 62, 37, 22332, 8, 1635, 32421, 46461, 62, 13909, 9947, 1635, 32421, 46461, 62, 38, 10305, 198, 9419, 2640, 8634, 8881, 796, 357, 16, 12, 41983, 43, 2969, 62, 9419, 18420, 8, 1635, 32421, 46461, 62, 54, 2389, 4221, 1635, 32421, 46461, 62, 38, 10305, 628, 198, 37811, 198, 31, 65, 3796, 220, 20015, 236, 163, 224, 117, 161, 240, 234, 162, 234, 229, 22522, 248, 21410, 164, 100, 240, 41753, 99, 164, 106, 94, 163, 106, 245, 28839, 108, 165, 251, 95, 17358, 228, 33566, 244, 21410, 163, 253, 102, 37605, 95, 7, 5898, 4798, 8, 198, 198, 31, 17143, 966, 10545, 234, 229, 22522, 248, 163, 224, 117, 198, 31, 17143, 9848, 5525, 230, 103, 163, 118, 123, 43095, 28938, 239, 198, 31, 17143, 1312, 10394, 10263, 249, 122, 161, 225, 237, 165, 243, 123, 41753, 99, 198, 31, 17143, 1312, 17015, 10263, 249, 122, 161, 225, 237, 165, 45865, 41753, 99, 198, 31, 17143, 308, 21282, 10263, 250, 108, 165, 251, 95, 26344, 228, 164, 122, 101, 163, 236, 229, 198, 198, 31, 7783, 5525, 123, 242, 32368, 252, 28839, 108, 165, 251, 95, 17358, 228, 33566, 244, 21410, 163, 253, 102, 37605, 95, 21410, 32368, 249, 164, 226, 248, 163, 224, 117, 161, 251, 238, 43718, 229, 198, 37811, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 2173, 11, 9248, 796, 40428, 5039, 13949, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 11, 1120, 8, 198, 220, 220, 220, 1303, 3601, 7203, 13450, 293, 29164, 92, 1911, 18982, 7, 9248, 4008, 198, 220, 220, 220, 1303, 3551, 13949, 2514, 33383, 7753, 7, 13033, 4032, 9288, 12, 43358, 7753, 12, 486, 11537, 628, 220, 220, 220, 1303, 2173, 11, 9248, 796, 40428, 5039, 13949, 7, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 27800, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 33551, 11, 1120, 8, 198, 220, 220, 220, 1303, 3601, 7203, 13450, 293, 29164, 92, 1911, 18982, 7, 9248, 4008, 198, 220, 220, 220, 1303, 3551, 13949, 2514, 33383, 7753, 7, 13033, 4032, 9288, 12, 43358, 7753, 12, 2999, 11537, 628, 198, 220, 220, 220, 923, 62, 6511, 796, 18693, 13, 1954, 44169, 198, 220, 220, 220, 923, 62, 15460, 796, 5014, 13, 3829, 32220, 198, 220, 220, 220, 886, 62, 6511, 796, 18693, 13, 1495, 33551, 198, 220, 220, 220, 886, 62, 15460, 796, 5014, 13, 44928, 6420, 198, 220, 220, 220, 4903, 375, 796, 12972, 1676, 73, 13, 10082, 375, 7, 695, 862, 2625, 54, 14313, 5705, 4943, 198, 220, 220, 220, 1303, 6511, 11, 15460, 11, 22065, 13450, 293, 796, 4903, 375, 13, 69, 16993, 7, 4122, 58, 15, 4357, 4122, 58, 16, 4357, 9248, 5446, 11, 5253, 14, 17, 8, 198, 220, 220, 220, 1303, 5525, 106, 94, 163, 106, 245, 10310, 97, 163, 224, 117, 21410, 164, 100, 240, 41753, 99, 198, 220, 220, 220, 9848, 11, 1891, 13450, 293, 11, 30246, 51, 3149, 796, 4903, 375, 13, 16340, 7, 9688, 62, 6511, 11, 923, 62, 15460, 11, 437, 62, 6511, 11, 437, 62, 15460, 8, 628, 220, 220, 220, 2173, 5189, 13949, 796, 17635, 198, 220, 220, 220, 890, 796, 923, 62, 6511, 198, 220, 220, 220, 3042, 796, 923, 62, 15460, 198, 220, 220, 220, 329, 6376, 287, 2837, 7, 940, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 890, 11, 15460, 11, 22065, 13450, 293, 796, 4903, 375, 13, 69, 16993, 7, 6511, 11, 15460, 11, 9848, 12, 3829, 11, 9419, 2640, 8634, 8881, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 62, 6511, 11, 437, 62, 15460, 11, 29510, 13450, 293, 796, 4903, 375, 13, 69, 16993, 7, 6511, 11, 15460, 11, 9848, 11, 30246, 51, 3149, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2173, 5189, 13949, 13, 33295, 19510, 6511, 11, 15460, 11, 437, 62, 6511, 11, 437, 62, 15460, 4008, 628, 220, 220, 220, 40428, 5039, 30547, 7, 13033, 5189, 13949, 11, 33, 1921, 3698, 8881, 8, 198, 220, 220, 220, 1303, 40428, 5039, 30547, 26933, 58, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 32220, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 37710, 4357, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 18298, 13, 1954, 44169, 11, 2670, 13, 3829, 27800, 11, 18298, 13, 1495, 33551, 11, 2670, 13, 3829, 33551, 60, 4357, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32421, 46461, 62, 38, 10305, 8 ]
2.012371
1,455
import sys from optparse import make_option from django.core import management from django.conf import settings from django.core.management.base import BaseCommand from django.db.models import get_apps from django_kwalitee.testrunners import get_runner
[ 11748, 25064, 198, 6738, 2172, 29572, 1330, 787, 62, 18076, 198, 198, 6738, 42625, 14208, 13, 7295, 1330, 4542, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 7295, 13, 27604, 13, 8692, 1330, 7308, 21575, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 651, 62, 18211, 198, 198, 6738, 42625, 14208, 62, 74, 16783, 578, 68, 13, 9288, 36740, 1330, 651, 62, 16737 ]
3.681159
69
# # @lc app=leetcode.cn id=76 lang=python3 # # [76] 最小覆盖子串 # # https://leetcode-cn.com/problems/minimum-window-substring/description/ # # algorithms # Hard (38.57%) # Likes: 701 # Dislikes: 0 # Total Accepted: 72K # Total Submissions: 186K # Testcase Example: '"ADOBECODEBANC"\n"ABC"' # # 给你一个字符串 S、一个字符串 T 。请你设计一种算法,可以在 O(n) 的时间复杂度内,从字符串 S 里面找出:包含 T 所有字符的最小子串。 # # # # 示例: # # 输入:S = "ADOBECODEBANC", T = "ABC" # 输出:"BANC" # # # # 提示: # # # 如果 S 中不存这样的子串,则返回空字符串 ""。 # 如果 S 中存在这样的子串,我们保证它是唯一的答案。 # # # # @lc code=start # @lc code=end # def minWindow(self, s: str, t: str) -> str: # l,r = 0,0 # res = '' # min_len = float('inf') # need = Counter(t) # needcnt = len(t) # while r < len(s): # if need[s[r]] > 0: # needcnt -= 1 # need[s[r]] -= 1 # r += 1 # while needcnt == 0: # if r - l < min_len: # min_len = r - l # res = s[l:r] # if need[s[l]] == 0: # needcnt += 1 # need[s[l]] += 1 # l += 1 # return res
[ 2, 198, 2, 2488, 44601, 598, 28, 293, 316, 8189, 13, 31522, 4686, 28, 4304, 42392, 28, 29412, 18, 198, 2, 198, 2, 685, 4304, 60, 42164, 222, 22887, 237, 17358, 228, 33566, 244, 36310, 10310, 110, 198, 2, 198, 2, 3740, 1378, 293, 316, 8189, 12, 31522, 13, 785, 14, 1676, 22143, 14, 39504, 12, 17497, 12, 7266, 8841, 14, 11213, 14, 198, 2, 198, 2, 16113, 198, 2, 6912, 357, 2548, 13, 3553, 4407, 198, 2, 46077, 25, 220, 220, 220, 48173, 198, 2, 360, 3044, 7938, 25, 657, 198, 2, 7472, 21699, 276, 25, 220, 220, 220, 7724, 42, 198, 2, 7472, 3834, 8481, 25, 28481, 42, 198, 2, 6208, 7442, 17934, 25, 220, 705, 1, 2885, 9864, 2943, 16820, 33, 20940, 1, 59, 77, 1, 24694, 30543, 198, 2, 198, 2, 13328, 119, 247, 19526, 254, 31660, 10310, 103, 27764, 245, 163, 105, 99, 10310, 110, 311, 23513, 31660, 10310, 103, 27764, 245, 163, 105, 99, 10310, 110, 309, 220, 16764, 46237, 115, 19526, 254, 164, 106, 122, 164, 106, 94, 31660, 163, 100, 235, 163, 106, 245, 37345, 243, 171, 120, 234, 20998, 107, 20015, 98, 28839, 101, 440, 7, 77, 8, 13328, 248, 226, 33768, 114, 29785, 112, 13783, 235, 30266, 224, 41753, 99, 37863, 227, 171, 120, 234, 20015, 236, 27764, 245, 163, 105, 99, 10310, 110, 311, 16268, 229, 234, 165, 251, 95, 33699, 122, 49035, 118, 171, 120, 248, 44293, 227, 28938, 104, 309, 10545, 231, 222, 17312, 231, 27764, 245, 163, 105, 99, 21410, 17312, 222, 22887, 237, 36310, 10310, 110, 16764, 198, 2, 220, 198, 2, 220, 198, 2, 220, 198, 2, 13328, 97, 118, 160, 122, 233, 171, 120, 248, 198, 2, 220, 198, 2, 5525, 122, 241, 17739, 98, 171, 120, 248, 50, 796, 366, 2885, 9864, 2943, 16820, 33, 20940, 1600, 309, 796, 366, 24694, 1, 198, 2, 5525, 122, 241, 49035, 118, 171, 120, 248, 1, 33, 20940, 1, 198, 2, 220, 198, 2, 220, 198, 2, 220, 198, 2, 10545, 237, 238, 163, 97, 118, 171, 120, 248, 198, 2, 220, 198, 2, 220, 198, 2, 10263, 99, 224, 162, 252, 250, 311, 220, 40792, 38834, 27764, 246, 32573, 247, 43718, 115, 21410, 36310, 10310, 110, 171, 120, 234, 26344, 247, 32573, 242, 32368, 252, 163, 102, 118, 27764, 245, 163, 105, 99, 10310, 110, 13538, 16764, 198, 2, 10263, 99, 224, 162, 252, 250, 311, 220, 40792, 27764, 246, 28839, 101, 32573, 247, 43718, 115, 21410, 36310, 10310, 110, 171, 120, 234, 22755, 239, 20015, 105, 46479, 251, 46237, 223, 22522, 225, 42468, 161, 242, 107, 31660, 21410, 163, 18433, 162, 94, 230, 16764, 198, 2, 220, 198, 2, 220, 198, 2, 198, 198, 2, 2488, 44601, 2438, 28, 9688, 198, 198, 2, 2488, 44601, 2438, 28, 437, 198, 2, 220, 825, 949, 27703, 7, 944, 11, 264, 25, 965, 11, 256, 25, 965, 8, 4613, 965, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 300, 11, 81, 796, 657, 11, 15, 220, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 581, 796, 10148, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 949, 62, 11925, 796, 12178, 10786, 10745, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 761, 796, 15034, 7, 83, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 761, 66, 429, 796, 18896, 7, 83, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 981, 374, 1279, 18896, 7, 82, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 761, 58, 82, 58, 81, 11907, 1875, 657, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 761, 66, 429, 48185, 352, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 761, 58, 82, 58, 81, 11907, 48185, 352, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 15853, 352, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 761, 66, 429, 6624, 657, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 532, 300, 1279, 949, 62, 11925, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 949, 62, 11925, 796, 374, 532, 300, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 796, 264, 58, 75, 25, 81, 60, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 761, 58, 82, 58, 75, 11907, 6624, 657, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 761, 66, 429, 15853, 352, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 761, 58, 82, 58, 75, 11907, 15853, 352, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 15853, 352, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 581, 220, 220, 220, 198 ]
1.300541
925
print (""" Working. @muuT3ra$$uu-kick-my-str-v.1 #FuckAllEverything. by Tripl_color vk.com/Tripl_color""") import vk_requests import time import random token = "токен бота" cid = str(input('Айди беседы = ')) photo = "photo472165736_457244077" audio = "audio472165736_456239668" msg = "fuck all. by Tripl_Color. @muuT3ra$$uu-kick-my-str-v.1 " ## можешь добавить свое сообщение while True: api = vk_requests.create_api(service_token=token) print(api.messages.send(chat_id= cid, message= msg, random_id= random.randint(1, 2147483647))) print(api.messages.send(chat_id= cid, attachment= photo, random_id= random.randint(1, 2147483647))) print(api.messages.send(chat_id= cid, attachment= audio, random_id= random.randint(1, 2147483647))) print(api.messages.send(chat_id= cid, message= random.randint(1, 2147483647), random_id= random.randint(1, 2147483647))) print('Круг сообщений сделан') time.sleep(5)
[ 4798, 5855, 15931, 198, 28516, 13, 198, 31, 76, 12303, 51, 18, 430, 13702, 12303, 12, 24585, 12, 1820, 12, 2536, 12, 85, 13, 16, 198, 2, 34094, 3237, 19693, 13, 220, 198, 1525, 7563, 489, 62, 8043, 410, 74, 13, 785, 14, 14824, 489, 62, 8043, 15931, 4943, 198, 11748, 410, 74, 62, 8897, 3558, 198, 11748, 640, 198, 11748, 4738, 198, 30001, 796, 366, 20375, 25443, 118, 16843, 22177, 12466, 109, 15166, 20375, 16142, 1, 198, 66, 312, 796, 965, 7, 15414, 10786, 140, 238, 140, 117, 43666, 18849, 12466, 109, 16843, 21727, 16843, 43666, 45035, 796, 705, 4008, 198, 198, 23074, 796, 366, 23074, 2857, 20666, 3553, 2623, 62, 33032, 1731, 1821, 3324, 1, 198, 24051, 796, 366, 24051, 2857, 20666, 3553, 2623, 62, 29228, 23516, 35809, 1, 198, 19662, 796, 366, 31699, 477, 13, 416, 7563, 489, 62, 10258, 13, 2488, 76, 12303, 51, 18, 430, 13702, 12303, 12, 24585, 12, 1820, 12, 2536, 12, 85, 13, 16, 366, 22492, 12466, 120, 25443, 114, 16843, 141, 230, 45367, 12466, 112, 25443, 109, 16142, 38857, 18849, 20375, 45367, 220, 21727, 38857, 15166, 16843, 220, 21727, 15166, 25443, 109, 141, 231, 16843, 22177, 18849, 16843, 628, 198, 4514, 6407, 25, 198, 40391, 796, 410, 74, 62, 8897, 3558, 13, 17953, 62, 15042, 7, 15271, 62, 30001, 28, 30001, 8, 220, 220, 198, 3601, 7, 15042, 13, 37348, 1095, 13, 21280, 7, 17006, 62, 312, 28, 269, 312, 11, 3275, 28, 31456, 11, 4738, 62, 312, 28, 4738, 13, 25192, 600, 7, 16, 11, 362, 20198, 2780, 26780, 22, 22305, 198, 3601, 7, 15042, 13, 37348, 1095, 13, 21280, 7, 17006, 62, 312, 28, 269, 312, 11, 18231, 28, 4590, 11, 4738, 62, 312, 28, 4738, 13, 25192, 600, 7, 16, 11, 362, 20198, 2780, 26780, 22, 22305, 198, 3601, 7, 15042, 13, 37348, 1095, 13, 21280, 7, 17006, 62, 312, 28, 269, 312, 11, 18231, 28, 6597, 11, 4738, 62, 312, 28, 4738, 13, 25192, 600, 7, 16, 11, 362, 20198, 2780, 26780, 22, 22305, 198, 3601, 7, 15042, 13, 37348, 1095, 13, 21280, 7, 17006, 62, 312, 28, 269, 312, 11, 3275, 28, 4738, 13, 25192, 600, 7, 16, 11, 362, 20198, 2780, 26780, 22, 828, 4738, 62, 312, 28, 4738, 13, 25192, 600, 7, 16, 11, 362, 20198, 2780, 26780, 22, 22305, 628, 3601, 10786, 140, 248, 21169, 35072, 140, 111, 220, 21727, 15166, 25443, 109, 141, 231, 16843, 22177, 18849, 140, 117, 220, 21727, 43666, 16843, 30143, 16142, 22177, 11537, 198, 640, 13, 42832, 7, 20, 8, 198 ]
2.158392
423
import random from heads import Head
[ 11748, 4738, 198, 6738, 6665, 1330, 7123, 628, 198 ]
4.333333
9