content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
import SimpleITK as sitk import matplotlib.pyplot as plt import numpy as np # # Set of methods used for displaying the registration metric during the optimization. # # Callback invoked when the StartEvent happens, sets up our new data. # Callback invoked when the EndEvent happens, do cleanup of data and figure. # Callback invoked when the IterationEvent happens, update our data and display new figure. # Callback invoked when the sitkMultiResolutionIterationEvent happens, update the index into the # metric_values list. def overlay_binary_segmentation_contours(image, mask, window_min, window_max): """ Given a 2D image and mask: a. resample the image and mask into isotropic grid (required for display). b. rescale the image intensities using the given window information. c. overlay the contours computed from the mask onto the image. """ # Resample the image (linear interpolation) and mask (nearest neighbor interpolation) into an isotropic grid, # required for display. original_spacing = image.GetSpacing() original_size = image.GetSize() min_spacing = min(original_spacing) new_spacing = [min_spacing, min_spacing] new_size = [int(round(original_size[0]*(original_spacing[0]/min_spacing))), int(round(original_size[1]*(original_spacing[1]/min_spacing)))] resampled_img = sitk.Resample(image, new_size, sitk.Transform(), sitk.sitkLinear, image.GetOrigin(), new_spacing, image.GetDirection(), 0.0, image.GetPixelID()) resampled_msk = sitk.Resample(mask, new_size, sitk.Transform(), sitk.sitkNearestNeighbor, mask.GetOrigin(), new_spacing, mask.GetDirection(), 0.0, mask.GetPixelID()) # Create the overlay: cast the mask to expected label pixel type, and do the same for the image after # window-level, accounting for the high dynamic range of the CT. return sitk.LabelMapContourOverlay(sitk.Cast(resampled_msk, sitk.sitkLabelUInt8), sitk.Cast(sitk.IntensityWindowing(resampled_img, windowMinimum=window_min, windowMaximum=window_max), sitk.sitkUInt8), opacity = 1, contourThickness=[2,2]) def display_coronal_with_overlay(temporal_slice, coronal_slice, images, masks, label, window_min, window_max): """ Display a coronal slice from the 4D (3D+time) CT with a contour overlaid onto it. The contour is the edge of the specific label. """ img = images[temporal_slice][:,coronal_slice,:] msk = masks[temporal_slice][:,coronal_slice,:]==label overlay_img = overlay_binary_segmentation_contours(img, msk, window_min, window_max) # Flip the image so that corresponds to correct radiological view. plt.imshow(np.flipud(sitk.GetArrayFromImage(overlay_img))) plt.axis('off') plt.show() def display_coronal_with_label_maps_overlay(coronal_slice, mask_index, image, masks, label, window_min, window_max): """ Display a coronal slice from a 3D CT with a contour overlaid onto it. The contour is the edge of the specific label from the specific mask. Function is used to display results of transforming a segmentation using registration. """ img = image[:,coronal_slice,:] msk = masks[mask_index][:,coronal_slice,:]==label overlay_img = overlay_binary_segmentation_contours(img, msk, window_min, window_max) # Flip the image so that corresponds to correct radiological view. plt.imshow(np.flipud(sitk.GetArrayFromImage(overlay_img))) plt.axis('off') plt.show()
[ 11748, 17427, 2043, 42, 355, 1650, 74, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 198, 2, 198, 2, 5345, 286, 5050, 973, 329, 19407, 262, 9352, 18663, 1141, 262, 23989, 13, 220, 198, 2, 198, 198, 2, 4889, 1891, 24399, 618, 262, 7253, 9237, 4325, 11, 5621, 510, 674, 649, 1366, 13, 628, 198, 2, 4889, 1891, 24399, 618, 262, 5268, 9237, 4325, 11, 466, 27425, 286, 1366, 290, 3785, 13, 198, 198, 2, 4889, 1891, 24399, 618, 262, 40806, 341, 9237, 4325, 11, 4296, 674, 1366, 290, 3359, 649, 3785, 13, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 2, 4889, 1891, 24399, 618, 262, 1650, 74, 29800, 4965, 2122, 29993, 341, 9237, 4325, 11, 4296, 262, 6376, 656, 262, 220, 198, 2, 18663, 62, 27160, 1351, 13, 220, 628, 198, 4299, 33345, 62, 39491, 62, 325, 5154, 341, 62, 3642, 4662, 7, 9060, 11, 9335, 11, 4324, 62, 1084, 11, 4324, 62, 9806, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 11259, 257, 362, 35, 2939, 290, 9335, 25, 198, 220, 220, 220, 220, 220, 220, 257, 13, 581, 1403, 262, 2939, 290, 9335, 656, 31624, 1773, 291, 10706, 357, 35827, 329, 3359, 737, 198, 220, 220, 220, 220, 220, 220, 275, 13, 6811, 1000, 262, 2939, 17509, 871, 1262, 262, 1813, 4324, 1321, 13, 198, 220, 220, 220, 220, 220, 220, 269, 13, 33345, 262, 542, 4662, 29231, 422, 262, 9335, 4291, 262, 2939, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1874, 1403, 262, 2939, 357, 29127, 39555, 341, 8, 290, 9335, 357, 710, 12423, 4780, 39555, 341, 8, 656, 281, 31624, 1773, 291, 10706, 11, 198, 220, 220, 220, 1303, 2672, 329, 3359, 13, 198, 220, 220, 220, 2656, 62, 2777, 4092, 796, 2939, 13, 3855, 4561, 4092, 3419, 198, 220, 220, 220, 2656, 62, 7857, 796, 2939, 13, 3855, 10699, 3419, 198, 220, 220, 220, 949, 62, 2777, 4092, 796, 949, 7, 14986, 62, 2777, 4092, 8, 198, 220, 220, 220, 649, 62, 2777, 4092, 796, 685, 1084, 62, 2777, 4092, 11, 949, 62, 2777, 4092, 60, 198, 220, 220, 220, 649, 62, 7857, 796, 685, 600, 7, 744, 7, 14986, 62, 7857, 58, 15, 60, 9, 7, 14986, 62, 2777, 4092, 58, 15, 60, 14, 1084, 62, 2777, 4092, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 7, 744, 7, 14986, 62, 7857, 58, 16, 60, 9, 7, 14986, 62, 2777, 4092, 58, 16, 60, 14, 1084, 62, 2777, 4092, 4008, 15437, 198, 220, 220, 220, 581, 321, 10137, 62, 9600, 796, 1650, 74, 13, 4965, 1403, 7, 9060, 11, 649, 62, 7857, 11, 1650, 74, 13, 41762, 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, 1650, 74, 13, 48937, 74, 14993, 451, 11, 2939, 13, 3855, 39688, 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, 649, 62, 2777, 4092, 11, 2939, 13, 3855, 35, 4154, 22784, 657, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 13, 3855, 40809, 2389, 28955, 198, 220, 220, 220, 581, 321, 10137, 62, 907, 74, 796, 1650, 74, 13, 4965, 1403, 7, 27932, 11, 649, 62, 7857, 11, 1650, 74, 13, 41762, 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, 1650, 74, 13, 48937, 74, 8199, 12423, 46445, 2865, 11, 9335, 13, 3855, 39688, 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, 649, 62, 2777, 4092, 11, 9335, 13, 3855, 35, 4154, 22784, 657, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9335, 13, 3855, 40809, 2389, 28955, 628, 220, 220, 220, 1303, 13610, 262, 33345, 25, 3350, 262, 9335, 284, 2938, 6167, 17465, 2099, 11, 290, 466, 262, 976, 329, 262, 2939, 706, 198, 220, 220, 220, 1303, 4324, 12, 5715, 11, 14317, 329, 262, 1029, 8925, 2837, 286, 262, 16356, 13, 198, 220, 220, 220, 1441, 1650, 74, 13, 33986, 13912, 4264, 454, 5886, 10724, 7, 48937, 74, 13, 19248, 7, 411, 321, 10137, 62, 907, 74, 11, 1650, 74, 13, 48937, 74, 33986, 52, 5317, 23, 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, 1650, 74, 13, 19248, 7, 48937, 74, 13, 5317, 6377, 8731, 7855, 7, 411, 321, 10137, 62, 9600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 44046, 28, 17497, 62, 1084, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 40541, 28, 17497, 62, 9806, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1650, 74, 13, 48937, 74, 52, 5317, 23, 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, 45912, 796, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 454, 817, 624, 1108, 41888, 17, 11, 17, 12962, 628, 198, 4299, 3359, 62, 10215, 20996, 62, 4480, 62, 2502, 10724, 7, 11498, 35738, 62, 48369, 11, 1162, 20996, 62, 48369, 11, 4263, 11, 20680, 11, 6167, 11, 4324, 62, 1084, 11, 4324, 62, 9806, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16531, 257, 1162, 20996, 16416, 422, 262, 604, 35, 357, 18, 35, 10, 2435, 8, 16356, 351, 257, 542, 454, 12893, 1698, 4291, 340, 13, 383, 542, 454, 318, 262, 5743, 286, 198, 220, 220, 220, 262, 2176, 6167, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33705, 796, 4263, 58, 11498, 35738, 62, 48369, 7131, 45299, 10215, 20996, 62, 48369, 11, 47715, 198, 220, 220, 220, 285, 8135, 796, 20680, 58, 11498, 35738, 62, 48369, 7131, 45299, 10215, 20996, 62, 48369, 11, 47715, 855, 18242, 628, 220, 220, 220, 33345, 62, 9600, 796, 33345, 62, 39491, 62, 325, 5154, 341, 62, 3642, 4662, 7, 9600, 11, 285, 8135, 11, 4324, 62, 1084, 11, 4324, 62, 9806, 8, 198, 220, 220, 220, 1303, 29583, 262, 2939, 523, 326, 24866, 284, 3376, 2511, 15071, 1570, 13, 198, 220, 220, 220, 458, 83, 13, 320, 12860, 7, 37659, 13, 2704, 541, 463, 7, 48937, 74, 13, 3855, 19182, 4863, 5159, 7, 2502, 10724, 62, 9600, 22305, 198, 220, 220, 220, 458, 83, 13, 22704, 10786, 2364, 11537, 198, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 198, 4299, 3359, 62, 10215, 20996, 62, 4480, 62, 18242, 62, 31803, 62, 2502, 10724, 7, 10215, 20996, 62, 48369, 11, 9335, 62, 9630, 11, 2939, 11, 20680, 11, 6167, 11, 4324, 62, 1084, 11, 4324, 62, 9806, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16531, 257, 1162, 20996, 16416, 422, 257, 513, 35, 16356, 351, 257, 542, 454, 12893, 1698, 4291, 340, 13, 383, 542, 454, 318, 262, 5743, 286, 198, 220, 220, 220, 262, 2176, 6167, 422, 262, 2176, 9335, 13, 15553, 318, 973, 284, 3359, 2482, 286, 25449, 257, 10618, 341, 198, 220, 220, 220, 1262, 9352, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33705, 796, 2939, 58, 45299, 10215, 20996, 62, 48369, 11, 47715, 198, 220, 220, 220, 285, 8135, 796, 20680, 58, 27932, 62, 9630, 7131, 45299, 10215, 20996, 62, 48369, 11, 47715, 855, 18242, 628, 220, 220, 220, 33345, 62, 9600, 796, 33345, 62, 39491, 62, 325, 5154, 341, 62, 3642, 4662, 7, 9600, 11, 285, 8135, 11, 4324, 62, 1084, 11, 4324, 62, 9806, 8, 198, 220, 220, 220, 1303, 29583, 262, 2939, 523, 326, 24866, 284, 3376, 2511, 15071, 1570, 13, 198, 220, 220, 220, 458, 83, 13, 320, 12860, 7, 37659, 13, 2704, 541, 463, 7, 48937, 74, 13, 3855, 19182, 4863, 5159, 7, 2502, 10724, 62, 9600, 22305, 198, 220, 220, 220, 458, 83, 13, 22704, 10786, 2364, 11537, 198, 220, 220, 220, 458, 83, 13, 12860, 3419, 198 ]
2.352802
1,695
# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: communicate.proto """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import symbol_database as _symbol_database # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() DESCRIPTOR = _descriptor.FileDescriptor( name='communicate.proto', package='valet', syntax='proto3', serialized_options=None, create_key=_descriptor._internal_create_key, serialized_pb=b'\n\x11\x63ommunicate.proto\x12\x05valet\"!\n\x0eRequestMessage\x12\x0f\n\x07message\x18\x01 \x01(\t\"/\n\x0cReplyMessage\x12\x0e\n\x06status\x18\x01 \x01(\x03\x12\x0f\n\x07message\x18\x02 \x01(\t2B\n\x0b\x43ommunicate\x12\x33\n\x03Say\x12\x15.valet.RequestMessage\x1a\x13.valet.ReplyMessage\"\x00\x62\x06proto3' ) _REQUESTMESSAGE = _descriptor.Descriptor( name='RequestMessage', full_name='valet.RequestMessage', filename=None, file=DESCRIPTOR, containing_type=None, create_key=_descriptor._internal_create_key, fields=[ _descriptor.FieldDescriptor( name='message', full_name='valet.RequestMessage.message', index=0, number=1, type=9, cpp_type=9, label=1, has_default_value=False, default_value=b"".decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=28, serialized_end=61, ) _REPLYMESSAGE = _descriptor.Descriptor( name='ReplyMessage', full_name='valet.ReplyMessage', filename=None, file=DESCRIPTOR, containing_type=None, create_key=_descriptor._internal_create_key, fields=[ _descriptor.FieldDescriptor( name='status', full_name='valet.ReplyMessage.status', index=0, number=1, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='message', full_name='valet.ReplyMessage.message', index=1, number=2, type=9, cpp_type=9, label=1, has_default_value=False, default_value=b"".decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=63, serialized_end=110, ) DESCRIPTOR.message_types_by_name['RequestMessage'] = _REQUESTMESSAGE DESCRIPTOR.message_types_by_name['ReplyMessage'] = _REPLYMESSAGE _sym_db.RegisterFileDescriptor(DESCRIPTOR) RequestMessage = _reflection.GeneratedProtocolMessageType('RequestMessage', (_message.Message,), { 'DESCRIPTOR' : _REQUESTMESSAGE, '__module__' : 'communicate_pb2' # @@protoc_insertion_point(class_scope:valet.RequestMessage) }) _sym_db.RegisterMessage(RequestMessage) ReplyMessage = _reflection.GeneratedProtocolMessageType('ReplyMessage', (_message.Message,), { 'DESCRIPTOR' : _REPLYMESSAGE, '__module__' : 'communicate_pb2' # @@protoc_insertion_point(class_scope:valet.ReplyMessage) }) _sym_db.RegisterMessage(ReplyMessage) _COMMUNICATE = _descriptor.ServiceDescriptor( name='Communicate', full_name='valet.Communicate', file=DESCRIPTOR, index=0, serialized_options=None, create_key=_descriptor._internal_create_key, serialized_start=112, serialized_end=178, methods=[ _descriptor.MethodDescriptor( name='Say', full_name='valet.Communicate.Say', index=0, containing_service=None, input_type=_REQUESTMESSAGE, output_type=_REPLYMESSAGE, serialized_options=None, create_key=_descriptor._internal_create_key, ), ]) _sym_db.RegisterServiceDescriptor(_COMMUNICATE) DESCRIPTOR.services_by_name['Communicate'] = _COMMUNICATE # @@protoc_insertion_point(module_scope)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2980, 515, 416, 262, 8435, 11876, 17050, 13, 220, 8410, 5626, 48483, 0, 198, 2, 2723, 25, 10996, 13, 1676, 1462, 198, 37811, 8645, 515, 8435, 11876, 2438, 526, 15931, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 43087, 355, 4808, 20147, 1968, 273, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 3275, 355, 4808, 20500, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 14580, 355, 4808, 5420, 1564, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 6194, 62, 48806, 355, 4808, 1837, 23650, 62, 48806, 198, 2, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 320, 3742, 8, 198, 198, 62, 37047, 62, 9945, 796, 4808, 1837, 23650, 62, 48806, 13, 19463, 3419, 628, 628, 198, 30910, 36584, 32961, 796, 4808, 20147, 1968, 273, 13, 8979, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 10709, 5344, 13, 1676, 1462, 3256, 198, 220, 5301, 11639, 2100, 316, 3256, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 11389, 1143, 62, 40842, 28, 65, 6, 59, 77, 59, 87, 1157, 59, 87, 5066, 2002, 403, 5344, 13, 1676, 1462, 59, 87, 1065, 59, 87, 2713, 2100, 316, 7879, 0, 59, 77, 59, 87, 15, 68, 18453, 12837, 59, 87, 1065, 59, 87, 15, 69, 59, 77, 59, 87, 2998, 20500, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 83, 7879, 14, 59, 77, 59, 87, 15, 66, 36875, 12837, 59, 87, 1065, 59, 87, 15, 68, 59, 77, 59, 87, 3312, 13376, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 15, 69, 59, 77, 59, 87, 2998, 20500, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 83, 17, 33, 59, 77, 59, 87, 15, 65, 59, 87, 3559, 2002, 403, 5344, 59, 87, 1065, 59, 87, 2091, 59, 77, 59, 87, 3070, 25515, 59, 87, 1065, 59, 87, 1314, 13, 2100, 316, 13, 18453, 12837, 59, 87, 16, 64, 59, 87, 1485, 13, 2100, 316, 13, 36875, 12837, 7879, 59, 87, 405, 59, 87, 5237, 59, 87, 3312, 1676, 1462, 18, 6, 198, 8, 628, 628, 198, 62, 2200, 35780, 44, 1546, 4090, 8264, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 18453, 12837, 3256, 198, 220, 1336, 62, 3672, 11639, 2100, 316, 13, 18453, 12837, 3256, 198, 220, 29472, 28, 14202, 11, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 7268, 62, 4906, 28, 14202, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 20500, 3256, 1336, 62, 3672, 11639, 2100, 316, 13, 18453, 12837, 13, 20500, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 16, 11, 2099, 28, 24, 11, 269, 381, 62, 4906, 28, 24, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 65, 1, 1911, 12501, 1098, 10786, 40477, 12, 23, 33809, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 16589, 198, 220, 18366, 41888, 198, 220, 16589, 198, 220, 28376, 62, 19199, 41888, 4357, 198, 220, 33829, 62, 19199, 41888, 198, 220, 16589, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 318, 62, 2302, 437, 540, 28, 25101, 11, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 7552, 62, 81, 6231, 41888, 4357, 198, 220, 530, 1659, 82, 41888, 198, 220, 16589, 198, 220, 11389, 1143, 62, 9688, 28, 2078, 11, 198, 220, 11389, 1143, 62, 437, 28, 5333, 11, 198, 8, 628, 198, 62, 2200, 6489, 56, 44, 1546, 4090, 8264, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 36875, 12837, 3256, 198, 220, 1336, 62, 3672, 11639, 2100, 316, 13, 36875, 12837, 3256, 198, 220, 29472, 28, 14202, 11, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 7268, 62, 4906, 28, 14202, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 13376, 3256, 1336, 62, 3672, 11639, 2100, 316, 13, 36875, 12837, 13, 13376, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 16, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 20500, 3256, 1336, 62, 3672, 11639, 2100, 316, 13, 36875, 12837, 13, 20500, 3256, 6376, 28, 16, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 11, 2099, 28, 24, 11, 269, 381, 62, 4906, 28, 24, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 65, 1, 1911, 12501, 1098, 10786, 40477, 12, 23, 33809, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 16589, 198, 220, 18366, 41888, 198, 220, 16589, 198, 220, 28376, 62, 19199, 41888, 4357, 198, 220, 33829, 62, 19199, 41888, 198, 220, 16589, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 318, 62, 2302, 437, 540, 28, 25101, 11, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 7552, 62, 81, 6231, 41888, 4357, 198, 220, 530, 1659, 82, 41888, 198, 220, 16589, 198, 220, 11389, 1143, 62, 9688, 28, 5066, 11, 198, 220, 11389, 1143, 62, 437, 28, 11442, 11, 198, 8, 198, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 18453, 12837, 20520, 796, 4808, 2200, 35780, 44, 1546, 4090, 8264, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 36875, 12837, 20520, 796, 4808, 2200, 6489, 56, 44, 1546, 4090, 8264, 198, 62, 37047, 62, 9945, 13, 38804, 8979, 24564, 1968, 273, 7, 30910, 36584, 32961, 8, 198, 198, 18453, 12837, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 18453, 12837, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 2200, 35780, 44, 1546, 4090, 8264, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 10709, 5344, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 2100, 316, 13, 18453, 12837, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 18453, 12837, 8, 198, 198, 36875, 12837, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 36875, 12837, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 2200, 6489, 56, 44, 1546, 4090, 8264, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 10709, 5344, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 2100, 316, 13, 36875, 12837, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 36875, 12837, 8, 628, 198, 198, 62, 9858, 44, 4944, 2149, 6158, 796, 4808, 20147, 1968, 273, 13, 16177, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 30813, 5344, 3256, 198, 220, 1336, 62, 3672, 11639, 2100, 316, 13, 30813, 5344, 3256, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 6376, 28, 15, 11, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 11389, 1143, 62, 9688, 28, 14686, 11, 198, 220, 11389, 1143, 62, 437, 28, 23188, 11, 198, 220, 5050, 41888, 198, 220, 4808, 20147, 1968, 273, 13, 17410, 24564, 1968, 273, 7, 198, 220, 220, 220, 1438, 11639, 25515, 3256, 198, 220, 220, 220, 1336, 62, 3672, 11639, 2100, 316, 13, 30813, 5344, 13, 25515, 3256, 198, 220, 220, 220, 6376, 28, 15, 11, 198, 220, 220, 220, 7268, 62, 15271, 28, 14202, 11, 198, 220, 220, 220, 5128, 62, 4906, 28, 62, 2200, 35780, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 5072, 62, 4906, 28, 62, 2200, 6489, 56, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 10612, 198, 12962, 198, 62, 37047, 62, 9945, 13, 38804, 16177, 24564, 1968, 273, 28264, 9858, 44, 4944, 2149, 6158, 8, 198, 198, 30910, 36584, 32961, 13, 30416, 62, 1525, 62, 3672, 17816, 30813, 5344, 20520, 796, 4808, 9858, 44, 4944, 2149, 6158, 198, 198, 2, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 21412, 62, 29982, 8, 198 ]
2.537507
1,773
import asyncio import json import os import aiofiles import discord with open('config.json') as f: config = json.load(f) if __name__ == '__main__': main()
[ 11748, 30351, 952, 198, 11748, 33918, 198, 11748, 28686, 198, 198, 11748, 257, 952, 16624, 198, 11748, 36446, 198, 198, 4480, 1280, 10786, 11250, 13, 17752, 11537, 355, 277, 25, 198, 220, 220, 220, 4566, 796, 33918, 13, 2220, 7, 69, 8, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.698413
63
""" Useful functions for a PDA """ from .state import State from .symbol import Symbol from .stack_symbol import StackSymbol from .epsilon import Epsilon class PDAObjectCreator: """ A Object in a PDA """ def to_state(self, given): """ Convert to a state """ if isinstance(given, State): return _get_object_from_known(given, self._state_creator) return _get_object_from_raw(given, self._state_creator, State) def to_symbol(self, given): """ Convert to a symbol """ if isinstance(given, Symbol): return _get_object_from_known(given, self._symbol_creator) if given == "epsilon": return Epsilon() return _get_object_from_raw(given, self._symbol_creator, Symbol) def to_stack_symbol(self, given): """ Convert to a stack symbol """ if isinstance(given, StackSymbol): return _get_object_from_known(given, self._stack_symbol_creator) if isinstance(given, Epsilon): return given return _get_object_from_raw(given, self._stack_symbol_creator, StackSymbol)
[ 37811, 49511, 5499, 329, 257, 350, 5631, 37227, 198, 198, 6738, 764, 5219, 1330, 1812, 198, 6738, 764, 1837, 23650, 1330, 38357, 198, 6738, 764, 25558, 62, 1837, 23650, 1330, 23881, 13940, 23650, 198, 6738, 764, 538, 18217, 261, 1330, 43427, 33576, 628, 198, 4871, 350, 5631, 10267, 16719, 273, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 9515, 287, 257, 350, 5631, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 284, 62, 5219, 7, 944, 11, 1813, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38240, 284, 257, 1181, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 35569, 11, 1812, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 4002, 7, 35569, 11, 2116, 13557, 5219, 62, 45382, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 1831, 7, 35569, 11, 2116, 13557, 5219, 62, 45382, 11, 1812, 8, 628, 220, 220, 220, 825, 284, 62, 1837, 23650, 7, 944, 11, 1813, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38240, 284, 257, 6194, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 35569, 11, 38357, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 4002, 7, 35569, 11, 2116, 13557, 1837, 23650, 62, 45382, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1813, 6624, 366, 538, 18217, 261, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 43427, 33576, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 1831, 7, 35569, 11, 2116, 13557, 1837, 23650, 62, 45382, 11, 38357, 8, 628, 220, 220, 220, 825, 284, 62, 25558, 62, 1837, 23650, 7, 944, 11, 1813, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38240, 284, 257, 8931, 6194, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 35569, 11, 23881, 13940, 23650, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 4002, 7, 35569, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 25558, 62, 1837, 23650, 62, 45382, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 35569, 11, 43427, 33576, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1813, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 1136, 62, 15252, 62, 6738, 62, 1831, 7, 35569, 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, 2116, 13557, 25558, 62, 1837, 23650, 62, 45382, 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, 23881, 13940, 23650, 8, 628, 198 ]
2.175439
570
infile = open("input.txt") T =int(infile.readline().strip()) for t in range(1, T+1): solve(t, infile.readline().split(' '))
[ 198, 259, 7753, 796, 1280, 7203, 15414, 13, 14116, 4943, 198, 51, 796, 600, 7, 259, 7753, 13, 961, 1370, 22446, 36311, 28955, 198, 198, 1640, 256, 287, 2837, 7, 16, 11, 309, 10, 16, 2599, 198, 197, 82, 6442, 7, 83, 11, 1167, 576, 13, 961, 1370, 22446, 35312, 10786, 705, 4008, 628 ]
2.37037
54
# -*- coding: utf-8 -*- """ File to test Isis performance """ __created__ = "2007-05-15" __updated__ = "2008-05-15" __author__ = "Rodrigo Senra <[email protected]>" # Setup test environment from timeit import Timer from pyisis.tests.config_tests import test_data, Lyer, initialize config = initialize() setup=""" from pyisis.files import MasterFile from pyisis.views import list_all from os.path import join mf = MasterFile(join("..","sample","cds.mst")) """ if __name__=="__main__": list_all()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 37811, 198, 8979, 284, 1332, 16530, 2854, 198, 37811, 198, 198, 834, 25598, 834, 796, 366, 12726, 12, 2713, 12, 1314, 1, 198, 834, 43162, 834, 796, 366, 11528, 12, 2713, 12, 1314, 1, 198, 834, 9800, 834, 220, 796, 366, 27917, 4359, 78, 2311, 430, 1279, 3808, 268, 430, 31, 330, 76, 13, 2398, 24618, 198, 198, 2, 31122, 1332, 2858, 198, 6738, 640, 270, 1330, 5045, 263, 198, 6738, 12972, 271, 271, 13, 41989, 13, 11250, 62, 41989, 1330, 1332, 62, 7890, 11, 9334, 263, 11, 41216, 198, 11250, 796, 41216, 3419, 198, 198, 40406, 2625, 15931, 198, 6738, 12972, 271, 271, 13, 16624, 1330, 5599, 8979, 198, 6738, 12972, 271, 271, 13, 33571, 1330, 1351, 62, 439, 198, 6738, 28686, 13, 6978, 1330, 4654, 198, 76, 69, 796, 5599, 8979, 7, 22179, 7203, 492, 2430, 39873, 2430, 66, 9310, 13, 76, 301, 48774, 198, 37811, 198, 198, 361, 11593, 3672, 834, 855, 1, 834, 12417, 834, 1298, 198, 220, 220, 220, 1351, 62, 439, 3419 ]
2.737705
183
from typing import Dict, List import numpy as np from keras import utils from keras.engine import Layer from keras.layers import Embedding from keras.models import Sequential from keras.preprocessing import text, sequence from unify_eval.model.mixins.classification import DeepModel, Classifier from unify_eval.model.types import Tensor from unify_eval.utils.label_mapper import LabelMapper class KerasModel(Classifier): """ Wrapper around a keras classifier model. """ def __init__(self, tokenizer: text.Tokenizer, keras_model: Sequential, label_mapper: LabelMapper, maxlen: int, text_kw: str = "texts", label_kw: str = "labels"): """ :param tokenizer: tokenizer to use :param keras_model: actual keras model :param label_mapper: label mapper instance that maps label indices to label names and vice versa :param maxlen: maximum input length (remainder is ignored) :param text_kw: keyword by which to extract text input :param label_kw: keyword by which to extract label input """ super().__init__(label_mapper) self.keras_model = keras_model self.tokenizer = tokenizer self.maxlen = maxlen self.text_kw = text_kw self.label_kw = label_kw self.loss = {} def preprocess_texts(self, texts) -> np.ndarray: """ map texts to padded index sequences """ sequences = self.tokenizer.texts_to_sequences([str(text) for text in texts]) x = sequence.pad_sequences(sequences=sequences, maxlen=self.maxlen) return x def preprocess_labels(self, labels) -> np.ndarray: """ map labels to onehot indices """ y = self.label_mapper.map_to_indices(labels) y = utils.to_categorical(y, self.label_mapper.n_labels) return y @classmethod @staticmethod def pretrained_keras_model( tokenizer: text.Tokenizer, keras_layers: List[Layer], label_mapper: LabelMapper, embedding_dim: int, embedding_index: Dict[str, np.ndarray], maxlen: int, text_kw: str = "texts", label_kw: str = "labels") -> "KerasModel": """ :param tokenizer: tokenizer to use :param keras_layers: list of layers to concatenate into single model :param label_mapper: label mapper instance that maps label indices to label names and vice versa :param embedding_dim: embedding dimensionality :param embedding_index: map from token to embedding :param maxlen: maximum input length (remainder is ignored) :param text_kw: keyword by which to extract text input :param label_kw: keyword by which to extract label input """ embedding_matrix = np.zeros((len(tokenizer.word_index) + 1, embedding_dim)) for word, i in tokenizer.word_index.items(): embedding_vector = embedding_index.get(word) if embedding_vector is not None: # words not found in embedding index will be all-zeros. embedding_matrix[i] = embedding_vector embedding_layer = Embedding(len(tokenizer.word_index) + 1, embedding_dim, weights=[embedding_matrix], input_length=maxlen, trainable=False) keras_model = Sequential([ embedding_layer, *keras_layers]) keras_model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['categorical_crossentropy']) return KerasModel(tokenizer=tokenizer, keras_model=keras_model, label_mapper=label_mapper, maxlen=maxlen, text_kw=text_kw, label_kw=label_kw)
[ 6738, 19720, 1330, 360, 713, 11, 7343, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 41927, 292, 1330, 3384, 4487, 198, 6738, 41927, 292, 13, 18392, 1330, 34398, 198, 6738, 41927, 292, 13, 75, 6962, 1330, 13302, 6048, 278, 198, 6738, 41927, 292, 13, 27530, 1330, 24604, 1843, 198, 6738, 41927, 292, 13, 3866, 36948, 1330, 2420, 11, 8379, 198, 198, 6738, 555, 1958, 62, 18206, 13, 19849, 13, 19816, 1040, 13, 4871, 2649, 1330, 10766, 17633, 11, 5016, 7483, 198, 6738, 555, 1958, 62, 18206, 13, 19849, 13, 19199, 1330, 309, 22854, 198, 6738, 555, 1958, 62, 18206, 13, 26791, 13, 18242, 62, 76, 11463, 1330, 36052, 44, 11463, 628, 198, 4871, 17337, 292, 17633, 7, 9487, 7483, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27323, 2848, 1088, 257, 41927, 292, 1398, 7483, 2746, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 7509, 25, 2420, 13, 30642, 7509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41927, 292, 62, 19849, 25, 24604, 1843, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 76, 11463, 25, 36052, 44, 11463, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 11925, 25, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 46265, 25, 965, 796, 366, 5239, 82, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 46265, 25, 965, 796, 366, 23912, 1424, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11241, 7509, 25, 11241, 7509, 284, 779, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 41927, 292, 62, 19849, 25, 4036, 41927, 292, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6167, 62, 76, 11463, 25, 6167, 285, 11463, 4554, 326, 8739, 6167, 36525, 284, 6167, 3891, 290, 7927, 25470, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3509, 11925, 25, 5415, 5128, 4129, 357, 2787, 391, 1082, 318, 9514, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2420, 62, 46265, 25, 21179, 416, 543, 284, 7925, 2420, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6167, 62, 46265, 25, 21179, 416, 543, 284, 7925, 6167, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 22446, 834, 15003, 834, 7, 18242, 62, 76, 11463, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6122, 292, 62, 19849, 796, 41927, 292, 62, 19849, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30001, 7509, 796, 11241, 7509, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9806, 11925, 796, 3509, 11925, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5239, 62, 46265, 796, 2420, 62, 46265, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 18242, 62, 46265, 796, 6167, 62, 46265, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22462, 796, 23884, 628, 220, 220, 220, 825, 662, 14681, 62, 5239, 82, 7, 944, 11, 13399, 8, 4613, 45941, 13, 358, 18747, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3975, 13399, 284, 44582, 6376, 16311, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 16311, 796, 2116, 13, 30001, 7509, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 26933, 2536, 7, 5239, 8, 329, 2420, 287, 13399, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 8379, 13, 15636, 62, 3107, 3007, 7, 3107, 3007, 28, 3107, 3007, 11, 3509, 11925, 28, 944, 13, 9806, 11925, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2124, 628, 220, 220, 220, 825, 662, 14681, 62, 23912, 1424, 7, 944, 11, 14722, 8, 4613, 45941, 13, 358, 18747, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3975, 14722, 284, 530, 8940, 36525, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 2116, 13, 18242, 62, 76, 11463, 13, 8899, 62, 1462, 62, 521, 1063, 7, 23912, 1424, 8, 628, 220, 220, 220, 220, 220, 220, 220, 331, 796, 3384, 4487, 13, 1462, 62, 66, 2397, 12409, 7, 88, 11, 2116, 13, 18242, 62, 76, 11463, 13, 77, 62, 23912, 1424, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 331, 628, 220, 220, 220, 2488, 4871, 24396, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 825, 2181, 13363, 62, 6122, 292, 62, 19849, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 7509, 25, 2420, 13, 30642, 7509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41927, 292, 62, 75, 6962, 25, 7343, 58, 49925, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 76, 11463, 25, 36052, 44, 11463, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 27740, 25, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 9630, 25, 360, 713, 58, 2536, 11, 45941, 13, 358, 18747, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 11925, 25, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 46265, 25, 965, 796, 366, 5239, 82, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 46265, 25, 965, 796, 366, 23912, 1424, 4943, 4613, 366, 42, 263, 292, 17633, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11241, 7509, 25, 11241, 7509, 284, 779, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 41927, 292, 62, 75, 6962, 25, 1351, 286, 11685, 284, 1673, 36686, 378, 656, 2060, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6167, 62, 76, 11463, 25, 6167, 285, 11463, 4554, 326, 8739, 6167, 36525, 284, 6167, 3891, 290, 7927, 25470, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11525, 12083, 62, 27740, 25, 11525, 12083, 15793, 1483, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11525, 12083, 62, 9630, 25, 3975, 422, 11241, 284, 11525, 12083, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3509, 11925, 25, 5415, 5128, 4129, 357, 2787, 391, 1082, 318, 9514, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2420, 62, 46265, 25, 21179, 416, 543, 284, 7925, 2420, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6167, 62, 46265, 25, 21179, 416, 543, 284, 7925, 6167, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 6759, 8609, 796, 45941, 13, 9107, 418, 19510, 11925, 7, 30001, 7509, 13, 4775, 62, 9630, 8, 1343, 352, 11, 11525, 12083, 62, 27740, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1573, 11, 1312, 287, 11241, 7509, 13, 4775, 62, 9630, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 31364, 796, 11525, 12083, 62, 9630, 13, 1136, 7, 4775, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11525, 12083, 62, 31364, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2456, 407, 1043, 287, 11525, 12083, 6376, 481, 307, 477, 12, 9107, 418, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 6759, 8609, 58, 72, 60, 796, 11525, 12083, 62, 31364, 628, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 29289, 796, 13302, 6048, 278, 7, 11925, 7, 30001, 7509, 13, 4775, 62, 9630, 8, 1343, 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, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 27740, 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, 19590, 41888, 20521, 12083, 62, 6759, 8609, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 13664, 28, 9806, 11925, 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, 4512, 540, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 41927, 292, 62, 19849, 796, 24604, 1843, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11525, 12083, 62, 29289, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 6122, 292, 62, 75, 6962, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 41927, 292, 62, 19849, 13, 5589, 576, 7, 22462, 11639, 66, 2397, 12409, 62, 19692, 298, 28338, 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, 6436, 7509, 11639, 324, 321, 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, 20731, 28, 17816, 66, 2397, 12409, 62, 19692, 298, 28338, 6, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 17337, 292, 17633, 7, 30001, 7509, 28, 30001, 7509, 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, 41927, 292, 62, 19849, 28, 6122, 292, 62, 19849, 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, 6167, 62, 76, 11463, 28, 18242, 62, 76, 11463, 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, 3509, 11925, 28, 9806, 11925, 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, 2420, 62, 46265, 28, 5239, 62, 46265, 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, 6167, 62, 46265, 28, 18242, 62, 46265, 8, 198 ]
2.129216
1,927
#!/usr/bin/env python3 ################################################################ # Check for 'myfile.csv' in a certain directory # Since this has more than two lines, it will output the files contents # You should also try renaming to 'myfile3.csv' and re-running to ensure it catches it ################################################################ class Error(Exception): ''' Base class for other exceptions''' pass # here we define our own error try: filename = 'C:\\_gwill\\repo-home\\h1python\\learning\\base-language\\custom-errors\\myfile2.csv' #Use `with open(filename, encoding='utf-8') as thefile:` if the file has special chars with open(filename) as thefile: #if the file has less than 2 lines, throw our own error file_content = thefile.readlines() # At this point, file_content should contain a list like ['FirstName,LastName\n', 'Darth,Vader'] line_count = len(file_content) if line_count < 2: raise EmptyFileError except FileNotFoundError: # catch if file doesn't exist print("there is no myfile2.csv") except EmptyFileError: # catch our custom error print('your file has less than two lines, exiting...') thefile.close() except Exception as e: # catch any other exception print('Failed: Exception was ' + str(e)) thefile.close() else: # yay! we made it without errors, let's read the file! # since we did readlines(), it is a list object so we loop through and print # If we instead did read() then you would just print for one_line in file_content: # and end='' in order for there not to be line breaks for each line #print(one_line) print(one_line, end='') thefile.close() #print('Success!')
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 29113, 29113, 198, 2, 6822, 329, 705, 1820, 7753, 13, 40664, 6, 287, 257, 1728, 8619, 198, 2, 4619, 428, 468, 517, 621, 734, 3951, 11, 340, 481, 5072, 262, 3696, 10154, 198, 198, 2, 921, 815, 635, 1949, 8851, 3723, 284, 705, 1820, 7753, 18, 13, 40664, 6, 290, 302, 12, 20270, 284, 4155, 340, 17591, 340, 198, 29113, 29113, 198, 198, 4871, 13047, 7, 16922, 2599, 198, 220, 220, 220, 705, 7061, 7308, 1398, 329, 584, 13269, 7061, 6, 198, 220, 220, 220, 1208, 198, 198, 2, 994, 356, 8160, 674, 898, 4049, 198, 198, 28311, 25, 198, 220, 220, 220, 29472, 796, 705, 34, 25, 6852, 62, 70, 10594, 6852, 260, 7501, 12, 11195, 6852, 71, 16, 29412, 6852, 40684, 6852, 8692, 12, 16129, 6852, 23144, 12, 48277, 6852, 1820, 7753, 17, 13, 40664, 6, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 11041, 4600, 4480, 1280, 7, 34345, 11, 21004, 11639, 40477, 12, 23, 11537, 355, 262, 7753, 25, 63, 611, 262, 2393, 468, 2041, 34534, 198, 220, 220, 220, 351, 1280, 7, 34345, 8, 355, 262, 7753, 25, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 262, 2393, 468, 1342, 621, 362, 3951, 11, 3714, 674, 898, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 62, 11299, 796, 262, 7753, 13, 961, 6615, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1629, 428, 966, 11, 2393, 62, 11299, 815, 3994, 257, 1351, 588, 37250, 5962, 5376, 11, 5956, 5376, 59, 77, 3256, 705, 35, 11999, 11, 53, 5067, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 62, 9127, 796, 18896, 7, 7753, 62, 11299, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 62, 9127, 1279, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 33523, 8979, 12331, 198, 16341, 9220, 3673, 21077, 12331, 25, 198, 220, 220, 220, 1303, 4929, 611, 2393, 1595, 470, 2152, 198, 220, 220, 220, 3601, 7203, 8117, 318, 645, 616, 7753, 17, 13, 40664, 4943, 198, 16341, 33523, 8979, 12331, 25, 198, 220, 220, 220, 1303, 4929, 674, 2183, 4049, 198, 220, 220, 220, 3601, 10786, 14108, 2393, 468, 1342, 621, 734, 3951, 11, 33895, 986, 11537, 198, 220, 220, 220, 262, 7753, 13, 19836, 3419, 198, 16341, 35528, 355, 304, 25, 198, 220, 220, 220, 1303, 4929, 597, 584, 6631, 198, 220, 220, 220, 3601, 10786, 37, 6255, 25, 35528, 373, 705, 1343, 965, 7, 68, 4008, 198, 220, 220, 220, 262, 7753, 13, 19836, 3419, 198, 17772, 25, 198, 220, 220, 220, 1303, 331, 323, 0, 356, 925, 340, 1231, 8563, 11, 1309, 338, 1100, 262, 2393, 0, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 1201, 356, 750, 1100, 6615, 22784, 340, 318, 257, 1351, 2134, 523, 356, 9052, 832, 290, 3601, 198, 220, 220, 220, 1303, 1002, 356, 2427, 750, 1100, 3419, 788, 345, 561, 655, 3601, 198, 220, 220, 220, 329, 530, 62, 1370, 287, 2393, 62, 11299, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 886, 28, 7061, 287, 1502, 329, 612, 407, 284, 307, 1627, 9457, 329, 1123, 1627, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 505, 62, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 505, 62, 1370, 11, 886, 28, 7061, 8, 198, 220, 220, 220, 262, 7753, 13, 19836, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 4798, 10786, 33244, 0, 11537, 198 ]
2.996661
599
## The Drug Interaction Knowledge Base (DIKB) is (C) Copyright 2005 by ## Richard Boyce ## Original Authors: ## Richard Boyce ## This library is free software; you can redistribute it and/or ## modify it under the terms of the GNU Library General Public ## License as published by the Free Software Foundation; either ## version 2 of the License, or (at your option) any later version. ## This library is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## Library General Public License for more details. ## You should have received a copy of the GNU Library General Public ## License along with this library; if not, write to the ## Free Software Foundation, Inc., 59 Temple Place - Suite 330, ## Boston, MA 02111-1307, USA. ## ----------------------------------------------------------------- ## File: DIKB_Utils.py ###Functions for editing assertions in the KBs from DIKB import * from DrugModel import * from EvidenceModel import * # #### a function for adding bioavailability - TODO: create general evidence adding/editing functions # def addBioavail(drg,et,pntr, quote, val, revwr, ev_base, ev_pickle_path, dikb): # """ add evidence for the bioavailability of a drug. # in: drg - a string specifying an drug in the 'dikb' knowledge-base # in: et - a string specifying the 'evidence_type' of the evidence # in: pntr - a string specifying the name or pubmed id of the evidence # in: quote - a relevant quote from the document # in: val - a float value for the bioavailability of the drug # in: revwr - a string stating the reviewer of this evidence # in: ev_base - an EvidenceBase drgect to store this evidence in # in: ev_pickle_path - a string path to the pickle file for the evidence base # in: dikb - a DIKB drgect # out: 1 if error, 0 otherwise""" # if not dikb.drgects.has_key(drg): # print(" ".join(["addBioavail - Error: drgect name ", drg, "does not exist in dikb; spelling correct?. EXITING! Values - ", # "drug: ", drg, "evidence pointer: ", pntr, "evidence type: ", et])) # return 1 # a1 = Assertion(drg,'bioavailability','continuous_value') # e1 = EvidenceContinousVal() # e1.doc_pointer = pntr # e1.quote = quote # e1.evidence_type.putEntry(et) # e1.value = val # e1.reviewer.putEntry(revwr) # a1.evidence_for.append(e1) # lst_len = len(dikb.drgects[drg].bioavailability.evidence) # ev_base.addAssertion(a1) # if len(dikb.drgects[drg].bioavailability.evidence) == lst_len: # print(" ".join(["addBioavail - Error: evidence for bioavailability did not get assigned. Values - ", # "drug: ", drg, "evidence pointer: ", pntr, "evidence type: ", et])) # try: # ev.pickleKB(ev_pickle_path) # print(" ".join(["addBioavail - Message: evidence for bioavailability added and stored in pickle. Values - ", # "drug: ", drg, "evidence pointer: ", pntr, "evidence type: ", et])) # except IOError, err: # print(" ".join(["addBioavail - Error: evidence for bioavailability added but NOT STORED in pickle. Values - ", # "drug: ", drg, "evidence pointer: ", pntr, "evidence type: ", et])) # return 0
[ 2235, 383, 11095, 4225, 2673, 20414, 7308, 357, 17931, 22764, 8, 318, 357, 34, 8, 15069, 5075, 416, 198, 2235, 6219, 6387, 344, 198, 198, 2235, 13745, 46665, 25, 198, 2235, 220, 220, 6219, 6387, 344, 198, 198, 2235, 770, 5888, 318, 1479, 3788, 26, 345, 460, 17678, 4163, 340, 290, 14, 273, 198, 2235, 13096, 340, 739, 262, 2846, 286, 262, 22961, 10074, 3611, 5094, 198, 2235, 13789, 355, 3199, 416, 262, 3232, 10442, 5693, 26, 2035, 198, 2235, 2196, 362, 286, 262, 13789, 11, 393, 357, 265, 534, 3038, 8, 597, 1568, 2196, 13, 198, 198, 2235, 770, 5888, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 198, 2235, 475, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 198, 2235, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 262, 22961, 198, 2235, 10074, 3611, 5094, 13789, 329, 517, 3307, 13, 198, 198, 2235, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 10074, 3611, 5094, 198, 2235, 13789, 1863, 351, 428, 5888, 26, 611, 407, 11, 3551, 284, 262, 198, 2235, 3232, 10442, 5693, 11, 3457, 1539, 7863, 10857, 8474, 532, 26264, 25508, 11, 198, 2235, 6182, 11, 8779, 7816, 16243, 12, 12952, 22, 11, 4916, 13, 198, 198, 2235, 16529, 12, 198, 2235, 9220, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14766, 22764, 62, 18274, 4487, 13, 9078, 198, 198, 21017, 24629, 2733, 329, 12857, 29965, 287, 262, 14204, 82, 198, 6738, 14766, 22764, 1330, 1635, 198, 6738, 11095, 17633, 1330, 1635, 198, 6738, 21259, 17633, 1330, 1635, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 1303, 21017, 257, 2163, 329, 4375, 13401, 47274, 532, 16926, 46, 25, 2251, 2276, 2370, 4375, 14, 276, 1780, 5499, 198, 2, 825, 751, 42787, 615, 603, 7, 7109, 70, 11, 316, 11, 79, 429, 81, 11, 9577, 11, 1188, 11, 2710, 18351, 11, 819, 62, 8692, 11, 819, 62, 27729, 293, 62, 6978, 11, 288, 1134, 65, 2599, 198, 2, 220, 220, 220, 220, 37227, 751, 2370, 329, 262, 13401, 47274, 286, 257, 2563, 13, 198, 2, 220, 220, 220, 220, 287, 25, 1553, 70, 532, 220, 257, 4731, 31577, 281, 2563, 287, 262, 705, 67, 1134, 65, 6, 3725, 12, 8692, 198, 2, 220, 220, 220, 220, 287, 25, 2123, 532, 220, 257, 4731, 31577, 262, 705, 46817, 62, 4906, 6, 286, 262, 2370, 198, 2, 220, 220, 220, 220, 287, 25, 279, 429, 81, 532, 220, 257, 4731, 31577, 262, 1438, 393, 2240, 1150, 4686, 286, 262, 2370, 198, 2, 220, 220, 220, 220, 287, 25, 9577, 532, 257, 5981, 9577, 422, 262, 3188, 220, 198, 2, 220, 220, 220, 220, 287, 25, 1188, 532, 257, 12178, 1988, 329, 262, 13401, 47274, 286, 262, 2563, 198, 2, 220, 220, 220, 220, 287, 25, 2710, 18351, 532, 257, 4731, 12316, 262, 37823, 286, 428, 2370, 198, 2, 220, 220, 220, 220, 287, 25, 819, 62, 8692, 532, 281, 21259, 14881, 1553, 469, 310, 284, 3650, 428, 2370, 287, 198, 2, 220, 220, 220, 220, 287, 25, 819, 62, 27729, 293, 62, 6978, 532, 257, 4731, 3108, 284, 262, 2298, 293, 2393, 329, 262, 2370, 2779, 198, 2, 220, 220, 220, 220, 287, 25, 288, 1134, 65, 532, 257, 14766, 22764, 1553, 469, 310, 198, 198, 2, 220, 220, 220, 220, 503, 25, 352, 611, 4049, 11, 657, 4306, 37811, 198, 198, 2, 220, 220, 220, 220, 611, 407, 288, 1134, 65, 13, 7109, 469, 310, 82, 13, 10134, 62, 2539, 7, 7109, 70, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 27071, 22179, 7, 14692, 2860, 42787, 615, 603, 532, 13047, 25, 1553, 469, 310, 1438, 33172, 1553, 70, 11, 366, 22437, 407, 2152, 287, 288, 1134, 65, 26, 24993, 3376, 30, 13, 7788, 2043, 2751, 0, 27068, 532, 33172, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30349, 25, 33172, 1553, 70, 11, 366, 46817, 17562, 25, 33172, 279, 429, 81, 11, 366, 46817, 2099, 25, 33172, 2123, 60, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 352, 198, 198, 2, 220, 220, 220, 220, 257, 16, 796, 2195, 861, 295, 7, 7109, 70, 4032, 65, 952, 47274, 41707, 18487, 5623, 62, 8367, 11537, 198, 2, 220, 220, 220, 220, 304, 16, 796, 21259, 17875, 516, 7762, 3419, 198, 2, 220, 220, 220, 220, 304, 16, 13, 15390, 62, 29536, 796, 279, 429, 81, 198, 2, 220, 220, 220, 220, 304, 16, 13, 22708, 796, 9577, 198, 2, 220, 220, 220, 220, 304, 16, 13, 46817, 62, 4906, 13, 1996, 30150, 7, 316, 8, 198, 2, 220, 220, 220, 220, 304, 16, 13, 8367, 796, 1188, 198, 2, 220, 220, 220, 220, 304, 16, 13, 19023, 263, 13, 1996, 30150, 7, 18218, 18351, 8, 198, 2, 220, 220, 220, 220, 257, 16, 13, 46817, 62, 1640, 13, 33295, 7, 68, 16, 8, 198, 198, 2, 220, 220, 220, 220, 300, 301, 62, 11925, 796, 18896, 7, 67, 1134, 65, 13, 7109, 469, 310, 82, 58, 7109, 70, 4083, 65, 952, 47274, 13, 46817, 8, 198, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 819, 62, 8692, 13, 2860, 8021, 861, 295, 7, 64, 16, 8, 198, 198, 2, 220, 220, 220, 220, 611, 18896, 7, 67, 1134, 65, 13, 7109, 469, 310, 82, 58, 7109, 70, 4083, 65, 952, 47274, 13, 46817, 8, 6624, 300, 301, 62, 11925, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 27071, 22179, 7, 14692, 2860, 42787, 615, 603, 532, 13047, 25, 2370, 329, 13401, 47274, 750, 407, 651, 8686, 13, 27068, 532, 33172, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30349, 25, 33172, 1553, 70, 11, 366, 46817, 17562, 25, 33172, 279, 429, 81, 11, 366, 46817, 2099, 25, 33172, 2123, 60, 4008, 198, 198, 2, 220, 220, 220, 220, 1949, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 819, 13, 27729, 293, 22764, 7, 1990, 62, 27729, 293, 62, 6978, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 27071, 22179, 7, 14692, 2860, 42787, 615, 603, 532, 16000, 25, 2370, 329, 13401, 47274, 220, 2087, 290, 8574, 287, 2298, 293, 13, 27068, 532, 33172, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30349, 25, 33172, 1553, 70, 11, 366, 46817, 17562, 25, 33172, 279, 429, 81, 11, 366, 46817, 2099, 25, 33172, 2123, 60, 4008, 198, 2, 220, 220, 220, 220, 2845, 24418, 12331, 11, 11454, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 27071, 22179, 7, 14692, 2860, 42787, 615, 603, 532, 13047, 25, 2370, 329, 13401, 47274, 2087, 475, 5626, 3563, 32023, 287, 2298, 293, 13, 27068, 532, 33172, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30349, 25, 33172, 1553, 70, 11, 366, 46817, 17562, 25, 33172, 279, 429, 81, 11, 366, 46817, 2099, 25, 33172, 2123, 60, 4008, 198, 2, 220, 220, 220, 220, 1441, 657, 198 ]
2.738818
1,252
import pytest from tartiflette import Resolver, create_engine _SDL = """ type bobby { c: String } type boby { b: bobby! } type bob { a: boby } type Query { string1: String! stringList: [String] stringListNonNull: [String]! nonNullStringList: [String!] nonNullStringListNonNull: [String!]! anObject: bob } """ @Resolver("Query.string1", schema_name="test_empty_values") @Resolver("Query.stringList", schema_name="test_empty_values") @Resolver("Query.stringListNonNull", schema_name="test_empty_values") @Resolver("Query.nonNullStringList", schema_name="test_empty_values") @Resolver("Query.nonNullStringListNonNull", schema_name="test_empty_values") @Resolver("bobby.c", schema_name="test_empty_values") @Resolver("boby.b", schema_name="test_empty_values") @Resolver("Query.anObject", schema_name="test_empty_values") @Resolver("bob.a", schema_name="test_empty_values") @pytest.fixture(scope="module") @pytest.mark.parametrize( "query,expected", [ ( """ query { string1 }""", { "data": None, "errors": [ { "message": "Cannot return null for non-nullable field Query.string1.", "path": ["string1"], "locations": [{"column": 17, "line": 3}], } ], }, ), ( """ query { stringList } """, {"data": {"stringList": None}}, ), ( """ query { nonNullStringList } """, {"data": {"nonNullStringList": None}}, ), ( """ query { stringListNonNull } """, { "data": None, "errors": [ { "message": "Cannot return null for non-nullable field Query.stringListNonNull.", "path": ["stringListNonNull"], "locations": [{"line": 3, "column": 17}], } ], }, ), ( """ query { nonNullStringListNonNull } """, { "data": None, "errors": [ { "message": "Cannot return null for non-nullable field Query.nonNullStringListNonNull.", "path": ["nonNullStringListNonNull"], "locations": [{"line": 3, "column": 17}], } ], }, ), ( """ query { string1 stringList nonNullStringList stringListNonNull nonNullStringListNonNull }""", { "data": None, "errors": [ { "message": "Cannot return null for non-nullable field Query.string1.", "path": ["string1"], "locations": [{"line": 3, "column": 17}], }, { "message": "Cannot return null for non-nullable field Query.stringListNonNull.", "path": ["stringListNonNull"], "locations": [{"line": 6, "column": 17}], }, { "message": "Cannot return null for non-nullable field Query.nonNullStringListNonNull.", "path": ["nonNullStringListNonNull"], "locations": [{"line": 7, "column": 17}], }, ], }, ), ], ) @pytest.mark.asyncio @pytest.mark.asyncio
[ 11748, 12972, 9288, 198, 198, 6738, 35842, 361, 21348, 1330, 1874, 14375, 11, 2251, 62, 18392, 198, 198, 62, 10305, 43, 796, 37227, 198, 198, 4906, 275, 11369, 1391, 198, 220, 220, 220, 269, 25, 10903, 198, 92, 198, 198, 4906, 275, 26730, 1391, 198, 220, 220, 220, 275, 25, 275, 11369, 0, 198, 92, 198, 198, 4906, 29202, 1391, 198, 220, 220, 220, 257, 25, 275, 26730, 198, 92, 198, 198, 4906, 43301, 1391, 198, 220, 220, 220, 4731, 16, 25, 10903, 0, 198, 220, 220, 220, 4731, 8053, 25, 685, 10100, 60, 198, 220, 220, 220, 4731, 8053, 15419, 35067, 25, 685, 10100, 60, 0, 198, 220, 220, 220, 1729, 35067, 10100, 8053, 25, 685, 10100, 36463, 198, 220, 220, 220, 1729, 35067, 10100, 8053, 15419, 35067, 25, 685, 10100, 36463, 0, 198, 220, 220, 220, 281, 10267, 25, 29202, 198, 92, 198, 198, 37811, 628, 198, 31, 4965, 14375, 7203, 20746, 13, 8841, 16, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 20746, 13, 8841, 8053, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 20746, 13, 8841, 8053, 15419, 35067, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 20746, 13, 13159, 35067, 10100, 8053, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 20746, 13, 13159, 35067, 10100, 8053, 15419, 35067, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 65, 11369, 13, 66, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 65, 26730, 13, 65, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 628, 198, 31, 4965, 14375, 7203, 20746, 13, 272, 10267, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 198, 31, 4965, 14375, 7203, 65, 672, 13, 64, 1600, 32815, 62, 3672, 2625, 9288, 62, 28920, 62, 27160, 4943, 628, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 21412, 4943, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 366, 22766, 11, 40319, 1600, 198, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 15931, 1600, 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, 366, 7890, 1298, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48277, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 8841, 16, 33283, 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, 6978, 1298, 14631, 8841, 16, 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, 17946, 602, 1298, 685, 4895, 28665, 1298, 1596, 11, 366, 1370, 1298, 513, 92, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19779, 7890, 1298, 19779, 8841, 8053, 1298, 6045, 92, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 35067, 10100, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19779, 7890, 1298, 19779, 13159, 35067, 10100, 8053, 1298, 6045, 92, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 8053, 15419, 35067, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 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, 366, 7890, 1298, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48277, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 8841, 8053, 15419, 35067, 33283, 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, 6978, 1298, 14631, 8841, 8053, 15419, 35067, 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, 17946, 602, 1298, 685, 4895, 1370, 1298, 513, 11, 366, 28665, 1298, 1596, 92, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 35067, 10100, 8053, 15419, 35067, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 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, 366, 7890, 1298, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48277, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 13159, 35067, 10100, 8053, 15419, 35067, 33283, 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, 6978, 1298, 14631, 13159, 35067, 10100, 8053, 15419, 35067, 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, 17946, 602, 1298, 685, 4895, 1370, 1298, 513, 11, 366, 28665, 1298, 1596, 92, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12405, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 35067, 10100, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 8053, 15419, 35067, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 35067, 10100, 8053, 15419, 35067, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 15931, 1600, 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, 366, 7890, 1298, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48277, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 8841, 16, 33283, 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, 6978, 1298, 14631, 8841, 16, 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, 17946, 602, 1298, 685, 4895, 1370, 1298, 513, 11, 366, 28665, 1298, 1596, 92, 4357, 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, 220, 220, 220, 220, 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, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 8841, 8053, 15419, 35067, 33283, 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, 6978, 1298, 14631, 8841, 8053, 15419, 35067, 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, 17946, 602, 1298, 685, 4895, 1370, 1298, 718, 11, 366, 28665, 1298, 1596, 92, 4357, 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, 220, 220, 220, 220, 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, 20500, 1298, 366, 34, 34574, 1441, 9242, 329, 1729, 12, 8423, 540, 2214, 43301, 13, 13159, 35067, 10100, 8053, 15419, 35067, 33283, 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, 6978, 1298, 14631, 13159, 35067, 10100, 8053, 15419, 35067, 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, 17946, 602, 1298, 685, 4895, 1370, 1298, 767, 11, 366, 28665, 1298, 1596, 92, 4357, 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, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 16589, 198, 8, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198 ]
1.705357
2,352
# Test fairness of scheduler try: import uasyncio as asyncio except ImportError: try: import asyncio except ImportError: print("SKIP") raise SystemExit asyncio.run(main())
[ 2, 6208, 22692, 286, 6038, 18173, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 334, 292, 13361, 952, 355, 30351, 952, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 30351, 952, 198, 220, 220, 220, 2845, 17267, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 18831, 4061, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4482, 30337, 628, 628, 198, 292, 13361, 952, 13, 5143, 7, 12417, 28955, 198 ]
2.420455
88
# Copyright 2019 Matthias Ring # Machine Learning and Data Analytics Lab # Friedrich-Alexander-University Erlangen-Nuremberg # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import matplotlib as mpl mpl.use('Agg') from django.shortcuts import render, get_object_or_404, redirect from django.urls import reverse import vfatserver.consts as consts import vfatserver.util as util from .util import plot_visual_field, plot_curve from .models import EquidistantAssessment, OctopusG1Assessment
[ 2, 15069, 13130, 45524, 4448, 12569, 198, 2, 10850, 18252, 290, 6060, 30437, 3498, 198, 2, 46099, 12, 38708, 12, 21009, 5256, 17204, 268, 12, 45, 495, 47369, 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, 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, 628, 198, 11748, 2603, 29487, 8019, 355, 285, 489, 198, 76, 489, 13, 1904, 10786, 46384, 11537, 198, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 11, 651, 62, 15252, 62, 273, 62, 26429, 11, 18941, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 9575, 198, 198, 11748, 410, 69, 1381, 18497, 13, 1102, 6448, 355, 1500, 82, 198, 11748, 410, 69, 1381, 18497, 13, 22602, 355, 7736, 198, 6738, 764, 22602, 1330, 7110, 62, 41464, 62, 3245, 11, 7110, 62, 22019, 303, 198, 6738, 764, 27530, 1330, 7889, 312, 10167, 8021, 21687, 11, 2556, 25790, 38, 16, 8021, 21687, 628, 628, 628, 628, 628 ]
3.654412
272
# Turtles in space import turtle sky = turtle.Screen() sky.tracer(0) sky.bgcolor('black') rocket = turtle.Turtle() rocket.speed(0) rocket.color('green') a = 10.0 b = 28.0 c = 8.0/3.0 x = y = z= 1.0e-1 #x = y = z= 1.0e-200 tic = 0.0 sky.ontimer(tictoc, 5)
[ 2, 44356, 287, 2272, 198, 11748, 28699, 198, 198, 15688, 796, 28699, 13, 23901, 3419, 198, 15688, 13, 2213, 11736, 7, 15, 8, 198, 15688, 13, 35904, 8043, 10786, 13424, 11537, 198, 30431, 796, 28699, 13, 51, 17964, 3419, 198, 30431, 13, 12287, 7, 15, 8, 198, 30431, 13, 8043, 10786, 14809, 11537, 198, 198, 64, 796, 838, 13, 15, 198, 65, 796, 2579, 13, 15, 198, 66, 796, 807, 13, 15, 14, 18, 13, 15, 198, 87, 796, 331, 796, 1976, 28, 352, 13, 15, 68, 12, 16, 198, 2, 87, 796, 331, 796, 1976, 28, 352, 13, 15, 68, 12, 2167, 198, 198, 13370, 796, 657, 13, 15, 198, 198, 15688, 13, 756, 22723, 7, 83, 713, 420, 11, 642, 8, 628 ]
2.096774
124
# Licensed under an MIT style license -- see LICENSE.md import numpy as np from pesummary.utils.utils import logger, iterator from pesummary.utils.decorators import array_input from .spins import chi_p __author__ = ["Charlie Hoy <[email protected]>"] try: import lalsimulation from lalsimulation import ( FLAG_SEOBNRv4P_HAMILTONIAN_DERIVATIVE_NUMERICAL, FLAG_SEOBNRv4P_EULEREXT_QNM_SIMPLE_PRECESSION, FLAG_SEOBNRv4P_ZFRAME_L ) from lal import MSUN_SI except ImportError: pass DEFAULT_SEOBFLAGS = { "SEOBNRv4P_SpinAlignedEOBversion": 4, "SEOBNRv4P_SymmetrizehPlminusm": 1, "SEOBNRv4P_HamiltonianDerivative": FLAG_SEOBNRv4P_HAMILTONIAN_DERIVATIVE_NUMERICAL, "SEOBNRv4P_euler_extension": FLAG_SEOBNRv4P_EULEREXT_QNM_SIMPLE_PRECESSION, "SEOBNRv4P_Zframe": FLAG_SEOBNRv4P_ZFRAME_L, "SEOBNRv4P_debug": 0 } @array_input() def final_mass_of_merger_from_NSBH( mass_1, mass_2, spin_1z, lambda_2, approximant="IMRPhenomNSBH" ): """Calculate the final mass resulting from an NSBH merger using NSBH waveform models given samples for mass_1, mass_2, spin_1z and lambda_2. mass_1 and mass_2 should be in solar mass units. """ from .tidal import _check_NSBH_approximant return _check_NSBH_approximant( approximant, mass_1, mass_2, spin_1z, lambda_2 )[4] @array_input() def final_spin_of_merger_from_NSBH( mass_1, mass_2, spin_1z, lambda_2, approximant="IMRPhenomNSBH" ): """Calculate the final spin resulting from an NSBH merger using NSBH waveform models given samples for mass_1, mass_2, spin_1z and lambda_2. mass_1 and mass_2 should be in solar mass units. """ from .tidal import _check_NSBH_approximant return _check_NSBH_approximant( approximant, mass_1, mass_2, spin_1z, lambda_2 )[5] @array_input() def _final_from_initial_NSBH(*args, **kwargs): """Calculate the final mass and final spin given the initial parameters of the binary using the approximant directly """ return [ final_mass_of_merger_from_NSBH(*args, **kwargs), final_spin_of_merger_from_NSBH(*args, **kwargs) ] def _wrapper_return_final_mass_and_final_spin_from_waveform(args): """Wrapper function to calculate the remnant properties for a given waveform for a pool of workers Parameters ---------- args: np.ndarray 2 dimensional array giving arguments to pass to _return_final_mass_and_final_spin_from_waveform. The first argument in each sublist is the keyword and the second argument in each sublist is the item you wish to pass """ kwargs = {arg[0]: arg[1] for arg in args} return _return_final_mass_and_final_spin_from_waveform(**kwargs) def _return_final_mass_and_final_spin_from_waveform( mass_function=None, spin_function=None, mass_function_args=[], spin_function_args=[], mass_function_return_function=None, mass_function_return_index=None, spin_function_return_function=None, spin_function_return_index=None, mass_1_index=0, mass_2_index=1, nsamples=0, approximant=None, default_SEOBNRv4P_kwargs=False ): """Return the final mass and final spin given functions to use Parameters ---------- mass_function: func function you wish to use to calculate the final mass spin_function: func function you wish to use to calculate the final spin mass_function_args: list list of arguments you wish to pass to mass_function spin_function_args: list list of arguments you wish to pass to spin_function mass_function_return_function: str, optional function used to extract the final mass from the quantity returned from mass_function. For example, if mass_function returns a list and the final_mass is a property of the 3 arg of this list, mass_function_return_function='[3].final_mass' mass_function_return_index: str, optional if mass_function returns a list of parameters, mass_function_return_index indicates the index of `final_mass` in the list spin_function_return_function: str, optional function used to extract the final spin from the quantity returned from spin_function. For example, if spin_function returns a list and the final_spin is a property of the 3 arg of this list, spin_function_return_function='[3].final_spin' spin_function_return_index: str, optional if spin_function returns a list of parameters, spin_function_return_index indicates the index of `final_spin` in the list mass_1_index: int, optional the index of mass_1 in mass_function_args. Default is 0 mass_2_index: int, optional the index of mass_2 in mass_function_args. Default is 1 nsamples: int, optional the total number of samples approximant: str, optional the approximant used default_SEOBNRv4P_kwargs: Bool, optional if True, use the default SEOBNRv4P flags """ if default_SEOBNRv4P_kwargs: mode_array, seob_flags = _setup_SEOBNRv4P_args() mass_function_args += [mode_array, seob_flags] spin_function_args += [mode_array, seob_flags] fm = mass_function(*mass_function_args) if mass_function_return_function is not None: fm = eval("fm{}".format(mass_function_return_function)) elif mass_function_return_index is not None: fm = fm[mass_function_return_index] fs = spin_function(*spin_function_args) if spin_function_return_function is not None: fs = eval("fs{}".format(spin_function_return_function)) elif spin_function_return_index is not None: fs = fs[spin_function_return_index] final_mass = fm * ( mass_function_args[mass_1_index] + mass_function_args[mass_2_index] ) / MSUN_SI final_spin = fs return final_mass, final_spin def _setup_SEOBNRv4P_args(mode=[2, 2], seob_flags=DEFAULT_SEOBFLAGS): """Setup the SEOBNRv4P[HM] kwargs """ from lalsimulation import ( SimInspiralCreateModeArray, SimInspiralModeArrayActivateMode ) from lal import DictInsertINT4Value, CreateDict mode_array = SimInspiralCreateModeArray() SimInspiralModeArrayActivateMode(mode_array, mode[0], mode[1]) _seob_flags = CreateDict() for key, item in seob_flags.items(): DictInsertINT4Value(_seob_flags, key, item) return mode_array, _seob_flags @array_input() def _final_from_initial_BBH( mass_1, mass_2, spin_1x, spin_1y, spin_1z, spin_2x, spin_2y, spin_2z, approximant="SEOBNRv4", iota=None, luminosity_distance=None, f_ref=None, phi_ref=None, mode=[2, 2], delta_t=1. / 4096, seob_flags=DEFAULT_SEOBFLAGS, return_fits_used=False, multi_process=None ): """Calculate the final mass and final spin given the initial parameters of the binary using the approximant directly Parameters ---------- mass_1: float/np.ndarray primary mass of the binary mass_2: float/np.ndarray secondary mass of the binary spin_1x: float/np.ndarray x component of the primary spin spin_1y: float/np.ndarray y component of the primary spin spin_1z: float/np.ndarray z component of the primary spin spin_2x: float/np.ndarray x component of the secondary spin spin_2y: float/np.ndarray y component of the secondary spin spin_2z: float/np.ndarray z component of the seconday spin approximant: str name of the approximant you wish to use for the remnant fits iota: float/np.ndarray, optional the angle between the total orbital angular momentum and the line of sight of the source. Used when calculating the remnant fits for SEOBNRv4PHM. Since we only need the EOB dynamics here it does not matter what we pass luminosity_distance: float/np.ndarray, optional the luminosity distance of the source. Used when calculating the remnant fits for SEOBNRv4PHM. Since we only need the EOB dynamics here it does not matter what we pass. f_ref: float/np.ndarray, optional the reference frequency at which the spins are defined phi_ref: float/np.ndarray, optional the coalescence phase of the binary mode: list, optional specific mode to use when calculating the remnant fits for SEOBNRv4PHM. Since we only need the EOB dynamics here it does not matter what we pass. delta_t: float, optional the sampling rate used in the analysis, Used when calculating the remnant fits for SEOBNRv4PHM seob_flags: dict, optional dictionary containing the SEOB flags. Used when calculating the remnant fits for SEOBNRv4PHM return_fits_used: Bool, optional if True, return the approximant that was used. multi_process: int, optional the number of cores to use when calculating the remnant fits """ from lalsimulation import ( SimIMREOBFinalMassSpin, SimIMREOBFinalMassSpinPrec, SimInspiralGetSpinSupportFromApproximant, SimIMRSpinPrecEOBWaveformAll, SimPhenomUtilsIMRPhenomDFinalMass, SimPhenomUtilsPhenomPv2FinalSpin ) import multiprocessing try: approx = getattr(lalsimulation, approximant) except AttributeError: raise ValueError( "The waveform '{}' is not supported by lalsimulation" ) m1 = mass_1 * MSUN_SI m2 = mass_2 * MSUN_SI kwargs = {"nsamples": len(mass_1), "approximant": approximant} if approximant.lower() in ["seobnrv4p", "seobnrv4phm"]: if any(i is None for i in [iota, luminosity_distance, f_ref, phi_ref]): raise ValueError( "The approximant '{}' requires samples for iota, f_ref, " "phi_ref and luminosity_distance. Please pass these " "samples.".format(approximant) ) if len(delta_t) == 1: delta_t = [delta_t[0]] * len(mass_1) elif len(delta_t) != len(mass_1): raise ValueError( "Please provide either a single 'delta_t' that is is used for " "all samples, or a single 'delta_t' for each sample" ) mode_array, _seob_flags = _setup_SEOBNRv4P_args( mode=mode, seob_flags=seob_flags ) args = np.array([ phi_ref, delta_t, m1, m2, f_ref, luminosity_distance, iota, spin_1x, spin_1y, spin_1z, spin_2x, spin_2y, spin_2z, [mode_array] * len(mass_1), [_seob_flags] * len(mass_1) ]) kwargs.update( { "mass_function": SimIMRSpinPrecEOBWaveformAll, "spin_function": SimIMRSpinPrecEOBWaveformAll, "mass_function_args": args, "spin_function_args": args, "mass_function_return_function": "[21].data[6]", "spin_function_return_function": "[21].data[7]", "mass_1_index": 2, "mass_2_index": 3, } ) elif approximant.lower() in ["seobnrv4"]: spin1 = np.array([spin_1x, spin_1y, spin_1z]).T spin2 = np.array([spin_2x, spin_2y, spin_2z]).T app = np.array([approx] * len(mass_1)) kwargs.update( { "mass_function": SimIMREOBFinalMassSpin, "spin_function": SimIMREOBFinalMassSpin, "mass_function_args": [m1, m2, spin1, spin2, app], "spin_function_args": [m1, m2, spin1, spin2, app], "mass_function_return_index": 1, "spin_function_return_index": 2 } ) elif "phenompv3" in approximant.lower(): kwargs.update( { "mass_function": SimPhenomUtilsIMRPhenomDFinalMass, "spin_function": SimPhenomUtilsPhenomPv2FinalSpin, "mass_function_args": [m1, m2, spin_1z, spin_2z], "spin_function_args": [m1, m2, spin_1z, spin_2z] } ) if SimInspiralGetSpinSupportFromApproximant(approx) > 2: # matches the waveform's internal usage as corrected in # https://git.ligo.org/lscsoft/lalsuite/-/merge_requests/1270 _chi_p = chi_p(mass_1, mass_2, spin_1x, spin_1y, spin_2x, spin_2y) kwargs["spin_function_args"].append(_chi_p) else: kwargs["spin_function_args"].append(np.zeros_like(mass_1)) else: raise ValueError( "The waveform '{}' is not support by this function.".format( approximant ) ) args = convert_args_for_multi_processing(kwargs) if multi_process is not None and multi_process[0] != 1: _multi_process = multi_process[0] if approximant.lower() in ["seobnrv4p", "seobnrv4phm"]: logger.warning( "Ignoring passed 'mode' and 'seob_flags' options. Defaults " "must be used with multiprocessing. If you wish to use custom " "options, please set `multi_process=None`" ) _kwargs = kwargs.copy() _kwargs["mass_function_args"] = kwargs["mass_function_args"][:-2] _kwargs["spin_function_args"] = kwargs["spin_function_args"][:-2] _kwargs["default_SEOBNRv4P_kwargs"] = True args = convert_args_for_multi_processing(_kwargs) with multiprocessing.Pool(_multi_process) as pool: data = np.array(list( iterator( pool.imap( _wrapper_return_final_mass_and_final_spin_from_waveform, args ), tqdm=True, desc="Evaluating {} fit".format(approximant), logger=logger, total=len(mass_1) ) )).T else: final_mass, final_spin = [], [] _iterator = iterator( range(kwargs["nsamples"]), tqdm=True, total=len(mass_1), desc="Evaluating {} fit".format(approximant), logger=logger ) for i in _iterator: data = _wrapper_return_final_mass_and_final_spin_from_waveform( args[i] ) final_mass.append(data[0]) final_spin.append(data[1]) data = [final_mass, final_spin] if return_fits_used: return data, [approximant] return data def final_remnant_properties_from_NRSurrogate( *args, f_low=20., f_ref=20., model="NRSur7dq4Remnant", return_fits_used=False, properties=["final_mass", "final_spin", "final_kick"], approximant="SEOBNRv4PHM" ): """Return the properties of the final remnant resulting from a BBH merger using NRSurrogate fits Parameters --------- f_low: float/np.ndarray The low frequency cut-off used in the analysis. Default is 20Hz f_ref: float/np.ndarray The reference frequency used in the analysis. Default is 20Hz model: str, optional The name of the NRSurrogate model you wish to use return_fits_used: Bool, optional if True, return the approximant that was used. properties: list, optional The list of properties you wish to calculate approximant: str, optional The approximant that was used to generate the posterior samples """ from .nrutils import NRSur_fit fit = NRSur_fit( *args, f_low=f_low, f_ref=f_ref, model=model, fits=properties, approximant=approximant ) if return_fits_used: return fit, [model] return fit def final_mass_of_merger_from_NR( *args, NRfit="average", final_spin=None, return_fits_used=False ): """Return the final mass resulting from a BBH merger using NR fits Parameters ---------- NRfit: str Name of the fit you wish to use. If you wish to use a precessing fit please use the syntax 'precessing_{}'.format(fit_name). If you wish to have an average NR fit, then pass 'average' final_spin: float/np.ndarray, optional precomputed final spin of the remnant. return_fits_used: Bool, optional if True, return the fits that were used. Only used when NRfit='average' """ from pesummary.gw.conversions import nrutils if NRfit.lower() == "average": func = getattr(nrutils, "bbh_final_mass_average") elif "panetal" in NRfit.lower(): func = getattr( nrutils, "bbh_final_mass_non_spinning_Panetal" ) else: func = getattr( nrutils, "bbh_final_mass_non_precessing_{}".format(NRfit) ) if "healy" in NRfit.lower(): return func(*args, final_spin=final_spin) if NRfit.lower() == "average": return func(*args, return_fits_used=return_fits_used) return func(*args) def final_mass_of_merger_from_NRSurrogate( *args, model="NRSur7dq4Remnant", return_fits_used=False, approximant="SEOBNRv4PHM" ): """Return the final mass resulting from a BBH merger using NRSurrogate fits """ data = final_remnant_properties_from_NRSurrogate( *args, model=model, properties=["final_mass"], return_fits_used=return_fits_used, approximant=approximant ) if return_fits_used: return data[0]["final_mass"], data[1] return data["final_mass"] def final_mass_of_merger_from_waveform(*args, NSBH=False, **kwargs): """Return the final mass resulting from a BBH/NSBH merger using a given approximant Parameters ---------- NSBH: Bool, optional if True, use NSBH waveform fits. Default False """ if NSBH or "nsbh" in kwargs.get("approximant", "").lower(): return _final_from_initial_NSBH(*args, **kwargs)[1] return _final_from_initial_BBH(*args, **kwargs)[0] def final_spin_of_merger_from_NR( *args, NRfit="average", return_fits_used=False ): """Return the final spin resulting from a BBH merger using NR fits Parameters ---------- NRfit: str Name of the fit you wish to use. If you wish to use a precessing fit please use the syntax 'precessing_{}'.format(fit_name). If you wish to have an average NR fit, then pass 'average' return_fits_used: Bool, optional if True, return the fits that were used. Only used when NRfit='average' """ from pesummary.gw.conversions import nrutils if NRfit.lower() == "average": func = getattr(nrutils, "bbh_final_spin_average_precessing") elif "pan" in NRfit.lower(): func = getattr( nrutils, "bbh_final_spin_non_spinning_Panetal" ) elif "precessing" in NRfit.lower(): func = getattr( nrutils, "bbh_final_spin_precessing_{}".format( NRfit.split("precessing_")[1] ) ) else: func = getattr( nrutils, "bbh_final_spin_non_precessing_{}".format(NRfit) ) if NRfit.lower() == "average": return func(*args, return_fits_used=return_fits_used) return func(*args) def final_spin_of_merger_from_NRSurrogate( *args, model="NRSur7dq4Remnant", return_fits_used=False, approximant="SEOBNRv4PHM" ): """Return the final spin resulting from a BBH merger using NRSurrogate fits """ data = final_remnant_properties_from_NRSurrogate( *args, model=model, properties=["final_spin"], return_fits_used=return_fits_used, approximant=approximant ) if return_fits_used: return data[0]["final_spin"], data[1] return data["final_spin"] def final_spin_of_merger_from_waveform(*args, NSBH=False, **kwargs): """Return the final spin resulting from a BBH/NSBH merger using a given approximant. Parameters ---------- NSBH: Bool, optional if True, use NSBH waveform fits. Default False """ if NSBH or "nsbh" in kwargs.get("approximant", "").lower(): return _final_from_initial_NSBH(*args, **kwargs)[1] return _final_from_initial_BBH(*args, **kwargs)[1] def final_kick_of_merger_from_NRSurrogate( *args, model="NRSur7dq4Remnant", return_fits_used=False, approximant="SEOBNRv4PHM" ): """Return the final kick of the remnant resulting from a BBH merger using NRSurrogate fits """ data = final_remnant_properties_from_NRSurrogate( *args, model=model, properties=["final_kick"], return_fits_used=return_fits_used, approximant=approximant ) if return_fits_used: return data[0]["final_kick"], data[1] return data["final_kick"] def final_mass_of_merger( *args, method="NR", approximant="SEOBNRv4", NRfit="average", final_spin=None, return_fits_used=False, model="NRSur7dq4Remnant" ): """Return the final mass resulting from a BBH merger Parameters ---------- mass_1: float/np.ndarray float/array of masses for the primary object mass_2: float/np.ndarray float/array of masses for the secondary object spin_1z: float/np.ndarray float/array of primary spin aligned with the orbital angular momentum spin_2z: float/np.ndarray float/array of secondary spin aligned with the orbital angular momentum method: str The method you wish to use to calculate the final mass of merger. Either NR, NRSurrogate or waveform approximant: str Name of the approximant you wish to use if the chosen method is waveform or NRSurrogate NRFit: str Name of the NR fit you wish to use if chosen method is NR return_fits_used: Bool, optional if True, return the NR fits that were used. Only used when NRFit='average' or when method='NRSurrogate' model: str, optional The NRSurrogate model to use when evaluating the fits """ if method.lower() == "nr": mass_func = final_mass_of_merger_from_NR kwargs = { "NRfit": NRfit, "final_spin": final_spin, "return_fits_used": return_fits_used } elif "nrsur" in method.lower(): mass_func = final_mass_of_merger_from_NRSurrogate kwargs = { "approximant": approximant, "return_fits_used": return_fits_used, "model": model } else: mass_func = final_mass_of_merger_from_waveform kwargs = {"approximant": approximant} return mass_func(*args, **kwargs) def final_spin_of_merger( *args, method="NR", approximant="SEOBNRv4", NRfit="average", return_fits_used=False, model="NRSur7dq4Remnant" ): """Return the final mass resulting from a BBH merger Parameters ---------- mass_1: float/np.ndarray float/array of masses for the primary object mass_2: float/np.ndarray float/array of masses for the secondary object a_1: float/np.ndarray float/array of primary spin magnitudes a_2: float/np.ndarray float/array of secondary spin magnitudes tilt_1: float/np.ndarray float/array of primary spin tilt angle from the orbital angular momentum tilt_2: float/np.ndarray float/array of secondary spin tilt angle from the orbital angular momentum phi_12: float/np.ndarray float/array of samples for the angle between the in-plane spin components method: str The method you wish to use to calculate the final mass of merger. Either NR, NRSurrogate or waveform approximant: str Name of the approximant you wish to use if the chosen method is waveform or NRSurrogate NRFit: str Name of the NR fit you wish to use if chosen method is NR return_fits_used: Bool, optional if True, return the NR fits that were used. Only used when NRFit='average' or when method='NRSurrogate' model: str, optional The NRSurrogate model to use when evaluating the fits """ if method.lower() == "nr": spin_func = final_spin_of_merger_from_NR kwargs = {"NRfit": NRfit, "return_fits_used": return_fits_used} elif "nrsur" in method.lower(): spin_func = final_spin_of_merger_from_NRSurrogate kwargs = { "approximant": approximant, "return_fits_used": return_fits_used, "model": model } else: spin_func = final_spin_of_merger_from_waveform kwargs = {"approximant": approximant} return spin_func(*args, **kwargs) def final_kick_of_merger( *args, method="NR", approximant="SEOBNRv4", NRfit="average", return_fits_used: False, model="NRSur7dq4Remnant" ): """Return the final kick velocity of the remnant resulting from a BBH merger Parameters ---------- mass_1: float/np.ndarray float/array of masses for the primary object mass_2: float/np.ndarray float/array of masses for the secondary object a_1: float/np.ndarray float/array of primary spin magnitudes a_2: float/np.ndarray float/array of secondary spin magnitudes tilt_1: float/np.ndarray float/array of primary spin tilt angle from the orbital angular momentum tilt_2: float/np.ndarray float/array of secondary spin tilt angle from the orbital angular momentum phi_12: float/np.ndarray float/array of samples for the angle between the in-plane spin components method: str The method you wish to use to calculate the final kick of merger. Either NR, NRSurrogate or waveform approximant: str Name of the approximant you wish to use if the chosen method is waveform or NRSurrogate NRFit: str Name of the NR fit you wish to use if chosen method is NR return_fits_used: Bool, optional if True, return the NR fits that were used. Only used when NRFit='average' or when method='NRSurrogate' model: str, optional The NRSurrogate model to use when evaluating the fits """ if "nrsur" not in method.lower(): raise NotImplementedError( "Currently you can only work out the final kick velocity using " "NRSurrogate fits." ) velocity_func = final_kick_of_merger_from_NRSurrogate kwargs = { "approximant": approximant, "return_fits_used": return_fits_used, "model": model } return velocity_func(*args, **kwargs) def peak_luminosity_of_merger(*args, NRfit="average", return_fits_used=False): """Return the peak luminosity of an aligned-spin BBH using NR fits Parameters ---------- mass_1: float/np.ndarray float/array of masses for the primary object mass_2: float/np.ndarray float/array of masses for the secondary object spin_1z: float/np.ndarray float/array of primary spin aligned with the orbital angular momentum spin_2z: float/np.ndarray float/array of secondary spin aligned with the orbital angular momentum NRFit: str Name of the NR fit you wish to use if chosen method is NR return_fits_used: Bool, optional if True, return the NR fits that were used. Only used when NRFit='average' """ from pesummary.gw.conversions import nrutils if NRfit.lower() == "average": func = getattr(nrutils, "bbh_peak_luminosity_average") else: func = getattr( nrutils, "bbh_peak_luminosity_non_precessing_{}".format(NRfit) ) if NRfit.lower() == "average": return func(*args, return_fits_used=return_fits_used) return func(*args)
[ 2, 49962, 739, 281, 17168, 3918, 5964, 1377, 766, 38559, 24290, 13, 9132, 198, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 32317, 388, 6874, 13, 26791, 13, 26791, 1330, 49706, 11, 41313, 198, 6738, 32317, 388, 6874, 13, 26791, 13, 12501, 273, 2024, 1330, 7177, 62, 15414, 198, 6738, 764, 2777, 1040, 1330, 33166, 62, 79, 198, 198, 834, 9800, 834, 796, 14631, 37136, 49873, 1279, 354, 7063, 494, 13, 71, 726, 31, 4604, 78, 13, 2398, 29, 8973, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 300, 874, 320, 1741, 198, 220, 220, 220, 422, 300, 874, 320, 1741, 1330, 357, 198, 220, 220, 220, 220, 220, 220, 220, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 33363, 4146, 11357, 16868, 62, 14418, 3824, 37045, 62, 41359, 1137, 20151, 11, 198, 220, 220, 220, 220, 220, 220, 220, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 36, 6239, 1137, 13918, 62, 48, 32755, 62, 48913, 16437, 62, 47, 38827, 47621, 11, 198, 220, 220, 220, 220, 220, 220, 220, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 57, 10913, 10067, 62, 43, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 422, 300, 282, 1330, 6579, 4944, 62, 11584, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1208, 198, 198, 7206, 38865, 62, 50, 4720, 33, 38948, 50, 796, 1391, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 4561, 259, 2348, 3916, 4720, 33, 9641, 1298, 604, 11, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 13940, 3020, 316, 380, 2736, 71, 3646, 40191, 76, 1298, 352, 11, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 45405, 666, 28532, 452, 876, 1298, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 33363, 4146, 11357, 16868, 62, 14418, 3824, 37045, 62, 41359, 1137, 20151, 11, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 68, 18173, 62, 2302, 3004, 1298, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 36, 6239, 1137, 13918, 62, 48, 32755, 62, 48913, 16437, 62, 47, 38827, 47621, 11, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 57, 14535, 1298, 9977, 4760, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 57, 10913, 10067, 62, 43, 11, 198, 220, 220, 220, 366, 50, 4720, 15766, 49, 85, 19, 47, 62, 24442, 1298, 657, 198, 92, 628, 198, 31, 18747, 62, 15414, 3419, 198, 4299, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 8035, 33, 39, 7, 198, 220, 220, 220, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 11, 37456, 62, 17, 11, 5561, 320, 415, 2625, 3955, 20031, 831, 296, 8035, 33, 39, 1, 198, 2599, 198, 220, 220, 220, 37227, 9771, 3129, 378, 262, 2457, 2347, 7186, 422, 281, 10896, 33, 39, 24589, 1262, 10896, 33, 39, 198, 220, 220, 220, 6769, 687, 4981, 1813, 8405, 329, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 290, 37456, 62, 17, 13, 198, 220, 220, 220, 2347, 62, 16, 290, 2347, 62, 17, 815, 307, 287, 6591, 2347, 4991, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 764, 83, 11624, 1330, 4808, 9122, 62, 8035, 33, 39, 62, 1324, 13907, 320, 415, 198, 220, 220, 220, 1441, 4808, 9122, 62, 8035, 33, 39, 62, 1324, 13907, 320, 415, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5561, 320, 415, 11, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 11, 37456, 62, 17, 198, 220, 220, 220, 1267, 58, 19, 60, 628, 198, 31, 18747, 62, 15414, 3419, 198, 4299, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 8035, 33, 39, 7, 198, 220, 220, 220, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 11, 37456, 62, 17, 11, 5561, 320, 415, 2625, 3955, 20031, 831, 296, 8035, 33, 39, 1, 198, 2599, 198, 220, 220, 220, 37227, 9771, 3129, 378, 262, 2457, 7906, 7186, 422, 281, 10896, 33, 39, 24589, 1262, 10896, 33, 39, 198, 220, 220, 220, 6769, 687, 4981, 1813, 8405, 329, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 290, 37456, 62, 17, 13, 198, 220, 220, 220, 2347, 62, 16, 290, 2347, 62, 17, 815, 307, 287, 6591, 2347, 4991, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 764, 83, 11624, 1330, 4808, 9122, 62, 8035, 33, 39, 62, 1324, 13907, 320, 415, 198, 220, 220, 220, 1441, 4808, 9122, 62, 8035, 33, 39, 62, 1324, 13907, 320, 415, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5561, 320, 415, 11, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 89, 11, 37456, 62, 17, 198, 220, 220, 220, 1267, 58, 20, 60, 628, 198, 31, 18747, 62, 15414, 3419, 198, 4299, 4808, 20311, 62, 6738, 62, 36733, 62, 8035, 33, 39, 46491, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 9771, 3129, 378, 262, 2457, 2347, 290, 2457, 7906, 1813, 262, 4238, 10007, 198, 220, 220, 220, 286, 262, 13934, 1262, 262, 5561, 320, 415, 3264, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 685, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 8035, 33, 39, 46491, 22046, 11, 12429, 46265, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 8035, 33, 39, 46491, 22046, 11, 12429, 46265, 22046, 8, 198, 220, 220, 220, 2361, 628, 198, 4299, 4808, 48553, 62, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 7, 22046, 2599, 198, 220, 220, 220, 37227, 36918, 2848, 2163, 284, 15284, 262, 49332, 6608, 329, 257, 1813, 6769, 687, 198, 220, 220, 220, 329, 257, 5933, 286, 3259, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 26498, 25, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 362, 38517, 7177, 3501, 7159, 284, 1208, 284, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 13, 383, 717, 4578, 198, 220, 220, 220, 220, 220, 220, 220, 287, 1123, 850, 4868, 318, 262, 21179, 290, 262, 1218, 4578, 287, 1123, 850, 4868, 198, 220, 220, 220, 220, 220, 220, 220, 318, 262, 2378, 345, 4601, 284, 1208, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 479, 86, 22046, 796, 1391, 853, 58, 15, 5974, 1822, 58, 16, 60, 329, 1822, 287, 26498, 92, 198, 220, 220, 220, 1441, 4808, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 7, 1174, 46265, 22046, 8, 628, 198, 4299, 4808, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 7, 198, 220, 220, 220, 2347, 62, 8818, 28, 14202, 11, 7906, 62, 8818, 28, 14202, 11, 2347, 62, 8818, 62, 22046, 41888, 4357, 198, 220, 220, 220, 7906, 62, 8818, 62, 22046, 41888, 4357, 2347, 62, 8818, 62, 7783, 62, 8818, 28, 14202, 11, 198, 220, 220, 220, 2347, 62, 8818, 62, 7783, 62, 9630, 28, 14202, 11, 7906, 62, 8818, 62, 7783, 62, 8818, 28, 14202, 11, 198, 220, 220, 220, 7906, 62, 8818, 62, 7783, 62, 9630, 28, 14202, 11, 2347, 62, 16, 62, 9630, 28, 15, 11, 2347, 62, 17, 62, 9630, 28, 16, 11, 198, 220, 220, 220, 36545, 12629, 28, 15, 11, 5561, 320, 415, 28, 14202, 11, 4277, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 46265, 22046, 28, 25101, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 290, 2457, 7906, 1813, 5499, 284, 779, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 8818, 25, 25439, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 345, 4601, 284, 779, 284, 15284, 262, 2457, 2347, 198, 220, 220, 220, 7906, 62, 8818, 25, 25439, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 345, 4601, 284, 779, 284, 15284, 262, 2457, 7906, 198, 220, 220, 220, 2347, 62, 8818, 62, 22046, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 286, 7159, 345, 4601, 284, 1208, 284, 2347, 62, 8818, 198, 220, 220, 220, 7906, 62, 8818, 62, 22046, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 286, 7159, 345, 4601, 284, 1208, 284, 7906, 62, 8818, 198, 220, 220, 220, 2347, 62, 8818, 62, 7783, 62, 8818, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 973, 284, 7925, 262, 2457, 2347, 422, 262, 12040, 4504, 422, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 8818, 13, 1114, 1672, 11, 611, 2347, 62, 8818, 5860, 257, 1351, 290, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 22208, 318, 257, 3119, 286, 262, 513, 1822, 286, 428, 1351, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 8818, 62, 7783, 62, 8818, 11639, 58, 18, 4083, 20311, 62, 22208, 6, 198, 220, 220, 220, 2347, 62, 8818, 62, 7783, 62, 9630, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2347, 62, 8818, 5860, 257, 1351, 286, 10007, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 8818, 62, 7783, 62, 9630, 9217, 262, 6376, 286, 4600, 20311, 62, 22208, 63, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 198, 220, 220, 220, 7906, 62, 8818, 62, 7783, 62, 8818, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 973, 284, 7925, 262, 2457, 7906, 422, 262, 12040, 4504, 422, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 8818, 13, 1114, 1672, 11, 611, 7906, 62, 8818, 5860, 257, 1351, 290, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 39706, 318, 257, 3119, 286, 262, 513, 1822, 286, 428, 1351, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 8818, 62, 7783, 62, 8818, 11639, 58, 18, 4083, 20311, 62, 39706, 6, 198, 220, 220, 220, 7906, 62, 8818, 62, 7783, 62, 9630, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7906, 62, 8818, 5860, 257, 1351, 286, 10007, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 8818, 62, 7783, 62, 9630, 9217, 262, 6376, 286, 4600, 20311, 62, 39706, 63, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 198, 220, 220, 220, 2347, 62, 16, 62, 9630, 25, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 6376, 286, 2347, 62, 16, 287, 2347, 62, 8818, 62, 22046, 13, 15161, 318, 657, 198, 220, 220, 220, 2347, 62, 17, 62, 9630, 25, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 6376, 286, 2347, 62, 17, 287, 2347, 62, 8818, 62, 22046, 13, 15161, 318, 352, 198, 220, 220, 220, 36545, 12629, 25, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 2472, 1271, 286, 8405, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 5561, 320, 415, 973, 198, 220, 220, 220, 4277, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 46265, 22046, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 779, 262, 4277, 30850, 15766, 49, 85, 19, 47, 9701, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 4277, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 46265, 22046, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4235, 62, 18747, 11, 384, 672, 62, 33152, 796, 4808, 40406, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 22046, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 8818, 62, 22046, 15853, 685, 14171, 62, 18747, 11, 384, 672, 62, 33152, 60, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 8818, 62, 22046, 15853, 685, 14171, 62, 18747, 11, 384, 672, 62, 33152, 60, 198, 220, 220, 220, 277, 76, 796, 2347, 62, 8818, 46491, 22208, 62, 8818, 62, 22046, 8, 198, 220, 220, 220, 611, 2347, 62, 8818, 62, 7783, 62, 8818, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 76, 796, 5418, 7203, 38353, 90, 92, 1911, 18982, 7, 22208, 62, 8818, 62, 7783, 62, 8818, 4008, 198, 220, 220, 220, 1288, 361, 2347, 62, 8818, 62, 7783, 62, 9630, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 76, 796, 277, 76, 58, 22208, 62, 8818, 62, 7783, 62, 9630, 60, 198, 220, 220, 220, 43458, 796, 7906, 62, 8818, 46491, 39706, 62, 8818, 62, 22046, 8, 198, 220, 220, 220, 611, 7906, 62, 8818, 62, 7783, 62, 8818, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 43458, 796, 5418, 7203, 9501, 90, 92, 1911, 18982, 7, 39706, 62, 8818, 62, 7783, 62, 8818, 4008, 198, 220, 220, 220, 1288, 361, 7906, 62, 8818, 62, 7783, 62, 9630, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 43458, 796, 43458, 58, 39706, 62, 8818, 62, 7783, 62, 9630, 60, 198, 220, 220, 220, 2457, 62, 22208, 796, 277, 76, 1635, 357, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 8818, 62, 22046, 58, 22208, 62, 16, 62, 9630, 60, 1343, 2347, 62, 8818, 62, 22046, 58, 22208, 62, 17, 62, 9630, 60, 198, 220, 220, 220, 1267, 1220, 6579, 4944, 62, 11584, 198, 220, 220, 220, 2457, 62, 39706, 796, 43458, 198, 220, 220, 220, 1441, 2457, 62, 22208, 11, 2457, 62, 39706, 628, 198, 4299, 4808, 40406, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 22046, 7, 14171, 41888, 17, 11, 362, 4357, 384, 672, 62, 33152, 28, 7206, 38865, 62, 50, 4720, 33, 38948, 50, 2599, 198, 220, 220, 220, 37227, 40786, 262, 30850, 15766, 49, 85, 19, 47, 58, 36905, 60, 479, 86, 22046, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 300, 874, 320, 1741, 1330, 357, 198, 220, 220, 220, 220, 220, 220, 220, 3184, 41502, 21093, 16447, 19076, 19182, 11, 3184, 41502, 21093, 19076, 19182, 25526, 378, 19076, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 422, 300, 282, 1330, 360, 713, 44402, 12394, 19, 11395, 11, 13610, 35, 713, 628, 220, 220, 220, 4235, 62, 18747, 796, 3184, 41502, 21093, 16447, 19076, 19182, 3419, 198, 220, 220, 220, 3184, 41502, 21093, 19076, 19182, 25526, 378, 19076, 7, 14171, 62, 18747, 11, 4235, 58, 15, 4357, 4235, 58, 16, 12962, 198, 220, 220, 220, 4808, 325, 672, 62, 33152, 796, 13610, 35, 713, 3419, 198, 220, 220, 220, 329, 1994, 11, 2378, 287, 384, 672, 62, 33152, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 360, 713, 44402, 12394, 19, 11395, 28264, 325, 672, 62, 33152, 11, 1994, 11, 2378, 8, 198, 220, 220, 220, 1441, 4235, 62, 18747, 11, 4808, 325, 672, 62, 33152, 628, 198, 31, 18747, 62, 15414, 3419, 198, 4299, 4808, 20311, 62, 6738, 62, 36733, 62, 15199, 39, 7, 198, 220, 220, 220, 2347, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 87, 11, 7906, 62, 16, 88, 11, 7906, 62, 16, 89, 11, 7906, 62, 17, 87, 11, 7906, 62, 17, 88, 11, 7906, 62, 17, 89, 11, 198, 220, 220, 220, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 1600, 1312, 4265, 28, 14202, 11, 29763, 16579, 62, 30246, 28, 14202, 11, 277, 62, 5420, 28, 14202, 11, 198, 220, 220, 220, 872, 72, 62, 5420, 28, 14202, 11, 4235, 41888, 17, 11, 362, 4357, 25979, 62, 83, 28, 16, 13, 1220, 42479, 11, 384, 672, 62, 33152, 28, 7206, 38865, 62, 50, 4720, 33, 38948, 50, 11, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 5021, 62, 14681, 28, 14202, 198, 2599, 198, 220, 220, 220, 37227, 9771, 3129, 378, 262, 2457, 2347, 290, 2457, 7906, 1813, 262, 4238, 10007, 198, 220, 220, 220, 286, 262, 13934, 1262, 262, 5561, 320, 415, 3264, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 4165, 2347, 286, 262, 13934, 198, 220, 220, 220, 2347, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 9233, 2347, 286, 262, 13934, 198, 220, 220, 220, 7906, 62, 16, 87, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 7515, 286, 262, 4165, 7906, 198, 220, 220, 220, 7906, 62, 16, 88, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 331, 7515, 286, 262, 4165, 7906, 198, 220, 220, 220, 7906, 62, 16, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 1976, 7515, 286, 262, 4165, 7906, 198, 220, 220, 220, 7906, 62, 17, 87, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 7515, 286, 262, 9233, 7906, 198, 220, 220, 220, 7906, 62, 17, 88, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 331, 7515, 286, 262, 9233, 7906, 198, 220, 220, 220, 7906, 62, 17, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 1976, 7515, 286, 262, 1218, 323, 7906, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 286, 262, 5561, 320, 415, 345, 4601, 284, 779, 329, 262, 49332, 11414, 198, 220, 220, 220, 1312, 4265, 25, 12178, 14, 37659, 13, 358, 18747, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 9848, 1022, 262, 2472, 32362, 32558, 12858, 290, 262, 1627, 286, 198, 220, 220, 220, 220, 220, 220, 220, 6504, 286, 262, 2723, 13, 16718, 618, 26019, 262, 49332, 11414, 329, 198, 220, 220, 220, 220, 220, 220, 220, 30850, 15766, 49, 85, 19, 11909, 44, 13, 4619, 356, 691, 761, 262, 412, 9864, 17262, 994, 340, 857, 407, 2300, 198, 220, 220, 220, 220, 220, 220, 220, 644, 356, 1208, 198, 220, 220, 220, 29763, 16579, 62, 30246, 25, 12178, 14, 37659, 13, 358, 18747, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 29763, 16579, 5253, 286, 262, 2723, 13, 16718, 618, 26019, 262, 198, 220, 220, 220, 220, 220, 220, 220, 49332, 11414, 329, 30850, 15766, 49, 85, 19, 11909, 44, 13, 4619, 356, 691, 761, 262, 412, 9864, 17262, 994, 198, 220, 220, 220, 220, 220, 220, 220, 340, 857, 407, 2300, 644, 356, 1208, 13, 198, 220, 220, 220, 277, 62, 5420, 25, 12178, 14, 37659, 13, 358, 18747, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 4941, 8373, 379, 543, 262, 37621, 389, 5447, 198, 220, 220, 220, 872, 72, 62, 5420, 25, 12178, 14, 37659, 13, 358, 18747, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 46064, 43696, 7108, 286, 262, 13934, 198, 220, 220, 220, 4235, 25, 1351, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 2176, 4235, 284, 779, 618, 26019, 262, 49332, 11414, 329, 30850, 15766, 49, 85, 19, 11909, 44, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4619, 356, 691, 761, 262, 412, 9864, 17262, 994, 340, 857, 407, 2300, 644, 356, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 13, 198, 220, 220, 220, 25979, 62, 83, 25, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 19232, 2494, 973, 287, 262, 3781, 11, 16718, 618, 26019, 262, 198, 220, 220, 220, 220, 220, 220, 220, 49332, 11414, 329, 30850, 15766, 49, 85, 19, 11909, 44, 198, 220, 220, 220, 384, 672, 62, 33152, 25, 8633, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 22155, 7268, 262, 30850, 33, 9701, 13, 16718, 618, 26019, 262, 49332, 198, 220, 220, 220, 220, 220, 220, 220, 11414, 329, 30850, 15766, 49, 85, 19, 11909, 44, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 5561, 320, 415, 326, 373, 973, 13, 198, 220, 220, 220, 5021, 62, 14681, 25, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 262, 1271, 286, 21758, 284, 779, 618, 26019, 262, 49332, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 300, 874, 320, 1741, 1330, 357, 198, 220, 220, 220, 220, 220, 220, 220, 3184, 3955, 2200, 9864, 19006, 20273, 4561, 259, 11, 3184, 3955, 2200, 9864, 19006, 20273, 4561, 259, 6719, 66, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3184, 41502, 21093, 3855, 4561, 259, 15514, 4863, 4677, 13907, 320, 415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3184, 3955, 49, 4561, 259, 6719, 66, 4720, 33, 39709, 687, 3237, 11, 3184, 47, 831, 296, 18274, 4487, 3955, 20031, 831, 296, 8068, 1292, 20273, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3184, 47, 831, 296, 18274, 4487, 47, 831, 296, 47, 85, 17, 19006, 4561, 259, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1330, 18540, 305, 919, 278, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5561, 796, 651, 35226, 7, 75, 874, 320, 1741, 11, 5561, 320, 415, 8, 198, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 6769, 687, 705, 90, 92, 6, 318, 407, 4855, 416, 300, 874, 320, 1741, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 285, 16, 796, 2347, 62, 16, 1635, 6579, 4944, 62, 11584, 198, 220, 220, 220, 285, 17, 796, 2347, 62, 17, 1635, 6579, 4944, 62, 11584, 198, 220, 220, 220, 479, 86, 22046, 796, 19779, 5907, 12629, 1298, 18896, 7, 22208, 62, 16, 828, 366, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 92, 198, 220, 220, 220, 611, 5561, 320, 415, 13, 21037, 3419, 287, 14631, 325, 672, 48624, 85, 19, 79, 1600, 366, 325, 672, 48624, 85, 19, 746, 76, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 597, 7, 72, 318, 6045, 329, 1312, 287, 685, 72, 4265, 11, 29763, 16579, 62, 30246, 11, 277, 62, 5420, 11, 872, 72, 62, 5420, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 5561, 320, 415, 705, 90, 92, 6, 4433, 8405, 329, 1312, 4265, 11, 277, 62, 5420, 11, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 34846, 62, 5420, 290, 29763, 16579, 62, 30246, 13, 4222, 1208, 777, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 82, 12629, 526, 13, 18982, 7, 1324, 13907, 320, 415, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 67, 12514, 62, 83, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25979, 62, 83, 796, 685, 67, 12514, 62, 83, 58, 15, 11907, 1635, 18896, 7, 22208, 62, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 67, 12514, 62, 83, 8, 14512, 18896, 7, 22208, 62, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5492, 2148, 2035, 257, 2060, 705, 67, 12514, 62, 83, 6, 326, 318, 318, 973, 329, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 439, 8405, 11, 393, 257, 2060, 705, 67, 12514, 62, 83, 6, 329, 1123, 6291, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 4235, 62, 18747, 11, 4808, 325, 672, 62, 33152, 796, 4808, 40406, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 22046, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 384, 672, 62, 33152, 28, 325, 672, 62, 33152, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 796, 45941, 13, 18747, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 872, 72, 62, 5420, 11, 25979, 62, 83, 11, 285, 16, 11, 285, 17, 11, 277, 62, 5420, 11, 29763, 16579, 62, 30246, 11, 1312, 4265, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 16, 87, 11, 7906, 62, 16, 88, 11, 7906, 62, 16, 89, 11, 7906, 62, 17, 87, 11, 7906, 62, 17, 88, 11, 7906, 62, 17, 89, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 14171, 62, 18747, 60, 1635, 18896, 7, 22208, 62, 16, 828, 685, 62, 325, 672, 62, 33152, 60, 1635, 18896, 7, 22208, 62, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 13, 19119, 7, 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, 366, 22208, 62, 8818, 1298, 3184, 3955, 49, 4561, 259, 6719, 66, 4720, 33, 39709, 687, 3237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 1298, 3184, 3955, 49, 4561, 259, 6719, 66, 4720, 33, 39709, 687, 3237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 8818, 62, 22046, 1298, 26498, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 62, 22046, 1298, 26498, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 8818, 62, 7783, 62, 8818, 1298, 12878, 2481, 4083, 7890, 58, 21, 60, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 62, 7783, 62, 8818, 1298, 12878, 2481, 4083, 7890, 58, 22, 60, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 16, 62, 9630, 1298, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 17, 62, 9630, 1298, 513, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1288, 361, 5561, 320, 415, 13, 21037, 3419, 287, 14631, 325, 672, 48624, 85, 19, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 16, 796, 45941, 13, 18747, 26933, 39706, 62, 16, 87, 11, 7906, 62, 16, 88, 11, 7906, 62, 16, 89, 35944, 51, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 17, 796, 45941, 13, 18747, 26933, 39706, 62, 17, 87, 11, 7906, 62, 17, 88, 11, 7906, 62, 17, 89, 35944, 51, 198, 220, 220, 220, 220, 220, 220, 220, 598, 796, 45941, 13, 18747, 26933, 1324, 13907, 60, 1635, 18896, 7, 22208, 62, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 13, 19119, 7, 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, 366, 22208, 62, 8818, 1298, 3184, 3955, 2200, 9864, 19006, 20273, 4561, 259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 1298, 3184, 3955, 2200, 9864, 19006, 20273, 4561, 259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 8818, 62, 22046, 1298, 685, 76, 16, 11, 285, 17, 11, 7906, 16, 11, 7906, 17, 11, 598, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 62, 22046, 1298, 685, 76, 16, 11, 285, 17, 11, 7906, 16, 11, 7906, 17, 11, 598, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 8818, 62, 7783, 62, 9630, 1298, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 62, 7783, 62, 9630, 1298, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1288, 361, 366, 31024, 3361, 85, 18, 1, 287, 5561, 320, 415, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 13, 19119, 7, 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, 366, 22208, 62, 8818, 1298, 3184, 47, 831, 296, 18274, 4487, 3955, 20031, 831, 296, 8068, 1292, 20273, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 1298, 3184, 47, 831, 296, 18274, 4487, 47, 831, 296, 47, 85, 17, 19006, 4561, 259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22208, 62, 8818, 62, 22046, 1298, 685, 76, 16, 11, 285, 17, 11, 7906, 62, 16, 89, 11, 7906, 62, 17, 89, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39706, 62, 8818, 62, 22046, 1298, 685, 76, 16, 11, 285, 17, 11, 7906, 62, 16, 89, 11, 7906, 62, 17, 89, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3184, 41502, 21093, 3855, 4561, 259, 15514, 4863, 4677, 13907, 320, 415, 7, 1324, 13907, 8, 1875, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7466, 262, 6769, 687, 338, 5387, 8748, 355, 19267, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3740, 1378, 18300, 13, 4604, 78, 13, 2398, 14, 75, 1416, 4215, 14, 75, 874, 84, 578, 16327, 14, 647, 469, 62, 8897, 3558, 14, 1065, 2154, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 11072, 62, 79, 796, 33166, 62, 79, 7, 22208, 62, 16, 11, 2347, 62, 17, 11, 7906, 62, 16, 87, 11, 7906, 62, 16, 88, 11, 7906, 62, 17, 87, 11, 7906, 62, 17, 88, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 14692, 39706, 62, 8818, 62, 22046, 1, 4083, 33295, 28264, 11072, 62, 79, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 14692, 39706, 62, 8818, 62, 22046, 1, 4083, 33295, 7, 37659, 13, 9107, 418, 62, 2339, 7, 22208, 62, 16, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 6769, 687, 705, 90, 92, 6, 318, 407, 1104, 416, 428, 2163, 526, 13, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5561, 320, 415, 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, 26498, 796, 10385, 62, 22046, 62, 1640, 62, 41684, 62, 36948, 7, 46265, 22046, 8, 198, 220, 220, 220, 611, 5021, 62, 14681, 318, 407, 6045, 290, 5021, 62, 14681, 58, 15, 60, 14512, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 41684, 62, 14681, 796, 5021, 62, 14681, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5561, 320, 415, 13, 21037, 3419, 287, 14631, 325, 672, 48624, 85, 19, 79, 1600, 366, 325, 672, 48624, 85, 19, 746, 76, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32916, 3255, 3804, 705, 14171, 6, 290, 705, 325, 672, 62, 33152, 6, 3689, 13, 2896, 13185, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27238, 307, 973, 351, 18540, 305, 919, 278, 13, 1002, 345, 4601, 284, 779, 2183, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25811, 11, 3387, 900, 4600, 41684, 62, 14681, 28, 14202, 63, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46265, 22046, 796, 479, 86, 22046, 13, 30073, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46265, 22046, 14692, 22208, 62, 8818, 62, 22046, 8973, 796, 479, 86, 22046, 14692, 22208, 62, 8818, 62, 22046, 1, 7131, 21912, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46265, 22046, 14692, 39706, 62, 8818, 62, 22046, 8973, 796, 479, 86, 22046, 14692, 39706, 62, 8818, 62, 22046, 1, 7131, 21912, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 46265, 22046, 14692, 12286, 62, 50, 4720, 15766, 49, 85, 19, 47, 62, 46265, 22046, 8973, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 796, 10385, 62, 22046, 62, 1640, 62, 41684, 62, 36948, 28264, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 351, 18540, 305, 919, 278, 13, 27201, 28264, 41684, 62, 14681, 8, 355, 5933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 45941, 13, 18747, 7, 4868, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41313, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5933, 13, 320, 499, 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, 4808, 48553, 62, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 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, 26498, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 256, 80, 36020, 28, 17821, 11, 1715, 2625, 36, 2100, 11927, 23884, 4197, 1911, 18982, 7, 1324, 13907, 320, 415, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 28, 6404, 1362, 11, 2472, 28, 11925, 7, 22208, 62, 16, 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, 1267, 737, 51, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 22208, 11, 2457, 62, 39706, 796, 685, 4357, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 48727, 796, 41313, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 7, 46265, 22046, 14692, 5907, 12629, 8973, 828, 256, 80, 36020, 28, 17821, 11, 2472, 28, 11925, 7, 22208, 62, 16, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1715, 2625, 36, 2100, 11927, 23884, 4197, 1911, 18982, 7, 1324, 13907, 320, 415, 828, 49706, 28, 6404, 1362, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 4808, 48727, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 4808, 48553, 62, 7783, 62, 20311, 62, 22208, 62, 392, 62, 20311, 62, 39706, 62, 6738, 62, 19204, 687, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 58, 72, 60, 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, 2457, 62, 22208, 13, 33295, 7, 7890, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2457, 62, 39706, 13, 33295, 7, 7890, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 685, 20311, 62, 22208, 11, 2457, 62, 39706, 60, 198, 220, 220, 220, 611, 1441, 62, 21013, 62, 1484, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 11, 685, 1324, 13907, 320, 415, 60, 198, 220, 220, 220, 1441, 1366, 628, 198, 4299, 2457, 62, 2787, 22057, 62, 48310, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 1635, 22046, 11, 277, 62, 9319, 28, 1238, 1539, 277, 62, 5420, 28, 1238, 1539, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 198, 220, 220, 220, 6608, 28, 14692, 20311, 62, 22208, 1600, 366, 20311, 62, 39706, 1600, 366, 20311, 62, 24585, 33116, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 11909, 44, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 6608, 286, 262, 2457, 49332, 7186, 422, 257, 12597, 39, 24589, 1262, 198, 220, 220, 220, 40034, 333, 3828, 378, 11414, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 45337, 198, 220, 220, 220, 277, 62, 9319, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1877, 8373, 2005, 12, 2364, 973, 287, 262, 3781, 13, 15161, 318, 1160, 7399, 198, 220, 220, 220, 277, 62, 5420, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 4941, 8373, 973, 287, 262, 3781, 13, 15161, 318, 1160, 7399, 198, 220, 220, 220, 2746, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 40034, 333, 3828, 378, 2746, 345, 4601, 284, 779, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 5561, 320, 415, 326, 373, 973, 13, 198, 220, 220, 220, 6608, 25, 1351, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1351, 286, 6608, 345, 4601, 284, 15284, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 5561, 320, 415, 326, 373, 973, 284, 7716, 262, 34319, 8405, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 764, 48624, 26791, 1330, 40034, 333, 62, 11147, 628, 220, 220, 220, 4197, 796, 40034, 333, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 22046, 11, 277, 62, 9319, 28, 69, 62, 9319, 11, 277, 62, 5420, 28, 69, 62, 5420, 11, 2746, 28, 19849, 11, 11414, 28, 48310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5561, 320, 415, 28, 1324, 13907, 320, 415, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 1441, 62, 21013, 62, 1484, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4197, 11, 685, 19849, 60, 198, 220, 220, 220, 1441, 4197, 628, 198, 4299, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 24723, 7, 198, 220, 220, 220, 1635, 22046, 11, 23057, 11147, 2625, 23913, 1600, 2457, 62, 39706, 28, 14202, 11, 1441, 62, 21013, 62, 1484, 28, 25101, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 7186, 422, 257, 12597, 39, 24589, 1262, 23057, 11414, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 23057, 11147, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 4197, 345, 4601, 284, 779, 13, 1002, 345, 4601, 284, 779, 257, 662, 919, 278, 4197, 198, 220, 220, 220, 220, 220, 220, 220, 3387, 779, 262, 15582, 705, 3866, 919, 278, 23330, 92, 4458, 18982, 7, 11147, 62, 3672, 737, 1002, 345, 4601, 198, 220, 220, 220, 220, 220, 220, 220, 284, 423, 281, 2811, 23057, 4197, 11, 788, 1208, 705, 23913, 6, 198, 220, 220, 220, 2457, 62, 39706, 25, 12178, 14, 37659, 13, 358, 18747, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 662, 785, 17128, 2457, 7906, 286, 262, 49332, 13, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 11414, 326, 547, 973, 13, 5514, 973, 618, 23057, 11147, 11639, 23913, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 32317, 388, 6874, 13, 70, 86, 13, 1102, 47178, 1330, 299, 81, 26791, 628, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 48624, 26791, 11, 366, 11848, 71, 62, 20311, 62, 22208, 62, 23913, 4943, 198, 220, 220, 220, 1288, 361, 366, 6839, 316, 282, 1, 287, 23057, 11147, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 20311, 62, 22208, 62, 13159, 62, 2777, 23062, 62, 15730, 316, 282, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 20311, 62, 22208, 62, 13159, 62, 3866, 919, 278, 23330, 92, 1911, 18982, 7, 24723, 11147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 366, 258, 3400, 1, 287, 23057, 11147, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 25439, 46491, 22046, 11, 2457, 62, 39706, 28, 20311, 62, 39706, 8, 198, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 25439, 46491, 22046, 11, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 8, 198, 220, 220, 220, 1441, 25439, 46491, 22046, 8, 628, 198, 4299, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 1635, 22046, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 11909, 44, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 7186, 422, 257, 12597, 39, 24589, 1262, 40034, 333, 3828, 378, 198, 220, 220, 220, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1366, 796, 2457, 62, 2787, 22057, 62, 48310, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 22046, 11, 2746, 28, 19849, 11, 6608, 28, 14692, 20311, 62, 22208, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5561, 320, 415, 28, 1324, 13907, 320, 415, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 1441, 62, 21013, 62, 1484, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 58, 15, 7131, 1, 20311, 62, 22208, 33116, 1366, 58, 16, 60, 198, 220, 220, 220, 1441, 1366, 14692, 20311, 62, 22208, 8973, 628, 198, 4299, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 19204, 687, 46491, 22046, 11, 10896, 33, 39, 28, 25101, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 7186, 422, 257, 12597, 39, 14, 8035, 33, 39, 24589, 1262, 257, 1813, 198, 220, 220, 220, 5561, 320, 415, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 10896, 33, 39, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 779, 10896, 33, 39, 6769, 687, 11414, 13, 15161, 10352, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 10896, 33, 39, 393, 366, 5907, 34369, 1, 287, 479, 86, 22046, 13, 1136, 7203, 1324, 13907, 320, 415, 1600, 366, 11074, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 20311, 62, 6738, 62, 36733, 62, 8035, 33, 39, 46491, 22046, 11, 12429, 46265, 22046, 38381, 16, 60, 198, 220, 220, 220, 1441, 4808, 20311, 62, 6738, 62, 36733, 62, 15199, 39, 46491, 22046, 11, 12429, 46265, 22046, 38381, 15, 60, 628, 198, 4299, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 24723, 7, 198, 220, 220, 220, 1635, 22046, 11, 23057, 11147, 2625, 23913, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 7906, 7186, 422, 257, 12597, 39, 24589, 1262, 23057, 11414, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 23057, 11147, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 4197, 345, 4601, 284, 779, 13, 1002, 345, 4601, 284, 779, 257, 662, 919, 278, 4197, 198, 220, 220, 220, 220, 220, 220, 220, 3387, 779, 262, 15582, 705, 3866, 919, 278, 23330, 92, 4458, 18982, 7, 11147, 62, 3672, 737, 1002, 345, 4601, 198, 220, 220, 220, 220, 220, 220, 220, 284, 423, 281, 2811, 23057, 4197, 11, 788, 1208, 705, 23913, 6, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 11414, 326, 547, 973, 13, 5514, 973, 618, 23057, 11147, 11639, 23913, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 32317, 388, 6874, 13, 70, 86, 13, 1102, 47178, 1330, 299, 81, 26791, 628, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 48624, 26791, 11, 366, 11848, 71, 62, 20311, 62, 39706, 62, 23913, 62, 3866, 919, 278, 4943, 198, 220, 220, 220, 1288, 361, 366, 6839, 1, 287, 23057, 11147, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 20311, 62, 39706, 62, 13159, 62, 2777, 23062, 62, 15730, 316, 282, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1288, 361, 366, 3866, 919, 278, 1, 287, 23057, 11147, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 20311, 62, 39706, 62, 3866, 919, 278, 23330, 92, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23057, 11147, 13, 35312, 7203, 3866, 919, 278, 62, 4943, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 20311, 62, 39706, 62, 13159, 62, 3866, 919, 278, 23330, 92, 1911, 18982, 7, 24723, 11147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 25439, 46491, 22046, 11, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 8, 198, 220, 220, 220, 1441, 25439, 46491, 22046, 8, 628, 198, 4299, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 1635, 22046, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 11909, 44, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 7906, 7186, 422, 257, 12597, 39, 24589, 1262, 40034, 333, 3828, 378, 198, 220, 220, 220, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1366, 796, 2457, 62, 2787, 22057, 62, 48310, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 22046, 11, 2746, 28, 19849, 11, 6608, 28, 14692, 20311, 62, 39706, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 11, 5561, 320, 415, 28, 1324, 13907, 320, 415, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 1441, 62, 21013, 62, 1484, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 58, 15, 7131, 1, 20311, 62, 39706, 33116, 1366, 58, 16, 60, 198, 220, 220, 220, 1441, 1366, 14692, 20311, 62, 39706, 8973, 628, 198, 4299, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 19204, 687, 46491, 22046, 11, 10896, 33, 39, 28, 25101, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 7906, 7186, 422, 257, 12597, 39, 14, 8035, 33, 39, 24589, 1262, 257, 1813, 198, 220, 220, 220, 5561, 320, 415, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 10896, 33, 39, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 779, 10896, 33, 39, 6769, 687, 11414, 13, 15161, 10352, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 10896, 33, 39, 393, 366, 5907, 34369, 1, 287, 479, 86, 22046, 13, 1136, 7203, 1324, 13907, 320, 415, 1600, 366, 11074, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 20311, 62, 6738, 62, 36733, 62, 8035, 33, 39, 46491, 22046, 11, 12429, 46265, 22046, 38381, 16, 60, 198, 220, 220, 220, 1441, 4808, 20311, 62, 6738, 62, 36733, 62, 15199, 39, 46491, 22046, 11, 12429, 46265, 22046, 38381, 16, 60, 628, 198, 4299, 2457, 62, 24585, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 1635, 22046, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 11909, 44, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 4829, 286, 262, 49332, 7186, 422, 257, 12597, 39, 24589, 198, 220, 220, 220, 1262, 40034, 333, 3828, 378, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1366, 796, 2457, 62, 2787, 22057, 62, 48310, 62, 6738, 62, 41256, 333, 3828, 378, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 22046, 11, 2746, 28, 19849, 11, 6608, 28, 14692, 20311, 62, 24585, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 11, 5561, 320, 415, 28, 1324, 13907, 320, 415, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 1441, 62, 21013, 62, 1484, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 58, 15, 7131, 1, 20311, 62, 24585, 33116, 1366, 58, 16, 60, 198, 220, 220, 220, 1441, 1366, 14692, 20311, 62, 24585, 8973, 628, 198, 4299, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 7, 198, 220, 220, 220, 1635, 22046, 11, 2446, 2625, 24723, 1600, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 1600, 23057, 11147, 2625, 23913, 1600, 198, 220, 220, 220, 2457, 62, 39706, 28, 14202, 11, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 7186, 422, 257, 12597, 39, 24589, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 4165, 2134, 198, 220, 220, 220, 2347, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 9233, 2134, 198, 220, 220, 220, 7906, 62, 16, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 19874, 351, 262, 32362, 32558, 12858, 198, 220, 220, 220, 7906, 62, 17, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 19874, 351, 262, 32362, 32558, 12858, 198, 220, 220, 220, 2446, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 345, 4601, 284, 779, 284, 15284, 262, 2457, 2347, 286, 24589, 13, 15467, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 11, 40034, 333, 3828, 378, 393, 6769, 687, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 5561, 320, 415, 345, 4601, 284, 779, 611, 262, 7147, 2446, 318, 6769, 687, 198, 220, 220, 220, 220, 220, 220, 220, 393, 40034, 333, 3828, 378, 198, 220, 220, 220, 23057, 31805, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 23057, 4197, 345, 4601, 284, 779, 611, 7147, 2446, 318, 23057, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 23057, 11414, 326, 547, 973, 13, 5514, 973, 618, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 31805, 11639, 23913, 6, 393, 618, 2446, 11639, 41256, 333, 3828, 378, 6, 198, 220, 220, 220, 2746, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 40034, 333, 3828, 378, 2746, 284, 779, 618, 22232, 262, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2446, 13, 21037, 3419, 6624, 366, 48624, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 20786, 796, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 24723, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24723, 11147, 1298, 23057, 11147, 11, 366, 20311, 62, 39706, 1298, 2457, 62, 39706, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 7783, 62, 21013, 62, 1484, 1298, 1441, 62, 21013, 62, 1484, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 1288, 361, 366, 77, 3808, 333, 1, 287, 2446, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 20786, 796, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 11, 366, 7783, 62, 21013, 62, 1484, 1298, 1441, 62, 21013, 62, 1484, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19849, 1298, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2347, 62, 20786, 796, 2457, 62, 22208, 62, 1659, 62, 647, 1362, 62, 6738, 62, 19204, 687, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 19779, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 92, 628, 220, 220, 220, 1441, 2347, 62, 20786, 46491, 22046, 11, 12429, 46265, 22046, 8, 628, 198, 4299, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 7, 198, 220, 220, 220, 1635, 22046, 11, 2446, 2625, 24723, 1600, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 1600, 23057, 11147, 2625, 23913, 1600, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 28, 25101, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 2347, 7186, 422, 257, 12597, 39, 24589, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 4165, 2134, 198, 220, 220, 220, 2347, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 9233, 2134, 198, 220, 220, 220, 257, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 7842, 10455, 198, 220, 220, 220, 257, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 7842, 10455, 198, 220, 220, 220, 26500, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 26500, 9848, 422, 262, 32362, 32558, 12858, 198, 220, 220, 220, 26500, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 26500, 9848, 422, 262, 32362, 32558, 198, 220, 220, 220, 220, 220, 220, 220, 12858, 198, 220, 220, 220, 872, 72, 62, 1065, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 8405, 329, 262, 9848, 1022, 262, 287, 12, 14382, 7906, 198, 220, 220, 220, 220, 220, 220, 220, 6805, 198, 220, 220, 220, 2446, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 345, 4601, 284, 779, 284, 15284, 262, 2457, 2347, 286, 24589, 13, 15467, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 11, 40034, 333, 3828, 378, 393, 6769, 687, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 5561, 320, 415, 345, 4601, 284, 779, 611, 262, 7147, 2446, 318, 6769, 687, 198, 220, 220, 220, 220, 220, 220, 220, 393, 40034, 333, 3828, 378, 198, 220, 220, 220, 23057, 31805, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 23057, 4197, 345, 4601, 284, 779, 611, 7147, 2446, 318, 23057, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 23057, 11414, 326, 547, 973, 13, 5514, 973, 618, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 31805, 11639, 23913, 6, 393, 618, 2446, 11639, 41256, 333, 3828, 378, 6, 198, 220, 220, 220, 2746, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 40034, 333, 3828, 378, 2746, 284, 779, 618, 22232, 262, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2446, 13, 21037, 3419, 6624, 366, 48624, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 20786, 796, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 24723, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 19779, 24723, 11147, 1298, 23057, 11147, 11, 366, 7783, 62, 21013, 62, 1484, 1298, 1441, 62, 21013, 62, 1484, 92, 198, 220, 220, 220, 1288, 361, 366, 77, 3808, 333, 1, 287, 2446, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 20786, 796, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 11, 366, 7783, 62, 21013, 62, 1484, 1298, 1441, 62, 21013, 62, 1484, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19849, 1298, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7906, 62, 20786, 796, 2457, 62, 39706, 62, 1659, 62, 647, 1362, 62, 6738, 62, 19204, 687, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 19779, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 92, 628, 220, 220, 220, 1441, 7906, 62, 20786, 46491, 22046, 11, 12429, 46265, 22046, 8, 628, 198, 4299, 2457, 62, 24585, 62, 1659, 62, 647, 1362, 7, 198, 220, 220, 220, 1635, 22046, 11, 2446, 2625, 24723, 1600, 5561, 320, 415, 2625, 50, 4720, 15766, 49, 85, 19, 1600, 23057, 11147, 2625, 23913, 1600, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 10352, 11, 2746, 2625, 41256, 333, 22, 49506, 19, 8413, 22057, 1, 198, 2599, 198, 220, 220, 220, 37227, 13615, 262, 2457, 4829, 15432, 286, 262, 49332, 7186, 422, 257, 12597, 39, 24589, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 4165, 2134, 198, 220, 220, 220, 2347, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 9233, 2134, 198, 220, 220, 220, 257, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 7842, 10455, 198, 220, 220, 220, 257, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 7842, 10455, 198, 220, 220, 220, 26500, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 26500, 9848, 422, 262, 32362, 32558, 12858, 198, 220, 220, 220, 26500, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 26500, 9848, 422, 262, 32362, 32558, 198, 220, 220, 220, 220, 220, 220, 220, 12858, 198, 220, 220, 220, 872, 72, 62, 1065, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 8405, 329, 262, 9848, 1022, 262, 287, 12, 14382, 7906, 198, 220, 220, 220, 220, 220, 220, 220, 6805, 198, 220, 220, 220, 2446, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 345, 4601, 284, 779, 284, 15284, 262, 2457, 4829, 286, 24589, 13, 15467, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 11, 40034, 333, 3828, 378, 393, 6769, 687, 198, 220, 220, 220, 5561, 320, 415, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 5561, 320, 415, 345, 4601, 284, 779, 611, 262, 7147, 2446, 318, 6769, 687, 198, 220, 220, 220, 220, 220, 220, 220, 393, 40034, 333, 3828, 378, 198, 220, 220, 220, 23057, 31805, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 23057, 4197, 345, 4601, 284, 779, 611, 7147, 2446, 318, 23057, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 23057, 11414, 326, 547, 973, 13, 5514, 973, 618, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 31805, 11639, 23913, 6, 393, 618, 2446, 11639, 41256, 333, 3828, 378, 6, 198, 220, 220, 220, 2746, 25, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 40034, 333, 3828, 378, 2746, 284, 779, 618, 22232, 262, 11414, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 366, 77, 3808, 333, 1, 407, 287, 2446, 13, 21037, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21327, 345, 460, 691, 670, 503, 262, 2457, 4829, 15432, 1262, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 41256, 333, 3828, 378, 11414, 526, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 15432, 62, 20786, 796, 2457, 62, 24585, 62, 1659, 62, 647, 1362, 62, 6738, 62, 41256, 333, 3828, 378, 198, 220, 220, 220, 479, 86, 22046, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1324, 13907, 320, 415, 1298, 5561, 320, 415, 11, 366, 7783, 62, 21013, 62, 1484, 1298, 1441, 62, 21013, 62, 1484, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 19849, 1298, 2746, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 1441, 15432, 62, 20786, 46491, 22046, 11, 12429, 46265, 22046, 8, 628, 198, 4299, 9103, 62, 75, 7230, 16579, 62, 1659, 62, 647, 1362, 46491, 22046, 11, 23057, 11147, 2625, 23913, 1600, 1441, 62, 21013, 62, 1484, 28, 25101, 2599, 198, 220, 220, 220, 37227, 13615, 262, 9103, 29763, 16579, 286, 281, 19874, 12, 39706, 12597, 39, 1262, 23057, 11414, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2347, 62, 16, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 4165, 2134, 198, 220, 220, 220, 2347, 62, 17, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 14568, 329, 262, 9233, 2134, 198, 220, 220, 220, 7906, 62, 16, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 4165, 7906, 19874, 351, 262, 32362, 32558, 12858, 198, 220, 220, 220, 7906, 62, 17, 89, 25, 12178, 14, 37659, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 14, 18747, 286, 9233, 7906, 19874, 351, 262, 32362, 32558, 12858, 198, 220, 220, 220, 23057, 31805, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 23057, 4197, 345, 4601, 284, 779, 611, 7147, 2446, 318, 23057, 198, 220, 220, 220, 1441, 62, 21013, 62, 1484, 25, 347, 970, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6407, 11, 1441, 262, 23057, 11414, 326, 547, 973, 13, 5514, 973, 618, 198, 220, 220, 220, 220, 220, 220, 220, 23057, 31805, 11639, 23913, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 32317, 388, 6874, 13, 70, 86, 13, 1102, 47178, 1330, 299, 81, 26791, 628, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 48624, 26791, 11, 366, 11848, 71, 62, 36729, 62, 75, 7230, 16579, 62, 23913, 4943, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 796, 651, 35226, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 81, 26791, 11, 366, 11848, 71, 62, 36729, 62, 75, 7230, 16579, 62, 13159, 62, 3866, 919, 278, 23330, 92, 1911, 18982, 7, 24723, 11147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 23057, 11147, 13, 21037, 3419, 6624, 366, 23913, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 25439, 46491, 22046, 11, 1441, 62, 21013, 62, 1484, 28, 7783, 62, 21013, 62, 1484, 8, 198, 220, 220, 220, 1441, 25439, 46491, 22046, 8, 198 ]
2.361624
11,653
# PA Well Permit Scraper import re from datetime import datetime, timedelta import xlrd #import uuid from string import Template from xml.sax.saxutils import escape from dateutil.parser import parse as parse_date from scrapy.spider import BaseSpider from scrapy.contrib.loader import ItemLoader from scrapy.http import Request, Response, TextResponse from scrapy.contrib.loader.processor import TakeFirst, MapCompose, Join from scrapy.shell import inspect_response from scrapy import log #from scrapy.stats import stats from nrc.items import PA_DrillingPermit, FeedEntry, FeedEntryTag from nrc.database import NrcDatabase from nrc.NrcBot import NrcBot from nrc.AtomPubScraper import AtomPubScraper
[ 2, 8147, 3894, 2448, 2781, 1446, 38545, 198, 198, 11748, 302, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 28805, 12514, 198, 11748, 2124, 75, 4372, 198, 2, 11748, 334, 27112, 198, 6738, 4731, 1330, 37350, 198, 6738, 35555, 13, 82, 897, 13, 82, 897, 26791, 1330, 6654, 198, 6738, 3128, 22602, 13, 48610, 1330, 21136, 355, 21136, 62, 4475, 198, 198, 6738, 15881, 88, 13, 2777, 1304, 1330, 7308, 41294, 198, 6738, 15881, 88, 13, 3642, 822, 13, 29356, 1330, 9097, 17401, 198, 6738, 15881, 88, 13, 4023, 1330, 19390, 11, 18261, 11, 8255, 31077, 198, 6738, 15881, 88, 13, 3642, 822, 13, 29356, 13, 41341, 1330, 7214, 5962, 11, 9347, 7293, 577, 11, 15251, 198, 6738, 15881, 88, 13, 29149, 1330, 10104, 62, 26209, 198, 6738, 15881, 88, 1330, 2604, 198, 2, 6738, 15881, 88, 13, 34242, 1330, 9756, 198, 198, 6738, 299, 6015, 13, 23814, 1330, 8147, 62, 6187, 4509, 5990, 2781, 11, 18272, 30150, 11, 18272, 30150, 24835, 198, 6738, 299, 6015, 13, 48806, 1330, 399, 6015, 38105, 198, 6738, 299, 6015, 13, 45, 6015, 20630, 1330, 399, 6015, 20630, 198, 6738, 299, 6015, 13, 2953, 296, 14876, 3351, 38545, 1330, 33102, 14876, 3351, 38545, 628 ]
3.51
200
from bitcoinaddress import Wallet import os from multiprocessing import Process import argparse import sys import signal # Set the signal handler signal.signal(signal.SIGINT, handler) parser = argparse.ArgumentParser() parser.add_argument("-o", "--output", action='store', dest='output', help="Results will write this file.") parser.add_argument("-p", "--maxprocess", action='store', dest='maxprocess', help="Maximum process. Default 5") parser.add_argument("-i", "--input", action='store', dest='input', help="Select input address file") args = parser.parse_args() inputFileName = "" outputFileName = "" maximumProcess = 5 if args.input: inputFileName = args.input else: sys.exit("Please select input file with -i addresses.txt") if args.output: outputFileName = args.output else: sys.exit("Please select output file with -o results.txt") if args.maxprocess: maximumProcess = int(args.maxprocess) global addressArray addressArray = {} if __name__ == "__main__": read.readFromText() processes = [Process(target=cm.multitask, args=(0,))] i = 0 while i < maximumProcess: processes.append(Process(target=cm.multitask, args=((i+1),))) i+=1 for process in processes: process.start() for process in processes: process.join()
[ 6738, 8550, 21975, 1330, 37249, 201, 198, 11748, 28686, 201, 198, 6738, 18540, 305, 919, 278, 1330, 10854, 201, 198, 11748, 1822, 29572, 201, 198, 11748, 25064, 201, 198, 11748, 6737, 201, 198, 2, 5345, 262, 6737, 21360, 201, 198, 12683, 282, 13, 12683, 282, 7, 12683, 282, 13, 50, 3528, 12394, 11, 21360, 8, 201, 198, 201, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 201, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 78, 1600, 366, 438, 22915, 1600, 2223, 11639, 8095, 3256, 2244, 11639, 22915, 3256, 1037, 2625, 25468, 481, 3551, 428, 2393, 19570, 201, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 79, 1600, 366, 438, 9806, 14681, 1600, 2223, 11639, 8095, 3256, 2244, 11639, 9806, 14681, 3256, 1037, 2625, 40541, 1429, 13, 15161, 642, 4943, 201, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 72, 1600, 366, 438, 15414, 1600, 2223, 11639, 8095, 3256, 2244, 11639, 15414, 3256, 1037, 2625, 17563, 5128, 2209, 2393, 4943, 201, 198, 201, 198, 201, 198, 22046, 796, 30751, 13, 29572, 62, 22046, 3419, 201, 198, 15414, 8979, 5376, 796, 13538, 201, 198, 22915, 8979, 5376, 796, 13538, 201, 198, 47033, 18709, 796, 642, 201, 198, 361, 26498, 13, 15414, 25, 201, 198, 220, 220, 220, 5128, 8979, 5376, 796, 26498, 13, 15414, 201, 198, 17772, 25, 201, 198, 220, 220, 220, 25064, 13, 37023, 7203, 5492, 2922, 5128, 2393, 351, 532, 72, 9405, 13, 14116, 4943, 201, 198, 220, 220, 220, 220, 201, 198, 361, 26498, 13, 22915, 25, 201, 198, 220, 220, 220, 5072, 8979, 5376, 796, 26498, 13, 22915, 201, 198, 17772, 25, 201, 198, 220, 220, 220, 25064, 13, 37023, 7203, 5492, 2922, 5072, 2393, 351, 532, 78, 2482, 13, 14116, 4943, 201, 198, 220, 220, 220, 220, 201, 198, 361, 26498, 13, 9806, 14681, 25, 201, 198, 220, 220, 220, 5415, 18709, 796, 493, 7, 22046, 13, 9806, 14681, 8, 201, 198, 201, 198, 201, 198, 20541, 2209, 19182, 201, 198, 21975, 19182, 796, 23884, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 201, 198, 201, 198, 220, 220, 220, 1100, 13, 961, 4863, 8206, 3419, 201, 198, 220, 220, 220, 7767, 796, 685, 18709, 7, 16793, 28, 11215, 13, 16680, 270, 2093, 11, 26498, 16193, 15, 11, 4008, 60, 201, 198, 220, 220, 220, 1312, 796, 657, 201, 198, 220, 220, 220, 981, 1312, 1279, 5415, 18709, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7767, 13, 33295, 7, 18709, 7, 16793, 28, 11215, 13, 16680, 270, 2093, 11, 26498, 16193, 7, 72, 10, 16, 828, 22305, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 47932, 16, 201, 198, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 329, 1429, 287, 7767, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1429, 13, 9688, 3419, 201, 198, 201, 198, 220, 220, 220, 329, 1429, 287, 7767, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1429, 13, 22179, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198 ]
2.683495
515
import django from django.conf import settings from django.db import transaction from django.contrib.auth import get_user_model django.setup() from billing.models import Account, Payment from billing.utils import complete_payment USER = get_user_model()
[ 11748, 42625, 14208, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 9945, 1330, 8611, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 1330, 651, 62, 7220, 62, 19849, 198, 198, 28241, 14208, 13, 40406, 3419, 198, 198, 6738, 26297, 13, 27530, 1330, 10781, 11, 28784, 198, 6738, 26297, 13, 26791, 1330, 1844, 62, 37301, 628, 198, 29904, 796, 651, 62, 7220, 62, 19849, 3419, 628, 198 ]
3.611111
72
"""Vistas de miembros del círculo""" # Django REST Framework from rest_framework import mixins, viewsets, status from rest_framework.generics import get_object_or_404 from rest_framework.decorators import action from rest_framework.response import Response # Models from cride.circles.models import Circle, Membership, Invitation # Permissions from rest_framework.permissions import IsAuthenticated from cride.circles.permissions.memberships import IsActiveCircleMember, IsSelfMember # Serializers from cride.circles.serializers import MembershipModelSerializer, AddMemberSerializer class MembershipViewSet( mixins.ListModelMixin, mixins.CreateModelMixin, mixins.RetrieveModelMixin, mixins.DestroyModelMixin, viewsets.GenericViewSet ): """Conjunto de vistas de miembros de círculo.""" serializer_class = MembershipModelSerializer def dispatch(self, request, *args, **kwargs): """Verifica que exista el circulo.""" slug_name = kwargs['slug_name'] # Es el nombre de la llave que mandamos en la url # Creamos una nueva variable para obtener el circulo requerido self.circle = get_object_or_404( Circle, slug_name=slug_name ) # Esto es equivalente a usar: # try: Circle.objects.get(slug_name=slug_name) # exception: Circle.DoesNotExist: # Http404("<algun mensaje>") # Con la diferencia de que con este metodo podremos personalizar el # raise que se envia. return super(MembershipViewSet, self).dispatch(request, *args, **kwargs) # Dejamos que se ejecute en # metodo dispath por defecto y lo retornamos ambos. # Ahora cada que se ejecute esta clase que sea instanciada hara primeramente la verificacion del # circulo def get_permissions(self): """Asigna permisos basados en la accion""" permissions = [IsAuthenticated] if self.action != 'create': permissions.append(IsActiveCircleMember) if self.action == 'invitations': permissions.append(IsSelfMember) return [p() for p in permissions] def get_queryset(self): """Returna los miembros del circulo""" return Membership.objects.filter( circle=self.circle, is_active=True ) def get_object(self): """Retorna el miembro del círculo utilizando el nombre de usuario del usuario""" return get_object_or_404( Membership, user__username=self.kwargs['pk'], # Obtenemos el valor de username atravez de la url que enviemos # desde un cliente la llave es pk por que para mixin se obtiene un objeto con identificado, # pero como el username tambien funciona como indentificador, lo cambiamos, pero el el nombre # de la llave es la misma circle=self.circle, is_active=True ) def perform_destroy(self, instance): """Desabilita la membresia""" instance.is_active = False # En vez de eliminar al miembro simplemente colocamos el campo is_active a # False para que las demas vistas esten bloqueeadas por no tener el permiso. instance.save() @action(detail=True, methods=['get']) def invitations(self, request, *args, **kwargs): """Recuperar el desglose de invitaciones de un miembro Devolverá una lista que contiene todos los miembros que han usado sus invitaciones y otra lista que contiene las invitaciones que aún no se han usado. """ member = self.get_object() # Obtenemos el objeto de detalle (el miembro) invited_members = Membership.objects.filter( circle=self.circle, invited_by=request.user, is_active=True ) # Trae a los miembro que fueron invitados por el usuario colocado en la url unsed_invitations = Invitation.objects.filter( circle=self.circle, issued_by=request.user, used=False, ).values_list('code') # Invitaciones no utilizadas.Colocamos values_list('code') para que nos lista # solo los valores de codigo. Esta lista es un poco rara. diff = member.remaining_invitations-len(unsed_invitations) # Sacamos la difencia del numero # invitaciones que le quedan por usar, contra las invitaciones que envio pero no son usadas. # Esto es para generar el codigo de invitaciones. por que por defecto seran el numero maximo. invitations = [x[0] for x in unsed_invitations] # La lista que nos devolvia el unsed_invitations tenian # de elementos tuplas. Pero no nosotros solo queremos los codigos, entonces recoremos la lista y la # llenamos en otra pero con los los elemento de la tupla. for i in range(0, diff): # recorre el for mietras diff sea mayor a cero. En otras palabras si ya # gasto todas sus invitaciones restantes y tiene las invitaciones no son usadas no entrara al for. invitations.append( Invitation.objects.create( issued_by=request.user, circle=self.circle ).code # Solo devolvemos el codigo para que se pueda agregar a la lista de strings. ) # Este for solo se activara cuando la primera vez que consulte, y cuando se le aumenten un numero # de ivitaciones. data = { 'used_invitations': MembershipModelSerializer(invited_members, many=True).data, 'invitations': invitations } return Response(data) def create(self, request, *args, **kwargs): """Maneja la creación de miembros desde el código de invitación.""" serializer = AddMemberSerializer( data=request.data, # Cambiamos los datos recibidos(Json) a un diccionario context={'circle': self.circle, 'request': request} # Los serializers tambien pueden recibir otros # datos ademas de la data, para esto usamos la variable context, mandamos request para que el # serializer pueda saber el usuario de la peticion. ) serializer.is_valid(raise_exception=True) member = serializer.save() data = self.get_serializer(member).data # No usamos el serializer AddMemberSerializer. Si no el # serializador que se coloco en la variable serializer_class puesto que ya esta personalizado para # mostrar con mas detalle return Response(data, status=status.HTTP_201_CREATED)
[ 37811, 53, 37503, 390, 21504, 24419, 4951, 1619, 269, 8836, 81, 3129, 78, 37811, 198, 198, 2, 37770, 30617, 25161, 198, 6738, 1334, 62, 30604, 1330, 5022, 1040, 11, 5009, 1039, 11, 3722, 198, 6738, 1334, 62, 30604, 13, 8612, 873, 1330, 651, 62, 15252, 62, 273, 62, 26429, 198, 6738, 1334, 62, 30604, 13, 12501, 273, 2024, 1330, 2223, 198, 6738, 1334, 62, 30604, 13, 26209, 1330, 18261, 198, 198, 2, 32329, 198, 6738, 1067, 485, 13, 66, 343, 5427, 13, 27530, 1330, 16291, 11, 37939, 11, 10001, 3780, 628, 198, 2, 2448, 8481, 198, 6738, 1334, 62, 30604, 13, 525, 8481, 1330, 1148, 47649, 3474, 198, 6738, 1067, 485, 13, 66, 343, 5427, 13, 525, 8481, 13, 30814, 5748, 1330, 1148, 13739, 31560, 293, 27608, 11, 1148, 24704, 27608, 198, 198, 2, 23283, 11341, 198, 6738, 1067, 485, 13, 66, 343, 5427, 13, 46911, 11341, 1330, 37939, 17633, 32634, 7509, 11, 3060, 27608, 32634, 7509, 628, 198, 4871, 37939, 7680, 7248, 7, 198, 220, 220, 220, 5022, 1040, 13, 8053, 17633, 35608, 259, 11, 198, 220, 220, 220, 5022, 1040, 13, 16447, 17633, 35608, 259, 11, 198, 220, 220, 220, 5022, 1040, 13, 9781, 30227, 17633, 35608, 259, 11, 198, 220, 220, 220, 5022, 1040, 13, 49174, 17633, 35608, 259, 11, 198, 220, 220, 220, 5009, 1039, 13, 46189, 7680, 7248, 198, 2599, 198, 220, 220, 220, 37227, 3103, 29741, 1462, 390, 410, 37503, 390, 21504, 24419, 4951, 390, 269, 8836, 81, 3129, 78, 526, 15931, 198, 220, 220, 220, 11389, 7509, 62, 4871, 796, 37939, 17633, 32634, 7509, 628, 220, 220, 220, 825, 27965, 7, 944, 11, 2581, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13414, 811, 64, 8358, 2152, 64, 1288, 2498, 43348, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 31065, 62, 3672, 796, 479, 86, 22046, 17816, 6649, 1018, 62, 3672, 20520, 220, 1303, 8678, 1288, 299, 2381, 260, 390, 8591, 32660, 1015, 8358, 6855, 321, 418, 551, 8591, 19016, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 19979, 418, 555, 64, 299, 518, 6862, 7885, 31215, 909, 83, 877, 1288, 2498, 43348, 1038, 263, 17305, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 45597, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16291, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31065, 62, 3672, 28, 6649, 1018, 62, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 1303, 10062, 78, 1658, 7548, 68, 257, 514, 283, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1949, 25, 16291, 13, 48205, 13, 1136, 7, 6649, 1018, 62, 3672, 28, 6649, 1018, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6631, 25, 16291, 13, 13921, 3673, 3109, 396, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 367, 29281, 26429, 7203, 27, 282, 7145, 285, 641, 1228, 68, 29, 4943, 1303, 1482, 8591, 288, 361, 567, 10782, 544, 390, 8358, 369, 43577, 1138, 24313, 24573, 2787, 418, 2614, 528, 283, 1288, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5298, 8358, 384, 551, 8869, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2208, 7, 25341, 1056, 7680, 7248, 11, 2116, 737, 6381, 17147, 7, 25927, 11, 1635, 22046, 11, 12429, 46265, 22046, 8, 220, 1303, 1024, 39159, 418, 8358, 384, 304, 73, 721, 1133, 551, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1138, 24313, 4596, 776, 16964, 11855, 78, 331, 2376, 1005, 1211, 321, 418, 4915, 418, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7900, 5799, 269, 4763, 8358, 384, 304, 73, 721, 1133, 1556, 64, 537, 589, 8358, 5417, 916, 272, 979, 4763, 289, 3301, 33270, 3263, 68, 8591, 3326, 811, 49443, 1619, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2498, 43348, 628, 220, 220, 220, 825, 651, 62, 525, 8481, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1722, 570, 64, 9943, 271, 418, 1615, 22484, 551, 8591, 697, 295, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 21627, 796, 685, 3792, 47649, 3474, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 2673, 14512, 705, 17953, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21627, 13, 33295, 7, 3792, 13739, 31560, 293, 27608, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 2673, 6624, 705, 16340, 20597, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21627, 13, 33295, 7, 3792, 24704, 27608, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 79, 3419, 329, 279, 287, 21627, 60, 628, 220, 220, 220, 825, 651, 62, 10819, 893, 316, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 64, 22346, 21504, 24419, 4951, 1619, 2498, 43348, 37811, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 37939, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9197, 28, 944, 13, 45597, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 5275, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 651, 62, 15252, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 9781, 1211, 64, 1288, 21504, 368, 7957, 1619, 269, 8836, 81, 3129, 78, 7736, 528, 25440, 1288, 299, 2381, 260, 390, 514, 84, 4982, 1619, 514, 84, 4982, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 62, 15252, 62, 273, 62, 26429, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37939, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 834, 29460, 28, 944, 13, 46265, 22046, 17816, 79, 74, 6, 4357, 220, 1303, 1835, 1452, 368, 418, 1288, 1188, 273, 390, 20579, 379, 5758, 89, 390, 8591, 19016, 8358, 551, 8903, 368, 418, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 748, 2934, 555, 5456, 68, 8591, 32660, 1015, 1658, 279, 74, 16964, 8358, 31215, 5022, 259, 384, 909, 20259, 1734, 555, 26181, 27206, 369, 1852, 811, 4533, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 583, 78, 401, 78, 1288, 20579, 256, 4131, 2013, 25439, 32792, 401, 78, 33793, 811, 7079, 11, 2376, 269, 4131, 1789, 418, 11, 583, 78, 1288, 1288, 299, 2381, 260, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 390, 8591, 32660, 1015, 1658, 8591, 32691, 64, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9197, 28, 944, 13, 45597, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 5275, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 1620, 62, 41659, 7, 944, 11, 4554, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5960, 14991, 5350, 8591, 1066, 65, 411, 544, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 4554, 13, 271, 62, 5275, 796, 10352, 220, 1303, 2039, 1569, 89, 390, 5687, 22050, 435, 21504, 368, 7957, 2829, 434, 68, 951, 420, 321, 418, 1288, 1413, 78, 318, 62, 5275, 257, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10352, 31215, 8358, 39990, 1357, 292, 410, 37503, 1556, 268, 24924, 4188, 1329, 292, 16964, 645, 256, 877, 1288, 9943, 26786, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4554, 13, 21928, 3419, 628, 220, 220, 220, 2488, 2673, 7, 49170, 28, 17821, 11, 5050, 28, 17816, 1136, 6, 12962, 198, 220, 220, 220, 825, 42851, 7, 944, 11, 2581, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6690, 48568, 283, 1288, 748, 4743, 577, 390, 800, 270, 49443, 274, 390, 555, 21504, 368, 7957, 628, 220, 220, 220, 220, 220, 220, 220, 6245, 14375, 6557, 555, 64, 1351, 64, 8358, 542, 72, 1734, 284, 37427, 22346, 21504, 24419, 4951, 198, 220, 220, 220, 220, 220, 220, 220, 8358, 289, 272, 514, 4533, 2341, 800, 270, 49443, 274, 331, 267, 9535, 1351, 64, 8358, 542, 72, 1734, 198, 220, 220, 220, 220, 220, 220, 220, 39990, 800, 270, 49443, 274, 8358, 257, 21356, 77, 645, 384, 289, 272, 514, 4533, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2888, 796, 2116, 13, 1136, 62, 15252, 3419, 220, 1303, 1835, 1452, 368, 418, 1288, 26181, 27206, 390, 1062, 6765, 357, 417, 21504, 368, 7957, 8, 198, 220, 220, 220, 220, 220, 220, 220, 9392, 62, 30814, 796, 37939, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9197, 28, 944, 13, 45597, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9392, 62, 1525, 28, 25927, 13, 7220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 5275, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 1303, 4759, 68, 257, 22346, 21504, 368, 7957, 8358, 14035, 263, 261, 800, 270, 22484, 16964, 1288, 514, 84, 4982, 951, 33441, 551, 8591, 19016, 628, 220, 220, 220, 220, 220, 220, 220, 5576, 276, 62, 16340, 20597, 796, 10001, 3780, 13, 48205, 13, 24455, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9197, 28, 944, 13, 45597, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4884, 62, 1525, 28, 25927, 13, 7220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 28, 25101, 11, 628, 220, 220, 220, 220, 220, 220, 220, 6739, 27160, 62, 4868, 10786, 8189, 11537, 220, 1303, 10001, 270, 49443, 274, 645, 7736, 528, 38768, 13, 5216, 420, 321, 418, 3815, 62, 4868, 10786, 8189, 11537, 31215, 8358, 43630, 1351, 64, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 12199, 22346, 1188, 2850, 390, 14873, 14031, 13, 10062, 64, 1351, 64, 1658, 555, 279, 25634, 374, 3301, 13, 628, 220, 220, 220, 220, 220, 220, 220, 814, 796, 2888, 13, 2787, 1397, 62, 16340, 20597, 12, 11925, 7, 13271, 276, 62, 16340, 20597, 8, 220, 1303, 9295, 321, 418, 8591, 288, 361, 29634, 1619, 997, 3529, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 800, 270, 49443, 274, 8358, 443, 627, 276, 272, 16964, 514, 283, 11, 25736, 39990, 800, 270, 49443, 274, 8358, 17365, 952, 583, 78, 645, 3367, 514, 38768, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10062, 78, 1658, 31215, 1152, 283, 1288, 14873, 14031, 390, 800, 270, 49443, 274, 13, 16964, 8358, 16964, 11855, 78, 1055, 272, 1288, 997, 3529, 12991, 78, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42851, 796, 685, 87, 58, 15, 60, 329, 2124, 287, 5576, 276, 62, 16340, 20597, 60, 220, 1303, 4689, 1351, 64, 8358, 43630, 1614, 349, 8869, 1288, 5576, 276, 62, 16340, 20597, 3478, 666, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 390, 5002, 418, 12777, 489, 292, 13, 2448, 78, 645, 43630, 313, 4951, 12199, 627, 567, 16785, 22346, 14873, 328, 418, 11, 920, 261, 728, 664, 382, 16785, 8591, 1351, 64, 331, 8591, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 32660, 268, 321, 418, 551, 267, 9535, 583, 78, 369, 22346, 22346, 5002, 78, 390, 8591, 12777, 489, 64, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 814, 2599, 220, 1303, 664, 273, 260, 1288, 329, 285, 1155, 8847, 814, 5417, 9591, 257, 269, 3529, 13, 2039, 267, 2213, 292, 6340, 397, 8847, 33721, 21349, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 21956, 78, 284, 67, 292, 2341, 800, 270, 49443, 274, 1334, 39781, 331, 46668, 1734, 39990, 800, 270, 49443, 274, 645, 3367, 514, 38768, 645, 24481, 3301, 435, 329, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42851, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10001, 3780, 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, 4884, 62, 1525, 28, 25927, 13, 7220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9197, 28, 944, 13, 45597, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 8189, 220, 1303, 20284, 1614, 6442, 16785, 1288, 14873, 14031, 31215, 8358, 384, 279, 1739, 64, 556, 2301, 283, 257, 8591, 1351, 64, 390, 13042, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 412, 4169, 329, 12199, 384, 1753, 3301, 18912, 25440, 8591, 2684, 8607, 1569, 89, 8358, 5725, 68, 11, 331, 18912, 25440, 384, 443, 257, 1713, 268, 555, 997, 3529, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 390, 21628, 270, 49443, 274, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1484, 62, 16340, 20597, 10354, 37939, 17633, 32634, 7509, 7, 16340, 863, 62, 30814, 11, 867, 28, 17821, 737, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16340, 20597, 10354, 42851, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18261, 7, 7890, 8, 628, 220, 220, 220, 825, 2251, 7, 944, 11, 2581, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 44, 1531, 6592, 8591, 1126, 32009, 18840, 390, 21504, 24419, 4951, 748, 2934, 1288, 269, 10205, 12894, 78, 390, 800, 270, 32009, 18840, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 11389, 7509, 796, 3060, 27608, 32634, 7509, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 25927, 13, 7890, 11, 220, 1303, 21456, 1789, 418, 22346, 4818, 418, 664, 571, 312, 418, 7, 41, 1559, 8, 257, 555, 288, 44240, 295, 4982, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 34758, 6, 45597, 10354, 2116, 13, 45597, 11, 705, 25927, 10354, 2581, 92, 220, 1303, 5401, 11389, 11341, 256, 4131, 2013, 279, 1739, 268, 664, 571, 343, 30972, 4951, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4818, 418, 512, 368, 292, 390, 8591, 1366, 11, 31215, 1556, 78, 514, 321, 418, 8591, 7885, 4732, 11, 6855, 321, 418, 2581, 31215, 8358, 1288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11389, 7509, 279, 1739, 64, 17463, 263, 1288, 514, 84, 4982, 390, 8591, 4273, 47430, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 11389, 7509, 13, 271, 62, 12102, 7, 40225, 62, 1069, 4516, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2888, 796, 11389, 7509, 13, 21928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13, 1136, 62, 46911, 7509, 7, 19522, 737, 7890, 220, 1303, 1400, 514, 321, 418, 1288, 11389, 7509, 3060, 27608, 32634, 7509, 13, 15638, 645, 1288, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11389, 528, 7079, 8358, 384, 951, 25634, 551, 8591, 7885, 11389, 7509, 62, 4871, 47574, 395, 78, 8358, 21349, 1556, 64, 2614, 528, 4533, 31215, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 749, 20040, 369, 12422, 1062, 6765, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18261, 7, 7890, 11, 3722, 28, 13376, 13, 40717, 62, 1264, 62, 43387, 11617, 8, 198 ]
2.436709
2,686
import json import os from ..util import cast, datetime_to_json class Backend: """ base class for metadir backends. currently only local filesystem backend implemented. """ def get_base_path(self): """return a base path to a local file dir or a cloud bucket""" raise NotImplementedError def get_path(self, path): """return absolute filesystem path or cloud bucket for `path""" return os.path.join(self.base_path, path) def exists(self, path): """check if given path exists and return boolean""" raise NotImplementedError def save(self, path, content): """ store `content` in path and return absolute path to stored file or cloud blob location """ raise NotImplementedError def load(self, path): """ return content as string for given path, use the same not found exception for all storages: """ if not self.exists(path): raise FileNotFoundError(f"Path `{path}` not found in storage `{self}`") return self._load(path) def _load(self, path): """actual implementation for specific storage""" raise NotImplementedError def set_value(self, path, value): """simply store values to a path location""" self.save(path, value) return value def get_value(self, path, transform=lambda x: cast(x, with_date=True)): """simply get values from a path location""" if not self.exists(path): return content = self.load(path) return transform(content) def get_children(self, path=".", condition=lambda x: True): """list all children under given path that match condition""" raise NotImplementedError def delete(self, path=""): """delete everything from path""" raise NotImplementedError
[ 11748, 33918, 198, 11748, 28686, 198, 198, 6738, 11485, 22602, 1330, 3350, 11, 4818, 8079, 62, 1462, 62, 17752, 628, 198, 4871, 5157, 437, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2779, 1398, 329, 1138, 324, 343, 736, 2412, 13, 198, 220, 220, 220, 3058, 691, 1957, 29905, 30203, 9177, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 651, 62, 8692, 62, 6978, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7783, 257, 2779, 3108, 284, 257, 1957, 2393, 26672, 393, 257, 6279, 19236, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 825, 651, 62, 6978, 7, 944, 11, 3108, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7783, 4112, 29905, 3108, 393, 6279, 19236, 329, 4600, 6978, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 28686, 13, 6978, 13, 22179, 7, 944, 13, 8692, 62, 6978, 11, 3108, 8, 628, 220, 220, 220, 825, 7160, 7, 944, 11, 3108, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 9122, 611, 1813, 3108, 7160, 290, 1441, 25131, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 825, 3613, 7, 944, 11, 3108, 11, 2695, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3650, 4600, 11299, 63, 287, 3108, 290, 1441, 4112, 3108, 284, 8574, 2393, 393, 198, 220, 220, 220, 220, 220, 220, 220, 6279, 44812, 4067, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 825, 3440, 7, 944, 11, 3108, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2695, 355, 4731, 329, 1813, 3108, 11, 779, 262, 976, 407, 1043, 198, 220, 220, 220, 220, 220, 220, 220, 6631, 329, 477, 336, 273, 1095, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 1069, 1023, 7, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9220, 3673, 21077, 12331, 7, 69, 1, 15235, 4600, 90, 6978, 92, 63, 407, 1043, 287, 6143, 4600, 90, 944, 92, 63, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 2220, 7, 6978, 8, 628, 220, 220, 220, 825, 4808, 2220, 7, 944, 11, 3108, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50039, 7822, 329, 2176, 6143, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 825, 900, 62, 8367, 7, 944, 11, 3108, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14323, 2145, 3650, 3815, 284, 257, 3108, 4067, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 21928, 7, 6978, 11, 1988, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 651, 62, 8367, 7, 944, 11, 3108, 11, 6121, 28, 50033, 2124, 25, 3350, 7, 87, 11, 351, 62, 4475, 28, 17821, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14323, 2145, 651, 3815, 422, 257, 3108, 4067, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 1069, 1023, 7, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 796, 2116, 13, 2220, 7, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6121, 7, 11299, 8, 628, 220, 220, 220, 825, 651, 62, 17197, 7, 944, 11, 3108, 2625, 33283, 4006, 28, 50033, 2124, 25, 6407, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4868, 477, 1751, 739, 1813, 3108, 326, 2872, 4006, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 825, 12233, 7, 944, 11, 3108, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 33678, 2279, 422, 3108, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 198 ]
2.638889
720
import math from decimal import Decimal # Used for rotations: # https://stackoverflow.com/questions/34372480/rotate-point-about-another-point-in-degrees-python/34374437#34374437 # Accessed November 17, 2017 class Post: """A post""" def displayString(self): """Return this item as it would be displayed to the user""" string = self._displayString() if self.isRemoval: return string + " (Removal)" return string def _displayString(self): """Return this item as it would be displayed to the user""" if self.postType == "cornerPost": return "Corner Post" if self.postType == "endPost": return "End Post" if self.postType == "tPost": return "T Post" if self.postType == "gatePost": return "Gate Post" print("Warning: unknown post type") return str(self) @property class FencingEntity: """A fencing entity (fence segment or gate)""" def displayString(self): """Return this item as it would be displayed to the user""" if self._entityType == "fence": string = "Fence" elif self._entityType == "gate": string = "Gate" else: print("Warning: unknown fencing attribute type") return str(self) if self._isDouble: string = "Double " + string string = self.lengthString() + " " + string if self._isRemoval: string += " (Removal)" return string @property @property @property @property @property @property @property @property
[ 11748, 10688, 198, 6738, 32465, 1330, 4280, 4402, 198, 198, 2, 16718, 329, 5724, 602, 25, 198, 2, 3740, 1378, 25558, 2502, 11125, 13, 785, 14, 6138, 507, 14, 2682, 2718, 1731, 1795, 14, 10599, 378, 12, 4122, 12, 10755, 12, 29214, 12, 4122, 12, 259, 12, 13500, 6037, 12, 29412, 14, 2682, 2718, 2598, 2718, 2, 2682, 2718, 2598, 2718, 198, 2, 48547, 3389, 1596, 11, 2177, 198, 198, 4871, 2947, 25, 198, 197, 37811, 32, 1281, 37811, 198, 197, 198, 197, 4299, 3359, 10100, 7, 944, 2599, 198, 197, 197, 37811, 13615, 428, 2378, 355, 340, 561, 307, 9066, 284, 262, 2836, 37811, 198, 197, 197, 8841, 796, 2116, 13557, 13812, 10100, 3419, 628, 197, 197, 361, 2116, 13, 271, 8413, 8325, 25, 198, 197, 197, 197, 7783, 4731, 1343, 366, 357, 8413, 8325, 16725, 198, 197, 197, 198, 197, 197, 7783, 4731, 198, 197, 198, 197, 4299, 4808, 13812, 10100, 7, 944, 2599, 198, 197, 197, 37811, 13615, 428, 2378, 355, 340, 561, 307, 9066, 284, 262, 2836, 37811, 198, 197, 197, 361, 2116, 13, 7353, 6030, 6624, 366, 10215, 1008, 6307, 1298, 198, 197, 197, 197, 7783, 366, 10606, 1008, 2947, 1, 628, 197, 197, 361, 2116, 13, 7353, 6030, 6624, 366, 437, 6307, 1298, 198, 197, 197, 197, 7783, 366, 12915, 2947, 1, 198, 197, 197, 198, 197, 197, 361, 2116, 13, 7353, 6030, 6624, 366, 83, 6307, 1298, 198, 197, 197, 197, 7783, 366, 51, 2947, 1, 198, 197, 197, 198, 197, 197, 361, 2116, 13, 7353, 6030, 6624, 366, 10494, 6307, 1298, 198, 197, 197, 197, 7783, 366, 22628, 2947, 1, 198, 197, 197, 198, 197, 197, 4798, 7203, 20361, 25, 6439, 1281, 2099, 4943, 198, 197, 197, 7783, 965, 7, 944, 8, 198, 197, 198, 197, 31, 26745, 198, 198, 4871, 376, 9532, 32398, 25, 198, 197, 37811, 32, 39244, 9312, 357, 69, 594, 10618, 393, 8946, 8, 37811, 198, 197, 198, 197, 4299, 3359, 10100, 7, 944, 2599, 198, 197, 197, 37811, 13615, 428, 2378, 355, 340, 561, 307, 9066, 284, 262, 2836, 37811, 198, 197, 197, 361, 2116, 13557, 26858, 6030, 6624, 366, 69, 594, 1298, 198, 197, 197, 197, 8841, 796, 366, 37, 594, 1, 198, 197, 197, 198, 197, 197, 417, 361, 2116, 13557, 26858, 6030, 6624, 366, 10494, 1298, 198, 197, 197, 197, 8841, 796, 366, 22628, 1, 198, 197, 197, 198, 197, 197, 17772, 25, 198, 197, 197, 197, 4798, 7203, 20361, 25, 6439, 39244, 11688, 2099, 4943, 198, 197, 197, 197, 7783, 965, 7, 944, 8, 198, 197, 197, 198, 197, 197, 361, 2116, 13557, 271, 25628, 25, 198, 197, 197, 197, 8841, 796, 366, 25628, 366, 1343, 4731, 198, 197, 197, 198, 197, 197, 8841, 796, 2116, 13, 13664, 10100, 3419, 1343, 366, 366, 1343, 4731, 198, 197, 197, 198, 197, 197, 361, 2116, 13557, 271, 8413, 8325, 25, 198, 197, 197, 197, 8841, 15853, 366, 357, 8413, 8325, 16725, 198, 197, 197, 198, 197, 197, 7783, 4731, 198, 197, 198, 197, 31, 26745, 198, 197, 198, 197, 31, 26745, 198, 197, 198, 197, 31, 26745, 628, 197, 31, 26745, 198, 197, 198, 197, 31, 26745, 628, 197, 31, 26745, 198, 197, 198, 197, 31, 26745, 198, 197, 198, 197, 31, 26745 ]
2.697026
538
#!/usr/bin/env python # -*- coding: utf-8 -*- """ File: source/module/memory_helper.py """ import torch import torch.nn as nn
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 201, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 201, 198, 37811, 201, 198, 8979, 25, 2723, 14, 21412, 14, 31673, 62, 2978, 525, 13, 9078, 201, 198, 37811, 201, 198, 201, 198, 11748, 28034, 201, 198, 11748, 28034, 13, 20471, 355, 299, 77, 201, 198, 201, 198 ]
2.209677
62
from datetime import timedelta from .base import * SECRET_KEY = '' DEBUG = True ALLOWED_HOSTS = '*' INSTALLED_APPS += [ 'drf_yasg' ] INTERNAL_IPS = ['127.0.0.1', ] # required for drf_yasg REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] = ['rest_framework.authentication.SessionAuthentication'] + \ REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': '', 'USER': '', 'PASSWORD': '', 'HOST': '127.0.0.1', 'PORT': '5432', } } # Static STATIC_URL = '/static/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_URL = '/media/' # to make development easy TIME_ZONE = 'UTC' EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = '' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_PORT = '' FROM_MAIL = '' DEFAULT_FROM_EMAIL = '' EMAIL_USE_TLS = True TOKEN_TIMEOUT_DAYS = 2 if DEBUG is False: REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework.renderers.JSONRenderer', ) } # SIMPLE JWT SIMPLE_JWT = { 'ACCESS_TOKEN_LIFETIME': timedelta(hours=7), 'REFRESH_TOKEN_LIFETIME': timedelta(days=1), 'ROTATE_REFRESH_TOKENS': False, 'BLACKLIST_AFTER_ROTATION': True, 'ALGORITHM': 'HS256', 'SIGNING_KEY': SECRET_KEY, 'VERIFYING_KEY': None, 'AUDIENCE': None, 'ISSUER': None, 'AUTH_HEADER_TYPES': ('Bearer',), 'USER_ID_FIELD': 'id', 'USER_ID_CLAIM': 'user_id', 'AUTH_TOKEN_CLASSES': ('rest_framework_simplejwt.tokens.AccessToken',), 'TOKEN_TYPE_CLAIM': 'token_type', 'JTI_CLAIM': 'jti', } # Security (SSL) SESSION_COOKIE_SECURE = True SECURE_HSTS_SECONDS = 63072000 # 2 years SECURE_HSTS_INCLUDE_SUBDOMAINS = True SECURE_HSTS_PRELOAD = True SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') SECURE_BROWSER_XSS_FILTER = True SECURE_CONTENT_TYPE_NOSNIFF = True SECURE_SSL_REDIRECT = True SECURE_REFERRER_POLICY = 'same-origin' CSRF_COOKIE_SECURE = True # Other secure headers USE_X_FORWARDED_HOST = True X_FRAME_OPTIONS = 'DENY' # Token expiry in seconds PASSWORD_RESET_TIMEOUT = 432000 # 4 days
[ 6738, 4818, 8079, 1330, 28805, 12514, 198, 198, 6738, 764, 8692, 1330, 1635, 198, 198, 23683, 26087, 62, 20373, 796, 10148, 198, 198, 30531, 796, 6407, 198, 198, 7036, 3913, 1961, 62, 39, 10892, 50, 796, 705, 9, 6, 198, 198, 38604, 7036, 1961, 62, 2969, 3705, 15853, 685, 198, 220, 220, 220, 705, 7109, 69, 62, 88, 292, 70, 6, 198, 60, 198, 198, 1268, 31800, 1847, 62, 47643, 796, 37250, 16799, 13, 15, 13, 15, 13, 16, 3256, 2361, 220, 1303, 2672, 329, 1553, 69, 62, 88, 292, 70, 198, 198, 49, 6465, 62, 10913, 2390, 6217, 14670, 17816, 7206, 38865, 62, 32, 24318, 3525, 2149, 6234, 62, 31631, 1546, 20520, 796, 37250, 2118, 62, 30604, 13, 41299, 3299, 13, 36044, 47649, 3299, 20520, 1343, 3467, 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, 30617, 62, 10913, 2390, 6217, 14670, 17816, 7206, 38865, 62, 32, 24318, 3525, 2149, 6234, 62, 31631, 1546, 20520, 198, 198, 35, 1404, 6242, 1921, 1546, 796, 1391, 198, 220, 220, 220, 705, 12286, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 10354, 705, 28241, 14208, 13, 9945, 13, 1891, 2412, 13, 7353, 34239, 13976, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 29904, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 47924, 54, 12532, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 39, 10892, 10354, 705, 16799, 13, 15, 13, 15, 13, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15490, 10354, 705, 4051, 2624, 3256, 198, 220, 220, 220, 1782, 198, 92, 198, 198, 2, 36125, 198, 35744, 2149, 62, 21886, 796, 31051, 12708, 14, 6, 198, 30733, 3539, 62, 13252, 2394, 796, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 705, 11431, 11537, 198, 30733, 3539, 62, 21886, 796, 31051, 11431, 14, 6, 198, 198, 2, 284, 787, 2478, 2562, 198, 34694, 62, 57, 11651, 796, 705, 17429, 6, 198, 198, 27630, 4146, 62, 31098, 10619, 796, 705, 28241, 14208, 13, 7295, 13, 4529, 13, 1891, 2412, 13, 5796, 34788, 13, 15333, 7282, 437, 6, 198, 27630, 4146, 62, 39, 10892, 796, 10148, 198, 27630, 4146, 62, 39, 10892, 62, 29904, 796, 10148, 198, 27630, 4146, 62, 39, 10892, 62, 47924, 54, 12532, 796, 10148, 198, 27630, 4146, 62, 15490, 796, 10148, 198, 10913, 2662, 62, 5673, 4146, 796, 10148, 198, 7206, 38865, 62, 10913, 2662, 62, 27630, 4146, 796, 10148, 198, 27630, 4146, 62, 19108, 62, 51, 6561, 796, 6407, 198, 10468, 43959, 62, 34694, 12425, 62, 26442, 50, 796, 362, 198, 198, 361, 16959, 318, 10352, 25, 198, 220, 220, 220, 30617, 62, 10913, 2390, 6217, 14670, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7206, 38865, 62, 49, 10619, 1137, 1137, 62, 31631, 1546, 10354, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2118, 62, 30604, 13, 10920, 19288, 13, 40386, 49, 437, 11882, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1782, 198, 198, 2, 23749, 16437, 449, 39386, 198, 48913, 16437, 62, 41, 39386, 796, 1391, 198, 220, 220, 220, 705, 26861, 7597, 62, 10468, 43959, 62, 43, 5064, 2767, 12789, 10354, 28805, 12514, 7, 24425, 28, 22, 828, 198, 220, 220, 220, 705, 2200, 10913, 44011, 62, 10468, 43959, 62, 43, 5064, 2767, 12789, 10354, 28805, 12514, 7, 12545, 28, 16, 828, 198, 220, 220, 220, 705, 49, 2394, 6158, 62, 2200, 10913, 44011, 62, 10468, 42, 16938, 10354, 10352, 11, 198, 220, 220, 220, 705, 9148, 8120, 45849, 62, 8579, 5781, 62, 49, 2394, 6234, 10354, 6407, 11, 628, 220, 220, 220, 705, 1847, 38, 1581, 10554, 44, 10354, 705, 7998, 11645, 3256, 198, 220, 220, 220, 705, 50, 3528, 15871, 62, 20373, 10354, 10729, 26087, 62, 20373, 11, 198, 220, 220, 220, 705, 5959, 5064, 45761, 62, 20373, 10354, 6045, 11, 198, 220, 220, 220, 705, 48877, 42589, 10354, 6045, 11, 198, 220, 220, 220, 705, 1797, 12564, 1137, 10354, 6045, 11, 628, 220, 220, 220, 705, 32, 24318, 62, 37682, 1137, 62, 9936, 47, 1546, 10354, 19203, 3856, 11258, 3256, 828, 198, 220, 220, 220, 705, 29904, 62, 2389, 62, 44603, 10354, 705, 312, 3256, 198, 220, 220, 220, 705, 29904, 62, 2389, 62, 48778, 10354, 705, 7220, 62, 312, 3256, 628, 220, 220, 220, 705, 32, 24318, 62, 10468, 43959, 62, 31631, 1546, 10354, 19203, 2118, 62, 30604, 62, 36439, 73, 46569, 13, 83, 482, 641, 13, 15457, 30642, 3256, 828, 198, 220, 220, 220, 705, 10468, 43959, 62, 25216, 62, 48778, 10354, 705, 30001, 62, 4906, 3256, 628, 220, 220, 220, 705, 41, 25621, 62, 48778, 10354, 705, 73, 20259, 3256, 198, 92, 198, 198, 2, 4765, 357, 31127, 8, 198, 50, 47621, 62, 34, 15308, 10008, 62, 23683, 11335, 796, 6407, 198, 23683, 11335, 62, 39, 2257, 50, 62, 23683, 1340, 5258, 796, 44505, 4761, 830, 220, 1303, 362, 812, 198, 23683, 11335, 62, 39, 2257, 50, 62, 1268, 5097, 52, 7206, 62, 50, 10526, 39170, 32, 20913, 796, 6407, 198, 23683, 11335, 62, 39, 2257, 50, 62, 47, 16448, 41048, 796, 6407, 198, 23683, 11335, 62, 31190, 34278, 62, 31127, 62, 37682, 1137, 796, 19203, 40717, 62, 55, 62, 13775, 39743, 1961, 62, 4805, 26631, 3256, 705, 5450, 11537, 198, 23683, 11335, 62, 11473, 22845, 1137, 62, 55, 5432, 62, 46700, 5781, 796, 6407, 198, 23683, 11335, 62, 37815, 3525, 62, 25216, 62, 45, 2640, 45, 29267, 796, 6407, 198, 23683, 11335, 62, 31127, 62, 22083, 40, 23988, 796, 6407, 198, 23683, 11335, 62, 2200, 24302, 49, 1137, 62, 45472, 2149, 56, 796, 705, 31642, 12, 47103, 6, 198, 7902, 32754, 62, 34, 15308, 10008, 62, 23683, 11335, 796, 6407, 198, 198, 2, 3819, 5713, 24697, 198, 19108, 62, 55, 62, 13775, 39743, 1961, 62, 39, 10892, 796, 6407, 198, 55, 62, 10913, 10067, 62, 3185, 51, 11053, 796, 705, 41819, 56, 6, 198, 198, 2, 29130, 1033, 9045, 287, 4201, 198, 47924, 54, 12532, 62, 19535, 2767, 62, 34694, 12425, 796, 46393, 830, 220, 1303, 604, 1528, 198 ]
2.078285
1,073
from django.contrib.auth.forms import UserCreationForm from .models import User from django import forms
[ 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 23914, 1330, 11787, 12443, 341, 8479, 198, 6738, 764, 27530, 1330, 11787, 198, 6738, 42625, 14208, 1330, 5107, 628 ]
3.785714
28
#!/usr/bin/python # # Copyright (c) SAS Institute Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import os from conary.lib import coveragehook from catalogService.utils import logger as rlogging from restlib.http import modpython from mint import config from mint.db.database import Database from catalogService.handler import getHandler from catalogService.rest.database import RestDatabase def handler(req): """ The presence of this function in the module allows it to be added directly into apache as a mod_python handler. The function is for testing purposes only. """ coveragehook.install() mintCfgPath = os.path.join(req.document_root(), '..', '..', 'mint.conf') mintcfg = config.getConfig(mintCfgPath) mintdb = Database(mintcfg) restdb = RestDatabase(mintcfg, mintdb) topLevel = os.path.join(mintcfg.basePath) _handler = ApacheRESTHandler(topLevel, restdb) return _handler.handle(req)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 198, 2, 15069, 357, 66, 8, 35516, 5136, 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, 2, 198, 198, 11748, 28686, 198, 198, 6738, 369, 560, 13, 8019, 1330, 5197, 25480, 198, 198, 6738, 18388, 16177, 13, 26791, 1330, 49706, 355, 374, 6404, 2667, 198, 6738, 1334, 8019, 13, 4023, 1330, 953, 29412, 198, 198, 6738, 21043, 1330, 4566, 198, 6738, 21043, 13, 9945, 13, 48806, 1330, 24047, 198, 198, 6738, 18388, 16177, 13, 30281, 1330, 651, 25060, 198, 6738, 18388, 16177, 13, 2118, 13, 48806, 1330, 8324, 38105, 628, 198, 198, 4299, 21360, 7, 42180, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 383, 4931, 286, 428, 2163, 287, 262, 8265, 3578, 340, 284, 307, 2087, 3264, 198, 220, 220, 220, 656, 2471, 4891, 355, 257, 953, 62, 29412, 21360, 13, 628, 220, 220, 220, 383, 2163, 318, 329, 4856, 4959, 691, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5197, 25480, 13, 17350, 3419, 198, 220, 220, 220, 21043, 34, 40616, 15235, 796, 28686, 13, 6978, 13, 22179, 7, 42180, 13, 22897, 62, 15763, 22784, 705, 492, 3256, 705, 492, 3256, 705, 34289, 13, 10414, 11537, 198, 220, 220, 220, 21043, 37581, 796, 4566, 13, 1136, 16934, 7, 34289, 34, 40616, 15235, 8, 198, 220, 220, 220, 21043, 9945, 796, 24047, 7, 34289, 37581, 8, 198, 220, 220, 220, 1334, 9945, 796, 8324, 38105, 7, 34289, 37581, 11, 21043, 9945, 8, 628, 220, 220, 220, 1353, 4971, 796, 28686, 13, 6978, 13, 22179, 7, 34289, 37581, 13, 8692, 15235, 8, 628, 220, 220, 220, 4808, 30281, 796, 24843, 19535, 4221, 392, 1754, 7, 4852, 4971, 11, 1334, 9945, 8, 198, 220, 220, 220, 1441, 4808, 30281, 13, 28144, 7, 42180, 8, 198 ]
3.366359
434
import datetime from udaru_anomaly_detection.trail.insert import trail_insert from udaru_anomaly_detection.tests.generator import generate_resource
[ 198, 11748, 4818, 8079, 198, 198, 6738, 334, 67, 11493, 62, 272, 24335, 62, 15255, 3213, 13, 9535, 346, 13, 28463, 1330, 8025, 62, 28463, 198, 6738, 334, 67, 11493, 62, 272, 24335, 62, 15255, 3213, 13, 41989, 13, 8612, 1352, 1330, 7716, 62, 31092, 628 ]
3.282609
46
from src import detect_faces, show_bboxes from PIL import Image import os os.environ["CUDA_VISIBLE_DEVICES"] = '1' img_path = '/net/deepfake-defense/datasets/CelebA/img/img_celeba/' pert_path = '/net/deepfake-defense/datasets/CelebA/img/MTCNN_ifgsm/' result_f = open('/home/zhujunxiao/protect_face_identity/face_image_protection/MTCNN/mtcnn-pytorch/results/MTCNN_detection_result_celeba.csv', 'w') result_f.write('image, detected bounding box, detected boundingbox(after perturbation)\n') for img_index in range(1, 2001): img_filename = format(img_index, '06d') + '.jpg' print(img_filename) img = Image.open(img_path + img_filename) img = img.resize((224, 224)) bounding_boxes, landmarks = detect_faces(img) bounding_box_str = [] for box in bounding_boxes: bounding_box_str.append(' '.join([str(x) for x in box])) # for i in range(len(bounding_boxes)): # result_f.write(img_filename + ',' + ' '.join([str(x) for x in bounding_boxes[i]])) # result_f.write(',' + ' '.join([str(x) for x in landmarks[i]]) + '\n') pert_img = pert_path + img_filename img = Image.open(pert_img) img = img.resize((224, 224)) pert_bounding_boxes, _ = detect_faces(img) pert_bounding_box_str = [] for box in pert_bounding_boxes: pert_bounding_box_str.append(' '.join([str(x) for x in box])) result_f.write(img_filename + ',') result_f.write(';'.join([x for x in bounding_box_str]) + ',') result_f.write(';'.join([x for x in pert_bounding_box_str]) + '\n')
[ 6738, 12351, 1330, 4886, 62, 32186, 11, 905, 62, 65, 29305, 198, 6738, 350, 4146, 1330, 7412, 198, 11748, 28686, 220, 198, 198, 418, 13, 268, 2268, 14692, 43633, 5631, 62, 29817, 34563, 62, 39345, 34444, 8973, 796, 705, 16, 6, 198, 9600, 62, 6978, 796, 31051, 3262, 14, 22089, 30706, 12, 19774, 14, 19608, 292, 1039, 14, 42741, 65, 32, 14, 9600, 14, 9600, 62, 49840, 7012, 14, 6, 198, 11766, 62, 6978, 796, 31051, 3262, 14, 22089, 30706, 12, 19774, 14, 19608, 292, 1039, 14, 42741, 65, 32, 14, 9600, 14, 44, 4825, 6144, 62, 361, 70, 5796, 14, 6, 198, 20274, 62, 69, 796, 1280, 10786, 14, 11195, 14, 89, 13415, 29741, 87, 13481, 14, 35499, 62, 2550, 62, 738, 414, 14, 2550, 62, 9060, 62, 42846, 14, 44, 4825, 6144, 14, 16762, 66, 20471, 12, 9078, 13165, 354, 14, 43420, 14, 44, 4825, 6144, 62, 15255, 3213, 62, 20274, 62, 49840, 7012, 13, 40664, 3256, 705, 86, 11537, 198, 20274, 62, 69, 13, 13564, 10786, 9060, 11, 12326, 5421, 278, 3091, 11, 12326, 5421, 278, 3524, 7, 8499, 22146, 5945, 341, 19415, 77, 11537, 198, 1640, 33705, 62, 9630, 287, 2837, 7, 16, 11, 5878, 2599, 198, 220, 220, 220, 33705, 62, 34345, 796, 5794, 7, 9600, 62, 9630, 11, 705, 3312, 67, 11537, 1343, 45302, 9479, 6, 198, 220, 220, 220, 3601, 7, 9600, 62, 34345, 8, 198, 220, 220, 220, 33705, 796, 7412, 13, 9654, 7, 9600, 62, 6978, 1343, 220, 33705, 62, 34345, 8, 198, 220, 220, 220, 33705, 796, 33705, 13, 411, 1096, 19510, 24137, 11, 26063, 4008, 198, 220, 220, 220, 5421, 278, 62, 29305, 11, 41532, 796, 4886, 62, 32186, 7, 9600, 8, 198, 220, 220, 220, 5421, 278, 62, 3524, 62, 2536, 796, 17635, 198, 220, 220, 220, 329, 3091, 287, 5421, 278, 62, 29305, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5421, 278, 62, 3524, 62, 2536, 13, 33295, 10786, 45302, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 3091, 60, 4008, 198, 220, 220, 220, 1303, 329, 1312, 287, 2837, 7, 11925, 7, 7784, 278, 62, 29305, 8, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1255, 62, 69, 13, 13564, 7, 9600, 62, 34345, 1343, 705, 4032, 1343, 705, 45302, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 5421, 278, 62, 29305, 58, 72, 11907, 4008, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1255, 62, 69, 13, 13564, 7, 41707, 1343, 705, 45302, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 41532, 58, 72, 11907, 8, 1343, 705, 59, 77, 11537, 198, 220, 220, 220, 22146, 62, 9600, 796, 220, 22146, 62, 6978, 1343, 33705, 62, 34345, 198, 220, 220, 220, 33705, 796, 7412, 13, 9654, 7, 11766, 62, 9600, 8, 198, 220, 220, 220, 33705, 796, 33705, 13, 411, 1096, 19510, 24137, 11, 26063, 4008, 198, 220, 220, 220, 22146, 62, 7784, 278, 62, 29305, 11, 4808, 796, 4886, 62, 32186, 7, 9600, 8, 198, 220, 220, 220, 22146, 62, 7784, 278, 62, 3524, 62, 2536, 796, 17635, 198, 220, 220, 220, 329, 3091, 287, 22146, 62, 7784, 278, 62, 29305, 25, 198, 220, 220, 220, 220, 220, 220, 220, 22146, 62, 7784, 278, 62, 3524, 62, 2536, 13, 33295, 10786, 45302, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 3091, 60, 4008, 198, 220, 220, 220, 1255, 62, 69, 13, 13564, 7, 9600, 62, 34345, 220, 1343, 705, 4032, 8, 198, 220, 220, 220, 1255, 62, 69, 13, 13564, 10786, 26, 4458, 22179, 26933, 87, 329, 2124, 287, 5421, 278, 62, 3524, 62, 2536, 12962, 1343, 705, 4032, 8, 198, 220, 220, 220, 1255, 62, 69, 13, 13564, 10786, 26, 4458, 22179, 26933, 87, 329, 2124, 287, 22146, 62, 7784, 278, 62, 3524, 62, 2536, 12962, 1343, 705, 59, 77, 11537, 198 ]
2.407524
638
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Wed Mar 20 14:08:42 2019 @author: smrak """ import numpy as np from cartomap import geogmap as gm from datetime import datetime import matplotlib.pyplot as plt import cartopy.crs as ccrs import apexpy as ap latlim = [-0,60] lonlim= [-140,0] date = datetime(2017, 8, 21, 6) fig = gm.plotCartoMap(projection='plate', title='Geomagnetic coordinates: MLAT/MLT', latlim=latlim, lonlim=lonlim, parallels = [0,10,20, 40, 60, 80, 90], meridians = [-220, -180, -160,-140,-120,-100, -80,-60, -40, 0], grid_linewidth=1, figure=True, states=False) A = ap.Apex(date=date) #glon = np.arange(lonlim[0]-40, lonlim[1] + 40.1, 1) #glat = np.arange(latlim[0], latlim[1] + 0.1, 1) #longrid, latgrid = np.meshgrid(glon, glat) mlat_levels = np.arange(-90, 90.1, 10) #mlat_levels = np.array([40,50,60,70]) # mlon #mlat, mlon = A.convert(latgrid, longrid, 'geo', 'apex') #mlon_levels = np.arange(-180,180,20) # mlt #mlat, mlon = A.convert(latgrid, longrid, 'geo', 'mlt', datetime=date) mlon_levels = np.arange(0,24.2,2) #ay = plt.contour(glon,glat, mlat, levels = mlat_levels, colors='red', transform=ccrs.PlateCarree()) #ax = plt.contour(glon,glat, mlon, levels = mlon_levels, colors='blue', linestyles ='solid', transform=ccrs.PlateCarree()) #ax.clabel(inline=True, fmt = '%d', fontsize=12, colors='blue') #ay.clabel(inline=True, fmt = '%d', fontsize=12, colors='red') # MLATS mlat_range = np.arange(mlat_levels[0], mlat_levels[-1]+0.1, 0.1) mlon_range = np.arange(mlon_levels[0], 24.3, 0.1) for mlon in mlon_levels: MLON = mlon * np.ones(mlat_range.size) y, x = A.convert(mlat_range,MLON, 'mlt', 'geo', datetime=date) if int(mlon) == 0:# or int(mlon) == 2: continue inmap = np.logical_and(x >= lonlim[0], x <= lonlim[1]) if np.sum(inmap) > 10: plt.plot(np.unwrap(x,180), np.unwrap(y,90), 'b', lw=2, transform=ccrs.PlateCarree()) ix = abs(y-np.mean(latlim)).argmin() mx = x[ix]-4 my = np.mean(latlim) if np.logical_and(mx >= lonlim[0], mx <= lonlim[1]) and int(mlon) is not 0: plt.text(mx, my, str(int(mlon)), color='k', fontsize=14, backgroundcolor='white',transform=ccrs.PlateCarree()) for mlat in mlat_levels: MLAT = mlat * np.ones(mlon_range.size) gy,gx = A.convert(MLAT, mlon_range, 'mlt', 'geo', datetime=date) inmap = np.logical_and(gy >= latlim[0], gy <= latlim[1]) if np.sum(inmap) > 10: plt.plot(np.unwrap(gx, 180), np.unwrap(gy, 90), 'b', transform=ccrs.PlateCarree()) ix = abs(gx-np.mean(lonlim)).argmin() mx = np.mean(lonlim) my = gy[ix]-0.5 if np.logical_and(mx >= lonlim[0], mx <= lonlim[1]) and \ np.logical_and(my >= latlim[0], my <= latlim[1]): ix = abs(gx-np.mean(lonlim)).argmin() plt.text(mx, my, str(int(mlat)), color='k', fontsize=14, backgroundcolor='white',transform=ccrs.PlateCarree()) #Functional fig = gm.plotCartoMap(projection='plate', title='Geomagnetic coordinates: MLAT/MLT', latlim=latlim, lonlim=lonlim, date=date, #parallels = [0,10,20, 40, 60, 80, 90], #meridians = [-220, -180, -160,-140,-120,-100, -80,-60, -40, 0], grid_linewidth = 1, figure = True, states = False, geomag = True, gmagtype = 'apex', mlon_cs = 'mlt', mlon_levels = mlon_levels, mlat_levels = mlat_levels, mlon_colors='k', mlat_colors='k', mlat_labels=False)
[ 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, 41972, 319, 3300, 1526, 1160, 1478, 25, 2919, 25, 3682, 13130, 198, 198, 31, 9800, 25, 895, 17716, 198, 37811, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 6383, 296, 499, 1330, 4903, 519, 8899, 355, 308, 76, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 6383, 11081, 13, 66, 3808, 355, 36624, 3808, 198, 198, 11748, 40167, 9078, 355, 2471, 198, 198, 15460, 2475, 796, 25915, 15, 11, 1899, 60, 198, 14995, 2475, 28, 25915, 15187, 11, 15, 60, 198, 4475, 796, 4818, 8079, 7, 5539, 11, 807, 11, 2310, 11, 718, 8, 198, 198, 5647, 796, 308, 76, 13, 29487, 43476, 78, 13912, 7, 16302, 295, 11639, 6816, 3256, 3670, 11639, 10082, 296, 25145, 22715, 25, 10373, 1404, 14, 5805, 51, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3042, 2475, 28, 15460, 2475, 11, 300, 261, 2475, 28, 14995, 2475, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30614, 796, 685, 15, 11, 940, 11, 1238, 11, 2319, 11, 3126, 11, 4019, 11, 4101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4017, 312, 1547, 796, 25915, 17572, 11, 532, 15259, 11, 532, 14198, 12095, 15187, 12095, 10232, 12095, 3064, 11, 532, 1795, 12095, 1899, 11, 532, 1821, 11, 657, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 62, 2815, 413, 5649, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3785, 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, 2585, 28, 25101, 8, 198, 32, 796, 2471, 13, 32, 24900, 7, 4475, 28, 4475, 8, 198, 198, 2, 4743, 261, 796, 45941, 13, 283, 858, 7, 14995, 2475, 58, 15, 45297, 1821, 11, 300, 261, 2475, 58, 16, 60, 1343, 2319, 13, 16, 11, 352, 8, 198, 2, 4743, 265, 796, 45941, 13, 283, 858, 7, 15460, 2475, 58, 15, 4357, 3042, 2475, 58, 16, 60, 1343, 657, 13, 16, 11, 352, 8, 198, 198, 2, 6511, 6058, 11, 3042, 25928, 796, 45941, 13, 76, 5069, 25928, 7, 4743, 261, 11, 1278, 265, 8, 198, 198, 4029, 265, 62, 46170, 796, 45941, 13, 283, 858, 32590, 3829, 11, 4101, 13, 16, 11, 838, 8, 198, 2, 4029, 265, 62, 46170, 796, 45941, 13, 18747, 26933, 1821, 11, 1120, 11, 1899, 11, 2154, 12962, 198, 2, 285, 14995, 198, 2, 4029, 265, 11, 285, 14995, 796, 317, 13, 1102, 1851, 7, 15460, 25928, 11, 890, 6058, 11, 705, 469, 78, 3256, 705, 1758, 87, 11537, 198, 2, 4029, 261, 62, 46170, 796, 45941, 13, 283, 858, 32590, 15259, 11, 15259, 11, 1238, 8, 198, 2, 285, 2528, 198, 2, 4029, 265, 11, 285, 14995, 796, 317, 13, 1102, 1851, 7, 15460, 25928, 11, 890, 6058, 11, 705, 469, 78, 3256, 705, 76, 2528, 3256, 4818, 8079, 28, 4475, 8, 198, 4029, 261, 62, 46170, 796, 45941, 13, 283, 858, 7, 15, 11, 1731, 13, 17, 11, 17, 8, 198, 198, 2, 323, 796, 458, 83, 13, 3642, 454, 7, 4743, 261, 11, 4743, 265, 11, 285, 15460, 11, 2974, 796, 285, 15460, 62, 46170, 11, 7577, 11639, 445, 3256, 6121, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 2, 897, 796, 458, 83, 13, 3642, 454, 7, 4743, 261, 11, 4743, 265, 11, 285, 14995, 11, 2974, 796, 285, 14995, 62, 46170, 11, 7577, 11639, 17585, 3256, 9493, 42530, 796, 6, 39390, 3256, 220, 6121, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 2, 897, 13, 565, 9608, 7, 45145, 28, 17821, 11, 46996, 796, 705, 4, 67, 3256, 10369, 7857, 28, 1065, 11, 7577, 11639, 17585, 11537, 198, 2, 323, 13, 565, 9608, 7, 45145, 28, 17821, 11, 46996, 796, 705, 4, 67, 3256, 10369, 7857, 28, 1065, 11, 7577, 11639, 445, 11537, 198, 198, 2, 10373, 33586, 198, 4029, 265, 62, 9521, 796, 45941, 13, 283, 858, 7, 4029, 265, 62, 46170, 58, 15, 4357, 285, 15460, 62, 46170, 58, 12, 16, 48688, 15, 13, 16, 11, 657, 13, 16, 8, 198, 4029, 261, 62, 9521, 796, 45941, 13, 283, 858, 7, 4029, 261, 62, 46170, 58, 15, 4357, 1987, 13, 18, 11, 657, 13, 16, 8, 198, 1640, 285, 14995, 287, 285, 14995, 62, 46170, 25, 198, 220, 220, 220, 10373, 1340, 796, 285, 14995, 1635, 45941, 13, 1952, 7, 4029, 265, 62, 9521, 13, 7857, 8, 198, 220, 220, 220, 331, 11, 2124, 796, 317, 13, 1102, 1851, 7, 4029, 265, 62, 9521, 11, 5805, 1340, 11, 705, 76, 2528, 3256, 705, 469, 78, 3256, 4818, 8079, 28, 4475, 8, 198, 220, 220, 220, 611, 493, 7, 4029, 261, 8, 6624, 657, 43922, 393, 493, 7, 4029, 261, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 287, 8899, 796, 45941, 13, 6404, 605, 62, 392, 7, 87, 18189, 300, 261, 2475, 58, 15, 4357, 2124, 19841, 300, 261, 2475, 58, 16, 12962, 198, 220, 220, 220, 611, 45941, 13, 16345, 7, 259, 8899, 8, 1875, 838, 25, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 29487, 7, 37659, 13, 403, 37150, 7, 87, 11, 15259, 828, 45941, 13, 403, 37150, 7, 88, 11, 3829, 828, 705, 65, 3256, 300, 86, 28, 17, 11, 6121, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 844, 796, 2352, 7, 88, 12, 37659, 13, 32604, 7, 15460, 2475, 29720, 853, 1084, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 285, 87, 796, 2124, 58, 844, 45297, 19, 198, 220, 220, 220, 220, 220, 220, 220, 616, 796, 45941, 13, 32604, 7, 15460, 2475, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 45941, 13, 6404, 605, 62, 392, 7, 36802, 18189, 300, 261, 2475, 58, 15, 4357, 285, 87, 19841, 300, 261, 2475, 58, 16, 12962, 290, 493, 7, 4029, 261, 8, 318, 407, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 5239, 7, 36802, 11, 616, 11, 965, 7, 600, 7, 4029, 261, 36911, 3124, 11639, 74, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10369, 7857, 28, 1415, 11, 4469, 8043, 11639, 11186, 3256, 35636, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 1640, 285, 15460, 287, 285, 15460, 62, 46170, 25, 198, 220, 220, 220, 10373, 1404, 796, 285, 15460, 1635, 45941, 13, 1952, 7, 4029, 261, 62, 9521, 13, 7857, 8, 198, 220, 220, 220, 21486, 11, 70, 87, 796, 317, 13, 1102, 1851, 7, 5805, 1404, 11, 285, 14995, 62, 9521, 11, 705, 76, 2528, 3256, 705, 469, 78, 3256, 4818, 8079, 28, 4475, 8, 198, 220, 220, 220, 287, 8899, 796, 45941, 13, 6404, 605, 62, 392, 7, 1360, 18189, 3042, 2475, 58, 15, 4357, 21486, 19841, 3042, 2475, 58, 16, 12962, 198, 220, 220, 220, 611, 45941, 13, 16345, 7, 259, 8899, 8, 1875, 838, 25, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 29487, 7, 37659, 13, 403, 37150, 7, 70, 87, 11, 11546, 828, 45941, 13, 403, 37150, 7, 1360, 11, 4101, 828, 705, 65, 3256, 6121, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 844, 796, 2352, 7, 70, 87, 12, 37659, 13, 32604, 7, 14995, 2475, 29720, 853, 1084, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 285, 87, 796, 45941, 13, 32604, 7, 14995, 2475, 8, 198, 220, 220, 220, 220, 220, 220, 220, 616, 796, 21486, 58, 844, 45297, 15, 13, 20, 198, 220, 220, 220, 611, 45941, 13, 6404, 605, 62, 392, 7, 36802, 18189, 300, 261, 2475, 58, 15, 4357, 285, 87, 19841, 300, 261, 2475, 58, 16, 12962, 290, 3467, 198, 220, 220, 220, 45941, 13, 6404, 605, 62, 392, 7, 1820, 18189, 3042, 2475, 58, 15, 4357, 616, 19841, 3042, 2475, 58, 16, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 844, 796, 2352, 7, 70, 87, 12, 37659, 13, 32604, 7, 14995, 2475, 29720, 853, 1084, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 5239, 7, 36802, 11, 616, 11, 965, 7, 600, 7, 4029, 265, 36911, 3124, 11639, 74, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10369, 7857, 28, 1415, 11, 4469, 8043, 11639, 11186, 3256, 35636, 28, 535, 3808, 13, 3646, 378, 9914, 631, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 22203, 282, 198, 5647, 796, 308, 76, 13, 29487, 43476, 78, 13912, 7, 16302, 295, 11639, 6816, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3670, 11639, 10082, 296, 25145, 22715, 25, 10373, 1404, 14, 5805, 51, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3042, 2475, 28, 15460, 2475, 11, 300, 261, 2475, 28, 14995, 2475, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3128, 28, 4475, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 37083, 7278, 796, 685, 15, 11, 940, 11, 1238, 11, 2319, 11, 3126, 11, 4019, 11, 4101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 647, 312, 1547, 796, 25915, 17572, 11, 532, 15259, 11, 532, 14198, 12095, 15187, 12095, 10232, 12095, 3064, 11, 532, 1795, 12095, 1899, 11, 532, 1821, 11, 657, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 62, 2815, 413, 5649, 796, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3785, 796, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2585, 796, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4903, 296, 363, 796, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 19726, 4906, 796, 705, 1758, 87, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 14995, 62, 6359, 796, 705, 76, 2528, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 14995, 62, 46170, 796, 285, 14995, 62, 46170, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 15460, 62, 46170, 796, 285, 15460, 62, 46170, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 14995, 62, 4033, 669, 11639, 74, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 15460, 62, 4033, 669, 11639, 74, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 15460, 62, 23912, 1424, 28, 25101, 8 ]
1.874459
2,079
from agent.base_agent import BaseAgent from functional.motion import get_foot_vel import torch
[ 6738, 5797, 13, 8692, 62, 25781, 1330, 7308, 36772, 198, 6738, 10345, 13, 38714, 1330, 651, 62, 5898, 62, 626, 198, 11748, 28034, 628, 198 ]
3.88
25
# This is an example VISAN script for the SCI_NL__1P product # Make sure to set the 'products-file directory' option in the VISAN Preferences panel to # a directory containing SCI_NL__1P products. # This example will then take the first product it finds in this directory and # for that product plot the measured limb spectra for the range 290nm - 450nm run()
[ 2, 770, 318, 281, 1672, 50035, 1565, 4226, 329, 262, 6374, 40, 62, 32572, 834, 16, 47, 1720, 198, 198, 2, 6889, 1654, 284, 900, 262, 705, 29498, 12, 7753, 8619, 6, 3038, 287, 262, 50035, 1565, 49780, 6103, 284, 198, 2, 257, 8619, 7268, 6374, 40, 62, 32572, 834, 16, 47, 3186, 13, 198, 198, 2, 770, 1672, 481, 788, 1011, 262, 717, 1720, 340, 7228, 287, 428, 8619, 290, 198, 2, 329, 326, 1720, 7110, 262, 8630, 25035, 5444, 430, 329, 262, 2837, 26481, 21533, 532, 18523, 21533, 628, 198, 198, 5143, 3419, 198 ]
3.802083
96
from server import server from app1 import app as app1 from app2 import app as app2 app1.enable_dev_tools(debug=True) app2.enable_dev_tools(debug=True)
[ 6738, 4382, 1330, 4382, 198, 6738, 598, 16, 1330, 598, 355, 598, 16, 198, 6738, 598, 17, 1330, 598, 355, 598, 17, 198, 1324, 16, 13, 21633, 62, 7959, 62, 31391, 7, 24442, 28, 17821, 8, 198, 1324, 17, 13, 21633, 62, 7959, 62, 31391, 7, 24442, 28, 17821, 8, 628, 198 ]
2.961538
52
# Copyright (c) 2019-2021, Felix Fontein <[email protected]> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import (absolute_import, division, print_function) __metaclass__ = type import fcntl import os import os.path import socket as pysocket from ansible.module_utils.six import PY3
[ 2, 15069, 357, 66, 8, 13130, 12, 1238, 2481, 11, 29721, 376, 261, 22006, 1279, 69, 417, 844, 31, 69, 261, 22006, 13, 2934, 29, 198, 2, 22961, 3611, 5094, 13789, 410, 18, 13, 15, 10, 357, 3826, 27975, 45761, 393, 3740, 1378, 2503, 13, 41791, 13, 2398, 14, 677, 4541, 14, 70, 489, 12, 18, 13, 15, 13, 14116, 8, 198, 198, 6738, 11593, 37443, 834, 1330, 357, 48546, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 8, 198, 834, 4164, 330, 31172, 834, 796, 2099, 628, 198, 11748, 277, 66, 429, 75, 198, 11748, 28686, 198, 11748, 28686, 13, 6978, 198, 11748, 17802, 355, 279, 893, 5459, 198, 198, 6738, 9093, 856, 13, 21412, 62, 26791, 13, 19412, 1330, 350, 56, 18, 628, 628, 198 ]
2.787402
127
#!/usr/bin/env conda-execute # conda execute # env: # - python # - click # - jinja2 # - requests # - ruamel.yaml # - conda-smithy # - pygithub # - fuzzywuzzy # channels: # - conda-forge # run_with: python import click import conda_smithy.feedstocks as feedstocks import jinja2 import json import requests import ruamel.yaml from ruamel.yaml.scanner import ScannerError import os from github import Github import conda_smithy.github as smithy_github from fuzzywuzzy import process # patch over differences between PY2 and PY3 try: text_type = unicode except NameError: text_type = str env = jinja2.Environment(undefined=NullUndefined) @click.group() def cli(): """Match package names in pr against existing feedstocks. Tools to match package names in from all the recipes in a pr against the existing conda-forge feedstocks. """ pass @cli.command('build-feedstock-index', help='create json index of feedstocks.') @click.argument('filename') @click.option('--gh-org', default='conda-forge', help='Set Github organization name.') def build_feedstock_index(filename, gh_org='conda-forge'): "Iterate over feedstocks and return dict of pkg-name:feedstock" pkg_index = {} for repo in feedstocks.feedstock_repos(gh_org): try: meta = repo.get_file_contents(path='recipe/meta.yaml').decoded_content pkg_name = _extract_package_name(meta) except (AttributeError, KeyError, ScannerError) as err: # unable to parse the bob.io.image-feedstock print('Unable to parse meta.yaml for {}'.format(repo.url)) print('guessing pkg name from feedstock url') print('Traceback: \n', err) pkg_name = repo.url.split('/')[-1].split('-feedstock')[0].lower() pkg_index[pkg_name] = repo.full_name with open(filename, 'w') as f: json.dump(pkg_index, f) print('feedstocks index written to {}'.format(filename)) @cli.command('build-pr-index', help='create json index of pull requests.') @click.argument('filename') @click.option('--gh-org', default='conda-forge', help='Set Github organization name.') @click.option('--staged-recipes-repo', default='staged-recipes', help='Set staged recipe repo.') def build_pr_index(filename, gh_org='conda-forge', staged_recipes_repo='staged-recipes'): "Iterate over open pull requests in staged_recipes and return dict of pr:pkg-name" token = smithy_github.gh_token() gh = Github(token) org = gh.get_organization(gh_org) repo = org.get_repo(staged_recipes_repo) pkg_index = {} for pr in list(repo.get_pulls()): for f in pr.get_files(): if f.filename.lower().endswith('meta.yaml'): try: meta = requests.get(f.raw_url).content pkg_name = _extract_package_name(meta) idx = 'pr {} ({}) /{}'.format(pr.number, pkg_name, f.filename) pkg_index[idx] = pkg_name except (AttributeError, ScannerError) as err: pkg_index[idx] = None print('Unable to parse meta.yaml for pr #{}'.format(pr.number)) print('setting pkg_name to None') print('Traceback: \n', err) with open(filename, 'w') as f: json.dump(pkg_index, f) print('pull requests index written to {}'.format(filename)) @cli.command('compare-indices', help='compare pr index to feedstock index.') @click.argument('pr-index') @click.argument('feedstock-index') @click.option('--threshold', default=85, help='only return matches with scores above threshold') @click.option('--limit', default=2, help='maximum number of matches') @cli.command('check-pr', help='check pr against feedstock index.') @click.argument('pr', type=int) @click.argument('feedstock-index') @click.option('--threshold', default=85, help='only return matches with scores above threshold') @click.option('--limit', default=2, help='maximum number of matches') @click.option('--gh-org', default='conda-forge', help='Set Github organization name.') @click.option('--staged-recipes-repo', default='staged-recipes', help='Set staged recipe repo.') @cli.command('check-pkg', help='check pkg name against feedstock index.') @click.argument('name') @click.argument('feedstock-index') @click.option('--threshold', default=85, help='only return matches with scores above threshold') @click.option('--limit', default=2, help='maximum number of matches') def _extract_package_name(meta): """Extract package name from meta.yaml""" content = env.from_string(meta.decode('utf8')).render(os=os) meta = ruamel.yaml.load(content, ruamel.yaml.RoundTripLoader) return meta['package']['name'].lower() if __name__ == '__main__': cli()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 1779, 64, 12, 41049, 198, 198, 2, 1779, 64, 12260, 198, 2, 17365, 25, 198, 2, 220, 532, 21015, 198, 2, 220, 532, 3904, 198, 2, 220, 532, 474, 259, 6592, 17, 198, 2, 220, 532, 7007, 198, 2, 220, 532, 7422, 17983, 13, 88, 43695, 198, 2, 220, 532, 1779, 64, 12, 21453, 88, 198, 2, 220, 532, 12972, 12567, 198, 2, 220, 532, 34669, 86, 4715, 88, 198, 2, 9619, 25, 198, 2, 220, 532, 1779, 64, 12, 30293, 198, 2, 1057, 62, 4480, 25, 21015, 198, 198, 11748, 3904, 198, 11748, 1779, 64, 62, 21453, 88, 13, 12363, 29522, 355, 3745, 29522, 198, 11748, 474, 259, 6592, 17, 198, 11748, 33918, 198, 11748, 7007, 198, 11748, 7422, 17983, 13, 88, 43695, 198, 6738, 7422, 17983, 13, 88, 43695, 13, 35836, 1008, 1330, 20937, 1008, 12331, 198, 11748, 28686, 198, 198, 6738, 33084, 1330, 38994, 198, 11748, 1779, 64, 62, 21453, 88, 13, 12567, 355, 895, 342, 88, 62, 12567, 198, 6738, 34669, 86, 4715, 88, 1330, 1429, 628, 198, 2, 8529, 625, 5400, 1022, 350, 56, 17, 290, 350, 56, 18, 198, 28311, 25, 198, 220, 220, 220, 2420, 62, 4906, 796, 28000, 1098, 198, 16341, 6530, 12331, 25, 198, 220, 220, 220, 2420, 62, 4906, 796, 965, 628, 198, 198, 24330, 796, 474, 259, 6592, 17, 13, 31441, 7, 917, 18156, 28, 35067, 31319, 18156, 8, 628, 198, 31, 12976, 13, 8094, 3419, 198, 4299, 537, 72, 33529, 198, 220, 220, 220, 37227, 23850, 5301, 3891, 287, 778, 1028, 4683, 3745, 29522, 13, 628, 220, 220, 220, 20003, 284, 2872, 5301, 3891, 287, 422, 477, 262, 14296, 287, 257, 778, 1028, 198, 220, 220, 220, 262, 4683, 1779, 64, 12, 30293, 3745, 29522, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1208, 628, 198, 31, 44506, 13, 21812, 10786, 11249, 12, 12363, 13578, 12, 9630, 3256, 1037, 11639, 17953, 33918, 6376, 286, 3745, 29522, 2637, 8, 198, 31, 12976, 13, 49140, 10786, 34345, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 456, 12, 2398, 3256, 4277, 11639, 66, 13533, 12, 30293, 3256, 1037, 11639, 7248, 38994, 4009, 1438, 2637, 8, 198, 4299, 1382, 62, 12363, 13578, 62, 9630, 7, 34345, 11, 24997, 62, 2398, 11639, 66, 13533, 12, 30293, 6, 2599, 198, 220, 220, 220, 366, 29993, 378, 625, 3745, 29522, 290, 1441, 8633, 286, 279, 10025, 12, 3672, 25, 12363, 13578, 1, 198, 220, 220, 220, 279, 10025, 62, 9630, 796, 23884, 198, 220, 220, 220, 329, 29924, 287, 3745, 29522, 13, 12363, 13578, 62, 260, 1930, 7, 456, 62, 2398, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13634, 796, 29924, 13, 1136, 62, 7753, 62, 3642, 658, 7, 6978, 11639, 29102, 431, 14, 28961, 13, 88, 43695, 27691, 12501, 9043, 62, 11299, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 3672, 796, 4808, 2302, 974, 62, 26495, 62, 3672, 7, 28961, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 33682, 12331, 11, 7383, 12331, 11, 20937, 1008, 12331, 8, 355, 11454, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5906, 284, 21136, 262, 29202, 13, 952, 13, 9060, 12, 12363, 13578, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 3118, 540, 284, 21136, 13634, 13, 88, 43695, 329, 23884, 4458, 18982, 7, 260, 7501, 13, 6371, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 5162, 27289, 279, 10025, 1438, 422, 3745, 13578, 19016, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 2898, 558, 1891, 25, 3467, 77, 3256, 11454, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 3672, 796, 29924, 13, 6371, 13, 35312, 10786, 14, 11537, 58, 12, 16, 4083, 35312, 10786, 12, 12363, 13578, 11537, 58, 15, 4083, 21037, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 9630, 58, 35339, 62, 3672, 60, 796, 29924, 13, 12853, 62, 3672, 628, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 13, 39455, 7, 35339, 62, 9630, 11, 277, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 12363, 29522, 6376, 3194, 284, 23884, 4458, 18982, 7, 34345, 4008, 628, 198, 31, 44506, 13, 21812, 10786, 11249, 12, 1050, 12, 9630, 3256, 1037, 11639, 17953, 33918, 6376, 286, 2834, 7007, 2637, 8, 198, 31, 12976, 13, 49140, 10786, 34345, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 456, 12, 2398, 3256, 4277, 11639, 66, 13533, 12, 30293, 3256, 1037, 11639, 7248, 38994, 4009, 1438, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 438, 301, 1886, 12, 8344, 18636, 12, 260, 7501, 3256, 4277, 11639, 301, 1886, 12, 8344, 18636, 3256, 1037, 11639, 7248, 23393, 8364, 29924, 2637, 8, 198, 4299, 1382, 62, 1050, 62, 9630, 7, 34345, 11, 24997, 62, 2398, 11639, 66, 13533, 12, 30293, 3256, 23393, 62, 8344, 18636, 62, 260, 7501, 11639, 301, 1886, 12, 8344, 18636, 6, 2599, 198, 220, 220, 220, 366, 29993, 378, 625, 1280, 2834, 7007, 287, 23393, 62, 8344, 18636, 290, 1441, 8633, 286, 778, 25, 35339, 12, 3672, 1, 628, 220, 220, 220, 11241, 796, 895, 342, 88, 62, 12567, 13, 456, 62, 30001, 3419, 198, 220, 220, 220, 24997, 796, 38994, 7, 30001, 8, 198, 220, 220, 220, 8745, 796, 24997, 13, 1136, 62, 9971, 1634, 7, 456, 62, 2398, 8, 198, 220, 220, 220, 29924, 796, 8745, 13, 1136, 62, 260, 7501, 7, 301, 1886, 62, 8344, 18636, 62, 260, 7501, 8, 198, 220, 220, 220, 279, 10025, 62, 9630, 796, 23884, 198, 220, 220, 220, 329, 778, 287, 1351, 7, 260, 7501, 13, 1136, 62, 31216, 82, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 277, 287, 778, 13, 1136, 62, 16624, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 277, 13, 34345, 13, 21037, 22446, 437, 2032, 342, 10786, 28961, 13, 88, 43695, 6, 2599, 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, 13634, 796, 7007, 13, 1136, 7, 69, 13, 1831, 62, 6371, 737, 11299, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 3672, 796, 4808, 2302, 974, 62, 26495, 62, 3672, 7, 28961, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 796, 705, 1050, 23884, 37913, 30072, 1220, 90, 92, 4458, 18982, 7, 1050, 13, 17618, 11, 279, 10025, 62, 3672, 11, 277, 13, 34345, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 9630, 58, 312, 87, 60, 796, 279, 10025, 62, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 33682, 12331, 11, 20937, 1008, 12331, 8, 355, 11454, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 9630, 58, 312, 87, 60, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 3118, 540, 284, 21136, 13634, 13, 88, 43695, 329, 778, 1303, 90, 92, 4458, 18982, 7, 1050, 13, 17618, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 33990, 279, 10025, 62, 3672, 284, 6045, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 2898, 558, 1891, 25, 3467, 77, 3256, 11454, 8, 628, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 13, 39455, 7, 35339, 62, 9630, 11, 277, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 31216, 7007, 6376, 3194, 284, 23884, 4458, 18982, 7, 34345, 4008, 628, 198, 31, 44506, 13, 21812, 10786, 5589, 533, 12, 521, 1063, 3256, 1037, 11639, 5589, 533, 778, 6376, 284, 3745, 13578, 6376, 2637, 8, 198, 31, 12976, 13, 49140, 10786, 1050, 12, 9630, 11537, 198, 31, 12976, 13, 49140, 10786, 12363, 13578, 12, 9630, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 400, 10126, 3256, 4277, 28, 5332, 11, 1037, 11639, 8807, 1441, 7466, 351, 8198, 2029, 11387, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 32374, 3256, 4277, 28, 17, 11, 1037, 11639, 47033, 1271, 286, 7466, 11537, 628, 198, 31, 44506, 13, 21812, 10786, 9122, 12, 1050, 3256, 1037, 11639, 9122, 778, 1028, 3745, 13578, 6376, 2637, 8, 198, 31, 12976, 13, 49140, 10786, 1050, 3256, 2099, 28, 600, 8, 198, 31, 12976, 13, 49140, 10786, 12363, 13578, 12, 9630, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 400, 10126, 3256, 4277, 28, 5332, 11, 1037, 11639, 8807, 1441, 7466, 351, 8198, 2029, 11387, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 32374, 3256, 4277, 28, 17, 11, 1037, 11639, 47033, 1271, 286, 7466, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 456, 12, 2398, 3256, 4277, 11639, 66, 13533, 12, 30293, 3256, 1037, 11639, 7248, 38994, 4009, 1438, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 438, 301, 1886, 12, 8344, 18636, 12, 260, 7501, 3256, 4277, 11639, 301, 1886, 12, 8344, 18636, 3256, 1037, 11639, 7248, 23393, 8364, 29924, 2637, 8, 628, 198, 31, 44506, 13, 21812, 10786, 9122, 12, 35339, 3256, 1037, 11639, 9122, 279, 10025, 1438, 1028, 3745, 13578, 6376, 2637, 8, 198, 31, 12976, 13, 49140, 10786, 3672, 11537, 198, 31, 12976, 13, 49140, 10786, 12363, 13578, 12, 9630, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 400, 10126, 3256, 4277, 28, 5332, 11, 1037, 11639, 8807, 1441, 7466, 351, 8198, 2029, 11387, 11537, 198, 31, 12976, 13, 18076, 10786, 438, 32374, 3256, 4277, 28, 17, 11, 1037, 11639, 47033, 1271, 286, 7466, 11537, 628, 198, 198, 4299, 4808, 2302, 974, 62, 26495, 62, 3672, 7, 28961, 2599, 198, 220, 220, 220, 37227, 11627, 974, 5301, 1438, 422, 13634, 13, 88, 43695, 37811, 198, 220, 220, 220, 2695, 796, 17365, 13, 6738, 62, 8841, 7, 28961, 13, 12501, 1098, 10786, 40477, 23, 11537, 737, 13287, 7, 418, 28, 418, 8, 198, 220, 220, 220, 13634, 796, 7422, 17983, 13, 88, 43695, 13, 2220, 7, 11299, 11, 7422, 17983, 13, 88, 43695, 13, 22685, 51, 5528, 17401, 8, 198, 220, 220, 220, 1441, 13634, 17816, 26495, 6, 7131, 6, 3672, 6, 4083, 21037, 3419, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 537, 72, 3419, 198 ]
2.581545
1,864
from flask import Blueprint, render_template, session, redirect, url_for from flask_wtf import FlaskForm from wtforms import SelectField from application.mod_collage.photoManip import generateCollage from application.mod_auth.models import Landmark mod_collage = Blueprint('collage', __name__, url_prefix='/collage') # Represents the collage form @mod_collage.route('/get/', methods=['GET', 'POST'])
[ 6738, 42903, 1330, 39932, 11, 8543, 62, 28243, 11, 6246, 11, 18941, 11, 19016, 62, 1640, 198, 6738, 42903, 62, 86, 27110, 1330, 46947, 8479, 198, 6738, 266, 83, 23914, 1330, 9683, 15878, 198, 198, 6738, 3586, 13, 4666, 62, 26000, 496, 13, 23074, 5124, 541, 1330, 7716, 22667, 496, 198, 6738, 3586, 13, 4666, 62, 18439, 13, 27530, 1330, 6379, 4102, 198, 198, 4666, 62, 26000, 496, 796, 39932, 10786, 26000, 496, 3256, 11593, 3672, 834, 11, 19016, 62, 40290, 11639, 14, 26000, 496, 11537, 198, 198, 2, 1432, 6629, 262, 2927, 496, 1296, 198, 198, 31, 4666, 62, 26000, 496, 13, 38629, 10786, 14, 1136, 14, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962 ]
3.415254
118
# Generated by Django 3.1.6 on 2021-02-05 12:46 from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 513, 13, 16, 13, 21, 319, 33448, 12, 2999, 12, 2713, 1105, 25, 3510, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 9945, 13, 27530, 13, 2934, 1616, 295, 628 ]
2.818182
44
#!/usr/bin/env python3 from lightning import Plugin import json import psutil import subprocess import threading import time import os try: # C-lightning v0.7.2 plugin = Plugin(dynamic=False) except: plugin = Plugin() @plugin.init() def inject_manifest(plugin, manifest): """Once we have the manifest from the child plugin, inject it into our own. """ for opt in manifest.get("options", []): plugin.add_option(opt['name'], opt['default'], opt['description']) for m in manifest.get("rpcmethods", []): plugin.add_method(m['name'], plugin.child.proxy_method, background=True) for s in manifest.get("subscriptions", []): plugin.add_subscription(s, plugin.child.proxy_subscription) for h in manifest.get("hooks", []): plugin.add_hook(h, plugin.child.proxy_method, background=True) @plugin.method('autoreload-restart') def restart(plugin): """Manually triggers a restart of the plugin controlled by autoreload. """ child = plugin.child child.restart() # We can't rely on @plugin.init to tell us the plugin we need to watch and # reload since we need to start it to pass through its manifest before we get # any cli options. So we're doomed to get our parent cmdline and parse out the # argument by hand. parent = psutil.Process().parent() cmdline = parent.cmdline() plugin.path = None prefix = '--autoreload-plugin=' for c in cmdline: if c.startswith(prefix): plugin.path = c[len(prefix):] break if plugin.path: plugin.child = ChildPlugin(plugin.path, plugin) # If we can't start on the first attempt we can't inject into the # manifest, no point in continuing. if not plugin.child.start(): raise Exception("Could not start the plugin under development, can't continue") inject_manifest(plugin, plugin.child.manifest) # Now we can run the actual plugin plugin.add_option("autoreload-plugin", None, "Path to the plugin that we should be watching and reloading.") plugin.run()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 6738, 14357, 1330, 42636, 198, 11748, 33918, 198, 11748, 26692, 22602, 198, 11748, 850, 14681, 198, 11748, 4704, 278, 198, 11748, 640, 198, 11748, 28686, 198, 198, 28311, 25, 198, 220, 220, 220, 1303, 327, 12, 2971, 768, 410, 15, 13, 22, 13, 17, 198, 220, 220, 220, 13877, 796, 42636, 7, 67, 28995, 28, 25101, 8, 198, 16341, 25, 198, 220, 220, 220, 13877, 796, 42636, 3419, 628, 198, 198, 31, 33803, 13, 15003, 3419, 628, 198, 4299, 8677, 62, 805, 8409, 7, 33803, 11, 10561, 2599, 198, 220, 220, 220, 37227, 7454, 356, 423, 262, 10561, 422, 262, 1200, 13877, 11, 8677, 340, 656, 674, 898, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 329, 2172, 287, 10561, 13, 1136, 7203, 25811, 1600, 17635, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13877, 13, 2860, 62, 18076, 7, 8738, 17816, 3672, 6, 4357, 2172, 17816, 12286, 6, 4357, 2172, 17816, 11213, 6, 12962, 628, 220, 220, 220, 329, 285, 287, 10561, 13, 1136, 7203, 81, 14751, 24396, 82, 1600, 17635, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13877, 13, 2860, 62, 24396, 7, 76, 17816, 3672, 6, 4357, 13877, 13, 9410, 13, 36436, 62, 24396, 11, 4469, 28, 17821, 8, 628, 220, 220, 220, 329, 264, 287, 10561, 13, 1136, 7203, 7266, 12048, 507, 1600, 17635, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13877, 13, 2860, 62, 7266, 33584, 7, 82, 11, 13877, 13, 9410, 13, 36436, 62, 7266, 33584, 8, 628, 220, 220, 220, 329, 289, 287, 10561, 13, 1136, 7203, 25480, 82, 1600, 17635, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13877, 13, 2860, 62, 25480, 7, 71, 11, 13877, 13, 9410, 13, 36436, 62, 24396, 11, 4469, 28, 17821, 8, 628, 198, 31, 33803, 13, 24396, 10786, 2306, 382, 2220, 12, 2118, 433, 11537, 198, 4299, 15765, 7, 33803, 2599, 198, 220, 220, 220, 37227, 5124, 935, 20022, 257, 15765, 286, 262, 13877, 6856, 416, 1960, 382, 2220, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1200, 796, 13877, 13, 9410, 198, 220, 220, 220, 1200, 13, 2118, 433, 3419, 628, 198, 2, 775, 460, 470, 8814, 319, 2488, 33803, 13, 15003, 284, 1560, 514, 262, 13877, 356, 761, 284, 2342, 290, 198, 2, 18126, 1201, 356, 761, 284, 923, 340, 284, 1208, 832, 663, 10561, 878, 356, 651, 198, 2, 597, 537, 72, 3689, 13, 1406, 356, 821, 24312, 284, 651, 674, 2560, 23991, 1370, 290, 21136, 503, 262, 198, 2, 4578, 416, 1021, 13, 198, 8000, 796, 26692, 22602, 13, 18709, 22446, 8000, 3419, 198, 28758, 1370, 796, 2560, 13, 28758, 1370, 3419, 198, 33803, 13, 6978, 796, 6045, 198, 198, 40290, 796, 705, 438, 2306, 382, 2220, 12, 33803, 11639, 198, 198, 1640, 269, 287, 23991, 1370, 25, 198, 220, 220, 220, 611, 269, 13, 9688, 2032, 342, 7, 40290, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13877, 13, 6978, 796, 269, 58, 11925, 7, 40290, 2599, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 198, 361, 13877, 13, 6978, 25, 198, 220, 220, 220, 13877, 13, 9410, 796, 5932, 37233, 7, 33803, 13, 6978, 11, 13877, 8, 628, 220, 220, 220, 1303, 1002, 356, 460, 470, 923, 319, 262, 717, 2230, 356, 460, 470, 8677, 656, 262, 198, 220, 220, 220, 1303, 10561, 11, 645, 966, 287, 8282, 13, 198, 220, 220, 220, 611, 407, 13877, 13, 9410, 13, 9688, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 23722, 407, 923, 262, 13877, 739, 2478, 11, 460, 470, 2555, 4943, 628, 220, 220, 220, 8677, 62, 805, 8409, 7, 33803, 11, 13877, 13, 9410, 13, 805, 8409, 8, 628, 198, 2, 2735, 356, 460, 1057, 262, 4036, 13877, 198, 33803, 13, 2860, 62, 18076, 7203, 2306, 382, 2220, 12, 33803, 1600, 6045, 11, 366, 15235, 284, 262, 13877, 326, 356, 815, 307, 4964, 290, 18126, 278, 19570, 198, 33803, 13, 5143, 3419, 198 ]
3.008929
672
from PyQt4 import QtCore, QtGui import maya.cmds as cmds import maya.OpenMayaUI as mui import sip try: dialog.deleteLater() except: pass dialog = show()
[ 6738, 9485, 48, 83, 19, 1330, 33734, 14055, 11, 33734, 8205, 72, 198, 198, 11748, 743, 64, 13, 28758, 82, 355, 23991, 82, 198, 11748, 743, 64, 13, 11505, 6747, 64, 10080, 355, 285, 9019, 198, 198, 11748, 31145, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 628, 198, 28311, 25, 198, 220, 220, 220, 17310, 13, 33678, 18602, 3419, 198, 16341, 25, 198, 220, 220, 220, 1208, 220, 220, 220, 220, 198, 38969, 519, 796, 905, 3419, 198 ]
2.076087
92
import pytest from fitbert import FitBert from fitbert.delemmatize import Delemmatizer dl = Delemmatizer() """ def test_masker_works_without_instantiating(): masked_string, masked = FitBert.mask( "This might be justified to signalling the connection between drunken driving and fatal accidents.", (27, 37), ) assert FitBert.mask_token in masked_string, "It should mask using the mask token" assert masked == "signalling", "It should mask the write substring" """ @pytest.mark.slow
[ 11748, 12972, 9288, 198, 6738, 4197, 4835, 1330, 25048, 33, 861, 198, 6738, 4197, 4835, 13, 2934, 293, 3020, 265, 1096, 1330, 42226, 3020, 265, 7509, 198, 198, 25404, 796, 42226, 3020, 265, 7509, 3419, 628, 628, 628, 198, 37811, 198, 4299, 1332, 62, 27932, 263, 62, 5225, 62, 19419, 62, 8625, 17096, 803, 33529, 198, 220, 220, 220, 29229, 62, 8841, 11, 29229, 796, 25048, 33, 861, 13, 27932, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1212, 1244, 307, 14460, 284, 45829, 262, 4637, 1022, 26680, 5059, 290, 10800, 17390, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 357, 1983, 11, 5214, 828, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 6818, 25048, 33, 861, 13, 27932, 62, 30001, 287, 29229, 62, 8841, 11, 366, 1026, 815, 9335, 1262, 262, 9335, 11241, 1, 198, 220, 220, 220, 6818, 29229, 6624, 366, 12683, 9221, 1600, 366, 1026, 815, 9335, 262, 3551, 3293, 1806, 1, 198, 37811, 628, 198, 31, 9078, 9288, 13, 4102, 13, 38246, 198 ]
3.052632
171
from django.utils import timezone from orders.models import Order class OrderIsPaidSetter: """Mark order as paid"""
[ 6738, 42625, 14208, 13, 26791, 1330, 640, 11340, 198, 198, 6738, 6266, 13, 27530, 1330, 8284, 628, 198, 4871, 8284, 3792, 47, 1698, 7248, 353, 25, 198, 220, 220, 220, 37227, 9704, 1502, 355, 3432, 37811, 198 ]
3.324324
37
"""Nested Stack for the sample IAM Role creation for Managing SWIFT components""" from typing import List from aws_cdk import ( aws_rds as _rds, aws_iam as _iam ) from constructs import Construct from aws_cdk import NestedStack class SwiftIAMRole(NestedStack): """Nested Stack for the sample IAM Role creation for Managing SWIFT components""" # pylint: disable=too-many-arguments def create_swift_instance_operator_role(self, instance_ids): """create swift instance operator role""" swift_instance_operator_role = \ _iam.Role(self, "SWIFTInstanceOperatorRole", role_name="SWIFTInstanceOperatorRole", assumed_by=_iam.AccountPrincipal(account_id=self.account) .with_conditions({"Bool": {"aws:MultiFactorAuthPresent": "true"}}) ) instances_resource = [] if instance_ids is not None: for instance_id in instance_ids: instances_resource.append( "arn:aws:ec2:" + self.region + ":" + self.account + ":instance/" + instance_id) ssm_doc_resource = "arn:aws:ssm:" + self.region + \ ":" + self.account + ":document/SSM-SessionManagerRunShell" statements = [ _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["ssm:StartSession", "ssm:SendCommand"], resources=[ssm_doc_resource] + instances_resource, conditions={"BoolIfExists": { "ssm:SessionDocumentAccessCheck": "true"}}), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["ssm:DescribeSessions", "ssm:GetConnectionStatus", "ssm:DescribeInstanceInformation", "ssm:DescribeInstanceProperties", "ec2:DescribeInstances"], resources=["*"]), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["ssm:TerminateSession"], resources=[ "arn:aws:ssm:*:*:session/${aws:username}-*"])] _iam.Policy( self, "SSMInstanceAccessPolicy", policy_name="SSMInstanceAccessPolicy", roles=[swift_instance_operator_role], statements=statements, force=True) def create_swift_infrastructure_role( self, database_instance: _rds.DatabaseInstance, instance_ids: List[str], mq_broker_arn: str): """create swift infrastructure role""" swift_infrastructure_role = \ _iam.Role(self, "SWIFTInfrastructureRole", role_name="SWIFTInfrastructureRole", assumed_by=_iam.AccountPrincipal(account_id=self.account) .with_conditions({"Bool": {"aws:MultiFactorAuthPresent": "true"}}) ) instances_resource = [] if instance_ids is not None: for instance_id in instance_ids: instances_resource.append( "arn:aws:ec2:" + self.region + ":" + self.account + ":instance/" + instance_id) statements = [ _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["rds:Describe*"], resources=["*"]), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["rds:Start*", "rds:Stop*"], resources=[database_instance.instance_arn]), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["ec2:Describe*"], resources=["*"]), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["ec2:Start*", "ec2:Stop*"], resources=instances_resource), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["mq:List*", "mq:Describe*", "mq:RebootBroker"], resources=[mq_broker_arn]), _iam.PolicyStatement( effect=_iam.Effect.ALLOW, actions=["logs:List*", "logs:Describe*", "logs:Get*"], resources=["*"])] _iam.Policy( self, "SwiftInfrastructurePolicy", policy_name="SwiftInfrastructurePolicy", roles=[swift_infrastructure_role], statements=statements, force=True)
[ 37811, 45, 7287, 23881, 329, 262, 6291, 314, 2390, 20934, 6282, 329, 37108, 12672, 32297, 6805, 37811, 198, 6738, 19720, 1330, 7343, 198, 198, 6738, 3253, 82, 62, 10210, 74, 1330, 357, 198, 220, 220, 220, 3253, 82, 62, 4372, 82, 355, 4808, 4372, 82, 11, 198, 220, 220, 220, 3253, 82, 62, 1789, 355, 4808, 1789, 198, 8, 198, 6738, 34175, 1330, 28407, 198, 6738, 3253, 82, 62, 10210, 74, 1330, 399, 7287, 25896, 198, 198, 4871, 15608, 40, 2390, 47445, 7, 45, 7287, 25896, 2599, 198, 220, 220, 220, 37227, 45, 7287, 23881, 329, 262, 6291, 314, 2390, 20934, 6282, 329, 37108, 12672, 32297, 6805, 37811, 628, 220, 220, 220, 1303, 279, 2645, 600, 25, 15560, 28, 18820, 12, 21834, 12, 853, 2886, 628, 220, 220, 220, 825, 2251, 62, 2032, 2135, 62, 39098, 62, 46616, 62, 18090, 7, 944, 11, 4554, 62, 2340, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17953, 14622, 4554, 10088, 2597, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 14622, 62, 39098, 62, 46616, 62, 18090, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 47445, 7, 944, 11, 366, 17887, 32297, 33384, 18843, 1352, 47445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2597, 62, 3672, 2625, 17887, 32297, 33384, 18843, 1352, 47445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9672, 62, 1525, 28, 62, 1789, 13, 30116, 42904, 8521, 7, 23317, 62, 312, 28, 944, 13, 23317, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 4480, 62, 17561, 1756, 7, 4895, 33, 970, 1298, 19779, 8356, 25, 29800, 41384, 30515, 34695, 1298, 366, 7942, 1, 11709, 8, 198, 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, 10245, 62, 31092, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4554, 62, 2340, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4554, 62, 312, 287, 4554, 62, 2340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10245, 62, 31092, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1501, 25, 8356, 25, 721, 17, 11097, 1343, 2116, 13, 36996, 1343, 366, 11097, 1343, 2116, 13, 23317, 1343, 366, 25, 39098, 30487, 1343, 4554, 62, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 264, 5796, 62, 15390, 62, 31092, 796, 366, 1501, 25, 8356, 25, 824, 76, 11097, 1343, 2116, 13, 36996, 1343, 3467, 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, 366, 11097, 1343, 2116, 13, 23317, 1343, 366, 25, 22897, 14, 5432, 44, 12, 36044, 13511, 10987, 23248, 1, 628, 220, 220, 220, 220, 220, 220, 220, 6299, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 824, 76, 25, 10434, 36044, 1600, 366, 824, 76, 25, 25206, 21575, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 41888, 824, 76, 62, 15390, 62, 31092, 60, 1343, 10245, 62, 31092, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 28, 4895, 33, 970, 1532, 3109, 1023, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 824, 76, 25, 36044, 24941, 15457, 9787, 1298, 366, 7942, 1, 11709, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4028, 28, 14692, 824, 76, 25, 24564, 4892, 50, 6202, 1600, 366, 824, 76, 25, 3855, 32048, 19580, 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, 366, 824, 76, 25, 24564, 4892, 33384, 21918, 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, 366, 824, 76, 25, 24564, 4892, 33384, 2964, 18200, 1600, 366, 721, 17, 25, 24564, 4892, 6310, 1817, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 28, 14692, 9, 8973, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4028, 28, 14692, 824, 76, 25, 44798, 378, 36044, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1501, 25, 8356, 25, 824, 76, 25, 47026, 47026, 29891, 32624, 90, 8356, 25, 29460, 92, 12, 9, 8973, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 366, 5432, 44, 33384, 15457, 36727, 1600, 2450, 62, 3672, 2625, 5432, 44, 33384, 15457, 36727, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9176, 41888, 2032, 2135, 62, 39098, 62, 46616, 62, 18090, 4357, 6299, 28, 14269, 3196, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 28, 17821, 8, 628, 220, 220, 220, 825, 2251, 62, 2032, 2135, 62, 10745, 6410, 62, 18090, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 6831, 62, 39098, 25, 4808, 4372, 82, 13, 38105, 33384, 11, 4554, 62, 2340, 25, 7343, 58, 2536, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 80, 62, 7957, 6122, 62, 1501, 25, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17953, 14622, 6884, 2597, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 14622, 62, 10745, 6410, 62, 18090, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 47445, 7, 944, 11, 366, 17887, 32297, 18943, 6410, 47445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2597, 62, 3672, 2625, 17887, 32297, 18943, 6410, 47445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9672, 62, 1525, 28, 62, 1789, 13, 30116, 42904, 8521, 7, 23317, 62, 312, 28, 944, 13, 23317, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 4480, 62, 17561, 1756, 7, 4895, 33, 970, 1298, 19779, 8356, 25, 29800, 41384, 30515, 34695, 1298, 366, 7942, 1, 11709, 8, 198, 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, 10245, 62, 31092, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4554, 62, 2340, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4554, 62, 312, 287, 4554, 62, 2340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10245, 62, 31092, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1501, 25, 8356, 25, 721, 17, 11097, 1343, 2116, 13, 36996, 1343, 366, 11097, 1343, 2116, 13, 23317, 1343, 366, 25, 39098, 30487, 1343, 4554, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6299, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 4372, 82, 25, 24564, 4892, 9, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 28, 14692, 9, 8973, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 4372, 82, 25, 10434, 9, 1600, 366, 4372, 82, 25, 19485, 9, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 41888, 48806, 62, 39098, 13, 39098, 62, 1501, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 721, 17, 25, 24564, 4892, 9, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 28, 14692, 9, 8973, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 721, 17, 25, 10434, 9, 1600, 366, 721, 17, 25, 19485, 9, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 28, 8625, 1817, 62, 31092, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 76, 80, 25, 8053, 9, 1600, 366, 76, 80, 25, 24564, 4892, 9, 1600, 366, 76, 80, 25, 28951, 1025, 15783, 6122, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 41888, 76, 80, 62, 7957, 6122, 62, 1501, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 48682, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 28, 62, 1789, 13, 18610, 13, 7036, 3913, 11, 4028, 28, 14692, 6404, 82, 25, 8053, 9, 1600, 366, 6404, 82, 25, 24564, 4892, 9, 1600, 366, 6404, 82, 25, 3855, 9, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 28, 14692, 9, 8973, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 1789, 13, 36727, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 366, 10462, 2135, 18943, 6410, 36727, 1600, 2450, 62, 3672, 2625, 10462, 2135, 18943, 6410, 36727, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9176, 41888, 2032, 2135, 62, 10745, 6410, 62, 18090, 4357, 6299, 28, 14269, 3196, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 28, 17821, 8, 198 ]
2.072076
2,095
import argparse import csv from os.path import join from pathlib import Path from tqdm import tqdm import torch import torchaudio import numpy as np from librosa import resample if __name__ == "__main__": main()
[ 11748, 1822, 29572, 198, 11748, 269, 21370, 198, 6738, 28686, 13, 6978, 1330, 4654, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 198, 11748, 28034, 198, 11748, 28034, 24051, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 9195, 4951, 64, 1330, 581, 1403, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
3.112676
71
#!/usr/bin/env python import os from PIL import Image import glob, os from tqdm import tqdm import six #import cv2 import pandas as pd from keras_segmentation.data_utils.data_loader import get_image_array, get_segmentation_array import numpy as np import re import json from pandas.io.json import json_normalize import time import multiprocessing
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 11748, 28686, 198, 198, 6738, 350, 4146, 1330, 7412, 220, 198, 11748, 15095, 11, 28686, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 11748, 2237, 198, 2, 11748, 269, 85, 17, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 41927, 292, 62, 325, 5154, 341, 13, 7890, 62, 26791, 13, 7890, 62, 29356, 1330, 651, 62, 9060, 62, 18747, 11, 651, 62, 325, 5154, 341, 62, 18747, 198, 11748, 299, 32152, 355, 45941, 198, 198, 11748, 302, 198, 11748, 33918, 198, 6738, 19798, 292, 13, 952, 13, 17752, 1330, 33918, 62, 11265, 1096, 198, 11748, 640, 198, 11748, 18540, 305, 919, 278, 628, 628, 198 ]
3.025641
117
from enum import Enum, auto from new_movies import movies_directory weekly_schedule = { Weekday.MONDAY: movies_directory.available_movies[0:2], Weekday.TUESDAY: movies_directory.available_movies[2:4], Weekday.WEDNESDAY: movies_directory.available_movies[4:6], Weekday.THURSDAY: movies_directory.available_movies[6:8], Weekday.FRIDAY: movies_directory.available_movies[8:11], Weekday.SATURDAY: movies_directory.available_movies[11:12], Weekday.SUNDAY: movies_directory.available_movies[12:14], }
[ 6738, 33829, 1330, 2039, 388, 11, 8295, 198, 198, 6738, 649, 62, 76, 20526, 1330, 6918, 62, 34945, 628, 198, 198, 45291, 62, 15952, 5950, 796, 1391, 198, 220, 220, 220, 6119, 820, 13, 44, 18672, 4792, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 15, 25, 17, 4357, 198, 220, 220, 220, 6119, 820, 13, 51, 35409, 26442, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 17, 25, 19, 4357, 198, 220, 220, 220, 6119, 820, 13, 54, 1961, 37379, 26442, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 19, 25, 21, 4357, 198, 220, 220, 220, 6119, 820, 13, 4221, 4261, 10305, 4792, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 21, 25, 23, 4357, 198, 220, 220, 220, 6119, 820, 13, 10913, 2389, 4792, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 23, 25, 1157, 4357, 198, 220, 220, 220, 6119, 820, 13, 50, 1404, 4261, 26442, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 1157, 25, 1065, 4357, 198, 220, 220, 220, 6119, 820, 13, 50, 4944, 26442, 25, 6918, 62, 34945, 13, 15182, 62, 76, 20526, 58, 1065, 25, 1415, 4357, 198, 92, 628 ]
2.626866
201
#!/usr/bin/env python # -*- coding: utf-8 -*- ########################################################### # WARNING: Generated code! # # ************************** # # Manual changes may get lost if file is generated again. # # Only code inside the [MANUAL] tags will be kept. # ########################################################### from flexbe_core import Behavior, Autonomy, OperatableStateMachine, ConcurrencyContainer, PriorityContainer, Logger from sara_flexbe_states.gen_gripper_pose import GenGripperPose from flexbe_states.check_condition_state import CheckConditionState from sara_flexbe_states.moveit_move import MoveitMove # Additional imports can be added inside the following tags # [MANUAL_IMPORT] # [/MANUAL_IMPORT] ''' Created on Fri Oct 20 2017 @author: Philippe La Madeleine ''' class Check_reachabilitySM(Behavior): ''' check if the object is in range ''' # [/MANUAL_INIT] # Behavior comments: # Private functions can be added inside the following tags # [MANUAL_FUNC] # [/MANUAL_FUNC]
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 29113, 14468, 7804, 21017, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39410, 25, 2980, 515, 2438, 0, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8412, 4557, 1174, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 2, 17969, 2458, 743, 651, 2626, 611, 2393, 318, 7560, 757, 13, 1303, 198, 2, 5514, 2438, 2641, 262, 685, 10725, 25620, 60, 15940, 481, 307, 4030, 13, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 29113, 14468, 7804, 21017, 198, 198, 6738, 7059, 1350, 62, 7295, 1330, 20181, 11, 5231, 30565, 11, 6564, 21156, 9012, 37573, 11, 13223, 13382, 29869, 11, 34416, 29869, 11, 5972, 1362, 198, 6738, 264, 3301, 62, 32880, 1350, 62, 27219, 13, 5235, 62, 70, 380, 2848, 62, 3455, 1330, 5215, 38, 380, 2848, 47, 577, 198, 6738, 7059, 1350, 62, 27219, 13, 9122, 62, 31448, 62, 5219, 1330, 6822, 48362, 9012, 198, 6738, 264, 3301, 62, 32880, 1350, 62, 27219, 13, 21084, 270, 62, 21084, 1330, 10028, 270, 21774, 198, 2, 15891, 17944, 460, 307, 2087, 2641, 262, 1708, 15940, 198, 2, 685, 10725, 25620, 62, 3955, 15490, 60, 198, 198, 2, 46581, 10725, 25620, 62, 3955, 15490, 60, 628, 198, 7061, 6, 198, 41972, 319, 19480, 2556, 1160, 2177, 198, 31, 9800, 25, 39393, 4689, 14446, 293, 500, 198, 7061, 6, 198, 4871, 6822, 62, 16250, 1799, 12310, 7, 25267, 15759, 2599, 198, 197, 7061, 6, 198, 197, 9122, 611, 262, 2134, 318, 287, 2837, 198, 197, 7061, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 46581, 10725, 25620, 62, 1268, 2043, 60, 628, 197, 197, 2, 20181, 3651, 25, 628, 628, 198, 197, 2, 15348, 5499, 460, 307, 2087, 2641, 262, 1708, 15940, 198, 197, 2, 685, 10725, 25620, 62, 42296, 34, 60, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 46581, 10725, 25620, 62, 42296, 34, 60, 198 ]
2.911688
385
import sys import transaction from zope.component.hooks import setSite PKGNAME = 'uu.formlibrary' PROFILE = 'profile-%s:default' % PKGNAME _installed = lambda site: site.portal_quickinstaller.isProductInstalled product_installed = lambda site, name: _installed(site)(name) if __name__ == '__main__' and 'app' in locals(): idxname = sys.argv[-1] if idxname.endswith('.py'): print 'No index name has been provided, reindexing all indexes.' idxname = None main(app, idxname) # noqa
[ 11748, 25064, 198, 198, 11748, 8611, 198, 6738, 1976, 3008, 13, 42895, 13, 25480, 82, 1330, 900, 29123, 198, 198, 40492, 16630, 10067, 796, 705, 12303, 13, 687, 32016, 6, 198, 31190, 25664, 796, 705, 13317, 12, 4, 82, 25, 12286, 6, 4064, 29673, 16630, 10067, 628, 198, 62, 37050, 796, 37456, 2524, 25, 2524, 13, 634, 282, 62, 24209, 17350, 263, 13, 271, 15667, 6310, 4262, 198, 11167, 62, 37050, 796, 37456, 2524, 11, 1438, 25, 4808, 37050, 7, 15654, 5769, 3672, 8, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 6, 290, 705, 1324, 6, 287, 17205, 33529, 198, 220, 220, 220, 4686, 87, 3672, 796, 25064, 13, 853, 85, 58, 12, 16, 60, 198, 220, 220, 220, 611, 4686, 87, 3672, 13, 437, 2032, 342, 7, 4458, 9078, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 705, 2949, 6376, 1438, 468, 587, 2810, 11, 302, 9630, 278, 477, 39199, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 3672, 796, 6045, 198, 220, 220, 220, 1388, 7, 1324, 11, 4686, 87, 3672, 8, 220, 1303, 645, 20402, 628 ]
2.717277
191
#!/usr/bin/env python # # This script helps at the generation or correction of groundtruths. # # Usage: python missing_incorrect_files.py <pickle_filename> # where <pickle_filename> has been generated by '0_check_data.py'. # e.g. python missing_incorrect_files.py 201809192209_incorrect_lesion.pkl # # Charley Gros 2018-09-18 # Modified: 2018-10-01 import os import sys import pickle import sct_utils as sct def _visualize_incorrect_segmentation(lst): '''Open incorrect segmentations with FSLeyes.''' stg = '\n\nIncorrect files: ' + str(len(lst)) + '\n\n' stg += 'Please correct the segmentations and save them as *_lesion_manual.nii.gz for the lesion segmentation.' stg += '\n' print stg for l in lst: print os.path.dirname(l) + '\n' fname_img = os.path.dirname(l) + '/' + l.split('/')[-2] + '.nii.gz' os.system(' '.join(['fsleyes', fname_img, l, '-cm Red'])) def _display_missing_files(dct): '''Print the missing files in the terminal.''' stg = '\n\nMissing files: ' + str(len(dct[dct.keys()[0]])) + '\n\n' + '\n'.join(dct[dct.keys()[0]]) print stg if __name__ == '__main__': path_pickle = sys.argv[1] run_main(path_pickle)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 198, 2, 770, 4226, 5419, 379, 262, 5270, 393, 17137, 286, 2323, 35310, 82, 13, 198, 2, 198, 2, 29566, 25, 21015, 4814, 62, 1939, 47315, 62, 16624, 13, 9078, 1279, 27729, 293, 62, 34345, 29, 198, 2, 197, 197, 197, 197, 3003, 1279, 27729, 293, 62, 34345, 29, 468, 587, 7560, 416, 705, 15, 62, 9122, 62, 7890, 13, 9078, 4458, 198, 2, 304, 13, 70, 13, 21015, 4814, 62, 1939, 47315, 62, 16624, 13, 9078, 580, 34583, 17477, 22567, 62, 1939, 47315, 62, 829, 295, 13, 79, 41582, 198, 2, 198, 2, 3178, 1636, 402, 4951, 2864, 12, 2931, 12, 1507, 198, 2, 40499, 25, 2864, 12, 940, 12, 486, 198, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 2298, 293, 198, 11748, 264, 310, 62, 26791, 355, 264, 310, 628, 198, 4299, 4808, 41464, 1096, 62, 1939, 47315, 62, 325, 5154, 341, 7, 75, 301, 2599, 198, 197, 7061, 6, 11505, 11491, 10618, 602, 351, 376, 8634, 48418, 2637, 7061, 198, 197, 301, 70, 796, 705, 59, 77, 59, 77, 818, 30283, 3696, 25, 705, 1343, 965, 7, 11925, 7, 75, 301, 4008, 1343, 705, 59, 77, 59, 77, 6, 198, 197, 301, 70, 15853, 705, 5492, 3376, 262, 10618, 602, 290, 3613, 606, 355, 1635, 62, 829, 295, 62, 805, 723, 13, 77, 4178, 13, 34586, 329, 262, 10287, 295, 10618, 341, 2637, 198, 197, 301, 70, 15853, 705, 59, 77, 6, 198, 197, 4798, 336, 70, 198, 197, 1640, 300, 287, 300, 301, 25, 198, 197, 197, 4798, 28686, 13, 6978, 13, 15908, 3672, 7, 75, 8, 1343, 705, 59, 77, 6, 198, 197, 197, 69, 3672, 62, 9600, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 75, 8, 1343, 31051, 6, 1343, 300, 13, 35312, 10786, 14, 11537, 58, 12, 17, 60, 1343, 45302, 77, 4178, 13, 34586, 6, 198, 197, 197, 418, 13, 10057, 10786, 45302, 22179, 7, 17816, 9501, 1636, 274, 3256, 277, 3672, 62, 9600, 11, 300, 11, 705, 12, 11215, 2297, 20520, 4008, 628, 198, 4299, 4808, 13812, 62, 45688, 62, 16624, 7, 67, 310, 2599, 198, 197, 7061, 6, 18557, 262, 4814, 3696, 287, 262, 12094, 2637, 7061, 198, 197, 301, 70, 796, 705, 59, 77, 59, 77, 43730, 3696, 25, 705, 1343, 965, 7, 11925, 7, 67, 310, 58, 67, 310, 13, 13083, 3419, 58, 15, 11907, 4008, 1343, 705, 59, 77, 59, 77, 6, 1343, 705, 59, 77, 4458, 22179, 7, 67, 310, 58, 67, 310, 13, 13083, 3419, 58, 15, 11907, 8, 198, 197, 4798, 336, 70, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 197, 6978, 62, 27729, 293, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 197, 5143, 62, 12417, 7, 6978, 62, 27729, 293, 8, 198 ]
2.455319
470
from rouge import Rouge import csv """Creates a csv file with rouge scores between summaries in a cluster""" CLUSTERS = { 'sandy':[ "After Sandy hit the East Coast Monday night, more than 2 million New Jersey residents were left without power and feeling powerless", "Superstorm Sandy crashed ashore this week, cutting a path of destruction several hundred miles long. Here are some numbers that help put it in perspective.", "Hurricane Sandy struck the Northeast hard when it made landfall in New Jersey Tuesday night. New York Magazine's cover reflects the damage.", "Hurricane Sandy is poised to become an “unprecedented” superstorm that could leave millions of people in the Northeast without power for days or even weeks, experts said Saturday.", "One of the largest and fiercest storms to menace the East Coast in years caused widespread flooding, power outages and damage. At least 16 have died, AP reports.", "The hurricane continued its march north, with powerful winds already affecting the region on Sunday and landfall expected on Monday or Tuesday.", ], 'orlando':[ "A shooting at a gay nightclub in Orlando killed at least 50 people on Sunday, June 12. Orlando police said they shot and killed the gunman.", "Approximately 20 people have died after an attacker opened fire inside a gay nightclub in the Florida city of Orlando, police say.", "Officials say at least 49 people were killed and dozens were injured in the shooting.", "A terrorist opened fire inside a popular Orlando gay club near closing time early Sunday.", "At least 42 people were taken to hospitals with injuries, police said. The shooter was killed in an exchange of gunfire with police.", "Police in the US city of Orlando are telling people to stay away from a gay nightclub where a shooting has broken out and people are injured.'", "Unconfirmed reports have emerged of a shooting at a nightclub in Orlando, Florida.'", "At least 50 people are dead and dozens injured after a gunman opened fire at a gay nightclub in Orlando. What exactly happened?'", "For three harrowing hours, as Omar Mateen carried out his rampage inside the Pulse nightclub in Orlando, clubgoers hid in bathrooms, in air-conditioning vents, under tables.'", "It's the worst terror attack on American soil since 9/11, and the deadliest mass shooting in U.S. history.'", "The gun massacre Sunday at an Orlando nightclub is the worst in the history of the U.S., where mass shootings are frighteningly common.'", ], 'mandela':[ "Nelson Mandela, who rose from militant antiapartheid activist to become the unifying president of a democratic South Africa and a global symbol of racial reconciliation, died at his Johannesburg home on Thursday. He was 95.", "He was the country’s most potent symbol of unity, using the power of forgiveness and reconciliation.", "The South African leader, who passionately fought apartheid, dies at age 95", "Nelson Mandela, the anti-apartheid crusader and former South African president, died Dec. 5 at 95. We’re bringing you live updates here.", "In a symbol befitting a nation in mourning, a dark gray cloud swept over Johannesburg on Friday as news spread that Nelson Mandela is dead.", "The people of South Africa reacted Friday with deep sadness at the loss of a man considered by many to be the father of the nation, while mourners said it was also a time to celebrate the achievements of the anti-apartheid leader who emerged from prison to become South Africa's first black president.", "When Nelson Mandela died on Thursday, people around the globe gathered to memorialize the man widely recognized as a beacon of courage, hope and freedom.", "Mandela transformed his nation from oppressive regime to one of the most inclusive democracies on the planet.", "In an extraordinary life that spanned the rural hills where he was groomed for tribal leadership, anti-apartheid activism, guerrilla warfare, 27 years of political imprisonment and, ultimately, the South African presidency, Mandela held a unique cachet that engendered respect and awe in capitals around the globe.'", ], 'boston':[ "At least two dead and dozens injured when bombs go off near finish line.", "Two explosions rocked the finish line at the Boston Marathon on Monday, killing three and wounding at least 144 people", "Pressure cookers are believed to have been used to make the crude bombs that sent torrents of deadly shrapnel hurling into a crowd of onlookers and competitors at Monday’s Boston Marathon, experts told Fox News", "Two deadly bomb blasts, seconds apart, turned the 117th Boston Marathon – the nation’s premier event for elite and recreational runners – into a tragedy on Monday. Here is a timeline of how the day’s events unfolded: 9 a.m. ET — Race …", "When two bombs detonated in the final stretch of the Boston Marathon on Monday afternoon, runners, spectators and people across the country and around the world were stunned by the public nature of", "Mayhem descended on the Boston marathon Monday afternoon, when an explosion at the finish line killed at least two and injured at least 23. TIME is tracking the breaking news from the scene in downtown Boston. Follow here for constant updates. 5:45 p.m.", "Two bombs exploded in the packed streets near the finish line of the Boston Marathon on Monday, killing two people and injuring more than 100 in a terrifying scene of shattered glass, billowing smoke, bloodstained pavement and severed limbs, authorities said", "Blasts near the finish line of the renowned race caused dozens of injuries and scattered crowds.", "Two deadly explosions brought the Boston Marathon and much of this city to a chaotic halt Monday, killing at least three people, injuring about 140 and once again raising the specter of terrorism on American soil.", ]} if __name__ == '__main__': main()
[ 6738, 13805, 469, 1330, 27478, 198, 11748, 269, 21370, 198, 198, 37811, 16719, 274, 257, 269, 21370, 2393, 351, 13805, 469, 8198, 1022, 30114, 3166, 287, 257, 13946, 37811, 628, 198, 5097, 7759, 4877, 796, 1391, 198, 338, 10757, 10354, 58, 198, 1, 3260, 17581, 2277, 262, 3687, 8545, 3321, 1755, 11, 517, 621, 362, 1510, 968, 8221, 5085, 547, 1364, 1231, 1176, 290, 4203, 34209, 1600, 198, 1, 12442, 12135, 17581, 14997, 45817, 428, 1285, 11, 7720, 257, 3108, 286, 8166, 1811, 3470, 4608, 890, 13, 3423, 389, 617, 3146, 326, 1037, 1234, 340, 287, 6650, 33283, 198, 1, 42633, 11551, 17581, 7425, 262, 26315, 1327, 618, 340, 925, 43682, 287, 968, 8221, 3431, 1755, 13, 968, 1971, 11175, 338, 3002, 12497, 262, 2465, 33283, 198, 1, 42633, 11551, 17581, 318, 24357, 284, 1716, 281, 564, 250, 403, 3866, 12292, 447, 251, 2208, 12135, 326, 714, 2666, 5242, 286, 661, 287, 262, 26315, 1231, 1176, 329, 1528, 393, 772, 2745, 11, 6154, 531, 3909, 33283, 198, 1, 3198, 286, 262, 4387, 290, 277, 959, 9165, 20228, 284, 36292, 262, 3687, 8545, 287, 812, 4073, 10095, 17448, 11, 1176, 503, 1095, 290, 2465, 13, 1629, 1551, 1467, 423, 3724, 11, 3486, 3136, 33283, 198, 1, 464, 23964, 3767, 663, 9960, 5093, 11, 351, 3665, 13520, 1541, 13891, 262, 3814, 319, 3502, 290, 43682, 2938, 319, 3321, 393, 3431, 33283, 198, 4357, 198, 6, 273, 11993, 10354, 58, 198, 1, 32, 4395, 379, 257, 5650, 26617, 287, 13117, 2923, 379, 1551, 2026, 661, 319, 3502, 11, 2795, 1105, 13, 13117, 1644, 531, 484, 2823, 290, 2923, 262, 23128, 33283, 198, 1, 4677, 24378, 1160, 661, 423, 3724, 706, 281, 15250, 4721, 2046, 2641, 257, 5650, 26617, 287, 262, 4744, 1748, 286, 13117, 11, 1644, 910, 33283, 198, 1, 25883, 910, 379, 1551, 5125, 661, 547, 2923, 290, 9264, 547, 6686, 287, 262, 4395, 33283, 198, 1, 32, 7417, 4721, 2046, 2641, 257, 2968, 13117, 5650, 3430, 1474, 9605, 640, 1903, 3502, 33283, 198, 1, 2953, 1551, 5433, 661, 547, 2077, 284, 11301, 351, 6821, 11, 1644, 531, 13, 383, 14273, 373, 2923, 287, 281, 5163, 286, 29276, 351, 1644, 33283, 198, 1, 9039, 287, 262, 1294, 1748, 286, 13117, 389, 5149, 661, 284, 2652, 1497, 422, 257, 5650, 26617, 810, 257, 4395, 468, 5445, 503, 290, 661, 389, 6686, 2637, 1600, 198, 1, 3118, 36349, 3136, 423, 9349, 286, 257, 4395, 379, 257, 26617, 287, 13117, 11, 4744, 2637, 1600, 198, 1, 2953, 1551, 2026, 661, 389, 2636, 290, 9264, 6686, 706, 257, 23128, 4721, 2046, 379, 257, 5650, 26617, 287, 13117, 13, 1867, 3446, 3022, 8348, 1600, 198, 1, 1890, 1115, 45736, 2250, 11, 355, 24980, 24787, 268, 5281, 503, 465, 34040, 2641, 262, 25062, 26617, 287, 13117, 11, 3430, 31006, 24519, 287, 32601, 11, 287, 1633, 12, 31448, 278, 42777, 11, 739, 8893, 2637, 1600, 198, 1, 1026, 338, 262, 5290, 3246, 1368, 319, 1605, 9260, 1201, 860, 14, 1157, 11, 290, 262, 39268, 2347, 4395, 287, 471, 13, 50, 13, 2106, 2637, 1600, 198, 1, 464, 2485, 19050, 3502, 379, 281, 13117, 26617, 318, 262, 5290, 287, 262, 2106, 286, 262, 471, 13, 50, 1539, 810, 2347, 17690, 389, 23101, 306, 2219, 2637, 1600, 198, 4357, 198, 1101, 392, 10304, 10354, 58, 198, 1, 45, 10151, 40233, 11, 508, 8278, 422, 18614, 3098, 499, 433, 28420, 11276, 284, 1716, 262, 555, 4035, 1893, 286, 257, 10518, 2520, 5478, 290, 257, 3298, 6194, 286, 8425, 27515, 11, 3724, 379, 465, 38579, 7423, 1363, 319, 3635, 13, 679, 373, 6957, 33283, 198, 1, 1544, 373, 262, 1499, 447, 247, 82, 749, 16739, 6194, 286, 14111, 11, 1262, 262, 1176, 286, 26027, 290, 27515, 33283, 198, 1, 464, 2520, 5510, 3554, 11, 508, 43136, 8350, 38264, 11, 10564, 379, 2479, 6957, 1600, 198, 1, 45, 10151, 40233, 11, 262, 3098, 12, 499, 433, 28420, 25164, 5067, 290, 1966, 2520, 5510, 1893, 11, 3724, 4280, 13, 642, 379, 6957, 13, 775, 447, 247, 260, 6079, 345, 2107, 5992, 994, 33283, 198, 1, 818, 257, 6194, 307, 32232, 257, 3277, 287, 33404, 11, 257, 3223, 12768, 6279, 17676, 625, 38579, 7423, 319, 3217, 355, 1705, 4104, 326, 12996, 40233, 318, 2636, 33283, 198, 1, 464, 661, 286, 2520, 5478, 22798, 3217, 351, 2769, 25303, 379, 262, 2994, 286, 257, 582, 3177, 416, 867, 284, 307, 262, 2988, 286, 262, 3277, 11, 981, 25722, 364, 531, 340, 373, 635, 257, 640, 284, 10648, 262, 16970, 286, 262, 3098, 12, 499, 433, 28420, 3554, 508, 9349, 422, 3770, 284, 1716, 2520, 5478, 338, 717, 2042, 1893, 33283, 198, 1, 2215, 12996, 40233, 3724, 319, 3635, 11, 661, 1088, 262, 13342, 9272, 284, 17357, 1096, 262, 582, 6768, 8018, 355, 257, 34538, 286, 11917, 11, 2911, 290, 4925, 33283, 198, 1, 49846, 10304, 14434, 465, 3277, 422, 30983, 7142, 284, 530, 286, 262, 749, 19889, 40416, 319, 262, 5440, 33283, 198, 1, 818, 281, 11359, 1204, 326, 599, 3577, 262, 10016, 18639, 810, 339, 373, 32443, 276, 329, 17054, 5531, 11, 3098, 12, 499, 433, 28420, 23034, 11, 42049, 15611, 11, 2681, 812, 286, 1964, 16510, 290, 11, 6165, 11, 262, 2520, 5510, 12112, 11, 40233, 2714, 257, 3748, 40428, 3202, 326, 1786, 30398, 2461, 290, 25030, 287, 44590, 1088, 262, 13342, 2637, 1600, 198, 4357, 198, 6, 65, 5744, 10354, 58, 198, 1, 2953, 1551, 734, 2636, 290, 9264, 6686, 618, 12134, 467, 572, 1474, 5461, 1627, 33283, 198, 1, 7571, 23171, 36872, 262, 5461, 1627, 379, 262, 6182, 24828, 319, 3321, 11, 5170, 1115, 290, 40942, 379, 1551, 20224, 661, 1600, 198, 1, 13800, 495, 4255, 364, 389, 4762, 284, 423, 587, 973, 284, 787, 262, 14897, 12134, 326, 1908, 24458, 82, 286, 10309, 427, 48766, 6990, 1359, 656, 257, 4315, 286, 47747, 364, 290, 13861, 379, 3321, 447, 247, 82, 6182, 24828, 11, 6154, 1297, 5426, 3000, 1600, 198, 1, 7571, 10309, 5194, 29895, 11, 4201, 5475, 11, 2900, 262, 19048, 400, 6182, 24828, 784, 262, 3277, 447, 247, 82, 18256, 1785, 329, 9085, 290, 18136, 19323, 784, 656, 257, 13574, 319, 3321, 13, 3423, 318, 257, 15264, 286, 703, 262, 1110, 447, 247, 82, 2995, 34660, 25, 860, 257, 13, 76, 13, 12152, 851, 12588, 3926, 1600, 198, 1, 2215, 734, 12134, 38754, 287, 262, 2457, 7539, 286, 262, 6182, 24828, 319, 3321, 6672, 11, 19323, 11, 31704, 290, 661, 1973, 262, 1499, 290, 1088, 262, 995, 547, 19987, 416, 262, 1171, 3450, 286, 1600, 198, 1, 6747, 4411, 23667, 319, 262, 6182, 22336, 3321, 6672, 11, 618, 281, 11278, 379, 262, 5461, 1627, 2923, 379, 1551, 734, 290, 6686, 379, 1551, 2242, 13, 20460, 318, 9646, 262, 7163, 1705, 422, 262, 3715, 287, 9436, 6182, 13, 7281, 994, 329, 6937, 5992, 13, 642, 25, 2231, 279, 13, 76, 33283, 198, 1, 7571, 12134, 18750, 287, 262, 11856, 6483, 1474, 262, 5461, 1627, 286, 262, 6182, 24828, 319, 3321, 11, 5170, 734, 661, 290, 34361, 517, 621, 1802, 287, 257, 17623, 3715, 286, 23273, 5405, 11, 2855, 7855, 7523, 11, 2910, 44279, 31726, 290, 32160, 21755, 11, 4773, 531, 1600, 198, 1, 3629, 5773, 1474, 262, 5461, 1627, 286, 262, 22140, 3234, 4073, 9264, 286, 6821, 290, 16830, 15779, 33283, 198, 1, 7571, 10309, 23171, 3181, 262, 6182, 24828, 290, 881, 286, 428, 1748, 284, 257, 23458, 17369, 3321, 11, 5170, 379, 1551, 1115, 661, 11, 34361, 546, 12713, 290, 1752, 757, 8620, 262, 5444, 263, 286, 8649, 319, 1605, 9260, 33283, 198, 48999, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
4.613006
1,261
import dearpygui._dearpygui as internal_dpg import dearpygui.dearpygui as dpg # 0.6 functions # * add_column # * delete_column # * set_table_data # * get_table_data # * get_table_item # * set_table_item # * get_table_selections # * set_table_selections # * insert_column # * insert_row # * set_headers
[ 11748, 390, 5117, 88, 48317, 13557, 67, 451, 9078, 48317, 355, 5387, 62, 67, 6024, 198, 11748, 390, 5117, 88, 48317, 13, 67, 451, 9078, 48317, 355, 288, 6024, 198, 198, 2, 657, 13, 21, 5499, 198, 2, 220, 220, 1635, 751, 62, 28665, 198, 2, 220, 220, 1635, 12233, 62, 28665, 198, 2, 220, 220, 1635, 900, 62, 11487, 62, 7890, 198, 2, 220, 220, 1635, 651, 62, 11487, 62, 7890, 198, 2, 220, 220, 1635, 651, 62, 11487, 62, 9186, 198, 2, 220, 220, 1635, 900, 62, 11487, 62, 9186, 198, 2, 220, 220, 1635, 651, 62, 11487, 62, 19738, 507, 198, 2, 220, 220, 1635, 900, 62, 11487, 62, 19738, 507, 198, 2, 220, 220, 1635, 7550, 62, 28665, 198, 2, 220, 220, 1635, 7550, 62, 808, 198, 2, 220, 220, 1635, 900, 62, 50145, 628 ]
2.345324
139
""" Experiment using all GALAH data. """ from __future__ import division # Just in case. Use Python 3. import os import sys import pickle import numpy as np import matplotlib import matplotlib.pyplot as plt import yaml from matplotlib.ticker import MaxNLocator from collections import Counter from scipy import linalg from hashlib import md5 sys.path.insert(0, "../../") from mcfa import (mcfa, grid_search, mpl_utils, utils) import galah_dr2 as galah matplotlib.style.use(mpl_utils.mpl_style) here = os.path.dirname(os.path.realpath(__file__)) with open("config.yml") as fp: config = yaml.load(fp) print(f"Config: {config}") np.random.seed(config["random_seed"]) prefix = os.path.basename(__file__)[:-3] unique_hash = md5((f"{config}").encode("utf-8")).hexdigest()[:5] unique_config_path = f"{unique_hash}.yml" if os.path.exists(unique_config_path): print(f"Warning: this configuration already exists: {unique_config_path}") with open(unique_config_path, "w") as fp: yaml.dump(config, fp) with open(__file__, "r") as fp: code = fp.read() with open(f"{unique_hash}-{__file__}", "w") as fp: fp.write(code) import os os.system("rm -f *.pkl") N_elements = 20 use_galah_flags = config["use_galah_flags"] mcfa_kwds = dict() mcfa_kwds.update(config["mcfa_kwds"]) elements = config[prefix]["elements"] if config[prefix]["ignore_elements"] is not None: elements = [el for el in elements if el not in config[prefix]["ignore_elements"]] print(elements) mask = galah.get_abundance_mask(elements, use_galah_flags=use_galah_flags) galah_cuts = config[prefix]["galah_cuts"] if galah_cuts is not None: print(f"Applying cuts: {galah_cuts}") for k, (lower, upper) in galah_cuts.items(): mask *= (upper >= galah.data[k]) * (galah.data[k] >= lower) raise a print(f"Number of stars: {sum(mask)}") X_H, label_names = galah.get_abundances_wrt_h(elements, mask=mask) print(f"Data shape: {X_H.shape}") if config["wrt_x_fe"]: X = convert_xh_to_xy(X_H, label_names, "fe_h") else: X = X_H if not config["log_abundance"]: X = 10**X if config["subtract_mean"]: X = X - np.mean(X, axis=0) N, D = X.shape # Do a gridsearch. gs_options = config[prefix]["gridsearch"] max_n_latent_factors = gs_options["max_n_latent_factors"] max_n_components = gs_options["max_n_components"] Js = 1 + np.arange(max_n_latent_factors) Ks = 1 + np.arange(max_n_components) N_inits = gs_options["n_inits"] results_path = f"{prefix}-gridsearch-results.pkl" if os.path.exists(results_path): with open(results_path, "rb") as fp: Jg, Kg, converged, meta, X, mcfa_kwds = pickle.load(fp) else: Jg, Kg, converged, meta = grid_search.grid_search(Js, Ks, X, N_inits=N_inits, mcfa_kwds=mcfa_kwds) with open(results_path, "wb") as fp: pickle.dump((Jg, Kg, converged, meta, X, mcfa_kwds), fp) ll = meta["ll"] bic = meta["bic"] mml = meta["message_length"] J_best_ll, K_best_ll = grid_search.best(Js, Ks, -ll) J_best_bic, K_best_bic = grid_search.best(Js, Ks, bic) J_best_mml, K_best_mml = grid_search.best(Js, Ks, mml) print(f"Best log likelihood at J = {J_best_ll} and K = {K_best_ll}") print(f"Best BIC value found at J = {J_best_bic} and K = {K_best_bic}") print(f"Best MML value found at J = {J_best_mml} and K = {K_best_mml}") # Plot some contours. plot_filled_contours_kwds = dict(converged=converged, marker_function=np.nanargmin, N=100, cmap="Spectral_r") fig_ll = mpl_utils.plot_filled_contours(Jg, Kg, -ll, colorbar_label=r"$-\log\mathcal{L}$", **plot_filled_contours_kwds) savefig(fig_ll, "gridsearch-ll") fig_bic = mpl_utils.plot_filled_contours(Jg, Kg, bic, colorbar_label=r"$\textrm{BIC}$", **plot_filled_contours_kwds) savefig(fig_bic, "gridsearch-bic") fig_mml = mpl_utils.plot_filled_contours(Jg, Kg, mml, colorbar_label=r"$\textrm{MML}$", **plot_filled_contours_kwds) savefig(fig_mml, "gridsearch-mml") model = meta["best_models"][config["adopted_metric"]] latex_label_names = [r"$\textrm{{{0}}}$".format(ea.split("_")[0].title()) for ea in label_names] # Draw unrotated. J_max = config["max_n_latent_factors_for_colormap"] J_max = 12 cmap = mpl_utils.discrete_cmap(J_max, base_cmap="Spectral") colors = [cmap(j) for j in range(J_max)]#[::-1] A_est = model.theta_[model.parameter_names.index("A")] A_astrophysical = np.zeros_like(A_est)#np.random.normal(0, 0.1, size=A_est.shape) for i, tes in enumerate(config["grouped_elements"][:model.n_latent_factors]): for j, te in enumerate(tes): try: idx = label_names.index("{0}_h".format(te.lower())) except ValueError: print(f"Skipping {te}") else: count = sum([(te in foo) for foo in config["grouped_elements"][:model.n_latent_factors]]) A_astrophysical[idx, i] = 1.0/count A_astrophysical /= np.clip(np.sqrt(np.sum(A_astrophysical, axis=0)), 1, np.inf) # Un-assigned columns for column_index in np.where(np.all(A_astrophysical == 0, axis=0))[0]: print(f"Warning: unassigned column index: {column_index}") A_astrophysical[:, column_index] = np.random.normal(0, 1e-2, size=D) if config["correct_A_astrophysical"]: AL = linalg.cholesky(A_astrophysical.T @ A_astrophysical) A_astrophysical = A_astrophysical @ linalg.solve(AL, np.eye(model.n_latent_factors)) max_n_rotations = 3 for each in range(max_n_rotations): A_est = model.theta_[model.parameter_names.index("A")] R, p_opt, cov, *_ = utils.find_rotation_matrix(A_astrophysical, A_est, full_output=True) R_opt = utils.exact_rotation_matrix(A_astrophysical, A_est, p0=np.random.uniform(-np.pi, np.pi, model.n_latent_factors**2)) # WTF check R_opt. AL = linalg.cholesky(R_opt.T @ R_opt) R_opt2 = R_opt @ linalg.solve(AL, np.eye(model.n_latent_factors)) chi1 = np.sum(np.abs(A_est @ R - A_astrophysical)) chi2 = np.sum(np.abs(A_est @ R_opt2 - A_astrophysical)) R = R_opt2 if chi2 < chi1 else R # Now make it a valid rotation matrix. model.rotate(R, X=X, ensure_valid_rotation=True) import pickle with open(f"{unique_hash}-{prefix}-model.pkl", "wb") as fp: pickle.dump(model, fp) """ J = model.n_latent_factors L = model.theta_[model.parameter_names.index("A")] elements = [ea.split("_")[0].title() for ea in label_names] A_est = model.theta_[model.parameter_names.index("A")] A_astrophysical = np.zeros_like(A_est)#np.random.normal(0, 0.1, size=A_est.shape) for i, tes in enumerate(config["grouped_elements"][:model.n_latent_factors]): for j, te in enumerate(tes): try: idx = label_names.index("{0}_h".format(te.lower())) except ValueError: print(f"Skipping {te}") else: count = sum([(te in foo) for foo in config["grouped_elements"][:model.n_latent_factors]]) A_astrophysical[idx, i] = 1.0/count A_astrophysical /= np.clip(np.sqrt(np.sum(A_astrophysical, axis=0)), 1, np.inf) # Un-assigned columns for column_index in np.where(np.all(A_astrophysical == 0, axis=0))[0]: print(f"Warning: unassigned column index: {column_index}") A_astrophysical[:, column_index] = np.random.normal(0, 1e-2, size=D) AL = linalg.cholesky(A_astrophysical.T @ A_astrophysical) A_astrophysical = A_astrophysical @ linalg.solve(AL, np.eye(model.n_latent_factors)) R, p_opt, cov, *_ = utils.find_rotation_matrix(A_astrophysical, A_est, full_output=True) R_opt = utils.exact_rotation_matrix(A_astrophysical, A_est, p0=np.random.uniform(-np.pi, np.pi, model.n_latent_factors**2)) # WTF check R_opt. AL = linalg.cholesky(R_opt.T @ R_opt) R_opt2 = R_opt @ linalg.solve(AL, np.eye(model.n_latent_factors)) chi1 = np.sum(np.abs(A_est @ R - A_astrophysical)) chi2 = np.sum(np.abs(A_est @ R_opt2 - A_astrophysical)) R = R_opt2 if chi2 < chi1 else R # Now make it a valid rotation matrix. model.rotate(R, X=X, ensure_valid_rotation=True) """ fig_fac = mpl_utils.plot_factor_loads_and_contributions(model, X, label_names=latex_label_names, colors=colors, target_loads=A_astrophysical) savefig(fig_fac, "latent-factors-and-contributions-with-targets") fig_fac = mpl_utils.plot_factor_loads_and_contributions(model, X, label_names=latex_label_names, colors=colors) savefig(fig_fac, "latent-factors-and-contributions") raise a # Plot clustering in data space and latent space. # For the latent space we will just use a corner plot. component_cmap = mpl_utils.discrete_cmap(7, base_cmap="Spectral_r") fig = mpl_utils.plot_latent_space(model, X, ellipse_kwds=dict(alpha=0), s=10, edgecolor="none", alpha=1, c=[component_cmap(_) for _ in np.argmax(model.tau_, axis=1)], show_ticks=True, label_names=[r"$\mathbf{{S}}_{{{0}}}$".format(i + 1) for i in range(model.n_latent_factors)]) for ax in fig.axes: if ax.is_last_row(): ax.set_ylim(-1, 1) ax.set_yticks([-1, 0, 1]) fig.tight_layout() savefig(fig, "latent-space") # For the data space we will use N x 2 panels of [X/Fe] vs [Fe/H], coloured by their responsibility. #X_H, label_names = galah.get_abundances_wrt_h(elements, mask=mask) X_H, label_names = galah.get_abundances_wrt_h(elements, mask=mask) fig, axes = plt.subplots(5, 3, figsize=(7.1, 9.0)) axes = np.atleast_1d(axes).flatten() x = X_H.T[label_names.index("fe_h")] c = np.argmax(model.tau_, axis=1) K = model.n_components y_idx = 0 for i, ax in enumerate(axes): if label_names[i] == "fe_h": y_idx += 1 y = X_H.T[y_idx] - x ax.scatter(x, y, c=[component_cmap(_) for _ in c], s=10, edgecolor="none", rasterized=True) element = label_names[y_idx].split("_")[0].title() ax.set_ylabel(r"$[\textrm{{{0}/Fe}}]$".format(element)) y_idx += 1 x_lims = (-1.5, 0.5) y_lims = (-0.5, 1.0) for ax in axes: ax.set_xlim(x_lims) ax.set_ylim(y_lims) ax.set_xticks([-1.5, -0.5, 0.5]) #ax.set_yticks([-0.5, 0.25, 1.0, 1.75]) ax.set_yticks([-0.5, 0, 0.5, 1.0]) if ax.is_last_row(): ax.set_xlabel(r"$[\textrm{Fe/H}]$") else: ax.set_xticklabels([]) ax.plot(x_lims, [0, 0], ":", c="#666666", lw=0.5, zorder=-1) ax.plot([0, 0], y_lims, ":", c="#666666", lw=0.5, zorder=-1) fig.tight_layout() savefig(fig, "data-space") latex_elements = [r"$\textrm{{{0}}}$".format(le.split("_")[0].title()) for le in label_names] fig_scatter = mpl_utils.plot_specific_scatter(model, steps=True, xlabel="", xticklabels=latex_elements, ylabel=r"$\textrm{specific scatter / dex}$", ticker_pad=20) fig_scatter.axes[0].set_yticks(np.arange(0, 0.20, 0.05)) savefig(fig_scatter, "specific-scatter") here = os.path.dirname(os.path.realpath(__file__)) filename = os.path.join(here, f"{prefix}-{unique_hash}-data.fits") subset = galah.data[mask] subset["association"] = np.argmax(model.tau_, axis=1) subset.write(filename, overwrite=True)
[ 198, 37811, 198, 20468, 3681, 1262, 477, 402, 1847, 18429, 1366, 13, 198, 37811, 198, 198, 6738, 11593, 37443, 834, 1330, 7297, 1303, 2329, 287, 1339, 13, 5765, 11361, 513, 13, 198, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 2298, 293, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 331, 43695, 198, 6738, 2603, 29487, 8019, 13, 83, 15799, 1330, 5436, 32572, 420, 1352, 198, 6738, 17268, 1330, 15034, 198, 6738, 629, 541, 88, 1330, 300, 1292, 70, 198, 6738, 12234, 8019, 1330, 45243, 20, 198, 198, 17597, 13, 6978, 13, 28463, 7, 15, 11, 366, 40720, 40720, 4943, 198, 198, 6738, 285, 12993, 64, 1330, 357, 76, 12993, 64, 11, 10706, 62, 12947, 11, 285, 489, 62, 26791, 11, 3384, 4487, 8, 198, 198, 11748, 9426, 993, 62, 7109, 17, 355, 9426, 993, 628, 198, 6759, 29487, 8019, 13, 7635, 13, 1904, 7, 76, 489, 62, 26791, 13, 76, 489, 62, 7635, 8, 198, 198, 1456, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 5305, 6978, 7, 834, 7753, 834, 4008, 198, 198, 4480, 1280, 7203, 11250, 13, 88, 4029, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 4566, 796, 331, 43695, 13, 2220, 7, 46428, 8, 198, 198, 4798, 7, 69, 1, 16934, 25, 1391, 11250, 92, 4943, 198, 198, 37659, 13, 25120, 13, 28826, 7, 11250, 14692, 25120, 62, 28826, 8973, 8, 198, 198, 40290, 796, 28686, 13, 6978, 13, 12093, 12453, 7, 834, 7753, 834, 38381, 21912, 18, 60, 198, 198, 34642, 62, 17831, 796, 45243, 20, 19510, 69, 1, 90, 11250, 92, 11074, 268, 8189, 7203, 40477, 12, 23, 4943, 737, 33095, 12894, 395, 3419, 58, 25, 20, 60, 198, 198, 34642, 62, 11250, 62, 6978, 796, 277, 1, 90, 34642, 62, 17831, 27422, 88, 4029, 1, 198, 361, 28686, 13, 6978, 13, 1069, 1023, 7, 34642, 62, 11250, 62, 6978, 2599, 198, 220, 220, 220, 3601, 7, 69, 1, 20361, 25, 428, 8398, 1541, 7160, 25, 1391, 34642, 62, 11250, 62, 6978, 92, 4943, 198, 198, 4480, 1280, 7, 34642, 62, 11250, 62, 6978, 11, 366, 86, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 331, 43695, 13, 39455, 7, 11250, 11, 277, 79, 8, 198, 198, 4480, 1280, 7, 834, 7753, 834, 11, 366, 81, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 2438, 796, 277, 79, 13, 961, 3419, 198, 198, 4480, 1280, 7, 69, 1, 90, 34642, 62, 17831, 92, 12, 90, 834, 7753, 834, 92, 1600, 366, 86, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 277, 79, 13, 13564, 7, 8189, 8, 628, 198, 11748, 28686, 198, 418, 13, 10057, 7203, 26224, 532, 69, 46866, 79, 41582, 4943, 198, 198, 45, 62, 68, 3639, 796, 1160, 198, 1904, 62, 13528, 993, 62, 33152, 796, 4566, 14692, 1904, 62, 13528, 993, 62, 33152, 8973, 198, 198, 76, 12993, 64, 62, 46265, 9310, 796, 8633, 3419, 198, 76, 12993, 64, 62, 46265, 9310, 13, 19119, 7, 11250, 14692, 76, 12993, 64, 62, 46265, 9310, 8973, 8, 198, 198, 68, 3639, 796, 4566, 58, 40290, 7131, 1, 68, 3639, 8973, 198, 361, 4566, 58, 40290, 7131, 1, 46430, 62, 68, 3639, 8973, 318, 407, 6045, 25, 198, 220, 220, 220, 4847, 796, 685, 417, 329, 1288, 287, 4847, 611, 1288, 407, 287, 4566, 58, 40290, 7131, 1, 46430, 62, 68, 3639, 8973, 60, 198, 198, 4798, 7, 68, 3639, 8, 628, 198, 27932, 796, 9426, 993, 13, 1136, 62, 397, 917, 590, 62, 27932, 7, 68, 3639, 11, 779, 62, 13528, 993, 62, 33152, 28, 1904, 62, 13528, 993, 62, 33152, 8, 628, 198, 13528, 993, 62, 23779, 796, 4566, 58, 40290, 7131, 1, 13528, 993, 62, 23779, 8973, 198, 361, 9426, 993, 62, 23779, 318, 407, 6045, 25, 198, 220, 220, 220, 3601, 7, 69, 1, 4677, 3157, 6630, 25, 1391, 13528, 993, 62, 23779, 92, 4943, 198, 220, 220, 220, 329, 479, 11, 357, 21037, 11, 6727, 8, 287, 9426, 993, 62, 23779, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 9335, 1635, 28, 357, 45828, 18189, 9426, 993, 13, 7890, 58, 74, 12962, 1635, 357, 13528, 993, 13, 7890, 58, 74, 60, 18189, 2793, 8, 198, 198, 40225, 257, 198, 198, 4798, 7, 69, 1, 15057, 286, 5788, 25, 1391, 16345, 7, 27932, 38165, 4943, 628, 198, 198, 55, 62, 39, 11, 6167, 62, 14933, 796, 9426, 993, 13, 1136, 62, 397, 917, 1817, 62, 86, 17034, 62, 71, 7, 68, 3639, 11, 9335, 28, 27932, 8, 628, 628, 198, 198, 4798, 7, 69, 1, 6601, 5485, 25, 1391, 55, 62, 39, 13, 43358, 92, 4943, 628, 220, 198, 198, 361, 4566, 14692, 86, 17034, 62, 87, 62, 5036, 1, 5974, 198, 220, 220, 220, 1395, 796, 10385, 62, 87, 71, 62, 1462, 62, 5431, 7, 55, 62, 39, 11, 6167, 62, 14933, 11, 366, 5036, 62, 71, 4943, 198, 17772, 25, 198, 220, 220, 220, 1395, 796, 1395, 62, 39, 198, 198, 361, 407, 4566, 14692, 6404, 62, 397, 917, 590, 1, 5974, 198, 220, 220, 220, 1395, 796, 838, 1174, 55, 198, 198, 361, 4566, 14692, 7266, 83, 974, 62, 32604, 1, 5974, 198, 220, 220, 220, 1395, 796, 1395, 532, 45941, 13, 32604, 7, 55, 11, 16488, 28, 15, 8, 628, 198, 45, 11, 360, 796, 1395, 13, 43358, 198, 198, 2, 2141, 257, 10706, 12947, 13, 198, 14542, 62, 25811, 796, 4566, 58, 40290, 7131, 1, 25928, 12947, 8973, 198, 9806, 62, 77, 62, 15460, 298, 62, 22584, 669, 796, 308, 82, 62, 25811, 14692, 9806, 62, 77, 62, 15460, 298, 62, 22584, 669, 8973, 198, 9806, 62, 77, 62, 5589, 3906, 796, 308, 82, 62, 25811, 14692, 9806, 62, 77, 62, 5589, 3906, 8973, 198, 198, 49044, 796, 352, 1343, 45941, 13, 283, 858, 7, 9806, 62, 77, 62, 15460, 298, 62, 22584, 669, 8, 198, 42, 82, 796, 352, 1343, 45941, 13, 283, 858, 7, 9806, 62, 77, 62, 5589, 3906, 8, 198, 45, 62, 259, 896, 796, 308, 82, 62, 25811, 14692, 77, 62, 259, 896, 8973, 198, 198, 43420, 62, 6978, 796, 277, 1, 90, 40290, 92, 12, 25928, 12947, 12, 43420, 13, 79, 41582, 1, 198, 198, 361, 28686, 13, 6978, 13, 1069, 1023, 7, 43420, 62, 6978, 2599, 628, 220, 220, 220, 351, 1280, 7, 43420, 62, 6978, 11, 366, 26145, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 220, 220, 220, 220, 449, 70, 11, 509, 70, 11, 6718, 2004, 11, 13634, 11, 1395, 11, 285, 12993, 64, 62, 46265, 9310, 796, 2298, 293, 13, 2220, 7, 46428, 8, 198, 198, 17772, 25, 628, 220, 220, 220, 449, 70, 11, 509, 70, 11, 6718, 2004, 11, 13634, 796, 10706, 62, 12947, 13, 25928, 62, 12947, 7, 49044, 11, 509, 82, 11, 1395, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 62, 259, 896, 28, 45, 62, 259, 896, 11, 285, 12993, 64, 62, 46265, 9310, 28, 76, 12993, 64, 62, 46265, 9310, 8, 628, 220, 220, 220, 351, 1280, 7, 43420, 62, 6978, 11, 366, 39346, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2298, 293, 13, 39455, 19510, 41, 70, 11, 509, 70, 11, 6718, 2004, 11, 13634, 11, 1395, 11, 285, 12993, 64, 62, 46265, 9310, 828, 277, 79, 8, 628, 198, 198, 297, 796, 13634, 14692, 297, 8973, 198, 65, 291, 796, 13634, 14692, 65, 291, 8973, 198, 3020, 75, 796, 13634, 14692, 20500, 62, 13664, 8973, 198, 198, 41, 62, 13466, 62, 297, 11, 509, 62, 13466, 62, 297, 796, 10706, 62, 12947, 13, 13466, 7, 49044, 11, 509, 82, 11, 532, 297, 8, 198, 41, 62, 13466, 62, 65, 291, 11, 509, 62, 13466, 62, 65, 291, 796, 10706, 62, 12947, 13, 13466, 7, 49044, 11, 509, 82, 11, 275, 291, 8, 198, 41, 62, 13466, 62, 3020, 75, 11, 509, 62, 13466, 62, 3020, 75, 796, 10706, 62, 12947, 13, 13466, 7, 49044, 11, 509, 82, 11, 285, 4029, 8, 628, 198, 4798, 7, 69, 1, 13014, 2604, 14955, 220, 379, 449, 796, 1391, 41, 62, 13466, 62, 297, 92, 290, 509, 796, 1391, 42, 62, 13466, 62, 297, 92, 4943, 198, 4798, 7, 69, 1, 13014, 347, 2149, 1988, 1043, 379, 449, 796, 1391, 41, 62, 13466, 62, 65, 291, 92, 290, 509, 796, 1391, 42, 62, 13466, 62, 65, 291, 92, 4943, 198, 4798, 7, 69, 1, 13014, 337, 5805, 1988, 1043, 379, 449, 796, 1391, 41, 62, 13466, 62, 3020, 75, 92, 290, 509, 796, 1391, 42, 62, 13466, 62, 3020, 75, 92, 4943, 628, 198, 2, 28114, 617, 542, 4662, 13, 198, 29487, 62, 20286, 62, 3642, 4662, 62, 46265, 9310, 796, 8633, 7, 1102, 332, 2004, 28, 1102, 332, 2004, 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, 18364, 62, 8818, 28, 37659, 13, 12647, 853, 1084, 11, 399, 28, 3064, 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, 269, 8899, 2625, 49738, 1373, 62, 81, 4943, 198, 5647, 62, 297, 796, 285, 489, 62, 26791, 13, 29487, 62, 20286, 62, 3642, 4662, 7, 41, 70, 11, 509, 70, 11, 532, 297, 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, 3124, 5657, 62, 18242, 28, 81, 1, 3, 12, 59, 6404, 59, 11018, 9948, 90, 43, 92, 3, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 29487, 62, 20286, 62, 3642, 4662, 62, 46265, 9310, 8, 198, 21928, 5647, 7, 5647, 62, 297, 11, 366, 25928, 12947, 12, 297, 4943, 198, 198, 5647, 62, 65, 291, 796, 285, 489, 62, 26791, 13, 29487, 62, 20286, 62, 3642, 4662, 7, 41, 70, 11, 509, 70, 11, 275, 291, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 5657, 62, 18242, 28, 81, 1, 3, 59, 5239, 26224, 90, 33, 2149, 92, 3, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 29487, 62, 20286, 62, 3642, 4662, 62, 46265, 9310, 8, 198, 21928, 5647, 7, 5647, 62, 65, 291, 11, 366, 25928, 12947, 12, 65, 291, 4943, 198, 198, 5647, 62, 3020, 75, 796, 285, 489, 62, 26791, 13, 29487, 62, 20286, 62, 3642, 4662, 7, 41, 70, 11, 509, 70, 11, 285, 4029, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 5657, 62, 18242, 28, 81, 1, 3, 59, 5239, 26224, 90, 44, 5805, 92, 3, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 29487, 62, 20286, 62, 3642, 4662, 62, 46265, 9310, 8, 198, 21928, 5647, 7, 5647, 62, 3020, 75, 11, 366, 25928, 12947, 12, 3020, 75, 4943, 628, 198, 19849, 796, 13634, 14692, 13466, 62, 27530, 1, 7131, 11250, 14692, 324, 45256, 62, 4164, 1173, 8973, 60, 628, 198, 198, 17660, 87, 62, 18242, 62, 14933, 796, 685, 81, 1, 3, 59, 5239, 26224, 27007, 90, 15, 42535, 3, 1911, 18982, 7, 18213, 13, 35312, 7203, 62, 4943, 58, 15, 4083, 7839, 28955, 329, 304, 64, 287, 6167, 62, 14933, 60, 198, 198, 2, 15315, 555, 10599, 515, 13, 198, 41, 62, 9806, 796, 4566, 14692, 9806, 62, 77, 62, 15460, 298, 62, 22584, 669, 62, 1640, 62, 4033, 579, 499, 8973, 198, 41, 62, 9806, 796, 1105, 198, 66, 8899, 796, 285, 489, 62, 26791, 13, 15410, 8374, 62, 66, 8899, 7, 41, 62, 9806, 11, 2779, 62, 66, 8899, 2625, 49738, 1373, 4943, 198, 4033, 669, 796, 685, 66, 8899, 7, 73, 8, 329, 474, 287, 2837, 7, 41, 62, 9806, 15437, 2, 58, 3712, 12, 16, 60, 628, 198, 32, 62, 395, 796, 2746, 13, 1169, 8326, 62, 58, 19849, 13, 17143, 2357, 62, 14933, 13, 9630, 7203, 32, 4943, 60, 198, 198, 32, 62, 459, 10051, 15380, 796, 45941, 13, 9107, 418, 62, 2339, 7, 32, 62, 395, 8, 2, 37659, 13, 25120, 13, 11265, 7, 15, 11, 657, 13, 16, 11, 2546, 28, 32, 62, 395, 13, 43358, 8, 198, 1640, 1312, 11, 256, 274, 287, 27056, 378, 7, 11250, 14692, 8094, 276, 62, 68, 3639, 1, 7131, 25, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 60, 2599, 198, 220, 220, 220, 329, 474, 11, 573, 287, 27056, 378, 7, 4879, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 796, 6167, 62, 14933, 13, 9630, 7203, 90, 15, 92, 62, 71, 1911, 18982, 7, 660, 13, 21037, 3419, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 50, 4106, 2105, 1391, 660, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 796, 2160, 26933, 7, 660, 287, 22944, 8, 329, 22944, 287, 4566, 14692, 8094, 276, 62, 68, 3639, 1, 7131, 25, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 11907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 62, 459, 10051, 15380, 58, 312, 87, 11, 1312, 60, 796, 352, 13, 15, 14, 9127, 198, 198, 32, 62, 459, 10051, 15380, 1220, 28, 45941, 13, 15036, 7, 37659, 13, 31166, 17034, 7, 37659, 13, 16345, 7, 32, 62, 459, 10051, 15380, 11, 16488, 28, 15, 36911, 352, 11, 45941, 13, 10745, 8, 198, 198, 2, 791, 12, 562, 3916, 15180, 198, 1640, 5721, 62, 9630, 287, 45941, 13, 3003, 7, 37659, 13, 439, 7, 32, 62, 459, 10051, 15380, 6624, 657, 11, 16488, 28, 15, 4008, 58, 15, 5974, 198, 220, 220, 220, 3601, 7, 69, 1, 20361, 25, 555, 562, 3916, 5721, 6376, 25, 1391, 28665, 62, 9630, 92, 4943, 198, 220, 220, 220, 317, 62, 459, 10051, 15380, 58, 45299, 5721, 62, 9630, 60, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 352, 68, 12, 17, 11, 2546, 28, 35, 8, 198, 198, 361, 4566, 14692, 30283, 62, 32, 62, 459, 10051, 15380, 1, 5974, 198, 220, 220, 220, 8355, 796, 300, 1292, 70, 13, 354, 4316, 2584, 7, 32, 62, 459, 10051, 15380, 13, 51, 2488, 317, 62, 459, 10051, 15380, 8, 198, 220, 220, 220, 317, 62, 459, 10051, 15380, 796, 317, 62, 459, 10051, 15380, 2488, 300, 1292, 70, 13, 82, 6442, 7, 1847, 11, 45941, 13, 25379, 7, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 4008, 628, 198, 198, 9806, 62, 77, 62, 10599, 602, 796, 513, 198, 198, 1640, 1123, 287, 2837, 7, 9806, 62, 77, 62, 10599, 602, 2599, 628, 220, 220, 220, 317, 62, 395, 796, 2746, 13, 1169, 8326, 62, 58, 19849, 13, 17143, 2357, 62, 14933, 13, 9630, 7203, 32, 4943, 60, 628, 220, 220, 220, 371, 11, 279, 62, 8738, 11, 39849, 11, 1635, 62, 796, 3384, 4487, 13, 19796, 62, 10599, 341, 62, 6759, 8609, 7, 32, 62, 459, 10051, 15380, 11, 317, 62, 395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1336, 62, 22915, 28, 17821, 8, 628, 220, 220, 220, 371, 62, 8738, 796, 3384, 4487, 13, 1069, 529, 62, 10599, 341, 62, 6759, 8609, 7, 32, 62, 459, 10051, 15380, 11, 317, 62, 395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 15, 28, 37659, 13, 25120, 13, 403, 6933, 32590, 37659, 13, 14415, 11, 45941, 13, 14415, 11, 2746, 13, 77, 62, 15460, 298, 62, 22584, 669, 1174, 17, 4008, 628, 220, 220, 220, 1303, 370, 10234, 2198, 371, 62, 8738, 13, 198, 220, 220, 220, 8355, 796, 300, 1292, 70, 13, 354, 4316, 2584, 7, 49, 62, 8738, 13, 51, 2488, 371, 62, 8738, 8, 198, 220, 220, 220, 371, 62, 8738, 17, 796, 371, 62, 8738, 2488, 300, 1292, 70, 13, 82, 6442, 7, 1847, 11, 45941, 13, 25379, 7, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 4008, 628, 220, 220, 220, 33166, 16, 796, 45941, 13, 16345, 7, 37659, 13, 8937, 7, 32, 62, 395, 2488, 371, 532, 317, 62, 459, 10051, 15380, 4008, 198, 220, 220, 220, 33166, 17, 796, 45941, 13, 16345, 7, 37659, 13, 8937, 7, 32, 62, 395, 2488, 371, 62, 8738, 17, 532, 317, 62, 459, 10051, 15380, 4008, 628, 220, 220, 220, 371, 796, 371, 62, 8738, 17, 611, 33166, 17, 1279, 33166, 16, 2073, 371, 628, 220, 220, 220, 1303, 2735, 787, 340, 257, 4938, 13179, 17593, 13, 198, 220, 220, 220, 2746, 13, 10599, 378, 7, 49, 11, 1395, 28, 55, 11, 4155, 62, 12102, 62, 10599, 341, 28, 17821, 8, 628, 198, 11748, 2298, 293, 198, 4480, 1280, 7, 69, 1, 90, 34642, 62, 17831, 92, 12, 90, 40290, 92, 12, 19849, 13, 79, 41582, 1600, 366, 39346, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 2298, 293, 13, 39455, 7, 19849, 11, 277, 79, 8, 198, 198, 37811, 198, 41, 796, 2746, 13, 77, 62, 15460, 298, 62, 22584, 669, 198, 43, 796, 2746, 13, 1169, 8326, 62, 58, 19849, 13, 17143, 2357, 62, 14933, 13, 9630, 7203, 32, 4943, 60, 198, 198, 68, 3639, 796, 685, 18213, 13, 35312, 7203, 62, 4943, 58, 15, 4083, 7839, 3419, 329, 304, 64, 287, 6167, 62, 14933, 60, 628, 198, 198, 32, 62, 395, 796, 2746, 13, 1169, 8326, 62, 58, 19849, 13, 17143, 2357, 62, 14933, 13, 9630, 7203, 32, 4943, 60, 198, 198, 32, 62, 459, 10051, 15380, 796, 45941, 13, 9107, 418, 62, 2339, 7, 32, 62, 395, 8, 2, 37659, 13, 25120, 13, 11265, 7, 15, 11, 657, 13, 16, 11, 2546, 28, 32, 62, 395, 13, 43358, 8, 198, 1640, 1312, 11, 256, 274, 287, 27056, 378, 7, 11250, 14692, 8094, 276, 62, 68, 3639, 1, 7131, 25, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 60, 2599, 198, 220, 220, 220, 329, 474, 11, 573, 287, 27056, 378, 7, 4879, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 796, 6167, 62, 14933, 13, 9630, 7203, 90, 15, 92, 62, 71, 1911, 18982, 7, 660, 13, 21037, 3419, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 50, 4106, 2105, 1391, 660, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 796, 2160, 26933, 7, 660, 287, 22944, 8, 329, 22944, 287, 4566, 14692, 8094, 276, 62, 68, 3639, 1, 7131, 25, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 11907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 62, 459, 10051, 15380, 58, 312, 87, 11, 1312, 60, 796, 352, 13, 15, 14, 9127, 198, 198, 32, 62, 459, 10051, 15380, 1220, 28, 45941, 13, 15036, 7, 37659, 13, 31166, 17034, 7, 37659, 13, 16345, 7, 32, 62, 459, 10051, 15380, 11, 16488, 28, 15, 36911, 352, 11, 45941, 13, 10745, 8, 628, 198, 2, 791, 12, 562, 3916, 15180, 198, 1640, 5721, 62, 9630, 287, 45941, 13, 3003, 7, 37659, 13, 439, 7, 32, 62, 459, 10051, 15380, 6624, 657, 11, 16488, 28, 15, 4008, 58, 15, 5974, 198, 220, 220, 220, 3601, 7, 69, 1, 20361, 25, 555, 562, 3916, 5721, 6376, 25, 1391, 28665, 62, 9630, 92, 4943, 198, 220, 220, 220, 317, 62, 459, 10051, 15380, 58, 45299, 5721, 62, 9630, 60, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 352, 68, 12, 17, 11, 2546, 28, 35, 8, 198, 198, 1847, 796, 300, 1292, 70, 13, 354, 4316, 2584, 7, 32, 62, 459, 10051, 15380, 13, 51, 2488, 317, 62, 459, 10051, 15380, 8, 198, 32, 62, 459, 10051, 15380, 796, 317, 62, 459, 10051, 15380, 2488, 300, 1292, 70, 13, 82, 6442, 7, 1847, 11, 45941, 13, 25379, 7, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 4008, 628, 198, 49, 11, 279, 62, 8738, 11, 39849, 11, 1635, 62, 796, 3384, 4487, 13, 19796, 62, 10599, 341, 62, 6759, 8609, 7, 32, 62, 459, 10051, 15380, 11, 317, 62, 395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1336, 62, 22915, 28, 17821, 8, 198, 198, 49, 62, 8738, 796, 3384, 4487, 13, 1069, 529, 62, 10599, 341, 62, 6759, 8609, 7, 32, 62, 459, 10051, 15380, 11, 317, 62, 395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 15, 28, 37659, 13, 25120, 13, 403, 6933, 32590, 37659, 13, 14415, 11, 45941, 13, 14415, 11, 2746, 13, 77, 62, 15460, 298, 62, 22584, 669, 1174, 17, 4008, 198, 198, 2, 370, 10234, 2198, 371, 62, 8738, 13, 198, 1847, 796, 300, 1292, 70, 13, 354, 4316, 2584, 7, 49, 62, 8738, 13, 51, 2488, 371, 62, 8738, 8, 198, 49, 62, 8738, 17, 796, 371, 62, 8738, 2488, 300, 1292, 70, 13, 82, 6442, 7, 1847, 11, 45941, 13, 25379, 7, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 4008, 198, 198, 11072, 16, 796, 45941, 13, 16345, 7, 37659, 13, 8937, 7, 32, 62, 395, 2488, 371, 532, 317, 62, 459, 10051, 15380, 4008, 198, 11072, 17, 796, 45941, 13, 16345, 7, 37659, 13, 8937, 7, 32, 62, 395, 2488, 371, 62, 8738, 17, 532, 317, 62, 459, 10051, 15380, 4008, 198, 198, 49, 796, 371, 62, 8738, 17, 611, 33166, 17, 1279, 33166, 16, 2073, 371, 198, 198, 2, 2735, 787, 340, 257, 4938, 13179, 17593, 13, 198, 19849, 13, 10599, 378, 7, 49, 11, 1395, 28, 55, 11, 4155, 62, 12102, 62, 10599, 341, 28, 17821, 8, 198, 37811, 628, 198, 5647, 62, 38942, 796, 285, 489, 62, 26791, 13, 29487, 62, 31412, 62, 46030, 62, 392, 62, 3642, 2455, 507, 7, 19849, 11, 1395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 14933, 28, 17660, 87, 62, 18242, 62, 14933, 11, 7577, 28, 4033, 669, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 46030, 28, 32, 62, 459, 10051, 15380, 8, 198, 21928, 5647, 7, 5647, 62, 38942, 11, 366, 15460, 298, 12, 22584, 669, 12, 392, 12, 3642, 2455, 507, 12, 4480, 12, 83, 853, 1039, 4943, 628, 198, 5647, 62, 38942, 796, 285, 489, 62, 26791, 13, 29487, 62, 31412, 62, 46030, 62, 392, 62, 3642, 2455, 507, 7, 19849, 11, 1395, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 14933, 28, 17660, 87, 62, 18242, 62, 14933, 11, 7577, 28, 4033, 669, 8, 198, 21928, 5647, 7, 5647, 62, 38942, 11, 366, 15460, 298, 12, 22584, 669, 12, 392, 12, 3642, 2455, 507, 4943, 198, 198, 40225, 257, 628, 198, 198, 2, 28114, 32966, 1586, 287, 1366, 2272, 290, 41270, 2272, 13, 198, 198, 2, 1114, 262, 41270, 2272, 356, 481, 655, 779, 257, 5228, 7110, 13, 198, 42895, 62, 66, 8899, 796, 285, 489, 62, 26791, 13, 15410, 8374, 62, 66, 8899, 7, 22, 11, 2779, 62, 66, 8899, 2625, 49738, 1373, 62, 81, 4943, 198, 198, 5647, 796, 285, 489, 62, 26791, 13, 29487, 62, 15460, 298, 62, 13200, 7, 19849, 11, 1395, 11, 30004, 541, 325, 62, 46265, 9310, 28, 11600, 7, 26591, 28, 15, 828, 264, 28, 940, 11, 5743, 8043, 2625, 23108, 1600, 17130, 28, 16, 11, 269, 41888, 42895, 62, 66, 8899, 28264, 8, 329, 4808, 287, 45941, 13, 853, 9806, 7, 19849, 13, 83, 559, 62, 11, 16488, 28, 16, 8, 4357, 905, 62, 83, 3378, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 14933, 41888, 81, 1, 3, 59, 11018, 19881, 27007, 50, 11709, 23330, 27007, 15, 42535, 3, 1911, 18982, 7, 72, 1343, 352, 8, 329, 1312, 287, 2837, 7, 19849, 13, 77, 62, 15460, 298, 62, 22584, 669, 8, 12962, 198, 1640, 7877, 287, 2336, 13, 897, 274, 25, 198, 220, 220, 220, 611, 7877, 13, 271, 62, 12957, 62, 808, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 88, 2475, 32590, 16, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 20760, 3378, 26933, 12, 16, 11, 657, 11, 352, 12962, 198, 198, 5647, 13, 33464, 62, 39786, 3419, 198, 198, 21928, 5647, 7, 5647, 11, 366, 15460, 298, 12, 13200, 4943, 628, 198, 2, 1114, 262, 1366, 2272, 356, 481, 779, 399, 2124, 362, 13043, 286, 685, 55, 14, 14304, 60, 3691, 685, 14304, 14, 39, 4357, 34746, 416, 511, 5798, 13, 198, 2, 55, 62, 39, 11, 6167, 62, 14933, 796, 9426, 993, 13, 1136, 62, 397, 917, 1817, 62, 86, 17034, 62, 71, 7, 68, 3639, 11, 9335, 28, 27932, 8, 198, 198, 55, 62, 39, 11, 6167, 62, 14933, 796, 9426, 993, 13, 1136, 62, 397, 917, 1817, 62, 86, 17034, 62, 71, 7, 68, 3639, 11, 9335, 28, 27932, 8, 628, 198, 5647, 11, 34197, 796, 458, 83, 13, 7266, 489, 1747, 7, 20, 11, 513, 11, 2336, 7857, 16193, 22, 13, 16, 11, 860, 13, 15, 4008, 198, 897, 274, 796, 45941, 13, 265, 293, 459, 62, 16, 67, 7, 897, 274, 737, 2704, 41769, 3419, 628, 198, 87, 796, 1395, 62, 39, 13, 51, 58, 18242, 62, 14933, 13, 9630, 7203, 5036, 62, 71, 4943, 60, 198, 66, 796, 45941, 13, 853, 9806, 7, 19849, 13, 83, 559, 62, 11, 16488, 28, 16, 8, 198, 198, 42, 796, 2746, 13, 77, 62, 5589, 3906, 628, 198, 198, 88, 62, 312, 87, 796, 657, 198, 1640, 1312, 11, 7877, 287, 27056, 378, 7, 897, 274, 2599, 198, 220, 220, 220, 611, 6167, 62, 14933, 58, 72, 60, 6624, 366, 5036, 62, 71, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 331, 62, 312, 87, 15853, 352, 628, 220, 220, 220, 331, 796, 1395, 62, 39, 13, 51, 58, 88, 62, 312, 87, 60, 532, 2124, 628, 220, 220, 220, 7877, 13, 1416, 1436, 7, 87, 11, 331, 11, 269, 41888, 42895, 62, 66, 8899, 28264, 8, 329, 4808, 287, 269, 4357, 264, 28, 940, 11, 5743, 8043, 2625, 23108, 1600, 374, 1603, 1143, 28, 17821, 8, 628, 220, 220, 220, 5002, 796, 6167, 62, 14933, 58, 88, 62, 312, 87, 4083, 35312, 7203, 62, 4943, 58, 15, 4083, 7839, 3419, 198, 220, 220, 220, 7877, 13, 2617, 62, 2645, 9608, 7, 81, 1, 3, 58, 59, 5239, 26224, 27007, 90, 15, 92, 14, 14304, 11709, 60, 3, 1911, 18982, 7, 30854, 4008, 198, 220, 220, 220, 331, 62, 312, 87, 15853, 352, 628, 198, 87, 62, 2475, 82, 796, 13841, 16, 13, 20, 11, 657, 13, 20, 8, 198, 88, 62, 2475, 82, 796, 13841, 15, 13, 20, 11, 352, 13, 15, 8, 198, 198, 1640, 7877, 287, 34197, 25, 198, 220, 220, 220, 7877, 13, 2617, 62, 87, 2475, 7, 87, 62, 2475, 82, 8, 198, 220, 220, 220, 7877, 13, 2617, 62, 88, 2475, 7, 88, 62, 2475, 82, 8, 628, 220, 220, 220, 7877, 13, 2617, 62, 742, 3378, 26933, 12, 16, 13, 20, 11, 532, 15, 13, 20, 11, 657, 13, 20, 12962, 198, 220, 220, 220, 1303, 897, 13, 2617, 62, 20760, 3378, 26933, 12, 15, 13, 20, 11, 657, 13, 1495, 11, 352, 13, 15, 11, 352, 13, 2425, 12962, 198, 220, 220, 220, 7877, 13, 2617, 62, 20760, 3378, 26933, 12, 15, 13, 20, 11, 657, 11, 657, 13, 20, 11, 352, 13, 15, 12962, 628, 220, 220, 220, 611, 7877, 13, 271, 62, 12957, 62, 808, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 87, 18242, 7, 81, 1, 3, 58, 59, 5239, 26224, 90, 14304, 14, 39, 92, 60, 3, 4943, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 742, 624, 23912, 1424, 26933, 12962, 628, 220, 220, 220, 7877, 13, 29487, 7, 87, 62, 2475, 82, 11, 685, 15, 11, 657, 4357, 366, 25, 1600, 269, 25698, 19060, 2791, 1600, 300, 86, 28, 15, 13, 20, 11, 1976, 2875, 10779, 16, 8, 198, 220, 220, 220, 7877, 13, 29487, 26933, 15, 11, 657, 4357, 331, 62, 2475, 82, 11, 366, 25, 1600, 269, 25698, 19060, 2791, 1600, 300, 86, 28, 15, 13, 20, 11, 1976, 2875, 10779, 16, 8, 198, 198, 5647, 13, 33464, 62, 39786, 3419, 198, 198, 21928, 5647, 7, 5647, 11, 366, 7890, 12, 13200, 4943, 628, 198, 17660, 87, 62, 68, 3639, 796, 685, 81, 1, 3, 59, 5239, 26224, 27007, 90, 15, 42535, 3, 1911, 18982, 7, 293, 13, 35312, 7203, 62, 4943, 58, 15, 4083, 7839, 28955, 329, 443, 287, 6167, 62, 14933, 60, 198, 198, 5647, 62, 1416, 1436, 796, 285, 489, 62, 26791, 13, 29487, 62, 11423, 62, 1416, 1436, 7, 19849, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4831, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 2625, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 624, 23912, 1424, 28, 17660, 87, 62, 68, 3639, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 18242, 28, 81, 1, 3, 59, 5239, 26224, 90, 11423, 41058, 1220, 36017, 92, 3, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4378, 263, 62, 15636, 28, 1238, 8, 198, 5647, 62, 1416, 1436, 13, 897, 274, 58, 15, 4083, 2617, 62, 20760, 3378, 7, 37659, 13, 283, 858, 7, 15, 11, 657, 13, 1238, 11, 657, 13, 2713, 4008, 198, 21928, 5647, 7, 5647, 62, 1416, 1436, 11, 366, 11423, 12, 1416, 1436, 4943, 628, 198, 1456, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 5305, 6978, 7, 834, 7753, 834, 4008, 198, 34345, 796, 28686, 13, 6978, 13, 22179, 7, 1456, 11, 277, 1, 90, 40290, 92, 12, 90, 34642, 62, 17831, 92, 12, 7890, 13, 21013, 4943, 198, 198, 7266, 2617, 796, 9426, 993, 13, 7890, 58, 27932, 60, 198, 7266, 2617, 14692, 562, 41003, 8973, 796, 45941, 13, 853, 9806, 7, 19849, 13, 83, 559, 62, 11, 16488, 28, 16, 8, 198, 198, 7266, 2617, 13, 13564, 7, 34345, 11, 49312, 28, 17821, 8, 628, 198 ]
2.015957
5,828
from feeds.tests.test_latest import *
[ 6738, 21318, 13, 41989, 13, 9288, 62, 42861, 1330, 1635, 198 ]
3.454545
11
# Sample TCP Server '''from server import server server_name = 'server' domain = '192.168.1.218' protocol = 'TCP' port = '5060' server_network_name = 'SERVER' content_type = 'application' content_sub_type = 'sdp' server_ = server(server_name, domain, protocol, port, server_network_name, content_type, content_sub_type) def register_server(client_socket): print('Registering server') message = server_.receive_message(client_socket) print(message) server_.send_message('Received message + ' + message) print('Message sent') server_.create_server(register_server)''' # Sample UDP Server '''from server import server server_name = 'server' domain = 'VaaanInfra.com' protocol = 'UDP' port = '5060' server_network_name = 'SERVER' content_type = 'application' content_sub_type = 'sdp' server_ = server(server_name, domain, protocol, port, server_network_name, content_type, content_sub_type) def register_server(): print('Registering server') message = server_.receive_message() print(message) address = ('192.168.1.218', 5060) server_.send_message(('Received message: ' + message), address) print('Message sent') server_.create_server(register_server)''' from .server import server
[ 2, 27565, 23633, 9652, 198, 7061, 6, 6738, 4382, 1330, 4382, 628, 198, 15388, 62, 3672, 796, 705, 15388, 6, 198, 27830, 796, 705, 17477, 13, 14656, 13, 16, 13, 28727, 6, 198, 11235, 4668, 796, 705, 4825, 47, 6, 198, 634, 796, 705, 1120, 1899, 6, 198, 15388, 62, 27349, 62, 3672, 796, 705, 35009, 5959, 6, 198, 11299, 62, 4906, 796, 705, 31438, 6, 198, 11299, 62, 7266, 62, 4906, 796, 705, 21282, 79, 6, 198, 198, 15388, 62, 796, 4382, 7, 15388, 62, 3672, 11, 7386, 11, 8435, 11, 2493, 11, 4382, 62, 27349, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11, 2695, 62, 7266, 62, 4906, 8, 198, 198, 4299, 7881, 62, 15388, 7, 16366, 62, 44971, 2599, 198, 220, 220, 220, 3601, 10786, 38804, 278, 4382, 11537, 198, 220, 220, 220, 3275, 796, 4382, 44807, 260, 15164, 62, 20500, 7, 16366, 62, 44971, 8, 198, 220, 220, 220, 3601, 7, 20500, 8, 198, 220, 220, 220, 4382, 44807, 21280, 62, 20500, 10786, 3041, 6471, 3275, 1343, 705, 1343, 3275, 8, 198, 220, 220, 220, 3601, 10786, 12837, 1908, 11537, 198, 198, 15388, 44807, 17953, 62, 15388, 7, 30238, 62, 15388, 8, 7061, 6, 198, 198, 2, 27565, 36428, 9652, 198, 7061, 6, 6738, 4382, 1330, 4382, 628, 198, 15388, 62, 3672, 796, 705, 15388, 6, 198, 27830, 796, 705, 53, 7252, 272, 18943, 430, 13, 785, 6, 198, 11235, 4668, 796, 705, 52, 6322, 6, 198, 634, 796, 705, 1120, 1899, 6, 198, 15388, 62, 27349, 62, 3672, 796, 705, 35009, 5959, 6, 198, 11299, 62, 4906, 796, 705, 31438, 6, 198, 11299, 62, 7266, 62, 4906, 796, 705, 21282, 79, 6, 198, 198, 15388, 62, 796, 4382, 7, 15388, 62, 3672, 11, 7386, 11, 8435, 11, 2493, 11, 4382, 62, 27349, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 62, 4906, 11, 2695, 62, 7266, 62, 4906, 8, 198, 198, 4299, 7881, 62, 15388, 33529, 198, 220, 220, 220, 3601, 10786, 38804, 278, 4382, 11537, 198, 220, 220, 220, 3275, 796, 4382, 44807, 260, 15164, 62, 20500, 3419, 198, 220, 220, 220, 3601, 7, 20500, 8, 198, 220, 220, 220, 2209, 796, 19203, 17477, 13, 14656, 13, 16, 13, 28727, 3256, 2026, 1899, 8, 198, 220, 220, 220, 4382, 44807, 21280, 62, 20500, 7, 10786, 3041, 6471, 3275, 25, 705, 1343, 3275, 828, 2209, 8, 198, 220, 220, 220, 3601, 10786, 12837, 1908, 11537, 198, 198, 15388, 44807, 17953, 62, 15388, 7, 30238, 62, 15388, 8, 7061, 6, 198, 198, 6738, 764, 15388, 1330, 4382, 198 ]
2.81153
451
import unittest import random from Analysis.ResAnalyser import PDF_Parser # Pro tip - Am a noob at Testing :| class ParserTests(unittest.TestCase): """ All tests for PDFParser class & all it's methods go here """ if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 11748, 4738, 198, 6738, 14691, 13, 4965, 2025, 26266, 263, 1330, 12960, 62, 46677, 198, 198, 2, 1041, 8171, 532, 1703, 257, 645, 672, 379, 23983, 1058, 91, 198, 198, 4871, 23042, 263, 51, 3558, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1439, 5254, 329, 14340, 5837, 28198, 1398, 1222, 477, 340, 338, 5050, 467, 994, 198, 220, 220, 220, 37227, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.777778
99
# -*- coding: utf-8 -*- # Copyright (c) 2020, Apple Inc. All rights reserved. # # Use of this source code is governed by a BSD-3-clause license that can be # found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause import unittest import pytest pytest.importorskip("tensorflow", minversion="1.14.0") from tensorflow.core.framework import attr_value_pb2 as attr_value from tensorflow.core.framework import tensor_shape_pb2 as tensor_shape from tensorflow.core.framework import types_pb2 as types from coremltools.converters.mil.mil import types as mil_types import coremltools.converters.mil.frontend.tensorflow.parse as parse
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 220, 15069, 357, 66, 8, 12131, 11, 4196, 3457, 13, 1439, 2489, 10395, 13, 198, 2, 198, 2, 220, 5765, 286, 428, 2723, 2438, 318, 21825, 416, 257, 347, 10305, 12, 18, 12, 565, 682, 5964, 326, 460, 307, 198, 2, 220, 1043, 287, 262, 38559, 24290, 13, 14116, 2393, 393, 379, 3740, 1378, 44813, 1668, 13, 2398, 14, 677, 4541, 14, 21800, 12, 18, 12, 2601, 682, 198, 198, 11748, 555, 715, 395, 198, 11748, 12972, 9288, 198, 198, 9078, 9288, 13, 11748, 669, 74, 541, 7203, 83, 22854, 11125, 1600, 949, 9641, 2625, 16, 13, 1415, 13, 15, 4943, 198, 6738, 11192, 273, 11125, 13, 7295, 13, 30604, 1330, 708, 81, 62, 8367, 62, 40842, 17, 355, 708, 81, 62, 8367, 198, 6738, 11192, 273, 11125, 13, 7295, 13, 30604, 1330, 11192, 273, 62, 43358, 62, 40842, 17, 355, 11192, 273, 62, 43358, 198, 6738, 11192, 273, 11125, 13, 7295, 13, 30604, 1330, 3858, 62, 40842, 17, 355, 3858, 198, 198, 6738, 4755, 76, 2528, 10141, 13, 1102, 332, 1010, 13, 25433, 13, 25433, 1330, 3858, 355, 1465, 62, 19199, 198, 11748, 4755, 76, 2528, 10141, 13, 1102, 332, 1010, 13, 25433, 13, 8534, 437, 13, 83, 22854, 11125, 13, 29572, 355, 21136, 628 ]
2.963964
222
# Tarsnap - tarsnap website interface import datetime from pathlib import Path import requests from bs4 import BeautifulSoup, element URL = "https://www.tarsnap.com"
[ 2, 309, 945, 77, 499, 532, 256, 945, 77, 499, 3052, 7071, 198, 198, 11748, 4818, 8079, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 11748, 7007, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 11, 5002, 198, 198, 21886, 796, 366, 5450, 1378, 2503, 13, 83, 945, 77, 499, 13, 785, 1, 628 ]
3.090909
55
#Kunal Gautam #Codewars : @Kunalpod #Problem name: Simple Fun #204: Smallest Integer #Problem level: 7 kyu from itertools import groupby, chain
[ 2, 42, 18835, 402, 2306, 321, 198, 2, 43806, 413, 945, 1058, 2488, 42, 18835, 33320, 198, 2, 40781, 1438, 25, 17427, 11138, 1303, 18638, 25, 10452, 395, 34142, 198, 2, 40781, 1241, 25, 767, 479, 24767, 198, 198, 6738, 340, 861, 10141, 1330, 1448, 1525, 11, 6333, 198 ]
2.959184
49
from .devicelist import ( ChannelList, ChannelInfo, DeviceTokenList, APIDList, DeviceInfo, ) from .tag import ( ChannelTags, OpenChannelTags ) from .segment import ( Segment, SegmentList ) from .channel_uninstall import ( ChannelUninstall ) from .open_channel import ( OpenChannel ) from .named_users import ( NamedUser, NamedUserList, NamedUserTags ) from .static_lists import ( StaticList, StaticLists, ) from .locationfinder import ( LocationFinder ) from .sms import ( Sms ) from .email import ( Email, EmailTags )
[ 6738, 764, 7959, 291, 46331, 1330, 357, 198, 220, 220, 220, 11102, 8053, 11, 198, 220, 220, 220, 11102, 12360, 11, 198, 220, 220, 220, 16232, 30642, 8053, 11, 198, 220, 220, 220, 3486, 2389, 8053, 11, 198, 220, 220, 220, 16232, 12360, 11, 198, 8, 198, 198, 6738, 764, 12985, 1330, 357, 198, 220, 220, 220, 11102, 36142, 11, 198, 220, 220, 220, 4946, 29239, 36142, 198, 8, 198, 198, 6738, 764, 325, 5154, 1330, 357, 198, 220, 220, 220, 1001, 5154, 11, 198, 220, 220, 220, 1001, 5154, 8053, 198, 8, 198, 198, 6738, 764, 17620, 62, 403, 17350, 1330, 357, 198, 220, 220, 220, 11102, 3118, 17350, 198, 8, 198, 198, 6738, 764, 9654, 62, 17620, 1330, 357, 198, 220, 220, 220, 4946, 29239, 198, 8, 198, 198, 6738, 764, 13190, 62, 18417, 1330, 357, 198, 220, 220, 220, 34441, 12982, 11, 198, 220, 220, 220, 34441, 12982, 8053, 11, 198, 220, 220, 220, 34441, 12982, 36142, 198, 8, 198, 198, 6738, 764, 12708, 62, 20713, 1330, 357, 198, 220, 220, 220, 36125, 8053, 11, 198, 220, 220, 220, 36125, 43, 1023, 11, 198, 8, 198, 198, 6738, 764, 24886, 22805, 1330, 357, 198, 220, 220, 220, 13397, 37, 5540, 198, 8, 198, 198, 6738, 764, 82, 907, 1330, 357, 198, 220, 220, 220, 311, 907, 198, 8, 198, 198, 6738, 764, 12888, 1330, 357, 198, 220, 220, 220, 9570, 11, 198, 220, 220, 220, 9570, 36142, 198, 8, 198 ]
2.502058
243
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import torch from torch import nn from typing import List, Union, Dict from ..builder import NECKS from ..utils import build_stack_conv_layers, random_init_weights @NECKS.register_module
[ 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 262, 17168, 13789, 13, 198, 198, 11748, 28034, 198, 6738, 28034, 1330, 299, 77, 198, 6738, 19720, 1330, 7343, 11, 4479, 11, 360, 713, 198, 198, 6738, 11485, 38272, 1330, 399, 25171, 50, 198, 6738, 11485, 26791, 1330, 1382, 62, 25558, 62, 42946, 62, 75, 6962, 11, 4738, 62, 15003, 62, 43775, 628, 198, 31, 45, 25171, 50, 13, 30238, 62, 21412, 198 ]
3.607595
79
''' --------------------------- runserver.py --------------------------- Created on 24.04.2015 Last modified on 12.01.2016 Author: Marc Wieland Description: Starts the application using a local flask server (NOT RECOMMENDED: use wsgi implementation instead see README.md) ---- ''' from webapp import app, db, models from flask.ext.login import LoginManager from flask.ext.security import Security,SQLAlchemyUserDatastore #create database stuff db.create_all() #CHANGE THE SECRET KEY HERE: app.secret_key = '42' app.run(debug=True, use_reloader=False)
[ 7061, 6, 198, 22369, 6329, 198, 220, 220, 220, 1057, 15388, 13, 9078, 198, 22369, 6329, 198, 41972, 319, 1987, 13, 3023, 13, 4626, 198, 5956, 9518, 319, 1105, 13, 486, 13, 5304, 198, 13838, 25, 13067, 370, 8207, 392, 198, 11828, 25, 50181, 262, 3586, 1262, 257, 1957, 42903, 4382, 357, 11929, 19644, 2662, 44, 49361, 25, 779, 266, 82, 12397, 7822, 2427, 766, 20832, 11682, 13, 9132, 8, 198, 650, 198, 7061, 6, 198, 6738, 3992, 1324, 1330, 598, 11, 20613, 11, 4981, 198, 6738, 42903, 13, 2302, 13, 38235, 1330, 23093, 13511, 198, 6738, 42903, 13, 2302, 13, 12961, 1330, 4765, 11, 17861, 2348, 26599, 12982, 27354, 459, 382, 198, 198, 2, 17953, 6831, 3404, 198, 9945, 13, 17953, 62, 439, 3419, 198, 198, 2, 3398, 27746, 3336, 10729, 26087, 35374, 15698, 25, 198, 1324, 13, 21078, 62, 2539, 796, 705, 3682, 6, 198, 1324, 13, 5143, 7, 24442, 28, 17821, 11, 779, 62, 260, 29356, 28, 25101, 8, 198 ]
3.417178
163
# @file setup.py # This contains setup info for mu_environment pip module # ## # Copyright (c) 2018, Microsoft Corporation # # All rights reserved. # 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 COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ## import setuptools from setuptools.command.sdist import sdist from setuptools.command.install import install from setuptools.command.develop import develop from MuEnvironment.bin.NuGet import DownloadNuget with open("README.rst", "r") as fh: long_description = fh.read() class PostSdistCommand(sdist): """Post-sdist.""" class PostInstallCommand(install): """Post-install.""" class PostDevCommand(develop): """Post-develop.""" setuptools.setup( name="mu_environment", author="Project Mu Team", author_email="[email protected]", description="Project Mu distributed dependency management, build, test, and tool environments.", long_description=long_description, url="https://github.com/microsoft/mu_pip_environment", license='BSD2', packages=setuptools.find_packages(), use_scm_version=True, setup_requires=['setuptools_scm'], cmdclass={ 'sdist': PostSdistCommand, 'install': PostInstallCommand, 'develop': PostDevCommand, }, include_package_data=True, entry_points={ 'console_scripts': ['omnicache=MuEnvironment.Omnicache:main', 'nuget-publish=MuEnvironment.NugetPublishing:go'] }, install_requires=[ 'pyyaml', 'mu_python_library>=0.4.6' ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Development Status :: 4 - Beta" ] )
[ 2, 2488, 7753, 9058, 13, 9078, 201, 198, 2, 770, 4909, 9058, 7508, 329, 38779, 62, 38986, 7347, 8265, 201, 198, 2, 201, 198, 2235, 201, 198, 2, 15069, 357, 66, 8, 2864, 11, 5413, 10501, 201, 198, 2, 201, 198, 2, 1439, 2489, 10395, 13, 201, 198, 2, 2297, 396, 3890, 290, 779, 287, 2723, 290, 13934, 5107, 11, 351, 393, 1231, 201, 198, 2, 17613, 11, 389, 10431, 2810, 326, 262, 1708, 3403, 389, 1138, 25, 201, 198, 2, 352, 13, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 4003, 11, 201, 198, 2, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 201, 198, 2, 362, 13, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 4003, 11, 201, 198, 2, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 262, 10314, 201, 198, 2, 290, 14, 273, 584, 5696, 2810, 351, 262, 6082, 13, 201, 198, 2, 201, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 27975, 38162, 9947, 367, 15173, 4877, 5357, 27342, 9865, 3843, 20673, 366, 1921, 3180, 1, 5357, 201, 198, 2, 15529, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 40880, 5390, 11, 3336, 8959, 49094, 201, 198, 2, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 15986, 13954, 48778, 1961, 13, 201, 198, 2, 3268, 8005, 49261, 50163, 3336, 27975, 38162, 9947, 49707, 14418, 6375, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 7473, 15529, 42242, 11, 201, 198, 2, 3268, 17931, 23988, 11, 19387, 25256, 1847, 11, 38846, 11, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 29506, 25552, 357, 1268, 39149, 2751, 11, 201, 198, 2, 21728, 5626, 40880, 5390, 11, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 6375, 49254, 26, 406, 18420, 3963, 23210, 11, 201, 198, 2, 42865, 11, 6375, 4810, 19238, 29722, 26, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 29630, 36, 5959, 7257, 2937, 1961, 5357, 6177, 15529, 3336, 15513, 3963, 201, 198, 2, 43031, 25382, 11, 7655, 2767, 16879, 3268, 27342, 10659, 11, 19269, 18379, 43031, 25382, 11, 6375, 309, 9863, 357, 1268, 39149, 2751, 399, 7156, 43, 3528, 18310, 201, 198, 2, 6375, 25401, 54, 24352, 8, 5923, 1797, 2751, 3268, 15529, 34882, 16289, 3963, 3336, 23210, 3963, 12680, 47466, 11, 45886, 16876, 201, 198, 2, 5984, 29817, 1961, 3963, 3336, 28069, 11584, 25382, 3963, 13558, 3398, 29506, 11879, 13, 201, 198, 2235, 201, 198, 201, 198, 11748, 900, 37623, 10141, 201, 198, 6738, 900, 37623, 10141, 13, 21812, 13, 82, 17080, 1330, 264, 17080, 201, 198, 6738, 900, 37623, 10141, 13, 21812, 13, 17350, 1330, 2721, 201, 198, 6738, 900, 37623, 10141, 13, 21812, 13, 16244, 1330, 1205, 201, 198, 6738, 8252, 31441, 13, 8800, 13, 45, 84, 3855, 1330, 10472, 45, 1018, 316, 201, 198, 201, 198, 4480, 1280, 7203, 15675, 11682, 13, 81, 301, 1600, 366, 81, 4943, 355, 277, 71, 25, 201, 198, 220, 220, 220, 890, 62, 11213, 796, 277, 71, 13, 961, 3419, 201, 198, 201, 198, 201, 198, 4871, 2947, 50, 17080, 21575, 7, 82, 17080, 2599, 201, 198, 220, 220, 220, 37227, 6307, 12, 82, 17080, 526, 15931, 201, 198, 201, 198, 201, 198, 4871, 2947, 15798, 21575, 7, 17350, 2599, 201, 198, 220, 220, 220, 37227, 6307, 12, 17350, 526, 15931, 201, 198, 201, 198, 201, 198, 4871, 2947, 13603, 21575, 7, 16244, 2599, 201, 198, 220, 220, 220, 37227, 6307, 12, 16244, 526, 15931, 201, 198, 201, 198, 201, 198, 2617, 37623, 10141, 13, 40406, 7, 201, 198, 220, 220, 220, 1438, 2625, 30300, 62, 38986, 1600, 201, 198, 220, 220, 220, 1772, 2625, 16775, 8252, 4816, 1600, 201, 198, 220, 220, 220, 1772, 62, 12888, 2625, 76, 461, 14930, 325, 31, 40485, 13, 785, 1600, 201, 198, 220, 220, 220, 6764, 2625, 16775, 8252, 9387, 20203, 4542, 11, 1382, 11, 1332, 11, 290, 2891, 12493, 33283, 201, 198, 220, 220, 220, 890, 62, 11213, 28, 6511, 62, 11213, 11, 201, 198, 220, 220, 220, 19016, 2625, 5450, 1378, 12567, 13, 785, 14, 40485, 14, 30300, 62, 79, 541, 62, 38986, 1600, 201, 198, 220, 220, 220, 5964, 11639, 21800, 17, 3256, 201, 198, 220, 220, 220, 10392, 28, 2617, 37623, 10141, 13, 19796, 62, 43789, 22784, 201, 198, 220, 220, 220, 779, 62, 1416, 76, 62, 9641, 28, 17821, 11, 201, 198, 220, 220, 220, 9058, 62, 47911, 28, 17816, 2617, 37623, 10141, 62, 1416, 76, 6, 4357, 201, 198, 220, 220, 220, 23991, 4871, 34758, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 82, 17080, 10354, 2947, 50, 17080, 21575, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 10354, 2947, 15798, 21575, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 16244, 10354, 2947, 13603, 21575, 11, 201, 198, 220, 220, 220, 8964, 201, 198, 220, 220, 220, 2291, 62, 26495, 62, 7890, 28, 17821, 11, 201, 198, 220, 220, 220, 5726, 62, 13033, 34758, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 41947, 62, 46521, 10354, 37250, 296, 6988, 4891, 28, 33239, 31441, 13, 46, 76, 6988, 4891, 25, 12417, 3256, 705, 77, 1018, 316, 12, 12984, 1836, 28, 33239, 31441, 13, 45, 1018, 316, 14876, 20020, 25, 2188, 20520, 201, 198, 220, 220, 220, 8964, 201, 198, 220, 220, 220, 2721, 62, 47911, 41888, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9078, 88, 43695, 3256, 201, 198, 220, 220, 220, 220, 220, 220, 220, 705, 30300, 62, 29412, 62, 32016, 29, 28, 15, 13, 19, 13, 21, 6, 201, 198, 220, 220, 220, 16589, 201, 198, 220, 220, 220, 1398, 13350, 41888, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 34156, 7904, 7294, 40, 20010, 1079, 7904, 347, 10305, 13789, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18843, 803, 4482, 7904, 7294, 13362, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 41206, 12678, 7904, 604, 532, 17993, 1, 201, 198, 220, 220, 220, 2361, 201, 198, 8, 201, 198 ]
2.879808
1,040
# Copyright 2020 The TensorFlow Probability Authors. # # 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. # ============================================================================ """Tests TFP distribution compositionality with JAX transformations.""" import functools from absl import flags from absl.testing import parameterized import hypothesis as hp from hypothesis import strategies as hps import jax from jax import random import jax.numpy as np # pylint: disable=no-name-in-module from tensorflow_probability.python.distributions._jax import hypothesis_testlib as dhps from tensorflow_probability.python.experimental.substrates.jax import tf2jax as tf from tensorflow_probability.python.internal._jax import hypothesis_testlib as tfp_hps from tensorflow_probability.python.internal._jax import test_util flags.DEFINE_bool('execute_only', False, 'If specified, skip equality checks and only verify ' 'execution of transforms works.') flags.DEFINE_bool('ignore_blocklists', False, 'If specified, run tests even for blocklisted distributions.') FLAGS = flags.FLAGS JIT_SAMPLE_BLOCKLIST = () JIT_LOGPROB_BLOCKLIST = ( 'BatchReshape', 'Bates', 'Independent', 'MixtureSameFamily', 'TransformedDistribution', ) VMAP_SAMPLE_BLOCKLIST = ('NegativeBinomial',) VMAP_LOGPROB_BLOCKLIST = ( 'BatchReshape', 'Bates', 'Independent', 'MixtureSameFamily', 'TransformedDistribution', 'QuantizedDistribution', ) JVP_SAMPLE_BLOCKLIST = ( 'Bates', 'BetaBinomial', 'Binomial', 'DirichletMultinomial', 'Gamma', 'GeneralizedNormal', 'Multinomial', 'OrderedLogistic', 'PERT', 'Triangular', 'TruncatedNormal', 'Uniform', 'VonMises', 'VonMisesFisher', 'WishartTriL', ) JVP_LOGPROB_SAMPLE_BLOCKLIST = ( 'BetaBinomial', 'Binomial', 'JohnsonSU', 'NegativeBinomial', 'Poisson', ) JVP_LOGPROB_PARAM_BLOCKLIST = ( 'Bates', 'Beta', 'BetaBinomial', 'Binomial', 'CholeskyLKJ', 'GammaGamma', 'HalfStudentT', 'JohnsonSU', 'LKJ', 'NegativeBinomial', 'OrderedLogistic', 'PERT', 'PowerSpherical', 'ProbitBernoulli', 'StudentT', 'Triangular', 'TruncatedNormal', 'Uniform', 'WishartTriL', ) VJP_SAMPLE_BLOCKLIST = ( 'Bates', 'Gamma', 'GeneralizedNormal', 'VonMisesFisher', ) VJP_LOGPROB_SAMPLE_BLOCKLIST = ( 'Categorical', 'OneHotCategorical', 'OrderedLogistic', 'PlackettLuce', 'ProbitBernoulli', ) VJP_LOGPROB_PARAM_BLOCKLIST = () DEFAULT_MAX_EXAMPLES = 3 test_all_distributions = parameterized.named_parameters( {'testcase_name': dname, 'dist_name': dname} for dname in sorted(list(dhps.INSTANTIABLE_BASE_DISTS.keys()) + list(d for d in dhps.INSTANTIABLE_META_DISTS if d != 'Mixture'))) test_base_distributions = parameterized.named_parameters( {'testcase_name': dname, 'dist_name': dname} for dname in sorted(list(dhps.INSTANTIABLE_BASE_DISTS.keys()))) del _GradTest # not intended for standalone execution if __name__ == '__main__': tf.test.main()
[ 2, 15069, 12131, 383, 309, 22854, 37535, 30873, 1799, 46665, 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, 38093, 2559, 18604, 198, 37811, 51, 3558, 309, 5837, 6082, 11742, 1483, 351, 449, 25922, 38226, 526, 15931, 198, 11748, 1257, 310, 10141, 198, 198, 6738, 2352, 75, 1330, 9701, 198, 6738, 2352, 75, 13, 33407, 1330, 11507, 1143, 198, 11748, 14078, 355, 27673, 198, 6738, 14078, 1330, 10064, 355, 289, 862, 198, 11748, 474, 897, 198, 6738, 474, 897, 1330, 4738, 198, 11748, 474, 897, 13, 77, 32152, 355, 45941, 198, 198, 2, 279, 2645, 600, 25, 15560, 28, 3919, 12, 3672, 12, 259, 12, 21412, 198, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 17080, 2455, 507, 13557, 73, 897, 1330, 14078, 62, 9288, 8019, 355, 34590, 862, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 23100, 9134, 13, 7266, 2536, 689, 13, 73, 897, 1330, 48700, 17, 73, 897, 355, 48700, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 32538, 13557, 73, 897, 1330, 14078, 62, 9288, 8019, 355, 256, 46428, 62, 71, 862, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 32538, 13557, 73, 897, 1330, 1332, 62, 22602, 628, 198, 33152, 13, 7206, 29940, 62, 30388, 10786, 41049, 62, 8807, 3256, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1532, 7368, 11, 14267, 10537, 8794, 290, 691, 11767, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 18558, 1009, 286, 31408, 2499, 2637, 8, 198, 33152, 13, 7206, 29940, 62, 30388, 10786, 46430, 62, 9967, 20713, 3256, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1532, 7368, 11, 1057, 5254, 772, 329, 2512, 17935, 24570, 2637, 8, 198, 38948, 50, 796, 9701, 13, 38948, 50, 628, 198, 41, 2043, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 7499, 198, 41, 2043, 62, 25294, 4805, 9864, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 33, 963, 4965, 71, 1758, 3256, 198, 220, 220, 220, 705, 33, 689, 3256, 198, 220, 220, 220, 705, 40566, 3256, 198, 220, 220, 220, 705, 44, 9602, 30556, 24094, 3256, 198, 220, 220, 220, 705, 8291, 12214, 20344, 3890, 3256, 198, 8, 198, 198, 15996, 2969, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 19203, 32863, 876, 33, 259, 49070, 3256, 8, 198, 15996, 2969, 62, 25294, 4805, 9864, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 33, 963, 4965, 71, 1758, 3256, 198, 220, 220, 220, 705, 33, 689, 3256, 198, 220, 220, 220, 705, 40566, 3256, 198, 220, 220, 220, 705, 44, 9602, 30556, 24094, 3256, 198, 220, 220, 220, 705, 8291, 12214, 20344, 3890, 3256, 198, 220, 220, 220, 705, 24915, 1143, 20344, 3890, 3256, 198, 8, 198, 198, 41, 8859, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 33, 689, 3256, 198, 220, 220, 220, 705, 43303, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 35277, 488, 1616, 15205, 259, 49070, 3256, 198, 220, 220, 220, 705, 34777, 2611, 3256, 198, 220, 220, 220, 705, 12218, 1143, 26447, 3256, 198, 220, 220, 220, 705, 15205, 259, 49070, 3256, 198, 220, 220, 220, 705, 35422, 1068, 11187, 2569, 3256, 198, 220, 220, 220, 705, 47, 17395, 3256, 198, 220, 220, 220, 705, 14824, 21413, 3256, 198, 220, 220, 220, 705, 2898, 19524, 515, 26447, 3256, 198, 220, 220, 220, 705, 3118, 6933, 3256, 198, 220, 220, 220, 705, 53, 261, 44, 2696, 3256, 198, 220, 220, 220, 705, 53, 261, 44, 2696, 37, 4828, 3256, 198, 220, 220, 220, 705, 54, 680, 433, 14824, 43, 3256, 198, 8, 198, 41, 8859, 62, 25294, 4805, 9864, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 43303, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 25378, 12564, 3256, 198, 220, 220, 220, 705, 32863, 876, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 18833, 30927, 3256, 198, 8, 198, 41, 8859, 62, 25294, 4805, 9864, 62, 27082, 2390, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 33, 689, 3256, 198, 220, 220, 220, 705, 43303, 3256, 198, 220, 220, 220, 705, 43303, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 1925, 4316, 2584, 43, 42, 41, 3256, 198, 220, 220, 220, 705, 34777, 2611, 34777, 2611, 3256, 198, 220, 220, 220, 705, 31305, 38778, 51, 3256, 198, 220, 220, 220, 705, 25378, 12564, 3256, 198, 220, 220, 220, 705, 43, 42, 41, 3256, 198, 220, 220, 220, 705, 32863, 876, 33, 259, 49070, 3256, 198, 220, 220, 220, 705, 35422, 1068, 11187, 2569, 3256, 198, 220, 220, 220, 705, 47, 17395, 3256, 198, 220, 220, 220, 705, 13434, 4561, 37910, 3256, 198, 220, 220, 220, 705, 2964, 2545, 23927, 280, 15516, 3256, 198, 220, 220, 220, 705, 38778, 51, 3256, 198, 220, 220, 220, 705, 14824, 21413, 3256, 198, 220, 220, 220, 705, 2898, 19524, 515, 26447, 3256, 198, 220, 220, 220, 705, 3118, 6933, 3256, 198, 220, 220, 220, 705, 54, 680, 433, 14824, 43, 3256, 198, 8, 198, 198, 53, 12889, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 33, 689, 3256, 198, 220, 220, 220, 705, 34777, 2611, 3256, 198, 220, 220, 220, 705, 12218, 1143, 26447, 3256, 198, 220, 220, 220, 705, 53, 261, 44, 2696, 37, 4828, 3256, 198, 8, 198, 53, 12889, 62, 25294, 4805, 9864, 62, 49302, 16437, 62, 9148, 11290, 45849, 796, 357, 198, 220, 220, 220, 705, 34, 2397, 12409, 3256, 198, 220, 220, 220, 705, 3198, 21352, 34, 2397, 12409, 3256, 198, 220, 220, 220, 705, 35422, 1068, 11187, 2569, 3256, 198, 220, 220, 220, 705, 3646, 441, 3087, 43, 7234, 3256, 198, 220, 220, 220, 705, 2964, 2545, 23927, 280, 15516, 3256, 198, 8, 198, 53, 12889, 62, 25294, 4805, 9864, 62, 27082, 2390, 62, 9148, 11290, 45849, 796, 7499, 628, 198, 7206, 38865, 62, 22921, 62, 6369, 2390, 6489, 1546, 796, 513, 628, 198, 9288, 62, 439, 62, 17080, 2455, 507, 796, 11507, 1143, 13, 13190, 62, 17143, 7307, 7, 198, 220, 220, 220, 1391, 6, 9288, 7442, 62, 3672, 10354, 288, 3672, 11, 705, 17080, 62, 3672, 10354, 288, 3672, 92, 329, 288, 3672, 287, 198, 220, 220, 220, 23243, 7, 4868, 7, 34985, 862, 13, 38604, 8643, 3539, 19146, 62, 33, 11159, 62, 26288, 4694, 13, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 1351, 7, 67, 329, 288, 287, 34590, 862, 13, 38604, 8643, 3539, 19146, 62, 44, 20892, 62, 26288, 4694, 611, 288, 14512, 705, 44, 9602, 6, 22305, 198, 198, 9288, 62, 8692, 62, 17080, 2455, 507, 796, 11507, 1143, 13, 13190, 62, 17143, 7307, 7, 198, 220, 220, 220, 1391, 6, 9288, 7442, 62, 3672, 10354, 288, 3672, 11, 705, 17080, 62, 3672, 10354, 288, 3672, 92, 329, 288, 3672, 287, 198, 220, 220, 220, 23243, 7, 4868, 7, 34985, 862, 13, 38604, 8643, 3539, 19146, 62, 33, 11159, 62, 26288, 4694, 13, 13083, 3419, 22305, 628, 628, 628, 198, 198, 12381, 4808, 42731, 14402, 220, 1303, 407, 5292, 329, 27669, 9706, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 48700, 13, 9288, 13, 12417, 3419, 198 ]
2.59136
1,412
"""Setup file """ import setuptools import compphys with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup(name='compphys', version=compphys.__version__, description='compphys', long_description=long_description, long_description_content_type="text/markdown", python_requires='==3.7, ==3.8', url=compphys.__github_url__, author='James Kennington', author_email='[email protected]', license='MIT', packages=setuptools.find_packages(), install_requires=[ 'matplotlib', 'numpy', 'pytest', 'scipy', 'simpy', 'plotly', ], classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", ], zip_safe=False, include_package_data=True, )
[ 37811, 40786, 2393, 198, 37811, 198, 198, 11748, 900, 37623, 10141, 198, 198, 11748, 401, 381, 71, 893, 198, 198, 4480, 1280, 7203, 15675, 11682, 13, 9132, 1600, 366, 81, 4943, 355, 277, 71, 25, 198, 220, 220, 220, 890, 62, 11213, 796, 277, 71, 13, 961, 3419, 198, 198, 2617, 37623, 10141, 13, 40406, 7, 3672, 11639, 785, 381, 71, 893, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 28, 785, 381, 71, 893, 13, 834, 9641, 834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 11639, 785, 381, 71, 893, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 890, 62, 11213, 28, 6511, 62, 11213, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 2625, 5239, 14, 4102, 2902, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21015, 62, 47911, 11639, 855, 18, 13, 22, 11, 6624, 18, 13, 23, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 28, 785, 381, 71, 893, 13, 834, 12567, 62, 6371, 834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1772, 11639, 14731, 7148, 48405, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1772, 62, 12888, 11639, 73, 86, 3464, 48405, 31, 862, 84, 13, 15532, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5964, 11639, 36393, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10392, 28, 2617, 37623, 10141, 13, 19796, 62, 43789, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2721, 62, 47911, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 6759, 29487, 8019, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 77, 32152, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9078, 9288, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1416, 541, 88, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14323, 9078, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 29487, 306, 3256, 198, 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, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 23, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 18843, 803, 4482, 7904, 4100, 2640, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 18843, 803, 4482, 7904, 28069, 10426, 7904, 7020, 1600, 198, 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, 19974, 62, 21230, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 26495, 62, 7890, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198 ]
1.678238
749
"""Functions to convert objects to a type"""
[ 37811, 24629, 2733, 284, 10385, 5563, 284, 257, 2099, 37811, 198 ]
4.090909
11
import os from typing import List, Optional import multiprocessing as mp from fastapi import FastAPI, BackgroundTasks from Blocktrace.Networks import Wax from Blocktrace.Streaming import stream_writer, publish_messages app = FastAPI() API_KEY = os.getenv("BT__API_KEY") or "" GCP_PROJECT_ID = os.getenv("BT__GCP_PROJECT_ID") or "" GCP_PUBSUB_BLOCK_TOPIC_ID = os.getenv("BT__GCP_PUBSUB_BLOCK_TOPIC_ID") or "" GCP_PUBSUB_TX_TOPIC_ID = os.getenv("BT__GCP_PUBSUB_TX_TOPIC_ID") or "" GCP_PUBSUB_ACT_TOPIC_ID = os.getenv("BT__GCP_PUBSUB_ACT_TOPIC_ID") or "" @app.get("/api/v1/invoke/")
[ 11748, 28686, 198, 6738, 19720, 1330, 7343, 11, 32233, 198, 11748, 18540, 305, 919, 278, 355, 29034, 198, 198, 6738, 3049, 15042, 1330, 12549, 17614, 11, 25353, 51, 6791, 198, 198, 6738, 9726, 40546, 13, 7934, 5225, 1330, 42656, 198, 6738, 9726, 40546, 13, 12124, 278, 1330, 4269, 62, 16002, 11, 7715, 62, 37348, 1095, 198, 198, 1324, 796, 12549, 17614, 3419, 198, 198, 17614, 62, 20373, 796, 28686, 13, 1136, 24330, 7203, 19313, 834, 17614, 62, 20373, 4943, 393, 13538, 198, 38, 8697, 62, 31190, 23680, 62, 2389, 796, 28686, 13, 1136, 24330, 7203, 19313, 834, 38, 8697, 62, 31190, 23680, 62, 2389, 4943, 393, 13538, 198, 38, 8697, 62, 5105, 4462, 10526, 62, 9148, 11290, 62, 35222, 2149, 62, 2389, 796, 28686, 13, 1136, 24330, 7203, 19313, 834, 38, 8697, 62, 5105, 4462, 10526, 62, 9148, 11290, 62, 35222, 2149, 62, 2389, 4943, 393, 13538, 198, 38, 8697, 62, 5105, 4462, 10526, 62, 29551, 62, 35222, 2149, 62, 2389, 796, 28686, 13, 1136, 24330, 7203, 19313, 834, 38, 8697, 62, 5105, 4462, 10526, 62, 29551, 62, 35222, 2149, 62, 2389, 4943, 393, 13538, 198, 38, 8697, 62, 5105, 4462, 10526, 62, 10659, 62, 35222, 2149, 62, 2389, 796, 28686, 13, 1136, 24330, 7203, 19313, 834, 38, 8697, 62, 5105, 4462, 10526, 62, 10659, 62, 35222, 2149, 62, 2389, 4943, 393, 13538, 628, 198, 198, 31, 1324, 13, 1136, 7203, 14, 15042, 14, 85, 16, 14, 37669, 14, 4943, 198 ]
2.435685
241
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Title ''' __author__ = 'Hiroshi Kajino <[email protected]>' __copyright__ = 'Copyright IBM Corp. 2020, 2021' import math import torch from ..data import (EventSeq, MultivariateEventSeq, append_hidden) from ..utils import complete_logprob from ..pp.poisson import PoissonProcess from ..pp.thinning import MultivariateThinningAlgorithmMixin EPS = 1e-2
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 7061, 6, 11851, 705, 7061, 198, 198, 834, 9800, 834, 796, 705, 39, 7058, 44019, 509, 1228, 2879, 1279, 25123, 41, 46016, 31, 34523, 13, 571, 76, 13, 785, 29, 6, 198, 834, 22163, 4766, 834, 796, 705, 15269, 19764, 11421, 13, 12131, 11, 33448, 6, 198, 198, 11748, 10688, 198, 11748, 28034, 198, 6738, 11485, 7890, 1330, 357, 9237, 4653, 80, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7854, 42524, 9237, 4653, 80, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24443, 62, 30342, 8, 198, 6738, 11485, 26791, 1330, 1844, 62, 6404, 1676, 65, 198, 6738, 11485, 381, 13, 7501, 30927, 1330, 7695, 30927, 18709, 198, 6738, 11485, 381, 13, 400, 23062, 1330, 7854, 42524, 817, 23062, 2348, 42289, 35608, 259, 198, 198, 36, 3705, 796, 352, 68, 12, 17, 628 ]
2.42623
183
import argparse import subprocess import os import re if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("url", help="Specify youtube url to download audio from.") parser.add_argument("--out", default="out", metavar="<FILENAME>", help="Specify name of output file.") parser.add_argument("-verbose", action="store_true", help="Show VLC media player GUI when downloading audio.") parser.add_argument("-no_url_check", action="store_true", help="Disables url regex check. May result in unexpected behavior for invalid links.") args = parser.parse_args() main(args)
[ 11748, 1822, 29572, 198, 11748, 850, 14681, 198, 11748, 28686, 198, 11748, 302, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 6371, 1600, 1037, 2625, 22882, 1958, 35116, 19016, 284, 4321, 6597, 422, 19570, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 448, 1600, 4277, 2625, 448, 1600, 1138, 615, 283, 2625, 27, 46700, 1677, 10067, 29, 1600, 1037, 2625, 22882, 1958, 1438, 286, 5072, 2393, 19570, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 19011, 577, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 2625, 15307, 569, 5639, 2056, 2137, 25757, 618, 22023, 6597, 19570, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 3919, 62, 6371, 62, 9122, 1600, 2223, 2625, 8095, 62, 7942, 1600, 1037, 2625, 7279, 2977, 19016, 40364, 2198, 13, 1737, 1255, 287, 10059, 4069, 329, 12515, 6117, 19570, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 220, 220, 220, 1388, 7, 22046, 8, 628, 220, 220, 220, 220 ]
3.226804
194
import os, sys import run_tests from libtbx import easy_run import libtbx.load_env qrefine_path = libtbx.env.find_in_repositories("qrefine") pdb_lines = ''' CRYST1 72.470 66.336 68.552 90.00 90.00 90.00 P 1 ATOM 387 N HIS A 30 62.619 25.986 37.359 1.00 66.84 N ATOM 388 CA HIS A 30 63.258 26.030 36.050 1.00 70.57 C ATOM 389 C HIS A 30 64.699 26.498 36.196 1.00 70.51 C ATOM 390 O HIS A 30 64.980 27.444 36.921 1.00 73.92 O ATOM 391 CB HIS A 30 62.568 26.958 35.058 1.00 70.79 C ATOM 392 CG HIS A 30 61.106 26.715 34.861 1.00 68.99 C ATOM 393 ND1 HIS A 30 60.132 27.545 35.365 1.00 77.35 N ATOM 394 CD2 HIS A 30 60.459 25.708 34.234 1.00 70.51 C ATOM 395 CE1 HIS A 30 58.941 27.084 35.013 1.00 79.15 C ATOM 396 NE2 HIS A 30 59.114 25.973 34.318 1.00 70.69 N ATOM 397 H HIS A 30 61.945 26.509 37.464 0.00 66.84 H ATOM 398 HA HIS A 30 63.202 25.127 35.700 0.00 70.57 H ATOM 399 HB2 HIS A 30 62.691 27.873 35.355 0.00 70.79 H ATOM 400 HB3 HIS A 30 63.012 26.877 34.200 0.00 70.79 H ATOM 401 HD2 HIS A 30 60.851 24.972 33.822 0.00 70.51 H ATOM 402 HE1 HIS A 30 58.123 27.475 35.220 0.00 79.15 H ATOM 403 HE2 HIS A 30 58.487 25.495 33.975 0.00 70.69 H HETATM 541 ZN ZN A 101 60.278 29.235 36.302 1.00 76.89 ZN TER ''' if(__name__=='__main__'): prefix = os.path.basename(__file__).replace(".py","") run_tests.runner(function=run, prefix=prefix, disable=False)
[ 11748, 28686, 11, 25064, 198, 11748, 1057, 62, 41989, 198, 6738, 9195, 83, 65, 87, 1330, 2562, 62, 5143, 198, 11748, 9195, 83, 65, 87, 13, 2220, 62, 24330, 198, 198, 80, 5420, 500, 62, 6978, 796, 9195, 83, 65, 87, 13, 24330, 13, 19796, 62, 259, 62, 260, 1930, 270, 1749, 7203, 80, 5420, 500, 4943, 198, 198, 79, 9945, 62, 6615, 796, 705, 7061, 198, 9419, 56, 2257, 16, 220, 220, 7724, 13, 27790, 220, 220, 7930, 13, 29211, 220, 220, 8257, 13, 40427, 220, 4101, 13, 405, 220, 4101, 13, 405, 220, 4101, 13, 405, 350, 352, 198, 1404, 2662, 220, 220, 220, 49689, 220, 399, 220, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8190, 13, 21, 1129, 220, 1679, 13, 49087, 220, 5214, 13, 30743, 220, 352, 13, 405, 7930, 13, 5705, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 198, 1404, 2662, 220, 220, 220, 43550, 220, 7257, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8093, 13, 25600, 220, 2608, 13, 39101, 220, 4570, 13, 28669, 220, 352, 13, 405, 4317, 13, 3553, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 49633, 220, 327, 220, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 5598, 13, 47325, 220, 2608, 13, 36260, 220, 4570, 13, 25272, 220, 352, 13, 405, 4317, 13, 4349, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 33882, 220, 440, 220, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 5598, 13, 40022, 220, 2681, 13, 30272, 220, 4570, 13, 24, 2481, 220, 352, 13, 405, 8854, 13, 5892, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 440, 198, 1404, 2662, 220, 220, 220, 5014, 16, 220, 10078, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8190, 13, 49211, 220, 2608, 13, 24, 3365, 220, 3439, 13, 2713, 23, 220, 352, 13, 405, 4317, 13, 3720, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 48207, 220, 29925, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8454, 13, 15801, 220, 2608, 13, 22, 1314, 220, 4974, 13, 4521, 16, 220, 352, 13, 405, 8257, 13, 2079, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 5014, 18, 220, 25524, 16, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 3126, 13, 19924, 220, 2681, 13, 45326, 220, 3439, 13, 24760, 220, 352, 13, 405, 8541, 13, 2327, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 198, 1404, 2662, 220, 220, 220, 5014, 19, 220, 6458, 17, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 3126, 13, 33459, 220, 1679, 13, 32583, 220, 4974, 13, 24409, 220, 352, 13, 405, 4317, 13, 4349, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 42321, 220, 18671, 16, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 7618, 13, 24, 3901, 220, 2681, 13, 2919, 19, 220, 3439, 13, 30273, 220, 352, 13, 405, 9225, 13, 1314, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 327, 198, 1404, 2662, 220, 220, 220, 48758, 220, 10635, 17, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 7863, 13, 16562, 220, 1679, 13, 24, 4790, 220, 4974, 13, 36042, 220, 352, 13, 405, 4317, 13, 3388, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 198, 1404, 2662, 220, 220, 220, 5014, 22, 220, 367, 220, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8454, 13, 24, 2231, 220, 2608, 13, 29022, 220, 5214, 13, 44578, 220, 657, 13, 405, 7930, 13, 5705, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 39260, 220, 14558, 220, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8093, 13, 19004, 220, 1679, 13, 16799, 220, 3439, 13, 9879, 220, 657, 13, 405, 4317, 13, 3553, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 43927, 220, 25997, 17, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8190, 13, 49541, 220, 2681, 13, 23, 4790, 220, 3439, 13, 28567, 220, 657, 13, 405, 4317, 13, 3720, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 7337, 220, 25997, 18, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 8093, 13, 30206, 220, 2608, 13, 42802, 220, 4974, 13, 2167, 220, 657, 13, 405, 4317, 13, 3720, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 22219, 220, 5572, 17, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 3126, 13, 23, 4349, 220, 1987, 13, 24, 4761, 220, 4747, 13, 23, 1828, 220, 657, 13, 405, 4317, 13, 4349, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 42622, 220, 11179, 16, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 7618, 13, 10163, 220, 2681, 13, 32576, 220, 3439, 13, 17572, 220, 657, 13, 405, 9225, 13, 1314, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 1404, 2662, 220, 220, 220, 38210, 220, 11179, 17, 33700, 317, 220, 1542, 220, 220, 220, 220, 220, 7618, 13, 35133, 220, 1679, 13, 33781, 220, 4747, 13, 42716, 220, 657, 13, 405, 4317, 13, 3388, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 198, 39, 2767, 1404, 44, 220, 642, 3901, 1168, 45, 220, 220, 220, 1168, 45, 317, 8949, 220, 220, 220, 220, 220, 3126, 13, 25870, 220, 2808, 13, 22370, 220, 4570, 13, 22709, 220, 352, 13, 405, 8684, 13, 4531, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1168, 45, 198, 5781, 198, 7061, 6, 198, 198, 361, 7, 834, 3672, 834, 855, 6, 834, 12417, 834, 6, 2599, 198, 220, 21231, 796, 28686, 13, 6978, 13, 12093, 12453, 7, 834, 7753, 834, 737, 33491, 7, 1911, 9078, 2430, 4943, 198, 220, 1057, 62, 41989, 13, 16737, 7, 8818, 28, 5143, 11, 21231, 28, 40290, 11, 15560, 28, 25101, 8, 198 ]
1.708571
1,050
from HashFunctions import HashFunctions # def __getitem__(self, data): # pos = self.hashFunction(data) % self.maxSize if __name__ == "__main__": h = ChainingHashing() h.insert(1, 'a') h.insert(2, 'b') h.insert(3, 'c') h.insert(3, 'd') print(h[3])
[ 6738, 21059, 24629, 2733, 1330, 21059, 24629, 2733, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 825, 11593, 1136, 9186, 834, 7, 944, 11, 1366, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1426, 796, 2116, 13, 17831, 22203, 7, 7890, 8, 4064, 2116, 13, 9806, 10699, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 289, 796, 609, 1397, 39, 2140, 3419, 198, 220, 220, 220, 289, 13, 28463, 7, 16, 11, 705, 64, 11537, 198, 220, 220, 220, 289, 13, 28463, 7, 17, 11, 705, 65, 11537, 198, 220, 220, 220, 289, 13, 28463, 7, 18, 11, 705, 66, 11537, 198, 220, 220, 220, 289, 13, 28463, 7, 18, 11, 705, 67, 11537, 198, 220, 220, 220, 220, 198, 220, 220, 220, 3601, 7, 71, 58, 18, 12962, 628, 220, 220, 220, 220 ]
1.944444
162
import warnings import sys def bits(v, numbits=None): """ Display the bits used to store an object :param v: the value to display the bits of :param numbits: the number of bits to display. Only used for int objects. bytes objects always show the exact bits stored, and int objects default to not showing any leading zeros. """ _check_version() if type(v) is bytes: if numbits: warnings.warn('Ignoring provided argument numbits = {} while formatting bytes object'.format(numbits)) hexstring = _bits_bytes(v) elif type(v) is str: if numbits: warnings.warn('Ignoring provided argument numbits = {} while formatting str object'.format(numbits)) hexstring = _bits_str(v) elif type(v) is int: hexstring = _bits_int(v, numbits) else: raise TypeError('display_bits can only display bytes, str, or int objects') print(hexstring) def _bits_bytes(bytes): """ Internal implementation of bits() for bytes objects :param bytes: the bytes object to display the bits of :return: A string with an ASCII '0' or '1' for each bit. (An ASCII binary string) """ s = '' for b in bytes: s += ' ' + _bits_int(b, numbits=8) return s[1:] # Drop initial space def _bits_str(s): """ Internal implementatino of bits() for it objects :param s: the string to display the bits of :return: A string with an ASCII '0' or '1' for each bit (An ASCII binary string) """ display = '' for c in s: display += '\n' + _bits_int(ord(c),21) return display[1:] # Drop initial \n def _bits_int(v, numbits=None): """ Internal implementation of bits() for int objects :param v: the int value to display in bits :param numbits: The number of bits to display. Defaults to not showing any leading zeros. :return: A string with an ASCII '0' or '1' for each bit. (An ASCII binary string) """ if numbits and 2**numbits-1 < v: raise ValueError('Cannot store '+str(v)+' in '+str(numbits)+' bits') if numbits: s = "{:0{digits}b}".format(v,digits=str(numbits)) else: s = "{:b}".format(v) return _break(s,8) # Break into groups of 8 bits def shorthand(v, numplaces=None): """ Display the bits used to store an object in hexadecimal shorthand :param v: The value to display the bits of in hexadecimal shorthand :param numplaces: The number of hexadecimal places (digits) to display. e.g. 0x1ef8 has four hexadecimal places. Only used for int objects. bytes objects always display 2 hexadecimal digits for each byte. int objects default to showing all hexadecimal places without any leading zeros. """ _check_version() if type(v) is bytes: if numplaces: warnings.warn('Ignoring provided argument numbits = {} while formatting bytes object'.format(numplaces)) hexstring = _shorthand_bytes(v) elif type(v) is str: if numplaces: warnings.warn('Ignoring provided argument numbits = {} while formatting str object'.format(numplaces)) hexstring = _shorthand_str(v) elif type(v) is int: hexstring = _shorthand_int(v, numplaces) else: raise TypeError('display_bits can only display bytes, str, or int objects') print(hexstring) def _shorthand_bytes(bytes): """ Internal implementation of shorthand() for bytes objects :param bytes: The bytes object to in hexadecimal shorthand :return: A string object holding a single ASCII character for each place. e.g., for 0x1ef8, returns '1ef8' (An ASCII hexadecimal string) """ s = '' for b in bytes: s += ' ' + _shorthand_int(b, numplaces=2) return s[1:] # Drop initial space def _shorthand_str(s): """ Internal implementation of shorthand() for str objects :param s: String to show shorthand of :return: ASCII hexadecimal string: A string where each ASCII characters stores a hexadecimal digit. """ display = '' for c in s: display += '\n' + _shorthand_int(ord(c),6) return display[1:] # Drop initial \n def _shorthand_int(v, numplaces=None): """ Internal implementation of the shorthand() for int objects :param v: The int value to display the bits of in hexadecimal shorthand :param numplaces: The number of hexadecimal places (digits) to display. e.g. 0x1ef8 has four hexadecimal places. int objects default to showing all hexadecimal places without any leading zeros. :return: A string object holding a single ASCII character for each place. e.g., for 0x1ef8, returns '1ef8' (An ASCII hexadecimal string) """ if numplaces and 2**(numplaces*4)-1 < v: raise ValueError('Cannot store ' + str(v) +' in ' + str(numplaces) + ' hex digits') if numplaces: s = "{:0{digits}x}".format(v,digits=str(numplaces)) else: s = "{:x}".format(v) return _break(s,2) # Break into bytes (2 hex digits each) def _break(bitstring,groupsize): """ Break a binary string into groups of groupsize digits. For example, _break('1100001111',4) returns '11 0000 1111' :param bitstring: The ASCII binary string to break into groups :param groupsize: The number of bits to group together in each group :return: A string with spaces inserted between each group. """ broken = '' for i in range(len(bitstring)-groupsize,-1,-groupsize): broken = bitstring[i:i+groupsize] + ' ' + broken if len(bitstring)%groupsize > 0: # Avoid adding space before empty left-most group broken = bitstring[0:len(bitstring)%groupsize] + ' ' + broken return broken[:-1] # Drop right-most space def _check_version(): """ Check that the code is being run with the right version of Python :raises: RuntimeError if Python 2 is used. """ if sys.version_info < (3,): raise RuntimeError('This course requires Python 3. Please uninstall Python 2 and install Python 3 in its place.' '(If you need Python 2 for a different class or project, please talk to me.)') def _tests(): """ Internal tests. These are run if the module is executed as a stand-alone script. """ print("shorthand(b'\\x0a\\x0d')") shorthand(b'\x0a\x0d') print("bits(b'A\\r\\n')") bits(b'A\r\n') print("bits(b'\\x0a\\x0d')") bits(b'\x0a\x0d') print("shorthand(15)") shorthand(15) print("shorthand(1000)") shorthand(1000) print("bits(15)") bits(15) print("bits(1000)") bits(1000) print("shorthand('A\\r\\n')") shorthand('A\r\n') print("shorthand('\\x0a\\x0d')") shorthand('\x0a\x0d') print("bits('A\\r\\n')") bits('A\r\n') print("bits('\\x0a\\x0d')") bits('\x0a\x0d') if __name__ == "__main__": _tests() pass # Breakpoint for debugging
[ 11748, 14601, 198, 11748, 25064, 628, 198, 4299, 10340, 7, 85, 11, 997, 9895, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16531, 262, 10340, 973, 284, 3650, 281, 2134, 198, 220, 220, 220, 1058, 17143, 410, 25, 262, 1988, 284, 3359, 262, 10340, 286, 198, 220, 220, 220, 1058, 17143, 997, 9895, 25, 262, 1271, 286, 10340, 284, 3359, 13, 5514, 973, 329, 493, 5563, 13, 9881, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1464, 905, 262, 2748, 10340, 8574, 11, 290, 493, 5563, 4277, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 4478, 597, 3756, 1976, 27498, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 4808, 9122, 62, 9641, 3419, 198, 220, 220, 220, 611, 2099, 7, 85, 8, 318, 9881, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 9895, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 10786, 32916, 3255, 2810, 4578, 997, 9895, 796, 23884, 981, 33313, 9881, 2134, 4458, 18982, 7, 77, 2178, 896, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 9895, 62, 33661, 7, 85, 8, 198, 220, 220, 220, 1288, 361, 2099, 7, 85, 8, 318, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 9895, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 10786, 32916, 3255, 2810, 4578, 997, 9895, 796, 23884, 981, 33313, 965, 2134, 4458, 18982, 7, 77, 2178, 896, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 9895, 62, 2536, 7, 85, 8, 198, 220, 220, 220, 1288, 361, 2099, 7, 85, 8, 318, 493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 9895, 62, 600, 7, 85, 11, 997, 9895, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 10786, 13812, 62, 9895, 460, 691, 3359, 9881, 11, 965, 11, 393, 493, 5563, 11537, 198, 220, 220, 220, 3601, 7, 33095, 8841, 8, 628, 198, 4299, 4808, 9895, 62, 33661, 7, 33661, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 7822, 286, 10340, 3419, 329, 9881, 5563, 198, 220, 220, 220, 1058, 17143, 9881, 25, 262, 9881, 2134, 284, 3359, 262, 10340, 286, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 351, 281, 37101, 705, 15, 6, 393, 705, 16, 6, 329, 1123, 1643, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2025, 37101, 13934, 4731, 8, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 264, 796, 10148, 198, 220, 220, 220, 329, 275, 287, 9881, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 705, 705, 1343, 4808, 9895, 62, 600, 7, 65, 11, 997, 9895, 28, 23, 8, 198, 220, 220, 220, 1441, 264, 58, 16, 47715, 1303, 14258, 4238, 2272, 628, 198, 4299, 4808, 9895, 62, 2536, 7, 82, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 3494, 265, 2879, 286, 10340, 3419, 329, 340, 5563, 198, 220, 220, 220, 1058, 17143, 264, 25, 262, 4731, 284, 3359, 262, 10340, 286, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 351, 281, 37101, 705, 15, 6, 393, 705, 16, 6, 329, 1123, 1643, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2025, 37101, 13934, 4731, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3359, 796, 10148, 198, 220, 220, 220, 329, 269, 287, 264, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3359, 15853, 705, 59, 77, 6, 1343, 4808, 9895, 62, 600, 7, 585, 7, 66, 828, 2481, 8, 198, 220, 220, 220, 1441, 3359, 58, 16, 47715, 1303, 14258, 4238, 3467, 77, 628, 198, 4299, 4808, 9895, 62, 600, 7, 85, 11, 997, 9895, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 7822, 286, 10340, 3419, 329, 493, 5563, 198, 220, 220, 220, 1058, 17143, 410, 25, 262, 493, 1988, 284, 3359, 287, 10340, 198, 220, 220, 220, 1058, 17143, 997, 9895, 25, 383, 1271, 286, 10340, 284, 3359, 13, 2896, 13185, 284, 407, 4478, 597, 3756, 1976, 27498, 13, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 351, 281, 37101, 705, 15, 6, 393, 705, 16, 6, 329, 1123, 1643, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2025, 37101, 13934, 4731, 8, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 997, 9895, 290, 362, 1174, 77, 2178, 896, 12, 16, 1279, 410, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 34, 34574, 3650, 705, 10, 2536, 7, 85, 47762, 6, 287, 705, 10, 2536, 7, 77, 2178, 896, 47762, 6, 10340, 11537, 628, 220, 220, 220, 611, 997, 9895, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 45144, 25, 15, 90, 12894, 896, 92, 65, 92, 1911, 18982, 7, 85, 11, 12894, 896, 28, 2536, 7, 77, 2178, 896, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 45144, 25, 65, 92, 1911, 18982, 7, 85, 8, 628, 220, 220, 220, 1441, 4808, 9032, 7, 82, 11, 23, 8, 1303, 12243, 656, 2628, 286, 807, 10340, 628, 198, 4299, 45883, 7, 85, 11, 997, 23625, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16531, 262, 10340, 973, 284, 3650, 281, 2134, 287, 17910, 671, 66, 4402, 45883, 198, 220, 220, 220, 1058, 17143, 410, 25, 383, 1988, 284, 3359, 262, 10340, 286, 287, 17910, 671, 66, 4402, 45883, 198, 220, 220, 220, 1058, 17143, 997, 23625, 25, 383, 1271, 286, 17910, 671, 66, 4402, 4113, 357, 12894, 896, 8, 284, 3359, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 13, 70, 13, 657, 87, 16, 891, 23, 468, 1440, 17910, 671, 66, 4402, 4113, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 973, 329, 493, 5563, 13, 9881, 5563, 1464, 3359, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 362, 17910, 671, 66, 4402, 19561, 329, 1123, 18022, 13, 220, 493, 5563, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 4478, 477, 17910, 671, 66, 4402, 4113, 1231, 597, 3756, 1976, 27498, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 4808, 9122, 62, 9641, 3419, 198, 220, 220, 220, 611, 2099, 7, 85, 8, 318, 9881, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 23625, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 10786, 32916, 3255, 2810, 4578, 997, 9895, 796, 23884, 981, 33313, 9881, 2134, 4458, 18982, 7, 22510, 23625, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 1477, 1506, 392, 62, 33661, 7, 85, 8, 198, 220, 220, 220, 1288, 361, 2099, 7, 85, 8, 318, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 23625, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 10786, 32916, 3255, 2810, 4578, 997, 9895, 796, 23884, 981, 33313, 965, 2134, 4458, 18982, 7, 22510, 23625, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 1477, 1506, 392, 62, 2536, 7, 85, 8, 198, 220, 220, 220, 1288, 361, 2099, 7, 85, 8, 318, 493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17910, 8841, 796, 4808, 1477, 1506, 392, 62, 600, 7, 85, 11, 997, 23625, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 10786, 13812, 62, 9895, 460, 691, 3359, 9881, 11, 965, 11, 393, 493, 5563, 11537, 198, 220, 220, 220, 3601, 7, 33095, 8841, 8, 628, 198, 4299, 4808, 1477, 1506, 392, 62, 33661, 7, 33661, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 7822, 286, 45883, 3419, 329, 9881, 5563, 198, 220, 220, 220, 1058, 17143, 9881, 25, 383, 9881, 2134, 284, 287, 17910, 671, 66, 4402, 45883, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 2134, 4769, 257, 2060, 37101, 2095, 329, 1123, 1295, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 13, 70, 1539, 329, 657, 87, 16, 891, 23, 11, 5860, 705, 16, 891, 23, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2025, 37101, 17910, 671, 66, 4402, 4731, 8, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 264, 796, 10148, 198, 220, 220, 220, 329, 275, 287, 9881, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 15853, 705, 705, 1343, 4808, 1477, 1506, 392, 62, 600, 7, 65, 11, 997, 23625, 28, 17, 8, 198, 220, 220, 220, 1441, 264, 58, 16, 47715, 1303, 14258, 4238, 2272, 628, 198, 4299, 4808, 1477, 1506, 392, 62, 2536, 7, 82, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 7822, 286, 45883, 3419, 329, 965, 5563, 198, 220, 220, 220, 1058, 17143, 264, 25, 10903, 284, 905, 45883, 286, 198, 220, 220, 220, 1058, 7783, 25, 37101, 17910, 671, 66, 4402, 4731, 25, 317, 4731, 810, 1123, 37101, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3435, 7000, 257, 17910, 671, 66, 4402, 16839, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3359, 796, 10148, 198, 220, 220, 220, 329, 269, 287, 264, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3359, 15853, 705, 59, 77, 6, 1343, 4808, 1477, 1506, 392, 62, 600, 7, 585, 7, 66, 828, 21, 8, 198, 220, 220, 220, 1441, 3359, 58, 16, 47715, 1303, 14258, 4238, 3467, 77, 628, 198, 4299, 4808, 1477, 1506, 392, 62, 600, 7, 85, 11, 997, 23625, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 7822, 286, 262, 45883, 3419, 329, 493, 5563, 198, 220, 220, 220, 1058, 17143, 410, 25, 383, 493, 1988, 284, 3359, 262, 10340, 286, 287, 17910, 671, 66, 4402, 45883, 198, 220, 220, 220, 1058, 17143, 997, 23625, 25, 383, 1271, 286, 17910, 671, 66, 4402, 4113, 357, 12894, 896, 8, 284, 3359, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 13, 70, 13, 657, 87, 16, 891, 23, 468, 1440, 17910, 671, 66, 4402, 4113, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 5563, 4277, 284, 4478, 477, 17910, 671, 66, 4402, 4113, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1231, 597, 3756, 1976, 27498, 13, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 2134, 4769, 257, 2060, 37101, 2095, 329, 1123, 1295, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 13, 70, 1539, 329, 657, 87, 16, 891, 23, 11, 5860, 705, 16, 891, 23, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2025, 37101, 17910, 671, 66, 4402, 4731, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 997, 23625, 290, 362, 1174, 7, 22510, 23625, 9, 19, 13219, 16, 1279, 410, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 34, 34574, 3650, 705, 1343, 965, 7, 85, 8, 1343, 6, 287, 705, 1343, 965, 7, 22510, 23625, 8, 1343, 705, 17910, 19561, 11537, 628, 220, 220, 220, 611, 997, 23625, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 45144, 25, 15, 90, 12894, 896, 92, 87, 92, 1911, 18982, 7, 85, 11, 12894, 896, 28, 2536, 7, 22510, 23625, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 45144, 25, 87, 92, 1911, 18982, 7, 85, 8, 628, 220, 220, 220, 1441, 4808, 9032, 7, 82, 11, 17, 8, 1303, 12243, 656, 9881, 357, 17, 17910, 19561, 1123, 8, 628, 198, 4299, 4808, 9032, 7, 2545, 8841, 11, 24432, 1096, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 12243, 257, 13934, 4731, 656, 2628, 286, 2628, 1096, 19561, 13, 198, 220, 220, 220, 1114, 1672, 11, 4808, 9032, 10786, 1157, 2388, 26259, 3256, 19, 8, 5860, 705, 1157, 17643, 13374, 16, 6, 198, 220, 220, 220, 1058, 17143, 1643, 8841, 25, 383, 37101, 13934, 4731, 284, 2270, 656, 2628, 198, 220, 220, 220, 1058, 17143, 2628, 1096, 25, 383, 1271, 286, 10340, 284, 1448, 1978, 287, 1123, 1448, 198, 220, 220, 220, 1058, 7783, 25, 317, 4731, 351, 9029, 18846, 1022, 1123, 1448, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5445, 796, 10148, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 2545, 8841, 13219, 24432, 1096, 12095, 16, 12095, 24432, 1096, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5445, 796, 1643, 8841, 58, 72, 25, 72, 10, 24432, 1096, 60, 1343, 705, 705, 1343, 5445, 198, 220, 220, 220, 611, 18896, 7, 2545, 8841, 8, 4, 24432, 1096, 1875, 657, 25, 1303, 24390, 4375, 2272, 878, 6565, 1364, 12, 1712, 1448, 198, 220, 220, 220, 220, 220, 220, 220, 5445, 796, 1643, 8841, 58, 15, 25, 11925, 7, 2545, 8841, 8, 4, 24432, 1096, 60, 1343, 705, 705, 1343, 5445, 198, 220, 220, 220, 1441, 5445, 58, 21912, 16, 60, 1303, 14258, 826, 12, 1712, 2272, 628, 198, 4299, 4808, 9122, 62, 9641, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6822, 326, 262, 2438, 318, 852, 1057, 351, 262, 826, 2196, 286, 11361, 198, 220, 220, 220, 1058, 430, 2696, 25, 43160, 12331, 611, 11361, 362, 318, 973, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 1279, 357, 18, 11, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 10786, 1212, 1781, 4433, 11361, 513, 13, 4222, 43194, 11361, 362, 290, 2721, 11361, 513, 287, 663, 1295, 2637, 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, 29513, 1532, 345, 761, 11361, 362, 329, 257, 1180, 1398, 393, 1628, 11, 3387, 1561, 284, 502, 2014, 11537, 628, 198, 4299, 4808, 41989, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 18628, 5254, 13, 2312, 389, 1057, 611, 262, 8265, 318, 10945, 355, 257, 1302, 12, 17749, 4226, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 7203, 1477, 1506, 392, 7, 65, 6, 6852, 87, 15, 64, 6852, 87, 15, 67, 11537, 4943, 198, 220, 220, 220, 45883, 7, 65, 6, 59, 87, 15, 64, 59, 87, 15, 67, 11537, 198, 220, 220, 220, 3601, 7203, 9895, 7, 65, 6, 32, 6852, 81, 6852, 77, 11537, 4943, 198, 220, 220, 220, 10340, 7, 65, 6, 32, 59, 81, 59, 77, 11537, 198, 220, 220, 220, 3601, 7203, 9895, 7, 65, 6, 6852, 87, 15, 64, 6852, 87, 15, 67, 11537, 4943, 198, 220, 220, 220, 10340, 7, 65, 6, 59, 87, 15, 64, 59, 87, 15, 67, 11537, 198, 220, 220, 220, 3601, 7203, 1477, 1506, 392, 7, 1314, 8, 4943, 198, 220, 220, 220, 45883, 7, 1314, 8, 198, 220, 220, 220, 3601, 7203, 1477, 1506, 392, 7, 12825, 8, 4943, 198, 220, 220, 220, 45883, 7, 12825, 8, 198, 220, 220, 220, 3601, 7203, 9895, 7, 1314, 8, 4943, 198, 220, 220, 220, 10340, 7, 1314, 8, 198, 220, 220, 220, 3601, 7203, 9895, 7, 12825, 8, 4943, 198, 220, 220, 220, 10340, 7, 12825, 8, 198, 220, 220, 220, 3601, 7203, 1477, 1506, 392, 10786, 32, 6852, 81, 6852, 77, 11537, 4943, 198, 220, 220, 220, 45883, 10786, 32, 59, 81, 59, 77, 11537, 198, 220, 220, 220, 3601, 7203, 1477, 1506, 392, 10786, 6852, 87, 15, 64, 6852, 87, 15, 67, 11537, 4943, 198, 220, 220, 220, 45883, 10786, 59, 87, 15, 64, 59, 87, 15, 67, 11537, 198, 220, 220, 220, 3601, 7203, 9895, 10786, 32, 6852, 81, 6852, 77, 11537, 4943, 198, 220, 220, 220, 10340, 10786, 32, 59, 81, 59, 77, 11537, 198, 220, 220, 220, 3601, 7203, 9895, 10786, 6852, 87, 15, 64, 6852, 87, 15, 67, 11537, 4943, 198, 220, 220, 220, 10340, 10786, 59, 87, 15, 64, 59, 87, 15, 67, 11537, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 4808, 41989, 3419, 198, 198, 6603, 1303, 12243, 4122, 329, 28769 ]
2.500522
2,871
import csv import matplotlib.pyplot as plt with open('idsfinal.csv',mode='r') as csv_file: csv_reader=csv.DictReader(csv_file) mydata=[] for row in csv_reader: mydata.append(float(row["pot"])) plt.boxplot(mydata) plt.ylabel("Potassium") plt.title("Potassium distribution") plt.show()
[ 11748, 269, 21370, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 628, 198, 4480, 1280, 10786, 2340, 20311, 13, 40664, 3256, 14171, 11639, 81, 11537, 355, 269, 21370, 62, 7753, 25, 198, 269, 21370, 62, 46862, 28, 40664, 13, 35, 713, 33634, 7, 40664, 62, 7753, 8, 198, 616, 7890, 28, 21737, 198, 329, 5752, 287, 269, 21370, 62, 46862, 25, 198, 220, 616, 7890, 13, 33295, 7, 22468, 7, 808, 14692, 13059, 8973, 4008, 198, 220, 220, 198, 489, 83, 13, 3524, 29487, 7, 1820, 7890, 8, 220, 198, 489, 83, 13, 2645, 9608, 7203, 25396, 26663, 4943, 198, 489, 83, 13, 7839, 7203, 25396, 26663, 6082, 4943, 198, 489, 83, 13, 12860, 3419, 628 ]
2.487395
119
#!/usr/bin/env python """ Detect events or relations from text. """ from train import workdir, getDetector, getSteps import sys, os import tempfile import codecs import Utils.Settings as Settings import Utils.Stream as Stream import Utils.Download from Utils.Connection.Connection import getConnection import Utils.Download from Detectors.Preprocessor import Preprocessor def classify(input, model, output, workDir=None, step=None, omitSteps=None, goldInput=None, detector=None, debug=False, clear=False, preprocessorTag="-preprocessed.xml.gz", preprocessorParams=None, bioNLPSTParams=None): """ Detect events or relations from text. @param input: The input file in either interaction XML or BioNLP ST format. Can also be a PMID or TEES default corpus name. @param model: A path to a model file or the name of a TEES default model. @param output: The output file stem. Output files will be of the form output-* @param workDir: If intermediate files need to be saved, they will go here. @param step: A step=substep pair, where the steps are PREPROCESS and CLASSIFY @param omitSteps: step=substep parameters, where multiple substeps can be defined. @param goldInput: a version of the corpus file with gold annotation. Enables measuring of performance @param detector: a Detector object, or a string defining one to be imported. If None, will be read from model. @param debug: In debug mode, more output is shown, and some temporary intermediate files are saved @param clear: Remove existing workDir @param preprocessorTag: preprocessor output file will be output + preprocessorTag @param preprocessorParams: Optional parameters controlling preprocessing. If None, will be read from model. @param bioNLPSTParams: Optional parameters controlling BioNLP ST format output. If None, will be read from model. """ input = os.path.abspath(input) if goldInput != None: goldInput = os.path.abspath(goldInput) if model != None: model = os.path.abspath(model) # Initialize working directory if workDir != None: # use a permanent work directory workdir(workDir, clear) Stream.openLog(output + "-log.txt") # log in the output directory # Get input files input, preprocess = getInput(input) model = getModel(model) # Define processing steps selector, detectorSteps, omitDetectorSteps = getSteps(step, omitSteps, ["PREPROCESS", "CLASSIFY"]) if not preprocess: selector.markOmitSteps("PREPROCESS") classifyInput = input if selector.check("PREPROCESS"): preprocessor = Preprocessor() if debug: preprocessor.setArgForAllSteps("debug", True) preprocessorOutput = output + preprocessorTag #preprocessor.debug = debug #preprocessor.source = input # This has to be defined already here, needs to be fixed later #preprocessor.requireEntitiesForParsing = True # parse only sentences which contain named entities if os.path.exists(preprocessorOutput) and not clear: #os.path.exists(preprocessor.getOutputPath("FIND-HEADS")): #print >> sys.stderr, "Preprocessor output", preprocessor.getOutputPath("FIND-HEADS"), "exists, skipping preprocessing." print >> sys.stderr, "Preprocessor output", preprocessorOutput, "exists, skipping preprocessing." classifyInput = preprocessorOutput # preprocessor.getOutputPath("FIND-HEADS") else: #print >> sys.stderr, "Preprocessor output", preprocessor.getOutputPath("FIND-HEADS"), "does not exist" print >> sys.stderr, "Preprocessor output", preprocessorOutput, "does not exist" print >> sys.stderr, "------------ Preprocessing ------------" # Remove some of the unnecessary intermediate files #preprocessor.setIntermediateFiles({"Convert":None, "SPLIT-SENTENCES":None, "PARSE":None, "CONVERT-PARSE":None, "SPLIT-NAMES":None}) # Process input into interaction XML classifyInput = preprocessor.process(input, preprocessorOutput, preprocessorParams, model, [], fromStep=detectorSteps["PREPROCESS"], toStep=None, omitSteps=omitDetectorSteps["PREPROCESS"]) if selector.check("CLASSIFY"): detector = getDetector(detector, model)[0]() # initialize detector object detector.debug = debug detector.bioNLPSTParams = detector.getBioNLPSharedTaskParams(bioNLPSTParams, model) detector.classify(classifyInput, model, output, goldData=goldInput, fromStep=detectorSteps["CLASSIFY"], omitSteps=omitDetectorSteps["CLASSIFY"], workDir=workDir) if __name__=="__main__": # Import Psyco if available try: import psyco psyco.full() print >> sys.stderr, "Found Psyco, using" except ImportError: print >> sys.stderr, "Psyco not installed" from optparse import OptionParser optparser = OptionParser(description="Predict events/relations") optparser.add_option("-i", "--input", default=None, dest="input", help="input") optparser.add_option("-o", "--output", default=None, dest="output", help="output file stem") optparser.add_option("-w", "--workdir", default=None, dest="workdir", help="output directory") optparser.add_option("-m", "--model", default=None, dest="model", help="TEES model") optparser.add_option("-d", "--detector", default=None, dest="detector", help="") optparser.add_option("-c", "--connection", default=None, dest="connection", help="") optparser.add_option("-g", "--gold", default=None, dest="gold", help="annotated version of the input file (optional)") optparser.add_option("-p", "--preprocessorParams", default=None, dest="preprocessorParams", help="") optparser.add_option("-b", "--bioNLPSTParams", default=None, dest="bioNLPSTParams", help="") # Debugging and process control optparser.add_option("--step", default=None, dest="step", help="") optparser.add_option("--omitSteps", default=None, dest="omitSteps", help="") optparser.add_option("--clearAll", default=False, action="store_true", dest="clearAll", help="Delete all files") optparser.add_option("--debug", default=False, action="store_true", dest="debug", help="More verbose output") (options, args) = optparser.parse_args() assert options.output != None classify(options.input, options.model, options.output, options.workdir, options.step, options.omitSteps, options.gold, options.detector, options.debug, options.clearAll, preprocessorParams=options.preprocessorParams, bioNLPSTParams=options.bioNLPSTParams)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 37811, 198, 47504, 2995, 393, 2316, 422, 2420, 13, 198, 37811, 198, 6738, 4512, 1330, 670, 15908, 11, 651, 11242, 9250, 11, 651, 8600, 82, 198, 11748, 25064, 11, 28686, 198, 11748, 20218, 7753, 198, 11748, 40481, 82, 198, 11748, 7273, 4487, 13, 26232, 355, 16163, 198, 11748, 7273, 4487, 13, 12124, 355, 13860, 198, 11748, 7273, 4487, 13, 10002, 198, 6738, 7273, 4487, 13, 32048, 13, 32048, 1330, 651, 32048, 198, 11748, 7273, 4487, 13, 10002, 198, 6738, 35874, 669, 13, 6719, 41341, 1330, 3771, 41341, 198, 198, 4299, 36509, 7, 15414, 11, 2746, 11, 5072, 11, 670, 35277, 28, 14202, 11, 2239, 28, 14202, 11, 42848, 8600, 82, 28, 14202, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3869, 20560, 28, 14202, 11, 31029, 28, 14202, 11, 14257, 28, 25101, 11, 1598, 28, 25101, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 24835, 2625, 12, 3866, 14681, 276, 13, 19875, 13, 34586, 1600, 662, 41341, 10044, 4105, 28, 14202, 11, 13401, 45, 19930, 2257, 10044, 4105, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 35874, 2995, 393, 2316, 422, 2420, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 5128, 25, 383, 5128, 2393, 287, 2035, 10375, 23735, 393, 16024, 45, 19930, 3563, 5794, 13, 1680, 635, 307, 257, 3122, 2389, 393, 13368, 1546, 4277, 35789, 1438, 13, 198, 220, 220, 220, 2488, 17143, 2746, 25, 317, 3108, 284, 257, 2746, 2393, 393, 262, 1438, 286, 257, 13368, 1546, 4277, 2746, 13, 198, 220, 220, 220, 2488, 17143, 5072, 25, 383, 5072, 2393, 10717, 13, 25235, 3696, 481, 307, 286, 262, 1296, 5072, 12, 9, 198, 220, 220, 220, 2488, 17143, 670, 35277, 25, 1002, 19898, 3696, 761, 284, 307, 7448, 11, 484, 481, 467, 994, 13, 198, 220, 220, 220, 2488, 17143, 2239, 25, 317, 2239, 28, 7266, 9662, 5166, 11, 810, 262, 4831, 389, 22814, 4805, 4503, 7597, 290, 42715, 5064, 56, 198, 220, 220, 220, 2488, 17143, 42848, 8600, 82, 25, 2239, 28, 7266, 9662, 10007, 11, 810, 3294, 3293, 25386, 460, 307, 5447, 13, 198, 220, 220, 220, 2488, 17143, 3869, 20560, 25, 257, 2196, 286, 262, 35789, 2393, 351, 3869, 23025, 13, 2039, 2977, 15964, 286, 2854, 198, 220, 220, 220, 2488, 17143, 31029, 25, 257, 4614, 9250, 2134, 11, 393, 257, 4731, 16215, 530, 284, 307, 17392, 13, 1002, 6045, 11, 481, 307, 1100, 422, 2746, 13, 198, 220, 220, 220, 2488, 17143, 14257, 25, 554, 14257, 4235, 11, 517, 5072, 318, 3402, 11, 290, 617, 8584, 19898, 3696, 389, 7448, 198, 220, 220, 220, 2488, 17143, 1598, 25, 17220, 4683, 670, 35277, 198, 220, 220, 220, 2488, 17143, 662, 41341, 24835, 25, 662, 41341, 5072, 2393, 481, 307, 5072, 1343, 662, 41341, 24835, 198, 220, 220, 220, 2488, 17143, 662, 41341, 10044, 4105, 25, 32233, 10007, 12755, 662, 36948, 13, 1002, 6045, 11, 481, 307, 1100, 422, 2746, 13, 198, 220, 220, 220, 2488, 17143, 13401, 45, 19930, 2257, 10044, 4105, 25, 32233, 10007, 12755, 16024, 45, 19930, 3563, 5794, 5072, 13, 1002, 6045, 11, 481, 307, 1100, 422, 2746, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 5128, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 15414, 8, 198, 220, 220, 220, 611, 3869, 20560, 14512, 6045, 25, 3869, 20560, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 24267, 20560, 8, 198, 220, 220, 220, 611, 2746, 14512, 6045, 25, 2746, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 19849, 8, 198, 220, 220, 220, 1303, 20768, 1096, 1762, 8619, 198, 220, 220, 220, 611, 670, 35277, 14512, 6045, 25, 1303, 779, 257, 7748, 670, 8619, 198, 220, 220, 220, 220, 220, 220, 220, 670, 15908, 7, 1818, 35277, 11, 1598, 8, 198, 220, 220, 220, 13860, 13, 9654, 11187, 7, 22915, 1343, 27444, 6404, 13, 14116, 4943, 1303, 2604, 287, 262, 5072, 8619, 198, 220, 220, 220, 1303, 3497, 5128, 3696, 198, 220, 220, 220, 5128, 11, 662, 14681, 796, 651, 20560, 7, 15414, 8, 198, 220, 220, 220, 2746, 796, 651, 17633, 7, 19849, 8, 198, 220, 220, 220, 1303, 2896, 500, 7587, 4831, 198, 220, 220, 220, 31870, 11, 31029, 8600, 82, 11, 42848, 11242, 9250, 8600, 82, 796, 651, 8600, 82, 7, 9662, 11, 42848, 8600, 82, 11, 14631, 46437, 4805, 4503, 7597, 1600, 366, 31631, 5064, 56, 8973, 8, 198, 220, 220, 220, 611, 407, 662, 14681, 25, 198, 220, 220, 220, 220, 220, 220, 220, 31870, 13, 4102, 46, 2781, 8600, 82, 7203, 46437, 4805, 4503, 7597, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 36509, 20560, 796, 5128, 198, 220, 220, 220, 611, 31870, 13, 9122, 7203, 46437, 4805, 4503, 7597, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 796, 3771, 41341, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 14257, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 13, 2617, 28100, 1890, 3237, 8600, 82, 7203, 24442, 1600, 6407, 8, 198, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 26410, 796, 5072, 1343, 662, 41341, 24835, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3866, 41341, 13, 24442, 796, 14257, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3866, 41341, 13, 10459, 796, 5128, 1303, 770, 468, 284, 307, 5447, 1541, 994, 11, 2476, 284, 307, 5969, 1568, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3866, 41341, 13, 46115, 14539, 871, 1890, 47, 945, 278, 796, 6407, 1303, 21136, 691, 13439, 543, 3994, 3706, 12066, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 7, 3866, 41341, 26410, 8, 290, 407, 1598, 25, 1303, 418, 13, 6978, 13, 1069, 1023, 7, 3866, 41341, 13, 1136, 26410, 15235, 7203, 37, 12115, 12, 37682, 50, 4943, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 9609, 25064, 13, 301, 1082, 81, 11, 366, 6719, 41341, 5072, 1600, 662, 41341, 13, 1136, 26410, 15235, 7203, 37, 12115, 12, 37682, 50, 12340, 366, 1069, 1023, 11, 31017, 662, 36948, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 9609, 25064, 13, 301, 1082, 81, 11, 366, 6719, 41341, 5072, 1600, 662, 41341, 26410, 11, 366, 1069, 1023, 11, 31017, 662, 36948, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36509, 20560, 796, 662, 41341, 26410, 1303, 662, 41341, 13, 1136, 26410, 15235, 7203, 37, 12115, 12, 37682, 50, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 9609, 25064, 13, 301, 1082, 81, 11, 366, 6719, 41341, 5072, 1600, 662, 41341, 13, 1136, 26410, 15235, 7203, 37, 12115, 12, 37682, 50, 12340, 366, 22437, 407, 2152, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 9609, 25064, 13, 301, 1082, 81, 11, 366, 6719, 41341, 5072, 1600, 662, 41341, 26410, 11, 366, 22437, 407, 2152, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 9609, 25064, 13, 301, 1082, 81, 11, 366, 10541, 3771, 36948, 220, 10541, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17220, 617, 286, 262, 13114, 19898, 3696, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3866, 41341, 13, 2617, 9492, 13857, 25876, 7, 4895, 3103, 1851, 1298, 14202, 11, 366, 4303, 43, 2043, 12, 50, 3525, 24181, 1546, 1298, 14202, 11, 366, 27082, 5188, 1298, 14202, 11, 366, 10943, 15858, 12, 27082, 5188, 1298, 14202, 11, 366, 4303, 43, 2043, 12, 45, 29559, 1298, 14202, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10854, 5128, 656, 10375, 23735, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36509, 20560, 796, 662, 41341, 13, 14681, 7, 15414, 11, 662, 41341, 26410, 11, 662, 41341, 10044, 4105, 11, 2746, 11, 685, 4357, 422, 8600, 28, 15255, 9250, 8600, 82, 14692, 46437, 4805, 4503, 7597, 33116, 284, 8600, 28, 14202, 11, 42848, 8600, 82, 28, 296, 270, 11242, 9250, 8600, 82, 14692, 46437, 4805, 4503, 7597, 8973, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 31870, 13, 9122, 7203, 31631, 5064, 56, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 796, 651, 11242, 9250, 7, 15255, 9250, 11, 2746, 38381, 15, 60, 3419, 1303, 41216, 31029, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 13, 24442, 796, 14257, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 13, 65, 952, 45, 19930, 2257, 10044, 4105, 796, 31029, 13, 1136, 42787, 45, 19930, 2484, 1144, 25714, 10044, 4105, 7, 65, 952, 45, 19930, 2257, 10044, 4105, 11, 2746, 8, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 13, 4871, 1958, 7, 4871, 1958, 20560, 11, 2746, 11, 5072, 11, 3869, 6601, 28, 24267, 20560, 11, 422, 8600, 28, 15255, 9250, 8600, 82, 14692, 31631, 5064, 56, 33116, 42848, 8600, 82, 28, 296, 270, 11242, 9250, 8600, 82, 14692, 31631, 5064, 56, 33116, 670, 35277, 28, 1818, 35277, 8, 198, 198, 361, 11593, 3672, 834, 855, 1, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 17267, 18773, 1073, 611, 1695, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 17331, 1073, 198, 220, 220, 220, 220, 220, 220, 220, 17331, 1073, 13, 12853, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 9609, 25064, 13, 301, 1082, 81, 11, 366, 21077, 18773, 1073, 11, 1262, 1, 198, 220, 220, 220, 2845, 17267, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 9609, 25064, 13, 301, 1082, 81, 11, 366, 25918, 1073, 407, 6589, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 422, 2172, 29572, 1330, 16018, 46677, 198, 220, 220, 220, 2172, 48610, 796, 16018, 46677, 7, 11213, 2625, 47, 17407, 2995, 14, 39468, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 72, 1600, 366, 438, 15414, 1600, 4277, 28, 14202, 11, 2244, 2625, 15414, 1600, 1037, 2625, 15414, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 78, 1600, 366, 438, 22915, 1600, 4277, 28, 14202, 11, 2244, 2625, 22915, 1600, 1037, 2625, 22915, 2393, 10717, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 86, 1600, 366, 438, 1818, 15908, 1600, 4277, 28, 14202, 11, 2244, 2625, 1818, 15908, 1600, 1037, 2625, 22915, 8619, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 76, 1600, 366, 438, 19849, 1600, 4277, 28, 14202, 11, 2244, 2625, 19849, 1600, 1037, 2625, 9328, 1546, 2746, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 67, 1600, 366, 438, 15255, 9250, 1600, 4277, 28, 14202, 11, 2244, 2625, 15255, 9250, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 66, 1600, 366, 438, 38659, 1600, 4277, 28, 14202, 11, 2244, 2625, 38659, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 70, 1600, 366, 438, 24267, 1600, 4277, 28, 14202, 11, 2244, 2625, 24267, 1600, 1037, 2625, 34574, 515, 2196, 286, 262, 5128, 2393, 357, 25968, 8, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 79, 1600, 366, 438, 3866, 41341, 10044, 4105, 1600, 4277, 28, 14202, 11, 2244, 2625, 3866, 41341, 10044, 4105, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 12, 65, 1600, 366, 438, 65, 952, 45, 19930, 2257, 10044, 4105, 1600, 4277, 28, 14202, 11, 2244, 2625, 65, 952, 45, 19930, 2257, 10044, 4105, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 1303, 31687, 2667, 290, 1429, 1630, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 438, 9662, 1600, 4277, 28, 14202, 11, 2244, 2625, 9662, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 438, 296, 270, 8600, 82, 1600, 4277, 28, 14202, 11, 2244, 2625, 296, 270, 8600, 82, 1600, 1037, 2625, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 438, 20063, 3237, 1600, 4277, 28, 25101, 11, 2223, 2625, 8095, 62, 7942, 1600, 2244, 2625, 20063, 3237, 1600, 1037, 2625, 38727, 477, 3696, 4943, 198, 220, 220, 220, 2172, 48610, 13, 2860, 62, 18076, 7203, 438, 24442, 1600, 4277, 28, 25101, 11, 2223, 2625, 8095, 62, 7942, 1600, 2244, 2625, 24442, 1600, 1037, 2625, 5167, 15942, 577, 5072, 4943, 198, 220, 220, 220, 357, 25811, 11, 26498, 8, 796, 2172, 48610, 13, 29572, 62, 22046, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 6818, 3689, 13, 22915, 14512, 6045, 198, 220, 220, 220, 36509, 7, 25811, 13, 15414, 11, 3689, 13, 19849, 11, 3689, 13, 22915, 11, 3689, 13, 1818, 15908, 11, 3689, 13, 9662, 11, 3689, 13, 296, 270, 8600, 82, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3689, 13, 24267, 11, 3689, 13, 15255, 9250, 11, 3689, 13, 24442, 11, 3689, 13, 20063, 3237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 10044, 4105, 28, 25811, 13, 3866, 41341, 10044, 4105, 11, 13401, 45, 19930, 2257, 10044, 4105, 28, 25811, 13, 65, 952, 45, 19930, 2257, 10044, 4105, 8, 198 ]
2.918018
2,281
import pytest from tennis_probability import set, InvalidInput, InvalidProbability, NegativeNumber
[ 11748, 12972, 9288, 198, 6738, 20790, 62, 1676, 65, 1799, 1330, 900, 11, 17665, 20560, 11, 17665, 2964, 65, 1799, 11, 36183, 15057, 628 ]
4.166667
24
# # Copyright (c) 2020 BlackBerry Limited. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """PE Tree runtime abstraction layer""" # Standard imports import os import tempfile import threading import struct # Config parser imports try: from configparser import ConfigParser except ImportError: from ConfigParser import ConfigParser # pefile import pefile # Qt imports from PyQt5 import QtCore, Qt, QtGui, QtWidgets # Capstone imports try: import capstone HAVE_CAPSTONE = True except ImportError: HAVE_CAPSTONE = False # PE Tree imports import pe_tree.info # pylint: disable=unused-argument class RuntimeSignals(QtCore.QObject): """Allows worker threads to invoke runtime methods on the UI thread. Warning: This class must be instantiated from the UI thread! """ def invoke_method(self, method, *args): """Invoke runtime method on the UI thread""" # Ensure only 1 thread at a time can access runtime.ret self.runtime.lock.acquire() self.runtime.opaque = self.opaque # Invoke the runtime method in the UI thread QtCore.QMetaObject.invokeMethod(self.runtime, method, Qt.Qt.BlockingQueuedConnection, *args) # Get the method result ret = self.runtime.ret self.runtime.lock.release() return ret class Runtime(QtCore.QObject): """Base runtime class""" @QtCore.pyqtSlot() def get_temp_dir(self): """Get temporary directory path Returns: str: Temporary directory path """ self.ret = tempfile.gettempdir() return self.ret @QtCore.pyqtSlot() def get_script_dir(self): """Get script directory Returns: str: Script directory path """ self.ret = os.path.dirname(os.path.realpath(pe_tree.info.__file__)) return self.ret def show_widget(self): """Display the widget""" self.widget.show() self.ret = True return self.ret @QtCore.pyqtSlot(str, str, str, bool) def ask_file(self, filename, caption, filter="All Files (*)", save=False): """Ask user to select a filename via open/save dialog Args: filename (str): Preferred filename caption (str): Save/open dialog caption filter (str): File extension filter save (bool): Present the save dialog if True, otherwise open Returns: str: Filename if successful, otherwise None """ dialog = QtWidgets.QFileDialog() options = QtWidgets.QFileDialog.Options() if not save: # Open file dialog filename, _ = dialog.getOpenFileName(self.widget, caption, filename, filter, options=options) else: # Save file dialog if filename[0] == ".": # Remove leading dot from section names filename = filename[1:] filename, _ = dialog.getSaveFileName(self.widget, caption, filename, filter, options=options) if filename: self.ret = filename else: self.ret = "" return self.ret @QtCore.pyqtSlot(object, object) def read_pe(self, image_base, size=0): """Read PE image from memory Args: image_base (int): Address of PE file in-memory size (int, optional): Size of PE file in-memory Returns: bytearray: Data of PE image if successful, otherwise an empty bytearray """ self.ret = b"" try: # Read the module's PE headers to determine the image size pe = pefile.PE(data=self.get_bytes(image_base, 0x1000), fast_load=True) # Read the remainder of the PE image pe = pefile.PE(data=self.get_bytes(image_base, max(pe.OPTIONAL_HEADER.SizeOfImage, pe.sections[-1].PointerToRawData + pe.sections[-1].SizeOfRawData)), fast_load=True) # Fix up section pointers/sizes for section in pe.sections: section.PointerToRawData = section.VirtualAddress section.SizeOfRawData = section.Misc_VirtualSize + (pe.OPTIONAL_HEADER.SectionAlignment - (section.Misc_VirtualSize % pe.OPTIONAL_HEADER.SectionAlignment)) # Get PE data self.ret = pe.write() except: pass return self.ret @QtCore.pyqtSlot(int, int) def get_bytes(self, start, size): """Read a sequence of bytes from memory Args: start (int): Start address size (int): Number of byte to read Returns: int: Array of bytes if successful, otherwise None """ self.ret = None return self.ret @QtCore.pyqtSlot(int) def get_byte(self, offset): """Read 8-bits from memory Args: offset (int): Offset to read from Returns: int: Byte value """ self.ret = self.get_bytes(offset, 1) return self.ret @QtCore.pyqtSlot(int) def get_word(self, offset): """Read 16-bits from memory Args: offset (int): Offset to read from Returns: int: Word value """ self.ret = struct.unpack("<H", self.get_bytes(offset, 2))[0] return self.ret @QtCore.pyqtSlot(int) def get_dword(self, offset): """Read 32-bits from memory Args: offset (int): Offset to read from Returns: int: Dword value """ self.ret = struct.unpack("<I", self.get_bytes(offset, 4))[0] return self.ret @QtCore.pyqtSlot(int) def get_qword(self, offset): """Read 64-bits from memory Args: offset (int): Offset to read from Returns: int: Qword value """ self.ret = struct.unpack("<Q", self.get_bytes(offset, 8))[0] return self.ret @QtCore.pyqtSlot(int) def get_name(self, offset): """Get symbol name for the given address Args: offset (int): Address to get name for Returns: str: Name of symbol if successful, otherwise an empty string """ self.ret = "" return self.ret @QtCore.pyqtSlot(int) def get_segment_name(self, offset): """Get segment/module name for the given address Args: offset (int): Address to get name for Returns: str: Name of segment/module if successful, otherwise an empty string """ self.ret = "" return self.ret @QtCore.pyqtSlot(int) def is_writable(self, offset): """Determine if the memory address is write-able Args: offset (int): Address to check for write permissions Returns: bool: True if the memory address resides in writable page of memory, otherwise False """ self.ret = False return self.ret @QtCore.pyqtSlot(int) def get_label(self, offset): """Get the disassembly label for the given address Args: offset (int): Address to get label for Returns: str: Label name if successful, otherwise an empty string """ self.ret = "" return self.ret @QtCore.pyqtSlot(object, int) def jumpto(self, item, offset): """User double-clicked an item in the tree, by default disassemble using capstone Args: item (pe_tree.tree): Item that was double-clicked by the user offset (int): Address to jump to """ try: if item.tree.disasm: for i in item.tree.disasm.disasm(item.get_data(size=0x100), offset): item.tree.form.runtime.log("0x{:x}:\t{}\t{}".format(i.address, i.mnemonic, i.op_str)) except ValueError: pass self.ret = True return self.ret @QtCore.pyqtSlot(str) def log(self, output): """Print to output""" output_view = self.pe_tree_form.output_stack.currentWidget() if output_view: self.pe_tree_form.output_stack.setVisible(True) output_view.setVisible(True) output_view.append(output) output_view.moveCursor(QtGui.QTextCursor.End) self.ret = True return self.ret @QtCore.pyqtSlot(int, int) def make_string(self, offset, size): """Convert the data at the given offset to an ASCII string Args: offset (int): Address to convert to string size (int): Length of the string in bytes """ self.ret = None return self.ret @QtCore.pyqtSlot(int, str) def make_comment(self, offset, comment): """Add a comment to the disassembly Args: offset (int): Address to comment comment (str): Comment string """ self.ret = None return self.ret @QtCore.pyqtSlot(int, int, str, str, bytes) def make_segment(self, offset, size, class_name="DATA", name="pe_map", data=None): """Add a segment in the IDB Args: offset (int): Base address of the new segment size (int): Size of the new segment in bytes class_name (str): "CODE" or "DATA" (default) name (str): Name of the segment, default is "pe_map" data (bytes): Data to populate the segment with (optional) """ self.ret = None return self.ret @QtCore.pyqtSlot(int) def resolve_address(self, offset): """Get module/symbol name for the given address Args: offset (int): Address to get module and symbol name for Returns: (str,str): Tuple containing module name and API name. Either name may be "" if not available. """ self.ret = ("", "") return self.ret @QtCore.pyqtSlot(int) def make_qword(self, offset): """Convert data at the specified address to a Qword Args: offset (int): Offset to convert """ self.ret = None return self.ret @QtCore.pyqtSlot(int) def make_dword(self, offset): """Convert data at the specified address to a Dword Args: offset (int): Offset to convert """ self.ret = None return self.ret @QtCore.pyqtSlot(int) def make_word(self, offset): """Convert data at the specified address to a Word Args: offset (int): Offset to convert """ self.ret = None return self.ret @QtCore.pyqtSlot(int, int) def make_byte(self, offset, size=1): """Convert data at the specified address to a byte Args: offset (int): Offset to convert """ self.ret = None return self.ret @QtCore.pyqtSlot(int, str, int) def make_name(self, offset, name, flags=0): """Name the given offset Args: name (str): Name of offset offset (int): Offset to name flags (int): Optional flags to pass to idc.set_name """ self.ret = None return self.ret @QtCore.pyqtSlot() def get_names(self): """Get list of all available symbols/name""" self.ret = None return self.ret @QtCore.pyqtSlot(object, object, object, object) def find_iat_ptrs(self, pe, image_base, size, get_word): """Find likely IAT pointers using capstone for disassembly Args: pe (pefile): Parsed PE file image_base (int): Base address of image size (int): Size of image get_word (object): Callback routine to read a Dword/Qword from memory (depending on the image architecture) Returns: [(int, int, str, str)]: Tuple containing IAT offset, xref, module name and API name """ # Initialise capstone disasm = self.init_capstone(pe) disasm.detail = True iat_ptrs = [] # Traverse sections for section in pe.sections: # Is the section executable? if not section.Characteristics & pefile.SECTION_CHARACTERISTICS["IMAGE_SCN_MEM_EXECUTE"]: continue # Does the section contain anything? data = section.get_data() if not data: continue # Disassemble section for i in disasm.disasm(section.get_data(), image_base + section.VirtualAddress): # Attempt to read the current instruction's effective memory address operand (if present) ptr = 0 if i.mnemonic in ["call", "push", "jmp"]: if i.operands[0].type == capstone.x86.X86_OP_MEM: # Get memory offset for branch instructions ptr = i.operands[0].value.mem.disp elif i.mnemonic in ["mov", "lea"]: if i.operands[0].type == capstone.x86.X86_OP_REG and i.operands[1].type == capstone.x86.X86_OP_MEM: # Get memory offset for mov/lea instructions ptr = i.operands[1].value.mem.disp # Does the instruction's memory address operand seem somewhat valid?! if ptr < 0x1000: continue # Resolve pointer from memory operand try: iat_offset = get_word(ptr) except: continue # Ignore offset if it is in our image if image_base <= iat_offset <= image_base + size: continue # Get module and API name for offset module, api = self.resolve_address(iat_offset) # Ignore the offset if it is in a debug segment or stack etc if api and module and module.endswith(".dll"): if not iat_offset in iat_ptrs: # Add IAT offset, address to patch, module name and API name to list iat_ptrs.append((iat_offset, i.address + len(i.bytes) - 4, module, api)) self.ret = iat_ptrs return self.ret @QtCore.pyqtSlot(object) def find_pe(self, cursor=None): """Find MZ/PE headers in memory Args: cursor (bool): If True, search for MZ/PE at the current cursor position, otherwise scan the entire address space Returns: [(int, str, bool)]: Tuple containing MZ offset, section name and bool set to True if the image is 64-bit """ self.ret = None return self.ret @QtCore.pyqtSlot(object) def init_capstone(self, pe): """ Initialise capstone disassembler Args: pe (pefile): PE file whose machine type is used to initialise capstone Returns: [capstone.Cs]: Capstone disassembler or None if unavailable/not supported """ self.ret = None if HAVE_CAPSTONE: mt = pefile.MACHINE_TYPE if pe.FILE_HEADER.Machine == mt["IMAGE_FILE_MACHINE_I386"]: self.ret = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_32) if pe.FILE_HEADER.Machine == mt["IMAGE_FILE_MACHINE_AMD64"]: self.ret = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_64) if pe.FILE_HEADER.Machine == mt["IMAGE_FILE_MACHINE_ARM"]: self.ret = capstone.Cs(capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM) if pe.FILE_HEADER.Machine == mt["IMAGE_FILE_MACHINE_POWERPC"]: self.ret = capstone.Cs(capstone.CS_ARCH_PPC, capstone.CS_MODE_LITTLE_ENDIAN) if pe.FILE_HEADER.Machine in [mt["IMAGE_FILE_MACHINE_THUMB"], mt["IMAGE_FILE_MACHINE_ARMNT"]]: self.ret = capstone.Cs(capstone.CS_ARCH_ARM, capstone.CS_MODE_THUMB) if pe.FILE_HEADER.Machine in [mt["IMAGE_FILE_MACHINE_R3000"], mt["IMAGE_FILE_MACHINE_R4000"], mt["IMAGE_FILE_MACHINE_R10000"]]: self.ret = capstone.Cs(capstone.CS_ARCH_MIPS, capstone.CS_MODE_MIPS32) return self.ret @QtCore.pyqtSlot(str, str, object) def get_config_option(self, section, option, fallback): """Read configuration option from INI file Args: section (str): Name of config section option (str): Name of config option fallback (object): Default fallback value if option is non-existing Returns: object: Configuration option if present, otherwise fallback argument Warning: Only invoke from UI thread """ self.config_lock.acquire() if self.config.has_section(section) and self.config.has_option(section, option): if isinstance(fallback, bool): self.ret = self.config.getboolean(section, option) else: self.ret = self.config.get(section, option) else: self.ret = fallback self.config_lock.release() return self.ret def set_config_option(self, section, option, value): """Set configuration option in INI file Args: section (str): Name of config section option (str): Name of config option value (object): Default config value Warning: Only invoke from UI thread """ self.config_lock.acquire() self.config.set(section, option, str(value)) self.save_config() self.config_lock.release() def read_config(self): """Load configuration from INI file Warning: Only invoke from UI thread """ self.config_lock.acquire() # Initialise and parse config self.config = ConfigParser() self.config.read(self.config_file) self.config_lock.release() def set_default_config_option(self, config, section, option, default): """Set config option, fallback to default. Used internally to save config. Args: config (ConfigParser): Configuration parser section (str): Name of config section option (str): Name of config option default (object): Default value to use if option is non-existing Warning: Only invoke from UI thread """ config.set(section, option, self.get_config_option(section, option, default)) def save_config(self): """Save all configuration options to INI file Warning: Only invoke from UI thread """ self.config_lock.acquire() try: with open(self.config_file, "w") as config_file: config = ConfigParser() config.add_section("config") self.set_default_config_option(config, "config", "debug", "False") self.set_default_config_option(config, "config", "fonts", ",".join(["Consolas", "Monospace", "Courier"])) self.set_default_config_option(config, "config", "passwords", ",".join(["", "infected"])) self.set_default_config_option(config, "config", "virustotal_url", "https://www.virustotal.com/gui/search") self.set_default_config_option(config, "config", "cyberchef_url", "https://gchq.github.io/CyberChef") config.write(config_file) self.config = config except EnvironmentError: pass self.config_lock.release() def get_available_font(self, families=None): """Read fonts from config and return first available font in Qt Args: families (list): Optional list of default fonts, otherwise this is read using get_config_option Returns: QtGui.QFont: QFont initialised using the family specified via config/families argument Warning: Only invoke from UI thread """ if not families: # Read fonts from config families = self.get_config_option("config", "fonts", None) if families: families = families.split(",") if not families: # Fallback to some sane fonts families = ["Consolas", "Monospace", "Courier"] # Check if fonts are available in Qt font database for family in families: family = family.strip() if family in QtGui.QFontDatabase().families(): return QtGui.QFont(family) return QtGui.QFont() def about_box(self): """Show application about box Warning: Only invoke from UI thread """ message_box = QtWidgets.QMessageBox() message_box.setIcon(QtWidgets.QMessageBox.Information) message_box.setWindowTitle("About {}".format(pe_tree.info.__title__)) message_box.setText("<a href={}>{} - {}</a>".format(pe_tree.info.__url__, pe_tree.info.__title__, pe_tree.info.__version__)) message_box.setInformativeText("<span style=\"white-space: nowrap;\">Developed by <a href=\"{}\">BlackBerry Research and Intelligence Team</a></span><br><br>{}".format("https://www.blackberry.com/us/en/company/research-and-intelligence", pe_tree.info.__copyright__)) message_box.setStandardButtons(QtWidgets.QMessageBox.Ok) message_box.exec_()
[ 2, 198, 2, 220, 220, 15069, 357, 66, 8, 12131, 30845, 15302, 13, 220, 1439, 6923, 33876, 13, 198, 2, 198, 2, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 220, 220, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 220, 220, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 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, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 220, 220, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 220, 220, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 220, 220, 11247, 739, 262, 13789, 13, 198, 2, 198, 198, 37811, 11401, 12200, 19124, 34651, 7679, 37811, 198, 198, 2, 8997, 17944, 198, 11748, 28686, 198, 11748, 20218, 7753, 198, 11748, 4704, 278, 198, 11748, 2878, 198, 198, 2, 17056, 30751, 17944, 198, 28311, 25, 198, 220, 220, 220, 422, 4566, 48610, 1330, 17056, 46677, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 422, 17056, 46677, 1330, 17056, 46677, 198, 198, 2, 613, 7753, 198, 11748, 613, 7753, 198, 198, 2, 33734, 17944, 198, 6738, 9485, 48, 83, 20, 1330, 33734, 14055, 11, 33734, 11, 33734, 8205, 72, 11, 33734, 54, 312, 11407, 198, 198, 2, 4476, 6440, 17944, 198, 28311, 25, 198, 220, 220, 220, 1330, 1451, 6440, 628, 220, 220, 220, 21515, 62, 33177, 2257, 11651, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 21515, 62, 33177, 2257, 11651, 796, 10352, 198, 198, 2, 18468, 12200, 17944, 198, 11748, 613, 62, 21048, 13, 10951, 198, 198, 2, 279, 2645, 600, 25, 15560, 28, 403, 1484, 12, 49140, 198, 198, 4871, 43160, 11712, 874, 7, 48, 83, 14055, 13, 48, 10267, 2599, 198, 220, 220, 220, 37227, 34934, 8383, 14390, 284, 26342, 19124, 5050, 319, 262, 12454, 4704, 13, 628, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 770, 1398, 1276, 307, 9113, 12931, 422, 262, 12454, 4704, 0, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 26342, 62, 24396, 7, 944, 11, 2446, 11, 1635, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19904, 2088, 19124, 2446, 319, 262, 12454, 4704, 37811, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 48987, 691, 352, 4704, 379, 257, 640, 460, 1895, 19124, 13, 1186, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43282, 13, 5354, 13, 330, 29782, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43282, 13, 404, 18251, 796, 2116, 13, 404, 18251, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 10001, 2088, 262, 19124, 2446, 287, 262, 12454, 4704, 198, 220, 220, 220, 220, 220, 220, 220, 33734, 14055, 13, 48, 48526, 10267, 13, 37669, 17410, 7, 944, 13, 43282, 11, 2446, 11, 33734, 13, 48, 83, 13, 3629, 8629, 15681, 1739, 32048, 11, 1635, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3497, 262, 2446, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 1005, 796, 2116, 13, 43282, 13, 1186, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43282, 13, 5354, 13, 20979, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1005, 198, 198, 4871, 43160, 7, 48, 83, 14055, 13, 48, 10267, 2599, 198, 220, 220, 220, 37227, 14881, 19124, 1398, 37811, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 3419, 198, 220, 220, 220, 825, 651, 62, 29510, 62, 15908, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 8584, 8619, 3108, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 46042, 8619, 3108, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 20218, 7753, 13, 1136, 29510, 15908, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 3419, 198, 220, 220, 220, 825, 651, 62, 12048, 62, 15908, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 4226, 8619, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 12327, 8619, 3108, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 5305, 6978, 7, 431, 62, 21048, 13, 10951, 13, 834, 7753, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 825, 905, 62, 42655, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23114, 262, 26295, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 42655, 13, 12860, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 2536, 11, 965, 11, 965, 11, 20512, 8, 198, 220, 220, 220, 825, 1265, 62, 7753, 7, 944, 11, 29472, 11, 8305, 11, 8106, 2625, 3237, 13283, 20789, 42501, 3613, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 25214, 2836, 284, 2922, 257, 29472, 2884, 1280, 14, 21928, 17310, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 357, 2536, 2599, 31278, 29472, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8305, 357, 2536, 2599, 12793, 14, 9654, 17310, 8305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8106, 357, 2536, 2599, 9220, 7552, 8106, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3613, 357, 30388, 2599, 21662, 262, 3613, 17310, 611, 6407, 11, 4306, 1280, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 7066, 12453, 611, 4388, 11, 4306, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17310, 796, 33734, 54, 312, 11407, 13, 48, 8979, 44204, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 3689, 796, 33734, 54, 312, 11407, 13, 48, 8979, 44204, 13, 29046, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3613, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4946, 2393, 17310, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 11, 4808, 796, 17310, 13, 1136, 11505, 8979, 5376, 7, 944, 13, 42655, 11, 8305, 11, 29472, 11, 8106, 11, 3689, 28, 25811, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 12793, 2393, 17310, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 29472, 58, 15, 60, 6624, 366, 526, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17220, 3756, 16605, 422, 2665, 3891, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 29472, 58, 16, 47715, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 11, 4808, 796, 17310, 13, 1136, 16928, 8979, 5376, 7, 944, 13, 42655, 11, 8305, 11, 29472, 11, 8106, 11, 3689, 28, 25811, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 29472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 29472, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 15252, 11, 2134, 8, 198, 220, 220, 220, 825, 1100, 62, 431, 7, 944, 11, 2939, 62, 8692, 11, 2546, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 18468, 2939, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 8692, 357, 600, 2599, 17917, 286, 18468, 2393, 287, 12, 31673, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 357, 600, 11, 11902, 2599, 12849, 286, 18468, 2393, 287, 12, 31673, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 83, 451, 2433, 25, 6060, 286, 18468, 2939, 611, 4388, 11, 4306, 281, 6565, 416, 83, 451, 2433, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 275, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4149, 262, 8265, 338, 18468, 24697, 284, 5004, 262, 2939, 2546, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 613, 796, 613, 7753, 13, 11401, 7, 7890, 28, 944, 13, 1136, 62, 33661, 7, 9060, 62, 8692, 11, 657, 87, 12825, 828, 3049, 62, 2220, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4149, 262, 17675, 286, 262, 18468, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 613, 796, 613, 7753, 13, 11401, 7, 7890, 28, 944, 13, 1136, 62, 33661, 7, 9060, 62, 8692, 11, 3509, 7, 431, 13, 3185, 24131, 1847, 62, 37682, 1137, 13, 10699, 5189, 5159, 11, 613, 13, 23946, 58, 12, 16, 4083, 18833, 3849, 2514, 27369, 6601, 1343, 613, 13, 23946, 58, 12, 16, 4083, 10699, 5189, 27369, 6601, 36911, 3049, 62, 2220, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13268, 510, 2665, 32007, 14, 82, 4340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2665, 287, 613, 13, 23946, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2665, 13, 18833, 3849, 2514, 27369, 6601, 796, 2665, 13, 37725, 20231, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2665, 13, 10699, 5189, 27369, 6601, 796, 2665, 13, 44, 2304, 62, 37725, 10699, 1343, 357, 431, 13, 3185, 24131, 1847, 62, 37682, 1137, 13, 16375, 2348, 16747, 532, 357, 5458, 13, 44, 2304, 62, 37725, 10699, 4064, 613, 13, 3185, 24131, 1847, 62, 37682, 1137, 13, 16375, 2348, 16747, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3497, 18468, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 613, 13, 13564, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 493, 8, 198, 220, 220, 220, 825, 651, 62, 33661, 7, 944, 11, 923, 11, 2546, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 257, 8379, 286, 9881, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 357, 600, 2599, 7253, 2209, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 357, 600, 2599, 7913, 286, 18022, 284, 1100, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 15690, 286, 9881, 611, 4388, 11, 4306, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 26327, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 807, 12, 9895, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 1100, 422, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 30589, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 2116, 13, 1136, 62, 33661, 7, 28968, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 1467, 12, 9895, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 1100, 422, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 9678, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 2878, 13, 403, 8002, 7203, 27, 39, 1600, 2116, 13, 1136, 62, 33661, 7, 28968, 11, 362, 4008, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 67, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 3933, 12, 9895, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 1100, 422, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 360, 4775, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 2878, 13, 403, 8002, 7203, 27, 40, 1600, 2116, 13, 1136, 62, 33661, 7, 28968, 11, 604, 4008, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 80, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 5598, 12, 9895, 422, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 1100, 422, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 1195, 4775, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 2878, 13, 403, 8002, 7203, 27, 48, 1600, 2116, 13, 1136, 62, 33661, 7, 28968, 11, 807, 4008, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 3672, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 6194, 1438, 329, 262, 1813, 2209, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 651, 1438, 329, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 6530, 286, 6194, 611, 4388, 11, 4306, 281, 6565, 4731, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 325, 5154, 62, 3672, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 10618, 14, 21412, 1438, 329, 262, 1813, 2209, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 651, 1438, 329, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 6530, 286, 10618, 14, 21412, 611, 4388, 11, 4306, 281, 6565, 4731, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 318, 62, 8933, 540, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35, 2357, 3810, 611, 262, 4088, 2209, 318, 3551, 12, 540, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 2198, 329, 3551, 21627, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20512, 25, 6407, 611, 262, 4088, 2209, 29076, 287, 1991, 540, 2443, 286, 4088, 11, 4306, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 651, 62, 18242, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 262, 595, 41873, 6167, 329, 262, 1813, 2209, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 651, 6167, 329, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 25, 36052, 1438, 611, 4388, 11, 4306, 281, 6565, 4731, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 15252, 11, 493, 8, 198, 220, 220, 220, 825, 474, 388, 457, 78, 7, 944, 11, 2378, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 12982, 4274, 12, 565, 9484, 281, 2378, 287, 262, 5509, 11, 416, 4277, 595, 292, 15140, 1262, 1451, 6440, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 357, 431, 62, 21048, 13, 21048, 2599, 9097, 326, 373, 4274, 12, 565, 9484, 416, 262, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 4391, 284, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2378, 13, 21048, 13, 6381, 8597, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2378, 13, 21048, 13, 6381, 8597, 13, 6381, 8597, 7, 9186, 13, 1136, 62, 7890, 7, 7857, 28, 15, 87, 3064, 828, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 13, 21048, 13, 687, 13, 43282, 13, 6404, 7203, 15, 87, 90, 25, 87, 92, 7479, 83, 90, 32239, 83, 90, 92, 1911, 18982, 7, 72, 13, 21975, 11, 1312, 13, 10295, 50016, 11, 1312, 13, 404, 62, 2536, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 2536, 8, 198, 220, 220, 220, 825, 2604, 7, 944, 11, 5072, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 18557, 284, 5072, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 1177, 796, 2116, 13, 431, 62, 21048, 62, 687, 13, 22915, 62, 25558, 13, 14421, 38300, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5072, 62, 1177, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 431, 62, 21048, 62, 687, 13, 22915, 62, 25558, 13, 2617, 53, 12843, 7, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 1177, 13, 2617, 53, 12843, 7, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 1177, 13, 33295, 7, 22915, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 1177, 13, 21084, 34, 21471, 7, 48, 83, 8205, 72, 13, 48, 8206, 34, 21471, 13, 12915, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 493, 8, 198, 220, 220, 220, 825, 787, 62, 8841, 7, 944, 11, 11677, 11, 2546, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 262, 1366, 379, 262, 1813, 11677, 284, 281, 37101, 4731, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 10385, 284, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 357, 600, 2599, 22313, 286, 262, 4731, 287, 9881, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 965, 8, 198, 220, 220, 220, 825, 787, 62, 23893, 7, 944, 11, 11677, 11, 2912, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4550, 257, 2912, 284, 262, 595, 41873, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 2912, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2912, 357, 2536, 2599, 18957, 4731, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 493, 11, 965, 11, 965, 11, 9881, 8, 198, 220, 220, 220, 825, 787, 62, 325, 5154, 7, 944, 11, 11677, 11, 2546, 11, 1398, 62, 3672, 2625, 26947, 1600, 1438, 2625, 431, 62, 8899, 1600, 1366, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4550, 257, 10618, 287, 262, 4522, 33, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 7308, 2209, 286, 262, 649, 10618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 357, 600, 2599, 12849, 286, 262, 649, 10618, 287, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 62, 3672, 357, 2536, 2599, 366, 34, 16820, 1, 393, 366, 26947, 1, 357, 12286, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 357, 2536, 2599, 6530, 286, 262, 10618, 11, 4277, 318, 366, 431, 62, 8899, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 357, 33661, 2599, 6060, 284, 48040, 262, 10618, 351, 357, 25968, 8, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 10568, 62, 21975, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 8265, 14, 1837, 23650, 1438, 329, 262, 1813, 2209, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 17917, 284, 651, 8265, 290, 6194, 1438, 329, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2536, 11, 2536, 2599, 309, 29291, 7268, 8265, 1438, 290, 7824, 1438, 13, 15467, 1438, 743, 307, 13538, 611, 407, 1695, 13, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 5855, 1600, 366, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 787, 62, 80, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1366, 379, 262, 7368, 2209, 284, 257, 1195, 4775, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 10385, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 787, 62, 67, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1366, 379, 262, 7368, 2209, 284, 257, 360, 4775, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 10385, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 8, 198, 220, 220, 220, 825, 787, 62, 4775, 7, 944, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1366, 379, 262, 7368, 2209, 284, 257, 9678, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 10385, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 493, 8, 198, 220, 220, 220, 825, 787, 62, 26327, 7, 944, 11, 11677, 11, 2546, 28, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1366, 379, 262, 7368, 2209, 284, 257, 18022, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 10385, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 600, 11, 965, 11, 493, 8, 198, 220, 220, 220, 825, 787, 62, 3672, 7, 944, 11, 11677, 11, 1438, 11, 9701, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5376, 262, 1813, 11677, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 357, 2536, 2599, 6530, 286, 11677, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 357, 600, 2599, 3242, 2617, 284, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9701, 357, 600, 2599, 32233, 9701, 284, 1208, 284, 4686, 66, 13, 2617, 62, 3672, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 3419, 198, 220, 220, 220, 825, 651, 62, 14933, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 1351, 286, 477, 1695, 14354, 14, 3672, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 15252, 11, 2134, 11, 2134, 11, 2134, 8, 198, 220, 220, 220, 825, 1064, 62, 5375, 62, 457, 3808, 7, 944, 11, 613, 11, 2939, 62, 8692, 11, 2546, 11, 651, 62, 4775, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 1884, 314, 1404, 32007, 1262, 1451, 6440, 329, 595, 41873, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 613, 357, 431, 7753, 2599, 23042, 276, 18468, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 8692, 357, 600, 2599, 7308, 2209, 286, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 357, 600, 2599, 12849, 286, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 651, 62, 4775, 357, 15252, 2599, 4889, 1891, 8027, 284, 1100, 257, 360, 4775, 14, 48, 4775, 422, 4088, 357, 44023, 319, 262, 2939, 10959, 8, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47527, 600, 11, 493, 11, 965, 11, 965, 8, 5974, 309, 29291, 7268, 314, 1404, 11677, 11, 2124, 5420, 11, 8265, 1438, 290, 7824, 1438, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 20768, 786, 1451, 6440, 198, 220, 220, 220, 220, 220, 220, 220, 595, 8597, 796, 2116, 13, 15003, 62, 11128, 6440, 7, 431, 8, 198, 220, 220, 220, 220, 220, 220, 220, 595, 8597, 13, 49170, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 1312, 265, 62, 457, 3808, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4759, 4399, 9004, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2665, 287, 613, 13, 23946, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1148, 262, 2665, 28883, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2665, 13, 27275, 3969, 1222, 613, 7753, 13, 50, 24565, 62, 38019, 2246, 5781, 8808, 19505, 14692, 3955, 11879, 62, 6173, 45, 62, 44, 3620, 62, 6369, 2943, 37780, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8314, 262, 2665, 3994, 1997, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2665, 13, 1136, 62, 7890, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3167, 292, 15140, 2665, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 595, 8597, 13, 6381, 8597, 7, 5458, 13, 1136, 62, 7890, 22784, 2939, 62, 8692, 1343, 2665, 13, 37725, 20231, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25770, 284, 1100, 262, 1459, 12064, 338, 4050, 4088, 2209, 1515, 392, 357, 361, 1944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50116, 796, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 10295, 50016, 287, 14631, 13345, 1600, 366, 14689, 1600, 366, 73, 3149, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 3575, 1746, 58, 15, 4083, 4906, 6624, 1451, 6440, 13, 87, 4521, 13, 55, 4521, 62, 3185, 62, 44, 3620, 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, 1303, 3497, 4088, 11677, 329, 8478, 7729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50116, 796, 1312, 13, 3575, 1746, 58, 15, 4083, 8367, 13, 11883, 13, 6381, 79, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1312, 13, 10295, 50016, 287, 14631, 76, 709, 1600, 366, 293, 64, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 3575, 1746, 58, 15, 4083, 4906, 6624, 1451, 6440, 13, 87, 4521, 13, 55, 4521, 62, 3185, 62, 31553, 290, 1312, 13, 3575, 1746, 58, 16, 4083, 4906, 6624, 1451, 6440, 13, 87, 4521, 13, 55, 4521, 62, 3185, 62, 44, 3620, 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, 1303, 3497, 4088, 11677, 329, 1409, 14, 293, 64, 7729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50116, 796, 1312, 13, 3575, 1746, 58, 16, 4083, 8367, 13, 11883, 13, 6381, 79, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8314, 262, 12064, 338, 4088, 2209, 1515, 392, 1283, 6454, 4938, 12248, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 50116, 1279, 657, 87, 12825, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1874, 6442, 17562, 422, 4088, 1515, 392, 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, 1312, 265, 62, 28968, 796, 651, 62, 4775, 7, 20692, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 41032, 11677, 611, 340, 318, 287, 674, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2939, 62, 8692, 19841, 1312, 265, 62, 28968, 19841, 2939, 62, 8692, 1343, 2546, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3497, 8265, 290, 7824, 1438, 329, 11677, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8265, 11, 40391, 796, 2116, 13, 411, 6442, 62, 21975, 7, 5375, 62, 28968, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 41032, 262, 11677, 611, 340, 318, 287, 257, 14257, 10618, 393, 8931, 3503, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 40391, 290, 8265, 290, 8265, 13, 437, 2032, 342, 7, 1911, 12736, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1312, 265, 62, 28968, 287, 1312, 265, 62, 457, 3808, 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, 1303, 3060, 314, 1404, 11677, 11, 2209, 284, 8529, 11, 8265, 1438, 290, 7824, 1438, 284, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 265, 62, 457, 3808, 13, 33295, 19510, 5375, 62, 28968, 11, 1312, 13, 21975, 1343, 18896, 7, 72, 13, 33661, 8, 532, 604, 11, 8265, 11, 40391, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1312, 265, 62, 457, 3808, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 15252, 8, 198, 220, 220, 220, 825, 1064, 62, 431, 7, 944, 11, 23493, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 337, 57, 14, 11401, 24697, 287, 4088, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23493, 357, 30388, 2599, 1002, 6407, 11, 2989, 329, 337, 57, 14, 11401, 379, 262, 1459, 23493, 2292, 11, 4306, 9367, 262, 2104, 2209, 2272, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47527, 600, 11, 965, 11, 20512, 8, 5974, 309, 29291, 7268, 337, 57, 11677, 11, 2665, 1438, 290, 20512, 900, 284, 6407, 611, 262, 2939, 318, 5598, 12, 2545, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 15252, 8, 198, 220, 220, 220, 825, 2315, 62, 11128, 6440, 7, 944, 11, 613, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20768, 786, 1451, 6440, 595, 34455, 1754, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 613, 357, 431, 7753, 2599, 18468, 2393, 3025, 4572, 2099, 318, 973, 284, 4238, 786, 1451, 6440, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 11128, 6440, 13, 32274, 5974, 4476, 6440, 595, 34455, 1754, 393, 6045, 611, 23485, 14, 1662, 4855, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 611, 21515, 62, 33177, 2257, 11651, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45079, 796, 613, 7753, 13, 44, 16219, 8881, 62, 25216, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 6624, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 40, 21734, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 55, 4521, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 6624, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 28075, 2414, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 55, 4521, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 2414, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 6624, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 33456, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 33456, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 33456, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 6624, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 47, 36048, 5662, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 47, 5662, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 43, 22470, 2538, 62, 10619, 16868, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 287, 685, 16762, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 4221, 5883, 33, 33116, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 33456, 11251, 8973, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 33456, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 4221, 5883, 33, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 613, 13, 25664, 62, 37682, 1137, 13, 37573, 287, 685, 16762, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 49, 23924, 33116, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 49, 27559, 33116, 45079, 14692, 3955, 11879, 62, 25664, 62, 44, 16219, 8881, 62, 49, 49388, 8973, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 1451, 6440, 13, 32274, 7, 11128, 6440, 13, 7902, 62, 31315, 62, 8895, 3705, 11, 1451, 6440, 13, 7902, 62, 49058, 62, 8895, 3705, 2624, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 2488, 48, 83, 14055, 13, 9078, 39568, 38963, 7, 2536, 11, 965, 11, 2134, 8, 198, 220, 220, 220, 825, 651, 62, 11250, 62, 18076, 7, 944, 11, 2665, 11, 3038, 11, 2121, 1891, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 8398, 3038, 422, 3268, 40, 2393, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2665, 357, 2536, 2599, 6530, 286, 4566, 2665, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3038, 357, 2536, 2599, 6530, 286, 4566, 3038, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2121, 1891, 357, 15252, 2599, 15161, 2121, 1891, 1988, 611, 3038, 318, 1729, 12, 25687, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 25, 28373, 3038, 611, 1944, 11, 4306, 2121, 1891, 4578, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 330, 29782, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11250, 13, 10134, 62, 5458, 7, 5458, 8, 290, 2116, 13, 11250, 13, 10134, 62, 18076, 7, 5458, 11, 3038, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 7207, 1891, 11, 20512, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1186, 796, 2116, 13, 11250, 13, 1136, 2127, 21052, 7, 5458, 11, 3038, 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, 2116, 13, 1186, 796, 2116, 13, 11250, 13, 1136, 7, 5458, 11, 3038, 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, 1186, 796, 2121, 1891, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 20979, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1186, 628, 220, 220, 220, 825, 900, 62, 11250, 62, 18076, 7, 944, 11, 2665, 11, 3038, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 8398, 3038, 287, 3268, 40, 2393, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2665, 357, 2536, 2599, 6530, 286, 4566, 2665, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3038, 357, 2536, 2599, 6530, 286, 4566, 3038, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 357, 15252, 2599, 15161, 4566, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 330, 29782, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 13, 2617, 7, 5458, 11, 3038, 11, 965, 7, 8367, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 21928, 62, 11250, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 20979, 3419, 628, 220, 220, 220, 825, 1100, 62, 11250, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8912, 8398, 422, 3268, 40, 2393, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 330, 29782, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 20768, 786, 290, 21136, 4566, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 796, 17056, 46677, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 13, 961, 7, 944, 13, 11250, 62, 7753, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 20979, 3419, 628, 220, 220, 220, 825, 900, 62, 12286, 62, 11250, 62, 18076, 7, 944, 11, 4566, 11, 2665, 11, 3038, 11, 4277, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 4566, 3038, 11, 2121, 1891, 284, 4277, 13, 16718, 20947, 284, 3613, 4566, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 16934, 46677, 2599, 28373, 30751, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2665, 357, 2536, 2599, 6530, 286, 4566, 2665, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3038, 357, 2536, 2599, 6530, 286, 4566, 3038, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 357, 15252, 2599, 15161, 1988, 284, 779, 611, 3038, 318, 1729, 12, 25687, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 2617, 7, 5458, 11, 3038, 11, 2116, 13, 1136, 62, 11250, 62, 18076, 7, 5458, 11, 3038, 11, 4277, 4008, 628, 220, 220, 220, 825, 3613, 62, 11250, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16928, 477, 8398, 3689, 284, 3268, 40, 2393, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 330, 29782, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 944, 13, 11250, 62, 7753, 11, 366, 86, 4943, 355, 4566, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 17056, 46677, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 2860, 62, 5458, 7203, 11250, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 12286, 62, 11250, 62, 18076, 7, 11250, 11, 366, 11250, 1600, 366, 24442, 1600, 366, 25101, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 12286, 62, 11250, 62, 18076, 7, 11250, 11, 366, 11250, 1600, 366, 10331, 82, 1600, 366, 553, 13, 22179, 7, 14692, 9444, 12456, 1600, 366, 9069, 24912, 1600, 366, 34, 280, 5277, 8973, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 12286, 62, 11250, 62, 18076, 7, 11250, 11, 366, 11250, 1600, 366, 6603, 10879, 1600, 366, 553, 13, 22179, 7, 14692, 1600, 366, 27816, 276, 8973, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 12286, 62, 11250, 62, 18076, 7, 11250, 11, 366, 11250, 1600, 366, 37040, 436, 4997, 62, 6371, 1600, 366, 5450, 1378, 2503, 13, 37040, 436, 4997, 13, 785, 14, 48317, 14, 12947, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 12286, 62, 11250, 62, 18076, 7, 11250, 11, 366, 11250, 1600, 366, 948, 527, 2395, 69, 62, 6371, 1600, 366, 5450, 1378, 70, 354, 80, 13, 12567, 13, 952, 14, 20418, 527, 7376, 69, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 13564, 7, 11250, 62, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 796, 4566, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 9344, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 62, 5354, 13, 20979, 3419, 628, 220, 220, 220, 825, 651, 62, 15182, 62, 10331, 7, 944, 11, 4172, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 26806, 422, 4566, 290, 1441, 717, 1695, 10369, 287, 33734, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4172, 357, 4868, 2599, 32233, 1351, 286, 4277, 26806, 11, 4306, 428, 318, 1100, 1262, 651, 62, 11250, 62, 18076, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33734, 8205, 72, 13, 48, 23252, 25, 1195, 23252, 4238, 1417, 1262, 262, 1641, 7368, 2884, 4566, 14, 44769, 3922, 4578, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 4172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4149, 26806, 422, 4566, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4172, 796, 2116, 13, 1136, 62, 11250, 62, 18076, 7203, 11250, 1600, 366, 10331, 82, 1600, 6045, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4172, 796, 4172, 13, 35312, 7, 2430, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 4172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7218, 1891, 284, 617, 33241, 26806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4172, 796, 14631, 9444, 12456, 1600, 366, 9069, 24912, 1600, 366, 34, 280, 5277, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 26806, 389, 1695, 287, 33734, 10369, 6831, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1641, 287, 4172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1641, 796, 1641, 13, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1641, 287, 33734, 8205, 72, 13, 48, 23252, 38105, 22446, 44769, 3922, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 33734, 8205, 72, 13, 48, 23252, 7, 17989, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 33734, 8205, 72, 13, 48, 23252, 3419, 628, 220, 220, 220, 825, 546, 62, 3524, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 3586, 546, 3091, 628, 220, 220, 220, 220, 220, 220, 220, 15932, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 26342, 422, 12454, 4704, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 796, 33734, 54, 312, 11407, 13, 48, 12837, 14253, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 2617, 19578, 7, 48, 83, 54, 312, 11407, 13, 48, 12837, 14253, 13, 21918, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 2617, 27703, 19160, 7203, 8585, 23884, 1911, 18982, 7, 431, 62, 21048, 13, 10951, 13, 834, 7839, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 2617, 8206, 7203, 27, 64, 13291, 34758, 92, 29, 90, 92, 532, 23884, 3556, 64, 29, 1911, 18982, 7, 431, 62, 21048, 13, 10951, 13, 834, 6371, 834, 11, 613, 62, 21048, 13, 10951, 13, 834, 7839, 834, 11, 613, 62, 21048, 13, 10951, 13, 834, 9641, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 2617, 818, 687, 876, 8206, 7203, 27, 12626, 3918, 17553, 11186, 12, 13200, 25, 783, 2416, 26, 38214, 19246, 276, 416, 1279, 64, 13291, 17553, 90, 32239, 5320, 9915, 25215, 4992, 290, 9345, 4816, 3556, 64, 12240, 12626, 6927, 1671, 6927, 1671, 29, 90, 92, 1911, 18982, 7203, 5450, 1378, 2503, 13, 13424, 8396, 13, 785, 14, 385, 14, 268, 14, 39722, 14, 34033, 12, 392, 12, 32683, 1600, 613, 62, 21048, 13, 10951, 13, 834, 22163, 4766, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 2617, 23615, 1537, 27288, 7, 48, 83, 54, 312, 11407, 13, 48, 12837, 14253, 13, 18690, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 3524, 13, 18558, 62, 3419, 198 ]
2.238433
9,877
#!/usr/bin/env python """ @package ion.services.sa.observatory.test.test_platform_instrument @file ion/services/sa/observatory/test/test_platform_instrument.py @author Carlos Rueda, Maurice Manning @brief Tests involving some more detailed platform-instrument interations """ __author__ = 'Carlos Rueda, Maurice Manning' # # Base preparations and construction of the platform topology are provided by # the base class BaseTestPlatform. # # developer conveniences: # bin/nosetests -sv ion/services/sa/observatory/test/test_platform_instrument.py:Test.test_platform_with_instrument_streaming from pyon.public import log from ion.agents.platform.test.base_test_platform_agent import BaseIntTestPlatform from pyon.agent.agent import ResourceAgentClient from ion.agents.platform.test.base_test_platform_agent import FakeProcess from pyon.agent.agent import ResourceAgentState from pyon.event.event import EventSubscriber from interface.services.sa.iinstrument_management_service import InstrumentManagementServiceClient from interface.objects import AgentCommand import unittest import gevent from mock import patch from pyon.public import CFG # -------------------------------- MI ---------------------------- # the following adapted from test_instrument_agent to be able to import from # the MI repo, using egg directly. from ion.agents.instrument.test.load_test_driver_egg import load_egg DVR_CONFIG = load_egg() # now we can import SBE37ProtocolEvent from mi.instrument.seabird.sbe37smb.ooicore.driver import SBE37ProtocolEvent # ------------------------------------------------------------------------ @patch.dict(CFG, {'endpoint': {'receive': {'timeout': 180}}})
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 37811, 198, 31, 26495, 22088, 13, 30416, 13, 11400, 13, 672, 3168, 2870, 13, 9288, 13, 9288, 62, 24254, 62, 259, 43872, 198, 31, 7753, 220, 220, 220, 22088, 14, 30416, 14, 11400, 14, 672, 3168, 2870, 14, 9288, 14, 9288, 62, 24254, 62, 259, 43872, 13, 9078, 198, 31, 9800, 220, 17409, 371, 1739, 64, 11, 32839, 15281, 198, 31, 65, 3796, 220, 220, 30307, 7411, 617, 517, 6496, 3859, 12, 259, 43872, 987, 602, 198, 37811, 198, 198, 834, 9800, 834, 796, 705, 26886, 418, 371, 1739, 64, 11, 32839, 15281, 6, 628, 198, 2, 198, 2, 7308, 21518, 290, 5103, 286, 262, 3859, 1353, 1435, 389, 2810, 416, 198, 2, 262, 2779, 1398, 7308, 14402, 37148, 13, 198, 2, 198, 198, 2, 8517, 7292, 10035, 25, 198, 2, 9874, 14, 39369, 316, 3558, 532, 21370, 22088, 14, 30416, 14, 11400, 14, 672, 3168, 2870, 14, 9288, 14, 9288, 62, 24254, 62, 259, 43872, 13, 9078, 25, 14402, 13, 9288, 62, 24254, 62, 4480, 62, 259, 43872, 62, 5532, 278, 198, 198, 6738, 12972, 261, 13, 11377, 1330, 2604, 198, 198, 6738, 22088, 13, 49638, 13, 24254, 13, 9288, 13, 8692, 62, 9288, 62, 24254, 62, 25781, 1330, 7308, 5317, 14402, 37148, 198, 198, 6738, 12972, 261, 13, 25781, 13, 25781, 1330, 20857, 36772, 11792, 198, 6738, 22088, 13, 49638, 13, 24254, 13, 9288, 13, 8692, 62, 9288, 62, 24254, 62, 25781, 1330, 33482, 18709, 198, 6738, 12972, 261, 13, 25781, 13, 25781, 1330, 20857, 36772, 9012, 198, 6738, 12972, 261, 13, 15596, 13, 15596, 1330, 8558, 7004, 1416, 24735, 198, 198, 6738, 7071, 13, 30416, 13, 11400, 13, 72, 259, 43872, 62, 27604, 62, 15271, 1330, 42410, 48032, 16177, 11792, 198, 198, 6738, 7071, 13, 48205, 1330, 15906, 21575, 198, 11748, 555, 715, 395, 198, 198, 11748, 4903, 1151, 198, 198, 6738, 15290, 1330, 8529, 198, 6738, 12972, 261, 13, 11377, 1330, 18551, 38, 198, 198, 2, 20368, 15789, 34400, 10541, 198, 2, 262, 1708, 16573, 422, 1332, 62, 259, 43872, 62, 25781, 284, 307, 1498, 284, 1330, 422, 198, 2, 262, 15789, 29924, 11, 1262, 5935, 3264, 13, 198, 198, 6738, 22088, 13, 49638, 13, 259, 43872, 13, 9288, 13, 2220, 62, 9288, 62, 26230, 62, 33856, 1330, 3440, 62, 33856, 198, 35, 13024, 62, 10943, 16254, 796, 3440, 62, 33856, 3419, 628, 198, 2, 783, 356, 460, 1330, 311, 12473, 2718, 19703, 4668, 9237, 198, 6738, 21504, 13, 259, 43872, 13, 325, 397, 1447, 13, 82, 1350, 2718, 82, 2022, 13, 2238, 291, 382, 13, 26230, 1330, 311, 12473, 2718, 19703, 4668, 9237, 198, 198, 2, 16529, 982, 628, 198, 31, 17147, 13, 11600, 7, 22495, 38, 11, 1391, 6, 437, 4122, 10354, 1391, 6, 260, 15164, 10354, 1391, 6, 48678, 10354, 11546, 11709, 30072, 198 ]
3.585987
471
#!/usr/bin/env python # Licensed to Cloudera, Inc. under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. Cloudera, Inc. licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import tablib from desktop.lib.export_csvxls import create_generator, make_response from nose.tools import assert_equal
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 49962, 284, 1012, 280, 1082, 64, 11, 3457, 13, 739, 530, 198, 2, 393, 517, 18920, 5964, 11704, 13, 220, 4091, 262, 28536, 2393, 198, 2, 9387, 351, 428, 670, 329, 3224, 1321, 198, 2, 5115, 6634, 9238, 13, 220, 1012, 280, 1082, 64, 11, 3457, 13, 16625, 428, 2393, 198, 2, 284, 345, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 198, 2, 366, 34156, 15341, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 198, 2, 351, 262, 13789, 13, 220, 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, 11748, 7400, 8019, 198, 198, 6738, 11364, 13, 8019, 13, 39344, 62, 40664, 87, 7278, 1330, 2251, 62, 8612, 1352, 11, 787, 62, 26209, 198, 6738, 9686, 13, 31391, 1330, 6818, 62, 40496, 628 ]
3.840336
238
#!/usr/bin/env python # coding: utf-8 ''' * Author : Hutter Valentin * Date : 13.05.2019 * Description : Hector agent monitoring * Help : - https://psutil.readthedocs.io/en/latest/#processes - https://psutil.readthedocs.io/en/latest/#psutil.process_iter - https://psutil.readthedocs.io/en/latest/#unicode ''' import psutil import sys sys.path.insert(0, '..') # to import helpers from parent folder import helpers
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 7061, 6, 198, 1635, 6434, 1058, 367, 10381, 17284, 259, 198, 1635, 7536, 1058, 1511, 13, 2713, 13, 23344, 198, 1635, 12489, 1058, 42621, 5797, 9904, 198, 1635, 10478, 1058, 198, 220, 220, 220, 532, 3740, 1378, 862, 22602, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 31113, 14681, 274, 198, 220, 220, 220, 220, 220, 532, 3740, 1378, 862, 22602, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 31113, 862, 22602, 13, 14681, 62, 2676, 198, 220, 220, 220, 532, 3740, 1378, 862, 22602, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 31113, 46903, 1098, 198, 7061, 6, 198, 198, 11748, 26692, 22602, 198, 11748, 25064, 198, 17597, 13, 6978, 13, 28463, 7, 15, 11, 705, 492, 11537, 1303, 284, 1330, 49385, 422, 2560, 9483, 198, 11748, 49385, 198 ]
2.70625
160
""" Constants used across all files """ # The constants in this file must be defined and checked by the user of the template import numpy as np from typing import Dict, List, Optional from copy import deepcopy from datetime import date seed = 0 true_params = {"b0": 6, "b1": 1.3, "scale": 50} n = 300 x_min = -50 x_max = 100 np.random.seed(seed) x_fix = np.random.uniform(x_min, x_max, n) np.random.seed(seed) e_fix = np.random.normal(0, true_params["scale"], n) np.random.seed(seed) y_fix = true_params["b0"] + true_params["b1"] * x_fix + e_fix
[ 37811, 198, 220, 220, 220, 4757, 1187, 973, 1973, 477, 3696, 198, 37811, 198, 198, 2, 383, 38491, 287, 428, 2393, 1276, 307, 5447, 290, 10667, 416, 262, 2836, 286, 262, 11055, 198, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 19720, 1330, 360, 713, 11, 7343, 11, 32233, 198, 6738, 4866, 1330, 2769, 30073, 198, 6738, 4818, 8079, 1330, 3128, 628, 198, 28826, 796, 657, 198, 7942, 62, 37266, 796, 19779, 65, 15, 1298, 718, 11, 366, 65, 16, 1298, 352, 13, 18, 11, 366, 9888, 1298, 2026, 92, 198, 77, 796, 5867, 198, 87, 62, 1084, 796, 532, 1120, 198, 87, 62, 9806, 796, 1802, 198, 198, 37659, 13, 25120, 13, 28826, 7, 28826, 8, 198, 87, 62, 13049, 796, 45941, 13, 25120, 13, 403, 6933, 7, 87, 62, 1084, 11, 2124, 62, 9806, 11, 299, 8, 198, 37659, 13, 25120, 13, 28826, 7, 28826, 8, 198, 68, 62, 13049, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 2081, 62, 37266, 14692, 9888, 33116, 299, 8, 198, 37659, 13, 25120, 13, 28826, 7, 28826, 8, 198, 88, 62, 13049, 796, 2081, 62, 37266, 14692, 65, 15, 8973, 1343, 2081, 62, 37266, 14692, 65, 16, 8973, 1635, 2124, 62, 13049, 1343, 304, 62, 13049 ]
2.681159
207
""" Class containing the dictionary for the Yeelight protocol """ # COMMAND message {id_pair, method_pair, params_pair} # id_pair is "id":<number> # method_pair is "method":"<method>" # params_pair is "params":["<param1>","<param2>", <numeric_param3>] # <param1> is "property":<property_value> if __name__ == '__main__': method_returned = DictYeelight().run() # Useful information print("Method is " + str(method_returned))
[ 37811, 198, 220, 220, 220, 5016, 7268, 262, 22155, 329, 262, 11609, 49984, 8435, 198, 37811, 198, 198, 2, 22240, 6981, 3275, 1391, 312, 62, 24874, 11, 2446, 62, 24874, 11, 42287, 62, 24874, 92, 198, 2, 4686, 62, 24874, 318, 220, 220, 220, 220, 220, 220, 220, 366, 312, 1298, 27, 17618, 29, 198, 2, 2446, 62, 24874, 318, 220, 220, 220, 366, 24396, 2404, 27, 24396, 24618, 198, 2, 42287, 62, 24874, 318, 220, 220, 220, 366, 37266, 26358, 27, 17143, 16, 29, 2430, 27, 17143, 17, 29, 1600, 1279, 77, 39223, 62, 17143, 18, 37981, 198, 2, 1279, 17143, 16, 29, 318, 220, 220, 220, 220, 220, 220, 366, 26745, 1298, 27, 26745, 62, 8367, 29, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 2446, 62, 7783, 276, 796, 360, 713, 35543, 49984, 22446, 5143, 3419, 198, 220, 220, 220, 1303, 49511, 1321, 198, 220, 220, 220, 3601, 7203, 17410, 318, 366, 1343, 965, 7, 24396, 62, 7783, 276, 4008, 198 ]
2.676301
173
# Rope Burning Riddler from fivethirtyeight.com # Main program # Numbers of ropes to do MinRopes = 1 MaxRopes = 6 for N in range(MinRopes,MaxRopes+1): # ropes is a list of pairs. each pair is: [ends-lit # (0, 1, or 2), time (has been or will be) extinguished]. # We start with extinction time 0 as a dummy value. ropes = [[0,0]]*N time = 0 situation = [ropes,time] # Keep track of the situations we have already processed already_explored = [situation] # This is our list of the durations we can measure times = [] # Recursively explore the achievable situations explore(situation) # Done. Tidy up and finish. if 0 in times: # 0 is not a duration per problem statement. times.remove(0) times.sort() print(N,"ropes measure",len(times), "intervals") # print(times)
[ 2, 371, 3008, 21460, 371, 26458, 422, 1936, 400, 5893, 26022, 13, 785, 198, 198, 2, 8774, 1430, 198, 198, 2, 27797, 286, 31001, 284, 466, 198, 9452, 49, 13920, 796, 352, 198, 11518, 49, 13920, 796, 718, 198, 198, 1640, 399, 287, 2837, 7, 9452, 49, 13920, 11, 11518, 49, 13920, 10, 16, 2599, 198, 197, 2, 31001, 318, 257, 1351, 286, 14729, 13, 1123, 5166, 318, 25, 685, 2412, 12, 18250, 220, 198, 197, 2, 357, 15, 11, 352, 11, 393, 362, 828, 640, 357, 10134, 587, 393, 481, 307, 8, 42774, 4083, 198, 197, 2, 775, 923, 351, 21935, 640, 657, 355, 257, 31548, 1988, 13, 198, 197, 1773, 274, 796, 16410, 15, 11, 15, 11907, 9, 45, 198, 197, 2435, 796, 657, 198, 197, 48937, 2288, 796, 685, 1773, 274, 11, 2435, 60, 628, 197, 2, 9175, 2610, 286, 262, 7445, 356, 423, 1541, 13686, 198, 197, 282, 1493, 62, 20676, 1850, 796, 685, 48937, 2288, 60, 628, 197, 2, 770, 318, 674, 1351, 286, 262, 288, 20074, 356, 460, 3953, 198, 197, 22355, 796, 17635, 628, 197, 2, 3311, 1834, 2280, 7301, 262, 47729, 7445, 198, 197, 20676, 382, 7, 48937, 2288, 8, 628, 197, 2, 24429, 13, 309, 19325, 510, 290, 5461, 13, 198, 197, 361, 657, 287, 1661, 25, 198, 197, 197, 2, 657, 318, 407, 257, 9478, 583, 1917, 2643, 13, 198, 197, 197, 22355, 13, 28956, 7, 15, 8, 198, 197, 22355, 13, 30619, 3419, 198, 197, 4798, 7, 45, 553, 1773, 274, 3953, 1600, 11925, 7, 22355, 828, 366, 3849, 12786, 4943, 198, 197, 2, 3601, 7, 22355, 8, 198, 197, 198 ]
2.919118
272
import os import pandas as pd from sklearn import ensemble from sklearn import preprocessing from sklearn import metrics import joblib import numpy as np import time from . import dispatcher TEST_DATA = os.environ.get("TEST_DATA") MODEL = os.environ.get("MODEL") PATH = os.environ.get("MODEL_PATH") NUM_FOLDS = int(os.environ.get("NUM_FOLDS")) if __name__ == "__main__": print("\nPridicting The Values ......") time.sleep(7) submission = predict(test_data_path=TEST_DATA, model_type=MODEL) submission.loc[:, "id"] = submission.loc[:, "id"].astype(int) submission.to_csv(f"/Users/my_mac/Documents/Machine Learning/ML/input/{MODEL}_submission.csv", index=False)
[ 11748, 28686, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 1341, 35720, 1330, 34549, 198, 6738, 1341, 35720, 1330, 662, 36948, 198, 6738, 1341, 35720, 1330, 20731, 198, 11748, 1693, 8019, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 640, 198, 198, 6738, 764, 1330, 49952, 628, 198, 51, 6465, 62, 26947, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 51, 6465, 62, 26947, 4943, 198, 33365, 3698, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 33365, 3698, 4943, 198, 34219, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 33365, 3698, 62, 34219, 4943, 198, 41359, 62, 37, 3535, 5258, 796, 493, 7, 418, 13, 268, 2268, 13, 1136, 7203, 41359, 62, 37, 3535, 5258, 48774, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 3601, 7203, 59, 77, 47, 6058, 713, 278, 383, 27068, 47082, 4943, 198, 220, 220, 220, 640, 13, 42832, 7, 22, 8, 198, 220, 220, 220, 14498, 796, 4331, 7, 9288, 62, 7890, 62, 6978, 28, 51, 6465, 62, 26947, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2746, 62, 4906, 28, 33365, 3698, 8, 198, 220, 220, 220, 14498, 13, 17946, 58, 45299, 366, 312, 8973, 796, 14498, 13, 17946, 58, 45299, 366, 312, 1, 4083, 459, 2981, 7, 600, 8, 198, 220, 220, 220, 14498, 13, 1462, 62, 40664, 7, 69, 1, 14, 14490, 14, 1820, 62, 20285, 14, 38354, 14, 37573, 18252, 14, 5805, 14, 15414, 14, 90, 33365, 3698, 92, 62, 7266, 3411, 13, 40664, 1600, 6376, 28, 25101, 8, 198 ]
2.561151
278
#!/usr/bin/env python import rospy import tf import roslib import random import math import copy as copy_module from tf.transformations import euler_from_quaternion, quaternion_from_euler from nav_msgs.msg import Odometry from geometry_msgs.msg import Point, Pose, Quaternion, Twist, Vector3 from ackermann_msgs.msg import AckermannDrive if __name__ == '__main__': rospy.loginfo('we are starting') commandManager = CommandEncoder(300) commandManager.provider()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 11748, 686, 2777, 88, 198, 11748, 48700, 198, 11748, 686, 6649, 571, 198, 11748, 4738, 220, 198, 11748, 10688, 198, 11748, 4866, 355, 4866, 62, 21412, 198, 6738, 48700, 13, 35636, 602, 1330, 304, 18173, 62, 6738, 62, 421, 9205, 295, 11, 627, 9205, 295, 62, 6738, 62, 68, 18173, 198, 198, 6738, 6812, 62, 907, 14542, 13, 19662, 1330, 10529, 15748, 198, 6738, 22939, 62, 907, 14542, 13, 19662, 1330, 6252, 11, 37557, 11, 2264, 9205, 295, 11, 44088, 11, 20650, 18, 198, 6738, 257, 694, 2224, 77, 62, 907, 14542, 13, 19662, 1330, 36031, 2224, 77, 24825, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 686, 2777, 88, 13, 6404, 10951, 10786, 732, 389, 3599, 11537, 198, 220, 220, 220, 3141, 13511, 796, 9455, 27195, 12342, 7, 6200, 8, 198, 220, 220, 220, 3141, 13511, 13, 15234, 1304, 3419, 198 ]
2.993711
159
import contextlib import os import signal import subprocess import time from distutils.spawn import find_executable import cudf import pytest from cudf.tests.utils import assert_eq import nvtabular as nvt import nvtabular.ops as ops triton = pytest.importorskip("nvtabular.inference.triton") grpcclient = pytest.importorskip("tritonclient.grpc") tritonclient = pytest.importorskip("tritonclient") _TRITON_SERVER_PATH = find_executable("tritonserver") @contextlib.contextmanager @pytest.mark.skipif(_TRITON_SERVER_PATH is None, reason="Requires tritonserver on the path") @pytest.mark.parametrize("engine", ["parquet"])
[ 11748, 4732, 8019, 198, 11748, 28686, 198, 11748, 6737, 198, 11748, 850, 14681, 198, 11748, 640, 198, 6738, 1233, 26791, 13, 48183, 1330, 1064, 62, 18558, 18187, 198, 198, 11748, 269, 463, 69, 198, 11748, 12972, 9288, 198, 6738, 269, 463, 69, 13, 41989, 13, 26791, 1330, 6818, 62, 27363, 198, 198, 11748, 299, 85, 8658, 934, 355, 299, 36540, 198, 11748, 299, 85, 8658, 934, 13, 2840, 355, 39628, 198, 198, 83, 799, 261, 796, 12972, 9288, 13, 11748, 669, 74, 541, 7203, 48005, 8658, 934, 13, 259, 4288, 13, 83, 799, 261, 4943, 198, 2164, 79, 535, 75, 1153, 796, 12972, 9288, 13, 11748, 669, 74, 541, 7203, 83, 799, 261, 16366, 13, 2164, 14751, 4943, 198, 83, 799, 261, 16366, 796, 12972, 9288, 13, 11748, 669, 74, 541, 7203, 83, 799, 261, 16366, 4943, 628, 198, 62, 5446, 2043, 1340, 62, 35009, 5959, 62, 34219, 796, 1064, 62, 18558, 18187, 7203, 83, 799, 684, 18497, 4943, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 628, 198, 31, 9078, 9288, 13, 4102, 13, 48267, 361, 28264, 5446, 2043, 1340, 62, 35009, 5959, 62, 34219, 318, 6045, 11, 1738, 2625, 39618, 491, 270, 684, 18497, 319, 262, 3108, 4943, 628, 198, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 18392, 1600, 14631, 1845, 21108, 8973, 8, 198 ]
2.842342
222
# -*- coding: utf-8 -*- ''' The networking module for Debian based distros References: * http://www.debian.org/doc/manuals/debian-reference/ch05.en.html ''' # Import python libs from __future__ import absolute_import import functools import logging import os.path import os import re import time # Import third party libs import jinja2 import jinja2.exceptions import salt.ext.six as six from salt.ext.six.moves import StringIO # pylint: disable=import-error,no-name-in-module # Import salt libs import salt.utils import salt.utils.templates import salt.utils.validate.net import salt.utils.odict # Set up logging log = logging.getLogger(__name__) # Set up template environment JINJA = jinja2.Environment( loader=jinja2.FileSystemLoader( os.path.join(salt.utils.templates.TEMPLATE_DIRNAME, 'debian_ip') ) ) # Define the module's virtual name __virtualname__ = 'ip' def __virtual__(): ''' Confine this module to Debian based distros ''' if __grains__['os_family'] == 'Debian': return __virtualname__ return (False, 'The debian_ip module could not be loaded: ' 'unsupported OS family') _ETHTOOL_CONFIG_OPTS = { 'speed': 'link-speed', 'duplex': 'link-duplex', 'autoneg': 'ethernet-autoneg', 'ethernet-port': 'ethernet-port', 'wol': 'ethernet-wol', 'driver-message-level': 'driver-message-level', 'ethernet-pause-rx': 'ethernet-pause-rx', 'ethernet-pause-tx': 'ethernet-pause-tx', 'ethernet-pause-autoneg': 'ethernet-pause-autoneg', 'rx': 'offload-rx', 'tx': 'offload-tx', 'sg': 'offload-sg', 'tso': 'offload-tso', 'ufo': 'offload-ufo', 'gso': 'offload-gso', 'gro': 'offload-gro', 'lro': 'offload-lro', 'hardware-irq-coalesce-adaptive-rx': 'hardware-irq-coalesce-adaptive-rx', 'hardware-irq-coalesce-adaptive-tx': 'hardware-irq-coalesce-adaptive-tx', 'hardware-irq-coalesce-rx-usecs': 'hardware-irq-coalesce-rx-usecs', 'hardware-irq-coalesce-rx-frames': 'hardware-irq-coalesce-rx-frames', 'hardware-dma-ring-rx': 'hardware-dma-ring-rx', 'hardware-dma-ring-rx-mini': 'hardware-dma-ring-rx-mini', 'hardware-dma-ring-rx-jumbo': 'hardware-dma-ring-rx-jumbo', 'hardware-dma-ring-tx': 'hardware-dma-ring-tx', } _REV_ETHTOOL_CONFIG_OPTS = { 'link-speed': 'speed', 'link-duplex': 'duplex', 'ethernet-autoneg': 'autoneg', 'ethernet-port': 'ethernet-port', 'ethernet-wol': 'wol', 'driver-message-level': 'driver-message-level', 'ethernet-pause-rx': 'ethernet-pause-rx', 'ethernet-pause-tx': 'ethernet-pause-tx', 'ethernet-pause-autoneg': 'ethernet-pause-autoneg', 'offload-rx': 'rx', 'offload-tx': 'tx', 'offload-sg': 'sg', 'offload-tso': 'tso', 'offload-ufo': 'ufo', 'offload-gso': 'gso', 'offload-lro': 'lro', 'offload-gro': 'gro', 'hardware-irq-coalesce-adaptive-rx': 'hardware-irq-coalesce-adaptive-rx', 'hardware-irq-coalesce-adaptive-tx': 'hardware-irq-coalesce-adaptive-tx', 'hardware-irq-coalesce-rx-usecs': 'hardware-irq-coalesce-rx-usecs', 'hardware-irq-coalesce-rx-frames': 'hardware-irq-coalesce-rx-frames', 'hardware-dma-ring-rx': 'hardware-dma-ring-rx', 'hardware-dma-ring-rx-mini': 'hardware-dma-ring-rx-mini', 'hardware-dma-ring-rx-jumbo': 'hardware-dma-ring-rx-jumbo', 'hardware-dma-ring-tx': 'hardware-dma-ring-tx', } _DEB_CONFIG_PPPOE_OPTS = { 'user': 'user', 'password': 'password', 'provider': 'provider', 'pppoe_iface': 'pppoe_iface', 'noipdefault': 'noipdefault', 'usepeerdns': 'usepeerdns', 'defaultroute': 'defaultroute', 'holdoff': 'holdoff', 'maxfail': 'maxfail', 'hide-password': 'hide-password', 'lcp-echo-interval': 'lcp-echo-interval', 'lcp-echo-failure': 'lcp-echo-failure', 'connect': 'connect', 'noauth': 'noauth', 'persist': 'persist', 'mtu': 'mtu', 'noaccomp': 'noaccomp', 'linkname': 'linkname', } _DEB_ROUTES_FILE = '/etc/network/routes' _DEB_NETWORK_FILE = '/etc/network/interfaces' _DEB_NETWORK_DIR = '/etc/network/interfaces.d/' _DEB_NETWORK_UP_DIR = '/etc/network/if-up.d/' _DEB_NETWORK_DOWN_DIR = '/etc/network/if-down.d/' _DEB_NETWORK_CONF_FILES = '/etc/modprobe.d/' _DEB_NETWORKING_FILE = '/etc/default/networking' _DEB_HOSTNAME_FILE = '/etc/hostname' _DEB_RESOLV_FILE = '/etc/resolv.conf' _DEB_PPP_DIR = '/etc/ppp/peers/' _CONFIG_TRUE = ['yes', 'on', 'true', '1', True] _CONFIG_FALSE = ['no', 'off', 'false', '0', False] _IFACE_TYPES = [ 'eth', 'bond', 'alias', 'clone', 'ipsec', 'dialup', 'bridge', 'slave', 'vlan', 'pppoe', 'source', ] def _error_msg_iface(iface, option, expected): ''' Build an appropriate error message from a given option and a list of expected values. ''' msg = 'Invalid option -- Interface: {0}, Option: {1}, Expected: [{2}]' return msg.format(iface, option, '|'.join(expected)) def _error_msg_routes(iface, option, expected): ''' Build an appropriate error message from a given option and a list of expected values. ''' msg = 'Invalid option -- Route interface: {0}, Option: {1}, Expected: [{2}]' return msg.format(iface, option, expected) def _error_msg_network(option, expected): ''' Build an appropriate error message from a given option and a list of expected values. ''' msg = 'Invalid network setting -- Setting: {0}, Expected: [{1}]' return msg.format(option, '|'.join(expected)) def _raise_error_iface(iface, option, expected): ''' Log and raise an error with a logical formatted message. ''' msg = _error_msg_iface(iface, option, expected) log.error(msg) raise AttributeError(msg) def _raise_error_network(option, expected): ''' Log and raise an error with a logical formatted message. ''' msg = _error_msg_network(option, expected) log.error(msg) raise AttributeError(msg) def _raise_error_routes(iface, option, expected): ''' Log and raise an error with a logical formatted message. ''' msg = _error_msg_routes(iface, option, expected) log.error(msg) raise AttributeError(msg) def _read_file(path): ''' Reads and returns the contents of a text file ''' try: with salt.utils.flopen(path, 'rb') as contents: return [salt.utils.to_str(line) for line in contents.readlines()] except (OSError, IOError): return '' def _parse_resolve(): ''' Parse /etc/resolv.conf and return domainname ''' contents = _read_file(_DEB_RESOLV_FILE) return contents def _parse_domainname(): ''' Parse /etc/resolv.conf and return domainname ''' contents = _read_file(_DEB_RESOLV_FILE) pattern = r'domain\s+(?P<domain_name>\S+)' prog = re.compile(pattern) for item in contents: match = prog.match(item) if match: return match.group('domain_name') return '' def _parse_searchdomain(): ''' Parse /etc/resolv.conf and return searchdomain ''' contents = _read_file(_DEB_RESOLV_FILE) pattern = r'search\s+(?P<search_domain>\S+)' prog = re.compile(pattern) for item in contents: match = prog.match(item) if match: return match.group('search_domain') return '' def _parse_hostname(): ''' Parse /etc/hostname and return hostname ''' contents = _read_file(_DEB_HOSTNAME_FILE) if contents: return contents[0].split('\n')[0] else: return '' def _parse_current_network_settings(): ''' Parse /etc/default/networking and return current configuration ''' opts = salt.utils.odict.OrderedDict() opts['networking'] = '' if os.path.isfile(_DEB_NETWORKING_FILE): with salt.utils.fopen(_DEB_NETWORKING_FILE) as contents: for line in contents: if line.startswith('#'): continue elif line.startswith('CONFIGURE_INTERFACES'): opts['networking'] = line.split('=', 1)[1].strip() hostname = _parse_hostname() domainname = _parse_domainname() searchdomain = _parse_searchdomain() opts['hostname'] = hostname opts['domainname'] = domainname opts['searchdomain'] = searchdomain return opts # def __validator_func(value): # return (valid: True/False, (transformed) value, error message) def __ipv4_quad(value): '''validate an IPv4 address''' return (salt.utils.validate.net.ipv4_addr(value), value, 'dotted IPv4 address') def __ipv6(value): '''validate an IPv6 address''' return (salt.utils.validate.net.ipv6_addr(value), value, 'IPv6 address') def __mac(value): '''validate a mac address''' return (salt.utils.validate.net.mac(value), value, 'MAC address') def __int(value): '''validate an integer''' valid, _value = False, value try: _value = int(value) valid = True except ValueError: pass return (valid, _value, 'integer') def __float(value): '''validate a float''' valid, _value = False, value try: _value = float(value) valid = True except ValueError: pass return (valid, _value, 'float') def __ipv4_netmask(value): '''validate an IPv4 dotted quad or integer CIDR netmask''' valid, errmsg = False, 'dotted quad or integer CIDR (0->32)' valid, value, _ = __int(value) if not (valid and 0 <= value <= 32): valid = salt.utils.validate.net.netmask(value) return (valid, value, errmsg) def __ipv6_netmask(value): '''validate an IPv6 integer netmask''' valid, errmsg = False, 'IPv6 netmask (0->128)' valid, value, _ = __int(value) valid = (valid and 0 <= value <= 128) return (valid, value, errmsg) def __within2(value, within=None, errmsg=None, dtype=None): '''validate that a value is in ``within`` and optionally a ``dtype``''' valid, _value = False, value if dtype: try: _value = dtype(value) # TODO: this is a bit loose when dtype is a class valid = _value in within except ValueError: pass else: valid = _value in within if errmsg is None: if dtype: typename = getattr(dtype, '__name__', hasattr(dtype, '__class__') and getattr(dtype.__class__, 'name', dtype)) errmsg = '{0} within \'{1}\''.format(typename, within) else: errmsg = 'within \'{0}\''.format(within) return (valid, _value, errmsg) def __space_delimited_list(value): '''validate that a value contains one or more space-delimited values''' valid, _value, errmsg = False, value, 'space-delimited string' try: if hasattr(value, '__iter__'): valid = True # TODO: else: _value = value.split() if _value == []: raise ValueError valid = True except AttributeError: pass except ValueError: pass return (valid, _value, errmsg) SALT_ATTR_TO_DEBIAN_ATTR_MAP = { 'dns': 'dns-nameservers', 'search': 'dns-search', 'hwaddr': 'hwaddress', # TODO: this limits bootp functionality 'ipaddr': 'address', } DEBIAN_ATTR_TO_SALT_ATTR_MAP = dict( (v, k) for (k, v) in six.iteritems(SALT_ATTR_TO_DEBIAN_ATTR_MAP)) # TODO DEBIAN_ATTR_TO_SALT_ATTR_MAP['address'] = 'address' DEBIAN_ATTR_TO_SALT_ATTR_MAP['hwaddress'] = 'hwaddress' IPV4_VALID_PROTO = ['bootp', 'dhcp', 'static', 'manual', 'loopback', 'ppp'] IPV4_ATTR_MAP = { 'proto': __within(IPV4_VALID_PROTO, dtype=str), # ipv4 static & manual 'address': __ipv4_quad, 'netmask': __ipv4_netmask, 'broadcast': __ipv4_quad, 'metric': __int, 'gateway': __ipv4_quad, # supports a colon-delimited list 'pointopoint': __ipv4_quad, 'hwaddress': __mac, 'mtu': __int, 'scope': __within(['global', 'link', 'host'], dtype=str), # dhcp 'hostname': __anything, 'leasehours': __int, 'leasetime': __int, 'vendor': __anything, 'client': __anything, # bootp 'bootfile': __anything, 'server': __ipv4_quad, 'hwaddr': __mac, # tunnel 'mode': __within(['gre', 'GRE', 'ipip', 'IPIP', '802.3ad'], dtype=str), 'endpoint': __ipv4_quad, 'dstaddr': __ipv4_quad, 'local': __ipv4_quad, 'ttl': __int, # bond 'slaves': __anything, # ppp 'provider': __anything, 'unit': __int, 'options': __anything, # resolvconf 'dns-nameservers': __space_delimited_list, 'dns-search': __space_delimited_list, # 'vlan-raw-device': __anything, # 'network': __anything, # i don't know what this is 'test': __anything, # TODO 'enable_ipv6': __anything, # TODO } IPV6_VALID_PROTO = ['auto', 'loopback', 'static', 'manual', 'dhcp', 'v4tunnel', '6to4'] IPV6_ATTR_MAP = { 'proto': __within(IPV6_VALID_PROTO), # ipv6 static & manual 'address': __ipv6, 'netmask': __ipv6_netmask, 'broadcast': __ipv6, 'gateway': __ipv6, # supports a colon-delimited list 'hwaddress': __mac, 'mtu': __int, 'scope': __within(['global', 'site', 'link', 'host'], dtype=str), # inet6 auto 'privext': __within([0, 1, 2], dtype=int), 'dhcp': __within([0, 1], dtype=int), # inet6 static & manual & dhcp 'media': __anything, 'accept_ra': __within([0, 1], dtype=int), 'autoconf': __within([0, 1], dtype=int), 'preferred-lifetime': __int, 'dad-attempts': __int, # 0 to disable 'dad-interval': __float, # bond 'slaves': __anything, # tunnel 'mode': __within(['gre', 'GRE', 'ipip', 'IPIP', '802.3ad'], dtype=str), 'endpoint': __ipv4_quad, 'local': __ipv4_quad, 'ttl': __int, # resolvconf 'dns-nameservers': __space_delimited_list, 'dns-search': __space_delimited_list, # 'vlan-raw-device': __anything, 'test': __anything, # TODO 'enable_ipv6': __anything, # TODO } WIRELESS_ATTR_MAP = { 'wireless-essid': __anything, 'wireless-mode': __anything, # TODO 'wpa-ap-scan': __within([0, 1, 2], dtype=int), # TODO 'wpa-conf': __anything, 'wpa-driver': __anything, 'wpa-group': __anything, 'wpa-key-mgmt': __anything, 'wpa-pairwise': __anything, 'wpa-psk': __anything, 'wpa-proto': __anything, # partial(__within, 'wpa-roam': __anything, 'wpa-ssid': __anything, # TODO } ATTRMAPS = { 'inet': [IPV4_ATTR_MAP, WIRELESS_ATTR_MAP], 'inet6': [IPV6_ATTR_MAP, WIRELESS_ATTR_MAP] } def _validate_interface_option(attr, value, addrfam='inet'): '''lookup the validation function for a [addrfam][attr] and return the results :param attr: attribute name :param value: raw setting value :param addrfam: address family (inet, inet6, ''' valid, _value, errmsg = False, value, 'Unknown validator' attrmaps = ATTRMAPS.get(addrfam, []) for attrmap in attrmaps: if attr in attrmap: validate_func = attrmap[attr] (valid, _value, errmsg) = validate_func(value) break return (valid, _value, errmsg) def _parse_interfaces(interface_files=None): ''' Parse /etc/network/interfaces and return current configured interfaces ''' if interface_files is None: interface_files = [] # Add this later. if os.path.exists(_DEB_NETWORK_DIR): interface_files += ['{0}/{1}'.format(_DEB_NETWORK_DIR, dir) for dir in os.listdir(_DEB_NETWORK_DIR)] if os.path.isfile(_DEB_NETWORK_FILE): interface_files.insert(0, _DEB_NETWORK_FILE) adapters = salt.utils.odict.OrderedDict() method = -1 for interface_file in interface_files: with salt.utils.fopen(interface_file) as interfaces: # This ensures iface_dict exists, but does not ensure we're not reading a new interface. iface_dict = {} for line in interfaces: # Identify the clauses by the first word of each line. # Go to the next line if the current line is a comment # or all spaces. if line.lstrip().startswith('#') or line.isspace(): continue # Parse the iface clause if line.startswith('iface'): sline = line.split() if len(sline) != 4: msg = 'Interface file malformed: {0}.' msg = msg.format(sline) log.error(msg) raise AttributeError(msg) iface_name = sline[1] addrfam = sline[2] method = sline[3] # Create item in dict, if not already there if iface_name not in adapters: adapters[iface_name] = salt.utils.odict.OrderedDict() # Create item in dict, if not already there if 'data' not in adapters[iface_name]: adapters[iface_name]['data'] = salt.utils.odict.OrderedDict() if addrfam not in adapters[iface_name]['data']: adapters[iface_name]['data'][addrfam] = salt.utils.odict.OrderedDict() iface_dict = adapters[iface_name]['data'][addrfam] iface_dict['addrfam'] = addrfam iface_dict['proto'] = method iface_dict['filename'] = interface_file # Parse the detail clauses. elif line[0].isspace(): sline = line.split() # conf file attr: dns-nameservers # salt states.network attr: dns attr, valuestr = line.rstrip().split(None, 1) if _attrmaps_contain_attr(attr): if '-' in attr: attrname = attr.replace('-', '_') else: attrname = attr (valid, value, errmsg) = _validate_interface_option( attr, valuestr, addrfam) iface_dict[attrname] = value elif attr in _REV_ETHTOOL_CONFIG_OPTS: if 'ethtool' not in iface_dict: iface_dict['ethtool'] = salt.utils.odict.OrderedDict() iface_dict['ethtool'][attr] = valuestr elif attr.startswith('bond'): opt = re.split(r'[_-]', attr, maxsplit=1)[1] if 'bonding' not in iface_dict: iface_dict['bonding'] = salt.utils.odict.OrderedDict() iface_dict['bonding'][opt] = valuestr elif attr.startswith('bridge'): opt = re.split(r'[_-]', attr, maxsplit=1)[1] if 'bridging' not in iface_dict: iface_dict['bridging'] = salt.utils.odict.OrderedDict() iface_dict['bridging'][opt] = valuestr elif attr in ['up', 'pre-up', 'post-up', 'down', 'pre-down', 'post-down']: cmd = valuestr cmd_key = '{0}_cmds'.format(re.sub('-', '_', attr)) if cmd_key not in iface_dict: iface_dict[cmd_key] = [] iface_dict[cmd_key].append(cmd) elif line.startswith('auto'): for word in line.split()[1:]: if word not in adapters: adapters[word] = salt.utils.odict.OrderedDict() adapters[word]['enabled'] = True elif line.startswith('allow-hotplug'): for word in line.split()[1:]: if word not in adapters: adapters[word] = salt.utils.odict.OrderedDict() adapters[word]['hotplug'] = True elif line.startswith('source'): if 'source' not in adapters: adapters['source'] = salt.utils.odict.OrderedDict() # Create item in dict, if not already there if 'data' not in adapters['source']: adapters['source']['data'] = salt.utils.odict.OrderedDict() adapters['source']['data']['sources'] = [] adapters['source']['data']['sources'].append(line.split()[1]) # Return a sorted list of the keys for bond, bridge and ethtool options to # ensure a consistent order for iface_name in adapters: if iface_name == 'source': continue if 'data' not in adapters[iface_name]: msg = 'Interface file malformed for interface: {0}.'.format(iface_name) log.error(msg) adapters.pop(iface_name) continue for opt in ['ethtool', 'bonding', 'bridging']: if 'inet' in adapters[iface_name]['data']: if opt in adapters[iface_name]['data']['inet']: opt_keys = sorted(adapters[iface_name]['data']['inet'][opt].keys()) adapters[iface_name]['data']['inet'][opt + '_keys'] = opt_keys return adapters def _parse_ethtool_opts(opts, iface): ''' Filters given options and outputs valid settings for ETHTOOLS_OPTS If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' config = {} if 'autoneg' in opts: if opts['autoneg'] in _CONFIG_TRUE: config.update({'autoneg': 'on'}) elif opts['autoneg'] in _CONFIG_FALSE: config.update({'autoneg': 'off'}) else: _raise_error_iface(iface, 'autoneg', _CONFIG_TRUE + _CONFIG_FALSE) if 'duplex' in opts: valid = ['full', 'half'] if opts['duplex'] in valid: config.update({'duplex': opts['duplex']}) else: _raise_error_iface(iface, 'duplex', valid) if 'speed' in opts: valid = ['10', '100', '1000', '10000'] if str(opts['speed']) in valid: config.update({'speed': opts['speed']}) else: _raise_error_iface(iface, opts['speed'], valid) valid = _CONFIG_TRUE + _CONFIG_FALSE for option in ('rx', 'tx', 'sg', 'tso', 'ufo', 'gso', 'gro', 'lro'): if option in opts: if opts[option] in _CONFIG_TRUE: config.update({option: 'on'}) elif opts[option] in _CONFIG_FALSE: config.update({option: 'off'}) else: _raise_error_iface(iface, option, valid) return config def _parse_ethtool_pppoe_opts(opts, iface): ''' Filters given options and outputs valid settings for ETHTOOLS_PPPOE_OPTS If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' config = {} for opt in _DEB_CONFIG_PPPOE_OPTS: if opt in opts: config[opt] = opts[opt] if 'provider' in opts and not opts['provider']: _raise_error_iface(iface, 'provider', _CONFIG_TRUE + _CONFIG_FALSE) valid = _CONFIG_TRUE + _CONFIG_FALSE for option in ('noipdefault', 'usepeerdns', 'defaultroute', 'hide-password', 'noauth', 'persist', 'noaccomp'): if option in opts: if opts[option] in _CONFIG_TRUE: config.update({option: 'True'}) elif opts[option] in _CONFIG_FALSE: config.update({option: 'False'}) else: _raise_error_iface(iface, option, valid) return config def _parse_settings_bond(opts, iface): ''' Filters given options and outputs valid settings for requested operation. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond_def = { # 803.ad aggregation selection logic # 0 for stable (default) # 1 for bandwidth # 2 for count 'ad_select': '0', # Max number of transmit queues (default = 16) 'tx_queues': '16', # Link monitoring in milliseconds. Most NICs support this 'miimon': '100', # ARP interval in milliseconds 'arp_interval': '250', # Delay before considering link down in milliseconds (miimon * 2) 'downdelay': '200', # lacp_rate 0: Slow - every 30 seconds # lacp_rate 1: Fast - every 1 second 'lacp_rate': '0', # Max bonds for this driver 'max_bonds': '1', # Specifies the time, in milliseconds, to wait before # enabling a slave after a link recovery has been # detected. Only used with miimon. 'updelay': '0', # Used with miimon. # On: driver sends mii # Off: ethtool sends mii 'use_carrier': 'on', # Default. Don't change unless you know what you are doing. 'xmit_hash_policy': 'layer2', } if opts['mode'] in ['balance-rr', '0']: log.info( 'Device: {0} Bonding Mode: load balancing (round-robin)'.format( iface ) ) return _parse_settings_bond_0(opts, iface, bond_def) elif opts['mode'] in ['active-backup', '1']: log.info( 'Device: {0} Bonding Mode: fault-tolerance (active-backup)'.format( iface ) ) return _parse_settings_bond_1(opts, iface, bond_def) elif opts['mode'] in ['balance-xor', '2']: log.info( 'Device: {0} Bonding Mode: load balancing (xor)'.format(iface) ) return _parse_settings_bond_2(opts, iface, bond_def) elif opts['mode'] in ['broadcast', '3']: log.info( 'Device: {0} Bonding Mode: fault-tolerance (broadcast)'.format( iface ) ) return _parse_settings_bond_3(opts, iface, bond_def) elif opts['mode'] in ['802.3ad', '4']: log.info( 'Device: {0} Bonding Mode: IEEE 802.3ad Dynamic link ' 'aggregation'.format(iface) ) return _parse_settings_bond_4(opts, iface, bond_def) elif opts['mode'] in ['balance-tlb', '5']: log.info( 'Device: {0} Bonding Mode: transmit load balancing'.format(iface) ) return _parse_settings_bond_5(opts, iface, bond_def) elif opts['mode'] in ['balance-alb', '6']: log.info( 'Device: {0} Bonding Mode: adaptive load balancing'.format(iface) ) return _parse_settings_bond_6(opts, iface, bond_def) else: valid = [ '0', '1', '2', '3', '4', '5', '6', 'balance-rr', 'active-backup', 'balance-xor', 'broadcast', '802.3ad', 'balance-tlb', 'balance-alb' ] _raise_error_iface(iface, 'mode', valid) def _parse_settings_bond_0(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond0. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '0'} # ARP targets in n.n.n.n form valid = ['list of ips (up to 16)'] if 'arp_ip_target' in opts: if isinstance(opts['arp_ip_target'], list): if 1 <= len(opts['arp_ip_target']) <= 16: bond.update({'arp_ip_target': ''}) for ip in opts['arp_ip_target']: # pylint: disable=C0103 if len(bond['arp_ip_target']) > 0: bond['arp_ip_target'] = bond['arp_ip_target'] + ',' + ip else: bond['arp_ip_target'] = ip else: _raise_error_iface(iface, 'arp_ip_target', valid) else: _raise_error_iface(iface, 'arp_ip_target', valid) else: _raise_error_iface(iface, 'arp_ip_target', valid) if 'arp_interval' in opts: try: int(opts['arp_interval']) bond.update({'arp_interval': opts['arp_interval']}) except ValueError: _raise_error_iface(iface, 'arp_interval', ['integer']) else: _log_default_iface(iface, 'arp_interval', bond_def['arp_interval']) bond.update({'arp_interval': bond_def['arp_interval']}) return bond def _parse_settings_bond_1(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond1. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '1'} for binding in ['miimon', 'downdelay', 'updelay']: if binding in opts: try: int(opts[binding]) bond.update({binding: opts[binding]}) except ValueError: _raise_error_iface(iface, binding, ['integer']) else: _log_default_iface(iface, binding, bond_def[binding]) bond.update({binding: bond_def[binding]}) if 'primary' in opts: bond.update({'primary': opts['primary']}) if not (__grains__['os'] == "Ubuntu" and __grains__['osrelease_info'][0] >= 16): if 'use_carrier' in opts: if opts['use_carrier'] in _CONFIG_TRUE: bond.update({'use_carrier': '1'}) elif opts['use_carrier'] in _CONFIG_FALSE: bond.update({'use_carrier': '0'}) else: valid = _CONFIG_TRUE + _CONFIG_FALSE _raise_error_iface(iface, 'use_carrier', valid) else: _log_default_iface(iface, 'use_carrier', bond_def['use_carrier']) bond.update({'use_carrier': bond_def['use_carrier']}) return bond def _parse_settings_bond_2(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond2. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '2'} valid = ['list of ips (up to 16)'] if 'arp_ip_target' in opts: if isinstance(opts['arp_ip_target'], list): if 1 <= len(opts['arp_ip_target']) <= 16: bond.update({'arp_ip_target': ''}) for ip in opts['arp_ip_target']: # pylint: disable=C0103 if len(bond['arp_ip_target']) > 0: bond['arp_ip_target'] = bond['arp_ip_target'] + ',' + ip else: bond['arp_ip_target'] = ip else: _raise_error_iface(iface, 'arp_ip_target', valid) else: _raise_error_iface(iface, 'arp_ip_target', valid) else: _raise_error_iface(iface, 'arp_ip_target', valid) if 'arp_interval' in opts: try: int(opts['arp_interval']) bond.update({'arp_interval': opts['arp_interval']}) except ValueError: _raise_error_iface(iface, 'arp_interval', ['integer']) else: _log_default_iface(iface, 'arp_interval', bond_def['arp_interval']) bond.update({'arp_interval': bond_def['arp_interval']}) if 'hashing-algorithm' in opts: valid = ['layer2', 'layer2+3', 'layer3+4'] if opts['hashing-algorithm'] in valid: bond.update({'xmit_hash_policy': opts['hashing-algorithm']}) else: _raise_error_iface(iface, 'hashing-algorithm', valid) return bond def _parse_settings_bond_3(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond3. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '3'} for binding in ['miimon', 'downdelay', 'updelay']: if binding in opts: try: int(opts[binding]) bond.update({binding: opts[binding]}) except ValueError: _raise_error_iface(iface, binding, ['integer']) else: _log_default_iface(iface, binding, bond_def[binding]) bond.update({binding: bond_def[binding]}) if 'use_carrier' in opts: if opts['use_carrier'] in _CONFIG_TRUE: bond.update({'use_carrier': '1'}) elif opts['use_carrier'] in _CONFIG_FALSE: bond.update({'use_carrier': '0'}) else: valid = _CONFIG_TRUE + _CONFIG_FALSE _raise_error_iface(iface, 'use_carrier', valid) else: _log_default_iface(iface, 'use_carrier', bond_def['use_carrier']) bond.update({'use_carrier': bond_def['use_carrier']}) return bond def _parse_settings_bond_4(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond4. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '4'} for binding in ['miimon', 'downdelay', 'updelay', 'lacp_rate', 'ad_select']: if binding in opts: if binding == 'lacp_rate': if opts[binding] == 'fast': opts.update({binding: '1'}) if opts[binding] == 'slow': opts.update({binding: '0'}) valid = ['fast', '1', 'slow', '0'] else: valid = ['integer'] try: int(opts[binding]) bond.update({binding: opts[binding]}) except ValueError: _raise_error_iface(iface, binding, valid) else: _log_default_iface(iface, binding, bond_def[binding]) bond.update({binding: bond_def[binding]}) if 'use_carrier' in opts: if opts['use_carrier'] in _CONFIG_TRUE: bond.update({'use_carrier': '1'}) elif opts['use_carrier'] in _CONFIG_FALSE: bond.update({'use_carrier': '0'}) else: valid = _CONFIG_TRUE + _CONFIG_FALSE _raise_error_iface(iface, 'use_carrier', valid) else: _log_default_iface(iface, 'use_carrier', bond_def['use_carrier']) bond.update({'use_carrier': bond_def['use_carrier']}) if 'hashing-algorithm' in opts: valid = ['layer2', 'layer2+3', 'layer3+4'] if opts['hashing-algorithm'] in valid: bond.update({'xmit_hash_policy': opts['hashing-algorithm']}) else: _raise_error_iface(iface, 'hashing-algorithm', valid) return bond def _parse_settings_bond_5(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond5. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '5'} for binding in ['miimon', 'downdelay', 'updelay']: if binding in opts: try: int(opts[binding]) bond.update({binding: opts[binding]}) except ValueError: _raise_error_iface(iface, binding, ['integer']) else: _log_default_iface(iface, binding, bond_def[binding]) bond.update({binding: bond_def[binding]}) if 'use_carrier' in opts: if opts['use_carrier'] in _CONFIG_TRUE: bond.update({'use_carrier': '1'}) elif opts['use_carrier'] in _CONFIG_FALSE: bond.update({'use_carrier': '0'}) else: valid = _CONFIG_TRUE + _CONFIG_FALSE _raise_error_iface(iface, 'use_carrier', valid) else: _log_default_iface(iface, 'use_carrier', bond_def['use_carrier']) bond.update({'use_carrier': bond_def['use_carrier']}) if 'primary' in opts: bond.update({'primary': opts['primary']}) return bond def _parse_settings_bond_6(opts, iface, bond_def): ''' Filters given options and outputs valid settings for bond6. If an option has a value that is not expected, this function will log what the Interface, Setting and what it was expecting. ''' bond = {'mode': '6'} for binding in ['miimon', 'downdelay', 'updelay']: if binding in opts: try: int(opts[binding]) bond.update({binding: opts[binding]}) except ValueError: _raise_error_iface(iface, binding, ['integer']) else: _log_default_iface(iface, binding, bond_def[binding]) bond.update({binding: bond_def[binding]}) if 'use_carrier' in opts: if opts['use_carrier'] in _CONFIG_TRUE: bond.update({'use_carrier': '1'}) elif opts['use_carrier'] in _CONFIG_FALSE: bond.update({'use_carrier': '0'}) else: valid = _CONFIG_TRUE + _CONFIG_FALSE _raise_error_iface(iface, 'use_carrier', valid) else: _log_default_iface(iface, 'use_carrier', bond_def['use_carrier']) bond.update({'use_carrier': bond_def['use_carrier']}) if 'primary' in opts: bond.update({'primary': opts['primary']}) return bond def _parse_bridge_opts(opts, iface): ''' Filters given options and outputs valid settings for BRIDGING_OPTS If an option has a value that is not expected, this function will log the Interface, Setting and what was expected. ''' config = {} if 'ports' in opts: if isinstance(opts['ports'], list): opts['ports'] = ' '.join(opts['ports']) config.update({'ports': opts['ports']}) for opt in ['ageing', 'fd', 'gcint', 'hello', 'maxage']: if opt in opts: try: float(opts[opt]) config.update({opt: opts[opt]}) except ValueError: _raise_error_iface(iface, opt, ['float']) for opt in ['bridgeprio', 'maxwait']: if opt in opts: if isinstance(opts[opt], int): config.update({opt: opts[opt]}) else: _raise_error_iface(iface, opt, ['integer']) if 'hw' in opts: # match 12 hex digits with either : or - as separators between pairs if re.match('[0-9a-f]{2}([-:])[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$', opts['hw'].lower()): config.update({'hw': opts['hw']}) else: _raise_error_iface(iface, 'hw', ['valid MAC address']) for opt in ['pathcost', 'portprio']: if opt in opts: try: port, cost_or_prio = opts[opt].split() int(cost_or_prio) config.update({opt: '{0} {1}'.format(port, cost_or_prio)}) except ValueError: _raise_error_iface(iface, opt, ['interface integer']) if 'stp' in opts: if opts['stp'] in _CONFIG_TRUE: config.update({'stp': 'on'}) elif opts['stp'] in _CONFIG_FALSE: config.update({'stp': 'off'}) else: _raise_error_iface(iface, 'stp', _CONFIG_TRUE + _CONFIG_FALSE) if 'waitport' in opts: if isinstance(opts['waitport'], int): config.update({'waitport': opts['waitport']}) else: values = opts['waitport'].split() waitport_time = values.pop(0) if waitport_time.isdigit() and values: config.update({ 'waitport': '{0} {1}'.format( waitport_time, ' '.join(values) ) }) else: _raise_error_iface(iface, opt, ['integer [interfaces]']) return config def _parse_settings_eth(opts, iface_type, enabled, iface): ''' Filters given options and outputs valid settings for a network interface. ''' adapters = salt.utils.odict.OrderedDict() adapters[iface] = salt.utils.odict.OrderedDict() adapters[iface]['type'] = iface_type adapters[iface]['data'] = salt.utils.odict.OrderedDict() iface_data = adapters[iface]['data'] iface_data['inet'] = salt.utils.odict.OrderedDict() iface_data['inet6'] = salt.utils.odict.OrderedDict() if enabled: adapters[iface]['enabled'] = True if opts.get('hotplug', False): adapters[iface]['hotplug'] = True # Defaults assume IPv4 (inet) interfaces unless enable_ipv6=True def_addrfam = 'inet' dual_stack = False # If enable_ipv6=True, then expet either IPv6-only or dual stack. if 'enable_ipv6' in opts and opts['enable_ipv6']: iface_data['inet6']['addrfam'] = 'inet6' iface_data['inet6']['netmask'] = '64' # defaults to 64 def_addrfam = 'inet6' if 'iface_type' in opts and opts['iface_type'] == 'vlan': iface_data['inet6']['vlan_raw_device'] = ( re.sub(r'\.\d*', '', iface)) if 'ipaddr' in opts and 'ipv6ipaddr' in opts: # If both 'ipaddr' and 'ipv6ipaddr' are present; expect dual stack iface_data['inet']['addrfam'] = 'inet' def_addrfam = 'inet' dual_stack = True else: # If enable_ipv6=False|None, IPv6 settings should not be set. iface_data['inet']['addrfam'] = 'inet' if iface_type not in ['bridge']: tmp_ethtool = _parse_ethtool_opts(opts, iface) if tmp_ethtool: ethtool = {} for item in tmp_ethtool: ethtool[_ETHTOOL_CONFIG_OPTS[item]] = tmp_ethtool[item] iface_data[def_addrfam]['ethtool'] = ethtool # return a list of sorted keys to ensure consistent order iface_data[def_addrfam]['ethtool_keys'] = sorted(ethtool) if iface_type == 'bridge': bridging = _parse_bridge_opts(opts, iface) if bridging: opts.pop('mode', None) iface_data[def_addrfam]['bridging'] = bridging iface_data[def_addrfam]['bridging_keys'] = sorted(bridging) iface_data[def_addrfam]['addrfam'] = def_addrfam elif iface_type == 'bond': bonding = _parse_settings_bond(opts, iface) if bonding: opts.pop('mode', None) iface_data[def_addrfam]['bonding'] = bonding iface_data[def_addrfam]['bonding']['slaves'] = opts['slaves'] iface_data[def_addrfam]['bonding_keys'] = sorted(bonding) iface_data[def_addrfam]['addrfam'] = def_addrfam elif iface_type == 'slave': adapters[iface]['master'] = opts['master'] opts['proto'] = 'manual' iface_data[def_addrfam]['master'] = adapters[iface]['master'] iface_data[def_addrfam]['addrfam'] = def_addrfam elif iface_type == 'vlan': iface_data[def_addrfam]['vlan_raw_device'] = re.sub(r'\.\d*', '', iface) iface_data[def_addrfam]['addrfam'] = def_addrfam elif iface_type == 'pppoe': tmp_ethtool = _parse_ethtool_pppoe_opts(opts, iface) if tmp_ethtool: for item in tmp_ethtool: adapters[iface]['data'][def_addrfam][_DEB_CONFIG_PPPOE_OPTS[item]] = tmp_ethtool[item] iface_data[def_addrfam]['addrfam'] = def_addrfam for opt in opts: # trim leading "ipv6" from option if opt.startswith('ipv6'): optname = opt[4:] # trim off the ipv6 v6only = True else: optname = opt v6only = False _optname = SALT_ATTR_TO_DEBIAN_ATTR_MAP.get(optname, optname) if _attrmaps_contain_attr(_optname): valuestr = opts[opt] # default to 'static' if proto is 'none' if optname == 'proto' and valuestr == 'none': valuestr = 'static' # If option is v6-only, don't validate against inet and always set value if v6only: (valid, value, errmsg) = _validate_interface_option( _optname, valuestr, addrfam='inet6') if not valid: _raise_error_iface(iface, '\'{0}\' \'{1}\''.format(opt, valuestr), [errmsg]) # replace dashes with underscores for jinja _optname = _optname.replace('-', '_') iface_data['inet6'][_optname] = value # Else, if it's a dual stack, the option may belong in both; apply v4 opt as v6 default elif dual_stack: valid_once = False errmsg = None for addrfam in ['inet', 'inet6']: (valid, value, errmsg) = _validate_interface_option( _optname, valuestr, addrfam=addrfam) if valid: valid_once = True # replace dashes with underscores for jinja _optname = _optname.replace('-', '_') # if a v6-only version of this option was set; don't override # otherwise, if dual stack, use the v4 version as a default value for v6 # allows overriding with =None if addrfam == 'inet' or _optname not in iface_data['inet6']: iface_data[addrfam][_optname] = value if not valid_once: _raise_error_iface( iface, '\'{0}\' \'{1}\''.format(opt, valuestr), [errmsg] ) # Else, it goes in the default(only) addrfam # Not assuming v4 allows a v6 block to be created without lots of "ipv6" prefixes else: (valid, value, errmsg) = _validate_interface_option( _optname, valuestr, addrfam=def_addrfam) if not valid: _raise_error_iface( iface, '\'{0}\' \'{1}\''.format(opt, valuestr), [errmsg] ) # replace dashes with underscores for jinja _optname = _optname.replace('-', '_') iface_data[def_addrfam][_optname] = value for opt in ['up_cmds', 'pre_up_cmds', 'post_up_cmds', 'down_cmds', 'pre_down_cmds', 'post_down_cmds']: if opt in opts: iface_data['inet'][opt] = opts[opt] for addrfam in ['inet', 'inet6']: if 'addrfam' in iface_data[addrfam] and iface_data[addrfam]['addrfam'] == addrfam: pass else: iface_data.pop(addrfam) return adapters def _parse_settings_source(opts, iface_type, enabled, iface): ''' Filters given options and outputs valid settings for a network interface. ''' adapters = salt.utils.odict.OrderedDict() adapters[iface] = salt.utils.odict.OrderedDict() adapters[iface]['type'] = iface_type adapters[iface]['data'] = salt.utils.odict.OrderedDict() iface_data = adapters[iface]['data'] iface_data['sources'] = [opts['source']] return adapters def _parse_network_settings(opts, current): ''' Filters given options and outputs valid settings for the global network settings file. ''' # Normalize keys opts = dict((k.lower(), v) for (k, v) in six.iteritems(opts)) current = dict((k.lower(), v) for (k, v) in six.iteritems(current)) result = {} valid = _CONFIG_TRUE + _CONFIG_FALSE if 'enabled' not in opts: try: opts['networking'] = current['networking'] _log_default_network('networking', current['networking']) except ValueError: _raise_error_network('networking', valid) else: opts['networking'] = opts['enabled'] if opts['networking'] in valid: if opts['networking'] in _CONFIG_TRUE: result['networking'] = 'yes' elif opts['networking'] in _CONFIG_FALSE: result['networking'] = 'no' else: _raise_error_network('networking', valid) if 'hostname' not in opts: try: opts['hostname'] = current['hostname'] _log_default_network('hostname', current['hostname']) except ValueError: _raise_error_network('hostname', ['server1.example.com']) if opts['hostname']: result['hostname'] = opts['hostname'] else: _raise_error_network('hostname', ['server1.example.com']) if 'search' in opts: result['search'] = opts['search'] return result def _parse_routes(iface, opts): ''' Filters given options and outputs valid settings for the route settings file. ''' # Normalize keys opts = dict((k.lower(), v) for (k, v) in six.iteritems(opts)) result = {} if 'routes' not in opts: _raise_error_routes(iface, 'routes', 'List of routes') for opt in opts: result[opt] = opts[opt] return result def _write_file(iface, data, folder, pattern): ''' Writes a file to disk ''' filename = os.path.join(folder, pattern.format(iface)) if not os.path.exists(folder): msg = '{0} cannot be written. {1} does not exist' msg = msg.format(filename, folder) log.error(msg) raise AttributeError(msg) with salt.utils.flopen(filename, 'w') as fout: fout.write(data) return filename def _write_file_routes(iface, data, folder, pattern): ''' Writes a file to disk ''' filename = os.path.join(folder, pattern.format(iface)) if not os.path.exists(folder): msg = '{0} cannot be written. {1} does not exist' msg = msg.format(filename, folder) log.error(msg) raise AttributeError(msg) with salt.utils.flopen(filename, 'w') as fout: fout.write(data) __salt__['file.set_mode'](filename, '0755') return filename def _write_file_network(data, filename, create=False): ''' Writes a file to disk If file does not exist, only create if create argument is True ''' if not os.path.exists(filename) and not create: msg = '{0} cannot be written. {0} does not exist\ and create is set to False' msg = msg.format(filename) log.error(msg) raise AttributeError(msg) with salt.utils.flopen(filename, 'w') as fout: fout.write(data) def _read_temp(data): ''' Return what would be written to disk ''' tout = StringIO() tout.write(data) tout.seek(0) output = tout.readlines() tout.close() return output def _read_temp_ifaces(iface, data): ''' Return what would be written to disk for interfaces ''' try: template = JINJA.get_template('debian_eth.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template debian_eth.jinja') return '' ifcfg = template.render({'name': iface, 'data': data}) # Return as a array so the difflib works return [item + '\n' for item in ifcfg.split('\n')] def _write_file_ifaces(iface, data, **settings): ''' Writes a file to disk ''' try: eth_template = JINJA.get_template('debian_eth.jinja') source_template = JINJA.get_template('debian_source.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template debian_eth.jinja') return '' # Read /etc/network/interfaces into a dict adapters = _parse_interfaces() # Apply supplied settings over on-disk settings adapters[iface] = data ifcfg = '' for adapter in adapters: if 'type' in adapters[adapter] and adapters[adapter]['type'] == 'source': tmp = source_template.render({'name': adapter, 'data': adapters[adapter]}) else: tmp = eth_template.render({'name': adapter, 'data': adapters[adapter]}) ifcfg = ifcfg + tmp if adapter == iface: saved_ifcfg = tmp _SEPERATE_FILE = False if 'filename' in settings: if not settings['filename'].startswith('/'): filename = '{0}/{1}'.format(_DEB_NETWORK_DIR, settings['filename']) else: filename = settings['filename'] _SEPERATE_FILE = True else: if 'filename' in adapters[adapter]['data']: filename = adapters[adapter]['data'] else: filename = _DEB_NETWORK_FILE if not os.path.exists(os.path.dirname(filename)): msg = '{0} cannot be written.' msg = msg.format(os.path.dirname(filename)) log.error(msg) raise AttributeError(msg) with salt.utils.flopen(filename, 'w') as fout: if _SEPERATE_FILE: fout.write(saved_ifcfg) else: fout.write(ifcfg) # Return as a array so the difflib works return saved_ifcfg.split('\n') def _write_file_ppp_ifaces(iface, data): ''' Writes a file to disk ''' try: template = JINJA.get_template('debian_ppp_eth.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template debian_ppp_eth.jinja') return '' adapters = _parse_interfaces() adapters[iface] = data ifcfg = '' tmp = template.render({'data': adapters[iface]}) ifcfg = tmp + ifcfg filename = _DEB_PPP_DIR + '/' + adapters[iface]['data']['inet']['provider'] if not os.path.exists(os.path.dirname(filename)): msg = '{0} cannot be written.' msg = msg.format(os.path.dirname(filename)) log.error(msg) raise AttributeError(msg) with salt.utils.fopen(filename, 'w') as fout: fout.write(ifcfg) # Return as a array so the difflib works return filename def build_bond(iface, **settings): ''' Create a bond script in /etc/modprobe.d with the passed settings and load the bonding kernel module. CLI Example: .. code-block:: bash salt '*' ip.build_bond bond0 mode=balance-alb ''' deb_major = __grains__['osrelease'][:1] opts = _parse_settings_bond(settings, iface) try: template = JINJA.get_template('conf.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template conf.jinja') return '' data = template.render({'name': iface, 'bonding': opts}) if 'test' in settings and settings['test']: return _read_temp(data) _write_file(iface, data, _DEB_NETWORK_CONF_FILES, '{0}.conf'.format(iface)) path = os.path.join(_DEB_NETWORK_CONF_FILES, '{0}.conf'.format(iface)) if deb_major == '5': for line_type in ('alias', 'options'): cmd = ['sed', '-i', '-e', r'/^{0}\s{1}.*/d'.format(line_type, iface), '/etc/modprobe.conf'] __salt__['cmd.run'](cmd, python_shell=False) __salt__['file.append']('/etc/modprobe.conf', path) # Load kernel module __salt__['kmod.load']('bonding') # install ifenslave-2.6 __salt__['pkg.install']('ifenslave-2.6') return _read_file(path) def build_interface(iface, iface_type, enabled, **settings): ''' Build an interface script for a network interface. CLI Example: .. code-block:: bash salt '*' ip.build_interface eth0 eth <settings> ''' iface = iface.lower() iface_type = iface_type.lower() if iface_type not in _IFACE_TYPES: _raise_error_iface(iface, iface_type, _IFACE_TYPES) if 'proto' not in settings: settings['proto'] = 'static' if iface_type == 'slave': settings['slave'] = 'yes' if 'master' not in settings: msg = 'master is a required setting for slave interfaces' log.error(msg) raise AttributeError(msg) elif iface_type == 'vlan': settings['vlan'] = 'yes' __salt__['pkg.install']('vlan') elif iface_type == 'pppoe': settings['pppoe'] = 'yes' if not __salt__['pkg.version']('ppp'): inst = __salt__['pkg.install']('ppp') elif iface_type == 'bond': if 'slaves' not in settings: msg = 'slaves is a required setting for bond interfaces' log.error(msg) raise AttributeError(msg) elif iface_type == 'bridge': if 'ports' not in settings: msg = ( 'ports is a required setting for bridge interfaces on Debian ' 'or Ubuntu based systems' ) log.error(msg) raise AttributeError(msg) __salt__['pkg.install']('bridge-utils') if iface_type in ['eth', 'bond', 'bridge', 'slave', 'vlan', 'pppoe']: opts = _parse_settings_eth(settings, iface_type, enabled, iface) if iface_type in ['source']: opts = _parse_settings_source(settings, iface_type, enabled, iface) if 'test' in settings and settings['test']: return _read_temp_ifaces(iface, opts[iface]) ifcfg = _write_file_ifaces(iface, opts[iface], **settings) if iface_type == 'pppoe': _write_file_ppp_ifaces(iface, opts[iface]) # ensure lines in list end with newline, so difflib works return [item + '\n' for item in ifcfg] def build_routes(iface, **settings): ''' Add route scripts for a network interface using up commands. CLI Example: .. code-block:: bash salt '*' ip.build_routes eth0 <settings> ''' iface = iface.lower() opts = _parse_routes(iface, settings) try: template = JINJA.get_template('route_eth.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template route_eth.jinja') return '' add_routecfg = template.render(route_type='add', routes=opts['routes'], iface=iface) del_routecfg = template.render(route_type='del', routes=opts['routes'], iface=iface) if 'test' in settings and settings['test']: return _read_temp(add_routecfg + del_routecfg) filename = _write_file_routes(iface, add_routecfg, _DEB_NETWORK_UP_DIR, 'route-{0}') results = _read_file(filename) filename = _write_file_routes(iface, del_routecfg, _DEB_NETWORK_DOWN_DIR, 'route-{0}') results += _read_file(filename) return results def down(iface, iface_type): ''' Shutdown a network interface CLI Example: .. code-block:: bash salt '*' ip.down eth0 eth ''' # Slave devices are controlled by the master. # Source 'interfaces' aren't brought down. if iface_type not in ['slave', 'source']: return __salt__['cmd.run'](['ifdown', iface]) return None def get_bond(iface): ''' Return the content of a bond script CLI Example: .. code-block:: bash salt '*' ip.get_bond bond0 ''' path = os.path.join(_DEB_NETWORK_CONF_FILES, '{0}.conf'.format(iface)) return _read_file(path) def get_interface(iface): ''' Return the contents of an interface script CLI Example: .. code-block:: bash salt '*' ip.get_interface eth0 ''' adapters = _parse_interfaces() if iface in adapters: try: if iface == 'source': template = JINJA.get_template('debian_source.jinja') else: template = JINJA.get_template('debian_eth.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template debian_eth.jinja') return '' ifcfg = template.render({'name': iface, 'data': adapters[iface]}) # ensure lines in list end with newline, so difflib works return [item + '\n' for item in ifcfg.split('\n')] else: return [] def up(iface, iface_type): # pylint: disable=C0103 ''' Start up a network interface CLI Example: .. code-block:: bash salt '*' ip.up eth0 eth ''' # Slave devices are controlled by the master. # Source 'interfaces' aren't brought up. if iface_type not in ('slave', 'source'): return __salt__['cmd.run'](['ifup', iface]) return None def get_network_settings(): ''' Return the contents of the global network script. CLI Example: .. code-block:: bash salt '*' ip.get_network_settings ''' skip_etc_default_networking = ( __grains__['osfullname'] == 'Ubuntu' and int(__grains__['osrelease'].split('.')[0]) >= 12) if skip_etc_default_networking: settings = {} if __salt__['service.available']('networking'): if __salt__['service.status']('networking'): settings['networking'] = "yes" else: settings['networking'] = "no" else: settings['networking'] = "no" hostname = _parse_hostname() domainname = _parse_domainname() settings['hostname'] = hostname settings['domainname'] = domainname else: settings = _parse_current_network_settings() try: template = JINJA.get_template('display-network.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template display-network.jinja') return '' network = template.render(settings) return _read_temp(network) def get_routes(iface): ''' Return the routes for the interface CLI Example: .. code-block:: bash salt '*' ip.get_routes eth0 ''' filename = os.path.join(_DEB_NETWORK_UP_DIR, 'route-{0}'.format(iface)) results = _read_file(filename) filename = os.path.join(_DEB_NETWORK_DOWN_DIR, 'route-{0}'.format(iface)) results += _read_file(filename) return results def apply_network_settings(**settings): ''' Apply global network configuration. CLI Example: .. code-block:: bash salt '*' ip.apply_network_settings ''' if 'require_reboot' not in settings: settings['require_reboot'] = False if 'apply_hostname' not in settings: settings['apply_hostname'] = False hostname_res = True if settings['apply_hostname'] in _CONFIG_TRUE: if 'hostname' in settings: hostname_res = __salt__['network.mod_hostname'](settings['hostname']) else: log.warning( 'The network state sls is trying to apply hostname ' 'changes but no hostname is defined.' ) hostname_res = False res = True if settings['require_reboot'] in _CONFIG_TRUE: log.warning( 'The network state sls is requiring a reboot of the system to ' 'properly apply network configuration.' ) res = True else: stop = __salt__['service.stop']('networking') time.sleep(2) res = stop and __salt__['service.start']('networking') return hostname_res and res def build_network_settings(**settings): ''' Build the global network script. CLI Example: .. code-block:: bash salt '*' ip.build_network_settings <settings> ''' changes = [] # Read current configuration and store default values current_network_settings = _parse_current_network_settings() # Build settings opts = _parse_network_settings(settings, current_network_settings) # Ubuntu has moved away from /etc/default/networking # beginning with the 12.04 release so we disable or enable # the networking related services on boot skip_etc_default_networking = ( __grains__['osfullname'] == 'Ubuntu' and int(__grains__['osrelease'].split('.')[0]) >= 12) if skip_etc_default_networking: if opts['networking'] == 'yes': service_cmd = 'service.enable' else: service_cmd = 'service.disable' if __salt__['service.available']('NetworkManager'): __salt__[service_cmd]('NetworkManager') if __salt__['service.available']('networking'): __salt__[service_cmd]('networking') else: try: template = JINJA.get_template('network.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template network.jinja') return '' network = template.render(opts) if 'test' in settings and settings['test']: return _read_temp(network) # Write settings _write_file_network(network, _DEB_NETWORKING_FILE, True) # Write hostname to /etc/hostname sline = opts['hostname'].split('.', 1) opts['hostname'] = sline[0] hostname = '{0}\n' . format(opts['hostname']) current_domainname = current_network_settings['domainname'] current_searchdomain = current_network_settings['searchdomain'] # Only write the hostname if it has changed if not opts['hostname'] == current_network_settings['hostname']: if not ('test' in settings and settings['test']): # TODO replace wiht a call to network.mod_hostname instead _write_file_network(hostname, _DEB_HOSTNAME_FILE) new_domain = False if len(sline) > 1: new_domainname = sline[1] if new_domainname != current_domainname: domainname = new_domainname opts['domainname'] = new_domainname new_domain = True else: domainname = current_domainname opts['domainname'] = domainname else: domainname = current_domainname opts['domainname'] = domainname new_search = False if 'search' in opts: new_searchdomain = opts['search'] if new_searchdomain != current_searchdomain: searchdomain = new_searchdomain opts['searchdomain'] = new_searchdomain new_search = True else: searchdomain = current_searchdomain opts['searchdomain'] = searchdomain else: searchdomain = current_searchdomain opts['searchdomain'] = searchdomain # If the domain changes, then we should write the resolv.conf file. if new_domain or new_search: # Look for existing domain line and update if necessary contents = _parse_resolve() domain_prog = re.compile(r'domain\s+(?P<domain_name>\S+)') search_prog = re.compile(r'search\s+(?P<search_domain>\S+)') new_contents = [] found_domain = False found_search = False for item in contents: domain_match = domain_prog.match(item) search_match = search_prog.match(item) if domain_match: new_contents.append('domain {0}\n' . format(domainname)) found_domain = True elif search_match: new_contents.append('search {0}\n' . format(searchdomain)) found_search = True else: new_contents.append(item) # A domain line didn't exist so we'll add one in # with the new domainname if not found_domain: new_contents.insert(0, 'domain {0}\n' . format(domainname)) # A search line didn't exist so we'll add one in # with the new search domain if not found_search: if new_contents[0].startswith('domain'): new_contents.insert(1, 'search {0}\n' . format(searchdomain)) else: new_contents.insert(0, 'search {0}\n' . format(searchdomain)) new_resolv = ''.join(new_contents) # Write /etc/resolv.conf if not ('test' in settings and settings['test']): _write_file_network(new_resolv, _DEB_RESOLV_FILE) # used for returning the results back try: template = JINJA.get_template('display-network.jinja') except jinja2.exceptions.TemplateNotFound: log.error('Could not load template display-network.jinja') return '' network = template.render(opts) changes.extend(_read_temp(network)) return changes
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 7061, 6, 198, 464, 19140, 8265, 329, 26062, 1912, 1233, 4951, 198, 198, 19927, 25, 198, 198, 9, 2638, 1378, 2503, 13, 24689, 13, 2398, 14, 15390, 14, 805, 723, 82, 14, 24689, 12, 35790, 14, 354, 2713, 13, 268, 13, 6494, 198, 7061, 6, 198, 198, 2, 17267, 21015, 9195, 82, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 11748, 1257, 310, 10141, 198, 11748, 18931, 198, 11748, 28686, 13, 6978, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 640, 198, 198, 2, 17267, 2368, 2151, 9195, 82, 198, 11748, 474, 259, 6592, 17, 198, 11748, 474, 259, 6592, 17, 13, 1069, 11755, 198, 11748, 8268, 13, 2302, 13, 19412, 355, 2237, 198, 6738, 8268, 13, 2302, 13, 19412, 13, 76, 5241, 1330, 10903, 9399, 220, 1303, 279, 2645, 600, 25, 15560, 28, 11748, 12, 18224, 11, 3919, 12, 3672, 12, 259, 12, 21412, 198, 198, 2, 17267, 8268, 9195, 82, 198, 11748, 8268, 13, 26791, 198, 11748, 8268, 13, 26791, 13, 11498, 17041, 198, 11748, 8268, 13, 26791, 13, 12102, 378, 13, 3262, 198, 11748, 8268, 13, 26791, 13, 375, 713, 628, 198, 2, 5345, 510, 18931, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 198, 2, 5345, 510, 11055, 2858, 198, 41, 1268, 37048, 796, 474, 259, 6592, 17, 13, 31441, 7, 198, 220, 220, 220, 40213, 28, 18594, 6592, 17, 13, 8979, 11964, 17401, 7, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 6978, 13, 22179, 7, 82, 2501, 13, 26791, 13, 11498, 17041, 13, 51, 3620, 6489, 6158, 62, 34720, 20608, 11, 705, 24689, 62, 541, 11537, 198, 220, 220, 220, 1267, 198, 8, 198, 198, 2, 2896, 500, 262, 8265, 338, 7166, 1438, 198, 834, 32844, 3672, 834, 796, 705, 541, 6, 628, 198, 4299, 11593, 32844, 834, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7326, 500, 428, 8265, 284, 26062, 1912, 1233, 4951, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 11593, 2164, 1299, 834, 17816, 418, 62, 17989, 20520, 6624, 705, 16587, 666, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 11593, 32844, 3672, 834, 198, 220, 220, 220, 1441, 357, 25101, 11, 705, 464, 50001, 62, 541, 8265, 714, 407, 307, 9639, 25, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 403, 15999, 7294, 1641, 11537, 628, 198, 62, 2767, 6535, 31559, 62, 10943, 16254, 62, 3185, 4694, 796, 1391, 198, 220, 220, 220, 705, 12287, 10354, 705, 8726, 12, 12287, 3256, 198, 220, 220, 220, 705, 646, 11141, 10354, 705, 8726, 12, 646, 11141, 3256, 198, 220, 220, 220, 705, 2306, 505, 70, 10354, 705, 316, 2881, 316, 12, 2306, 505, 70, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 634, 10354, 705, 316, 2881, 316, 12, 634, 3256, 198, 220, 220, 220, 705, 86, 349, 10354, 705, 316, 2881, 316, 12, 86, 349, 3256, 198, 220, 220, 220, 705, 26230, 12, 20500, 12, 5715, 10354, 705, 26230, 12, 20500, 12, 5715, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 40914, 10354, 705, 316, 2881, 316, 12, 32125, 12, 40914, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 17602, 10354, 705, 316, 2881, 316, 12, 32125, 12, 17602, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 2306, 505, 70, 10354, 705, 316, 2881, 316, 12, 32125, 12, 2306, 505, 70, 3256, 198, 220, 220, 220, 705, 40914, 10354, 705, 2364, 2220, 12, 40914, 3256, 198, 220, 220, 220, 705, 17602, 10354, 705, 2364, 2220, 12, 17602, 3256, 198, 220, 220, 220, 705, 45213, 10354, 705, 2364, 2220, 12, 45213, 3256, 198, 220, 220, 220, 705, 83, 568, 10354, 705, 2364, 2220, 12, 83, 568, 3256, 198, 220, 220, 220, 705, 3046, 78, 10354, 705, 2364, 2220, 12, 3046, 78, 3256, 198, 220, 220, 220, 705, 70, 568, 10354, 705, 2364, 2220, 12, 70, 568, 3256, 198, 220, 220, 220, 705, 27333, 10354, 705, 2364, 2220, 12, 27333, 3256, 198, 220, 220, 220, 705, 75, 305, 10354, 705, 2364, 2220, 12, 75, 305, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 40914, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 40914, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 17602, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 17602, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 1904, 6359, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 1904, 6359, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 37805, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 37805, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 45313, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 45313, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 73, 29309, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 73, 29309, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 17602, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 17602, 3256, 198, 92, 198, 198, 62, 2200, 53, 62, 2767, 6535, 31559, 62, 10943, 16254, 62, 3185, 4694, 796, 1391, 198, 220, 220, 220, 705, 8726, 12, 12287, 10354, 705, 12287, 3256, 198, 220, 220, 220, 705, 8726, 12, 646, 11141, 10354, 705, 646, 11141, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 2306, 505, 70, 10354, 705, 2306, 505, 70, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 634, 10354, 705, 316, 2881, 316, 12, 634, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 86, 349, 10354, 705, 86, 349, 3256, 198, 220, 220, 220, 705, 26230, 12, 20500, 12, 5715, 10354, 705, 26230, 12, 20500, 12, 5715, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 40914, 10354, 705, 316, 2881, 316, 12, 32125, 12, 40914, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 17602, 10354, 705, 316, 2881, 316, 12, 32125, 12, 17602, 3256, 198, 220, 220, 220, 705, 316, 2881, 316, 12, 32125, 12, 2306, 505, 70, 10354, 705, 316, 2881, 316, 12, 32125, 12, 2306, 505, 70, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 40914, 10354, 705, 40914, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 17602, 10354, 705, 17602, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 45213, 10354, 705, 45213, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 83, 568, 10354, 705, 83, 568, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 3046, 78, 10354, 705, 3046, 78, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 70, 568, 10354, 705, 70, 568, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 75, 305, 10354, 705, 75, 305, 3256, 198, 220, 220, 220, 705, 2364, 2220, 12, 27333, 10354, 705, 27333, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 40914, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 40914, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 17602, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 42552, 425, 12, 17602, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 1904, 6359, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 1904, 6359, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 37805, 10354, 705, 10424, 1574, 12, 343, 80, 12, 1073, 2040, 344, 12, 40914, 12, 37805, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 45313, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 45313, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 73, 29309, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 40914, 12, 73, 29309, 3256, 198, 220, 220, 220, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 17602, 10354, 705, 10424, 1574, 12, 67, 2611, 12, 1806, 12, 17602, 3256, 198, 92, 198, 198, 62, 7206, 33, 62, 10943, 16254, 62, 10246, 16402, 36, 62, 3185, 4694, 796, 1391, 198, 220, 220, 220, 705, 7220, 10354, 705, 7220, 3256, 198, 220, 220, 220, 705, 28712, 10354, 705, 28712, 3256, 198, 220, 220, 220, 705, 15234, 1304, 10354, 705, 15234, 1304, 3256, 198, 220, 220, 220, 705, 381, 79, 2577, 62, 361, 558, 10354, 705, 381, 79, 2577, 62, 361, 558, 3256, 198, 220, 220, 220, 705, 3919, 541, 12286, 10354, 705, 3919, 541, 12286, 3256, 198, 220, 220, 220, 705, 1904, 33350, 67, 5907, 10354, 705, 1904, 33350, 67, 5907, 3256, 198, 220, 220, 220, 705, 12286, 38629, 10354, 705, 12286, 38629, 3256, 198, 220, 220, 220, 705, 2946, 2364, 10354, 705, 2946, 2364, 3256, 198, 220, 220, 220, 705, 9806, 32165, 10354, 705, 9806, 32165, 3256, 198, 220, 220, 220, 705, 24717, 12, 28712, 10354, 705, 24717, 12, 28712, 3256, 198, 220, 220, 220, 705, 75, 13155, 12, 30328, 12, 3849, 2100, 10354, 705, 75, 13155, 12, 30328, 12, 3849, 2100, 3256, 198, 220, 220, 220, 705, 75, 13155, 12, 30328, 12, 32165, 495, 10354, 705, 75, 13155, 12, 30328, 12, 32165, 495, 3256, 198, 220, 220, 220, 705, 8443, 10354, 705, 8443, 3256, 198, 220, 220, 220, 705, 3919, 18439, 10354, 705, 3919, 18439, 3256, 198, 220, 220, 220, 705, 19276, 396, 10354, 705, 19276, 396, 3256, 198, 220, 220, 220, 705, 16762, 84, 10354, 705, 16762, 84, 3256, 198, 220, 220, 220, 705, 3919, 330, 5589, 10354, 705, 3919, 330, 5589, 3256, 198, 220, 220, 220, 705, 8726, 3672, 10354, 705, 8726, 3672, 3256, 198, 92, 198, 198, 62, 7206, 33, 62, 49, 12425, 1546, 62, 25664, 796, 31051, 14784, 14, 27349, 14, 81, 448, 274, 6, 198, 62, 7206, 33, 62, 12884, 33249, 62, 25664, 796, 31051, 14784, 14, 27349, 14, 3849, 32186, 6, 198, 62, 7206, 33, 62, 12884, 33249, 62, 34720, 796, 31051, 14784, 14, 27349, 14, 3849, 32186, 13, 67, 14, 6, 198, 62, 7206, 33, 62, 12884, 33249, 62, 8577, 62, 34720, 796, 31051, 14784, 14, 27349, 14, 361, 12, 929, 13, 67, 14, 6, 198, 62, 7206, 33, 62, 12884, 33249, 62, 41925, 62, 34720, 796, 31051, 14784, 14, 27349, 14, 361, 12, 2902, 13, 67, 14, 6, 198, 62, 7206, 33, 62, 12884, 33249, 62, 10943, 37, 62, 46700, 1546, 796, 31051, 14784, 14, 4666, 1676, 1350, 13, 67, 14, 6, 198, 62, 7206, 33, 62, 12884, 33249, 2751, 62, 25664, 796, 31051, 14784, 14, 12286, 14, 3262, 16090, 6, 198, 62, 7206, 33, 62, 39, 10892, 20608, 62, 25664, 796, 31051, 14784, 14, 4774, 3672, 6, 198, 62, 7206, 33, 62, 19535, 3535, 53, 62, 25664, 796, 31051, 14784, 14, 411, 349, 85, 13, 10414, 6, 198, 62, 7206, 33, 62, 10246, 47, 62, 34720, 796, 31051, 14784, 14, 381, 79, 14, 431, 364, 14, 6, 198, 198, 62, 10943, 16254, 62, 5446, 8924, 796, 37250, 8505, 3256, 705, 261, 3256, 705, 7942, 3256, 705, 16, 3256, 6407, 60, 198, 62, 10943, 16254, 62, 37, 23719, 796, 37250, 3919, 3256, 705, 2364, 3256, 705, 9562, 3256, 705, 15, 3256, 10352, 60, 198, 62, 5064, 11598, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 2788, 3256, 705, 65, 623, 3256, 705, 26011, 3256, 705, 21018, 3256, 198, 220, 220, 220, 705, 541, 2363, 3256, 705, 38969, 929, 3256, 705, 9458, 3256, 705, 36341, 3256, 198, 220, 220, 220, 705, 85, 9620, 3256, 705, 381, 79, 2577, 3256, 705, 10459, 3256, 198, 60, 628, 198, 4299, 4808, 18224, 62, 19662, 62, 361, 558, 7, 361, 558, 11, 3038, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10934, 281, 5035, 4049, 3275, 422, 257, 1813, 3038, 290, 198, 220, 220, 220, 257, 1351, 286, 2938, 3815, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 705, 44651, 3038, 1377, 26491, 25, 1391, 15, 5512, 16018, 25, 1391, 16, 5512, 1475, 7254, 25, 685, 90, 17, 92, 49946, 198, 220, 220, 220, 1441, 31456, 13, 18982, 7, 361, 558, 11, 3038, 11, 705, 91, 4458, 22179, 7, 40319, 4008, 628, 198, 4299, 4808, 18224, 62, 19662, 62, 81, 448, 274, 7, 361, 558, 11, 3038, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10934, 281, 5035, 4049, 3275, 422, 257, 1813, 3038, 290, 198, 220, 220, 220, 257, 1351, 286, 2938, 3815, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 705, 44651, 3038, 1377, 18956, 7071, 25, 1391, 15, 5512, 16018, 25, 1391, 16, 5512, 1475, 7254, 25, 685, 90, 17, 92, 49946, 198, 220, 220, 220, 1441, 31456, 13, 18982, 7, 361, 558, 11, 3038, 11, 2938, 8, 628, 198, 198, 4299, 4808, 18224, 62, 19662, 62, 27349, 7, 18076, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10934, 281, 5035, 4049, 3275, 422, 257, 1813, 3038, 290, 198, 220, 220, 220, 257, 1351, 286, 2938, 3815, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 705, 44651, 3127, 4634, 1377, 25700, 25, 1391, 15, 5512, 1475, 7254, 25, 685, 90, 16, 92, 49946, 198, 220, 220, 220, 1441, 31456, 13, 18982, 7, 18076, 11, 705, 91, 4458, 22179, 7, 40319, 4008, 628, 198, 198, 4299, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 3038, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 5972, 290, 5298, 281, 4049, 351, 257, 12219, 39559, 3275, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 4808, 18224, 62, 19662, 62, 361, 558, 7, 361, 558, 11, 3038, 11, 2938, 8, 198, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 198, 4299, 4808, 40225, 62, 18224, 62, 27349, 7, 18076, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 5972, 290, 5298, 281, 4049, 351, 257, 12219, 39559, 3275, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 4808, 18224, 62, 19662, 62, 27349, 7, 18076, 11, 2938, 8, 198, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 198, 4299, 4808, 40225, 62, 18224, 62, 81, 448, 274, 7, 361, 558, 11, 3038, 11, 2938, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 5972, 290, 5298, 281, 4049, 351, 257, 12219, 39559, 3275, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 31456, 796, 4808, 18224, 62, 19662, 62, 81, 448, 274, 7, 361, 558, 11, 3038, 11, 2938, 8, 198, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 198, 4299, 4808, 961, 62, 7753, 7, 6978, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4149, 82, 290, 5860, 262, 10154, 286, 257, 2420, 2393, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 8268, 13, 26791, 13, 2704, 9654, 7, 6978, 11, 705, 26145, 11537, 355, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 82, 2501, 13, 26791, 13, 1462, 62, 2536, 7, 1370, 8, 329, 1627, 287, 10154, 13, 961, 6615, 3419, 60, 198, 220, 220, 220, 2845, 357, 2640, 12331, 11, 24418, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 198, 4299, 4808, 29572, 62, 411, 6442, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 411, 349, 85, 13, 10414, 290, 1441, 7386, 3672, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10154, 796, 4808, 961, 62, 7753, 28264, 7206, 33, 62, 19535, 3535, 53, 62, 25664, 8, 198, 220, 220, 220, 1441, 10154, 628, 198, 4299, 4808, 29572, 62, 27830, 3672, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 411, 349, 85, 13, 10414, 290, 1441, 7386, 3672, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10154, 796, 4808, 961, 62, 7753, 28264, 7206, 33, 62, 19535, 3535, 53, 62, 25664, 8, 198, 220, 220, 220, 3912, 796, 374, 1549, 296, 391, 59, 82, 33747, 30, 47, 27, 27830, 62, 3672, 29, 59, 50, 28988, 6, 198, 220, 220, 220, 1172, 796, 302, 13, 5589, 576, 7, 33279, 8, 198, 220, 220, 220, 329, 2378, 287, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2872, 796, 1172, 13, 15699, 7, 9186, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2872, 13, 8094, 10786, 27830, 62, 3672, 11537, 198, 220, 220, 220, 1441, 10148, 628, 198, 4299, 4808, 29572, 62, 12947, 27830, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 411, 349, 85, 13, 10414, 290, 1441, 2989, 27830, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10154, 796, 4808, 961, 62, 7753, 28264, 7206, 33, 62, 19535, 3535, 53, 62, 25664, 8, 198, 220, 220, 220, 3912, 796, 374, 338, 3679, 59, 82, 33747, 30, 47, 27, 12947, 62, 27830, 29, 59, 50, 28988, 6, 198, 220, 220, 220, 1172, 796, 302, 13, 5589, 576, 7, 33279, 8, 198, 220, 220, 220, 329, 2378, 287, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2872, 796, 1172, 13, 15699, 7, 9186, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2872, 13, 8094, 10786, 12947, 62, 27830, 11537, 198, 220, 220, 220, 1441, 10148, 628, 198, 4299, 4808, 29572, 62, 4774, 3672, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 4774, 3672, 290, 1441, 2583, 3672, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10154, 796, 4808, 961, 62, 7753, 28264, 7206, 33, 62, 39, 10892, 20608, 62, 25664, 8, 198, 220, 220, 220, 611, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10154, 58, 15, 4083, 35312, 10786, 59, 77, 11537, 58, 15, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 198, 4299, 4808, 29572, 62, 14421, 62, 27349, 62, 33692, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 12286, 14, 3262, 16090, 290, 1441, 1459, 8398, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2172, 82, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 2172, 82, 17816, 3262, 16090, 20520, 796, 10148, 628, 220, 220, 220, 611, 28686, 13, 6978, 13, 4468, 576, 28264, 7206, 33, 62, 12884, 33249, 2751, 62, 25664, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 351, 8268, 13, 26791, 13, 69, 9654, 28264, 7206, 33, 62, 12884, 33249, 2751, 62, 25664, 8, 355, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 13, 9688, 2032, 342, 10786, 2, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 10786, 10943, 16254, 11335, 62, 41358, 37, 2246, 1546, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 3262, 16090, 20520, 796, 1627, 13, 35312, 10786, 28, 3256, 352, 38381, 16, 4083, 36311, 3419, 628, 220, 220, 220, 2583, 3672, 796, 4808, 29572, 62, 4774, 3672, 3419, 198, 220, 220, 220, 7386, 3672, 796, 4808, 29572, 62, 27830, 3672, 3419, 198, 220, 220, 220, 2989, 27830, 796, 4808, 29572, 62, 12947, 27830, 3419, 628, 220, 220, 220, 2172, 82, 17816, 4774, 3672, 20520, 796, 2583, 3672, 198, 220, 220, 220, 2172, 82, 17816, 27830, 3672, 20520, 796, 7386, 3672, 198, 220, 220, 220, 2172, 82, 17816, 12947, 27830, 20520, 796, 2989, 27830, 198, 220, 220, 220, 1441, 2172, 82, 628, 198, 2, 825, 11593, 12102, 1352, 62, 20786, 7, 8367, 2599, 198, 2, 220, 220, 220, 1441, 357, 12102, 25, 6407, 14, 25101, 11, 357, 7645, 12214, 8, 1988, 11, 4049, 3275, 8, 628, 198, 4299, 11593, 541, 85, 19, 62, 47003, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 281, 25961, 19, 2209, 7061, 6, 198, 220, 220, 220, 1441, 357, 82, 2501, 13, 26791, 13, 12102, 378, 13, 3262, 13, 541, 85, 19, 62, 29851, 7, 8367, 828, 1988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 67, 8426, 25961, 19, 2209, 11537, 628, 198, 4299, 11593, 541, 85, 21, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 281, 25961, 21, 2209, 7061, 6, 198, 220, 220, 220, 1441, 357, 82, 2501, 13, 26791, 13, 12102, 378, 13, 3262, 13, 541, 85, 21, 62, 29851, 7, 8367, 828, 1988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4061, 85, 21, 2209, 11537, 628, 198, 4299, 11593, 20285, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 257, 8352, 2209, 7061, 6, 198, 220, 220, 220, 1441, 357, 82, 2501, 13, 26791, 13, 12102, 378, 13, 3262, 13, 20285, 7, 8367, 828, 1988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 44721, 2209, 11537, 628, 198, 198, 4299, 11593, 600, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 281, 18253, 7061, 6, 198, 220, 220, 220, 4938, 11, 4808, 8367, 796, 10352, 11, 1988, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 8367, 796, 493, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 6407, 198, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1441, 357, 12102, 11, 4808, 8367, 11, 705, 41433, 11537, 628, 198, 4299, 11593, 22468, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 257, 12178, 7061, 6, 198, 220, 220, 220, 4938, 11, 4808, 8367, 796, 10352, 11, 1988, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 8367, 796, 12178, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 6407, 198, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1441, 357, 12102, 11, 4808, 8367, 11, 705, 22468, 11537, 628, 198, 4299, 11593, 541, 85, 19, 62, 3262, 27932, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 281, 25961, 19, 38745, 15094, 393, 18253, 327, 2389, 49, 2010, 27932, 7061, 6, 198, 220, 220, 220, 4938, 11, 11454, 19662, 796, 10352, 11, 705, 67, 8426, 15094, 393, 18253, 327, 2389, 49, 357, 15, 3784, 2624, 33047, 198, 220, 220, 220, 4938, 11, 1988, 11, 4808, 796, 11593, 600, 7, 8367, 8, 198, 220, 220, 220, 611, 407, 357, 12102, 290, 657, 19841, 1988, 19841, 3933, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 8268, 13, 26791, 13, 12102, 378, 13, 3262, 13, 3262, 27932, 7, 8367, 8, 198, 220, 220, 220, 1441, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 628, 198, 4299, 11593, 541, 85, 21, 62, 3262, 27932, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 281, 25961, 21, 18253, 2010, 27932, 7061, 6, 198, 220, 220, 220, 4938, 11, 11454, 19662, 796, 10352, 11, 705, 4061, 85, 21, 2010, 27932, 357, 15, 3784, 12762, 33047, 198, 220, 220, 220, 4938, 11, 1988, 11, 4808, 796, 11593, 600, 7, 8367, 8, 198, 220, 220, 220, 4938, 796, 357, 12102, 290, 657, 19841, 1988, 19841, 13108, 8, 198, 220, 220, 220, 1441, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 628, 198, 4299, 11593, 33479, 17, 7, 8367, 11, 1626, 28, 14202, 11, 11454, 19662, 28, 14202, 11, 288, 4906, 28, 14202, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 326, 257, 1988, 318, 287, 7559, 33479, 15506, 290, 42976, 257, 7559, 67, 4906, 15506, 7061, 6, 198, 220, 220, 220, 4938, 11, 4808, 8367, 796, 10352, 11, 1988, 198, 220, 220, 220, 611, 288, 4906, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8367, 796, 288, 4906, 7, 8367, 8, 220, 1303, 16926, 46, 25, 428, 318, 257, 1643, 9155, 618, 288, 4906, 318, 257, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 8367, 287, 1626, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 8367, 287, 1626, 198, 220, 220, 220, 611, 11454, 19662, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 4906, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2170, 12453, 796, 651, 35226, 7, 67, 4906, 11, 705, 834, 3672, 834, 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, 468, 35226, 7, 67, 4906, 11, 705, 834, 4871, 834, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 651, 35226, 7, 67, 4906, 13, 834, 4871, 834, 11, 705, 3672, 3256, 288, 4906, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 19662, 796, 705, 90, 15, 92, 1626, 34373, 90, 16, 32239, 35384, 18982, 7, 774, 3617, 480, 11, 1626, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 19662, 796, 705, 33479, 34373, 90, 15, 32239, 35384, 18982, 7, 33479, 8, 198, 220, 220, 220, 1441, 357, 12102, 11, 4808, 8367, 11, 11454, 19662, 8, 628, 198, 198, 4299, 11593, 13200, 62, 12381, 320, 863, 62, 4868, 7, 8367, 2599, 198, 220, 220, 220, 705, 7061, 12102, 378, 326, 257, 1988, 4909, 530, 393, 517, 2272, 12, 12381, 320, 863, 3815, 7061, 6, 198, 220, 220, 220, 4938, 11, 4808, 8367, 11, 11454, 19662, 796, 10352, 11, 1988, 11, 705, 13200, 12, 12381, 320, 863, 4731, 6, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 8367, 11, 705, 834, 2676, 834, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 6407, 220, 1303, 16926, 46, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8367, 796, 1988, 13, 35312, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 8367, 6624, 685, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 6407, 198, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1441, 357, 12102, 11, 4808, 8367, 11, 11454, 19662, 8, 198, 198, 50, 31429, 62, 1404, 5446, 62, 10468, 62, 7206, 3483, 1565, 62, 1404, 5446, 62, 33767, 796, 1391, 198, 220, 220, 220, 705, 67, 5907, 10354, 705, 67, 5907, 12, 14933, 263, 690, 3256, 198, 220, 220, 220, 705, 12947, 10354, 705, 67, 5907, 12, 12947, 3256, 198, 220, 220, 220, 705, 36599, 29851, 10354, 705, 36599, 21975, 3256, 220, 1303, 16926, 46, 25, 428, 7095, 6297, 79, 11244, 198, 220, 220, 220, 705, 541, 29851, 10354, 705, 21975, 3256, 198, 92, 628, 198, 7206, 3483, 1565, 62, 1404, 5446, 62, 10468, 62, 50, 31429, 62, 1404, 5446, 62, 33767, 796, 8633, 7, 198, 220, 220, 220, 357, 85, 11, 479, 8, 329, 357, 74, 11, 410, 8, 287, 2237, 13, 2676, 23814, 7, 50, 31429, 62, 1404, 5446, 62, 10468, 62, 7206, 3483, 1565, 62, 1404, 5446, 62, 33767, 4008, 198, 198, 2, 16926, 46, 198, 7206, 3483, 1565, 62, 1404, 5446, 62, 10468, 62, 50, 31429, 62, 1404, 5446, 62, 33767, 17816, 21975, 20520, 796, 705, 21975, 6, 198, 7206, 3483, 1565, 62, 1404, 5446, 62, 10468, 62, 50, 31429, 62, 1404, 5446, 62, 33767, 17816, 36599, 21975, 20520, 796, 705, 36599, 21975, 6, 198, 198, 4061, 53, 19, 62, 23428, 2389, 62, 4805, 26631, 796, 37250, 18769, 79, 3256, 705, 34985, 13155, 3256, 705, 12708, 3256, 705, 805, 723, 3256, 705, 26268, 1891, 3256, 705, 381, 79, 20520, 198, 198, 4061, 53, 19, 62, 1404, 5446, 62, 33767, 796, 1391, 198, 220, 220, 220, 705, 1676, 1462, 10354, 11593, 33479, 7, 4061, 53, 19, 62, 23428, 2389, 62, 4805, 26631, 11, 288, 4906, 28, 2536, 828, 198, 220, 220, 220, 1303, 20966, 85, 19, 9037, 1222, 10107, 198, 220, 220, 220, 705, 21975, 10354, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 3262, 27932, 10354, 11593, 541, 85, 19, 62, 3262, 27932, 11, 198, 220, 220, 220, 705, 36654, 2701, 10354, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 4164, 1173, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 10494, 1014, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 220, 1303, 6971, 257, 7633, 12, 12381, 320, 863, 1351, 198, 220, 220, 220, 705, 4122, 404, 1563, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 36599, 21975, 10354, 220, 11593, 20285, 11, 198, 220, 220, 220, 705, 16762, 84, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 29982, 10354, 11593, 33479, 7, 17816, 20541, 3256, 705, 8726, 3256, 705, 4774, 6, 4357, 288, 4906, 28, 2536, 828, 198, 220, 220, 220, 1303, 34590, 13155, 198, 220, 220, 220, 705, 4774, 3672, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 1274, 24425, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 293, 292, 8079, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 85, 18738, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 16366, 10354, 11593, 49459, 11, 198, 220, 220, 220, 1303, 6297, 79, 198, 220, 220, 220, 705, 18769, 7753, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 15388, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 36599, 29851, 10354, 220, 11593, 20285, 11, 198, 220, 220, 220, 1303, 13275, 198, 220, 220, 220, 705, 14171, 10354, 220, 11593, 33479, 7, 17816, 16694, 3256, 705, 28934, 3256, 705, 541, 541, 3256, 705, 4061, 4061, 3256, 705, 30863, 13, 18, 324, 6, 4357, 288, 4906, 28, 2536, 828, 198, 220, 220, 220, 705, 437, 4122, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 67, 301, 29851, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 12001, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 926, 75, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 1303, 6314, 198, 220, 220, 220, 705, 6649, 3080, 10354, 11593, 49459, 11, 198, 220, 220, 220, 1303, 279, 381, 198, 220, 220, 220, 705, 15234, 1304, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 20850, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 25811, 10354, 11593, 49459, 11, 198, 220, 220, 220, 1303, 581, 349, 85, 10414, 198, 220, 220, 220, 705, 67, 5907, 12, 14933, 263, 690, 10354, 11593, 13200, 62, 12381, 320, 863, 62, 4868, 11, 198, 220, 220, 220, 705, 67, 5907, 12, 12947, 10354, 11593, 13200, 62, 12381, 320, 863, 62, 4868, 11, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 705, 85, 9620, 12, 1831, 12, 25202, 10354, 11593, 49459, 11, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 705, 27349, 10354, 11593, 49459, 11, 220, 1303, 1312, 836, 470, 760, 644, 428, 318, 628, 220, 220, 220, 705, 9288, 10354, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 220, 220, 220, 705, 21633, 62, 541, 85, 21, 10354, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 92, 628, 198, 4061, 53, 21, 62, 23428, 2389, 62, 4805, 26631, 796, 37250, 23736, 3256, 705, 26268, 1891, 3256, 705, 12708, 3256, 705, 805, 723, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 34985, 13155, 3256, 705, 85, 19, 28286, 4954, 3256, 705, 21, 1462, 19, 20520, 198, 198, 4061, 53, 21, 62, 1404, 5446, 62, 33767, 796, 1391, 198, 220, 220, 220, 705, 1676, 1462, 10354, 11593, 33479, 7, 4061, 53, 21, 62, 23428, 2389, 62, 4805, 26631, 828, 198, 220, 220, 220, 1303, 20966, 85, 21, 9037, 1222, 10107, 198, 220, 220, 220, 705, 21975, 10354, 11593, 541, 85, 21, 11, 198, 220, 220, 220, 705, 3262, 27932, 10354, 11593, 541, 85, 21, 62, 3262, 27932, 11, 198, 220, 220, 220, 705, 36654, 2701, 10354, 11593, 541, 85, 21, 11, 198, 220, 220, 220, 705, 10494, 1014, 10354, 11593, 541, 85, 21, 11, 220, 1303, 6971, 257, 7633, 12, 12381, 320, 863, 1351, 198, 220, 220, 220, 705, 36599, 21975, 10354, 220, 11593, 20285, 11, 198, 220, 220, 220, 705, 16762, 84, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 29982, 10354, 11593, 33479, 7, 17816, 20541, 3256, 705, 15654, 3256, 705, 8726, 3256, 705, 4774, 6, 4357, 288, 4906, 28, 2536, 828, 198, 220, 220, 220, 1303, 287, 316, 21, 8295, 198, 220, 220, 220, 705, 3448, 303, 742, 10354, 11593, 33479, 26933, 15, 11, 352, 11, 362, 4357, 288, 4906, 28, 600, 828, 198, 220, 220, 220, 705, 34985, 13155, 10354, 220, 11593, 33479, 26933, 15, 11, 352, 4357, 288, 4906, 28, 600, 828, 198, 220, 220, 220, 1303, 287, 316, 21, 9037, 1222, 10107, 1222, 34590, 13155, 198, 220, 220, 220, 705, 11431, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 13635, 62, 430, 10354, 220, 11593, 33479, 26933, 15, 11, 352, 4357, 288, 4906, 28, 600, 828, 198, 220, 220, 220, 705, 2306, 36221, 69, 10354, 220, 11593, 33479, 26933, 15, 11, 352, 4357, 288, 4906, 28, 600, 828, 198, 220, 220, 220, 705, 3866, 18186, 12, 36195, 8079, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 705, 47984, 12, 1078, 1791, 82, 10354, 11593, 600, 11, 220, 1303, 657, 284, 15560, 198, 220, 220, 220, 705, 47984, 12, 3849, 2100, 10354, 11593, 22468, 11, 198, 220, 220, 220, 1303, 6314, 198, 220, 220, 220, 705, 6649, 3080, 10354, 11593, 49459, 11, 198, 220, 220, 220, 1303, 13275, 198, 220, 220, 220, 705, 14171, 10354, 220, 11593, 33479, 7, 17816, 16694, 3256, 705, 28934, 3256, 705, 541, 541, 3256, 705, 4061, 4061, 3256, 705, 30863, 13, 18, 324, 6, 4357, 288, 4906, 28, 2536, 828, 198, 220, 220, 220, 705, 437, 4122, 10354, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 12001, 10354, 220, 11593, 541, 85, 19, 62, 47003, 11, 198, 220, 220, 220, 705, 926, 75, 10354, 220, 11593, 600, 11, 198, 220, 220, 220, 1303, 581, 349, 85, 10414, 198, 220, 220, 220, 705, 67, 5907, 12, 14933, 263, 690, 10354, 11593, 13200, 62, 12381, 320, 863, 62, 4868, 11, 198, 220, 220, 220, 705, 67, 5907, 12, 12947, 10354, 11593, 13200, 62, 12381, 320, 863, 62, 4868, 11, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 705, 85, 9620, 12, 1831, 12, 25202, 10354, 11593, 49459, 11, 628, 220, 220, 220, 705, 9288, 10354, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 220, 220, 220, 705, 21633, 62, 541, 85, 21, 10354, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 92, 628, 198, 36326, 16448, 7597, 62, 1404, 5446, 62, 33767, 796, 1391, 198, 220, 220, 220, 705, 21809, 1203, 12, 408, 312, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 21809, 1203, 12, 14171, 10354, 220, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 220, 220, 220, 705, 86, 8957, 12, 499, 12, 35836, 10354, 11593, 33479, 26933, 15, 11, 352, 11, 362, 4357, 288, 4906, 28, 600, 828, 220, 1303, 16926, 46, 198, 220, 220, 220, 705, 86, 8957, 12, 10414, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 26230, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 8094, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 2539, 12, 11296, 16762, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 24874, 3083, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 862, 74, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 1676, 1462, 10354, 11593, 49459, 11, 220, 1303, 13027, 7, 834, 33479, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 305, 321, 10354, 11593, 49459, 11, 198, 220, 220, 220, 705, 86, 8957, 12, 824, 312, 10354, 11593, 49459, 11, 220, 1303, 16926, 46, 198, 92, 198, 198, 1404, 5446, 33767, 50, 796, 1391, 198, 220, 220, 220, 705, 42504, 10354, 685, 4061, 53, 19, 62, 1404, 5446, 62, 33767, 11, 29360, 16448, 7597, 62, 1404, 5446, 62, 33767, 4357, 198, 220, 220, 220, 705, 42504, 21, 10354, 685, 4061, 53, 21, 62, 1404, 5446, 62, 33767, 11, 29360, 16448, 7597, 62, 1404, 5446, 62, 33767, 60, 198, 92, 628, 198, 4299, 4808, 12102, 378, 62, 39994, 62, 18076, 7, 35226, 11, 1988, 11, 37817, 44769, 11639, 42504, 6, 2599, 198, 220, 220, 220, 705, 7061, 5460, 929, 262, 21201, 2163, 329, 257, 685, 29851, 44769, 7131, 35226, 60, 290, 198, 220, 220, 220, 1441, 262, 2482, 628, 220, 220, 220, 1058, 17143, 708, 81, 25, 11688, 1438, 198, 220, 220, 220, 1058, 17143, 1988, 25, 8246, 4634, 1988, 198, 220, 220, 220, 1058, 17143, 37817, 44769, 25, 2209, 1641, 357, 42504, 11, 287, 316, 21, 11, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4938, 11, 4808, 8367, 11, 11454, 19662, 796, 10352, 11, 1988, 11, 705, 20035, 4938, 1352, 6, 198, 220, 220, 220, 708, 26224, 1686, 796, 5161, 5446, 33767, 50, 13, 1136, 7, 29851, 44769, 11, 685, 12962, 198, 220, 220, 220, 329, 708, 81, 8899, 287, 708, 26224, 1686, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 708, 81, 287, 708, 81, 8899, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 20786, 796, 708, 81, 8899, 58, 35226, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12102, 11, 4808, 8367, 11, 11454, 19662, 8, 796, 26571, 62, 20786, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 1441, 357, 12102, 11, 4808, 8367, 11, 11454, 19662, 8, 628, 198, 198, 4299, 4808, 29572, 62, 3849, 32186, 7, 39994, 62, 16624, 28, 14202, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2547, 325, 1220, 14784, 14, 27349, 14, 3849, 32186, 290, 1441, 1459, 17839, 20314, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 7071, 62, 16624, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7071, 62, 16624, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 428, 1568, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 28264, 7206, 33, 62, 12884, 33249, 62, 34720, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7071, 62, 16624, 15853, 37250, 90, 15, 92, 14, 90, 16, 92, 4458, 18982, 28264, 7206, 33, 62, 12884, 33249, 62, 34720, 11, 26672, 8, 329, 26672, 287, 28686, 13, 4868, 15908, 28264, 7206, 33, 62, 12884, 33249, 62, 34720, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 4468, 576, 28264, 7206, 33, 62, 12884, 33249, 62, 25664, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7071, 62, 16624, 13, 28463, 7, 15, 11, 4808, 7206, 33, 62, 12884, 33249, 62, 25664, 8, 628, 220, 220, 220, 46363, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 2446, 796, 532, 16, 628, 220, 220, 220, 329, 7071, 62, 7753, 287, 7071, 62, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 8268, 13, 26791, 13, 69, 9654, 7, 39994, 62, 7753, 8, 355, 20314, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 19047, 611, 558, 62, 11600, 7160, 11, 475, 857, 407, 4155, 356, 821, 407, 3555, 257, 649, 7071, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 20314, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11440, 1958, 262, 31485, 416, 262, 717, 1573, 286, 1123, 1627, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1514, 284, 262, 1306, 1627, 611, 262, 1459, 1627, 318, 257, 2912, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 393, 477, 9029, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 13, 75, 36311, 22446, 9688, 2032, 342, 10786, 2, 11537, 393, 1627, 13, 747, 10223, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2547, 325, 262, 611, 558, 13444, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 13, 9688, 2032, 342, 10786, 361, 558, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1017, 500, 796, 1627, 13, 35312, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 82, 1370, 8, 14512, 604, 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, 31456, 796, 705, 39317, 2393, 6428, 12214, 25, 1391, 15, 92, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 82, 1370, 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, 2604, 13, 18224, 7, 19662, 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, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 3672, 796, 1017, 500, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37817, 44769, 796, 1017, 500, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2446, 796, 1017, 500, 58, 18, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 2378, 287, 8633, 11, 611, 407, 1541, 612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 611, 558, 62, 3672, 407, 287, 46363, 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, 46363, 58, 361, 558, 62, 3672, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 2378, 287, 8633, 11, 611, 407, 1541, 612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 7890, 6, 407, 287, 46363, 58, 361, 558, 62, 3672, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 37817, 44769, 407, 287, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 7131, 29851, 44769, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 796, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 7131, 29851, 44769, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 17816, 29851, 44769, 20520, 796, 37817, 44769, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 17816, 1676, 1462, 20520, 796, 2446, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 17816, 34345, 20520, 796, 7071, 62, 7753, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2547, 325, 262, 3703, 31485, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1627, 58, 15, 4083, 747, 10223, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1017, 500, 796, 1627, 13, 35312, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1013, 2393, 708, 81, 25, 288, 5907, 12, 14933, 263, 690, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8268, 2585, 13, 27349, 708, 81, 25, 288, 5907, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 708, 81, 11, 1188, 84, 395, 81, 796, 1627, 13, 81, 36311, 22446, 35312, 7, 14202, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 1078, 26224, 1686, 62, 3642, 391, 62, 35226, 7, 35226, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 19355, 287, 708, 81, 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, 708, 81, 3672, 796, 708, 81, 13, 33491, 10786, 12, 3256, 705, 62, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 708, 81, 3672, 796, 708, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 796, 4808, 12102, 378, 62, 39994, 62, 18076, 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, 708, 81, 11, 1188, 84, 395, 81, 11, 37817, 44769, 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, 611, 558, 62, 11600, 58, 35226, 3672, 60, 796, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 708, 81, 287, 4808, 2200, 53, 62, 2767, 6535, 31559, 62, 10943, 16254, 62, 3185, 4694, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 2788, 25981, 6, 407, 287, 611, 558, 62, 11600, 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, 611, 558, 62, 11600, 17816, 2788, 25981, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 558, 62, 11600, 17816, 2788, 25981, 6, 7131, 35226, 60, 796, 1188, 84, 395, 81, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 708, 81, 13, 9688, 2032, 342, 10786, 65, 623, 6, 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, 2172, 796, 302, 13, 35312, 7, 81, 6, 58, 22955, 60, 3256, 708, 81, 11, 3509, 35312, 28, 16, 38381, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 65, 42703, 6, 407, 287, 611, 558, 62, 11600, 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, 611, 558, 62, 11600, 17816, 65, 42703, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 558, 62, 11600, 17816, 65, 42703, 6, 7131, 8738, 60, 796, 1188, 84, 395, 81, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 708, 81, 13, 9688, 2032, 342, 10786, 9458, 6, 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, 2172, 796, 302, 13, 35312, 7, 81, 6, 58, 22955, 60, 3256, 708, 81, 11, 3509, 35312, 28, 16, 38381, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10236, 2667, 6, 407, 287, 611, 558, 62, 11600, 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, 611, 558, 62, 11600, 17816, 10236, 2667, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 558, 62, 11600, 17816, 10236, 2667, 6, 7131, 8738, 60, 796, 1188, 84, 395, 81, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 708, 81, 287, 37250, 929, 3256, 705, 3866, 12, 929, 3256, 705, 7353, 12, 929, 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, 2902, 3256, 705, 3866, 12, 2902, 3256, 705, 7353, 12, 2902, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 1188, 84, 395, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 62, 2539, 796, 705, 90, 15, 92, 62, 28758, 82, 4458, 18982, 7, 260, 13, 7266, 10786, 12, 3256, 705, 62, 3256, 708, 81, 4008, 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, 23991, 62, 2539, 407, 287, 611, 558, 62, 11600, 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, 611, 558, 62, 11600, 58, 28758, 62, 2539, 60, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 11600, 58, 28758, 62, 2539, 4083, 33295, 7, 28758, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 10786, 23736, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1573, 287, 1627, 13, 35312, 3419, 58, 16, 25, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1573, 407, 287, 46363, 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, 46363, 58, 4775, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 46363, 58, 4775, 7131, 6, 25616, 20520, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 10786, 12154, 12, 8940, 16875, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1573, 287, 1627, 13, 35312, 3419, 58, 16, 25, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1573, 407, 287, 46363, 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, 46363, 58, 4775, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 46363, 58, 4775, 7131, 6, 8940, 16875, 20520, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1627, 13, 9688, 2032, 342, 10786, 10459, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10459, 6, 407, 287, 46363, 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, 46363, 17816, 10459, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 2378, 287, 8633, 11, 611, 407, 1541, 612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 7890, 6, 407, 287, 46363, 17816, 10459, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 17816, 10459, 6, 7131, 6, 7890, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 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, 46363, 17816, 10459, 6, 7131, 6, 7890, 6, 7131, 6, 82, 2203, 20520, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 17816, 10459, 6, 7131, 6, 7890, 6, 7131, 6, 82, 2203, 6, 4083, 33295, 7, 1370, 13, 35312, 3419, 58, 16, 12962, 628, 220, 220, 220, 1303, 8229, 257, 23243, 1351, 286, 262, 8251, 329, 6314, 11, 7696, 290, 4555, 25981, 3689, 284, 198, 220, 220, 220, 1303, 4155, 257, 6414, 1502, 198, 220, 220, 220, 329, 611, 558, 62, 3672, 287, 46363, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 611, 558, 62, 3672, 6624, 705, 10459, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 7890, 6, 407, 287, 46363, 58, 361, 558, 62, 3672, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 39317, 2393, 6428, 12214, 329, 7071, 25, 1391, 15, 92, 2637, 13, 18982, 7, 361, 558, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 13, 12924, 7, 361, 558, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2172, 287, 37250, 2788, 25981, 3256, 705, 65, 42703, 3256, 705, 10236, 2667, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 42504, 6, 287, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 7131, 6, 42504, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 62, 13083, 796, 23243, 7, 324, 12126, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 7131, 6, 42504, 6, 7131, 8738, 4083, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 62, 3672, 7131, 6, 7890, 6, 7131, 6, 42504, 6, 7131, 8738, 1343, 705, 62, 13083, 20520, 796, 2172, 62, 13083, 628, 220, 220, 220, 1441, 46363, 628, 198, 4299, 4808, 29572, 62, 2788, 25981, 62, 404, 912, 7, 404, 912, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 35920, 10468, 3535, 50, 62, 3185, 4694, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4566, 796, 23884, 628, 220, 220, 220, 611, 705, 2306, 505, 70, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 2306, 505, 70, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 2306, 505, 70, 10354, 705, 261, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 2306, 505, 70, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 2306, 505, 70, 10354, 705, 2364, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 2306, 505, 70, 3256, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 8, 628, 220, 220, 220, 611, 705, 646, 11141, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 37250, 12853, 3256, 705, 13959, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 646, 11141, 20520, 287, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 646, 11141, 10354, 2172, 82, 17816, 646, 11141, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 646, 11141, 3256, 4938, 8, 628, 220, 220, 220, 611, 705, 12287, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 37250, 940, 3256, 705, 3064, 3256, 705, 12825, 3256, 705, 49388, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 965, 7, 404, 912, 17816, 12287, 6, 12962, 287, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 12287, 10354, 2172, 82, 17816, 12287, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 2172, 82, 17816, 12287, 6, 4357, 4938, 8, 628, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 329, 3038, 287, 19203, 40914, 3256, 705, 17602, 3256, 705, 45213, 3256, 705, 83, 568, 3256, 705, 3046, 78, 3256, 705, 70, 568, 3256, 705, 27333, 3256, 705, 75, 305, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3038, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 58, 18076, 60, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 18076, 25, 705, 261, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 58, 18076, 60, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 18076, 25, 705, 2364, 6, 30072, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 3038, 11, 4938, 8, 628, 220, 220, 220, 1441, 4566, 628, 198, 4299, 4808, 29572, 62, 2788, 25981, 62, 381, 79, 2577, 62, 404, 912, 7, 404, 912, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 35920, 10468, 3535, 50, 62, 10246, 16402, 36, 62, 3185, 4694, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4566, 796, 23884, 628, 220, 220, 220, 329, 2172, 287, 4808, 7206, 33, 62, 10943, 16254, 62, 10246, 16402, 36, 62, 3185, 4694, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 58, 8738, 60, 796, 2172, 82, 58, 8738, 60, 628, 220, 220, 220, 611, 705, 15234, 1304, 6, 287, 2172, 82, 290, 407, 2172, 82, 17816, 15234, 1304, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 15234, 1304, 3256, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 8, 628, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 329, 3038, 287, 19203, 3919, 541, 12286, 3256, 705, 1904, 33350, 67, 5907, 3256, 705, 12286, 38629, 3256, 705, 24717, 12, 28712, 3256, 705, 3919, 18439, 3256, 705, 19276, 396, 3256, 705, 3919, 330, 5589, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3038, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 58, 18076, 60, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 18076, 25, 705, 17821, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 58, 18076, 60, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 18076, 25, 705, 25101, 6, 30072, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 3038, 11, 4938, 8, 628, 220, 220, 220, 1441, 4566, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 7, 404, 912, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 9167, 198, 220, 220, 220, 4905, 13, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 6314, 62, 4299, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 807, 3070, 13, 324, 46500, 6356, 9156, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 657, 329, 8245, 357, 12286, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 352, 329, 19484, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 362, 329, 954, 198, 220, 220, 220, 220, 220, 220, 220, 705, 324, 62, 19738, 10354, 705, 15, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5436, 1271, 286, 21937, 43359, 357, 12286, 796, 1467, 8, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17602, 62, 4188, 947, 10354, 705, 1433, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7502, 9904, 287, 38694, 13, 4042, 45593, 82, 1104, 428, 198, 220, 220, 220, 220, 220, 220, 220, 705, 11632, 20473, 10354, 705, 3064, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5923, 47, 16654, 287, 38694, 198, 220, 220, 220, 220, 220, 220, 220, 705, 5117, 62, 3849, 2100, 10354, 705, 9031, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 42698, 878, 6402, 2792, 866, 287, 38694, 357, 11632, 20473, 1635, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 705, 67, 322, 358, 417, 323, 10354, 705, 2167, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 31123, 79, 62, 4873, 657, 25, 19054, 532, 790, 1542, 4201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 31123, 79, 62, 4873, 352, 25, 12549, 532, 790, 352, 1218, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 330, 79, 62, 4873, 10354, 705, 15, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5436, 13100, 329, 428, 4639, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9806, 62, 65, 24764, 10354, 705, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 18291, 6945, 262, 640, 11, 287, 38694, 11, 284, 4043, 878, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 15882, 257, 11778, 706, 257, 2792, 7628, 468, 587, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 12326, 13, 5514, 973, 351, 21504, 20473, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 929, 40850, 10354, 705, 15, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16718, 351, 21504, 20473, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1550, 25, 4639, 12800, 285, 4178, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3242, 25, 4555, 25981, 12800, 285, 4178, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1904, 62, 7718, 5277, 10354, 705, 261, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 15161, 13, 2094, 470, 1487, 4556, 345, 760, 644, 345, 389, 1804, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 87, 2781, 62, 17831, 62, 30586, 10354, 705, 29289, 17, 3256, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 611, 2172, 82, 17816, 14171, 20520, 287, 37250, 20427, 12, 21062, 3256, 705, 15, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 3440, 22486, 357, 744, 12, 305, 8800, 8, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 15, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 5275, 12, 1891, 929, 3256, 705, 16, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 8046, 12, 83, 37668, 357, 5275, 12, 1891, 929, 8, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 16, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 20427, 12, 87, 273, 3256, 705, 17, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 3440, 22486, 357, 87, 273, 8, 4458, 18982, 7, 361, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 17, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 36654, 2701, 3256, 705, 18, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 8046, 12, 83, 37668, 357, 36654, 2701, 8, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 18, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 30863, 13, 18, 324, 3256, 705, 19, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 40552, 33121, 13, 18, 324, 26977, 2792, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9460, 43068, 4458, 18982, 7, 361, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 19, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 20427, 12, 83, 23160, 3256, 705, 20, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 21937, 3440, 22486, 4458, 18982, 7, 361, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 20, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 1288, 361, 2172, 82, 17816, 14171, 20520, 287, 37250, 20427, 12, 282, 65, 3256, 705, 21, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24728, 25, 1391, 15, 92, 12812, 278, 10363, 25, 29605, 3440, 22486, 4458, 18982, 7, 361, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 29572, 62, 33692, 62, 65, 623, 62, 21, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15, 3256, 705, 16, 3256, 705, 17, 3256, 705, 18, 3256, 705, 19, 3256, 705, 20, 3256, 705, 21, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20427, 12, 21062, 3256, 705, 5275, 12, 1891, 929, 3256, 705, 20427, 12, 87, 273, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 36654, 2701, 3256, 705, 30863, 13, 18, 324, 3256, 705, 20427, 12, 83, 23160, 3256, 705, 20427, 12, 282, 65, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 14171, 3256, 4938, 8, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 15, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 15, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 15, 6, 92, 628, 220, 220, 220, 1303, 5923, 47, 6670, 287, 299, 13, 77, 13, 77, 13, 77, 1296, 198, 220, 220, 220, 4938, 796, 37250, 4868, 286, 220, 2419, 357, 929, 284, 1467, 8, 20520, 198, 220, 220, 220, 611, 705, 5117, 62, 541, 62, 16793, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 404, 912, 17816, 5117, 62, 541, 62, 16793, 6, 4357, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 352, 19841, 18896, 7, 404, 912, 17816, 5117, 62, 541, 62, 16793, 6, 12962, 19841, 1467, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 541, 62, 16793, 10354, 10148, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 20966, 287, 2172, 82, 17816, 5117, 62, 541, 62, 16793, 6, 5974, 220, 1303, 279, 2645, 600, 25, 15560, 28, 34, 486, 3070, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 65, 623, 17816, 5117, 62, 541, 62, 16793, 6, 12962, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 796, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 1343, 705, 4032, 1343, 20966, 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, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 796, 20966, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 628, 220, 220, 220, 611, 705, 5117, 62, 3849, 2100, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 7, 404, 912, 17816, 5117, 62, 3849, 2100, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 3849, 2100, 10354, 2172, 82, 17816, 5117, 62, 3849, 2100, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 3849, 2100, 3256, 37250, 41433, 6, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 3849, 2100, 3256, 6314, 62, 4299, 17816, 5117, 62, 3849, 2100, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 3849, 2100, 10354, 6314, 62, 4299, 17816, 5117, 62, 3849, 2100, 20520, 30072, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 16, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 16, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 16, 6, 92, 628, 220, 220, 220, 329, 12765, 287, 37250, 11632, 20473, 3256, 705, 67, 322, 358, 417, 323, 3256, 705, 929, 40850, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 287, 2172, 82, 25, 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, 493, 7, 404, 912, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 2172, 82, 58, 30786, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 37250, 41433, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 6314, 62, 4299, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 6314, 62, 4299, 58, 30786, 60, 30072, 628, 220, 220, 220, 611, 705, 39754, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 39754, 10354, 2172, 82, 17816, 39754, 20520, 30072, 628, 220, 220, 220, 611, 407, 357, 834, 2164, 1299, 834, 17816, 418, 20520, 6624, 366, 36609, 11157, 1, 290, 11593, 2164, 1299, 834, 17816, 418, 20979, 62, 10951, 6, 7131, 15, 60, 18189, 1467, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 1904, 62, 7718, 5277, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 15, 6, 30072, 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, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 4938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 20520, 30072, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 17, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 17, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 17, 6, 92, 628, 220, 220, 220, 4938, 796, 37250, 4868, 286, 220, 2419, 357, 929, 284, 1467, 8, 20520, 198, 220, 220, 220, 611, 705, 5117, 62, 541, 62, 16793, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 404, 912, 17816, 5117, 62, 541, 62, 16793, 6, 4357, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 352, 19841, 18896, 7, 404, 912, 17816, 5117, 62, 541, 62, 16793, 6, 12962, 19841, 1467, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 541, 62, 16793, 10354, 10148, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 20966, 287, 2172, 82, 17816, 5117, 62, 541, 62, 16793, 6, 5974, 220, 1303, 279, 2645, 600, 25, 15560, 28, 34, 486, 3070, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 65, 623, 17816, 5117, 62, 541, 62, 16793, 6, 12962, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 796, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 1343, 705, 4032, 1343, 20966, 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, 6314, 17816, 5117, 62, 541, 62, 16793, 20520, 796, 20966, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 541, 62, 16793, 3256, 4938, 8, 628, 220, 220, 220, 611, 705, 5117, 62, 3849, 2100, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 7, 404, 912, 17816, 5117, 62, 3849, 2100, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 3849, 2100, 10354, 2172, 82, 17816, 5117, 62, 3849, 2100, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 3849, 2100, 3256, 37250, 41433, 6, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 5117, 62, 3849, 2100, 3256, 6314, 62, 4299, 17816, 5117, 62, 3849, 2100, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 5117, 62, 3849, 2100, 10354, 6314, 62, 4299, 17816, 5117, 62, 3849, 2100, 20520, 30072, 628, 220, 220, 220, 611, 705, 71, 2140, 12, 282, 42289, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 37250, 29289, 17, 3256, 705, 29289, 17, 10, 18, 3256, 705, 29289, 18, 10, 19, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 71, 2140, 12, 282, 42289, 20520, 287, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 87, 2781, 62, 17831, 62, 30586, 10354, 2172, 82, 17816, 71, 2140, 12, 282, 42289, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 71, 2140, 12, 282, 42289, 3256, 4938, 8, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 18, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 18, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 18, 6, 92, 628, 220, 220, 220, 329, 12765, 287, 37250, 11632, 20473, 3256, 705, 67, 322, 358, 417, 323, 3256, 705, 929, 40850, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 287, 2172, 82, 25, 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, 493, 7, 404, 912, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 2172, 82, 58, 30786, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 37250, 41433, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 6314, 62, 4299, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 6314, 62, 4299, 58, 30786, 60, 30072, 628, 220, 220, 220, 611, 705, 1904, 62, 7718, 5277, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 15, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 20520, 30072, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 19, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 19, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 19, 6, 92, 628, 220, 220, 220, 329, 12765, 287, 37250, 11632, 20473, 3256, 705, 67, 322, 358, 417, 323, 3256, 705, 929, 40850, 3256, 705, 75, 330, 79, 62, 4873, 3256, 705, 324, 62, 19738, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 6624, 705, 75, 330, 79, 62, 4873, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 58, 30786, 60, 6624, 705, 7217, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 13, 19119, 15090, 30786, 25, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 58, 30786, 60, 6624, 705, 38246, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 13, 19119, 15090, 30786, 25, 705, 15, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 37250, 7217, 3256, 705, 16, 3256, 705, 38246, 3256, 705, 15, 20520, 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, 4938, 796, 37250, 41433, 20520, 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, 493, 7, 404, 912, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 2172, 82, 58, 30786, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 4938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 6314, 62, 4299, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 6314, 62, 4299, 58, 30786, 60, 30072, 628, 220, 220, 220, 611, 705, 1904, 62, 7718, 5277, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 15, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 20520, 30072, 628, 220, 220, 220, 611, 705, 71, 2140, 12, 282, 42289, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 37250, 29289, 17, 3256, 705, 29289, 17, 10, 18, 3256, 705, 29289, 18, 10, 19, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 71, 2140, 12, 282, 42289, 20520, 287, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 87, 2781, 62, 17831, 62, 30586, 10354, 2172, 82, 17816, 71, 2140, 12, 282, 42289, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 71, 2140, 12, 282, 42289, 3256, 4938, 8, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 20, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 20, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 20, 6, 92, 628, 220, 220, 220, 329, 12765, 287, 37250, 11632, 20473, 3256, 705, 67, 322, 358, 417, 323, 3256, 705, 929, 40850, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 287, 2172, 82, 25, 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, 493, 7, 404, 912, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 2172, 82, 58, 30786, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 37250, 41433, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 6314, 62, 4299, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 6314, 62, 4299, 58, 30786, 60, 30072, 628, 220, 220, 220, 611, 705, 1904, 62, 7718, 5277, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 15, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 20520, 30072, 628, 220, 220, 220, 611, 705, 39754, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 39754, 10354, 2172, 82, 17816, 39754, 20520, 30072, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 65, 623, 62, 21, 7, 404, 912, 11, 611, 558, 11, 6314, 62, 4299, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 6314, 21, 13, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 644, 262, 26491, 11, 25700, 290, 644, 340, 373, 198, 220, 220, 220, 12451, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 6314, 796, 1391, 6, 14171, 10354, 705, 21, 6, 92, 628, 220, 220, 220, 329, 12765, 287, 37250, 11632, 20473, 3256, 705, 67, 322, 358, 417, 323, 3256, 705, 929, 40850, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12765, 287, 2172, 82, 25, 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, 493, 7, 404, 912, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 2172, 82, 58, 30786, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 37250, 41433, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 12765, 11, 6314, 62, 4299, 58, 30786, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 30786, 25, 6314, 62, 4299, 58, 30786, 60, 30072, 628, 220, 220, 220, 611, 705, 1904, 62, 7718, 5277, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 16, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 1904, 62, 7718, 5277, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 705, 15, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 361, 558, 7, 361, 558, 11, 705, 1904, 62, 7718, 5277, 3256, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 1904, 62, 7718, 5277, 10354, 6314, 62, 4299, 17816, 1904, 62, 7718, 5277, 20520, 30072, 628, 220, 220, 220, 611, 705, 39754, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6314, 13, 19119, 15090, 6, 39754, 10354, 2172, 82, 17816, 39754, 20520, 30072, 628, 220, 220, 220, 1441, 6314, 628, 198, 4299, 4808, 29572, 62, 9458, 62, 404, 912, 7, 404, 912, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 11177, 2389, 38, 2751, 62, 3185, 4694, 198, 220, 220, 220, 1002, 281, 3038, 468, 257, 1988, 326, 318, 407, 2938, 11, 428, 198, 220, 220, 220, 2163, 481, 2604, 262, 26491, 11, 25700, 290, 644, 373, 2938, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4566, 796, 23884, 628, 220, 220, 220, 611, 705, 3742, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 404, 912, 17816, 3742, 6, 4357, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 3742, 20520, 796, 705, 45302, 22179, 7, 404, 912, 17816, 3742, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 3742, 10354, 2172, 82, 17816, 3742, 20520, 30072, 628, 220, 220, 220, 329, 2172, 287, 37250, 496, 278, 3256, 705, 16344, 3256, 705, 36484, 600, 3256, 705, 31373, 3256, 705, 9806, 496, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 2172, 82, 25, 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, 12178, 7, 404, 912, 58, 8738, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 8738, 25, 2172, 82, 58, 8738, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 2172, 11, 37250, 22468, 6, 12962, 628, 220, 220, 220, 329, 2172, 287, 37250, 9458, 3448, 78, 3256, 705, 9806, 17077, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 404, 912, 58, 8738, 4357, 493, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 8738, 25, 2172, 82, 58, 8738, 60, 30072, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 2172, 11, 37250, 41433, 6, 12962, 628, 220, 220, 220, 611, 705, 36599, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2872, 1105, 17910, 19561, 351, 2035, 1058, 393, 532, 355, 2880, 2024, 1022, 14729, 198, 220, 220, 220, 220, 220, 220, 220, 611, 302, 13, 15699, 10786, 58, 15, 12, 24, 64, 12, 69, 60, 90, 17, 92, 26933, 12, 25, 12962, 58, 15, 12, 24, 64, 12, 69, 60, 90, 17, 92, 7, 6852, 16, 58, 15, 12, 24, 64, 12, 69, 60, 90, 17, 92, 19953, 19, 92, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 36599, 6, 4083, 21037, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 36599, 10354, 2172, 82, 17816, 36599, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 36599, 3256, 37250, 12102, 20582, 2209, 6, 12962, 628, 220, 220, 220, 329, 2172, 287, 37250, 6978, 15805, 3256, 705, 634, 3448, 78, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 2172, 82, 25, 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, 2493, 11, 1575, 62, 273, 62, 3448, 78, 796, 2172, 82, 58, 8738, 4083, 35312, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 7, 15805, 62, 273, 62, 3448, 78, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 8738, 25, 705, 90, 15, 92, 1391, 16, 92, 4458, 18982, 7, 634, 11, 1575, 62, 273, 62, 3448, 78, 8, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 2172, 11, 37250, 39994, 18253, 6, 12962, 628, 220, 220, 220, 611, 705, 301, 79, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 301, 79, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 301, 79, 10354, 705, 261, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 301, 79, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 301, 79, 10354, 705, 2364, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 301, 79, 3256, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 8, 628, 220, 220, 220, 611, 705, 17077, 634, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 404, 912, 17816, 17077, 634, 6, 4357, 493, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 6, 17077, 634, 10354, 2172, 82, 17816, 17077, 634, 20520, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3815, 796, 2172, 82, 17816, 17077, 634, 6, 4083, 35312, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4043, 634, 62, 2435, 796, 3815, 13, 12924, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4043, 634, 62, 2435, 13, 9409, 328, 270, 3419, 290, 3815, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 19119, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17077, 634, 10354, 705, 90, 15, 92, 1391, 16, 92, 4458, 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, 4043, 634, 62, 2435, 11, 705, 45302, 22179, 7, 27160, 8, 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, 32092, 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, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 2172, 11, 37250, 41433, 685, 3849, 32186, 49946, 12962, 628, 220, 220, 220, 1441, 4566, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 2788, 7, 404, 912, 11, 611, 558, 62, 4906, 11, 9343, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 257, 198, 220, 220, 220, 3127, 7071, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 46363, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 46363, 58, 361, 558, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 4906, 20520, 796, 611, 558, 62, 4906, 628, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 7890, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 611, 558, 62, 7890, 796, 46363, 58, 361, 558, 7131, 6, 7890, 20520, 198, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 21, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 611, 9343, 25, 198, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 25616, 20520, 796, 6407, 628, 220, 220, 220, 611, 2172, 82, 13, 1136, 10786, 8940, 16875, 3256, 10352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 8940, 16875, 20520, 796, 6407, 628, 220, 220, 220, 1303, 2896, 13185, 7048, 25961, 19, 357, 42504, 8, 20314, 4556, 7139, 62, 541, 85, 21, 28, 17821, 198, 220, 220, 220, 825, 62, 29851, 44769, 796, 705, 42504, 6, 198, 220, 220, 220, 10668, 62, 25558, 796, 10352, 628, 220, 220, 220, 1303, 1002, 7139, 62, 541, 85, 21, 28, 17821, 11, 788, 1033, 316, 2035, 25961, 21, 12, 8807, 393, 10668, 8931, 13, 198, 220, 220, 220, 611, 705, 21633, 62, 541, 85, 21, 6, 287, 2172, 82, 290, 2172, 82, 17816, 21633, 62, 541, 85, 21, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 21, 6, 7131, 6, 29851, 44769, 20520, 796, 705, 42504, 21, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 21, 6, 7131, 6, 3262, 27932, 20520, 796, 705, 2414, 6, 220, 1303, 26235, 284, 5598, 198, 220, 220, 220, 220, 220, 220, 220, 825, 62, 29851, 44769, 796, 705, 42504, 21, 6, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 361, 558, 62, 4906, 6, 287, 2172, 82, 290, 2172, 82, 17816, 361, 558, 62, 4906, 20520, 6624, 705, 85, 9620, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 21, 6, 7131, 6, 85, 9620, 62, 1831, 62, 25202, 20520, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 302, 13, 7266, 7, 81, 6, 17405, 59, 67, 9, 3256, 705, 3256, 611, 558, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 541, 29851, 6, 287, 2172, 82, 290, 705, 541, 85, 21, 541, 29851, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 1111, 705, 541, 29851, 6, 290, 705, 541, 85, 21, 541, 29851, 6, 389, 1944, 26, 1607, 10668, 8931, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 6, 7131, 6, 29851, 44769, 20520, 796, 705, 42504, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 62, 29851, 44769, 796, 705, 42504, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10668, 62, 25558, 796, 6407, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 7139, 62, 541, 85, 21, 28, 25101, 91, 14202, 11, 25961, 21, 6460, 815, 407, 307, 900, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 6, 7131, 6, 29851, 44769, 20520, 796, 705, 42504, 6, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 407, 287, 37250, 9458, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 45218, 62, 2788, 25981, 796, 4808, 29572, 62, 2788, 25981, 62, 404, 912, 7, 404, 912, 11, 611, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 45218, 62, 2788, 25981, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4555, 25981, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2378, 287, 45218, 62, 2788, 25981, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4555, 25981, 29795, 2767, 6535, 31559, 62, 10943, 16254, 62, 3185, 4694, 58, 9186, 11907, 796, 45218, 62, 2788, 25981, 58, 9186, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 2788, 25981, 20520, 796, 4555, 25981, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1441, 257, 1351, 286, 23243, 8251, 284, 4155, 6414, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 2788, 25981, 62, 13083, 20520, 796, 23243, 7, 2788, 25981, 8, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 6624, 705, 9458, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 38265, 2667, 796, 4808, 29572, 62, 9458, 62, 404, 912, 7, 404, 912, 11, 611, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 38265, 2667, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 13, 12924, 10786, 14171, 3256, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 10236, 2667, 20520, 796, 38265, 2667, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 10236, 2667, 62, 13083, 20520, 796, 23243, 7, 10236, 2667, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 29851, 44769, 20520, 796, 825, 62, 29851, 44769, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 65, 623, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 37228, 796, 4808, 29572, 62, 33692, 62, 65, 623, 7, 404, 912, 11, 611, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 37228, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 13, 12924, 10786, 14171, 3256, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 65, 42703, 20520, 796, 37228, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 65, 42703, 6, 7131, 6, 6649, 3080, 20520, 796, 2172, 82, 17816, 6649, 3080, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 65, 42703, 62, 13083, 20520, 796, 23243, 7, 65, 42703, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 29851, 44769, 20520, 796, 825, 62, 29851, 44769, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 36341, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 9866, 20520, 796, 2172, 82, 17816, 9866, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 1676, 1462, 20520, 796, 705, 805, 723, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 9866, 20520, 796, 46363, 58, 361, 558, 7131, 6, 9866, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 29851, 44769, 20520, 796, 825, 62, 29851, 44769, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 85, 9620, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 85, 9620, 62, 1831, 62, 25202, 20520, 796, 302, 13, 7266, 7, 81, 6, 17405, 59, 67, 9, 3256, 705, 3256, 611, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 29851, 44769, 20520, 796, 825, 62, 29851, 44769, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 381, 79, 2577, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 45218, 62, 2788, 25981, 796, 4808, 29572, 62, 2788, 25981, 62, 381, 79, 2577, 62, 404, 912, 7, 404, 912, 11, 611, 558, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 45218, 62, 2788, 25981, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2378, 287, 45218, 62, 2788, 25981, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 7890, 6, 7131, 4299, 62, 29851, 44769, 7131, 62, 7206, 33, 62, 10943, 16254, 62, 10246, 16402, 36, 62, 3185, 4694, 58, 9186, 11907, 796, 45218, 62, 2788, 25981, 58, 9186, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 6, 29851, 44769, 20520, 796, 825, 62, 29851, 44769, 628, 220, 220, 220, 329, 2172, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 15797, 3756, 366, 541, 85, 21, 1, 422, 3038, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 13, 9688, 2032, 342, 10786, 541, 85, 21, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 3672, 796, 2172, 58, 19, 47715, 220, 1303, 15797, 572, 262, 20966, 85, 21, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 21, 8807, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 3672, 796, 2172, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 21, 8807, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 796, 311, 31429, 62, 1404, 5446, 62, 10468, 62, 7206, 3483, 1565, 62, 1404, 5446, 62, 33767, 13, 1136, 7, 8738, 3672, 11, 2172, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 1078, 26224, 1686, 62, 3642, 391, 62, 35226, 28264, 8738, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 84, 395, 81, 796, 2172, 82, 58, 8738, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4277, 284, 705, 12708, 6, 611, 44876, 318, 705, 23108, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 3672, 6624, 705, 1676, 1462, 6, 290, 1188, 84, 395, 81, 6624, 705, 23108, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 84, 395, 81, 796, 705, 12708, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 3038, 318, 410, 21, 12, 8807, 11, 836, 470, 26571, 1028, 287, 316, 290, 1464, 900, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 410, 21, 8807, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 796, 4808, 12102, 378, 62, 39994, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 11, 1188, 84, 395, 81, 11, 37817, 44769, 11639, 42504, 21, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 705, 43054, 90, 15, 32239, 6, 34373, 90, 16, 32239, 35384, 18982, 7, 8738, 11, 1188, 84, 395, 81, 828, 685, 8056, 19662, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6330, 288, 7465, 351, 41731, 329, 474, 259, 6592, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 796, 4808, 8738, 3672, 13, 33491, 10786, 12, 3256, 705, 62, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 21, 6, 7131, 62, 8738, 3672, 60, 796, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25974, 11, 611, 340, 338, 257, 10668, 8931, 11, 262, 3038, 743, 5594, 287, 1111, 26, 4174, 410, 19, 2172, 355, 410, 21, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 10668, 62, 25558, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4938, 62, 27078, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 19662, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 37817, 44769, 287, 37250, 42504, 3256, 705, 42504, 21, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 796, 4808, 12102, 378, 62, 39994, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 11, 1188, 84, 395, 81, 11, 37817, 44769, 28, 29851, 44769, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4938, 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, 4938, 62, 27078, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6330, 288, 7465, 351, 41731, 329, 474, 259, 6592, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 796, 4808, 8738, 3672, 13, 33491, 10786, 12, 3256, 705, 62, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 257, 410, 21, 12, 8807, 2196, 286, 428, 3038, 373, 900, 26, 836, 470, 20957, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4306, 11, 611, 10668, 8931, 11, 779, 262, 410, 19, 2196, 355, 257, 4277, 1988, 329, 410, 21, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3578, 44987, 351, 796, 14202, 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, 37817, 44769, 6624, 705, 42504, 6, 393, 4808, 8738, 3672, 407, 287, 611, 558, 62, 7890, 17816, 42504, 21, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 29851, 44769, 7131, 62, 8738, 3672, 60, 796, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 4938, 62, 27078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 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, 611, 558, 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, 705, 43054, 90, 15, 32239, 6, 34373, 90, 16, 32239, 35384, 18982, 7, 8738, 11, 1188, 84, 395, 81, 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, 685, 8056, 19662, 60, 198, 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, 1303, 25974, 11, 340, 2925, 287, 262, 4277, 7, 8807, 8, 37817, 44769, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1892, 13148, 410, 19, 3578, 257, 410, 21, 2512, 284, 307, 2727, 1231, 6041, 286, 366, 541, 85, 21, 1, 21231, 274, 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, 357, 12102, 11, 1988, 11, 11454, 19662, 8, 796, 4808, 12102, 378, 62, 39994, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 11, 1188, 84, 395, 81, 11, 37817, 44769, 28, 4299, 62, 29851, 44769, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 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, 611, 558, 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, 705, 43054, 90, 15, 32239, 6, 34373, 90, 16, 32239, 35384, 18982, 7, 8738, 11, 1188, 84, 395, 81, 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, 685, 8056, 19662, 60, 198, 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, 1303, 6330, 288, 7465, 351, 41731, 329, 474, 259, 6592, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8738, 3672, 796, 4808, 8738, 3672, 13, 33491, 10786, 12, 3256, 705, 62, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 58, 4299, 62, 29851, 44769, 7131, 62, 8738, 3672, 60, 796, 1988, 628, 220, 220, 220, 329, 2172, 287, 37250, 929, 62, 28758, 82, 3256, 705, 3866, 62, 929, 62, 28758, 82, 3256, 705, 7353, 62, 929, 62, 28758, 82, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2902, 62, 28758, 82, 3256, 705, 3866, 62, 2902, 62, 28758, 82, 3256, 705, 7353, 62, 2902, 62, 28758, 82, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 17816, 42504, 6, 7131, 8738, 60, 796, 2172, 82, 58, 8738, 60, 628, 220, 220, 220, 329, 37817, 44769, 287, 37250, 42504, 3256, 705, 42504, 21, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 29851, 44769, 6, 287, 611, 558, 62, 7890, 58, 29851, 44769, 60, 290, 611, 558, 62, 7890, 58, 29851, 44769, 7131, 6, 29851, 44769, 20520, 6624, 37817, 44769, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 62, 7890, 13, 12924, 7, 29851, 44769, 8, 628, 220, 220, 220, 1441, 46363, 628, 198, 4299, 4808, 29572, 62, 33692, 62, 10459, 7, 404, 912, 11, 611, 558, 62, 4906, 11, 9343, 11, 611, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 257, 198, 220, 220, 220, 3127, 7071, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 46363, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 46363, 58, 361, 558, 60, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 628, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 4906, 20520, 796, 611, 558, 62, 4906, 628, 220, 220, 220, 46363, 58, 361, 558, 7131, 6, 7890, 20520, 796, 8268, 13, 26791, 13, 375, 713, 13, 35422, 1068, 35, 713, 3419, 198, 220, 220, 220, 611, 558, 62, 7890, 796, 46363, 58, 361, 558, 7131, 6, 7890, 20520, 198, 220, 220, 220, 611, 558, 62, 7890, 17816, 82, 2203, 20520, 796, 685, 404, 912, 17816, 10459, 6, 11907, 628, 220, 220, 220, 1441, 46363, 628, 198, 4299, 4808, 29572, 62, 27349, 62, 33692, 7, 404, 912, 11, 1459, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 198, 220, 220, 220, 262, 3298, 3127, 6460, 2393, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 14435, 1096, 8251, 198, 220, 220, 220, 2172, 82, 796, 8633, 19510, 74, 13, 21037, 22784, 410, 8, 329, 357, 74, 11, 410, 8, 287, 2237, 13, 2676, 23814, 7, 404, 912, 4008, 198, 220, 220, 220, 1459, 796, 8633, 19510, 74, 13, 21037, 22784, 410, 8, 329, 357, 74, 11, 410, 8, 287, 2237, 13, 2676, 23814, 7, 14421, 4008, 198, 220, 220, 220, 1255, 796, 23884, 628, 220, 220, 220, 4938, 796, 4808, 10943, 16254, 62, 5446, 8924, 1343, 4808, 10943, 16254, 62, 37, 23719, 198, 220, 220, 220, 611, 705, 25616, 6, 407, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 3262, 16090, 20520, 796, 1459, 17816, 3262, 16090, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 27349, 10786, 3262, 16090, 3256, 1459, 17816, 3262, 16090, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 27349, 10786, 3262, 16090, 3256, 4938, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 3262, 16090, 20520, 796, 2172, 82, 17816, 25616, 20520, 628, 220, 220, 220, 611, 2172, 82, 17816, 3262, 16090, 20520, 287, 4938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 3262, 16090, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 3262, 16090, 20520, 796, 705, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 82, 17816, 3262, 16090, 20520, 287, 4808, 10943, 16254, 62, 37, 23719, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 3262, 16090, 20520, 796, 705, 3919, 6, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 27349, 10786, 3262, 16090, 3256, 4938, 8, 628, 220, 220, 220, 611, 705, 4774, 3672, 6, 407, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 4774, 3672, 20520, 796, 1459, 17816, 4774, 3672, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6404, 62, 12286, 62, 27349, 10786, 4774, 3672, 3256, 1459, 17816, 4774, 3672, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 27349, 10786, 4774, 3672, 3256, 37250, 15388, 16, 13, 20688, 13, 785, 6, 12962, 628, 220, 220, 220, 611, 2172, 82, 17816, 4774, 3672, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 4774, 3672, 20520, 796, 2172, 82, 17816, 4774, 3672, 20520, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 27349, 10786, 4774, 3672, 3256, 37250, 15388, 16, 13, 20688, 13, 785, 6, 12962, 628, 220, 220, 220, 611, 705, 12947, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 12947, 20520, 796, 2172, 82, 17816, 12947, 20520, 628, 220, 220, 220, 1441, 1255, 628, 198, 4299, 4808, 29572, 62, 81, 448, 274, 7, 361, 558, 11, 2172, 82, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7066, 1010, 1813, 3689, 290, 23862, 4938, 6460, 329, 198, 220, 220, 220, 262, 6339, 6460, 2393, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 14435, 1096, 8251, 198, 220, 220, 220, 2172, 82, 796, 8633, 19510, 74, 13, 21037, 22784, 410, 8, 329, 357, 74, 11, 410, 8, 287, 2237, 13, 2676, 23814, 7, 404, 912, 4008, 198, 220, 220, 220, 1255, 796, 23884, 198, 220, 220, 220, 611, 705, 81, 448, 274, 6, 407, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 81, 448, 274, 7, 361, 558, 11, 705, 81, 448, 274, 3256, 705, 8053, 286, 11926, 11537, 628, 220, 220, 220, 329, 2172, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 8738, 60, 796, 2172, 82, 58, 8738, 60, 628, 220, 220, 220, 1441, 1255, 628, 198, 4299, 4808, 13564, 62, 7753, 7, 361, 558, 11, 1366, 11, 9483, 11, 3912, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 257, 2393, 284, 11898, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 7, 43551, 11, 3912, 13, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 43551, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 90, 15, 92, 2314, 307, 3194, 13, 1391, 16, 92, 857, 407, 2152, 6, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 34345, 11, 9483, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 351, 8268, 13, 26791, 13, 2704, 9654, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 7890, 8, 198, 220, 220, 220, 1441, 29472, 628, 198, 4299, 4808, 13564, 62, 7753, 62, 81, 448, 274, 7, 361, 558, 11, 1366, 11, 9483, 11, 3912, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 257, 2393, 284, 11898, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 7, 43551, 11, 3912, 13, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 43551, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 90, 15, 92, 2314, 307, 3194, 13, 1391, 16, 92, 857, 407, 2152, 6, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 34345, 11, 9483, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 351, 8268, 13, 26791, 13, 2704, 9654, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 7890, 8, 628, 220, 220, 220, 11593, 82, 2501, 834, 17816, 7753, 13, 2617, 62, 14171, 6, 16151, 34345, 11, 705, 15, 38172, 11537, 198, 220, 220, 220, 1441, 29472, 628, 198, 4299, 4808, 13564, 62, 7753, 62, 27349, 7, 7890, 11, 29472, 11, 2251, 28, 25101, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 257, 2393, 284, 11898, 198, 220, 220, 220, 1002, 2393, 857, 407, 2152, 11, 691, 2251, 611, 2251, 198, 220, 220, 220, 4578, 318, 6407, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 34345, 8, 290, 407, 2251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 90, 15, 92, 2314, 307, 3194, 13, 1391, 15, 92, 857, 407, 2152, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 2251, 318, 900, 284, 10352, 6, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 34345, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 351, 8268, 13, 26791, 13, 2704, 9654, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 7890, 8, 628, 198, 4299, 4808, 961, 62, 29510, 7, 7890, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 644, 561, 307, 3194, 284, 11898, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 256, 448, 796, 10903, 9399, 3419, 198, 220, 220, 220, 256, 448, 13, 13564, 7, 7890, 8, 198, 220, 220, 220, 256, 448, 13, 36163, 7, 15, 8, 198, 220, 220, 220, 5072, 796, 256, 448, 13, 961, 6615, 3419, 198, 220, 220, 220, 256, 448, 13, 19836, 3419, 628, 220, 220, 220, 1441, 5072, 628, 198, 4299, 4808, 961, 62, 29510, 62, 361, 2114, 7, 361, 558, 11, 1366, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 644, 561, 307, 3194, 284, 11898, 329, 20314, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 50001, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 611, 37581, 796, 11055, 13, 13287, 15090, 6, 3672, 10354, 611, 558, 11, 705, 7890, 10354, 1366, 30072, 198, 220, 220, 220, 1303, 8229, 355, 257, 7177, 523, 262, 814, 8019, 2499, 198, 220, 220, 220, 1441, 685, 9186, 1343, 705, 59, 77, 6, 329, 2378, 287, 611, 37581, 13, 35312, 10786, 59, 77, 11537, 60, 628, 198, 4299, 4808, 13564, 62, 7753, 62, 361, 2114, 7, 361, 558, 11, 1366, 11, 12429, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 257, 2393, 284, 11898, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4555, 62, 28243, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 28243, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 10459, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 50001, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 1303, 4149, 1220, 14784, 14, 27349, 14, 3849, 32186, 656, 257, 8633, 198, 220, 220, 220, 46363, 796, 4808, 29572, 62, 3849, 32186, 3419, 198, 220, 220, 220, 1303, 27967, 14275, 6460, 625, 319, 12, 39531, 6460, 198, 220, 220, 220, 46363, 58, 361, 558, 60, 796, 1366, 628, 220, 220, 220, 611, 37581, 796, 10148, 198, 220, 220, 220, 329, 21302, 287, 46363, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 4906, 6, 287, 46363, 58, 324, 3429, 60, 290, 46363, 58, 324, 3429, 7131, 6, 4906, 20520, 6624, 705, 10459, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45218, 796, 2723, 62, 28243, 13, 13287, 15090, 6, 3672, 10354, 21302, 11, 705, 7890, 10354, 46363, 58, 324, 3429, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45218, 796, 4555, 62, 28243, 13, 13287, 15090, 6, 3672, 10354, 21302, 11, 705, 7890, 10354, 46363, 58, 324, 3429, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 37581, 796, 611, 37581, 1343, 45218, 198, 220, 220, 220, 220, 220, 220, 220, 611, 21302, 6624, 611, 558, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7448, 62, 361, 37581, 796, 45218, 628, 220, 220, 220, 4808, 5188, 18973, 6158, 62, 25664, 796, 10352, 198, 220, 220, 220, 611, 705, 34345, 6, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 6460, 17816, 34345, 6, 4083, 9688, 2032, 342, 10786, 14, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 705, 90, 15, 92, 14, 90, 16, 92, 4458, 18982, 28264, 7206, 33, 62, 12884, 33249, 62, 34720, 11, 6460, 17816, 34345, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 6460, 17816, 34345, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 5188, 18973, 6158, 62, 25664, 796, 6407, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 34345, 6, 287, 46363, 58, 324, 3429, 7131, 6, 7890, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 46363, 58, 324, 3429, 7131, 6, 7890, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 4808, 7206, 33, 62, 12884, 33249, 62, 25664, 628, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 418, 13, 6978, 13, 15908, 3672, 7, 34345, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 90, 15, 92, 2314, 307, 3194, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 418, 13, 6978, 13, 15908, 3672, 7, 34345, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 351, 8268, 13, 26791, 13, 2704, 9654, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 5188, 18973, 6158, 62, 25664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 82, 9586, 62, 361, 37581, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 361, 37581, 8, 628, 220, 220, 220, 1303, 8229, 355, 257, 7177, 523, 262, 814, 8019, 2499, 198, 220, 220, 220, 1441, 7448, 62, 361, 37581, 13, 35312, 10786, 59, 77, 11537, 628, 198, 4299, 4808, 13564, 62, 7753, 62, 381, 79, 62, 361, 2114, 7, 361, 558, 11, 1366, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12257, 274, 257, 2393, 284, 11898, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 381, 79, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 50001, 62, 381, 79, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 46363, 796, 4808, 29572, 62, 3849, 32186, 3419, 198, 220, 220, 220, 46363, 58, 361, 558, 60, 796, 1366, 628, 220, 220, 220, 611, 37581, 796, 10148, 198, 220, 220, 220, 45218, 796, 11055, 13, 13287, 15090, 6, 7890, 10354, 46363, 58, 361, 558, 60, 30072, 198, 220, 220, 220, 611, 37581, 796, 45218, 1343, 611, 37581, 628, 220, 220, 220, 29472, 796, 4808, 7206, 33, 62, 10246, 47, 62, 34720, 1343, 31051, 6, 1343, 46363, 58, 361, 558, 7131, 6, 7890, 6, 7131, 6, 42504, 6, 7131, 6, 15234, 1304, 20520, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 418, 13, 6978, 13, 15908, 3672, 7, 34345, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 90, 15, 92, 2314, 307, 3194, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 31456, 13, 18982, 7, 418, 13, 6978, 13, 15908, 3672, 7, 34345, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 351, 8268, 13, 26791, 13, 69, 9654, 7, 34345, 11, 705, 86, 11537, 355, 277, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 448, 13, 13564, 7, 361, 37581, 8, 628, 220, 220, 220, 1303, 8229, 355, 257, 7177, 523, 262, 814, 8019, 2499, 198, 220, 220, 220, 1441, 29472, 628, 198, 4299, 1382, 62, 65, 623, 7, 361, 558, 11, 12429, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 13610, 257, 6314, 4226, 287, 1220, 14784, 14, 4666, 1676, 1350, 13, 67, 351, 262, 3804, 6460, 198, 220, 220, 220, 290, 3440, 262, 37228, 9720, 8265, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 11249, 62, 65, 623, 6314, 15, 4235, 28, 20427, 12, 282, 65, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1915, 62, 22478, 796, 11593, 2164, 1299, 834, 17816, 418, 20979, 6, 7131, 25, 16, 60, 628, 220, 220, 220, 2172, 82, 796, 4808, 29572, 62, 33692, 62, 65, 623, 7, 33692, 11, 611, 558, 8, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 10414, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 1013, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 198, 220, 220, 220, 1366, 796, 11055, 13, 13287, 15090, 6, 3672, 10354, 611, 558, 11, 705, 65, 42703, 10354, 2172, 82, 30072, 628, 220, 220, 220, 611, 705, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 961, 62, 29510, 7, 7890, 8, 628, 220, 220, 220, 4808, 13564, 62, 7753, 7, 361, 558, 11, 1366, 11, 4808, 7206, 33, 62, 12884, 33249, 62, 10943, 37, 62, 46700, 1546, 11, 705, 90, 15, 27422, 10414, 4458, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 3108, 796, 28686, 13, 6978, 13, 22179, 28264, 7206, 33, 62, 12884, 33249, 62, 10943, 37, 62, 46700, 1546, 11, 705, 90, 15, 27422, 10414, 4458, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 611, 1915, 62, 22478, 6624, 705, 20, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 62, 4906, 287, 19203, 26011, 3256, 705, 25811, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 37250, 36622, 3256, 705, 12, 72, 3256, 705, 12, 68, 3256, 374, 26488, 36796, 15, 32239, 82, 90, 16, 92, 15885, 14, 67, 4458, 18982, 7, 1370, 62, 4906, 11, 611, 558, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31051, 14784, 14, 4666, 1676, 1350, 13, 10414, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 17816, 28758, 13, 5143, 6, 16151, 28758, 11, 21015, 62, 29149, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 17816, 7753, 13, 33295, 20520, 10786, 14, 14784, 14, 4666, 1676, 1350, 13, 10414, 3256, 3108, 8, 628, 220, 220, 220, 1303, 8778, 9720, 8265, 198, 220, 220, 220, 11593, 82, 2501, 834, 17816, 74, 4666, 13, 2220, 20520, 10786, 65, 42703, 11537, 628, 220, 220, 220, 1303, 2721, 611, 641, 75, 1015, 12, 17, 13, 21, 198, 220, 220, 220, 11593, 82, 2501, 834, 17816, 35339, 13, 17350, 20520, 10786, 361, 641, 75, 1015, 12, 17, 13, 21, 11537, 628, 220, 220, 220, 1441, 4808, 961, 62, 7753, 7, 6978, 8, 628, 198, 4299, 1382, 62, 39994, 7, 361, 558, 11, 611, 558, 62, 4906, 11, 9343, 11, 12429, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10934, 281, 7071, 4226, 329, 257, 3127, 7071, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 11249, 62, 39994, 4555, 15, 4555, 1279, 33692, 29, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 611, 558, 796, 611, 558, 13, 21037, 3419, 198, 220, 220, 220, 611, 558, 62, 4906, 796, 611, 558, 62, 4906, 13, 21037, 3419, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 407, 287, 4808, 5064, 11598, 62, 9936, 47, 1546, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 40225, 62, 18224, 62, 361, 558, 7, 361, 558, 11, 611, 558, 62, 4906, 11, 4808, 5064, 11598, 62, 9936, 47, 1546, 8, 628, 220, 220, 220, 611, 705, 1676, 1462, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 1676, 1462, 20520, 796, 705, 12708, 6, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 6624, 705, 36341, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 36341, 20520, 796, 705, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 9866, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 9866, 318, 257, 2672, 4634, 329, 11778, 20314, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 85, 9620, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 85, 9620, 20520, 796, 705, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 17816, 35339, 13, 17350, 20520, 10786, 85, 9620, 11537, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 381, 79, 2577, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 381, 79, 2577, 20520, 796, 705, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 11593, 82, 2501, 834, 17816, 35339, 13, 9641, 20520, 10786, 381, 79, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 916, 796, 11593, 82, 2501, 834, 17816, 35339, 13, 17350, 20520, 10786, 381, 79, 11537, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 65, 623, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 6649, 3080, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 705, 6649, 3080, 318, 257, 2672, 4634, 329, 6314, 20314, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 628, 220, 220, 220, 1288, 361, 611, 558, 62, 4906, 6624, 705, 9458, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 3742, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3742, 318, 257, 2672, 4634, 329, 7696, 20314, 319, 26062, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 14949, 1912, 3341, 6, 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, 2604, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 3460, 4163, 12331, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 17816, 35339, 13, 17350, 20520, 10786, 9458, 12, 26791, 11537, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 287, 37250, 2788, 3256, 705, 65, 623, 3256, 705, 9458, 3256, 705, 36341, 3256, 705, 85, 9620, 3256, 705, 381, 79, 2577, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 796, 4808, 29572, 62, 33692, 62, 2788, 7, 33692, 11, 611, 558, 62, 4906, 11, 9343, 11, 611, 558, 8, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 287, 37250, 10459, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 796, 4808, 29572, 62, 33692, 62, 10459, 7, 33692, 11, 611, 558, 62, 4906, 11, 9343, 11, 611, 558, 8, 628, 220, 220, 220, 611, 705, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 961, 62, 29510, 62, 361, 2114, 7, 361, 558, 11, 2172, 82, 58, 361, 558, 12962, 628, 220, 220, 220, 611, 37581, 796, 4808, 13564, 62, 7753, 62, 361, 2114, 7, 361, 558, 11, 2172, 82, 58, 361, 558, 4357, 12429, 33692, 8, 628, 220, 220, 220, 611, 611, 558, 62, 4906, 6624, 705, 381, 79, 2577, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7753, 62, 381, 79, 62, 361, 2114, 7, 361, 558, 11, 2172, 82, 58, 361, 558, 12962, 628, 220, 220, 220, 1303, 4155, 3951, 287, 1351, 886, 351, 649, 1370, 11, 523, 814, 8019, 2499, 198, 220, 220, 220, 1441, 685, 9186, 1343, 705, 59, 77, 6, 329, 2378, 287, 611, 37581, 60, 628, 198, 4299, 1382, 62, 81, 448, 274, 7, 361, 558, 11, 12429, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3060, 6339, 14750, 329, 257, 3127, 7071, 1262, 510, 9729, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 11249, 62, 81, 448, 274, 4555, 15, 1279, 33692, 29, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 611, 558, 796, 611, 558, 13, 21037, 3419, 198, 220, 220, 220, 2172, 82, 796, 4808, 29572, 62, 81, 448, 274, 7, 361, 558, 11, 6460, 8, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 38629, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 6339, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 751, 62, 81, 448, 721, 40616, 796, 11055, 13, 13287, 7, 38629, 62, 4906, 11639, 2860, 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, 11926, 28, 404, 912, 17816, 81, 448, 274, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 28, 361, 558, 8, 628, 220, 220, 220, 1619, 62, 81, 448, 721, 40616, 796, 11055, 13, 13287, 7, 38629, 62, 4906, 11639, 12381, 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, 11926, 28, 404, 912, 17816, 81, 448, 274, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 558, 28, 361, 558, 8, 628, 220, 220, 220, 611, 705, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 961, 62, 29510, 7, 2860, 62, 81, 448, 721, 40616, 1343, 1619, 62, 81, 448, 721, 40616, 8, 628, 220, 220, 220, 29472, 796, 4808, 13564, 62, 7753, 62, 81, 448, 274, 7, 361, 558, 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, 751, 62, 81, 448, 721, 40616, 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, 4808, 7206, 33, 62, 12884, 33249, 62, 8577, 62, 34720, 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, 38629, 12, 90, 15, 92, 11537, 198, 220, 220, 220, 2482, 796, 4808, 961, 62, 7753, 7, 34345, 8, 628, 220, 220, 220, 29472, 796, 4808, 13564, 62, 7753, 62, 81, 448, 274, 7, 361, 558, 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, 1619, 62, 81, 448, 721, 40616, 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, 4808, 7206, 33, 62, 12884, 33249, 62, 41925, 62, 34720, 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, 38629, 12, 90, 15, 92, 11537, 198, 220, 220, 220, 2482, 15853, 4808, 961, 62, 7753, 7, 34345, 8, 628, 220, 220, 220, 1441, 2482, 628, 198, 4299, 866, 7, 361, 558, 11, 611, 558, 62, 4906, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 40411, 257, 3127, 7071, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 2902, 4555, 15, 4555, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 38795, 4410, 389, 6856, 416, 262, 4958, 13, 198, 220, 220, 220, 1303, 8090, 705, 3849, 32186, 6, 3588, 470, 3181, 866, 13, 198, 220, 220, 220, 611, 611, 558, 62, 4906, 407, 287, 37250, 36341, 3256, 705, 10459, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 11593, 82, 2501, 834, 17816, 28758, 13, 5143, 6, 16151, 17816, 361, 2902, 3256, 611, 558, 12962, 198, 220, 220, 220, 1441, 6045, 628, 198, 4299, 651, 62, 65, 623, 7, 361, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 262, 2695, 286, 257, 6314, 4226, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 1136, 62, 65, 623, 6314, 15, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3108, 796, 28686, 13, 6978, 13, 22179, 28264, 7206, 33, 62, 12884, 33249, 62, 10943, 37, 62, 46700, 1546, 11, 705, 90, 15, 27422, 10414, 4458, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 1441, 4808, 961, 62, 7753, 7, 6978, 8, 628, 198, 4299, 651, 62, 39994, 7, 361, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 262, 10154, 286, 281, 7071, 4226, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 1136, 62, 39994, 4555, 15, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 46363, 796, 4808, 29572, 62, 3849, 32186, 3419, 198, 220, 220, 220, 611, 611, 558, 287, 46363, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 611, 558, 6624, 705, 10459, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 10459, 13, 18594, 6592, 11537, 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, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 24689, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 50001, 62, 2788, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 220, 220, 220, 220, 611, 37581, 796, 11055, 13, 13287, 15090, 6, 3672, 10354, 611, 558, 11, 705, 7890, 10354, 46363, 58, 361, 558, 60, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4155, 3951, 287, 1351, 886, 351, 649, 1370, 11, 523, 814, 8019, 2499, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 9186, 1343, 705, 59, 77, 6, 329, 2378, 287, 611, 37581, 13, 35312, 10786, 59, 77, 11537, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17635, 628, 198, 4299, 510, 7, 361, 558, 11, 611, 558, 62, 4906, 2599, 220, 1303, 279, 2645, 600, 25, 15560, 28, 34, 486, 3070, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7253, 510, 257, 3127, 7071, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 929, 4555, 15, 4555, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 38795, 4410, 389, 6856, 416, 262, 4958, 13, 198, 220, 220, 220, 1303, 8090, 705, 3849, 32186, 6, 3588, 470, 3181, 510, 13, 198, 220, 220, 220, 611, 611, 558, 62, 4906, 407, 287, 19203, 36341, 3256, 705, 10459, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 11593, 82, 2501, 834, 17816, 28758, 13, 5143, 6, 16151, 17816, 361, 929, 3256, 611, 558, 12962, 198, 220, 220, 220, 1441, 6045, 628, 198, 4299, 651, 62, 27349, 62, 33692, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 262, 10154, 286, 262, 3298, 3127, 4226, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 1136, 62, 27349, 62, 33692, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 14267, 62, 14784, 62, 12286, 62, 3262, 16090, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 2164, 1299, 834, 17816, 418, 12853, 3672, 20520, 6624, 705, 36609, 11157, 6, 290, 198, 220, 220, 220, 220, 220, 220, 220, 493, 7, 834, 2164, 1299, 834, 17816, 418, 20979, 6, 4083, 35312, 10786, 2637, 38381, 15, 12962, 18189, 1105, 8, 628, 220, 220, 220, 611, 14267, 62, 14784, 62, 12286, 62, 3262, 16090, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 611, 11593, 82, 2501, 834, 17816, 15271, 13, 15182, 20520, 10786, 3262, 16090, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11593, 82, 2501, 834, 17816, 15271, 13, 13376, 20520, 10786, 3262, 16090, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 3262, 16090, 20520, 796, 366, 8505, 1, 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, 6460, 17816, 3262, 16090, 20520, 796, 366, 3919, 1, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 3262, 16090, 20520, 796, 366, 3919, 1, 628, 220, 220, 220, 220, 220, 220, 220, 2583, 3672, 796, 4808, 29572, 62, 4774, 3672, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7386, 3672, 796, 4808, 29572, 62, 27830, 3672, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 4774, 3672, 20520, 796, 2583, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 27830, 3672, 20520, 796, 7386, 3672, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 796, 4808, 29572, 62, 14421, 62, 27349, 62, 33692, 3419, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 13812, 12, 27349, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 3359, 12, 27349, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 220, 220, 220, 3127, 796, 11055, 13, 13287, 7, 33692, 8, 198, 220, 220, 220, 1441, 4808, 961, 62, 29510, 7, 27349, 8, 628, 198, 4299, 651, 62, 81, 448, 274, 7, 361, 558, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8229, 262, 11926, 329, 262, 7071, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 1136, 62, 81, 448, 274, 4555, 15, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 28264, 7206, 33, 62, 12884, 33249, 62, 8577, 62, 34720, 11, 705, 38629, 12, 90, 15, 92, 4458, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 2482, 796, 4808, 961, 62, 7753, 7, 34345, 8, 628, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 28264, 7206, 33, 62, 12884, 33249, 62, 41925, 62, 34720, 11, 705, 38629, 12, 90, 15, 92, 4458, 18982, 7, 361, 558, 4008, 198, 220, 220, 220, 2482, 15853, 4808, 961, 62, 7753, 7, 34345, 8, 628, 220, 220, 220, 1441, 2482, 628, 198, 4299, 4174, 62, 27349, 62, 33692, 7, 1174, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 27967, 3298, 3127, 8398, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 39014, 62, 27349, 62, 33692, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 705, 46115, 62, 260, 18769, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 46115, 62, 260, 18769, 20520, 796, 10352, 628, 220, 220, 220, 611, 705, 39014, 62, 4774, 3672, 6, 407, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 39014, 62, 4774, 3672, 20520, 796, 10352, 628, 220, 220, 220, 2583, 3672, 62, 411, 796, 6407, 198, 220, 220, 220, 611, 6460, 17816, 39014, 62, 4774, 3672, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 4774, 3672, 6, 287, 6460, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2583, 3672, 62, 411, 796, 11593, 82, 2501, 834, 17816, 27349, 13, 4666, 62, 4774, 3672, 6, 16151, 33692, 17816, 4774, 3672, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 464, 3127, 1181, 1017, 82, 318, 2111, 284, 4174, 2583, 3672, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 36653, 475, 645, 2583, 3672, 318, 5447, 2637, 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, 2583, 3672, 62, 411, 796, 10352, 628, 220, 220, 220, 581, 796, 6407, 198, 220, 220, 220, 611, 6460, 17816, 46115, 62, 260, 18769, 20520, 287, 4808, 10943, 16254, 62, 5446, 8924, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 464, 3127, 1181, 1017, 82, 318, 10616, 257, 20149, 286, 262, 1080, 284, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1676, 525, 306, 4174, 3127, 8398, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 581, 796, 6407, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2245, 796, 11593, 82, 2501, 834, 17816, 15271, 13, 11338, 20520, 10786, 3262, 16090, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 581, 796, 2245, 290, 11593, 82, 2501, 834, 17816, 15271, 13, 9688, 20520, 10786, 3262, 16090, 11537, 628, 220, 220, 220, 1441, 2583, 3672, 62, 411, 290, 581, 628, 198, 4299, 1382, 62, 27349, 62, 33692, 7, 1174, 33692, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 10934, 262, 3298, 3127, 4226, 13, 628, 220, 220, 220, 43749, 17934, 25, 628, 220, 220, 220, 11485, 2438, 12, 9967, 3712, 27334, 628, 220, 220, 220, 220, 220, 220, 220, 8268, 705, 9, 6, 20966, 13, 11249, 62, 27349, 62, 33692, 1279, 33692, 29, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2458, 796, 17635, 628, 220, 220, 220, 1303, 4149, 1459, 8398, 290, 3650, 4277, 3815, 198, 220, 220, 220, 1459, 62, 27349, 62, 33692, 796, 4808, 29572, 62, 14421, 62, 27349, 62, 33692, 3419, 628, 220, 220, 220, 1303, 10934, 6460, 198, 220, 220, 220, 2172, 82, 796, 4808, 29572, 62, 27349, 62, 33692, 7, 33692, 11, 1459, 62, 27349, 62, 33692, 8, 628, 220, 220, 220, 1303, 14949, 468, 3888, 1497, 422, 1220, 14784, 14, 12286, 14, 3262, 16090, 198, 220, 220, 220, 1303, 3726, 351, 262, 1105, 13, 3023, 2650, 523, 356, 15560, 393, 7139, 198, 220, 220, 220, 1303, 262, 19140, 3519, 2594, 319, 6297, 198, 220, 220, 220, 14267, 62, 14784, 62, 12286, 62, 3262, 16090, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 2164, 1299, 834, 17816, 418, 12853, 3672, 20520, 6624, 705, 36609, 11157, 6, 290, 198, 220, 220, 220, 220, 220, 220, 220, 493, 7, 834, 2164, 1299, 834, 17816, 418, 20979, 6, 4083, 35312, 10786, 2637, 38381, 15, 12962, 18189, 1105, 8, 198, 220, 220, 220, 611, 14267, 62, 14784, 62, 12286, 62, 3262, 16090, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 82, 17816, 3262, 16090, 20520, 6624, 705, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2139, 62, 28758, 796, 705, 15271, 13, 21633, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2139, 62, 28758, 796, 705, 15271, 13, 40223, 6, 628, 220, 220, 220, 220, 220, 220, 220, 611, 11593, 82, 2501, 834, 17816, 15271, 13, 15182, 20520, 10786, 26245, 13511, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 58, 15271, 62, 28758, 60, 10786, 26245, 13511, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 11593, 82, 2501, 834, 17816, 15271, 13, 15182, 20520, 10786, 3262, 16090, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 82, 2501, 834, 58, 15271, 62, 28758, 60, 10786, 3262, 16090, 11537, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 27349, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 3127, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 796, 11055, 13, 13287, 7, 404, 912, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 961, 62, 29510, 7, 27349, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 19430, 6460, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7753, 62, 27349, 7, 27349, 11, 4808, 7206, 33, 62, 12884, 33249, 2751, 62, 25664, 11, 6407, 8, 628, 220, 220, 220, 1303, 19430, 2583, 3672, 284, 1220, 14784, 14, 4774, 3672, 198, 220, 220, 220, 1017, 500, 796, 2172, 82, 17816, 4774, 3672, 6, 4083, 35312, 10786, 2637, 11, 352, 8, 198, 220, 220, 220, 2172, 82, 17816, 4774, 3672, 20520, 796, 1017, 500, 58, 15, 60, 198, 220, 220, 220, 2583, 3672, 796, 705, 90, 15, 32239, 77, 6, 764, 5794, 7, 404, 912, 17816, 4774, 3672, 6, 12962, 198, 220, 220, 220, 1459, 62, 27830, 3672, 796, 1459, 62, 27349, 62, 33692, 17816, 27830, 3672, 20520, 198, 220, 220, 220, 1459, 62, 12947, 27830, 796, 1459, 62, 27349, 62, 33692, 17816, 12947, 27830, 20520, 628, 220, 220, 220, 1303, 5514, 3551, 262, 2583, 3672, 611, 340, 468, 3421, 198, 220, 220, 220, 611, 407, 2172, 82, 17816, 4774, 3672, 20520, 6624, 1459, 62, 27349, 62, 33692, 17816, 4774, 3672, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 19203, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 20520, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 220, 6330, 45967, 4352, 257, 869, 284, 3127, 13, 4666, 62, 4774, 3672, 2427, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7753, 62, 27349, 7, 4774, 3672, 11, 4808, 7206, 33, 62, 39, 10892, 20608, 62, 25664, 8, 628, 220, 220, 220, 649, 62, 27830, 796, 10352, 198, 220, 220, 220, 611, 18896, 7, 82, 1370, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 27830, 3672, 796, 1017, 500, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 649, 62, 27830, 3672, 14512, 1459, 62, 27830, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7386, 3672, 796, 649, 62, 27830, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 27830, 3672, 20520, 796, 649, 62, 27830, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 27830, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7386, 3672, 796, 1459, 62, 27830, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 27830, 3672, 20520, 796, 7386, 3672, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7386, 3672, 796, 1459, 62, 27830, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 27830, 3672, 20520, 796, 7386, 3672, 628, 220, 220, 220, 649, 62, 12947, 796, 10352, 198, 220, 220, 220, 611, 705, 12947, 6, 287, 2172, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 12947, 27830, 796, 2172, 82, 17816, 12947, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 611, 649, 62, 12947, 27830, 14512, 1459, 62, 12947, 27830, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 27830, 796, 649, 62, 12947, 27830, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 12947, 27830, 20520, 796, 649, 62, 12947, 27830, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 12947, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 27830, 796, 1459, 62, 12947, 27830, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 12947, 27830, 20520, 796, 2989, 27830, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2989, 27830, 796, 1459, 62, 12947, 27830, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 17816, 12947, 27830, 20520, 796, 2989, 27830, 628, 220, 220, 220, 1303, 1002, 262, 7386, 2458, 11, 788, 356, 815, 3551, 262, 581, 349, 85, 13, 10414, 2393, 13, 198, 220, 220, 220, 611, 649, 62, 27830, 393, 649, 62, 12947, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6803, 329, 4683, 7386, 1627, 290, 4296, 611, 3306, 198, 220, 220, 220, 220, 220, 220, 220, 10154, 796, 4808, 29572, 62, 411, 6442, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7386, 62, 1676, 70, 796, 302, 13, 5589, 576, 7, 81, 1549, 296, 391, 59, 82, 33747, 30, 47, 27, 27830, 62, 3672, 29, 59, 50, 28988, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2989, 62, 1676, 70, 796, 302, 13, 5589, 576, 7, 81, 338, 3679, 59, 82, 33747, 30, 47, 27, 12947, 62, 27830, 29, 59, 50, 28988, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1043, 62, 27830, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1043, 62, 12947, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2378, 287, 10154, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7386, 62, 15699, 796, 7386, 62, 1676, 70, 13, 15699, 7, 9186, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 62, 15699, 796, 2989, 62, 1676, 70, 13, 15699, 7, 9186, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7386, 62, 15699, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 33295, 10786, 27830, 1391, 15, 32239, 77, 6, 764, 5794, 7, 27830, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 62, 27830, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2989, 62, 15699, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 33295, 10786, 12947, 1391, 15, 32239, 77, 6, 764, 5794, 7, 12947, 27830, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 62, 12947, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 33295, 7, 9186, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 317, 7386, 1627, 1422, 470, 2152, 523, 356, 1183, 751, 530, 287, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 351, 262, 649, 7386, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1043, 62, 27830, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 28463, 7, 15, 11, 705, 27830, 1391, 15, 32239, 77, 6, 764, 5794, 7, 27830, 3672, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 317, 2989, 1627, 1422, 470, 2152, 523, 356, 1183, 751, 530, 287, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 351, 262, 649, 2989, 7386, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1043, 62, 12947, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 649, 62, 3642, 658, 58, 15, 4083, 9688, 2032, 342, 10786, 27830, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 28463, 7, 16, 11, 705, 12947, 1391, 15, 32239, 77, 6, 764, 5794, 7, 12947, 27830, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 3642, 658, 13, 28463, 7, 15, 11, 705, 12947, 1391, 15, 32239, 77, 6, 764, 5794, 7, 12947, 27830, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 649, 62, 411, 349, 85, 796, 705, 4458, 22179, 7, 3605, 62, 3642, 658, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 19430, 1220, 14784, 14, 411, 349, 85, 13, 10414, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 19203, 9288, 6, 287, 6460, 290, 6460, 17816, 9288, 20520, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7753, 62, 27349, 7, 3605, 62, 411, 349, 85, 11, 4808, 7206, 33, 62, 19535, 3535, 53, 62, 25664, 8, 628, 220, 220, 220, 1303, 220, 973, 329, 8024, 262, 2482, 736, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11055, 796, 449, 1268, 37048, 13, 1136, 62, 28243, 10786, 13812, 12, 27349, 13, 18594, 6592, 11537, 198, 220, 220, 220, 2845, 474, 259, 6592, 17, 13, 1069, 11755, 13, 30800, 3673, 21077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 23722, 407, 3440, 11055, 3359, 12, 27349, 13, 18594, 6592, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 198, 220, 220, 220, 3127, 796, 11055, 13, 13287, 7, 404, 912, 8, 198, 220, 220, 220, 2458, 13, 2302, 437, 28264, 961, 62, 29510, 7, 27349, 4008, 628, 220, 220, 220, 1441, 2458, 198 ]
2.112762
32,440
import numpy as np import simtk.openmm as openmm import simtk.unit as units from openmmtools import testsystems from pymbar import timeseries from functools import partial from openmmmcmc.mcmc import HMCMove, GHMCMove, LangevinDynamicsMove, MonteCarloBarostatMove import logging # Test various combinations of systems and MCMC schemes analytical_testsystems = [ ("HarmonicOscillator", testsystems.HarmonicOscillator(), [GHMCMove(timestep=10.0*units.femtoseconds,nsteps=100)]), ("HarmonicOscillator", testsystems.HarmonicOscillator(), {GHMCMove(timestep=10.0*units.femtoseconds,nsteps=100): 0.5, HMCMove(timestep=10*units.femtosecond, nsteps=10): 0.5}), ("HarmonicOscillatorArray", testsystems.HarmonicOscillatorArray(N=4), [LangevinDynamicsMove(timestep=10.0*units.femtoseconds,nsteps=100)]), ("IdealGas", testsystems.IdealGas(nparticles=216), [HMCMove(timestep=10*units.femtosecond, nsteps=10)]) ] NSIGMA_CUTOFF = 6.0 # cutoff for significance testing debug = False # set to True only for manual debugging of this nose test #============================================================================================= # MAIN AND TESTS #============================================================================================= if __name__ == "__main__": #test_mcmc_expectations() test_minimizer_all_testsystems()
[ 11748, 299, 32152, 355, 45941, 198, 198, 11748, 985, 30488, 13, 9654, 3020, 355, 1280, 3020, 198, 11748, 985, 30488, 13, 20850, 355, 4991, 198, 198, 6738, 1280, 3020, 31391, 1330, 1332, 10057, 82, 198, 198, 6738, 12972, 2022, 283, 1330, 1661, 10640, 198, 6738, 1257, 310, 10141, 1330, 13027, 198, 198, 6738, 1280, 27532, 11215, 66, 13, 76, 11215, 66, 1330, 367, 9655, 21774, 11, 24739, 9655, 21774, 11, 47579, 7114, 35, 4989, 873, 21774, 11, 22489, 9914, 5439, 10374, 455, 265, 21774, 198, 11748, 18931, 198, 198, 2, 6208, 2972, 17790, 286, 3341, 290, 13122, 9655, 16546, 198, 38200, 22869, 62, 9288, 10057, 82, 796, 685, 198, 220, 220, 220, 5855, 39, 1670, 9229, 46, 22360, 1352, 1600, 1332, 10057, 82, 13, 39, 1670, 9229, 46, 22360, 1352, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 685, 17511, 9655, 21774, 7, 16514, 395, 538, 28, 940, 13, 15, 9, 41667, 13, 69, 368, 83, 577, 17561, 82, 11, 77, 20214, 28, 3064, 15437, 828, 198, 220, 220, 220, 5855, 39, 1670, 9229, 46, 22360, 1352, 1600, 1332, 10057, 82, 13, 39, 1670, 9229, 46, 22360, 1352, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 17511, 9655, 21774, 7, 16514, 395, 538, 28, 940, 13, 15, 9, 41667, 13, 69, 368, 83, 577, 17561, 82, 11, 77, 20214, 28, 3064, 2599, 657, 13, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 367, 9655, 21774, 7, 16514, 395, 538, 28, 940, 9, 41667, 13, 69, 368, 83, 577, 17561, 11, 299, 20214, 28, 940, 2599, 657, 13, 20, 92, 828, 198, 220, 220, 220, 5855, 39, 1670, 9229, 46, 22360, 1352, 19182, 1600, 1332, 10057, 82, 13, 39, 1670, 9229, 46, 22360, 1352, 19182, 7, 45, 28, 19, 828, 198, 220, 220, 220, 220, 220, 220, 220, 685, 43, 858, 7114, 35, 4989, 873, 21774, 7, 16514, 395, 538, 28, 940, 13, 15, 9, 41667, 13, 69, 368, 83, 577, 17561, 82, 11, 77, 20214, 28, 3064, 15437, 828, 198, 220, 220, 220, 5855, 7390, 2287, 39699, 1600, 1332, 10057, 82, 13, 7390, 2287, 39699, 7, 77, 3911, 2983, 28, 20666, 828, 198, 220, 220, 220, 220, 220, 220, 220, 685, 39, 9655, 21774, 7, 16514, 395, 538, 28, 940, 9, 41667, 13, 69, 368, 83, 577, 17561, 11, 299, 20214, 28, 940, 8, 12962, 198, 220, 220, 220, 2361, 198, 198, 8035, 3528, 5673, 62, 34, 3843, 27977, 796, 718, 13, 15, 1303, 45616, 329, 12085, 4856, 198, 198, 24442, 796, 10352, 1303, 900, 284, 6407, 691, 329, 10107, 28769, 286, 428, 9686, 1332, 628, 198, 198, 2, 23926, 4770, 25609, 28, 198, 2, 8779, 1268, 5357, 309, 1546, 4694, 198, 2, 23926, 4770, 25609, 28, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 9288, 62, 76, 11215, 66, 62, 1069, 806, 602, 3419, 198, 220, 220, 220, 1332, 62, 1084, 320, 7509, 62, 439, 62, 9288, 10057, 82, 3419, 198 ]
2.812877
497
from time import sleep #Aula N°13 print("Aula N°13 \n") sleep(0.2) s = 0 for c in range(1, 4): n = int(input('Escolha um numero: ')) s = s + n print(s)
[ 6738, 640, 1330, 3993, 198, 198, 2, 32, 4712, 399, 7200, 1485, 198, 198, 4798, 7203, 32, 4712, 399, 7200, 1485, 3467, 77, 4943, 198, 42832, 7, 15, 13, 17, 8, 198, 198, 82, 796, 657, 198, 198, 1640, 269, 287, 2837, 7, 16, 11, 604, 2599, 198, 220, 220, 220, 299, 796, 493, 7, 15414, 10786, 47051, 349, 3099, 23781, 997, 3529, 25, 705, 4008, 198, 220, 220, 220, 264, 796, 264, 1343, 299, 198, 4798, 7, 82, 8 ]
2.0375
80
''' Author : MiKueen Level : Easy Problem Statement : Two Sum II - Input array is sorted Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Note: Your returned answers (both index1 and index2) are not zero-based. You may assume that each input would have exactly one solution and you may not use the same element twice. Example: Input: numbers = [2,7,11,15], target = 9 Output: [1,2] Explanation: The sum of 2 and 7 is 9. Therefore index1 = 1, index2 = 2. '''
[ 7061, 6, 198, 13838, 1058, 13756, 42, 518, 268, 198, 4971, 1058, 16789, 198, 40781, 21983, 1058, 4930, 5060, 2873, 532, 23412, 7177, 318, 23243, 198, 198, 15056, 281, 7177, 286, 37014, 326, 318, 1541, 23243, 287, 41988, 1502, 11, 1064, 734, 3146, 884, 326, 484, 751, 510, 284, 257, 2176, 2496, 1271, 13, 198, 464, 2163, 734, 13065, 815, 1441, 36525, 286, 262, 734, 3146, 884, 326, 484, 751, 510, 284, 262, 2496, 11, 810, 6376, 16, 1276, 307, 1342, 621, 6376, 17, 13, 198, 198, 6425, 25, 198, 7120, 4504, 7429, 357, 16885, 6376, 16, 290, 6376, 17, 8, 389, 407, 6632, 12, 3106, 13, 198, 1639, 743, 7048, 326, 1123, 5128, 561, 423, 3446, 530, 4610, 290, 345, 743, 407, 779, 262, 976, 5002, 5403, 13, 198, 198, 16281, 25, 198, 20560, 25, 3146, 796, 685, 17, 11, 22, 11, 1157, 11, 1314, 4357, 2496, 796, 860, 198, 26410, 25, 685, 16, 11, 17, 60, 198, 3109, 11578, 341, 25, 383, 2160, 286, 362, 290, 767, 318, 860, 13, 8447, 6376, 16, 796, 352, 11, 6376, 17, 796, 362, 13, 198, 7061, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220 ]
3.463054
203
# -*- coding: utf-8 -*- from __future__ import with_statement import warnings from almost import Approximate from pytest import deprecated_call, raises from conftest import various_backends import trueskill as t from trueskill import ( quality, quality_1vs1, rate, rate_1vs1, Rating, setup, TrueSkill) warnings.simplefilter('always') inf = float('inf') nan = float('nan') _rate = almost.wrap(rate) _rate_1vs1 = almost.wrap(rate_1vs1) _quality = almost.wrap(quality) _quality_1vs1 = almost.wrap(quality_1vs1) # usage def test_compatibility_with_another_rating_systems(): """All rating system modules should implement ``rate_1vs1`` and ``quality_1vs1`` to provide shortcuts for 1 vs 1 simple competition games. """ r1, r2 = Rating(30, 3), Rating(20, 2) assert quality_1vs1(r1, r2) == quality([(r1,), (r2,)]) rated = rate([(r1,), (r2,)]) assert rate_1vs1(r1, r2) == (rated[0][0], rated[1][0]) rated = rate([(r1,), (r2,)], [0, 0]) assert rate_1vs1(r1, r2, drawn=True) == (rated[0][0], rated[1][0]) # algorithm @various_backends @various_backends @various_backends @various_backends @various_backends @various_backends @various_backends @various_backends @various_backends # functions @various_backends # mathematics # reported bugs @various_backends def test_issue3(): """The `issue #3`_, opened by @youknowone. These inputs led to ZeroDivisionError before 0.1.4. Also another TrueSkill implementations cannot calculate this case. .. _issue #3: https://github.com/sublee/trueskill/issues/3 """ # @konikos's case 1 t1 = (Rating(42.234, 3.728), Rating(43.290, 3.842)) t2 = (Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500), Rating(16.667, 0.500)) rate([t1, t2], [6, 5]) # @konikos's case 2 t1 = (Rating(25.000, 0.500), Rating(25.000, 0.500), Rating(25.000, 0.500), Rating(25.000, 0.500), Rating(33.333, 0.500), Rating(33.333, 0.500), Rating(33.333, 0.500), Rating(33.333, 0.500), Rating(41.667, 0.500), Rating(41.667, 0.500), Rating(41.667, 0.500), Rating(41.667, 0.500)) t2 = (Rating(42.234, 3.728), Rating(43.291, 3.842)) rate([t1, t2], [0, 28]) @various_backends(['scipy']) def test_issue4(): """The `issue #4`_, opened by @sublee. numpy.float64 handles floating-point error by different way. For example, it can just warn RuntimeWarning on n/0 problem instead of throwing ZeroDivisionError. .. _issue #4: https://github.com/sublee/trueskill/issues/4 """ import numpy r1, r2 = Rating(105.247, 0.439), Rating(27.030, 0.901) # make numpy to raise FloatingPointError instead of warning # RuntimeWarning old_settings = numpy.seterr(divide='raise') try: rate([(r1,), (r2,)]) finally: numpy.seterr(**old_settings) @various_backends([None, 'scipy']) def test_issue5(backend): """The `issue #5`_, opened by @warner121. This error occurs when a winner has too low rating than a loser. Basically Python cannot calculate correct result but mpmath_ can. I added ``backend`` option to :class:`TrueSkill` class. If it is set to 'mpmath' then the problem will have gone. The result of TrueSkill calculator by Microsoft is N(-273.092, 2.683) and N(-75.830, 2.080), of C# Skills by Moserware is N(NaN, 2.6826) and N(NaN, 2.0798). I choose Microsoft's result as an expectation for the test suite. .. _issue #5: https://github.com/sublee/trueskill/issues/5 .. _mpmath: http://mpmath.googlecode.com/ """ assert _quality_1vs1(Rating(-323.263, 2.965), Rating(-48.441, 2.190)) == 0 with raises(FloatingPointError): rate_1vs1(Rating(-323.263, 2.965), Rating(-48.441, 2.190)) assert _quality_1vs1(Rating(), Rating(1000)) == 0 with raises(FloatingPointError): rate_1vs1(Rating(), Rating(1000)) @various_backends(['mpmath']) @various_backends(['mpmath']) def test_issue5_with_more_extreme(): """If the input is more extreme, 'mpmath' backend also made an exception. But we can avoid the problem with higher precision. """ import mpmath try: dps = mpmath.mp.dps with raises(FloatingPointError): rate_1vs1(Rating(), Rating(1000000)) mpmath.mp.dps = 50 assert almost(rate_1vs1(Rating(), Rating(1000000)), prec=-1) == \ [(400016.896, 6.455), (600008.104, 6.455)] with raises(FloatingPointError): rate_1vs1(Rating(), Rating(1000000000000)) mpmath.mp.dps = 100 assert almost(rate_1vs1(Rating(), Rating(1000000000000)), prec=-7) == \ [(400001600117.693, 6.455), (599998399907.307, 6.455)] finally: mpmath.mp.dps = dps def test_issue9_weights_dict_with_object_keys(): """The `issue #9`_, opened by @. .. _issue #9: https://github.com/sublee/trueskill/issues/9 """ p1 = Player(Rating(), 0) p2 = Player(Rating(), 0) p3 = Player(Rating(), 1) teams = [{p1: p1.rating, p2: p2.rating}, {p3: p3.rating}] rated = rate(teams, weights={(0, p1): 1, (0, p2): 0.5, (1, p3): 1}) assert rated[0][p1].mu > rated[0][p2].mu assert rated[0][p1].sigma < rated[0][p2].sigma assert rated[0][p1].sigma == rated[1][p3].sigma
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 11593, 37443, 834, 1330, 351, 62, 26090, 198, 198, 11748, 14601, 198, 198, 6738, 2048, 1330, 2034, 13907, 1920, 198, 6738, 12972, 9288, 1330, 39224, 62, 13345, 11, 12073, 198, 198, 6738, 369, 701, 395, 1330, 2972, 62, 1891, 2412, 198, 11748, 491, 947, 12728, 355, 256, 198, 6738, 491, 947, 12728, 1330, 357, 198, 220, 220, 220, 3081, 11, 3081, 62, 16, 14259, 16, 11, 2494, 11, 2494, 62, 16, 14259, 16, 11, 12028, 11, 9058, 11, 6407, 35040, 8, 628, 198, 40539, 654, 13, 36439, 24455, 10786, 33770, 11537, 628, 198, 10745, 796, 12178, 10786, 10745, 11537, 198, 12647, 796, 12178, 10786, 12647, 11537, 628, 198, 198, 62, 4873, 796, 2048, 13, 37150, 7, 4873, 8, 198, 62, 4873, 62, 16, 14259, 16, 796, 2048, 13, 37150, 7, 4873, 62, 16, 14259, 16, 8, 198, 62, 13237, 796, 2048, 13, 37150, 7, 13237, 8, 198, 62, 13237, 62, 16, 14259, 16, 796, 2048, 13, 37150, 7, 13237, 62, 16, 14259, 16, 8, 628, 198, 2, 8748, 628, 198, 4299, 1332, 62, 5589, 25901, 62, 4480, 62, 29214, 62, 8821, 62, 10057, 82, 33529, 198, 220, 220, 220, 37227, 3237, 7955, 1080, 13103, 815, 3494, 7559, 4873, 62, 16, 14259, 16, 15506, 290, 198, 220, 220, 220, 7559, 13237, 62, 16, 14259, 16, 15506, 284, 2148, 32953, 329, 352, 3691, 352, 2829, 5449, 1830, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 374, 16, 11, 374, 17, 796, 12028, 7, 1270, 11, 513, 828, 12028, 7, 1238, 11, 362, 8, 198, 220, 220, 220, 6818, 3081, 62, 16, 14259, 16, 7, 81, 16, 11, 374, 17, 8, 6624, 3081, 26933, 7, 81, 16, 11, 828, 357, 81, 17, 35751, 12962, 198, 220, 220, 220, 13178, 796, 2494, 26933, 7, 81, 16, 11, 828, 357, 81, 17, 35751, 12962, 198, 220, 220, 220, 6818, 2494, 62, 16, 14259, 16, 7, 81, 16, 11, 374, 17, 8, 6624, 357, 4111, 58, 15, 7131, 15, 4357, 13178, 58, 16, 7131, 15, 12962, 198, 220, 220, 220, 13178, 796, 2494, 26933, 7, 81, 16, 11, 828, 357, 81, 17, 35751, 4357, 685, 15, 11, 657, 12962, 198, 220, 220, 220, 6818, 2494, 62, 16, 14259, 16, 7, 81, 16, 11, 374, 17, 11, 7428, 28, 17821, 8, 6624, 357, 4111, 58, 15, 7131, 15, 4357, 13178, 58, 16, 7131, 15, 12962, 628, 628, 628, 628, 628, 628, 628, 198, 198, 2, 11862, 628, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 2, 5499, 628, 198, 31, 7785, 699, 62, 1891, 2412, 628, 198, 2, 19473, 628, 628, 628, 198, 198, 2, 2098, 11316, 628, 198, 31, 7785, 699, 62, 1891, 2412, 198, 4299, 1332, 62, 21949, 18, 33529, 198, 220, 220, 220, 37227, 464, 4600, 21949, 1303, 18, 63, 62, 11, 4721, 416, 2488, 5832, 16275, 505, 13, 628, 220, 220, 220, 2312, 17311, 2957, 284, 12169, 24095, 1166, 12331, 878, 657, 13, 16, 13, 19, 13, 4418, 1194, 6407, 35040, 198, 220, 220, 220, 25504, 2314, 15284, 428, 1339, 13, 628, 220, 220, 220, 11485, 4808, 21949, 1303, 18, 25, 3740, 1378, 12567, 13, 785, 14, 7266, 7197, 14, 83, 622, 274, 12728, 14, 37165, 14, 18, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 2488, 74, 261, 1134, 418, 338, 1339, 352, 198, 220, 220, 220, 256, 16, 796, 357, 29321, 7, 3682, 13, 24409, 11, 513, 13, 48524, 828, 12028, 7, 3559, 13, 24369, 11, 513, 13, 23, 3682, 4008, 198, 220, 220, 220, 256, 17, 796, 357, 29321, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 1433, 13, 28933, 11, 657, 13, 4059, 4008, 198, 220, 220, 220, 2494, 26933, 83, 16, 11, 256, 17, 4357, 685, 21, 11, 642, 12962, 198, 220, 220, 220, 1303, 2488, 74, 261, 1134, 418, 338, 1339, 362, 198, 220, 220, 220, 256, 16, 796, 357, 29321, 7, 1495, 13, 830, 11, 657, 13, 4059, 828, 12028, 7, 1495, 13, 830, 11, 657, 13, 4059, 828, 12028, 7, 1495, 13, 830, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 1495, 13, 830, 11, 657, 13, 4059, 828, 12028, 7, 2091, 13, 20370, 11, 657, 13, 4059, 828, 12028, 7, 2091, 13, 20370, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 2091, 13, 20370, 11, 657, 13, 4059, 828, 12028, 7, 2091, 13, 20370, 11, 657, 13, 4059, 828, 12028, 7, 3901, 13, 28933, 11, 657, 13, 4059, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12028, 7, 3901, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 3901, 13, 28933, 11, 657, 13, 4059, 828, 12028, 7, 3901, 13, 28933, 11, 657, 13, 4059, 4008, 198, 220, 220, 220, 256, 17, 796, 357, 29321, 7, 3682, 13, 24409, 11, 513, 13, 48524, 828, 12028, 7, 3559, 13, 33551, 11, 513, 13, 23, 3682, 4008, 198, 220, 220, 220, 2494, 26933, 83, 16, 11, 256, 17, 4357, 685, 15, 11, 2579, 12962, 628, 198, 31, 7785, 699, 62, 1891, 2412, 7, 17816, 1416, 541, 88, 6, 12962, 198, 4299, 1332, 62, 21949, 19, 33529, 198, 220, 220, 220, 37227, 464, 4600, 21949, 1303, 19, 63, 62, 11, 4721, 416, 2488, 7266, 7197, 13, 628, 220, 220, 220, 299, 32152, 13, 22468, 2414, 17105, 12462, 12, 4122, 4049, 416, 1180, 835, 13, 1114, 1672, 11, 198, 220, 220, 220, 340, 460, 655, 9828, 43160, 20361, 319, 299, 14, 15, 1917, 2427, 286, 9644, 198, 220, 220, 220, 12169, 24095, 1166, 12331, 13, 628, 220, 220, 220, 11485, 4808, 21949, 1303, 19, 25, 3740, 1378, 12567, 13, 785, 14, 7266, 7197, 14, 83, 622, 274, 12728, 14, 37165, 14, 19, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1330, 299, 32152, 198, 220, 220, 220, 374, 16, 11, 374, 17, 796, 12028, 7, 13348, 13, 23753, 11, 657, 13, 47106, 828, 12028, 7, 1983, 13, 39101, 11, 657, 13, 46815, 8, 198, 220, 220, 220, 1303, 787, 299, 32152, 284, 5298, 49768, 12727, 12331, 2427, 286, 6509, 198, 220, 220, 220, 1303, 43160, 20361, 198, 220, 220, 220, 1468, 62, 33692, 796, 299, 32152, 13, 82, 2357, 81, 7, 7146, 485, 11639, 40225, 11537, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 26933, 7, 81, 16, 11, 828, 357, 81, 17, 35751, 12962, 198, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 32152, 13, 82, 2357, 81, 7, 1174, 727, 62, 33692, 8, 628, 198, 31, 7785, 699, 62, 1891, 2412, 26933, 14202, 11, 705, 1416, 541, 88, 6, 12962, 198, 4299, 1332, 62, 21949, 20, 7, 1891, 437, 2599, 198, 220, 220, 220, 37227, 464, 4600, 21949, 1303, 20, 63, 62, 11, 4721, 416, 2488, 5767, 1008, 19244, 13, 628, 220, 220, 220, 770, 4049, 8833, 618, 257, 8464, 468, 1165, 1877, 7955, 621, 257, 30256, 13, 20759, 198, 220, 220, 220, 11361, 2314, 15284, 3376, 1255, 475, 285, 4426, 776, 62, 460, 13, 314, 2087, 7559, 1891, 437, 15506, 198, 220, 220, 220, 3038, 284, 1058, 4871, 25, 63, 17821, 35040, 63, 1398, 13, 1002, 340, 318, 900, 284, 705, 3149, 11018, 6, 788, 262, 198, 220, 220, 220, 1917, 481, 423, 3750, 13, 628, 220, 220, 220, 383, 1255, 286, 6407, 35040, 28260, 416, 5413, 318, 399, 32590, 27367, 13, 2931, 17, 11, 362, 13, 47521, 8, 290, 198, 220, 220, 220, 399, 32590, 2425, 13, 48341, 11, 362, 13, 33057, 828, 286, 327, 2, 20389, 416, 5826, 263, 1574, 318, 399, 7, 26705, 45, 11, 362, 13, 3104, 2075, 8, 290, 198, 220, 220, 220, 399, 7, 26705, 45, 11, 362, 13, 2998, 4089, 737, 314, 3853, 5413, 338, 1255, 355, 281, 17507, 329, 262, 1332, 198, 220, 220, 220, 18389, 13, 628, 220, 220, 220, 11485, 4808, 21949, 1303, 20, 25, 3740, 1378, 12567, 13, 785, 14, 7266, 7197, 14, 83, 622, 274, 12728, 14, 37165, 14, 20, 198, 220, 220, 220, 11485, 4808, 3149, 11018, 25, 2638, 1378, 3149, 11018, 13, 13297, 8189, 13, 785, 14, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6818, 4808, 13237, 62, 16, 14259, 16, 7, 29321, 32590, 32637, 13, 29558, 11, 362, 13, 24, 2996, 828, 12028, 32590, 2780, 13, 39710, 11, 362, 13, 19782, 4008, 6624, 657, 198, 220, 220, 220, 351, 12073, 7, 33574, 803, 12727, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 62, 16, 14259, 16, 7, 29321, 32590, 32637, 13, 29558, 11, 362, 13, 24, 2996, 828, 12028, 32590, 2780, 13, 39710, 11, 362, 13, 19782, 4008, 198, 220, 220, 220, 6818, 4808, 13237, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 12825, 4008, 6624, 657, 198, 220, 220, 220, 351, 12073, 7, 33574, 803, 12727, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 12825, 4008, 628, 198, 31, 7785, 699, 62, 1891, 2412, 7, 17816, 3149, 11018, 6, 12962, 628, 198, 31, 7785, 699, 62, 1891, 2412, 7, 17816, 3149, 11018, 6, 12962, 198, 4299, 1332, 62, 21949, 20, 62, 4480, 62, 3549, 62, 29896, 33529, 198, 220, 220, 220, 37227, 1532, 262, 5128, 318, 517, 3257, 11, 705, 3149, 11018, 6, 30203, 635, 925, 281, 6631, 13, 198, 220, 220, 220, 887, 356, 460, 3368, 262, 1917, 351, 2440, 15440, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1330, 285, 4426, 776, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 862, 796, 285, 4426, 776, 13, 3149, 13, 67, 862, 198, 220, 220, 220, 220, 220, 220, 220, 351, 12073, 7, 33574, 803, 12727, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2494, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 16, 10535, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 285, 4426, 776, 13, 3149, 13, 67, 862, 796, 2026, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2048, 7, 4873, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 16, 10535, 36911, 3718, 10779, 16, 8, 6624, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47527, 7029, 27037, 13, 48712, 11, 718, 13, 30505, 828, 357, 21, 2388, 23, 13, 13464, 11, 718, 13, 30505, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 351, 12073, 7, 33574, 803, 12727, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2494, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 16, 8269, 2388, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 285, 4426, 776, 13, 3149, 13, 67, 862, 796, 1802, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2048, 7, 4873, 62, 16, 14259, 16, 7, 29321, 22784, 12028, 7, 16, 8269, 2388, 36911, 3718, 10779, 22, 8, 6624, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47527, 19, 2388, 36150, 17657, 13, 48528, 11, 718, 13, 30505, 828, 357, 20, 24214, 5999, 17032, 2998, 13, 22996, 11, 718, 13, 30505, 15437, 198, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 285, 4426, 776, 13, 3149, 13, 67, 862, 796, 288, 862, 628, 198, 4299, 1332, 62, 21949, 24, 62, 43775, 62, 11600, 62, 4480, 62, 15252, 62, 13083, 33529, 198, 220, 220, 220, 37227, 464, 4600, 21949, 1303, 24, 63, 62, 11, 4721, 416, 2488, 13, 628, 220, 220, 220, 11485, 4808, 21949, 1303, 24, 25, 3740, 1378, 12567, 13, 785, 14, 7266, 7197, 14, 83, 622, 274, 12728, 14, 37165, 14, 24, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 279, 16, 796, 7853, 7, 29321, 22784, 657, 8, 198, 220, 220, 220, 279, 17, 796, 7853, 7, 29321, 22784, 657, 8, 198, 220, 220, 220, 279, 18, 796, 7853, 7, 29321, 22784, 352, 8, 198, 220, 220, 220, 3466, 796, 685, 90, 79, 16, 25, 279, 16, 13, 8821, 11, 279, 17, 25, 279, 17, 13, 8821, 5512, 1391, 79, 18, 25, 279, 18, 13, 8821, 92, 60, 198, 220, 220, 220, 13178, 796, 2494, 7, 660, 4105, 11, 19590, 34758, 7, 15, 11, 279, 16, 2599, 352, 11, 357, 15, 11, 279, 17, 2599, 657, 13, 20, 11, 357, 16, 11, 279, 18, 2599, 352, 30072, 198, 220, 220, 220, 6818, 13178, 58, 15, 7131, 79, 16, 4083, 30300, 1875, 13178, 58, 15, 7131, 79, 17, 4083, 30300, 198, 220, 220, 220, 6818, 13178, 58, 15, 7131, 79, 16, 4083, 82, 13495, 1279, 13178, 58, 15, 7131, 79, 17, 4083, 82, 13495, 198, 220, 220, 220, 6818, 13178, 58, 15, 7131, 79, 16, 4083, 82, 13495, 6624, 13178, 58, 16, 7131, 79, 18, 4083, 82, 13495, 198 ]
2.357864
2,378
# coding=utf-8 # Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """BERT finetuning runner.""" from __future__ import absolute_import, division, print_function import datetime import argparse import csv import logging import os import random import sys import pickle import numpy as np import torch import json from torch.utils.data import (DataLoader, RandomSampler, SequentialSampler, TensorDataset) from torch.utils.data.distributed import DistributedSampler from tqdm import tqdm, trange import glob from torch.nn import CrossEntropyLoss, MSELoss from scipy.stats import pearsonr, spearmanr from sklearn.metrics import matthews_corrcoef, f1_score from transformers import (BertConfig, BertForMultipleChoice, BertTokenizer, ElectraConfig, ElectraTokenizer, RobertaConfig, RobertaTokenizer, RobertaForMultipleChoice) from modeling import (BertBaseline, RobertaBaseline, BertForMultipleChoicePlus, RobertaForMultipleChoicePlus) from modeling.model import ElectraForMultipleChoice as Baseline from transformers import (AdamW, WEIGHTS_NAME, CONFIG_NAME) import re import os logger = logging.getLogger(__name__) class InputExample(object): """A single training/test example for simple sequence classification.""" def __init__(self, guid, text_a, text_b=None, label=None): """Constructs a InputExample. Args: guid: Unique id for the example. text_a: string. The untokenized text of the first sequence. For single sequence tasks, only this sequence must be specified. text_b: (Optional) string. The untokenized text of the second sequence. Only must be specified for sequence pair tasks. label: (Optional) string. The label of the example. This should be specified for train and dev examples, but not for test examples. """ self.guid = guid self.text_a = text_a self.text_b = text_b self.label = label class InputFeatures(object): """A single set of features of data.""" class DataProcessor(object): """Base class for data converters for sequence classification data sets.""" def get_train_examples(self, data_dir): """Gets a collection of `InputExample`s for the train set.""" raise NotImplementedError() def get_dev_examples(self, data_dir): """Gets a collection of `InputExample`s for the dev set.""" raise NotImplementedError() def get_labels(self): """Gets the list of labels for this data set.""" raise NotImplementedError() class UbuntuProcessor(DataProcessor): """Processor for the MRPC data set (GLUE version).""" def get_train_examples(self, data_dir): """See base class.""" logger.info("LOOKING AT {}".format(os.path.join(data_dir, "train.txt"))) return self._create_examples( self._read_data(os.path.join(data_dir, "train.txt")), "train") def get_dev_examples(self, data_dir): """See base class.""" return self._create_examples( self._read_data(os.path.join(data_dir, "test.txt")), "test") def get_test_examples(self, data_dir): """See base class.""" return self._create_examples( self._read_data(os.path.join(data_dir, "test.txt")), "test") def get_labels(self): """See base class.""" return ["0", "1"] def _read_data(self, input_file): """Reads a tab separated value file.""" with open(input_file, "r", encoding="utf-8") as f: lines = [] for i,line in enumerate(f): line = re.compile('[\\x00-\\x08\\x0b-\\x0c\\x0e-\\x1f\\x7f]').sub(' ', line).strip() line = line.strip().replace("_", "") parts = line.strip().split("\t") lable = parts[0] message = "" for i in range(1, len(parts) - 1, 1): part = parts[i].strip() if len(part) > 0: if i != len(parts) - 2: message += part message += "[SEP]" else: message += part response = parts[-1] data = {"y": lable, "m": message, "r": response} lines.append(data) return lines def _create_examples(self, lines, set_type): """Creates examples for the training and dev sets.""" examples = [] for (i, line) in enumerate(lines): guid = "%s-%s" % (set_type, i) text_a = [line["r"]] text_b = [line["m"].strip().split("[SEP]")] label = line["y"] examples.append( InputExample(guid=guid, text_a=text_a, text_b=text_b, label=label)) return examples class MuTualProcessor(DataProcessor): """Processor for the MuTual data set.""" def get_train_examples(self, data_dir): """See base class.""" logger.info("LOOKING AT {} train".format(data_dir)) file = os.path.join(data_dir, 'train') file = self._read_txt(file) return self._create_examples(file, 'train') def get_dev_examples(self, data_dir): """See base class.""" logger.info("LOOKING AT {} dev".format(data_dir)) file = os.path.join(data_dir, 'dev') file = self._read_txt(file) return self._create_examples(file, 'dev') def get_test_examples(self, data_dir): """See base class.""" logger.info("LOOKING AT {} test".format(data_dir)) file = os.path.join(data_dir, 'test') file = self._read_txt(file) return self._create_examples(file, 'test') def get_labels(self): """See base class.""" return ["0", "1", "2", "3"] def _create_examples(self, lines, set_type): """Creates examples for the training and dev sets.""" examples = [] for (_, data_raw) in enumerate(lines): id = "%s-%s" % (set_type, data_raw["id"]) article = data_raw["article"] article = re.split(r"(f : |m : |M: |F: )", article) article = ["".join(i) for i in zip(article[1::2], article[2::2])] truth = str(ord(data_raw['answers']) - ord('A')) options = data_raw['options'] examples.append( InputExample( guid=id, text_a = [options[0], options[1], options[2], options[3]], text_b=[article, article, article, article], # this is not efficient but convenient label=truth)) return examples def convert_examples_to_features(examples, label_list, max_seq_length, max_utterance_num, tokenizer, output_mode): """Loads a data file into a list of `InputBatch`s.""" label_map = {label : i for i, label in enumerate(label_list)} features = [] for (ex_index, example) in enumerate(examples): if ex_index % 10000 == 0: logger.info("Writing example %d of %d" % (ex_index, len(examples))) choices_features = [] all_tokens = [] for ending_idx, (text_a, text_b) in enumerate(zip(example.text_a, example.text_b)): tokens_a = tokenizer.tokenize(text_a) tokens_b = [] for idx, text in enumerate(text_b): if len(text.strip()) > 0: tokens_b.extend(tokenizer.tokenize(text) + ["[SEP]"]) _truncate_seq_pair(tokens_a, tokens_b, max_seq_length - 2) tokens = ["[CLS]"] turn_ids = [0] context_len = [] sep_pos = [] tokens_b_raw = " ".join(tokens_b) tokens_b = [] current_pos = 0 for toks in tokens_b_raw.split("[SEP]")[-max_utterance_num - 1:-1]: context_len.append(len(toks.split()) + 1) tokens_b.extend(toks.split()) tokens_b.extend(["[SEP]"]) current_pos += context_len[-1] turn_ids += [len(sep_pos)] * context_len[-1] sep_pos.append(current_pos) tokens += tokens_b segment_ids = [0] * (len(tokens)) tokens_a += ["[SEP]"] tokens += tokens_a segment_ids += [1] * (len(tokens_a)) turn_ids += [len(sep_pos)] * len(tokens_a) sep_pos.append(len(tokens) - 1) input_ids = tokenizer.convert_tokens_to_ids(tokens) input_mask = [1] * len(input_ids) padding = [0] * (max_seq_length - len(input_ids)) input_ids += padding input_mask += padding segment_ids += padding turn_ids += padding context_len += [-1] * (max_utterance_num - len(context_len)) sep_pos += [0] * (max_utterance_num + 1 - len(sep_pos)) assert len(sep_pos) == max_utterance_num + 1 assert len(input_ids) == max_seq_length assert len(input_mask) == max_seq_length assert len(segment_ids) == max_seq_length assert len(context_len) == max_utterance_num assert len(turn_ids) == max_seq_length choices_features.append((input_ids, input_mask, segment_ids, sep_pos, turn_ids)) all_tokens.append(tokens) label_id = label_map[example.label] if ex_index < 10: logger.info("*** Example ***") logger.info("guid: %s" % (example.guid)) for choice_idx, (input_ids, input_mask, segment_ids, sep_pos, turn_ids) in enumerate(choices_features): logger.info("choice: {}".format(choice_idx)) logger.info("input_ids: %s" % " ".join([str(x) for x in input_ids])) logger.info("input_mask: %s" % " ".join([str(x) for x in input_mask])) logger.info("tokens: %s" % " ".join([str(x) for x in all_tokens[choice_idx]])) logger.info("segment_ids: %s" % " ".join([str(x) for x in segment_ids])) logger.info("sep_pos: %s" % " ".join([str(x) for x in sep_pos])) logger.info("turn_ids: %s" % " ".join([str(x) for x in turn_ids])) logger.info("label: %s (id = %d)" % (example.label, label_id)) features.append( InputFeatures( example_id = example.guid, choices_features = choices_features, label = label_id ) ) return features def _truncate_seq_pair(tokens_a, tokens_b, max_length): """Truncates a sequence pair in place to the maximum length.""" # This is a simple heuristic which will always truncate the longer sequence # one token at a time. This makes more sense than truncating an equal percent # of tokens from each, since if one sequence is very short then each token # that's truncated likely contains more information than a longer sequence. while True: total_length = len(tokens_a) + len(tokens_b) if total_length <= max_length: break if len(tokens_a) > len(tokens_b): tokens_a.pop() else: tokens_b.pop(0) if __name__ == "__main__": main()
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 15069, 2864, 383, 3012, 9552, 15417, 4816, 46665, 290, 383, 12905, 2667, 32388, 3457, 13, 1074, 13, 198, 2, 15069, 357, 66, 8, 2864, 11, 15127, 23929, 44680, 6234, 13, 220, 1439, 2489, 10395, 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, 37811, 13246, 51, 957, 316, 46493, 17490, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 198, 11748, 4818, 8079, 198, 11748, 1822, 29572, 198, 11748, 269, 21370, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 4738, 198, 11748, 25064, 198, 11748, 2298, 293, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 11748, 33918, 198, 6738, 28034, 13, 26791, 13, 7890, 1330, 357, 6601, 17401, 11, 14534, 16305, 20053, 11, 24604, 1843, 16305, 20053, 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, 309, 22854, 27354, 292, 316, 8, 198, 6738, 28034, 13, 26791, 13, 7890, 13, 17080, 6169, 1330, 4307, 6169, 16305, 20053, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 11, 491, 858, 198, 11748, 15095, 198, 198, 6738, 28034, 13, 20471, 1330, 6372, 14539, 28338, 43, 793, 11, 6579, 3698, 793, 198, 6738, 629, 541, 88, 13, 34242, 1330, 25286, 1559, 81, 11, 17514, 805, 81, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 23963, 40645, 62, 10215, 81, 1073, 891, 11, 277, 16, 62, 26675, 198, 198, 6738, 6121, 364, 1330, 357, 33, 861, 16934, 11, 22108, 1890, 31217, 46770, 11, 22108, 30642, 7509, 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, 5903, 430, 16934, 11, 5903, 430, 30642, 7509, 11, 5199, 64, 16934, 11, 5199, 64, 30642, 7509, 11, 5199, 64, 1890, 31217, 46770, 8, 198, 6738, 21128, 1330, 357, 33, 861, 15522, 4470, 11, 5199, 64, 15522, 4470, 11, 22108, 1890, 31217, 46770, 17860, 11, 5199, 64, 1890, 31217, 46770, 17860, 8, 198, 6738, 21128, 13, 19849, 1330, 5903, 430, 1890, 31217, 46770, 355, 6455, 4470, 628, 198, 6738, 6121, 364, 1330, 357, 23159, 54, 11, 12887, 34874, 62, 20608, 11, 25626, 62, 20608, 8, 198, 11748, 302, 198, 11748, 28686, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 198, 4871, 23412, 16281, 7, 15252, 2599, 198, 220, 220, 220, 37227, 32, 2060, 3047, 14, 9288, 1672, 329, 2829, 8379, 17923, 526, 15931, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 10103, 11, 2420, 62, 64, 11, 2420, 62, 65, 28, 14202, 11, 6167, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 42316, 82, 257, 23412, 16281, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10103, 25, 30015, 4686, 329, 262, 1672, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 64, 25, 4731, 13, 383, 1418, 4233, 1143, 2420, 286, 262, 717, 8379, 13, 1114, 2060, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8379, 8861, 11, 691, 428, 8379, 1276, 307, 7368, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 65, 25, 357, 30719, 8, 4731, 13, 383, 1418, 4233, 1143, 2420, 286, 262, 1218, 8379, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 1276, 307, 7368, 329, 8379, 5166, 8861, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 25, 357, 30719, 8, 4731, 13, 383, 6167, 286, 262, 1672, 13, 770, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7368, 329, 4512, 290, 1614, 6096, 11, 475, 407, 329, 1332, 6096, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5162, 312, 796, 10103, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5239, 62, 64, 796, 2420, 62, 64, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5239, 62, 65, 796, 2420, 62, 65, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 18242, 796, 6167, 628, 198, 4871, 23412, 23595, 7, 15252, 2599, 198, 220, 220, 220, 37227, 32, 2060, 900, 286, 3033, 286, 1366, 526, 15931, 198, 198, 4871, 6060, 18709, 273, 7, 15252, 2599, 198, 220, 220, 220, 37227, 14881, 1398, 329, 1366, 6718, 1010, 329, 8379, 17923, 1366, 5621, 526, 15931, 628, 220, 220, 220, 825, 651, 62, 27432, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 257, 4947, 286, 4600, 20560, 16281, 63, 82, 329, 262, 4512, 900, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 825, 651, 62, 7959, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 257, 4947, 286, 4600, 20560, 16281, 63, 82, 329, 262, 1614, 900, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 825, 651, 62, 23912, 1424, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 1351, 286, 14722, 329, 428, 1366, 900, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 198, 198, 4871, 14949, 18709, 273, 7, 6601, 18709, 273, 2599, 198, 220, 220, 220, 37227, 18709, 273, 329, 262, 17242, 5662, 1366, 900, 357, 8763, 8924, 2196, 21387, 15931, 628, 220, 220, 220, 825, 651, 62, 27432, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 43, 15308, 2751, 5161, 23884, 1911, 18982, 7, 418, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 366, 27432, 13, 14116, 1, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 961, 62, 7890, 7, 418, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 366, 27432, 13, 14116, 4943, 828, 366, 27432, 4943, 628, 220, 220, 220, 825, 651, 62, 7959, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 961, 62, 7890, 7, 418, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 366, 9288, 13, 14116, 4943, 828, 366, 9288, 4943, 628, 220, 220, 220, 825, 651, 62, 9288, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 961, 62, 7890, 7, 418, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 366, 9288, 13, 14116, 4943, 828, 366, 9288, 4943, 628, 220, 220, 220, 825, 651, 62, 23912, 1424, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 14631, 15, 1600, 366, 16, 8973, 628, 220, 220, 220, 825, 4808, 961, 62, 7890, 7, 944, 11, 5128, 62, 7753, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 82, 257, 7400, 11266, 1988, 2393, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 15414, 62, 7753, 11, 366, 81, 1600, 21004, 2625, 40477, 12, 23, 4943, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3951, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1370, 287, 27056, 378, 7, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 302, 13, 5589, 576, 10786, 58, 6852, 87, 405, 12, 6852, 87, 2919, 6852, 87, 15, 65, 12, 6852, 87, 15, 66, 6852, 87, 15, 68, 12, 6852, 87, 16, 69, 6852, 87, 22, 69, 60, 27691, 7266, 10786, 46083, 1627, 737, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 36311, 22446, 33491, 7203, 62, 1600, 366, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3354, 796, 1627, 13, 36311, 22446, 35312, 7203, 59, 83, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 540, 796, 3354, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 18896, 7, 42632, 8, 532, 352, 11, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 636, 796, 3354, 58, 72, 4083, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 3911, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 14512, 18896, 7, 42632, 8, 532, 362, 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, 3275, 15853, 636, 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, 3275, 15853, 12878, 5188, 47, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 15853, 636, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 3354, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 19779, 88, 1298, 300, 540, 11, 366, 76, 1298, 3275, 11, 366, 81, 1298, 2882, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3951, 13, 33295, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3951, 628, 220, 220, 220, 825, 4808, 17953, 62, 1069, 12629, 7, 944, 11, 3951, 11, 900, 62, 4906, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16719, 274, 6096, 329, 262, 3047, 290, 1614, 5621, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 6096, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 329, 357, 72, 11, 1627, 8, 287, 27056, 378, 7, 6615, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10103, 796, 36521, 82, 12, 4, 82, 1, 4064, 357, 2617, 62, 4906, 11, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 64, 796, 685, 1370, 14692, 81, 8973, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 65, 796, 685, 1370, 14692, 76, 1, 4083, 36311, 22446, 35312, 7203, 58, 5188, 47, 60, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 796, 1627, 14692, 88, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6096, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 16281, 7, 5162, 312, 28, 5162, 312, 11, 2420, 62, 64, 28, 5239, 62, 64, 11, 2420, 62, 65, 28, 5239, 62, 65, 11, 6167, 28, 18242, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6096, 198, 198, 4871, 8252, 51, 723, 18709, 273, 7, 6601, 18709, 273, 2599, 198, 220, 220, 220, 37227, 18709, 273, 329, 262, 8252, 51, 723, 1366, 900, 526, 15931, 628, 220, 220, 220, 825, 651, 62, 27432, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 43, 15308, 2751, 5161, 23884, 4512, 1911, 18982, 7, 7890, 62, 15908, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 27432, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 2116, 13557, 961, 62, 14116, 7, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 7753, 11, 705, 27432, 11537, 628, 220, 220, 220, 825, 651, 62, 7959, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 43, 15308, 2751, 5161, 23884, 1614, 1911, 18982, 7, 7890, 62, 15908, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 7959, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 2116, 13557, 961, 62, 14116, 7, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 7753, 11, 705, 7959, 11537, 628, 220, 220, 220, 825, 651, 62, 9288, 62, 1069, 12629, 7, 944, 11, 1366, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 43, 15308, 2751, 5161, 23884, 1332, 1911, 18982, 7, 7890, 62, 15908, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 9288, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 2116, 13557, 961, 62, 14116, 7, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17953, 62, 1069, 12629, 7, 7753, 11, 705, 9288, 11537, 628, 220, 220, 220, 825, 651, 62, 23912, 1424, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 6214, 2779, 1398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 14631, 15, 1600, 366, 16, 1600, 366, 17, 1600, 366, 18, 8973, 628, 198, 220, 220, 220, 825, 4808, 17953, 62, 1069, 12629, 7, 944, 11, 3951, 11, 900, 62, 4906, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16719, 274, 6096, 329, 262, 3047, 290, 1614, 5621, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 6096, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 44104, 11, 1366, 62, 1831, 8, 287, 27056, 378, 7, 6615, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 796, 36521, 82, 12, 4, 82, 1, 4064, 357, 2617, 62, 4906, 11, 1366, 62, 1831, 14692, 312, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2708, 796, 1366, 62, 1831, 14692, 20205, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2708, 796, 302, 13, 35312, 7, 81, 18109, 69, 1058, 930, 76, 1058, 930, 44, 25, 930, 37, 25, 1267, 1600, 2708, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2708, 796, 14631, 1911, 22179, 7, 72, 8, 329, 1312, 287, 19974, 7, 20205, 58, 16, 3712, 17, 4357, 2708, 58, 17, 3712, 17, 12962, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3872, 796, 965, 7, 585, 7, 7890, 62, 1831, 17816, 504, 86, 364, 6, 12962, 532, 2760, 10786, 32, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3689, 796, 1366, 62, 1831, 17816, 25811, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6096, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 16281, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10103, 28, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 64, 796, 685, 25811, 58, 15, 4357, 3689, 58, 16, 4357, 3689, 58, 17, 4357, 3689, 58, 18, 60, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 62, 65, 41888, 20205, 11, 2708, 11, 2708, 11, 2708, 4357, 1303, 428, 318, 407, 6942, 475, 11282, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 28, 35310, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6096, 198, 198, 4299, 10385, 62, 1069, 12629, 62, 1462, 62, 40890, 7, 1069, 12629, 11, 6167, 62, 4868, 11, 3509, 62, 41068, 62, 13664, 11, 3509, 62, 10381, 590, 62, 22510, 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, 11241, 7509, 11, 5072, 62, 14171, 2599, 198, 220, 220, 220, 37227, 8912, 82, 257, 1366, 2393, 656, 257, 1351, 286, 4600, 20560, 33, 963, 63, 82, 526, 15931, 628, 220, 220, 220, 6167, 62, 8899, 796, 1391, 18242, 1058, 1312, 329, 1312, 11, 6167, 287, 27056, 378, 7, 18242, 62, 4868, 38165, 628, 220, 220, 220, 3033, 796, 17635, 198, 220, 220, 220, 220, 198, 220, 220, 220, 329, 357, 1069, 62, 9630, 11, 1672, 8, 287, 27056, 378, 7, 1069, 12629, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 409, 62, 9630, 4064, 33028, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33874, 1672, 4064, 67, 286, 4064, 67, 1, 4064, 357, 1069, 62, 9630, 11, 18896, 7, 1069, 12629, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 7747, 62, 40890, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 477, 62, 83, 482, 641, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 329, 7464, 62, 312, 87, 11, 357, 5239, 62, 64, 11, 2420, 62, 65, 8, 287, 27056, 378, 7, 13344, 7, 20688, 13, 5239, 62, 64, 11, 1672, 13, 5239, 62, 65, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 64, 796, 11241, 7509, 13, 30001, 1096, 7, 5239, 62, 64, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 2420, 287, 27056, 378, 7, 5239, 62, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 5239, 13, 36311, 28955, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 13, 2302, 437, 7, 30001, 7509, 13, 30001, 1096, 7, 5239, 8, 1343, 14631, 58, 5188, 47, 60, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 2213, 19524, 378, 62, 41068, 62, 24874, 7, 83, 482, 641, 62, 64, 11, 16326, 62, 65, 11, 3509, 62, 41068, 62, 13664, 532, 362, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 796, 14631, 58, 5097, 50, 60, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1210, 62, 2340, 796, 685, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 62, 11925, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41767, 62, 1930, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 62, 1831, 796, 366, 27071, 22179, 7, 83, 482, 641, 62, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 1930, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 284, 591, 287, 16326, 62, 65, 62, 1831, 13, 35312, 7203, 58, 5188, 47, 60, 4943, 58, 12, 9806, 62, 10381, 590, 62, 22510, 532, 352, 21912, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 62, 11925, 13, 33295, 7, 11925, 7, 83, 28194, 13, 35312, 28955, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 13, 2302, 437, 7, 83, 28194, 13, 35312, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 13, 2302, 437, 7, 14692, 58, 5188, 47, 60, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 1930, 15853, 4732, 62, 11925, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1210, 62, 2340, 15853, 685, 11925, 7, 325, 79, 62, 1930, 15437, 1635, 4732, 62, 11925, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41767, 62, 1930, 13, 33295, 7, 14421, 62, 1930, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 15853, 16326, 62, 65, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10618, 62, 2340, 796, 685, 15, 60, 1635, 357, 11925, 7, 83, 482, 641, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 64, 15853, 14631, 58, 5188, 47, 60, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 15853, 16326, 62, 64, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10618, 62, 2340, 15853, 685, 16, 60, 1635, 357, 11925, 7, 83, 482, 641, 62, 64, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1210, 62, 2340, 15853, 685, 11925, 7, 325, 79, 62, 1930, 15437, 1635, 18896, 7, 83, 482, 641, 62, 64, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41767, 62, 1930, 13, 33295, 7, 11925, 7, 83, 482, 641, 8, 532, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 2340, 796, 11241, 7509, 13, 1102, 1851, 62, 83, 482, 641, 62, 1462, 62, 2340, 7, 83, 482, 641, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 27932, 796, 685, 16, 60, 1635, 18896, 7, 15414, 62, 2340, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24511, 796, 685, 15, 60, 1635, 357, 9806, 62, 41068, 62, 13664, 532, 18896, 7, 15414, 62, 2340, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 2340, 15853, 24511, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 27932, 15853, 24511, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10618, 62, 2340, 15853, 24511, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1210, 62, 2340, 15853, 24511, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 62, 11925, 15853, 25915, 16, 60, 1635, 357, 9806, 62, 10381, 590, 62, 22510, 532, 18896, 7, 22866, 62, 11925, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41767, 62, 1930, 15853, 685, 15, 60, 1635, 357, 9806, 62, 10381, 590, 62, 22510, 1343, 352, 532, 18896, 7, 325, 79, 62, 1930, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 325, 79, 62, 1930, 8, 6624, 3509, 62, 10381, 590, 62, 22510, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 15414, 62, 2340, 8, 6624, 3509, 62, 41068, 62, 13664, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 15414, 62, 27932, 8, 6624, 3509, 62, 41068, 62, 13664, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 325, 5154, 62, 2340, 8, 6624, 3509, 62, 41068, 62, 13664, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 22866, 62, 11925, 8, 6624, 3509, 62, 10381, 590, 62, 22510, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 15344, 62, 2340, 8, 6624, 3509, 62, 41068, 62, 13664, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7747, 62, 40890, 13, 33295, 19510, 15414, 62, 2340, 11, 5128, 62, 27932, 11, 10618, 62, 2340, 11, 41767, 62, 1930, 11, 1210, 62, 2340, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 83, 482, 641, 13, 33295, 7, 83, 482, 641, 8, 628, 198, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 312, 796, 6167, 62, 8899, 58, 20688, 13, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 220, 220, 220, 220, 611, 409, 62, 9630, 1279, 838, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 8162, 17934, 17202, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 5162, 312, 25, 4064, 82, 1, 4064, 357, 20688, 13, 5162, 312, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 3572, 62, 312, 87, 11, 357, 15414, 62, 2340, 11, 5128, 62, 27932, 11, 10618, 62, 2340, 11, 41767, 62, 1930, 11, 1210, 62, 2340, 8, 287, 27056, 378, 7, 6679, 1063, 62, 40890, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 25541, 25, 23884, 1911, 18982, 7, 25541, 62, 312, 87, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 15414, 62, 2340, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 5128, 62, 2340, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 15414, 62, 27932, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 5128, 62, 27932, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 482, 641, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 477, 62, 83, 482, 641, 58, 25541, 62, 312, 87, 11907, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 325, 5154, 62, 2340, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 10618, 62, 2340, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 325, 79, 62, 1930, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 41767, 62, 1930, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 15344, 62, 2340, 25, 4064, 82, 1, 4064, 366, 27071, 22179, 26933, 2536, 7, 87, 8, 329, 2124, 287, 1210, 62, 2340, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 18242, 25, 4064, 82, 357, 312, 796, 4064, 67, 16725, 4064, 357, 20688, 13, 18242, 11, 6167, 62, 312, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 3033, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 23595, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1672, 62, 312, 796, 1672, 13, 5162, 312, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7747, 62, 40890, 796, 7747, 62, 40890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 796, 6167, 62, 312, 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, 1267, 628, 220, 220, 220, 1441, 3033, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 4299, 4808, 2213, 19524, 378, 62, 41068, 62, 24874, 7, 83, 482, 641, 62, 64, 11, 16326, 62, 65, 11, 3509, 62, 13664, 2599, 198, 220, 220, 220, 37227, 2898, 19524, 689, 257, 8379, 5166, 287, 1295, 284, 262, 5415, 4129, 526, 15931, 628, 220, 220, 220, 1303, 770, 318, 257, 2829, 339, 27915, 543, 481, 1464, 40122, 378, 262, 2392, 8379, 198, 220, 220, 220, 1303, 530, 11241, 379, 257, 640, 13, 770, 1838, 517, 2565, 621, 40122, 803, 281, 4961, 1411, 198, 220, 220, 220, 1303, 286, 16326, 422, 1123, 11, 1201, 611, 530, 8379, 318, 845, 1790, 788, 1123, 11241, 198, 220, 220, 220, 1303, 326, 338, 40122, 515, 1884, 4909, 517, 1321, 621, 257, 2392, 8379, 13, 198, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 13664, 796, 18896, 7, 83, 482, 641, 62, 64, 8, 1343, 18896, 7, 83, 482, 641, 62, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2472, 62, 13664, 19841, 3509, 62, 13664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 83, 482, 641, 62, 64, 8, 1875, 18896, 7, 83, 482, 641, 62, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 64, 13, 12924, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 62, 65, 13, 12924, 7, 15, 8, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.180834
5,541
# -*- coding: utf-8 -*- # Generated by Django 1.11.14 on 2018-08-01 17:43 from django.conf import settings import django.core.validators from django.db import migrations, models import django.db.models.deletion
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2980, 515, 416, 37770, 352, 13, 1157, 13, 1415, 319, 2864, 12, 2919, 12, 486, 1596, 25, 3559, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 11748, 42625, 14208, 13, 7295, 13, 12102, 2024, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 9945, 13, 27530, 13, 2934, 1616, 295, 628 ]
2.864865
74
# IPython log file from tqdm import tqdm import dask.array as da import zarr import itertools from skimage.transform import downscale_local_mean lls = da.from_zarr('data/gokul-lls/aollsm-m4-560nm.zarr') lls3 = zarr.open('data/gokul-lls/aollsm-m4-560nm-downscale.zarr', dtype=np.float32, shape=(199, 201, 192, 256), chunks=(1, 201, 192, 256)) indices = list(itertools.product(range(199), range(201))) for i, j in tqdm(indices): lls3[i, j] = downscale_local_mean(np.array(lls[i, j]), (4, 4))
[ 2, 6101, 7535, 2604, 2393, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 11748, 288, 2093, 13, 18747, 355, 12379, 198, 11748, 1976, 3258, 198, 11748, 340, 861, 10141, 198, 6738, 1341, 9060, 13, 35636, 1330, 866, 9888, 62, 12001, 62, 32604, 628, 198, 297, 82, 796, 12379, 13, 6738, 62, 89, 3258, 10786, 7890, 14, 70, 482, 377, 12, 297, 82, 14, 64, 692, 5796, 12, 76, 19, 12, 34135, 21533, 13, 89, 3258, 11537, 198, 297, 82, 18, 796, 1976, 3258, 13, 9654, 10786, 7890, 14, 70, 482, 377, 12, 297, 82, 14, 64, 692, 5796, 12, 76, 19, 12, 34135, 21533, 12, 2902, 9888, 13, 89, 3258, 3256, 288, 4906, 28, 37659, 13, 22468, 2624, 11, 5485, 16193, 19104, 11, 580, 11, 17817, 11, 17759, 828, 22716, 16193, 16, 11, 580, 11, 17817, 11, 17759, 4008, 198, 521, 1063, 796, 1351, 7, 270, 861, 10141, 13, 11167, 7, 9521, 7, 19104, 828, 2837, 7, 1264, 22305, 198, 1640, 1312, 11, 474, 287, 256, 80, 36020, 7, 521, 1063, 2599, 198, 220, 220, 220, 32660, 82, 18, 58, 72, 11, 474, 60, 796, 866, 9888, 62, 12001, 62, 32604, 7, 37659, 13, 18747, 7, 297, 82, 58, 72, 11, 474, 46570, 357, 19, 11, 604, 4008, 628 ]
2.35545
211
import pygame,sys from pygame.locals import * pygame.init() FPS = 10 frametime = 1000/FPS fpsClock = pygame.time.Clock () DISPLAYSURF = pygame.display.set_mode((700,500),pygame.DOUBLEBUF, 32) DISPLAYSURF = pygame.display.set_caption ('Snakes!') snakeImg = pygame.image.load ('snake.png') WHITE = (255,255,255) snakeht = pygame.image.get_height (snakeImg) snakewd = pygame.image.get_width (snakeImg) froght = pygame.image.get_height (frogImg) frogwd = pyagem.image.get_width (frogImg) rotation = 0 direction = 'right' snakex = 0 snakey = 500 while True: DISPLAYSURF.fill (WHITE) if direction == 'right': if snakex <= 700: snakex += 5 direction = 'left' elif direction == 'left': if snakex >= 0: snakex -= 5 DISPLAYSURF.blit (snakeImg, (snakex, snakey)) for event in pygame.event.get(): if event.type() == QUIT: pygame.quit() sys.exit() pygame.display.update()
[ 11748, 12972, 6057, 11, 17597, 198, 6738, 12972, 6057, 13, 17946, 874, 1330, 1635, 198, 198, 9078, 6057, 13, 15003, 3419, 198, 198, 37, 3705, 796, 838, 198, 19298, 8079, 796, 8576, 14, 37, 3705, 198, 29647, 44758, 796, 12972, 6057, 13, 2435, 13, 44758, 7499, 198, 198, 26288, 31519, 50, 4261, 37, 796, 12972, 6057, 13, 13812, 13, 2617, 62, 14171, 19510, 9879, 11, 4059, 828, 9078, 6057, 13, 35, 2606, 19146, 19499, 37, 11, 3933, 8, 198, 26288, 31519, 50, 4261, 37, 796, 12972, 6057, 13, 13812, 13, 2617, 62, 6888, 1159, 19203, 16501, 1124, 0, 11537, 198, 16184, 539, 3546, 70, 796, 12972, 6057, 13, 9060, 13, 2220, 19203, 16184, 539, 13, 11134, 11537, 198, 12418, 12709, 796, 357, 13381, 11, 13381, 11, 13381, 8, 198, 16184, 539, 4352, 796, 12972, 6057, 13, 9060, 13, 1136, 62, 17015, 357, 16184, 539, 3546, 70, 8, 198, 16184, 539, 16993, 796, 12972, 6057, 13, 9060, 13, 1136, 62, 10394, 357, 16184, 539, 3546, 70, 8, 198, 69, 305, 456, 83, 796, 12972, 6057, 13, 9060, 13, 1136, 62, 17015, 357, 49956, 3546, 70, 8, 198, 49956, 16993, 796, 12972, 363, 368, 13, 9060, 13, 1136, 62, 10394, 357, 49956, 3546, 70, 8, 198, 10599, 341, 796, 657, 198, 37295, 796, 705, 3506, 6, 198, 16184, 539, 87, 796, 657, 198, 16184, 539, 88, 796, 5323, 198, 198, 4514, 6407, 25, 198, 197, 26288, 31519, 50, 4261, 37, 13, 20797, 357, 12418, 12709, 8, 198, 197, 361, 4571, 6624, 705, 3506, 10354, 198, 197, 197, 361, 17522, 87, 19841, 13037, 25, 198, 197, 197, 197, 16184, 539, 87, 15853, 642, 198, 197, 197, 197, 37295, 796, 705, 9464, 6, 198, 197, 417, 361, 4571, 6624, 705, 9464, 10354, 198, 197, 197, 361, 17522, 87, 18189, 657, 25, 198, 197, 197, 197, 16184, 539, 87, 48185, 642, 198, 197, 26288, 31519, 50, 4261, 37, 13, 2436, 270, 357, 16184, 539, 3546, 70, 11, 357, 16184, 539, 87, 11, 17522, 88, 4008, 198, 197, 1640, 1785, 287, 12972, 6057, 13, 15596, 13, 1136, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1785, 13, 4906, 3419, 6624, 19604, 2043, 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, 12972, 6057, 13, 47391, 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, 25064, 13, 37023, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 12972, 6057, 13, 13812, 13, 19119, 3419, 628, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198 ]
2.144124
451
# Start of panic.py. # End of panic.py.
[ 2, 7253, 286, 13619, 13, 9078, 13, 198, 198, 2, 5268, 286, 13619, 13, 9078, 13, 198 ]
2.411765
17
# # (C) Copyright 2013 Enthought, Inc., Austin, TX # All right reserved. # # This file is open source software distributed according to the terms in # LICENSE.txt # from __future__ import absolute_import # Enthought library imports from traits.api import Any # Local imports from .data_context import DataContext class NameFilterContext(DataContext): """ This context will only take variables that match a list of names. The name of the variable is compared to a list of names. If it matches one of them, it is allowed into the context. If it doesn't, it isn't allowed in the context. """ ########################################################################## # NameFilterContext interface ########################################################################## # The list of names that are allowed into this context. names = Any(copy='shallow') #List -- any container that supports 'in' will work. #### IRestrictedContext interface ########################################## def allows(self, value, name=None): """ Return False if the name is not in our list of accepted names. """ result = name in self.names return result
[ 2, 198, 2, 357, 34, 8, 15069, 2211, 2039, 28895, 11, 3457, 1539, 9533, 11, 15326, 198, 2, 1439, 826, 10395, 13, 198, 2, 198, 2, 770, 2393, 318, 1280, 2723, 3788, 9387, 1864, 284, 262, 2846, 287, 198, 2, 38559, 24290, 13, 14116, 198, 2, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 198, 2, 2039, 28895, 5888, 17944, 198, 6738, 12796, 13, 15042, 1330, 4377, 198, 198, 2, 10714, 17944, 198, 6738, 764, 7890, 62, 22866, 1330, 6060, 21947, 628, 198, 4871, 6530, 22417, 21947, 7, 6601, 21947, 2599, 198, 220, 220, 220, 37227, 770, 4732, 481, 691, 1011, 9633, 326, 2872, 257, 1351, 286, 3891, 13, 628, 220, 220, 220, 383, 1438, 286, 262, 7885, 318, 3688, 284, 257, 1351, 286, 3891, 13, 220, 1002, 340, 7466, 530, 198, 220, 220, 220, 286, 606, 11, 340, 318, 3142, 656, 262, 4732, 13, 220, 1002, 340, 1595, 470, 11, 340, 2125, 470, 3142, 287, 198, 220, 220, 220, 262, 4732, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 2, 198, 220, 220, 220, 1303, 6530, 22417, 21947, 7071, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 2, 628, 220, 220, 220, 1303, 383, 1351, 286, 3891, 326, 389, 3142, 656, 428, 4732, 13, 198, 220, 220, 220, 3891, 796, 4377, 7, 30073, 11639, 1477, 12154, 11537, 220, 1303, 8053, 1377, 597, 9290, 326, 6971, 705, 259, 6, 481, 670, 13, 628, 198, 220, 220, 220, 1303, 21017, 14826, 395, 20941, 21947, 7071, 1303, 29113, 7804, 2, 628, 220, 220, 220, 825, 3578, 7, 944, 11, 1988, 11, 1438, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8229, 10352, 611, 262, 1438, 318, 407, 287, 674, 1351, 286, 6292, 3891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 1438, 287, 2116, 13, 14933, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628 ]
3.729483
329
from setuptools import setup, find_packages setup( name='quiver_engine', version="0.1.4.1.4", author="Jake Bian", author_email="[email protected]", description=("Interactive per-layer visualization for convents in keras"), license='mit', packages=find_packages(), include_package_data=True, package_dir={'quiver_engine': 'quiver_engine'}, package_data={'quiver_engine': 'quiverboard/dist/*'}, install_requires=[ 'keras', 'tensorflow', 'flask', 'flask_cors', 'gevent', 'numpy', 'pillow' ] )
[ 6738, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 198, 198, 40406, 7, 198, 220, 220, 220, 1438, 11639, 421, 1428, 62, 18392, 3256, 198, 220, 220, 220, 2196, 2625, 15, 13, 16, 13, 19, 13, 16, 13, 19, 1600, 198, 220, 220, 220, 1772, 2625, 43930, 41227, 1600, 198, 220, 220, 220, 1772, 62, 12888, 2625, 73, 539, 31, 365, 489, 81, 13, 952, 1600, 198, 220, 220, 220, 6764, 28, 7203, 9492, 5275, 583, 12, 29289, 32704, 329, 3063, 658, 287, 41927, 292, 12340, 198, 220, 220, 220, 5964, 11639, 2781, 3256, 198, 220, 220, 220, 10392, 28, 19796, 62, 43789, 22784, 198, 220, 220, 220, 2291, 62, 26495, 62, 7890, 28, 17821, 11, 198, 220, 220, 220, 5301, 62, 15908, 34758, 6, 421, 1428, 62, 18392, 10354, 705, 421, 1428, 62, 18392, 6, 5512, 198, 220, 220, 220, 5301, 62, 7890, 34758, 6, 421, 1428, 62, 18392, 10354, 705, 421, 1428, 3526, 14, 17080, 15211, 6, 5512, 198, 220, 220, 220, 2721, 62, 47911, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6122, 292, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 83, 22854, 11125, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2704, 2093, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2704, 2093, 62, 66, 669, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 469, 1151, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 77, 32152, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27215, 322, 6, 198, 220, 220, 220, 2361, 198, 8, 198 ]
2.230189
265
# coding: utf-8 """ Speech Services API v2.0 Speech Services API v2.0. # noqa: E501 OpenAPI spec version: v2.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import unittest import swagger_client from swagger_client.api.voice_endpoints_api import VoiceEndpointsApi # noqa: E501 from swagger_client.rest import ApiException class TestVoiceEndpointsApi(unittest.TestCase): """VoiceEndpointsApi unit test stubs""" def test_create_voice_deployment(self): """Test case for create_voice_deployment Creates a new voice endpoint object. # noqa: E501 """ pass def test_delete_deployment(self): """Test case for delete_deployment Delete the specified voice endpoint. # noqa: E501 """ pass def test_get_supported_locales_for_voice_endpoints(self): """Test case for get_supported_locales_for_voice_endpoints Gets a list of supported locales for custom voice endpoints. # noqa: E501 """ pass def test_get_voice_deployment(self): """Test case for get_voice_deployment Gets the details of a custom voice endpoint. # noqa: E501 """ pass def test_get_voice_deployments(self): """Test case for get_voice_deployments Gets a list of voice endpoint details. # noqa: E501 """ pass def test_update_voice_endpoint(self): """Test case for update_voice_endpoint Updates the name and description of the endpoint identified by the given ID. # noqa: E501 """ pass if __name__ == '__main__': unittest.main()
[ 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 37811, 198, 220, 220, 220, 24709, 6168, 7824, 410, 17, 13, 15, 628, 220, 220, 220, 24709, 6168, 7824, 410, 17, 13, 15, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 4946, 17614, 1020, 2196, 25, 410, 17, 13, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2980, 515, 416, 25, 3740, 1378, 12567, 13, 785, 14, 2032, 7928, 12, 15042, 14, 2032, 7928, 12, 8189, 5235, 13, 18300, 198, 37811, 628, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 198, 11748, 555, 715, 395, 198, 198, 11748, 1509, 7928, 62, 16366, 198, 6738, 1509, 7928, 62, 16366, 13, 15042, 13, 38888, 62, 437, 13033, 62, 15042, 1330, 15282, 12915, 13033, 32, 14415, 220, 1303, 645, 20402, 25, 412, 33548, 198, 6738, 1509, 7928, 62, 16366, 13, 2118, 1330, 5949, 72, 16922, 628, 198, 4871, 6208, 35708, 12915, 13033, 32, 14415, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 35708, 12915, 13033, 32, 14415, 4326, 1332, 17071, 82, 37811, 628, 220, 220, 220, 825, 1332, 62, 17953, 62, 38888, 62, 2934, 1420, 434, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 2251, 62, 38888, 62, 2934, 1420, 434, 628, 220, 220, 220, 220, 220, 220, 220, 7921, 274, 257, 649, 3809, 36123, 2134, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 33678, 62, 2934, 1420, 434, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 12233, 62, 2934, 1420, 434, 628, 220, 220, 220, 220, 220, 220, 220, 23520, 262, 7368, 3809, 36123, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 1136, 62, 15999, 62, 17946, 2040, 62, 1640, 62, 38888, 62, 437, 13033, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 651, 62, 15999, 62, 17946, 2040, 62, 1640, 62, 38888, 62, 437, 13033, 628, 220, 220, 220, 220, 220, 220, 220, 29620, 257, 1351, 286, 4855, 1957, 274, 329, 2183, 3809, 886, 13033, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 1136, 62, 38888, 62, 2934, 1420, 434, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 651, 62, 38888, 62, 2934, 1420, 434, 628, 220, 220, 220, 220, 220, 220, 220, 29620, 262, 3307, 286, 257, 2183, 3809, 36123, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 1136, 62, 38888, 62, 2934, 1420, 902, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 651, 62, 38888, 62, 2934, 1420, 902, 628, 220, 220, 220, 220, 220, 220, 220, 29620, 257, 1351, 286, 3809, 36123, 3307, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 19119, 62, 38888, 62, 437, 4122, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14402, 1339, 329, 4296, 62, 38888, 62, 437, 4122, 628, 220, 220, 220, 220, 220, 220, 220, 28090, 262, 1438, 290, 6764, 286, 262, 36123, 5174, 416, 262, 1813, 4522, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.514663
682
"""Infoset utilities package. This package's modules which perform important tasks within the project but are either not specific enough or not large enough to warrant their own package """
[ 37811, 18943, 418, 316, 20081, 5301, 13, 198, 198, 1212, 5301, 338, 13103, 543, 1620, 1593, 8861, 1626, 198, 1169, 1628, 475, 389, 2035, 407, 2176, 1576, 393, 407, 1588, 198, 48229, 284, 8084, 511, 898, 5301, 198, 198, 37811, 198 ]
4.682927
41
""" *Lower-East Capital 4* ⠨ The lower-east capital four gi. """ from dataclasses import dataclass from ....._gi import Gi from ....capital import CapitalGi from ...._gi import StrismicGi from ....east import EasternGi from ...._number import FourGi from ..._gi import LowerGi __all__ = ["LowerEastCapital4"] @dataclass
[ 37811, 628, 220, 220, 220, 1635, 31426, 12, 25234, 9747, 604, 9, 220, 220, 2343, 254, 101, 628, 220, 383, 2793, 12, 23316, 3139, 1440, 308, 72, 13, 198, 198, 37811, 198, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 198, 6738, 11485, 986, 62, 12397, 1330, 8118, 198, 6738, 19424, 27544, 1330, 9747, 33704, 198, 6738, 19424, 62, 12397, 1330, 4285, 1042, 291, 33704, 198, 6738, 19424, 23316, 1330, 8345, 33704, 198, 6738, 19424, 62, 17618, 1330, 6675, 33704, 198, 6738, 2644, 62, 12397, 1330, 16048, 33704, 198, 198, 834, 439, 834, 796, 14631, 31426, 25234, 39315, 19, 8973, 628, 198, 31, 19608, 330, 31172, 198 ]
3.082569
109
import cv2 import numpy as np
[ 11748, 269, 85, 17, 198, 11748, 299, 32152, 355, 45941 ]
2.9
10
from openvino.inference_engine import IECore, IENetwork import ngraph as ng from ngraph.impl.op import Parameter from ngraph.impl import Function, Shape, Type
[ 6738, 1280, 85, 2879, 13, 259, 4288, 62, 18392, 1330, 314, 2943, 382, 11, 314, 1677, 316, 1818, 198, 198, 11748, 23370, 1470, 355, 23370, 198, 6738, 23370, 1470, 13, 23928, 13, 404, 1330, 25139, 2357, 198, 6738, 23370, 1470, 13, 23928, 1330, 15553, 11, 25959, 11, 5994, 628 ]
3.285714
49
"""Provide tools for creating parametirc aircraft geometry.""" import numpy as np import matplotlib.pyplot as plt import openvsp as vsp def naca_4_series(max_camber, max_camber_loc, max_tc, n_points, plot_switch=False): """Plot NACA 4-Series airfoil with the given characteristics.""" airfoil_name = 'NACA({0:.2f})({1:.2f})({2:.2f})'.format( max_camber, max_camber_loc, max_tc) x_coords = np.linspace(0, 1, n_points) t_dist = get_thickness_dist(x_coords) z_mcl, theta = get_camber_curve(x_coords) x_u = x_coords - t_dist*np.sin(theta) z_u = z_mcl + t_dist*np.cos(theta) x_l = x_coords + t_dist*np.sin(theta) z_l = z_mcl - t_dist*np.cos(theta) scale_factor_u = 1/x_u[-1] x_u *= scale_factor_u z_u *= scale_factor_u scale_factor_l = 1/x_l[-1] x_l *= scale_factor_l z_l *= scale_factor_l if plot_switch: fig = plt.figure(dpi=1200) ax = fig.add_subplot(111) ax.plot(x_u, z_u, 'k') ax.plot(x_l, z_l, 'k') ax.axis('equal') ax.set_title(airfoil_name) coords_array = np.vstack((np.concatenate((x_u[::-1], x_l)), np.concatenate((z_u[::-1], z_l)))).T np.savetxt('xfoil/' + airfoil_name + '.dat', coords_array, fmt='%.4f') return coords_array def create_VSP_wing(wing_span, planform, airfoil, alpha_i): """Create wing in OpenVSP dexcribed by the given characteristics.""" max_camber = airfoil[0] max_camber_loc = airfoil[1] max_tc = airfoil[2] vsp.VSPCheckSetup() vsp.ClearVSPModel() wing_id = vsp.AddGeom('WING') vsp.SetGeomName(wing_id, 'Wing') wing_sec_span = wing_span/(2*(len(planform) - 1)) for i in range(len(planform)-1): if i != 0: vsp.InsertXSec(wing_id, i, vsp.XS_FOUR_SERIES) vsp.SetParmValUpdate(wing_id, 'Span', 'XSec_{0}'.format(i+1), wing_sec_span) vsp.SetParmValUpdate(wing_id, 'Root_Chord', 'XSec_{0}'.format(i+1), planform[i]) vsp.SetParmValUpdate(wing_id, 'Tip_Chord', 'XSec_{0}'.format(i+1), planform[i+1]) vsp.SetParmValUpdate(wing_id, 'Sweep', 'XSec_{0}'.format(i+1), 0) vsp.SetParmValUpdate(wing_id, 'Sweep_Location', 'XSec_{0}'.format( i+1), 0.25) for i in range(len(planform)): vsp.SetParmValUpdate(wing_id, 'Camber', 'XSecCurve_{0}'.format(i), max_camber/100) vsp.SetParmValUpdate(wing_id, 'CamberLoc', 'XSecCurve_{0}'.format(i), max_camber_loc/10) vsp.SetParmValUpdate(wing_id, 'ThickChord', 'XSecCurve_{0}'.format(i), max_tc/100) vsp.SetParmValUpdate(wing_id, 'Y_Rel_Rotation', 'XForm', alpha_i) vsp.SetParmValUpdate(wing_id, 'Origin', 'XForm', 0.25) vsp.WriteVSPFile( 'C:/Users/jaros/Documents/GitHub/DISECON_PIA/2 - Conceptual Design/4 - Wing Design/wing_model.vsp3') print('Done!')
[ 37811, 15946, 485, 4899, 329, 4441, 5772, 316, 1980, 6215, 22939, 526, 15931, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 1280, 85, 2777, 355, 410, 2777, 628, 198, 4299, 299, 22260, 62, 19, 62, 25076, 7, 9806, 62, 66, 7789, 11, 3509, 62, 66, 7789, 62, 17946, 11, 3509, 62, 23047, 11, 299, 62, 13033, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 62, 31943, 28, 25101, 2599, 198, 220, 220, 220, 37227, 43328, 399, 26576, 604, 12, 27996, 1633, 6513, 346, 351, 262, 1813, 9695, 526, 15931, 198, 220, 220, 220, 1633, 6513, 346, 62, 3672, 796, 705, 45, 26576, 15090, 15, 25, 13, 17, 69, 92, 5769, 90, 16, 25, 13, 17, 69, 92, 5769, 90, 17, 25, 13, 17, 69, 30072, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 66, 7789, 11, 3509, 62, 66, 7789, 62, 17946, 11, 3509, 62, 23047, 8, 198, 220, 220, 220, 2124, 62, 1073, 3669, 796, 45941, 13, 21602, 10223, 7, 15, 11, 352, 11, 299, 62, 13033, 8, 628, 220, 220, 220, 256, 62, 17080, 796, 651, 62, 400, 624, 1108, 62, 17080, 7, 87, 62, 1073, 3669, 8, 198, 220, 220, 220, 1976, 62, 76, 565, 11, 262, 8326, 796, 651, 62, 66, 7789, 62, 22019, 303, 7, 87, 62, 1073, 3669, 8, 628, 220, 220, 220, 2124, 62, 84, 796, 2124, 62, 1073, 3669, 532, 256, 62, 17080, 9, 37659, 13, 31369, 7, 1169, 8326, 8, 198, 220, 220, 220, 1976, 62, 84, 796, 1976, 62, 76, 565, 1343, 256, 62, 17080, 9, 37659, 13, 6966, 7, 1169, 8326, 8, 628, 220, 220, 220, 2124, 62, 75, 796, 2124, 62, 1073, 3669, 1343, 256, 62, 17080, 9, 37659, 13, 31369, 7, 1169, 8326, 8, 198, 220, 220, 220, 1976, 62, 75, 796, 1976, 62, 76, 565, 532, 256, 62, 17080, 9, 37659, 13, 6966, 7, 1169, 8326, 8, 628, 220, 220, 220, 5046, 62, 31412, 62, 84, 796, 352, 14, 87, 62, 84, 58, 12, 16, 60, 198, 220, 220, 220, 2124, 62, 84, 1635, 28, 5046, 62, 31412, 62, 84, 198, 220, 220, 220, 1976, 62, 84, 1635, 28, 5046, 62, 31412, 62, 84, 628, 220, 220, 220, 5046, 62, 31412, 62, 75, 796, 352, 14, 87, 62, 75, 58, 12, 16, 60, 198, 220, 220, 220, 2124, 62, 75, 1635, 28, 5046, 62, 31412, 62, 75, 198, 220, 220, 220, 1976, 62, 75, 1635, 28, 5046, 62, 31412, 62, 75, 628, 220, 220, 220, 611, 7110, 62, 31943, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2336, 796, 458, 83, 13, 26875, 7, 67, 14415, 28, 27550, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 796, 2336, 13, 2860, 62, 7266, 29487, 7, 16243, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 29487, 7, 87, 62, 84, 11, 1976, 62, 84, 11, 705, 74, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 29487, 7, 87, 62, 75, 11, 1976, 62, 75, 11, 705, 74, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 22704, 10786, 40496, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 7839, 7, 958, 6513, 346, 62, 3672, 8, 628, 220, 220, 220, 763, 3669, 62, 18747, 796, 45941, 13, 85, 25558, 19510, 37659, 13, 1102, 9246, 268, 378, 19510, 87, 62, 84, 58, 3712, 12, 16, 4357, 2124, 62, 75, 36911, 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, 45941, 13, 1102, 9246, 268, 378, 19510, 89, 62, 84, 58, 3712, 12, 16, 4357, 1976, 62, 75, 22305, 737, 51, 628, 220, 220, 220, 45941, 13, 21928, 14116, 10786, 87, 6513, 346, 14, 6, 1343, 1633, 6513, 346, 62, 3672, 1343, 45302, 19608, 3256, 763, 3669, 62, 18747, 11, 46996, 11639, 7225, 19, 69, 11537, 628, 220, 220, 220, 1441, 763, 3669, 62, 18747, 628, 198, 4299, 2251, 62, 53, 4303, 62, 5469, 7, 5469, 62, 12626, 11, 1410, 687, 11, 1633, 6513, 346, 11, 17130, 62, 72, 2599, 198, 220, 220, 220, 37227, 16447, 8539, 287, 4946, 53, 4303, 390, 25306, 8725, 416, 262, 1813, 9695, 526, 15931, 198, 220, 220, 220, 3509, 62, 66, 7789, 796, 1633, 6513, 346, 58, 15, 60, 198, 220, 220, 220, 3509, 62, 66, 7789, 62, 17946, 796, 1633, 6513, 346, 58, 16, 60, 198, 220, 220, 220, 3509, 62, 23047, 796, 1633, 6513, 346, 58, 17, 60, 628, 220, 220, 220, 410, 2777, 13, 53, 4303, 9787, 40786, 3419, 198, 220, 220, 220, 198, 220, 220, 220, 410, 2777, 13, 19856, 53, 4303, 17633, 3419, 628, 220, 220, 220, 8539, 62, 312, 796, 410, 2777, 13, 4550, 10082, 296, 10786, 54, 2751, 11537, 198, 220, 220, 220, 410, 2777, 13, 7248, 10082, 296, 5376, 7, 5469, 62, 312, 11, 705, 35612, 11537, 628, 220, 220, 220, 8539, 62, 2363, 62, 12626, 796, 8539, 62, 12626, 29006, 17, 9, 7, 11925, 7, 11578, 687, 8, 532, 352, 4008, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 11578, 687, 13219, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 44402, 55, 6558, 7, 5469, 62, 312, 11, 1312, 11, 410, 2777, 13, 55, 50, 62, 37, 11698, 62, 35009, 11015, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 4561, 272, 3256, 705, 55, 6558, 23330, 15, 92, 4458, 18982, 7, 72, 10, 16, 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, 8539, 62, 2363, 62, 12626, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 30016, 62, 1925, 585, 3256, 705, 55, 6558, 23330, 15, 92, 4458, 18982, 7, 72, 10, 16, 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, 1410, 687, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 28434, 62, 1925, 585, 3256, 705, 55, 6558, 23330, 15, 92, 4458, 18982, 7, 72, 10, 16, 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, 1410, 687, 58, 72, 10, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 40783, 538, 3256, 705, 55, 6558, 23330, 15, 92, 4458, 18982, 7, 72, 10, 16, 828, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 40783, 538, 62, 14749, 3256, 705, 55, 6558, 23330, 15, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 10, 16, 828, 657, 13, 1495, 8, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 11578, 687, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 34, 7789, 3256, 705, 55, 6558, 26628, 303, 23330, 15, 92, 4458, 18982, 7, 72, 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, 3509, 62, 66, 7789, 14, 3064, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 34, 7789, 33711, 3256, 705, 55, 6558, 26628, 303, 23330, 15, 92, 4458, 18982, 7, 72, 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, 3509, 62, 66, 7789, 62, 17946, 14, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 817, 624, 1925, 585, 3256, 705, 55, 6558, 26628, 303, 23330, 15, 92, 4458, 18982, 7, 72, 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, 3509, 62, 23047, 14, 3064, 8, 198, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 56, 62, 6892, 62, 49, 14221, 3256, 705, 55, 8479, 3256, 17130, 62, 72, 8, 198, 220, 220, 220, 410, 2777, 13, 7248, 47, 1670, 7762, 10260, 7, 5469, 62, 312, 11, 705, 39688, 3256, 705, 55, 8479, 3256, 657, 13, 1495, 8, 628, 220, 220, 220, 410, 2777, 13, 16594, 53, 4303, 8979, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 34, 14079, 14490, 14, 9491, 418, 14, 38354, 14, 38, 270, 16066, 14, 26288, 2943, 1340, 62, 47, 3539, 14, 17, 532, 26097, 723, 8495, 14, 19, 532, 13405, 8495, 14, 5469, 62, 19849, 13, 85, 2777, 18, 11537, 628, 220, 220, 220, 3601, 10786, 45677, 0, 11537, 198 ]
1.871007
1,628
import cv2 import yaml import numpy as np def centroidFeetFromFile(fileName="/home/davide/Documenti/progetti/playground/centroid-to-feet-interpolation/101_640x480.yaml", normalization=False): ''' funzione che carica e restituisce le coordinate di centroide e piedi nel formato [[x y]] ''' with open(fileName, 'r') as stream: try: data = yaml.safe_load(stream) centroidCoordinates = np.array(data['feet_calib'], dtype='i')[:,0,:] feetCoordinates = np.array(data['feet_calib'], dtype='i')[:,1,:] image_width = np.array(data['feet_calib_image_width']) image_height = np.array(data['feet_calib_image_height']) if normalization: # Normalizing coordinates for v in [centroidCoordinates,feetCoordinates]: v[:,0] /= image_width v[:,1] /= image_height #print(centroidCoordinates[0,0]) except yaml.YAMLError as exc: print(exc) return centroidCoordinates,feetCoordinates
[ 11748, 269, 85, 17, 198, 11748, 331, 43695, 198, 11748, 299, 32152, 355, 45941, 198, 198, 4299, 1247, 3882, 14304, 316, 4863, 8979, 7, 7753, 5376, 35922, 11195, 14, 67, 615, 485, 14, 24941, 72, 14, 1676, 1136, 20259, 14, 1759, 2833, 14, 1087, 3882, 12, 1462, 12, 39690, 12, 3849, 16104, 341, 14, 8784, 62, 31102, 87, 22148, 13, 88, 43695, 1600, 3487, 1634, 28, 25101, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1257, 89, 7935, 1125, 1097, 3970, 304, 1334, 34272, 271, 344, 443, 20435, 2566, 1247, 305, 485, 304, 279, 798, 72, 299, 417, 1296, 5549, 16410, 87, 331, 11907, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 351, 1280, 7, 7753, 5376, 11, 705, 81, 11537, 355, 4269, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 331, 43695, 13, 21230, 62, 2220, 7, 5532, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1247, 3882, 7222, 585, 17540, 796, 45941, 13, 18747, 7, 7890, 17816, 39690, 62, 9948, 571, 6, 4357, 288, 4906, 11639, 72, 11537, 58, 45299, 15, 11, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3625, 7222, 585, 17540, 796, 45941, 13, 18747, 7, 7890, 17816, 39690, 62, 9948, 571, 6, 4357, 288, 4906, 11639, 72, 11537, 58, 45299, 16, 11, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 10394, 796, 45941, 13, 18747, 7, 7890, 17816, 39690, 62, 9948, 571, 62, 9060, 62, 10394, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 17015, 796, 45941, 13, 18747, 7, 7890, 17816, 39690, 62, 9948, 571, 62, 9060, 62, 17015, 6, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3487, 1634, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14435, 2890, 22715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 287, 685, 1087, 3882, 7222, 585, 17540, 11, 39690, 7222, 585, 17540, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 58, 45299, 15, 60, 1220, 28, 2939, 62, 10394, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 58, 45299, 16, 60, 1220, 28, 2939, 62, 17015, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 1087, 3882, 7222, 585, 17540, 58, 15, 11, 15, 12962, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 220, 220, 220, 220, 2845, 331, 43695, 13, 56, 2390, 2538, 81, 1472, 355, 2859, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 41194, 8, 628, 220, 220, 220, 1441, 1247, 3882, 7222, 585, 17540, 11, 39690, 7222, 585, 17540, 220, 220 ]
2.074856
521
import sys import numpy as np import random import torch import torch.nn as nn import torch.optim as optim import torch.nn.functional as F from torch.distributions import Categorical from Tetris.src.tetris import Tetris from PIL import Image from time import sleep from pathlib import Path import cv2 # height, width and possible actions for the agent HEIGHT, WIDTH = 20, 6 ACTION_LIST = [(x, n_rotations) for n_rotations in range(4) for x in range(WIDTH)] ACTION_LIST.remove((WIDTH - 1, 0)) ACTION_LIST.remove((WIDTH - 1, 2)) print(f"[Agent] ActionSpace: {len(ACTION_LIST)}") """TODO check if flatten is not required""" if __name__ == "__main__": # initializing our environment env = Tetris(height=HEIGHT, width=WIDTH) init_state = env.reset() print(f"InputSize: {init_state.shape[0]}") agent = A2CAgent(init_state.shape[0]) epoch_resume = -1 epoch_resume = agent.load('tetris_checkpoint_latest') agent.play(env, 100, 10, video=True)
[ 11748, 25064, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 4738, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 28034, 13, 17080, 2455, 507, 1330, 327, 2397, 12409, 198, 198, 6738, 27351, 2442, 13, 10677, 13, 83, 316, 2442, 1330, 27351, 2442, 198, 198, 6738, 350, 4146, 1330, 7412, 198, 198, 6738, 640, 1330, 3993, 198, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 11748, 269, 85, 17, 628, 198, 2, 6001, 11, 9647, 290, 1744, 4028, 329, 262, 5797, 198, 13909, 9947, 11, 370, 2389, 4221, 796, 1160, 11, 718, 198, 44710, 62, 45849, 796, 47527, 87, 11, 299, 62, 10599, 602, 8, 329, 299, 62, 10599, 602, 287, 2837, 7, 19, 8, 329, 2124, 287, 2837, 7, 54, 2389, 4221, 15437, 198, 44710, 62, 45849, 13, 28956, 19510, 54, 2389, 4221, 532, 352, 11, 657, 4008, 198, 44710, 62, 45849, 13, 28956, 19510, 54, 2389, 4221, 532, 352, 11, 362, 4008, 198, 4798, 7, 69, 17912, 36772, 60, 7561, 14106, 25, 1391, 11925, 7, 44710, 62, 45849, 38165, 4943, 628, 628, 198, 37811, 51, 3727, 46, 2198, 611, 27172, 268, 318, 407, 2672, 37811, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 4238, 2890, 674, 2858, 198, 220, 220, 220, 17365, 796, 27351, 2442, 7, 17015, 28, 13909, 9947, 11, 9647, 28, 54, 2389, 4221, 8, 198, 220, 220, 220, 2315, 62, 5219, 796, 17365, 13, 42503, 3419, 198, 220, 220, 220, 3601, 7, 69, 1, 20560, 10699, 25, 1391, 15003, 62, 5219, 13, 43358, 58, 15, 48999, 4943, 628, 220, 220, 220, 5797, 796, 317, 17, 8141, 6783, 7, 15003, 62, 5219, 13, 43358, 58, 15, 12962, 198, 220, 220, 220, 36835, 62, 411, 2454, 796, 532, 16, 198, 220, 220, 220, 36835, 62, 411, 2454, 796, 5797, 13, 2220, 10786, 83, 316, 2442, 62, 9122, 4122, 62, 42861, 11537, 198, 220, 220, 220, 5797, 13, 1759, 7, 24330, 11, 1802, 11, 838, 11, 2008, 28, 17821, 8, 198 ]
2.779037
353