content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
# -*- coding: utf-8 -*- """ @inproceedings{DBLP:conf/nips/SnellSZ17, author = {Jake Snell and Kevin Swersky and Richard S. Zemel}, title = {Prototypical Networks for Few-shot Learning}, booktitle = {Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017, December 4-9, 2017, Long Beach, CA, {USA}}, pages = {4077--4087}, year = {2017}, url = {https://proceedings.neurips.cc/paper/2017/hash/cb8da6767461f2812ae4290eac7cbc42-Abstract.html} } https://arxiv.org/abs/1703.05175 Adapted from https://github.com/orobix/Prototypical-Networks-for-Few-shot-Learning-PyTorch. """ import torch import torch.nn.functional as F from torch import nn from core.utils import accuracy from .metric_model import MetricModel
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 31, 259, 1676, 2707, 654, 90, 35, 9148, 47, 25, 10414, 14, 77, 2419, 14, 50, 10076, 50, 57, 1558, 11, 198, 220, 1772, 220, 220, 220, 796, 1391, 43930, 5489, 695, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7939, 2451, 364, 2584, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6219, 311, 13, 1168, 368, 417, 5512, 198, 220, 3670, 220, 220, 220, 220, 796, 1391, 19703, 17183, 605, 27862, 329, 20463, 12, 9442, 18252, 5512, 198, 220, 1492, 7839, 796, 1391, 22856, 1817, 287, 47986, 6188, 28403, 11998, 1542, 25, 16328, 8785, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 47986, 6188, 28403, 11998, 2177, 11, 3426, 604, 12, 24, 11, 2177, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5882, 8511, 11, 7257, 11, 1391, 14053, 92, 5512, 198, 220, 5468, 220, 220, 220, 220, 796, 1391, 1821, 3324, 438, 1821, 5774, 5512, 198, 220, 614, 220, 220, 220, 220, 220, 796, 1391, 5539, 5512, 198, 220, 19016, 220, 220, 220, 220, 220, 220, 796, 1391, 5450, 1378, 1676, 2707, 654, 13, 710, 333, 2419, 13, 535, 14, 20189, 14, 5539, 14, 17831, 14, 21101, 23, 6814, 3134, 3134, 40652, 69, 2078, 1065, 3609, 11785, 15, 68, 330, 22, 66, 15630, 3682, 12, 23839, 13, 6494, 92, 198, 92, 198, 5450, 1378, 283, 87, 452, 13, 2398, 14, 8937, 14, 1558, 3070, 13, 2713, 17430, 198, 198, 48003, 276, 422, 3740, 1378, 12567, 13, 785, 14, 273, 672, 844, 14, 19703, 17183, 605, 12, 7934, 5225, 12, 1640, 12, 32351, 12, 9442, 12, 41730, 12, 20519, 15884, 354, 13, 198, 37811, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 28034, 1330, 299, 77, 198, 198, 6738, 4755, 13, 26791, 1330, 9922, 198, 6738, 764, 4164, 1173, 62, 19849, 1330, 3395, 1173, 17633, 628, 198 ]
2.460227
352
import discord, os, platform, asyncio, csv from discord import channel from discord.ext import commands import re import core.config from apps.verizon.utils import verizon_csv, OUT_REPORTS
[ 11748, 36446, 11, 28686, 11, 3859, 11, 30351, 952, 11, 269, 21370, 198, 6738, 36446, 1330, 6518, 198, 6738, 36446, 13, 2302, 1330, 9729, 198, 11748, 302, 198, 198, 11748, 4755, 13, 11250, 198, 6738, 6725, 13, 332, 8637, 13, 26791, 1330, 3326, 8637, 62, 40664, 11, 16289, 62, 35316, 33002, 198 ]
3.653846
52
"""Provides an interface for determining how Python objects are serialized and de-serialized.""" import threading from amfast import AmFastError class ClassDefError(AmFastError): """ClassDef related errors.""" pass class ClassDef(object): """Defines how objects of a given class are serialized and de-serialized. This class can be sub-classed to provide custom serialization. attributes =========== * class_ - class, the class object mapped to this definition * alias - string, the AMF alias name of the mapped class * static_attrs - tuple or list, a tuple of static attribute names, all values must be strings or unicode. * amf3 - bool, if True, this object will be encoded in AMF3. * encode_types - dict, keys = attribute names, values = callables. Callables must accept a single parameter (the object being encoded) and return a new object. * decode_types - dict, keys = attribute names, values = callables. Callables must accept a single parameter (the object being decoded) and return a new object. """ CLASS_DEF = True def __init__(self, class_, alias=None, static_attrs=None, amf3=None, encode_types=None, decode_types=None, _built_in=False): """arguments ============= * class_ - class, the class being mapped. * alias - string, specifies the amf class alias. Default = module.class * static_attrs - tuple or list, a tuple of static attribute strings. Default = empty tuple * amf3 - bool, if True, this object will be encoded in AMF3. Default = True * encode_types - dict, keys = attribute names, values = callables. Default = None * decode_types - dict, keys = attribute names, values = callables. Default = None """ self.class_ = class_ self._built_in = _built_in if alias is None: if hasattr(class_, ALIAS): alias = getattr(class_, ALIAS) else: alias = '.'.join((class_.__module__, class_.__name__)) self.alias = alias if static_attrs is None: if hasattr(class_, STATIC_ATTRS): static_attrs = self.static_attrs = getattr(class_, STATIC_ATTRS) else: static_attrs = () self.static_attrs = static_attrs if amf3 is None: if hasattr(class_, AMF3): amf3 = getattr(class_, AMF3) else: amf3 = True self.amf3 = amf3 self.encode_types = encode_types self.decode_types = decode_types def getStaticAttrVals(self, obj): """Returns a list of values of attributes defined in self.static_attrs If this method is overridden to provide custom behavior, please note: Returned values MUST BE IN THE SAME ORDER AS THEY APPEAR IN self.static_attrs. arguments ========== * obj - object, the object to get attribute values from. """ return [getattr(obj, attr, None) for attr in self.static_attrs] def getInstance(self): """Returns an instance of the mapped class to be used when an object of this type is deserialized. """ return self.class_.__new__(self.class_) def applyAttrVals(self, obj, vals): """Set decoded attribute values on the object. arguments ========== * obj - object, the object to set the attribute values on. * vals - dict, keys == attribute name, values == attribute values. """ [setattr(obj, key, val) for key, val in vals.iteritems()] class DynamicClassDef(ClassDef): """A ClassDef with dynamic attributes.""" DYNAMIC_CLASS_DEF = True def getDynamicAttrVals(self, obj, include_private=False): """Returns a dict where keys are attribute names and values are attribute values. arguments ========== obj - object, the object to get attributes for. include_private - bool, if False do not include attributes with names starting with '_'. Default = False. """ if self.include_private is None: ip = include_private else: ip = self.include_private return get_dynamic_attr_vals(obj, self.static_attrs, ip); class ExternClassDef(ClassDef): """A ClassDef where the byte string encoding/decoding is customized. The Actionscript version of the class must implement IExternalizeable. """ EXTERNALIZABLE_CLASS_DEF = True def writeExternal(self, obj, context): """ This method must be overridden in a sub-class. arguments ========== * obj - object, The object that is being encoded. * context - amfast.decoder.EncoderContext, holds encoding related properties. """ raise ClassDefError("This method must be implemented by a sub-class.") def readExternal(self, obj, context): """ This method must be overridden in a sub-class. arguments ========== * obj - object, The object that the byte string is being applied to. * context - amfast.decoder.DecoderContext, holds decoding related properties. """ raise ClassDefError("This method must be implemented by a sub-class.") class _ProxyClassDef(ExternClassDef): """A special class used internally to encode/decode Proxied objects.""" PROXY_CLASS_DEF = True PROXY_ALIAS = 'proxy' class _ProxyObject(object): """Empty class used for mapping.""" pass class _ArrayCollectionClassDef(_ProxyClassDef): """A special ClassDef used internally to encode/decode an ArrayCollection.""" ARRAY_COLLECTION_CLASS_DEF = True PROXY_ALIAS = 'flex.messaging.io.ArrayCollection' class _ObjectProxyClassDef(_ProxyClassDef): """A special ClassDef used internally to encode/decode an ObjectProxy.""" OBJECT_PROXY_CLASS_DEF = True PROXY_ALIAS = 'flex.messaging.io.ObjectProxy' class ClassDefMapper(object): """Map classes to ClassDefs, retrieve class_defs by class or alias name.""" def __init__(self): """ arguments ========== * class_def_attr - string, an attribute with this name will be added mapped classes. Default = '_amf_alias' """ self._lock = threading.RLock() self._mapped_classes = {} self._mapped_aliases = {} self._mapBuiltIns() def _mapBuiltIns(self): """Map built-in ClassDefs for default behavior.""" from as_types import AsError from amfast.remoting import flex_messages as messaging # Proxy objects self.mapClass(_ArrayCollectionClassDef()) self.mapClass(_ObjectProxyClassDef()) # Exceptions self.mapClass(ClassDef(AsError, _built_in=True)) self.mapClass(ClassDef(messaging.FaultError, _built_in=True)) # Flex remoting messages self.mapClass(ClassDef(messaging.RemotingMessage, _built_in=True)) self.mapClass(messaging.AsyncSmallMsgDef(messaging.AsyncMessage, alias="DSA", _built_in=True)) self.mapClass(ClassDef(messaging.AsyncMessage, _built_in=True)) self.mapClass(messaging.CommandSmallMsgDef(messaging.CommandMessage, alias="DSC", _built_in=True)) self.mapClass(ClassDef(messaging.CommandMessage, _built_in=True)) self.mapClass(ClassDef(messaging.AcknowledgeMessage, _built_in=True)) self.mapClass(ClassDef(messaging.ErrorMessage, _built_in=True)) def mapClass(self, class_def): """Map a class_def implementation, so that it can be retrieved based on class attributes. arguments ========== * class_def - ClassDef, ClassDef being mapped. """ if not hasattr(class_def, 'CLASS_DEF'): raise ClassDefError("class_def argument must be a ClassDef object.") self._lock.acquire() try: self._mapped_classes[class_def.class_] = class_def self._mapped_aliases[class_def.alias] = class_def finally: self._lock.release() def getClassDefByClass(self, class_): """Get a ClassDef. Returns None if ClassDef is not found. arguments ========== * class_ - class, the class to find a ClassDef for. """ return self._mapped_classes.get(class_, None) def getClassDefByAlias(self, alias): """Get a ClassDef. Returns None in not ClassDef is found. arguments ========== * alias - string, the alias to find a ClassDef for. """ return self._mapped_aliases.get(alias, None) def unmapClass(self, class_): """Unmap a class definition. arguments ========== * class_ - class, the class to remove a ClassDef for. """ self._lock.acquire() try: for alias, klass in self._mapped_aliases.iteritems(): if class_ == klass: del self._mapped_aliases[alias] class_id = id(class_) if class_id in self._mapped_classes: del self._mapped_classes[class_id] finally: self._lock.release() # ---- module attributes ---- # def get_dynamic_attr_vals(obj, ignore_attrs=None, include_private=False): """Returns a dict of attribute values to encode. keys = attribute names, values = attribute values. argmuents ========== * obj - object, object to get dynamic attribute values from. * ignore_attrs - list or tuple of attributes to ignore. Default = empty tuple. * include_private - bool, if False do not include attributes that start with '_'. Default = False. """ vals = {} if hasattr(obj, '__dict__'): for attr, val in obj.__dict__.iteritems(): if ignore_attrs is not None: if attr in ignore_attrs: continue if (include_private is False) and (attr.startswith('_')): continue vals[attr] = val return vals # These properties can be set on a class # to map attributes within the class. ALIAS = '_AMFAST_ALIAS' STATIC_ATTRS = '_AMFAST_STATIC_ATTRS' AMF3 = '_AMFAST_AMF3' def assign_attrs(class_, alias=None, static_attrs=None, amf3=None): """ Use to map ClassDef attributes to a class. Useful if you want to keep ClassDef configuration with the class being mapped, instead of at the point where the ClassDef is created. If you assign ClassDef attributes with this method, you can call ClassDef(class_) to create a ClassDef, and the assigned attributes will be applied to the new ClassDef. Arguments provided to the ClassDef() will override attributes that were assigned with this function. arguments ========== * class_ - class, the class to assign attributes to. * alias - string, the amf alias name of the mapped class * static_attrs - tuple, a tuple of static attribute names, all values must be strings or unicode * amf3 - bool, if True, this object will be encoded in AMF3. """ if alias is not None: setattr(class_, ALIAS, alias) if static_attrs is not None: setattr(class_, STATIC_ATTRS, static_attrs) if amf3 is not None: setattr(class_, AMF3, amf3)
[ 37811, 15946, 1460, 281, 7071, 329, 13213, 703, 11361, 5563, 389, 11389, 1143, 290, 390, 12, 46911, 1143, 526, 15931, 198, 11748, 4704, 278, 198, 198, 6738, 716, 7217, 1330, 1703, 22968, 12331, 198, 198, 4871, 5016, 7469, 12331, 7, 5840, 22968, 12331, 2599, 198, 220, 220, 220, 37227, 9487, 7469, 3519, 8563, 526, 15931, 198, 220, 220, 220, 1208, 198, 198, 4871, 5016, 7469, 7, 15252, 2599, 198, 220, 220, 220, 37227, 7469, 1127, 703, 5563, 286, 257, 1813, 1398, 389, 11389, 1143, 290, 390, 12, 46911, 1143, 13, 198, 220, 220, 220, 770, 1398, 460, 307, 850, 12, 4871, 276, 284, 2148, 2183, 11389, 1634, 13, 628, 220, 220, 220, 12608, 198, 220, 220, 220, 796, 2559, 855, 198, 220, 220, 220, 220, 1635, 1398, 62, 532, 1398, 11, 262, 1398, 2134, 27661, 284, 428, 6770, 198, 220, 220, 220, 220, 1635, 16144, 532, 4731, 11, 262, 3001, 37, 16144, 1438, 286, 262, 27661, 1398, 198, 220, 220, 220, 220, 1635, 9037, 62, 1078, 3808, 532, 46545, 393, 1351, 11, 257, 46545, 286, 9037, 11688, 3891, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 3815, 1276, 307, 13042, 393, 28000, 1098, 13, 198, 220, 220, 220, 220, 1635, 716, 69, 18, 532, 20512, 11, 611, 6407, 11, 428, 2134, 481, 307, 30240, 287, 3001, 37, 18, 13, 198, 220, 220, 220, 220, 1635, 37773, 62, 19199, 532, 8633, 11, 8251, 796, 11688, 3891, 11, 3815, 796, 869, 2977, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 4889, 2977, 1276, 2453, 257, 2060, 11507, 198, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1169, 2134, 852, 30240, 8, 290, 1441, 257, 649, 2134, 13, 198, 220, 220, 220, 220, 1635, 36899, 62, 19199, 532, 8633, 11, 8251, 796, 11688, 3891, 11, 3815, 796, 869, 2977, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 4889, 2977, 1276, 2453, 257, 2060, 11507, 198, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1169, 2134, 852, 875, 9043, 8, 290, 1441, 257, 649, 2134, 13, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 42715, 62, 32988, 796, 6407, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1398, 62, 11, 16144, 28, 14202, 11, 9037, 62, 1078, 3808, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 716, 69, 18, 28, 14202, 11, 37773, 62, 19199, 28, 14202, 11, 36899, 62, 19199, 28, 14202, 11, 4808, 18780, 62, 259, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 853, 2886, 198, 220, 220, 220, 220, 220, 220, 220, 796, 25609, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 1398, 62, 532, 1398, 11, 262, 1398, 852, 27661, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 16144, 532, 4731, 11, 26052, 262, 716, 69, 1398, 16144, 13, 15161, 796, 8265, 13, 4871, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 9037, 62, 1078, 3808, 532, 46545, 393, 1351, 11, 257, 46545, 286, 9037, 11688, 13042, 13, 15161, 796, 6565, 46545, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 716, 69, 18, 532, 20512, 11, 611, 6407, 11, 428, 2134, 481, 307, 30240, 287, 3001, 37, 18, 13, 15161, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 37773, 62, 19199, 532, 8633, 11, 8251, 796, 11688, 3891, 11, 3815, 796, 869, 2977, 13, 15161, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 36899, 62, 19199, 532, 8633, 11, 8251, 796, 11688, 3891, 11, 3815, 796, 869, 2977, 13, 15161, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4871, 62, 796, 1398, 62, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 18780, 62, 259, 796, 4808, 18780, 62, 259, 628, 220, 220, 220, 220, 220, 220, 220, 611, 16144, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 4871, 62, 11, 8355, 43429, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16144, 796, 651, 35226, 7, 4871, 62, 11, 8355, 43429, 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, 16144, 796, 705, 2637, 13, 22179, 19510, 4871, 44807, 834, 21412, 834, 11, 1398, 44807, 834, 3672, 834, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26011, 796, 16144, 628, 220, 220, 220, 220, 220, 220, 220, 611, 9037, 62, 1078, 3808, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 4871, 62, 11, 15486, 2149, 62, 1404, 5446, 50, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9037, 62, 1078, 3808, 796, 2116, 13, 12708, 62, 1078, 3808, 796, 651, 35226, 7, 4871, 62, 11, 15486, 2149, 62, 1404, 5446, 50, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9037, 62, 1078, 3808, 796, 7499, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12708, 62, 1078, 3808, 796, 9037, 62, 1078, 3808, 628, 220, 220, 220, 220, 220, 220, 220, 611, 716, 69, 18, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 4871, 62, 11, 3001, 37, 18, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 716, 69, 18, 796, 651, 35226, 7, 4871, 62, 11, 3001, 37, 18, 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, 716, 69, 18, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 321, 69, 18, 796, 716, 69, 18, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 268, 8189, 62, 19199, 796, 37773, 62, 19199, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12501, 1098, 62, 19199, 796, 36899, 62, 19199, 628, 220, 220, 220, 825, 651, 45442, 8086, 81, 53, 874, 7, 944, 11, 26181, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 257, 1351, 286, 3815, 286, 12608, 5447, 287, 2116, 13, 12708, 62, 1078, 3808, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 428, 2446, 318, 23170, 4651, 284, 2148, 2183, 4069, 11, 3387, 3465, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8229, 276, 3815, 17191, 9348, 3268, 3336, 311, 10067, 38678, 7054, 33302, 3486, 11401, 1503, 3268, 2116, 13, 12708, 62, 1078, 3808, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 26181, 532, 2134, 11, 262, 2134, 284, 651, 11688, 3815, 422, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 1136, 35226, 7, 26801, 11, 708, 81, 11, 6045, 8, 329, 708, 81, 287, 2116, 13, 12708, 62, 1078, 3808, 60, 628, 220, 220, 220, 825, 651, 33384, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 281, 4554, 286, 262, 27661, 1398, 284, 307, 973, 220, 198, 220, 220, 220, 220, 220, 220, 220, 618, 281, 2134, 286, 428, 2099, 318, 748, 48499, 1143, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 4871, 44807, 834, 3605, 834, 7, 944, 13, 4871, 62, 8, 628, 220, 220, 220, 825, 4174, 8086, 81, 53, 874, 7, 944, 11, 26181, 11, 410, 874, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 875, 9043, 11688, 3815, 319, 262, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 26181, 532, 2134, 11, 262, 2134, 284, 900, 262, 11688, 3815, 319, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 410, 874, 532, 8633, 11, 8251, 6624, 11688, 1438, 11, 3815, 6624, 11688, 3815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 685, 2617, 35226, 7, 26801, 11, 1994, 11, 1188, 8, 329, 1994, 11, 1188, 287, 410, 874, 13, 2676, 23814, 3419, 60, 198, 198, 4871, 26977, 9487, 7469, 7, 9487, 7469, 2599, 198, 220, 220, 220, 37227, 32, 5016, 7469, 351, 8925, 12608, 526, 15931, 628, 220, 220, 220, 360, 40760, 2390, 2149, 62, 31631, 62, 32988, 796, 6407, 628, 220, 220, 220, 825, 651, 44090, 8086, 81, 53, 874, 7, 944, 11, 26181, 11, 2291, 62, 19734, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 257, 8633, 810, 8251, 389, 11688, 3891, 290, 3815, 389, 11688, 3815, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 26181, 532, 2134, 11, 262, 2134, 284, 651, 12608, 329, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 19734, 532, 20512, 11, 611, 10352, 466, 407, 2291, 12608, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 3599, 351, 705, 62, 4458, 15161, 796, 10352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 17256, 62, 19734, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20966, 796, 2291, 62, 19734, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20966, 796, 2116, 13, 17256, 62, 19734, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 62, 67, 28995, 62, 35226, 62, 12786, 7, 26801, 11, 2116, 13, 12708, 62, 1078, 3808, 11, 20966, 1776, 198, 198, 4871, 1475, 759, 9487, 7469, 7, 9487, 7469, 2599, 198, 220, 220, 220, 37227, 32, 5016, 7469, 810, 262, 18022, 4731, 21004, 14, 12501, 7656, 318, 27658, 13, 198, 220, 220, 220, 198, 220, 220, 220, 383, 24439, 6519, 2196, 286, 262, 1398, 1276, 3494, 314, 41506, 1096, 540, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 7788, 31800, 1847, 14887, 17534, 62, 31631, 62, 32988, 796, 6407, 198, 220, 198, 220, 220, 220, 825, 3551, 41506, 7, 944, 11, 26181, 11, 4732, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 1276, 307, 23170, 4651, 287, 257, 850, 12, 4871, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 26181, 532, 2134, 11, 383, 2134, 326, 318, 852, 30240, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 4732, 532, 716, 7217, 13, 12501, 12342, 13, 27195, 12342, 21947, 11, 6622, 21004, 3519, 6608, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5016, 7469, 12331, 7203, 1212, 2446, 1276, 307, 9177, 416, 257, 850, 12, 4871, 19570, 628, 220, 220, 220, 825, 1100, 41506, 7, 944, 11, 26181, 11, 4732, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 1276, 307, 23170, 4651, 287, 257, 850, 12, 4871, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 26181, 532, 2134, 11, 383, 2134, 326, 262, 18022, 4731, 318, 852, 5625, 284, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 4732, 532, 716, 7217, 13, 12501, 12342, 13, 10707, 12342, 21947, 11, 6622, 39938, 3519, 6608, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5016, 7469, 12331, 7203, 1212, 2446, 1276, 307, 9177, 416, 257, 850, 12, 4871, 19570, 198, 198, 4871, 4808, 44148, 9487, 7469, 7, 3109, 759, 9487, 7469, 2599, 198, 220, 220, 220, 37227, 32, 2041, 1398, 973, 20947, 284, 37773, 14, 12501, 1098, 1041, 87, 798, 5563, 526, 15931, 628, 220, 220, 220, 21965, 34278, 62, 31631, 62, 32988, 796, 6407, 198, 220, 220, 220, 21965, 34278, 62, 1847, 43429, 796, 705, 36436, 6, 628, 220, 220, 220, 1398, 4808, 44148, 10267, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 40613, 1398, 973, 329, 16855, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 198, 4871, 4808, 19182, 36307, 9487, 7469, 28264, 44148, 9487, 7469, 2599, 198, 220, 220, 220, 37227, 32, 2041, 5016, 7469, 973, 20947, 284, 37773, 14, 12501, 1098, 281, 15690, 36307, 526, 15931, 628, 220, 220, 220, 5923, 30631, 62, 25154, 16779, 2849, 62, 31631, 62, 32988, 796, 6407, 198, 220, 220, 220, 21965, 34278, 62, 1847, 43429, 796, 705, 32880, 13, 37348, 3039, 13, 952, 13, 19182, 36307, 6, 198, 198, 4871, 4808, 10267, 44148, 9487, 7469, 28264, 44148, 9487, 7469, 2599, 198, 220, 220, 220, 37227, 32, 2041, 5016, 7469, 973, 20947, 284, 37773, 14, 12501, 1098, 281, 9515, 44148, 526, 15931, 628, 220, 220, 220, 25334, 23680, 62, 31190, 34278, 62, 31631, 62, 32988, 796, 6407, 198, 220, 220, 220, 21965, 34278, 62, 1847, 43429, 796, 705, 32880, 13, 37348, 3039, 13, 952, 13, 10267, 44148, 6, 198, 198, 4871, 5016, 7469, 44, 11463, 7, 15252, 2599, 198, 220, 220, 220, 37227, 13912, 6097, 284, 5016, 7469, 82, 11, 19818, 1398, 62, 4299, 82, 416, 1398, 393, 16144, 1438, 526, 15931, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 1398, 62, 4299, 62, 35226, 532, 4731, 11, 281, 11688, 351, 428, 1438, 481, 307, 2087, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27661, 6097, 13, 15161, 796, 705, 62, 321, 69, 62, 26011, 6, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 5354, 796, 4704, 278, 13, 7836, 735, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 76, 6320, 62, 37724, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 76, 6320, 62, 7344, 1386, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 8899, 39582, 20376, 3419, 628, 220, 220, 220, 825, 4808, 8899, 39582, 20376, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13912, 3170, 12, 259, 5016, 7469, 82, 329, 4277, 4069, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 422, 355, 62, 19199, 1330, 1081, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 422, 716, 7217, 13, 2787, 10720, 1330, 7059, 62, 37348, 1095, 355, 19925, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 38027, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 28264, 19182, 36307, 9487, 7469, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 28264, 10267, 44148, 9487, 7469, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1475, 11755, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 1722, 12331, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 37, 1721, 12331, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 26719, 816, 10720, 6218, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 8413, 10720, 12837, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 37348, 3039, 13, 42367, 18712, 50108, 7469, 7, 37348, 3039, 13, 42367, 12837, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16144, 2625, 35, 4090, 1600, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 42367, 12837, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 37348, 3039, 13, 21575, 18712, 50108, 7469, 7, 37348, 3039, 13, 21575, 12837, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16144, 2625, 5258, 34, 1600, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 21575, 12837, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 32, 5319, 2965, 12837, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8899, 9487, 7, 9487, 7469, 7, 37348, 3039, 13, 12331, 12837, 11, 4808, 18780, 62, 259, 28, 17821, 4008, 628, 220, 220, 220, 825, 3975, 9487, 7, 944, 11, 1398, 62, 4299, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13912, 257, 1398, 62, 4299, 7822, 11, 523, 326, 340, 460, 307, 29517, 1912, 319, 1398, 12608, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 1398, 62, 4299, 532, 5016, 7469, 11, 5016, 7469, 852, 27661, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 468, 35226, 7, 4871, 62, 4299, 11, 705, 31631, 62, 32988, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5016, 7469, 12331, 7203, 4871, 62, 4299, 4578, 1276, 307, 257, 5016, 7469, 2134, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 5354, 13, 330, 29782, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 76, 6320, 62, 37724, 58, 4871, 62, 4299, 13, 4871, 62, 60, 796, 1398, 62, 4299, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 76, 6320, 62, 7344, 1386, 58, 4871, 62, 4299, 13, 26011, 60, 796, 1398, 62, 4299, 198, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 5354, 13, 20979, 3419, 628, 220, 220, 220, 825, 651, 9487, 7469, 3886, 9487, 7, 944, 11, 1398, 62, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 257, 5016, 7469, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6045, 611, 5016, 7469, 318, 407, 1043, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 1398, 62, 532, 1398, 11, 262, 1398, 284, 1064, 257, 5016, 7469, 329, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 76, 6320, 62, 37724, 13, 1136, 7, 4871, 62, 11, 6045, 8, 628, 220, 220, 220, 825, 651, 9487, 7469, 3886, 40489, 7, 944, 11, 16144, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 257, 5016, 7469, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6045, 287, 407, 5016, 7469, 318, 1043, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 16144, 532, 4731, 11, 262, 16144, 284, 1064, 257, 5016, 7469, 329, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 76, 6320, 62, 7344, 1386, 13, 1136, 7, 26011, 11, 6045, 8, 628, 220, 220, 220, 825, 555, 8899, 9487, 7, 944, 11, 1398, 62, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3118, 8899, 257, 1398, 6770, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 1398, 62, 532, 1398, 11, 262, 1398, 284, 4781, 257, 5016, 7469, 329, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 5354, 13, 330, 29782, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 16144, 11, 479, 31172, 287, 2116, 13557, 76, 6320, 62, 7344, 1386, 13, 2676, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1398, 62, 6624, 479, 31172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 2116, 13557, 76, 6320, 62, 7344, 1386, 58, 26011, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 62, 312, 796, 4686, 7, 4871, 62, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1398, 62, 312, 287, 2116, 13557, 76, 6320, 62, 37724, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 2116, 13557, 76, 6320, 62, 37724, 58, 4871, 62, 312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 5354, 13, 20979, 3419, 198, 198, 2, 13498, 8265, 12608, 13498, 1303, 198, 198, 4299, 651, 62, 67, 28995, 62, 35226, 62, 12786, 7, 26801, 11, 8856, 62, 1078, 3808, 28, 14202, 11, 2291, 62, 19734, 28, 25101, 2599, 198, 220, 220, 220, 37227, 35561, 257, 8633, 286, 11688, 3815, 284, 37773, 13, 628, 220, 220, 220, 8251, 796, 11688, 3891, 11, 3815, 796, 11688, 3815, 13, 628, 220, 220, 220, 1822, 30300, 658, 198, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 1635, 26181, 532, 2134, 11, 2134, 284, 651, 8925, 11688, 3815, 422, 13, 198, 220, 220, 220, 220, 1635, 8856, 62, 1078, 3808, 532, 1351, 393, 46545, 286, 12608, 284, 8856, 13, 15161, 796, 6565, 46545, 13, 198, 220, 220, 220, 220, 1635, 2291, 62, 19734, 532, 20512, 11, 611, 10352, 466, 407, 2291, 12608, 326, 923, 351, 705, 62, 4458, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15161, 796, 10352, 13, 198, 220, 220, 220, 37227, 220, 198, 220, 220, 220, 410, 874, 796, 23884, 628, 220, 220, 220, 611, 468, 35226, 7, 26801, 11, 705, 834, 11600, 834, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 708, 81, 11, 1188, 287, 26181, 13, 834, 11600, 834, 13, 2676, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 8856, 62, 1078, 3808, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 708, 81, 287, 8856, 62, 1078, 3808, 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, 611, 357, 17256, 62, 19734, 318, 10352, 8, 290, 357, 35226, 13, 9688, 2032, 342, 10786, 62, 11537, 2599, 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, 410, 874, 58, 35226, 60, 796, 1188, 628, 220, 220, 220, 1441, 410, 874, 198, 198, 2, 2312, 6608, 460, 307, 900, 319, 257, 1398, 198, 2, 284, 3975, 12608, 1626, 262, 1398, 13, 198, 1847, 43429, 796, 705, 62, 2390, 37, 11262, 62, 1847, 43429, 6, 198, 35744, 2149, 62, 1404, 5446, 50, 796, 705, 62, 2390, 37, 11262, 62, 35744, 2149, 62, 1404, 5446, 50, 6, 198, 2390, 37, 18, 796, 705, 62, 2390, 37, 11262, 62, 2390, 37, 18, 6, 198, 198, 4299, 8333, 62, 1078, 3808, 7, 4871, 62, 11, 16144, 28, 14202, 11, 9037, 62, 1078, 3808, 28, 14202, 11, 716, 69, 18, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5765, 284, 3975, 5016, 7469, 12608, 284, 257, 1398, 13, 49511, 611, 345, 765, 284, 1394, 198, 220, 220, 220, 5016, 7469, 8398, 351, 262, 1398, 852, 27661, 11, 2427, 286, 379, 220, 198, 220, 220, 220, 262, 966, 810, 262, 5016, 7469, 318, 2727, 13, 628, 220, 220, 220, 1002, 345, 8333, 5016, 7469, 12608, 351, 428, 2446, 11, 345, 460, 198, 220, 220, 220, 869, 5016, 7469, 7, 4871, 62, 8, 284, 2251, 257, 5016, 7469, 11, 290, 262, 8686, 198, 220, 220, 220, 12608, 481, 307, 5625, 284, 262, 649, 5016, 7469, 13, 628, 220, 220, 220, 20559, 2886, 2810, 284, 262, 5016, 7469, 3419, 481, 20957, 12608, 198, 220, 220, 220, 326, 547, 8686, 351, 428, 2163, 13, 628, 220, 220, 220, 7159, 198, 220, 220, 220, 796, 2559, 28, 198, 220, 220, 220, 220, 1635, 1398, 62, 532, 1398, 11, 262, 1398, 284, 8333, 12608, 284, 13, 198, 220, 220, 220, 220, 1635, 16144, 532, 4731, 11, 262, 716, 69, 16144, 1438, 286, 262, 27661, 1398, 198, 220, 220, 220, 220, 1635, 9037, 62, 1078, 3808, 532, 46545, 11, 257, 46545, 286, 9037, 11688, 3891, 11, 477, 3815, 1276, 307, 13042, 393, 28000, 1098, 198, 220, 220, 220, 220, 1635, 716, 69, 18, 532, 20512, 11, 611, 6407, 11, 428, 2134, 481, 307, 30240, 287, 3001, 37, 18, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 16144, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 4871, 62, 11, 8355, 43429, 11, 16144, 8, 628, 220, 220, 220, 611, 9037, 62, 1078, 3808, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 4871, 62, 11, 15486, 2149, 62, 1404, 5446, 50, 11, 9037, 62, 1078, 3808, 8, 628, 220, 220, 220, 611, 716, 69, 18, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 4871, 62, 11, 3001, 37, 18, 11, 716, 69, 18, 8, 198 ]
2.521291
4,556
import os from plot_testcase import plot_testcase #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- if __name__ == "__main__": run_testcase()
[ 11748, 28686, 198, 6738, 7110, 62, 9288, 7442, 1330, 7110, 62, 9288, 7442, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 1057, 62, 9288, 7442, 3419, 198 ]
5.822222
45
import os import argparse from pydub import AudioSegment from pydub.silence import split_on_silence if __name__ == "__main__": parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter, description="Split an audio file on silence.") parser.add_argument('audio_file', help='the audio file to split') parser.add_argument('--min_silence_len', default=400) parser.add_argument('--silence_thresh', default=-36) parser.add_argument('--keep_silence', default=400) args = parser.parse_args() result = splitAudio(os.path.join(os.getcwd(), args.audio_file), AudioSettingsContainer(args.min_silence_len, args.silence_thresh, args.keep_silence)) if not isinstance(result, int): print(result) else: print(str(result) + " audio file(s) successfully created.")
[ 11748, 28686, 198, 11748, 1822, 29572, 198, 198, 6738, 279, 5173, 549, 1330, 13491, 41030, 434, 198, 6738, 279, 5173, 549, 13, 18217, 594, 1330, 6626, 62, 261, 62, 18217, 594, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 197, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 687, 1436, 62, 4871, 28, 853, 29572, 13, 28100, 1713, 7469, 13185, 22087, 8479, 1436, 11, 6764, 2625, 41205, 281, 6597, 2393, 319, 9550, 19570, 198, 197, 48610, 13, 2860, 62, 49140, 10786, 24051, 62, 7753, 3256, 1037, 11639, 1169, 6597, 2393, 284, 6626, 11537, 198, 197, 48610, 13, 2860, 62, 49140, 10786, 438, 1084, 62, 18217, 594, 62, 11925, 3256, 4277, 28, 7029, 8, 198, 197, 48610, 13, 2860, 62, 49140, 10786, 438, 18217, 594, 62, 400, 3447, 3256, 4277, 10779, 2623, 8, 198, 197, 48610, 13, 2860, 62, 49140, 10786, 438, 14894, 62, 18217, 594, 3256, 4277, 28, 7029, 8, 198, 197, 22046, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 197, 20274, 796, 6626, 21206, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 1136, 66, 16993, 22784, 26498, 13, 24051, 62, 7753, 828, 13491, 26232, 29869, 7, 22046, 13, 1084, 62, 18217, 594, 62, 11925, 11, 26498, 13, 18217, 594, 62, 400, 3447, 11, 26498, 13, 14894, 62, 18217, 594, 4008, 198, 197, 361, 407, 318, 39098, 7, 20274, 11, 493, 2599, 198, 197, 197, 4798, 7, 20274, 8, 198, 197, 17772, 25, 198, 197, 197, 4798, 7, 2536, 7, 20274, 8, 1343, 366, 6597, 2393, 7, 82, 8, 7675, 2727, 19570 ]
3.046154
260
from django import forms from rest_framework_extras.tests import models
[ 6738, 42625, 14208, 1330, 5107, 198, 198, 6738, 1334, 62, 30604, 62, 2302, 8847, 13, 41989, 1330, 4981, 628, 628 ]
3.8
20
# Copyright (c) "Neo4j" # Neo4j Sweden AB [http://neo4j.com] # # This file is part of Neo4j. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from unittest import mock import pytest from neo4j import ( Address, AsyncResult, Record, ResultSummary, ServerInfo, SummaryCounters, Version, ) from neo4j._async_compat.util import AsyncUtil from neo4j.data import DataHydrator from neo4j.exceptions import ResultNotSingleError from ...._async_compat import mark_async_test @pytest.mark.parametrize("method", ("for loop", "next", "one iter", "new iter")) @pytest.mark.parametrize("records", ( [], [[42]], [[1], [2], [3], [4], [5]], )) @mark_async_test @pytest.mark.parametrize("method", ("for loop", "next", "one iter", "new iter")) @pytest.mark.parametrize("invert_fetch", (True, False)) @mark_async_test @pytest.mark.parametrize("method", ("for loop", "next", "one iter", "new iter")) @pytest.mark.parametrize("invert_fetch", (True, False)) @mark_async_test @pytest.mark.parametrize("records", ([[1], [2]], [[1]], [])) @pytest.mark.parametrize("fetch_size", (1, 2)) @mark_async_test @pytest.mark.parametrize("records", ([[1], [2]], [[1]], [])) @pytest.mark.parametrize("fetch_size", (1, 2)) @mark_async_test @mark_async_test @pytest.mark.parametrize("records", ([[1], [2]], [[1]], [])) @pytest.mark.parametrize("consume_one", (True, False)) @pytest.mark.parametrize("summary_meta", (None, {"database": "foobar"})) @mark_async_test @pytest.mark.parametrize("t_first", (None, 0, 1, 123456789)) @pytest.mark.parametrize("t_last", (None, 0, 1, 123456789)) @mark_async_test @mark_async_test @pytest.mark.parametrize("query_type", ("r", "w", "rw", "s")) @mark_async_test @pytest.mark.parametrize("num_records", range(0, 5)) @mark_async_test
[ 2, 15069, 357, 66, 8, 366, 8199, 78, 19, 73, 1, 198, 2, 21227, 19, 73, 10710, 9564, 685, 4023, 1378, 710, 78, 19, 73, 13, 785, 60, 198, 2, 198, 2, 770, 2393, 318, 636, 286, 21227, 19, 73, 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, 628, 198, 6738, 555, 715, 395, 1330, 15290, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 19102, 19, 73, 1330, 357, 198, 220, 220, 220, 17917, 11, 198, 220, 220, 220, 1081, 13361, 23004, 11, 198, 220, 220, 220, 13266, 11, 198, 220, 220, 220, 25414, 22093, 11, 198, 220, 220, 220, 9652, 12360, 11, 198, 220, 220, 220, 21293, 34, 15044, 11, 198, 220, 220, 220, 10628, 11, 198, 8, 198, 6738, 19102, 19, 73, 13557, 292, 13361, 62, 5589, 265, 13, 22602, 1330, 1081, 13361, 18274, 346, 198, 6738, 19102, 19, 73, 13, 7890, 1330, 6060, 40436, 12392, 198, 6738, 19102, 19, 73, 13, 1069, 11755, 1330, 25414, 3673, 28008, 12331, 198, 198, 6738, 19424, 62, 292, 13361, 62, 5589, 265, 1330, 1317, 62, 292, 13361, 62, 9288, 628, 628, 628, 198, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 24396, 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, 5855, 1640, 9052, 1600, 366, 19545, 1600, 366, 505, 11629, 1600, 220, 366, 3605, 11629, 48774, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 8344, 3669, 1600, 357, 198, 220, 220, 220, 685, 4357, 198, 220, 220, 220, 16410, 3682, 60, 4357, 198, 220, 220, 220, 16410, 16, 4357, 685, 17, 4357, 685, 18, 4357, 685, 19, 4357, 685, 20, 60, 4357, 198, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 24396, 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, 5855, 1640, 9052, 1600, 366, 19545, 1600, 366, 505, 11629, 1600, 220, 366, 3605, 11629, 48774, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 259, 1851, 62, 69, 7569, 1600, 357, 17821, 11, 10352, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 24396, 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, 5855, 1640, 9052, 1600, 366, 19545, 1600, 366, 505, 11629, 1600, 220, 366, 3605, 11629, 48774, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 259, 1851, 62, 69, 7569, 1600, 357, 17821, 11, 10352, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 8344, 3669, 1600, 29565, 58, 16, 4357, 685, 17, 60, 4357, 16410, 16, 60, 4357, 17635, 4008, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 69, 7569, 62, 7857, 1600, 357, 16, 11, 362, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 8344, 3669, 1600, 29565, 58, 16, 4357, 685, 17, 60, 4357, 16410, 16, 60, 4357, 17635, 4008, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 69, 7569, 62, 7857, 1600, 357, 16, 11, 362, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 8344, 3669, 1600, 29565, 58, 16, 4357, 685, 17, 60, 4357, 16410, 16, 60, 4357, 17635, 4008, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 5936, 2454, 62, 505, 1600, 357, 17821, 11, 10352, 4008, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 49736, 62, 28961, 1600, 357, 14202, 11, 19779, 48806, 1298, 366, 6513, 30973, 20662, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 83, 62, 11085, 1600, 357, 14202, 11, 657, 11, 352, 11, 17031, 2231, 3134, 4531, 4008, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 83, 62, 12957, 1600, 357, 14202, 11, 657, 11, 352, 11, 17031, 2231, 3134, 4531, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 22766, 62, 4906, 1600, 5855, 81, 1600, 366, 86, 1600, 366, 31653, 1600, 366, 82, 48774, 198, 31, 4102, 62, 292, 13361, 62, 9288, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 22510, 62, 8344, 3669, 1600, 2837, 7, 15, 11, 642, 4008, 198, 31, 4102, 62, 292, 13361, 62, 9288, 198 ]
2.459627
966
import importlib import pytest @pytest.fixture @pytest.fixture
[ 198, 11748, 1330, 8019, 198, 198, 11748, 12972, 9288, 628, 198, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 198 ]
2.592593
27
import logging from aiosmtpd.smtp import MISSING, SMTP, Session, syntax from .config import Config from .handlers import AUTH_REQUIRED log = logging.getLogger(__name__)
[ 11748, 18931, 201, 198, 201, 198, 6738, 257, 4267, 16762, 30094, 13, 5796, 34788, 1330, 49684, 2751, 11, 9447, 7250, 11, 23575, 11, 15582, 201, 198, 201, 198, 6738, 764, 11250, 1330, 17056, 201, 198, 6738, 764, 4993, 8116, 1330, 37195, 62, 2200, 10917, 37819, 201, 198, 201, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 201, 198, 201, 198, 201, 198 ]
2.746269
67
nfreq_bands = 7 win_length_sec = 120 stride_sec = 120 n_channels = 16 n_timesteps = (600-win_length_sec)/stride_sec + 1 global_pooling = 1 nkerns = [16, 32, 512] recept_width = [1, 1] stride = [1, 1] pool_width = [1, 1] n_params = 0 c1_input_width = n_timesteps print('c1:', nkerns[0], '@', ((n_timesteps - recept_width[0]) / stride[0] + 1) / pool_width[0]) n_params += (n_channels * nfreq_bands * recept_width[0] + 1) * nkerns[0] c2_input_width = ((n_timesteps - recept_width[0]) / stride[0] + 1) / pool_width[0] print('c2:', nkerns[1], '@', ((c2_input_width - recept_width[1]) / stride[1] + 1) / pool_width[1]) n_params += (nkerns[0]*recept_width[1] + 1)*nkerns[1] if global_pooling: f3_input_size = 6*nkerns[1] else: f3_input_size = nkerns[1]*((c2_input_width - recept_width[1]) / stride[1] + 1) / pool_width[1] n_params += f3_input_size * nkerns[2] + 1 print('number of parameters', n_params)
[ 77, 19503, 80, 62, 21397, 796, 767, 201, 198, 5404, 62, 13664, 62, 2363, 796, 7982, 201, 198, 2536, 485, 62, 2363, 796, 7982, 201, 198, 77, 62, 354, 8961, 796, 1467, 201, 198, 77, 62, 16514, 395, 25386, 796, 357, 8054, 12, 5404, 62, 13664, 62, 2363, 20679, 2536, 485, 62, 2363, 1343, 352, 201, 198, 20541, 62, 7742, 278, 796, 352, 201, 198, 201, 198, 77, 74, 1142, 82, 796, 685, 1433, 11, 3933, 11, 22243, 60, 201, 198, 260, 984, 62, 10394, 796, 685, 16, 11, 352, 60, 201, 198, 2536, 485, 796, 685, 16, 11, 352, 60, 201, 198, 7742, 62, 10394, 796, 685, 16, 11, 352, 60, 201, 198, 201, 198, 77, 62, 37266, 796, 657, 201, 198, 201, 198, 66, 16, 62, 15414, 62, 10394, 796, 299, 62, 16514, 395, 25386, 201, 198, 4798, 10786, 66, 16, 25, 3256, 299, 74, 1142, 82, 58, 15, 4357, 705, 31, 3256, 14808, 77, 62, 16514, 395, 25386, 532, 9420, 62, 10394, 58, 15, 12962, 1220, 33769, 58, 15, 60, 1343, 352, 8, 1220, 5933, 62, 10394, 58, 15, 12962, 201, 198, 77, 62, 37266, 15853, 357, 77, 62, 354, 8961, 1635, 299, 19503, 80, 62, 21397, 1635, 9420, 62, 10394, 58, 15, 60, 1343, 352, 8, 1635, 299, 74, 1142, 82, 58, 15, 60, 201, 198, 201, 198, 66, 17, 62, 15414, 62, 10394, 796, 14808, 77, 62, 16514, 395, 25386, 532, 9420, 62, 10394, 58, 15, 12962, 1220, 33769, 58, 15, 60, 1343, 352, 8, 1220, 5933, 62, 10394, 58, 15, 60, 201, 198, 4798, 10786, 66, 17, 25, 3256, 299, 74, 1142, 82, 58, 16, 4357, 705, 31, 3256, 14808, 66, 17, 62, 15414, 62, 10394, 532, 9420, 62, 10394, 58, 16, 12962, 1220, 33769, 58, 16, 60, 1343, 352, 8, 1220, 5933, 62, 10394, 58, 16, 12962, 201, 198, 77, 62, 37266, 15853, 357, 77, 74, 1142, 82, 58, 15, 60, 9, 260, 984, 62, 10394, 58, 16, 60, 1343, 352, 27493, 77, 74, 1142, 82, 58, 16, 60, 201, 198, 201, 198, 361, 3298, 62, 7742, 278, 25, 201, 198, 220, 220, 220, 277, 18, 62, 15414, 62, 7857, 796, 718, 9, 77, 74, 1142, 82, 58, 16, 60, 201, 198, 17772, 25, 201, 198, 220, 220, 220, 277, 18, 62, 15414, 62, 7857, 796, 299, 74, 1142, 82, 58, 16, 60, 9, 19510, 66, 17, 62, 15414, 62, 10394, 532, 9420, 62, 10394, 58, 16, 12962, 1220, 33769, 58, 16, 60, 1343, 352, 8, 1220, 5933, 62, 10394, 58, 16, 60, 201, 198, 201, 198, 77, 62, 37266, 15853, 277, 18, 62, 15414, 62, 7857, 1635, 299, 74, 1142, 82, 58, 17, 60, 1343, 352, 201, 198, 4798, 10786, 17618, 286, 10007, 3256, 299, 62, 37266, 8, 201, 198, 201, 198 ]
2.047826
460
""" Default configuration and hyperparameter values for dynamics objects. """ # DynamicsPriorGMM DYN_PRIOR_GMM = { 'min_samples_per_cluster': 20, 'max_clusters': 50, 'max_samples': 20, 'strength': 1.0, }
[ 37811, 15161, 8398, 290, 8718, 17143, 2357, 3815, 329, 17262, 5563, 13, 37227, 198, 198, 2, 33806, 22442, 38, 12038, 198, 35, 40760, 62, 4805, 41254, 62, 38, 12038, 796, 1391, 198, 220, 220, 220, 705, 1084, 62, 82, 12629, 62, 525, 62, 565, 5819, 10354, 1160, 11, 198, 220, 220, 220, 705, 9806, 62, 565, 13654, 10354, 2026, 11, 198, 220, 220, 220, 705, 9806, 62, 82, 12629, 10354, 1160, 11, 198, 220, 220, 220, 705, 41402, 10354, 352, 13, 15, 11, 198, 92, 198 ]
2.569767
86
from floodsystem.stationdata import build_station_list from floodsystem.geo import stations_by_distance, stations_with_radius, rivers_with_stations, stations_by_river import itertools stations = build_station_list() p = (52.2053, 0.1218) # coords of cambridge print("closest 10 stations from cambridge: {}".format(stations_by_distance(stations, p)[0:10])) print("furthest 10 stations from cambridge: {}".format(stations_by_distance(stations, p)[-10:]))
[ 6738, 6947, 10057, 13, 17529, 7890, 1330, 1382, 62, 17529, 62, 4868, 198, 6738, 6947, 10057, 13, 469, 78, 1330, 8985, 62, 1525, 62, 30246, 11, 8985, 62, 4480, 62, 42172, 11, 18180, 62, 4480, 62, 301, 602, 11, 8985, 62, 1525, 62, 38291, 198, 11748, 340, 861, 10141, 198, 198, 301, 602, 796, 1382, 62, 17529, 62, 4868, 3419, 198, 79, 796, 357, 4309, 13, 1238, 4310, 11, 657, 13, 1065, 1507, 8, 220, 1303, 763, 3669, 286, 12172, 9458, 198, 198, 4798, 7203, 565, 418, 395, 838, 8985, 422, 12172, 9458, 25, 23884, 1911, 18982, 7, 301, 602, 62, 1525, 62, 30246, 7, 301, 602, 11, 279, 38381, 15, 25, 940, 60, 4008, 198, 4798, 7203, 38916, 1169, 301, 838, 8985, 422, 12172, 9458, 25, 23884, 1911, 18982, 7, 301, 602, 62, 1525, 62, 30246, 7, 301, 602, 11, 279, 38381, 12, 940, 47715, 4008 ]
3.095238
147
import matplotlib.pyplot as plt from ann import attractor_network as AA from ann import pattern as p import numpy as np N = 1024 # Number of neurons K = 4 # Degree a = 0.5 # Sparseness T = 800 # Steps # Create network with same parameters as above activity_net = AA.SimpleAttractor(N, K, a, "ring") print(activity_net) # Make topology (random by default) activity_net.generate_topology() # Make weights (random -1, 1) activity_net.make_weights() # Initializa network state (binary random with a activity) activity_net.make_initialization() print(activity_net)v t1 = datetime.datetime.now() # Update network T steps (returns activity for each step) activity = activity_net.update_steps(T) t2 = datetime.datetime.now() print(t2-t1) # Plot activity plt.figure(figsize=(20,6)) plt.plot(activity) plt.show()
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 1529, 1330, 4729, 273, 62, 27349, 355, 15923, 198, 6738, 1529, 1330, 3912, 355, 279, 198, 11748, 299, 32152, 355, 45941, 198, 198, 45, 796, 28119, 1303, 7913, 286, 16890, 198, 42, 796, 604, 1303, 34486, 198, 64, 796, 657, 13, 20, 1303, 1338, 945, 9449, 198, 51, 796, 10460, 1303, 32144, 628, 198, 2, 13610, 3127, 351, 976, 10007, 355, 2029, 198, 21797, 62, 3262, 796, 15923, 13, 26437, 8086, 40450, 7, 45, 11, 509, 11, 257, 11, 366, 1806, 4943, 198, 4798, 7, 21797, 62, 3262, 8, 198, 2, 6889, 1353, 1435, 357, 25120, 416, 4277, 8, 198, 21797, 62, 3262, 13, 8612, 378, 62, 4852, 1435, 3419, 198, 2, 6889, 19590, 357, 25120, 532, 16, 11, 352, 8, 198, 21797, 62, 3262, 13, 15883, 62, 43775, 3419, 198, 220, 220, 220, 1303, 20768, 23638, 3127, 1181, 357, 39491, 4738, 351, 257, 3842, 8, 198, 21797, 62, 3262, 13, 15883, 62, 36733, 1634, 3419, 198, 4798, 7, 21797, 62, 3262, 8, 85, 198, 198, 83, 16, 796, 4818, 8079, 13, 19608, 8079, 13, 2197, 3419, 198, 2, 10133, 3127, 309, 4831, 357, 7783, 82, 3842, 329, 1123, 2239, 8, 198, 21797, 796, 3842, 62, 3262, 13, 19119, 62, 20214, 7, 51, 8, 198, 83, 17, 796, 4818, 8079, 13, 19608, 8079, 13, 2197, 3419, 198, 4798, 7, 83, 17, 12, 83, 16, 8, 198, 198, 2, 28114, 3842, 198, 489, 83, 13, 26875, 7, 5647, 7857, 16193, 1238, 11, 21, 4008, 198, 489, 83, 13, 29487, 7, 21797, 8, 198, 489, 83, 13, 12860, 3419 ]
3.01487
269
'''This program contains the functions averageFinder and midpointFinder. AverageData calculates the averages of the "columns" of a list of numbers (a list of lists of numbers) for real and fake samples (separately) and midpointFinder finds the midpoint between the real and fake averages. Data is either given from the test case or from user input, which is run through incomingData. Assignment 2: classifier_builder Name: Anna Wood Student Number: 20091785 NetID: 17aaw2''' def averageFinder(sample_data): '''will take a list of attributes and: averageFinder calculates the average of each of the attributes across all the samples with the same classification (0 or 1) input: sample list / list of numbers output: none, averages are passed to midpointFinder note - 1 IS REAL 0 IS COUNTERFEIT ''' real_avgs_counter = 0 counter_avgs_counter = 0 real_avgs = [] counter_avgs = [] avg_len_real = 0 indx = 0 while indx < 4: # while-loop that sums each attribute and adds it to the list of its category (real or counter) for i in range(0,len(sample_data)): # loop to separate data into 0 and 1 if sample_data[i][4] == 1: real_avgs_counter += sample_data[i][indx]# if real, attribute is summed in counter avg_len_real = avg_len_real + 1 /4 # used to count the length of how many real bills elif sample_data[i][4] == 0: # attribute sum for counterfeit bills counter_avgs_counter += sample_data[i][indx] real_avgs.append(real_avgs_counter) # after each attribute is summed it is added to the final list counter_avgs.append(counter_avgs_counter) real_avgs_counter = 0 # counters are reset to 0 after each list counter_avgs_counter = 0 indx += 1 # index for counting the "columns" avg_len_counter = len(sample_data) - avg_len_real # number of real / counter bills calculated for finding the average for i in range(0, 4): # divides the real, counterfeit sums by the amount of real & counterfeit items respectively real_avgs[i] = round((real_avgs[i] / avg_len_real), 3) counter_avgs[i] = round((counter_avgs[i] / avg_len_counter), 3) # each average rounded to 3 decimal points return real_avgs, counter_avgs def midpointFinder(real_avgs, counter_avgs): '''part 2 of the building classifier, takes the averages of the real and and fake samples and finds the midpoint (divides by 2). midpoints list should then be returned to classifier for further classifying input: averages of real, fake samples output: midpoints (returned to incomingData)''' midpoints = [] # empty list for midpoints for i in range(0,4): # finds midpoints by adding averages and dividing by 2 midpoint = (real_avgs[i] + counter_avgs[i]) / 2 midpoints.append(round(midpoint,3)) return midpoints #returns midpoints to incomingData def incomingData(training_data): '''function runs from here when data is passed from our main interface input: training_data output: midpoints''' real_avgs, counter_avgs = averageFinder(training_data) midpoints = midpointFinder(real_avgs, counter_avgs) return midpoints # midpoints returned to main interface if __name__ == '__main__': sample_data_main = [[ 3, 8, -2, 0, 0], [4, 8, -2, -1,0],[3, -2, 1, 0, 0], [2, 1, 0, -2, 0], # fake samples (5th item 0) [0, 3, -3, -2, 1], [-3, 3, 0, -3, 1], [-6, 7, 0, -3, 1] ] # real samples (5th item is 1) real_avgs , counter_avgs = averageFinder(sample_data_main) midpoints = midpointFinder(real_avgs, counter_avgs) print('real averages (test case)',real_avgs, 'should be -3 , 4.333, -1. -2.667') print('counter averages (test case)',counter_avgs, 'should be 3, 3.75, -0.75, -0.75') print('midpoints (test case)', midpoints, 'should be 0, 4.041 ish, -0.875, -1.708')
[ 7061, 6, 1212, 1430, 4909, 262, 5499, 2811, 37, 5540, 290, 3095, 4122, 37, 5540, 13, 13475, 6601, 43707, 262, 25694, 286, 262, 198, 1, 28665, 82, 1, 286, 257, 1351, 286, 3146, 357, 64, 1351, 286, 8341, 286, 3146, 8, 329, 1103, 290, 8390, 8405, 357, 25512, 1286, 8, 290, 3095, 4122, 37, 5540, 198, 19796, 82, 262, 3095, 4122, 1022, 262, 1103, 290, 8390, 25694, 13, 198, 6601, 318, 2035, 1813, 422, 262, 1332, 1339, 393, 422, 2836, 5128, 11, 543, 318, 1057, 832, 15619, 6601, 13, 198, 8021, 16747, 362, 25, 1398, 7483, 62, 38272, 198, 5376, 25, 11735, 5326, 198, 38778, 7913, 25, 3717, 1558, 5332, 198, 7934, 2389, 25, 1596, 64, 707, 17, 7061, 6, 198, 198, 4299, 2811, 37, 5540, 7, 39873, 62, 7890, 2599, 198, 220, 220, 220, 705, 7061, 10594, 1011, 257, 1351, 286, 12608, 290, 25, 198, 220, 220, 220, 2811, 37, 5540, 43707, 262, 2811, 286, 1123, 286, 262, 12608, 1973, 477, 262, 8405, 351, 262, 198, 220, 220, 220, 976, 17923, 357, 15, 393, 352, 8, 198, 220, 220, 220, 5128, 25, 6291, 1351, 1220, 1351, 286, 3146, 198, 220, 220, 220, 5072, 25, 4844, 11, 25694, 389, 3804, 284, 3095, 4122, 37, 5540, 198, 220, 220, 220, 3465, 532, 352, 3180, 32744, 657, 3180, 31404, 5781, 15112, 2043, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 1103, 62, 615, 14542, 62, 24588, 796, 657, 198, 220, 220, 220, 3753, 62, 615, 14542, 62, 24588, 796, 657, 198, 220, 220, 220, 1103, 62, 615, 14542, 796, 17635, 198, 220, 220, 220, 3753, 62, 615, 14542, 796, 17635, 198, 220, 220, 220, 42781, 62, 11925, 62, 5305, 796, 657, 198, 220, 220, 220, 773, 87, 796, 657, 628, 220, 220, 220, 981, 773, 87, 1279, 604, 25, 1303, 981, 12, 26268, 326, 21784, 1123, 11688, 290, 6673, 340, 284, 262, 1351, 286, 663, 6536, 357, 5305, 393, 3753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 11925, 7, 39873, 62, 7890, 8, 2599, 1303, 9052, 284, 4553, 1366, 656, 657, 290, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6291, 62, 7890, 58, 72, 7131, 19, 60, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1103, 62, 615, 14542, 62, 24588, 15853, 6291, 62, 7890, 58, 72, 7131, 521, 87, 60, 2, 611, 1103, 11, 11688, 318, 32794, 287, 3753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42781, 62, 11925, 62, 5305, 796, 42781, 62, 11925, 62, 5305, 1343, 352, 1220, 19, 1303, 973, 284, 954, 262, 4129, 286, 703, 867, 1103, 9024, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6291, 62, 7890, 58, 72, 7131, 19, 60, 6624, 657, 25, 1303, 11688, 2160, 329, 36497, 9024, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 615, 14542, 62, 24588, 15853, 6291, 62, 7890, 58, 72, 7131, 521, 87, 60, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1103, 62, 615, 14542, 13, 33295, 7, 5305, 62, 615, 14542, 62, 24588, 8, 1303, 706, 1123, 11688, 318, 32794, 340, 318, 2087, 284, 262, 2457, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 615, 14542, 13, 33295, 7, 24588, 62, 615, 14542, 62, 24588, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1103, 62, 615, 14542, 62, 24588, 796, 657, 1303, 21154, 389, 13259, 284, 657, 706, 1123, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 615, 14542, 62, 24588, 796, 657, 628, 220, 220, 220, 220, 220, 220, 220, 773, 87, 15853, 352, 1303, 6376, 329, 14143, 262, 366, 28665, 82, 1, 628, 220, 220, 220, 42781, 62, 11925, 62, 24588, 796, 18896, 7, 39873, 62, 7890, 8, 532, 42781, 62, 11925, 62, 5305, 1303, 1271, 286, 1103, 1220, 3753, 9024, 10488, 329, 4917, 262, 2811, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 604, 2599, 1303, 36319, 262, 1103, 11, 36497, 21784, 416, 262, 2033, 286, 1103, 1222, 36497, 3709, 8148, 198, 220, 220, 220, 220, 220, 220, 220, 1103, 62, 615, 14542, 58, 72, 60, 796, 2835, 19510, 5305, 62, 615, 14542, 58, 72, 60, 1220, 42781, 62, 11925, 62, 5305, 828, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3753, 62, 615, 14542, 58, 72, 60, 796, 2835, 19510, 24588, 62, 615, 14542, 58, 72, 60, 1220, 42781, 62, 11925, 62, 24588, 828, 513, 8, 1303, 1123, 2811, 19273, 284, 513, 32465, 2173, 628, 220, 220, 220, 1441, 1103, 62, 615, 14542, 11, 3753, 62, 615, 14542, 628, 198, 198, 4299, 3095, 4122, 37, 5540, 7, 5305, 62, 615, 14542, 11, 3753, 62, 615, 14542, 2599, 198, 220, 220, 220, 705, 7061, 3911, 362, 286, 262, 2615, 1398, 7483, 11, 2753, 262, 25694, 286, 262, 1103, 290, 290, 8390, 8405, 290, 7228, 198, 220, 220, 220, 262, 3095, 4122, 220, 357, 7146, 1460, 416, 362, 737, 3095, 13033, 1351, 815, 788, 307, 4504, 284, 1398, 7483, 198, 220, 220, 220, 329, 2252, 1398, 4035, 198, 220, 220, 220, 5128, 25, 25694, 286, 1103, 11, 8390, 8405, 198, 220, 220, 220, 5072, 25, 3095, 13033, 357, 7783, 276, 284, 15619, 6601, 8, 7061, 6, 628, 198, 220, 220, 220, 3095, 13033, 796, 17635, 1303, 6565, 1351, 329, 3095, 13033, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 19, 2599, 1303, 7228, 3095, 13033, 416, 4375, 25694, 290, 27241, 416, 362, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 4122, 796, 357, 5305, 62, 615, 14542, 58, 72, 60, 1343, 3753, 62, 615, 14542, 58, 72, 12962, 1220, 362, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 13033, 13, 33295, 7, 744, 7, 13602, 4122, 11, 18, 4008, 628, 220, 220, 220, 1441, 3095, 13033, 1303, 7783, 82, 3095, 13033, 284, 15619, 6601, 628, 198, 198, 4299, 15619, 6601, 7, 34409, 62, 7890, 2599, 198, 220, 220, 220, 705, 7061, 8818, 4539, 422, 994, 618, 1366, 318, 3804, 422, 674, 1388, 7071, 198, 220, 220, 220, 5128, 25, 3047, 62, 7890, 198, 220, 220, 220, 5072, 25, 3095, 13033, 7061, 6, 628, 220, 220, 220, 1103, 62, 615, 14542, 11, 3753, 62, 615, 14542, 796, 2811, 37, 5540, 7, 34409, 62, 7890, 8, 198, 220, 220, 220, 3095, 13033, 796, 3095, 4122, 37, 5540, 7, 5305, 62, 615, 14542, 11, 3753, 62, 615, 14542, 8, 198, 220, 220, 220, 1441, 3095, 13033, 1303, 3095, 13033, 4504, 284, 1388, 7071, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 6291, 62, 7890, 62, 12417, 796, 16410, 513, 11, 807, 11, 532, 17, 11, 657, 11, 657, 4357, 685, 19, 11, 807, 11, 532, 17, 11, 532, 16, 11, 15, 38430, 18, 11, 532, 17, 11, 352, 11, 657, 11, 657, 4357, 685, 17, 11, 352, 11, 657, 11, 532, 17, 11, 657, 4357, 1303, 8390, 8405, 357, 20, 400, 2378, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 513, 11, 532, 18, 11, 532, 17, 11, 352, 4357, 25915, 18, 11, 513, 11, 657, 11, 532, 18, 11, 352, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25915, 21, 11, 767, 11, 657, 11, 532, 18, 11, 352, 60, 2361, 1303, 1103, 8405, 357, 20, 400, 2378, 318, 352, 8, 198, 220, 220, 220, 1103, 62, 615, 14542, 837, 3753, 62, 615, 14542, 796, 2811, 37, 5540, 7, 39873, 62, 7890, 62, 12417, 8, 198, 220, 220, 220, 3095, 13033, 796, 3095, 4122, 37, 5540, 7, 5305, 62, 615, 14542, 11, 3753, 62, 615, 14542, 8, 628, 220, 220, 220, 3601, 10786, 5305, 25694, 357, 9288, 1339, 8, 3256, 5305, 62, 615, 14542, 11, 705, 21754, 307, 532, 18, 837, 604, 13, 20370, 11, 532, 16, 13, 532, 17, 13, 28933, 11537, 198, 220, 220, 220, 3601, 10786, 24588, 25694, 357, 9288, 1339, 8, 3256, 24588, 62, 615, 14542, 11, 705, 21754, 307, 513, 11, 513, 13, 2425, 11, 532, 15, 13, 2425, 11, 532, 15, 13, 2425, 11537, 198, 220, 220, 220, 3601, 10786, 13602, 13033, 357, 9288, 1339, 8, 3256, 3095, 13033, 11, 705, 21754, 307, 657, 11, 604, 13, 50049, 318, 71, 11, 532, 15, 13, 31360, 11, 532, 16, 13, 32583, 11537, 198 ]
2.753996
1,439
#! /usr/bin/python3 # @Author: allen # @Date: Nov 29 11:07 2019 import configparser import json import locale import os import re import sys from collections import OrderedDict import click from dialog import Dialog __author__ = 'Allen Shaw' __version__ = '0.1.1' CONFIG = os.path.expanduser('~/.config/gitclk/config/config.json') TEMPERATE_CONFIG = os.path.expanduser('~/.config/gitclk/config/temperate.json') @click.group(help='Git remotes setting.') @click.command('config', help='Configure the git platforms.') @click.option('-e', '--edit', 'edit', is_flag=True, default=False, help='Edit the config file.') @click.command('set', help='Set remotes setting to git config.') @click.option('-a', '--all', 'set_all', is_flag=True, default=False, show_default=True, help='Set all remotes include ignored.') @click.option('-n', '--repository-name', 'repo', required=True, help='The repository name.') cli.add_command(config) cli.add_command(set_remotes) if __name__ == '__main__': GIT_CONFIG = check_repository() if GIT_CONFIG is False: click.echo('fatal: not in a git directory') sys.exit(1) cli()
[ 2, 0, 1220, 14629, 14, 8800, 14, 29412, 18, 198, 2, 2488, 13838, 25, 477, 268, 198, 2, 2488, 10430, 25, 5267, 2808, 1367, 25, 2998, 13130, 198, 11748, 4566, 48610, 198, 11748, 33918, 198, 11748, 36693, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 25064, 198, 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 198, 11748, 3904, 198, 6738, 17310, 1330, 21269, 519, 198, 198, 834, 9800, 834, 796, 705, 39989, 18193, 6, 198, 834, 9641, 834, 796, 705, 15, 13, 16, 13, 16, 6, 198, 10943, 16254, 796, 28686, 13, 6978, 13, 11201, 392, 7220, 10786, 93, 11757, 11250, 14, 18300, 565, 74, 14, 11250, 14, 11250, 13, 17752, 11537, 198, 51, 3620, 18973, 6158, 62, 10943, 16254, 796, 28686, 13, 6978, 13, 11201, 392, 7220, 10786, 93, 11757, 11250, 14, 18300, 565, 74, 14, 11250, 14, 11498, 30052, 13, 17752, 11537, 628, 628, 628, 198, 198, 31, 12976, 13, 8094, 7, 16794, 11639, 38, 270, 816, 6421, 4634, 2637, 8, 628, 198, 31, 12976, 13, 21812, 10786, 11250, 3256, 1037, 11639, 16934, 495, 262, 17606, 9554, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 12, 68, 3256, 705, 438, 19312, 3256, 705, 19312, 3256, 318, 62, 32109, 28, 17821, 11, 4277, 28, 25101, 11, 1037, 11639, 18378, 262, 4566, 2393, 2637, 8, 628, 198, 31, 12976, 13, 21812, 10786, 2617, 3256, 1037, 11639, 7248, 816, 6421, 4634, 284, 17606, 4566, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 12, 64, 3256, 705, 438, 439, 3256, 705, 2617, 62, 439, 3256, 318, 62, 32109, 28, 17821, 11, 4277, 28, 25101, 11, 905, 62, 12286, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 7248, 477, 816, 6421, 2291, 9514, 2637, 8, 198, 31, 12976, 13, 18076, 10786, 12, 77, 3256, 705, 438, 260, 1930, 37765, 12, 3672, 3256, 705, 260, 7501, 3256, 2672, 28, 17821, 11, 1037, 11639, 464, 16099, 1438, 2637, 8, 628, 198, 44506, 13, 2860, 62, 21812, 7, 11250, 8, 198, 44506, 13, 2860, 62, 21812, 7, 2617, 62, 2787, 6421, 8, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 402, 2043, 62, 10943, 16254, 796, 2198, 62, 260, 1930, 37765, 3419, 198, 220, 220, 220, 611, 402, 2043, 62, 10943, 16254, 318, 10352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3904, 13, 30328, 10786, 69, 10254, 25, 407, 287, 257, 17606, 8619, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 628, 220, 220, 220, 537, 72, 3419, 198 ]
2.682135
431
import unittest from src import validators if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 6738, 12351, 1330, 4938, 2024, 628, 628, 628, 628, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.666667
39
from tvsched.application.models.schedule import EpisodeInSchedule, ShowInSchedule class ShowAlreadyExistsInScheduleError(Exception): """Will be raised when trying to add already existed in schedule show to schedule""" @property class ShowOrScheduleNotFoundError(Exception): """Will be raised when trying to add not existed show to schedule or show to not existed schedule """ @property class EpisodeOrScheduleNotFoundError(Exception): """Will be raised when trying to add not existed episode to schedule or episode to not existed schedule """ @property class EpisodeAlreadyMarkedAsWatchedError(Exception): """Will be raised when trying to mark as watched already marked episode in schedule. """ @property
[ 6738, 31557, 1416, 704, 13, 31438, 13, 27530, 13, 15952, 5950, 1330, 7922, 818, 27054, 5950, 11, 5438, 818, 27054, 5950, 628, 198, 4871, 5438, 37447, 3109, 1023, 818, 27054, 5950, 12331, 7, 16922, 2599, 198, 220, 220, 220, 37227, 8743, 307, 4376, 618, 2111, 284, 751, 1541, 11196, 287, 7269, 905, 284, 7269, 37811, 628, 220, 220, 220, 2488, 26745, 628, 198, 4871, 5438, 5574, 27054, 5950, 3673, 21077, 12331, 7, 16922, 2599, 198, 220, 220, 220, 37227, 8743, 307, 4376, 618, 2111, 284, 751, 407, 11196, 905, 284, 7269, 198, 220, 220, 220, 393, 905, 284, 407, 11196, 7269, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 628, 198, 4871, 7922, 5574, 27054, 5950, 3673, 21077, 12331, 7, 16922, 2599, 198, 220, 220, 220, 37227, 8743, 307, 4376, 618, 2111, 284, 751, 407, 11196, 4471, 284, 7269, 198, 220, 220, 220, 393, 4471, 284, 407, 11196, 7269, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 628, 198, 4871, 7922, 37447, 9704, 276, 1722, 54, 14265, 12331, 7, 16922, 2599, 198, 220, 220, 220, 37227, 8743, 307, 4376, 618, 2111, 284, 1317, 355, 7342, 198, 220, 220, 220, 1541, 7498, 4471, 287, 7269, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 198 ]
3.629108
213
import os from mock import patch import json from tests.unit.backend.corpora.api_server.base_api_test import BaseAuthAPITest
[ 11748, 28686, 198, 6738, 15290, 1330, 8529, 198, 11748, 33918, 198, 198, 6738, 5254, 13, 20850, 13, 1891, 437, 13, 10215, 38851, 13, 15042, 62, 15388, 13, 8692, 62, 15042, 62, 9288, 1330, 7308, 30515, 2969, 2043, 395, 628 ]
3.25641
39
from django.db import models
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 628 ]
3.75
8
from __future__ import print_function, absolute_import from qtpy.QtCore import Qt, Slot, QRectF, QPointF from qtpy.QtGui import QPen, QBrush, QColor from qtpy.QtWidgets import QGraphicsObject, QGraphicsRectItem, QGraphicsItemGroup, \ QGraphicsSimpleTextItem, QGraphicsEllipseItem, QGraphicsLineItem from .mapitems import MapItem from .functions import makePen, makeBrush from .qtsupport import getQVariantValue
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 11, 4112, 62, 11748, 198, 198, 6738, 10662, 83, 9078, 13, 48, 83, 14055, 1330, 33734, 11, 32026, 11, 42137, 478, 37, 11, 1195, 12727, 37, 198, 6738, 10662, 83, 9078, 13, 48, 83, 8205, 72, 1330, 1195, 25553, 11, 1195, 9414, 1530, 11, 1195, 10258, 198, 6738, 10662, 83, 9078, 13, 48, 83, 54, 312, 11407, 1330, 1195, 18172, 10267, 11, 1195, 18172, 45474, 7449, 11, 1195, 18172, 7449, 13247, 11, 3467, 198, 220, 220, 220, 1195, 18172, 26437, 8206, 7449, 11, 1195, 18172, 30639, 541, 325, 7449, 11, 1195, 18172, 13949, 7449, 198, 198, 6738, 764, 8899, 23814, 1330, 9347, 7449, 198, 6738, 764, 12543, 2733, 1330, 787, 25553, 11, 787, 9414, 1530, 198, 6738, 764, 80, 912, 84, 4926, 1330, 651, 48, 23907, 415, 11395, 628, 628 ]
3.043478
138
''' show_lisp.py IOSXE parsers for the following show commands: * show lisp session * show lisp platform * show lisp all extranet <extranet> instance-id <instance_id> * show lisp all instance-id <instance_id> dynamic-eid detail * show lisp all service ipv4 * show lisp all service ipv6 * show lisp all service ethernet * show lisp all instance-id <instance_id> ipv4 * show lisp all instance-id <instance_id> ipv6 * show lisp all instance-id <instance_id> ethernet * show lisp all instance-id <instance_id> ipv4 map-cache * show lisp all instance-id <instance_id> ipv6 map-cache * show lisp all instance-id <instance_id> ethernet map-cache * show lisp all instance-id <instance_id> ipv4 server rloc members * show lisp all instance-id <instance_id> ipv6 server rloc members * show lisp all instance-id <instance_id> ethernet server rloc members * show lisp all instance-id <instance_id> ipv4 smr * show lisp all instance-id <instance_id> ipv6 smr * show lisp all instance-id <instance_id> ethernet smr * show lisp all service ipv4 summary * show lisp all service ipv6 summary * show lisp all service ethernet summary * show lisp all instance-id <instance_id> ipv4 database * show lisp all instance-id <instance_id> ipv6 database * show lisp all instance-id <instance_id> ethernet database * show lisp all instance-id <instance_id> ipv4 server summary * show lisp all instance-id <instance_id> ipv6 server summary * show lisp all instance-id <instance_id> ethernet server summary * show lisp all instance-id <instance_id> ipv4 server detail internal * show lisp all instance-id <instance_id> ipv6 server detail internal * show lisp all instance-id <instance_id> ethernet server detail internal * show lisp all instance-id <instance_id> ipv4 statistics * show lisp all instance-id <instance_id> ipv6 statistics * show lisp all instance-id <instance_id> ethernet statistics ''' # Python import re # Metaparser from genie.metaparser import MetaParser from genie.metaparser.util.schemaengine import Schema, Any, Or, Optional from genie.libs.parser.utils.common import Common # ============================== # Schema for 'show lisp session' # ============================== class ShowLispSessionSchema(MetaParser): ''' Schema for "show lisp session" ''' schema = { 'vrf': {Any(): {'sessions': {'total': int, 'established': int, 'peers': {Any(): {'state': str, 'time': str, 'total_in': int, 'total_out': int, 'users': int, }, }, }, }, }, } # ============================== # Parser for 'show lisp session' # ============================== class ShowLispSession(ShowLispSessionSchema): ''' Parser for "show lisp session"''' cli_command = 'show lisp session' exclude = ['time'] # =============================== # Schema for 'show lisp platform' # =============================== class ShowLispPlatformSchema(MetaParser): ''' Schema for "show lisp platform" ''' schema = { 'parallel_lisp_instance_limit': int, 'rloc_forwarding_support': {'local': {'ipv4': str, 'ipv6': str, 'mac': str, }, 'remote': {'ipv4': str, 'ipv6': str, 'mac': str, }, }, 'latest_supported_config_style': str, 'current_config_style': str, } # ============================== # Parser for 'show lisp platform' # ============================== class ShowLispPlatform(ShowLispPlatformSchema): ''' Parser for "show lisp platform" ''' cli_command = 'show lisp platform' # ======================================================================== # Schema for 'show lisp all extranet <extranet> instance-id <instance_id>' # ======================================================================== class ShowLispExtranetSchema(MetaParser): ''' Schema for "show lisp all extranet <extranet> instance-id <instance_id>"''' schema = { 'lisp_router_instances': {Any(): {Optional('service'): {Any(): {Optional('map_server'): {Optional('virtual_network_ids'): {'total_extranet_entries': int, Any(): {'vni': str, 'extranets': {Any(): {'extranet': str, 'home_instance_id': int, Optional('provider'): {Any(): {'eid_record': str, 'bidirectional': bool, }, }, Optional('subscriber'): {Any(): {'eid_record': str, 'bidirectional': bool, }, }, }, }, }, }, }, }, }, }, }, } # ======================================================================== # Parser for 'show lisp all extranet <extranet> instance-id <instance_id>' # ======================================================================== class ShowLispExtranet(ShowLispExtranetSchema): ''' Parser for "show lisp all extranet <extranet> instance-id <instance_id>"''' cli_command = 'show lisp all extranet {extranet} instance-id {instance_id}' # ======================================================================= # Schema for 'show lisp all instance-id <instance_id> dynamic-eid detail' # ======================================================================= class ShowLispDynamicEidDetailSchema(MetaParser): ''' Schema for "show lisp all instance-id <instance_id> dynamic-eid detail" ''' schema = { 'lisp_router_instances': {Any(): {Optional('service'): {Any(): {'etr': {'local_eids': {Any(): {'dynamic_eids': {Any(): {'dynamic_eid_name': str, 'id': str, 'rlocs': str, Optional('registering_more_specific'): bool, Optional('loopback_address'): str, Optional('priority'): int, Optional('weight'): int, Optional('record_ttl'): int, Optional('site_based_multicast_map_notify_group'): str, Optional('proxy_reply'): bool, Optional('registration_interval'): int, Optional('global_map_server'): bool, Optional('num_of_roaming_dynamic_eid'): int, Optional('mapping_servers'): {Any(): {Optional('proxy_reply'): bool, }, }, Optional('last_dynamic_eid'): {Any(): {'last_dynamic_eid_discovery_elaps_time': str, 'eids': {Any(): {'interface': str, 'uptime': str, 'last_activity': str, 'discovered_by': str, }, }, }, }, Optional('eid_address'): {Optional('address_type'): str, Optional('virtual_network_id'): str, }, }, }, }, }, }, }, }, }, }, } # ======================================================================= # Parser for 'show lisp all instance-id <instance_id> dynamic-eid detail' # ======================================================================= class ShowLispDynamicEidDetail(ShowLispDynamicEidDetailSchema): ''' Parser for "show lisp all instance-id <instance_id> dynamic-eid detail"''' cli_command = 'show lisp all instance-id {instance_id} dynamic-eid detail' # ============================================================== # Schema for 'show lisp all instance-id <instance_id> <service>' # ============================================================== class ShowLispServiceSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service>" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, Optional('lisp_router_id'): {'site_id': str, 'xtr_id': str, }, Optional('service'): {Any(): {'service': str, 'delegated_database_tree': bool, 'locator_table': str, 'mobility_first_hop_router': bool, 'nat_traversal_router': bool, 'instance_id': {Any(): {Optional('eid_table'): str, Optional('site_registration_limit'): int, Optional('map_request_source'): str, 'database': {Optional('dynamic_database_limit'): int, Optional('dynamic_database_size'): int, Optional('inactive_deconfig_away_size'): int, Optional('route_import_database_limit'): int, Optional('route_import_database_size'): int, Optional('static_database_size'): int, Optional('static_database_limit'): int, Optional('total_database_mapping_size'): int, Optional('dynamic_database_mapping_limit'): int, Optional('import_site_db_size'): int, Optional('import_site_db_limit'): int, Optional('proxy_db_size'): int, }, Optional('mapping_servers'): {Any(): {'ms_address': str, Optional('uptime'): str, }, }, 'itr': {'local_rloc_last_resort': str, Optional('use_proxy_etr_rloc'): str, }, Optional('map_cache'): {Optional('imported_route_count'): int, Optional('imported_route_limit'): int, Optional('map_cache_size'): int, Optional('persistent_map_cache'): bool, Optional('static_mappings_configured'): int, }, }, }, 'etr': {'enabled': bool, Optional('encapsulation'): str, 'proxy_etr_router': bool, 'accept_mapping_data': str, 'map_cache_ttl': str, Optional('use_petrs'): {Any(): {'use_petr': str, }, }, Optional('mapping_servers'): {Any(): {'ms_address': str, Optional('uptime'): str, }, }, }, 'itr': {'enabled': bool, 'proxy_itr_router': bool, Optional('proxy_itrs'): {Any(): {'proxy_etr_address': str, }, }, 'solicit_map_request': str, 'max_smr_per_map_cache_entry': str, 'multiple_smr_suppression_time': int, Optional('map_resolvers'): {Any(): {'map_resolver': str, }, }, }, 'locator_status_algorithms': {'rloc_probe_algorithm': bool, 'rloc_probe_on_route_change': str, 'rloc_probe_on_member_change': bool, 'lsb_reports': str, 'ipv4_rloc_min_mask_len': int, 'ipv6_rloc_min_mask_len': int, }, 'map_cache': {'map_cache_activity_check_period': int, Optional('map_cache_fib_updates'): str, 'map_cache_limit': int, }, 'map_server': {'enabled': bool, }, 'map_resolver': {'enabled': bool, }, Optional('source_locator_configuration'): {'vlans': {Any(): {'address': str, 'interface': str, }, }, }, }, }, }, }, } # ============================================================== # Parser for 'show lisp all instance-id <instance_id> <service>' # ============================================================== class ShowLispService(ShowLispServiceSchema): '''Parser for "show lisp all instance-id <instance_id> <service>"''' cli_command = ['show lisp all instance-id {instance_id} {service}','show lisp all service {service}'] # ======================================================================== # Schema for 'show lisp all instance-id <instance_id> <service> map-cache' # ======================================================================== class ShowLispServiceMapCacheSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> map-cache" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, Optional('service'): {Any(): {'service': str, 'itr': {'map_cache': {Any(): {'vni': str, 'entries': int, 'mappings': {Any(): {'id': str, 'creation_time': str, 'time_to_live': str, 'via': str, 'eid': {'address_type': str, 'vrf': str, Optional('ipv4'): {'ipv4': str, }, Optional('ipv4_prefix'): {'ipv4_prefix': str, }, Optional('ipv6'): {'ipv6': str, }, Optional('ipv6_prefix'): {'ipv6_prefix': str, }, }, Optional('negative_mapping'): {'map_reply_action': str, }, Optional('positive_mapping'): {'rlocs': {Any(): {'id': str, 'uptime': str, 'state': str, 'priority': int, 'weight': int, Optional('encap_iid'): str, 'locator_address': {'address_type': str, 'virtual_network_id': str, Optional('ipv4'): {'ipv4': str, }, Optional('ipv4_prefix'): {'ipv4_prefix': str, }, Optional('ipv6'): {'ipv6': str, }, Optional('ipv6_prefix'): {'ipv6_prefix': str, }, }, }, }, }, }, }, }, }, }, }, }, }, }, } # ======================================================================== # Parser for 'show lisp all instance-id <instance_id> <service> map-cache' # ======================================================================== class ShowLispServiceMapCache(ShowLispServiceMapCacheSchema): '''Parser for "show lisp all instance-id <instance_id> <service> map-cache"''' cli_command = 'show lisp all instance-id {instance_id} {service} map-cache' exclude = ['creation_time'] # =========================================================================== # Schema for 'show lisp all instance-id <instance_id> <service> rloc members' # =========================================================================== class ShowLispServiceRlocMembersSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> rloc members" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, Optional('service'): {Optional(Any()): {'instance_id': {Any(): {Optional('rloc'): {'total_entries': int, 'valid_entries': int, 'distribution': bool, 'members': {Any(): {'origin': str, 'valid': str, }, }, }, }, }, }, }, }, }, } # =========================================================================== # Parser for 'show lisp all instance-id <instance_id> <service> rloc members' # =========================================================================== class ShowLispServiceRlocMembers(ShowLispServiceRlocMembersSchema): '''Parser for "show lisp all instance-id <instance_id> <service> rloc members"''' cli_command = 'show lisp all instance-id {instance_id} service {service} rloc members' # ================================================================== # Schema for 'show lisp all instance-id <instance_id> <service> smr' # ================================================================== class ShowLispServiceSmrSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> smr" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, Optional('service'): {Optional(Any()): {'instance_id': {Any(): {Optional('smr'): {'vrf': str, 'entries': int, 'prefixes': {Any(): {'producer': str, }, }, }, }, }, }, }, }, }, } # ================================================================== # Parser for 'show lisp all instance-id <instance_id> <service> smr' # ================================================================== class ShowLispServiceSmr(ShowLispServiceSmrSchema): '''Parser for "show lisp all instance-id <instance_id> <service> smr"''' cli_command = 'show lisp all instance-id {instance_id} service {service} smr' # ==================================================== # Schema for 'show lisp all service <service> summary' # ==================================================== class ShowLispServiceSummarySchema(MetaParser): '''Schema for "show lisp all <service> summary" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, Optional('service'): {Optional(Any()): {Optional('virtual_network_ids'): {Any(): {Optional('vrf'): str, 'interface': str, 'db_size': int, 'db_no_route': int, 'cache_size': int, 'incomplete': str, 'cache_idle': str, 'lisp_role': {Any(): {'lisp_role_type': str, }, }, }, }, 'etr': {'summary': {'instance_count': int, 'total_eid_tables': int, 'total_db_entries': int, 'total_map_cache_entries': int, 'total_db_entries_inactive': int, 'eid_tables_inconsistent_locators': int, 'eid_tables_incomplete_map_cache_entries': int, 'eid_tables_pending_map_cache_update_to_fib': int, }, }, }, }, }, }, } # ==================================================== # Parser for 'show lisp all service <service> summary' # ==================================================== class ShowLispServiceSummary(ShowLispServiceSummarySchema): '''Parser for "show lisp all service <service> summary"''' cli_command = 'show lisp all service {service} summary' # ======================================================================= # Schema for 'show lisp all instance-id <instance_id> <service> dabatase' # ======================================================================= class ShowLispServiceDatabaseSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> dabatase" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, 'locator_sets': {Any(): {'locator_set_name': str, }, }, Optional('service'): {Optional(Any()): {'etr': {'local_eids': {Any(): {'vni': str, 'total_eid_entries': int, 'no_route_eid_entries': int, 'inactive_eid_entries': int, Optional('dynamic_eids'): {Any(): {'id': str, Optional('dynamic_eid'): str, 'eid_address': {'address_type': str, 'vrf': str, }, 'rlocs': str, 'loopback_address': str, 'priority': int, 'weight': int, 'source': str, 'state': str, }, }, Optional('eids'): {Any(): {'id': str, 'eid_address': {'address_type': str, 'vrf': str, }, 'rlocs': str, 'loopback_address': str, 'priority': int, 'weight': int, 'source': str, 'state': str, }, }, }, }, }, }, }, }, }, } # ======================================================================= # Parser for 'show lisp all instance-id <instance_id> <service> dabatase' # ======================================================================= class ShowLispServiceDatabase(ShowLispServiceDatabaseSchema): '''Parser for "show lisp all instance-id <instance_id> <service> dabatase"''' cli_command = 'show lisp all instance-id {instance_id} {service} database' # ============================================================================= # Schema for 'show lisp all instance-id <instance_id> <service> server summary' # ============================================================================= class ShowLispServiceServerSummarySchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> server summary" ''' schema = { 'lisp_router_instances': {Any(): {'lisp_router_instance_id': int, 'service': {Any(): {'instance_id': {Any(): {'map_server': {Optional('sites'): {Any(): {'site_id': str, 'configured': int, 'registered': int, 'inconsistent': int, }, }, 'summary': {'number_configured_sites': int, 'number_registered_sites':int, Optional('af_datum'): {Any(): {'address_type': str, Optional('number_configured_eids'): int, Optional('number_registered_eids'): int, }, }, 'sites_with_inconsistent_registrations': int, Optional('site_registration_limit'): int, Optional('site_registration_count'): int, }, }, }, }, }, }, }, }, } # ============================================================================= # Parser for 'show lisp all instance-id <instance_id> <service> server summary' # ============================================================================= class ShowLispServiceServerSummary(ShowLispServiceServerSummarySchema): '''Parser for "show lisp all instance-id <instance_id> <service> server summary"''' cli_command = 'show lisp all instance-id {instance_id} {service} server summary' # ===================================================================================== # Schema for 'show lisp all instance-id <instance_id> <service> server detail internal' # ===================================================================================== class ShowLispServiceServerDetailInternalSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> server detail internal" ''' schema = { 'lisp_router_instances': {Any(): {Optional('service'): {Any(): {'map_server': {'sites': {Any(): {'site_id': str, 'allowed_configured_locators': str, }, }, Optional('virtual_network_ids'): {Any(): {'vni': str, 'mappings': {Any(): {'eid_id': str, 'eid_address': {'address_type': str, 'virtual_network_id': str, Optional('ipv4'): {'ipv4': str, }, Optional('ipv6'): {'ipv6': str, }, Optional('ipv4_prefix'): {'ipv4_prefix': str, }, Optional('ipv6_prefix'): {'ipv6_prefix': str, }, }, 'site_id': str, 'first_registered': str, 'last_registered': str, 'routing_table_tag': int, 'origin': str, Optional('more_specifics_accepted'): bool, 'merge_active': bool, 'proxy_reply': bool, 'ttl': str, 'state': str, 'registration_errors': {'authentication_failures': int, 'allowed_locators_mismatch': int, }, Optional('mapping_records'): {Any(): {'xtr_id': str, 'site_id': str, 'etr': str, 'eid': {'address_type': str, 'virtual_network_id': str, Optional('ipv4'): {'ipv4': str, }, Optional('ipv6'): {'ipv6': str, }, Optional('ipv4_prefix'): {'ipv4_prefix': str, }, Optional('ipv6_prefix'): {'ipv6_prefix': str, }, }, 'ttl': str, 'time_to_live': int, 'creation_time': str, 'merge': bool, 'proxy_reply': bool, 'map_notify': bool, 'hash_function': str, 'nonce': str, 'state': str, 'security_capability': bool, 'sourced_by': str, 'locator': {Any(): {'local': bool, 'state': str, 'priority': int, 'weight': int, 'scope': str, }, }, }, }, }, }, }, }, }, }, }, }, }, } # ===================================================================================== # Parser for 'show lisp all instance-id <instance_id> <service> server detail internal' # ===================================================================================== class ShowLispServiceServerDetailInternal(ShowLispServiceServerDetailInternalSchema): '''Parser for "show lisp all instance-id <instance_id> <service> server detail internal"''' cli_command = 'show lisp all instance-id {instance_id} {service} server detail internal' # ========================================================================= # Schema for 'show lisp all instance-id <instance_id> <service> statistics' # ========================================================================= class ShowLispServiceStatisticsSchema(MetaParser): '''Schema for "show lisp all instance-id <instance_id> <service> statistics" ''' schema = { 'lisp_router_instances': {Any(): {'service': {Any(): {'statistics': {Any(): {'last_cleared': str, Any(): Any(), Optional('map_resolvers'): {Any(): {'last_reply': str, 'metric': str, 'reqs_sent': int, 'positive': int, 'negative': int, 'no_reply': int, }, }, }, }, }, }, }, }, } # ========================================================================= # Parser for 'show lisp all instance-id <instance_id> <service> statistics' # ========================================================================= class ShowLispServiceStatistics(ShowLispServiceStatisticsSchema): '''Parser for "show lisp all instance-id <instance_id> <service> statistics"''' cli_command = 'show lisp all instance-id {instance_id} {service} statistics' exclude = ['map_register_records_out']
[ 7061, 6, 905, 62, 75, 8802, 13, 9078, 198, 198, 40, 2640, 55, 36, 13544, 364, 329, 262, 1708, 905, 9729, 25, 198, 220, 220, 220, 1635, 905, 300, 8802, 6246, 198, 220, 220, 220, 1635, 905, 300, 8802, 3859, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 1070, 2596, 316, 1279, 2302, 2596, 316, 29, 4554, 12, 312, 1279, 39098, 62, 312, 29, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 8925, 12, 68, 312, 3703, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 20966, 85, 19, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 20966, 85, 21, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 28475, 3262, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 3975, 12, 23870, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 3975, 12, 23870, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 3975, 12, 23870, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 4382, 374, 17946, 1866, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 4382, 374, 17946, 1866, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 4382, 374, 17946, 1866, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 895, 81, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 895, 81, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 895, 81, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 20966, 85, 19, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 20966, 85, 21, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 2139, 28475, 3262, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 6831, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 6831, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 6831, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 4382, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 4382, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 4382, 10638, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 4382, 3703, 5387, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 4382, 3703, 5387, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 4382, 3703, 5387, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 19, 7869, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 20966, 85, 21, 7869, 198, 220, 220, 220, 1635, 905, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 28475, 3262, 7869, 198, 7061, 6, 198, 198, 2, 11361, 198, 11748, 302, 198, 198, 2, 3395, 499, 28198, 198, 6738, 2429, 494, 13, 4164, 499, 28198, 1330, 30277, 46677, 198, 6738, 2429, 494, 13, 4164, 499, 28198, 13, 22602, 13, 15952, 2611, 18392, 1330, 10011, 2611, 11, 4377, 11, 1471, 11, 32233, 198, 6738, 2429, 494, 13, 8019, 82, 13, 48610, 13, 26791, 13, 11321, 1330, 8070, 628, 198, 2, 36658, 25609, 28, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 6246, 6, 198, 2, 36658, 25609, 28, 198, 4871, 5438, 43, 8802, 36044, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 10011, 2611, 329, 366, 12860, 300, 8802, 6246, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 37020, 69, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 82, 6202, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 23350, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 27718, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 431, 364, 10354, 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, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 5219, 10354, 965, 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, 705, 2435, 10354, 965, 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, 705, 23350, 62, 259, 10354, 493, 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, 705, 23350, 62, 448, 10354, 493, 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, 705, 18417, 10354, 493, 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, 8964, 198, 220, 220, 220, 220, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 36658, 25609, 28, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 6246, 6, 198, 2, 36658, 25609, 28, 198, 4871, 5438, 43, 8802, 36044, 7, 15307, 43, 8802, 36044, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 23042, 263, 329, 366, 12860, 300, 8802, 6246, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 6246, 6, 198, 220, 220, 220, 19607, 796, 37250, 2435, 20520, 628, 198, 2, 36658, 25609, 855, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 3859, 6, 198, 2, 36658, 25609, 855, 198, 4871, 5438, 43, 8802, 37148, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 10011, 2611, 329, 366, 12860, 300, 8802, 3859, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1845, 29363, 62, 75, 8802, 62, 39098, 62, 32374, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 17946, 62, 11813, 278, 62, 11284, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12001, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 541, 85, 21, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20285, 10354, 965, 11, 198, 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, 705, 47960, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 541, 85, 21, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20285, 10354, 965, 11, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 705, 42861, 62, 15999, 62, 11250, 62, 7635, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 14421, 62, 11250, 62, 7635, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 36658, 25609, 28, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 3859, 6, 198, 2, 36658, 25609, 28, 198, 4871, 5438, 43, 8802, 37148, 7, 15307, 43, 8802, 37148, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 23042, 263, 329, 366, 12860, 300, 8802, 3859, 1, 705, 7061, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 3859, 6, 628, 198, 2, 38093, 1421, 18604, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 1070, 2596, 316, 1279, 2302, 2596, 316, 29, 4554, 12, 312, 1279, 39098, 62, 312, 29, 6, 198, 2, 38093, 1421, 18604, 198, 4871, 5438, 43, 8802, 11627, 2596, 316, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 10011, 2611, 329, 366, 12860, 300, 8802, 477, 1070, 2596, 316, 1279, 2302, 2596, 316, 29, 4554, 12, 312, 1279, 39098, 62, 312, 24618, 7061, 6, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 8899, 62, 15388, 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, 220, 220, 220, 220, 1391, 30719, 10786, 32844, 62, 27349, 62, 2340, 6, 2599, 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, 1391, 6, 23350, 62, 2302, 2596, 316, 62, 298, 1678, 10354, 493, 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, 4377, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 85, 8461, 10354, 965, 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, 705, 2302, 2596, 1039, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 2302, 2596, 316, 10354, 965, 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, 705, 11195, 62, 39098, 62, 312, 10354, 493, 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, 32233, 10786, 15234, 1304, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 68, 312, 62, 22105, 10354, 965, 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, 705, 14065, 4154, 282, 10354, 20512, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 7266, 1416, 24735, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 68, 312, 62, 22105, 10354, 965, 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, 705, 14065, 4154, 282, 10354, 20512, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 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, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 1421, 18604, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 1070, 2596, 316, 1279, 2302, 2596, 316, 29, 4554, 12, 312, 1279, 39098, 62, 312, 29, 6, 198, 2, 38093, 1421, 18604, 198, 4871, 5438, 43, 8802, 11627, 2596, 316, 7, 15307, 43, 8802, 11627, 2596, 316, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 23042, 263, 329, 366, 12860, 300, 8802, 477, 1070, 2596, 316, 1279, 2302, 2596, 316, 29, 4554, 12, 312, 1279, 39098, 62, 312, 24618, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 1070, 2596, 316, 1391, 2302, 2596, 316, 92, 4554, 12, 312, 1391, 39098, 62, 312, 92, 6, 628, 198, 2, 38093, 50155, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 8925, 12, 68, 312, 3703, 6, 198, 2, 38093, 50155, 198, 4871, 5438, 43, 8802, 44090, 36, 312, 11242, 603, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 10011, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 8925, 12, 68, 312, 3703, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21879, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12001, 62, 68, 2340, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 67, 28995, 62, 68, 2340, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 67, 28995, 62, 68, 312, 62, 3672, 10354, 965, 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, 705, 312, 10354, 965, 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, 705, 81, 17946, 82, 10354, 965, 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, 32233, 10786, 30238, 278, 62, 3549, 62, 11423, 6, 2599, 20512, 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, 32233, 10786, 26268, 1891, 62, 21975, 6, 2599, 965, 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, 32233, 10786, 49336, 6, 2599, 493, 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, 32233, 10786, 6551, 6, 2599, 493, 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, 32233, 10786, 22105, 62, 926, 75, 6, 2599, 493, 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, 32233, 10786, 15654, 62, 3106, 62, 16680, 291, 459, 62, 8899, 62, 1662, 1958, 62, 8094, 6, 2599, 965, 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, 32233, 10786, 36436, 62, 47768, 6, 2599, 20512, 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, 32233, 10786, 2301, 33397, 62, 3849, 2100, 6, 2599, 493, 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, 32233, 10786, 20541, 62, 8899, 62, 15388, 6, 2599, 20512, 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, 32233, 10786, 22510, 62, 1659, 62, 305, 3723, 62, 67, 28995, 62, 68, 312, 6, 2599, 493, 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, 32233, 10786, 76, 5912, 62, 2655, 690, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 36436, 62, 47768, 6, 2599, 20512, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 12957, 62, 67, 28995, 62, 68, 312, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12957, 62, 67, 28995, 62, 68, 312, 62, 67, 40821, 62, 417, 1686, 62, 2435, 10354, 965, 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, 705, 68, 2340, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 39994, 10354, 965, 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, 705, 37623, 524, 10354, 965, 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, 705, 12957, 62, 21797, 10354, 965, 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, 705, 15410, 2557, 62, 1525, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 68, 312, 62, 21975, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 21975, 62, 4906, 6, 2599, 965, 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, 32233, 10786, 32844, 62, 27349, 62, 312, 6, 2599, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 50155, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 8925, 12, 68, 312, 3703, 6, 198, 2, 38093, 50155, 198, 4871, 5438, 43, 8802, 44090, 36, 312, 11242, 603, 7, 15307, 43, 8802, 44090, 36, 312, 11242, 603, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 23042, 263, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 8925, 12, 68, 312, 3703, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 8925, 12, 68, 312, 3703, 6, 628, 198, 2, 46111, 4770, 25609, 28, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 6, 198, 2, 46111, 4770, 25609, 28, 198, 4871, 5438, 43, 8802, 16177, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 24618, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 75, 8802, 62, 472, 353, 62, 312, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15654, 62, 312, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 742, 81, 62, 312, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15271, 10354, 965, 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, 2934, 1455, 515, 62, 48806, 62, 21048, 10354, 20512, 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, 17946, 1352, 62, 11487, 10354, 965, 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, 39949, 879, 62, 11085, 62, 8548, 62, 472, 353, 10354, 20512, 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, 32353, 62, 9535, 690, 282, 62, 472, 353, 10354, 20512, 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, 39098, 62, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 68, 312, 62, 11487, 6, 2599, 965, 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, 32233, 10786, 15654, 62, 2301, 33397, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 8899, 62, 25927, 62, 10459, 6, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48806, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 67, 28995, 62, 48806, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 67, 28995, 62, 48806, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 259, 5275, 62, 12501, 261, 5647, 62, 8272, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 38629, 62, 11748, 62, 48806, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 38629, 62, 11748, 62, 48806, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 12708, 62, 48806, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 12708, 62, 48806, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 23350, 62, 48806, 62, 76, 5912, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 67, 28995, 62, 48806, 62, 76, 5912, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 11748, 62, 15654, 62, 9945, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 11748, 62, 15654, 62, 9945, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 36436, 62, 9945, 62, 7857, 6, 2599, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 76, 5912, 62, 2655, 690, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 907, 62, 21975, 10354, 965, 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, 32233, 10786, 37623, 524, 6, 2599, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 270, 81, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12001, 62, 81, 17946, 62, 12957, 62, 411, 419, 10354, 965, 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, 32233, 10786, 1904, 62, 36436, 62, 21879, 62, 81, 17946, 6, 2599, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 8899, 62, 23870, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 320, 9213, 62, 38629, 62, 9127, 6, 2599, 493, 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, 32233, 10786, 320, 9213, 62, 38629, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 8899, 62, 23870, 62, 7857, 6, 2599, 493, 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, 32233, 10786, 19276, 7609, 62, 8899, 62, 23870, 6, 2599, 20512, 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, 32233, 10786, 12708, 62, 76, 39242, 62, 11250, 1522, 6, 2599, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 220, 220, 220, 220, 705, 21879, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 25616, 10354, 20512, 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, 32233, 10786, 12685, 1686, 1741, 6, 2599, 965, 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, 705, 36436, 62, 21879, 62, 472, 353, 10354, 20512, 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, 705, 13635, 62, 76, 5912, 62, 7890, 10354, 965, 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, 705, 8899, 62, 23870, 62, 926, 75, 10354, 965, 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, 32233, 10786, 1904, 62, 6449, 3808, 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, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 1904, 62, 6449, 81, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 76, 5912, 62, 2655, 690, 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, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 907, 62, 21975, 10354, 965, 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, 32233, 10786, 37623, 524, 6, 2599, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 220, 220, 220, 220, 705, 270, 81, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 25616, 10354, 20512, 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, 705, 36436, 62, 270, 81, 62, 472, 353, 10354, 20512, 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, 32233, 10786, 36436, 62, 270, 3808, 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, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 36436, 62, 21879, 62, 21975, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 705, 34453, 3628, 62, 8899, 62, 25927, 10354, 965, 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, 705, 9806, 62, 5796, 81, 62, 525, 62, 8899, 62, 23870, 62, 13000, 10354, 965, 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, 705, 48101, 62, 5796, 81, 62, 18608, 2234, 62, 2435, 10354, 493, 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, 32233, 10786, 8899, 62, 411, 349, 690, 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, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 411, 14375, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 220, 220, 220, 220, 705, 17946, 1352, 62, 13376, 62, 282, 7727, 907, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 81, 17946, 62, 1676, 1350, 62, 282, 42289, 10354, 20512, 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, 705, 81, 17946, 62, 1676, 1350, 62, 261, 62, 38629, 62, 3803, 10354, 965, 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, 705, 81, 17946, 62, 1676, 1350, 62, 261, 62, 19522, 62, 3803, 10354, 20512, 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, 705, 7278, 65, 62, 48922, 10354, 965, 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, 705, 541, 85, 19, 62, 81, 17946, 62, 1084, 62, 27932, 62, 11925, 10354, 493, 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, 705, 541, 85, 21, 62, 81, 17946, 62, 1084, 62, 27932, 62, 11925, 10354, 493, 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, 8964, 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, 8899, 62, 23870, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 23870, 62, 21797, 62, 9122, 62, 41007, 10354, 493, 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, 32233, 10786, 8899, 62, 23870, 62, 69, 571, 62, 929, 19581, 6, 2599, 965, 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, 705, 8899, 62, 23870, 62, 32374, 10354, 493, 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, 8964, 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, 8899, 62, 15388, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 25616, 10354, 20512, 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, 8964, 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, 8899, 62, 411, 14375, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 25616, 10354, 20512, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 10459, 62, 17946, 1352, 62, 11250, 3924, 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, 220, 220, 220, 220, 1391, 6, 19279, 504, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 10354, 965, 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, 705, 39994, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 46111, 4770, 25609, 28, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 6, 198, 2, 46111, 4770, 25609, 28, 198, 4871, 5438, 43, 8802, 16177, 7, 15307, 43, 8802, 16177, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 24618, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 37250, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 41707, 12860, 300, 8802, 477, 2139, 1391, 15271, 92, 20520, 628, 198, 2, 38093, 1421, 18604, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 3975, 12, 23870, 6, 198, 2, 38093, 1421, 18604, 198, 4871, 5438, 43, 8802, 16177, 13912, 30562, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 3975, 12, 23870, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15271, 10354, 965, 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, 270, 81, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 23870, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 85, 8461, 10354, 965, 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, 705, 298, 1678, 10354, 493, 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, 705, 76, 39242, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 312, 10354, 965, 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, 705, 38793, 62, 2435, 10354, 965, 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, 705, 2435, 62, 1462, 62, 12583, 10354, 965, 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, 705, 8869, 10354, 965, 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, 705, 68, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 37020, 69, 10354, 965, 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, 32233, 10786, 541, 85, 19, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 19, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 31591, 62, 76, 5912, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 47768, 62, 2673, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 24561, 62, 76, 5912, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 81, 17946, 82, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 312, 10354, 965, 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, 705, 37623, 524, 10354, 965, 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, 705, 5219, 10354, 965, 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, 705, 49336, 10354, 493, 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, 705, 6551, 10354, 493, 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, 32233, 10786, 268, 11128, 62, 72, 312, 6, 2599, 965, 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, 705, 17946, 1352, 62, 21975, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 32844, 62, 27349, 62, 312, 10354, 965, 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, 32233, 10786, 541, 85, 19, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 19, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 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, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 1421, 18604, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 3975, 12, 23870, 6, 198, 2, 38093, 1421, 18604, 198, 4871, 5438, 43, 8802, 16177, 13912, 30562, 7, 15307, 43, 8802, 16177, 13912, 30562, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 3975, 12, 23870, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 3975, 12, 23870, 6, 198, 220, 220, 220, 19607, 796, 37250, 38793, 62, 2435, 20520, 628, 198, 2, 38093, 2559, 855, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 374, 17946, 1866, 6, 198, 2, 38093, 2559, 855, 198, 4871, 5438, 43, 8802, 16177, 49, 17946, 25341, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 374, 17946, 1866, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 7, 7149, 3419, 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, 1391, 6, 39098, 62, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 81, 17946, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 23350, 62, 298, 1678, 10354, 493, 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, 705, 12102, 62, 298, 1678, 10354, 493, 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, 705, 17080, 3890, 10354, 20512, 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, 705, 30814, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 47103, 10354, 965, 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, 705, 12102, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 2559, 855, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 374, 17946, 1866, 6, 198, 2, 38093, 2559, 855, 198, 4871, 5438, 43, 8802, 16177, 49, 17946, 25341, 7, 15307, 43, 8802, 16177, 49, 17946, 25341, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 374, 17946, 1866, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 2139, 1391, 15271, 92, 374, 17946, 1866, 6, 628, 198, 2, 38093, 28, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 895, 81, 6, 198, 2, 38093, 28, 198, 4871, 5438, 43, 8802, 16177, 7556, 81, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 895, 81, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 7, 7149, 3419, 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, 1391, 6, 39098, 62, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 5796, 81, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 37020, 69, 10354, 965, 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, 705, 298, 1678, 10354, 493, 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, 705, 40290, 274, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 18230, 2189, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 28, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 895, 81, 6, 198, 2, 38093, 28, 198, 4871, 5438, 43, 8802, 16177, 7556, 81, 7, 15307, 43, 8802, 16177, 7556, 81, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 895, 81, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 2139, 1391, 15271, 92, 895, 81, 6, 628, 198, 2, 46111, 4770, 18604, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 2139, 1279, 15271, 29, 10638, 6, 198, 2, 46111, 4770, 18604, 198, 4871, 5438, 43, 8802, 16177, 22093, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 1279, 15271, 29, 10638, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 7, 7149, 3419, 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, 1391, 30719, 10786, 32844, 62, 27349, 62, 2340, 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, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 37020, 69, 6, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39994, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9945, 62, 7857, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9945, 62, 3919, 62, 38629, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23870, 62, 7857, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 259, 20751, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23870, 62, 312, 293, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 18090, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 18090, 62, 4906, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 220, 220, 220, 220, 705, 21879, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 49736, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 39098, 62, 9127, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23350, 62, 68, 312, 62, 83, 2977, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23350, 62, 9945, 62, 298, 1678, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23350, 62, 8899, 62, 23870, 62, 298, 1678, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23350, 62, 9945, 62, 298, 1678, 62, 259, 5275, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 68, 312, 62, 83, 2977, 62, 1939, 684, 7609, 62, 17946, 2024, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 68, 312, 62, 83, 2977, 62, 259, 20751, 62, 8899, 62, 23870, 62, 298, 1678, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 68, 312, 62, 83, 2977, 62, 79, 1571, 62, 8899, 62, 23870, 62, 19119, 62, 1462, 62, 69, 571, 10354, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 46111, 4770, 18604, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 2139, 1279, 15271, 29, 10638, 6, 198, 2, 46111, 4770, 18604, 198, 4871, 5438, 43, 8802, 16177, 22093, 7, 15307, 43, 8802, 16177, 22093, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 2139, 1279, 15271, 29, 10638, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 2139, 1391, 15271, 92, 10638, 6, 628, 198, 2, 38093, 50155, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 45553, 265, 589, 6, 198, 2, 38093, 50155, 198, 4871, 5438, 43, 8802, 16177, 38105, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 45553, 265, 589, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17946, 1352, 62, 28709, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 17946, 1352, 62, 2617, 62, 3672, 10354, 965, 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, 8964, 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, 32233, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 7, 7149, 3419, 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, 1391, 6, 21879, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12001, 62, 68, 2340, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 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, 1391, 6, 85, 8461, 10354, 965, 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, 705, 23350, 62, 68, 312, 62, 298, 1678, 10354, 493, 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, 705, 3919, 62, 38629, 62, 68, 312, 62, 298, 1678, 10354, 493, 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, 705, 259, 5275, 62, 68, 312, 62, 298, 1678, 10354, 493, 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, 32233, 10786, 67, 28995, 62, 68, 2340, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 312, 10354, 965, 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, 32233, 10786, 67, 28995, 62, 68, 312, 6, 2599, 965, 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, 705, 68, 312, 62, 21975, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 37020, 69, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 81, 17946, 82, 10354, 965, 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, 705, 26268, 1891, 62, 21975, 10354, 965, 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, 705, 49336, 10354, 493, 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, 705, 6551, 10354, 493, 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, 705, 10459, 10354, 965, 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, 705, 5219, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 68, 2340, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 312, 10354, 965, 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, 705, 68, 312, 62, 21975, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 37020, 69, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 81, 17946, 82, 10354, 965, 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, 705, 26268, 1891, 62, 21975, 10354, 965, 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, 705, 49336, 10354, 493, 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, 705, 6551, 10354, 493, 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, 705, 10459, 10354, 965, 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, 705, 5219, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 50155, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 45553, 265, 589, 6, 198, 2, 38093, 50155, 198, 4871, 5438, 43, 8802, 16177, 38105, 7, 15307, 43, 8802, 16177, 38105, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 45553, 265, 589, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 6831, 6, 628, 198, 2, 38093, 25609, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 10638, 6, 198, 2, 38093, 25609, 198, 4871, 5438, 43, 8802, 16177, 10697, 22093, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 10638, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 75, 8802, 62, 472, 353, 62, 39098, 62, 312, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15271, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 39098, 62, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 15388, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 49315, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15654, 62, 312, 10354, 965, 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, 705, 11250, 1522, 10354, 493, 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, 705, 33736, 10354, 493, 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, 705, 1939, 684, 7609, 10354, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 49736, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 17618, 62, 11250, 1522, 62, 49315, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17618, 62, 33736, 62, 49315, 10354, 600, 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, 32233, 10786, 1878, 62, 19608, 388, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 32233, 10786, 17618, 62, 11250, 1522, 62, 68, 2340, 6, 2599, 493, 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, 32233, 10786, 17618, 62, 33736, 62, 68, 2340, 6, 2599, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 49315, 62, 4480, 62, 1939, 684, 7609, 62, 2301, 396, 9143, 10354, 493, 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, 32233, 10786, 15654, 62, 2301, 33397, 62, 32374, 6, 2599, 493, 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, 32233, 10786, 15654, 62, 2301, 33397, 62, 9127, 6, 2599, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 25609, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 10638, 6, 198, 2, 38093, 25609, 198, 4871, 5438, 43, 8802, 16177, 10697, 22093, 7, 15307, 43, 8802, 16177, 10697, 22093, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 10638, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 4382, 10638, 6, 628, 198, 2, 38093, 4770, 1421, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 3703, 5387, 6, 198, 2, 38093, 4770, 1421, 198, 4871, 5438, 43, 8802, 16177, 10697, 11242, 603, 37693, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 3703, 5387, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 30719, 10786, 15271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8899, 62, 15388, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 49315, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15654, 62, 312, 10354, 965, 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, 705, 40845, 62, 11250, 1522, 62, 17946, 2024, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 32844, 62, 27349, 62, 2340, 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, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 85, 8461, 10354, 965, 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, 705, 76, 39242, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 68, 312, 62, 312, 10354, 965, 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, 705, 68, 312, 62, 21975, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 32844, 62, 27349, 62, 312, 10354, 965, 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, 32233, 10786, 541, 85, 19, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 19, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 15654, 62, 312, 10354, 965, 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, 705, 11085, 62, 33736, 10354, 965, 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, 705, 12957, 62, 33736, 10354, 965, 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, 705, 81, 13660, 62, 11487, 62, 12985, 10354, 493, 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, 705, 47103, 10354, 965, 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, 32233, 10786, 3549, 62, 11423, 82, 62, 13635, 276, 6, 2599, 20512, 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, 705, 647, 469, 62, 5275, 10354, 20512, 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, 705, 36436, 62, 47768, 10354, 20512, 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, 705, 926, 75, 10354, 965, 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, 705, 5219, 10354, 965, 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, 705, 2301, 33397, 62, 48277, 10354, 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, 1391, 6, 41299, 3299, 62, 32165, 942, 10354, 493, 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, 705, 40845, 62, 17946, 2024, 62, 76, 1042, 963, 10354, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 76, 5912, 62, 8344, 3669, 6, 2599, 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, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 742, 81, 62, 312, 10354, 965, 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, 705, 15654, 62, 312, 10354, 965, 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, 705, 21879, 10354, 965, 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, 705, 68, 312, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 21975, 62, 4906, 10354, 965, 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, 705, 32844, 62, 27349, 62, 312, 10354, 965, 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, 32233, 10786, 541, 85, 19, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 19, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 19, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 10786, 541, 85, 21, 62, 40290, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 541, 85, 21, 62, 40290, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 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, 926, 75, 10354, 965, 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, 705, 2435, 62, 1462, 62, 12583, 10354, 493, 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, 705, 38793, 62, 2435, 10354, 965, 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, 705, 647, 469, 10354, 20512, 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, 705, 36436, 62, 47768, 10354, 20512, 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, 705, 8899, 62, 1662, 1958, 10354, 20512, 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, 705, 17831, 62, 8818, 10354, 965, 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, 705, 13159, 344, 10354, 965, 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, 705, 5219, 10354, 965, 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, 705, 12961, 62, 11128, 1799, 10354, 20512, 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, 705, 82, 30555, 62, 1525, 10354, 965, 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, 705, 17946, 1352, 10354, 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, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12001, 10354, 20512, 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, 705, 5219, 10354, 965, 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, 705, 49336, 10354, 493, 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, 705, 6551, 10354, 493, 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, 705, 29982, 10354, 965, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 220, 220, 220, 220, 220, 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, 220, 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, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 4770, 1421, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 3703, 5387, 6, 198, 2, 38093, 4770, 1421, 198, 4871, 5438, 43, 8802, 16177, 10697, 11242, 603, 37693, 7, 15307, 43, 8802, 16177, 10697, 11242, 603, 37693, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 4382, 3703, 5387, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 4382, 3703, 5387, 6, 628, 198, 2, 38093, 2559, 198, 2, 10011, 2611, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 7869, 6, 198, 2, 38093, 2559, 198, 4871, 5438, 43, 8802, 16177, 48346, 27054, 2611, 7, 48526, 46677, 2599, 628, 220, 220, 220, 705, 7061, 27054, 2611, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 7869, 1, 705, 7061, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 75, 8802, 62, 472, 353, 62, 8625, 1817, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 15271, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 14269, 3969, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12957, 62, 2375, 1144, 10354, 965, 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, 4377, 33529, 4377, 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, 32233, 10786, 8899, 62, 411, 349, 690, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 7149, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 12957, 62, 47768, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4164, 1173, 10354, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 42180, 82, 62, 34086, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24561, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31591, 10354, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 47768, 10354, 493, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 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, 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, 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, 8964, 198, 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, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 198, 2, 38093, 2559, 198, 2, 23042, 263, 329, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 7869, 6, 198, 2, 38093, 2559, 198, 4871, 5438, 43, 8802, 16177, 48346, 7, 15307, 43, 8802, 16177, 48346, 27054, 2611, 2599, 628, 220, 220, 220, 705, 7061, 46677, 329, 366, 12860, 300, 8802, 477, 4554, 12, 312, 1279, 39098, 62, 312, 29, 1279, 15271, 29, 7869, 1, 7061, 6, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 300, 8802, 477, 4554, 12, 312, 1391, 39098, 62, 312, 92, 1391, 15271, 92, 7869, 6, 198, 220, 220, 220, 19607, 796, 37250, 8899, 62, 30238, 62, 8344, 3669, 62, 448, 20520, 198 ]
1.533033
28,214
#!/usr/bin/env python # -*- coding: utf-8 -*- import simplejson as json from alipay.aop.api.constant.ParamConstants import * from alipay.aop.api.domain.EventInfo import EventInfo
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 2829, 17752, 355, 33918, 198, 198, 6738, 435, 541, 323, 13, 64, 404, 13, 15042, 13, 9979, 415, 13, 22973, 34184, 1187, 1330, 1635, 198, 6738, 435, 541, 323, 13, 64, 404, 13, 15042, 13, 27830, 13, 9237, 12360, 1330, 8558, 12360, 628, 628 ]
2.691176
68
import copy class Course: """ All information needed to be collected about a course """ def __init__( self, course_dict=None, course=None, ): """ All None attributes must be provided Can be constructed as empty, from a dictionary """ ### Mandatory attributes ### ### Strings # The formal name of the course which acts as an ID self.course_id = None # The Title of the course; more human readable self.title = None self.department = None ### Optional Attributes ### # nullable in our db models self.classes = list() self.units = -1 self.prerequisites_str = "" self.restrictions = "" self.school = "" # a more readable department name # Ex: COMSPSCI -> Computer Science self.department_title = "" # Who provided this data (3rd party API? coded in-house? team member?) self.provider = "" if course_dict != None: self._init_from_dict(course_dict) if course != None: self._init_from_dict(course.__dict__) # must deep copy list self.classes = copy.deepcopy(course.classes)
[ 11748, 4866, 628, 198, 4871, 20537, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1439, 1321, 2622, 284, 307, 7723, 546, 257, 1781, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 11600, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 28, 14202, 11, 198, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1439, 6045, 12608, 1276, 307, 2810, 198, 220, 220, 220, 220, 220, 220, 220, 1680, 307, 12006, 355, 6565, 11, 422, 257, 22155, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 44386, 47018, 12608, 44386, 628, 220, 220, 220, 220, 220, 220, 220, 44386, 4285, 654, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 8766, 1438, 286, 262, 1781, 543, 6529, 355, 281, 4522, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17319, 62, 312, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 11851, 286, 262, 1781, 26, 517, 1692, 31744, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7839, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 10378, 1823, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 44386, 32233, 49213, 44386, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9242, 540, 287, 674, 20613, 4981, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37724, 796, 1351, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 41667, 796, 532, 16, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3866, 34075, 62, 2536, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2118, 2012, 507, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14347, 796, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 257, 517, 31744, 5011, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1475, 25, 9440, 50, 3705, 25690, 4613, 13851, 5800, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 10378, 1823, 62, 7839, 796, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5338, 2810, 428, 1366, 357, 18, 4372, 2151, 7824, 30, 30817, 287, 12, 4803, 30, 1074, 2888, 10091, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15234, 1304, 796, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1781, 62, 11600, 14512, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 15003, 62, 6738, 62, 11600, 7, 17319, 62, 11600, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1781, 14512, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 15003, 62, 6738, 62, 11600, 7, 17319, 13, 834, 11600, 834, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1276, 2769, 4866, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37724, 796, 4866, 13, 22089, 30073, 7, 17319, 13, 37724, 8, 198 ]
2.354898
541
#!/usr/bin/env python # coding: utf-8 # Copyright (c) Dou Du. # Distributed under the terms of the Modified BSD License. import pytest from ..periodic_table import PTableWidget
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 2, 15069, 357, 66, 8, 5728, 10343, 13, 198, 2, 4307, 6169, 739, 262, 2846, 286, 262, 40499, 347, 10305, 13789, 13, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 11485, 41007, 291, 62, 11487, 1330, 350, 10962, 38300, 628 ]
3.12069
58
"""Groundtruth saved in XML, saved as compatible format in txt. Author: Yuhuang Hu Email : [email protected] """ import argparse import os import glob import json import xmltodict from v2e_exps.utils import expandpath parser = argparse.ArgumentParser() parser.add_argument("--data_root", type=expandpath) parser.add_argument("--output_root", type=expandpath) args = parser.parse_args() file_list = sorted( glob.glob( os.path.join(args.data_root, "*.xml"))) if not os.path.isdir(args.output_root): os.makedirs(args.output_root) for file_path in file_list: file_base = os.path.basename(file_path) output_path = os.path.join( args.output_root, file_base[:-4]+".txt") with open(file_path) as f: data = xmltodict.parse(f.read()) objects = data["annotation"]["object"] # print(output_path, len(objects)) # print(json.dumps(data, # indent=4, sort_keys=True)) if type(objects) is list: for obj in objects: bndbox = obj["bndbox"] xmin = bndbox["xmin"] ymin = bndbox["ymin"] xmax = bndbox["xmax"] ymax = bndbox["ymax"] with open(output_path, "a+") as f: f.write("car {} {} {} {}\n".format(xmin, ymin, xmax, ymax)) else: bndbox = objects["bndbox"] xmin = bndbox["xmin"] ymin = bndbox["ymin"] xmax = bndbox["xmax"] ymax = bndbox["ymax"] with open(output_path, "a+") as f: f.write("car {} {} {} {}\n".format(xmin, ymin, xmax, ymax)) print("Write to {}".format(output_path))
[ 37811, 35539, 35310, 7448, 287, 23735, 11, 7448, 355, 11670, 5794, 287, 256, 742, 13, 198, 198, 13838, 25, 575, 7456, 84, 648, 11256, 198, 15333, 1058, 331, 7456, 84, 648, 13, 13415, 31, 5362, 13, 794, 13, 354, 198, 37811, 198, 198, 11748, 1822, 29572, 198, 11748, 28686, 198, 11748, 15095, 198, 11748, 33918, 198, 198, 11748, 2124, 76, 2528, 375, 713, 198, 198, 6738, 410, 17, 68, 62, 1069, 862, 13, 26791, 1330, 4292, 6978, 198, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 48610, 13, 2860, 62, 49140, 7203, 438, 7890, 62, 15763, 1600, 2099, 28, 11201, 392, 6978, 8, 198, 48610, 13, 2860, 62, 49140, 7203, 438, 22915, 62, 15763, 1600, 2099, 28, 11201, 392, 6978, 8, 198, 198, 22046, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 198, 7753, 62, 4868, 796, 23243, 7, 198, 220, 220, 220, 15095, 13, 4743, 672, 7, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 6978, 13, 22179, 7, 22046, 13, 7890, 62, 15763, 11, 366, 24620, 19875, 1, 22305, 198, 198, 361, 407, 28686, 13, 6978, 13, 9409, 343, 7, 22046, 13, 22915, 62, 15763, 2599, 198, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 22046, 13, 22915, 62, 15763, 8, 198, 198, 1640, 2393, 62, 6978, 287, 2393, 62, 4868, 25, 198, 220, 220, 220, 2393, 62, 8692, 796, 28686, 13, 6978, 13, 12093, 12453, 7, 7753, 62, 6978, 8, 198, 220, 220, 220, 5072, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 22915, 62, 15763, 11, 2393, 62, 8692, 58, 21912, 19, 48688, 1911, 14116, 4943, 628, 220, 220, 220, 351, 1280, 7, 7753, 62, 6978, 8, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2124, 76, 2528, 375, 713, 13, 29572, 7, 69, 13, 961, 28955, 628, 220, 220, 220, 5563, 796, 1366, 14692, 1236, 14221, 1, 7131, 1, 15252, 8973, 628, 220, 220, 220, 1303, 220, 3601, 7, 22915, 62, 6978, 11, 18896, 7, 48205, 4008, 198, 220, 220, 220, 1303, 220, 3601, 7, 17752, 13, 67, 8142, 7, 7890, 11, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33793, 28, 19, 11, 3297, 62, 13083, 28, 17821, 4008, 628, 220, 220, 220, 611, 2099, 7, 48205, 8, 318, 1351, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 26181, 287, 5563, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 358, 3524, 796, 26181, 14692, 65, 358, 3524, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 1084, 796, 275, 358, 3524, 14692, 87, 1084, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 1084, 796, 275, 358, 3524, 14692, 88, 1084, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 9806, 796, 275, 358, 3524, 14692, 87, 9806, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 9806, 796, 275, 358, 3524, 14692, 4948, 897, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 22915, 62, 6978, 11, 366, 64, 10, 4943, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7203, 7718, 23884, 23884, 23884, 23884, 59, 77, 1911, 18982, 7, 87, 1084, 11, 331, 1084, 11, 2124, 9806, 11, 331, 9806, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 358, 3524, 796, 5563, 14692, 65, 358, 3524, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 2124, 1084, 796, 275, 358, 3524, 14692, 87, 1084, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 331, 1084, 796, 275, 358, 3524, 14692, 88, 1084, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 2124, 9806, 796, 275, 358, 3524, 14692, 87, 9806, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 331, 9806, 796, 275, 358, 3524, 14692, 4948, 897, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 22915, 62, 6978, 11, 366, 64, 10, 4943, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7203, 7718, 23884, 23884, 23884, 23884, 59, 77, 1911, 18982, 7, 87, 1084, 11, 331, 1084, 11, 2124, 9806, 11, 331, 9806, 4008, 628, 220, 220, 220, 3601, 7203, 16594, 284, 23884, 1911, 18982, 7, 22915, 62, 6978, 4008, 198 ]
2.127604
768
# This code is a part of XMM: Generate and Analyse (XGA), a module designed for the XMM Cluster Survey (XCS). # Last modified by David J Turner ([email protected]) 08/03/2021, 17:29. Copyright (c) David J Turner import inspect from types import FunctionType # Doing star imports just because its more convenient, and there won't ever be enough code in these that # it becomes a big inefficiency from .density import * from .misc import * from .sb import * from .temperature import * # This dictionary is meant to provide pretty versions of model/function names to go in plots # This method of merging dictionaries only works in Python 3.5+, but that should be fine MODEL_PUBLICATION_NAMES = {**DENS_MODELS_PUB_NAMES, **MISC_MODELS_PUB_NAMES, **SB_MODELS_PUB_NAMES, **TEMP_MODELS_PUB_NAMES} MODEL_PUBLICATION_PAR_NAMES = {**DENS_MODELS_PAR_NAMES, **MISC_MODELS_PAR_NAMES, **SB_MODELS_PAR_NAMES, **TEMP_MODELS_PAR_NAMES} # These dictionaries tell the profile fitting function what models, start pars, and priors are allowed PROF_TYPE_MODELS = {"brightness": SB_MODELS, "gas_density": DENS_MODELS, "gas_temperature": TEMP_MODELS} def convert_to_odr_compatible(model_func: FunctionType, new_par_name: str = 'β', new_data_name: str = 'x_values') \ -> FunctionType: """ This is a bit of a weird one; its meant to convert model functions from the standard XGA setup (i.e. pass x values, then parameters as individual variables), into the form expected by Scipy's ODR. I'd recommend running a check to compare results from the original and converted functions where-ever this function is called - I don't completely trust it. :param FunctionType model_func: The original model function to be converted. :param str new_par_name: The name we want to use for the new list/array of fit parameters. :param str new_data_name: The new name we want to use for the x_data. :return: A successfully converted model function (hopefully) which can be used with ODR. :rtype: FunctionType """ # This is not at all perfect, but its a bodge that will do for now. If type hints are included in # the signature (as they should be in all XGA models), then np.ndarray will be numpy.ndarray in the # signature I extract. This dictionary will be used to swap that out, along with any similar problems I encounter common_conversions = {'numpy': 'np'} # This reads out the function signature - which should be structured as x_values, par1, par2, par3 etc. mod_sig = inspect.signature(model_func) # Convert that signature into a string str_mod_sig = str(mod_sig) # Go through the conversion dictionary and 'correct' the signature for conv in common_conversions: str_mod_sig = str_mod_sig.replace(conv, common_conversions[conv]) # For ODR I've decided that β is the name of the new fit parameter array, and x_values the name of the # x data. This will replace the current signature of the function. new_mod_sig = '({np}, {nd})'.format(np=new_par_name, nd=new_data_name) # I find the current names of the parameters in the signature, excluding the x value name in the original function # and reading that into a separate variable mod_sig_pars = list(mod_sig.parameters.keys()) par_names = mod_sig_pars[1:] # Store the name of the x data here data_name = mod_sig_pars[0] # This gets the source code of the function as a string mod_code = inspect.getsource(model_func) # I swap in the new signature new_mod_code = mod_code.replace(str_mod_sig, new_mod_sig) # And now I know the exact form of the whole def line I can define that as a variable and then temporarily # remove it from the source code known_def = 'def {mn}'.format(mn=model_func.__name__) + new_mod_sig + ':' new_mod_code = new_mod_code.replace(known_def, '') # Then I swing through all the original parameter names and replace them with accessing elements of our # new beta parameter list/array. for par_ind, par_name in enumerate(par_names): new_mod_code = new_mod_code.replace(par_name, '{np}[{i}]'.format(np=new_par_name, i=par_ind)) # Then I do the same thing for the new x data variable name new_mod_code = new_mod_code.replace(data_name, new_data_name) # Adds the def SIGNATURE line back in new_mod_code = known_def + new_mod_code # This compiles the code and creates a new function new_model_func_code = compile(new_mod_code, '<string>', 'exec') new_model_func = FunctionType(new_model_func_code.co_consts[0], globals(), model_func.__name__) return new_model_func
[ 2, 220, 770, 2438, 318, 257, 636, 286, 1395, 12038, 25, 2980, 378, 290, 16213, 325, 357, 55, 9273, 828, 257, 8265, 3562, 329, 262, 1395, 12038, 38279, 13084, 357, 55, 7902, 737, 198, 2, 220, 4586, 9518, 416, 3271, 449, 15406, 357, 67, 8490, 13, 15344, 263, 31, 82, 385, 8044, 13, 330, 13, 2724, 8, 8487, 14, 3070, 14, 1238, 2481, 11, 1596, 25, 1959, 13, 15069, 357, 66, 8, 3271, 449, 15406, 198, 198, 11748, 10104, 198, 6738, 3858, 1330, 15553, 6030, 198, 198, 2, 25327, 3491, 17944, 655, 780, 663, 517, 11282, 11, 290, 612, 1839, 470, 1683, 307, 1576, 2438, 287, 777, 326, 198, 2, 220, 340, 4329, 257, 1263, 287, 45888, 198, 6738, 764, 43337, 1330, 1635, 198, 6738, 764, 44374, 1330, 1635, 198, 6738, 764, 36299, 1330, 1635, 198, 6738, 764, 11498, 21069, 1330, 1635, 198, 198, 2, 770, 22155, 318, 4001, 284, 2148, 2495, 6300, 286, 2746, 14, 8818, 3891, 284, 467, 287, 21528, 198, 2, 770, 2446, 286, 35981, 48589, 3166, 691, 2499, 287, 11361, 513, 13, 20, 28200, 475, 326, 815, 307, 3734, 198, 33365, 3698, 62, 5105, 32936, 6234, 62, 45, 29559, 796, 1391, 1174, 35, 16938, 62, 33365, 37142, 62, 5105, 33, 62, 45, 29559, 11, 12429, 44, 37719, 62, 33365, 37142, 62, 5105, 33, 62, 45, 29559, 11, 12429, 16811, 62, 33365, 37142, 62, 5105, 33, 62, 45, 29559, 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, 12429, 51, 39494, 62, 33365, 37142, 62, 5105, 33, 62, 45, 29559, 92, 198, 33365, 3698, 62, 5105, 32936, 6234, 62, 27082, 62, 45, 29559, 796, 1391, 1174, 35, 16938, 62, 33365, 37142, 62, 27082, 62, 45, 29559, 11, 12429, 44, 37719, 62, 33365, 37142, 62, 27082, 62, 45, 29559, 11, 12429, 16811, 62, 33365, 37142, 62, 27082, 62, 45, 29559, 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, 12429, 51, 39494, 62, 33365, 37142, 62, 27082, 62, 45, 29559, 92, 198, 2, 2312, 48589, 3166, 1560, 262, 7034, 15830, 2163, 644, 4981, 11, 923, 13544, 11, 290, 1293, 669, 389, 3142, 198, 4805, 19238, 62, 25216, 62, 33365, 37142, 796, 19779, 29199, 1108, 1298, 18056, 62, 33365, 37142, 11, 366, 22649, 62, 43337, 1298, 360, 16938, 62, 33365, 37142, 11, 366, 22649, 62, 11498, 21069, 1298, 309, 39494, 62, 33365, 37142, 92, 628, 198, 4299, 10385, 62, 1462, 62, 375, 81, 62, 38532, 7, 19849, 62, 20786, 25, 15553, 6030, 11, 649, 62, 1845, 62, 3672, 25, 965, 796, 705, 26638, 3256, 649, 62, 7890, 62, 3672, 25, 965, 796, 705, 87, 62, 27160, 11537, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 4613, 15553, 6030, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 318, 257, 1643, 286, 257, 7650, 530, 26, 663, 4001, 284, 10385, 2746, 5499, 422, 262, 3210, 1395, 9273, 9058, 198, 220, 220, 220, 357, 72, 13, 68, 13, 1208, 2124, 3815, 11, 788, 10007, 355, 1981, 9633, 828, 656, 262, 1296, 2938, 416, 1446, 541, 88, 338, 440, 7707, 13, 198, 220, 220, 220, 314, 1549, 4313, 2491, 257, 2198, 284, 8996, 2482, 422, 262, 2656, 290, 11513, 5499, 810, 12, 964, 198, 220, 220, 220, 428, 2163, 318, 1444, 532, 314, 836, 470, 3190, 3774, 340, 13, 628, 220, 220, 220, 1058, 17143, 15553, 6030, 2746, 62, 20786, 25, 383, 2656, 2746, 2163, 284, 307, 11513, 13, 198, 220, 220, 220, 1058, 17143, 965, 649, 62, 1845, 62, 3672, 25, 383, 1438, 356, 765, 284, 779, 329, 262, 649, 1351, 14, 18747, 286, 4197, 10007, 13, 198, 220, 220, 220, 1058, 17143, 965, 649, 62, 7890, 62, 3672, 25, 383, 649, 1438, 356, 765, 284, 779, 329, 262, 2124, 62, 7890, 13, 198, 220, 220, 220, 1058, 7783, 25, 317, 7675, 11513, 2746, 2163, 357, 8548, 7549, 8, 543, 460, 307, 973, 351, 440, 7707, 13, 198, 220, 220, 220, 1058, 81, 4906, 25, 15553, 6030, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 770, 318, 407, 379, 477, 2818, 11, 475, 663, 257, 275, 9728, 326, 481, 466, 329, 783, 13, 1002, 2099, 20269, 389, 3017, 287, 198, 220, 220, 220, 1303, 220, 262, 9877, 357, 292, 484, 815, 307, 287, 477, 1395, 9273, 4981, 828, 788, 45941, 13, 358, 18747, 481, 307, 299, 32152, 13, 358, 18747, 287, 262, 198, 220, 220, 220, 1303, 220, 9877, 314, 7925, 13, 770, 22155, 481, 307, 973, 284, 16075, 326, 503, 11, 1863, 351, 597, 2092, 2761, 314, 8791, 198, 220, 220, 220, 2219, 62, 1102, 47178, 796, 1391, 6, 77, 32152, 10354, 705, 37659, 6, 92, 628, 220, 220, 220, 1303, 770, 9743, 503, 262, 2163, 9877, 532, 543, 815, 307, 20793, 355, 2124, 62, 27160, 11, 1582, 16, 11, 1582, 17, 11, 1582, 18, 3503, 13, 198, 220, 220, 220, 953, 62, 82, 328, 796, 10104, 13, 12683, 1300, 7, 19849, 62, 20786, 8, 198, 220, 220, 220, 1303, 38240, 326, 9877, 656, 257, 4731, 198, 220, 220, 220, 965, 62, 4666, 62, 82, 328, 796, 965, 7, 4666, 62, 82, 328, 8, 628, 220, 220, 220, 1303, 1514, 832, 262, 11315, 22155, 290, 705, 30283, 6, 262, 9877, 198, 220, 220, 220, 329, 3063, 287, 2219, 62, 1102, 47178, 25, 198, 220, 220, 220, 220, 220, 220, 220, 965, 62, 4666, 62, 82, 328, 796, 965, 62, 4666, 62, 82, 328, 13, 33491, 7, 42946, 11, 2219, 62, 1102, 47178, 58, 42946, 12962, 628, 220, 220, 220, 1303, 1114, 440, 7707, 314, 1053, 3066, 326, 27169, 318, 262, 1438, 286, 262, 649, 4197, 11507, 7177, 11, 290, 2124, 62, 27160, 262, 1438, 286, 262, 198, 220, 220, 220, 1303, 220, 2124, 1366, 13, 770, 481, 6330, 262, 1459, 9877, 286, 262, 2163, 13, 198, 220, 220, 220, 649, 62, 4666, 62, 82, 328, 796, 705, 15090, 37659, 5512, 1391, 358, 30072, 4458, 18982, 7, 37659, 28, 3605, 62, 1845, 62, 3672, 11, 299, 67, 28, 3605, 62, 7890, 62, 3672, 8, 198, 220, 220, 220, 1303, 314, 1064, 262, 1459, 3891, 286, 262, 10007, 287, 262, 9877, 11, 23494, 262, 2124, 1988, 1438, 287, 262, 2656, 2163, 198, 220, 220, 220, 1303, 220, 290, 3555, 326, 656, 257, 4553, 7885, 198, 220, 220, 220, 953, 62, 82, 328, 62, 79, 945, 796, 1351, 7, 4666, 62, 82, 328, 13, 17143, 7307, 13, 13083, 28955, 198, 220, 220, 220, 1582, 62, 14933, 796, 953, 62, 82, 328, 62, 79, 945, 58, 16, 47715, 198, 220, 220, 220, 1303, 9363, 262, 1438, 286, 262, 2124, 1366, 994, 198, 220, 220, 220, 1366, 62, 3672, 796, 953, 62, 82, 328, 62, 79, 945, 58, 15, 60, 628, 220, 220, 220, 1303, 770, 3011, 262, 2723, 2438, 286, 262, 2163, 355, 257, 4731, 198, 220, 220, 220, 953, 62, 8189, 796, 10104, 13, 11407, 1668, 7, 19849, 62, 20786, 8, 198, 220, 220, 220, 1303, 314, 16075, 287, 262, 649, 9877, 198, 220, 220, 220, 649, 62, 4666, 62, 8189, 796, 953, 62, 8189, 13, 33491, 7, 2536, 62, 4666, 62, 82, 328, 11, 649, 62, 4666, 62, 82, 328, 8, 628, 220, 220, 220, 1303, 843, 783, 314, 760, 262, 2748, 1296, 286, 262, 2187, 825, 1627, 314, 460, 8160, 326, 355, 257, 7885, 290, 788, 13413, 198, 220, 220, 220, 1303, 220, 4781, 340, 422, 262, 2723, 2438, 198, 220, 220, 220, 1900, 62, 4299, 796, 705, 4299, 1391, 10295, 92, 4458, 18982, 7, 10295, 28, 19849, 62, 20786, 13, 834, 3672, 834, 8, 1343, 649, 62, 4666, 62, 82, 328, 1343, 705, 32105, 198, 220, 220, 220, 649, 62, 4666, 62, 8189, 796, 649, 62, 4666, 62, 8189, 13, 33491, 7, 4002, 62, 4299, 11, 10148, 8, 628, 220, 220, 220, 1303, 3244, 314, 9628, 832, 477, 262, 2656, 11507, 3891, 290, 6330, 606, 351, 22534, 4847, 286, 674, 198, 220, 220, 220, 1303, 220, 649, 12159, 11507, 1351, 14, 18747, 13, 198, 220, 220, 220, 329, 1582, 62, 521, 11, 1582, 62, 3672, 287, 27056, 378, 7, 1845, 62, 14933, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 4666, 62, 8189, 796, 649, 62, 4666, 62, 8189, 13, 33491, 7, 1845, 62, 3672, 11, 705, 90, 37659, 92, 58, 90, 72, 92, 60, 4458, 18982, 7, 37659, 28, 3605, 62, 1845, 62, 3672, 11, 1312, 28, 1845, 62, 521, 4008, 628, 220, 220, 220, 1303, 3244, 314, 466, 262, 976, 1517, 329, 262, 649, 2124, 1366, 7885, 1438, 198, 220, 220, 220, 649, 62, 4666, 62, 8189, 796, 649, 62, 4666, 62, 8189, 13, 33491, 7, 7890, 62, 3672, 11, 649, 62, 7890, 62, 3672, 8, 628, 220, 220, 220, 1303, 34333, 262, 825, 36771, 40086, 1627, 736, 287, 198, 220, 220, 220, 649, 62, 4666, 62, 8189, 796, 1900, 62, 4299, 1343, 649, 62, 4666, 62, 8189, 628, 220, 220, 220, 1303, 770, 552, 2915, 262, 2438, 290, 8075, 257, 649, 2163, 198, 220, 220, 220, 649, 62, 19849, 62, 20786, 62, 8189, 796, 17632, 7, 3605, 62, 4666, 62, 8189, 11, 705, 27, 8841, 29, 3256, 705, 18558, 11537, 198, 220, 220, 220, 649, 62, 19849, 62, 20786, 796, 15553, 6030, 7, 3605, 62, 19849, 62, 20786, 62, 8189, 13, 1073, 62, 1102, 6448, 58, 15, 4357, 15095, 874, 22784, 2746, 62, 20786, 13, 834, 3672, 834, 8, 628, 220, 220, 220, 1441, 649, 62, 19849, 62, 20786, 628, 628, 628 ]
2.954232
1,595
from logging import getLogger from datetime import datetime from os3_rll.models.challenge import Challenge, ChallengeException from os3_rll.models.player import Player, PlayerException from os3_rll.models.db import Database logger = getLogger(__name__) def do_challenge_sanity_check(p1, p2, may_already_by_challenged=False, may_be_expired=False): """ Preform checks for a new challenge to be created param os3_rll.models.player.Player() p1: The player model for player 1 param os3_rll.models.player.Player() p2: The player model for player 2 param bool may_already_by_challenged: If True skips the player.challenged check param bool may_be_expired: Skips the date check if set raises ChallengeException on sanity check failure """ if p1.challenged and not may_already_by_challenged: raise ChallengeException("{} is already challenged".format(p1.gamertag)) if p2.challenged and not may_already_by_challenged: raise ChallengeException("{} is already challenged".format(p2.gamertag)) # Check if the rank of player 1 is lower than the rank of player 2: if p1.rank < p2.rank: raise ChallengeException("The rank of {} is lower than of {}".format(p1.gamertag, p2.gamertag)) # Check if the ranks are the same; this should not happen if p1.rank == p2.rank: raise ChallengeException( "The ranks of both player {} and player {} are the same. This should not happen. EVERYBODY PANIC!!!".format( p1.gamertag, p2.gamertag ) ) # Check if the timeout of player 1 has expired if p1.timeout > datetime.now() and not may_be_expired: raise ChallengeException("The timeout counter of {} is still active".format(p1.gamertag)) def process_completed_challenge_args(args): """ Processes the completed challenge arguments args str: of the played matches separated by spaces and scores by dashes. Example "1-2 5-3 2-4" corresponds to 3 matches played with the first match ending in 1-2, the second in 5-3 ect. """ p1_wins, p2_wins, p1_score, p2_score = 0, 0, 0, 0 logger.debug("Trying to parse challenge result, got the following user input {}".format(args)) matches = args.split() for match in matches: scores = list(filter(None, match.split("-"))) if len(scores) != 2: raise ChallengeException("Unable to parse challenge arguments") # Check for dummies who didn't pass the last score # Assign the win to the player with the highest score scores[0] = int(scores[0]) scores[1] = int(scores[1]) if scores[0] > scores[1]: p1_wins += 1 elif scores[1] > scores[0]: p2_wins += 1 # Assign the amount of goals p1_score += scores[0] p2_score += scores[1] # Check for a draw if p1_wins == p2_wins: raise ChallengeException("Draws are not allowed") return p1_wins, p2_wins, p1_score, p2_score def get_player_objects_from_challenge_info(player, should_be_completed=False, search_by_discord_name=True): """ Search for a challenge in the DB corresponding to the player param str/int player: The gamertag or id of the player to search for param bool should_be_completed: If the challenge should already be completed or not param bool search_by_discord_name: Searches for player by full discord_name instead of gamertag param str message_author: The discord_user that send the message (eg. Pandabeer#2202) returns tuple os3_rll.models.player.Player: (p1, p2) """ if isinstance(player, str): player = Player.get_player_id_by_username(player, discord_name=search_by_discord_name) with Database() as db: db.execute_prepared_statement( "SELECT `p1`, `p2` FROM `challenges` WHERE (`p1`=%s OR `p2`=%s) AND `winner` IS {} NULL ORDER BY `id` DESC".format( "NOT" if should_be_completed else "" ), (player, player), ) if db.rowcount == 0: raise ChallengeException("No challenges found") p1, p2 = db.fetchone() return Player(p1), Player(p2) def get_latest_challenge_from_player_id(player, should_be_completed=False): """ Tries to find the latest challenge belonging to a player param int player: The player ID to search the challenges for param bool should_be_completed: If the challenge should already be completed or not returns os3_rll.models.challenge: if a challenge is found raises ChallengeException/PlayerException: on not found / on error """ logger.info("Trying to get latest challenge from player with id {}".format(player)) with Player(player) as p: if not p.challenged and not should_be_completed: raise PlayerException("Player {} is currently not in an active challenge".format(p.gamertag)) # Try to find a challenge p.db.execute( "SELECT `id` FROM `challenges` WHERE (`p1`={0} OR `p2`={0}) AND `winner` is {1} NULL ORDER BY `id` LIMIT 1".format( p.id, "NOT" if should_be_completed else "" ) ) p.check_row_count() challenge = p.db.fetchone()[0] # Return the Challenge model return Challenge(challenge)
[ 6738, 18931, 1330, 651, 11187, 1362, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 28686, 18, 62, 81, 297, 13, 27530, 13, 36747, 3540, 1330, 13879, 11, 13879, 16922, 198, 6738, 28686, 18, 62, 81, 297, 13, 27530, 13, 7829, 1330, 7853, 11, 7853, 16922, 198, 6738, 28686, 18, 62, 81, 297, 13, 27530, 13, 9945, 1330, 24047, 198, 198, 6404, 1362, 796, 651, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 4299, 466, 62, 36747, 3540, 62, 12807, 414, 62, 9122, 7, 79, 16, 11, 279, 17, 11, 743, 62, 282, 1493, 62, 1525, 62, 36747, 47422, 28, 25101, 11, 743, 62, 1350, 62, 1069, 6474, 28, 25101, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3771, 687, 8794, 329, 257, 649, 4427, 284, 307, 2727, 628, 220, 220, 220, 5772, 28686, 18, 62, 81, 297, 13, 27530, 13, 7829, 13, 14140, 3419, 279, 16, 25, 383, 2137, 2746, 329, 2137, 352, 198, 220, 220, 220, 5772, 28686, 18, 62, 81, 297, 13, 27530, 13, 7829, 13, 14140, 3419, 279, 17, 25, 383, 2137, 2746, 329, 2137, 362, 198, 220, 220, 220, 5772, 20512, 743, 62, 282, 1493, 62, 1525, 62, 36747, 47422, 25, 1002, 6407, 1341, 2419, 262, 2137, 13, 36747, 47422, 2198, 198, 220, 220, 220, 5772, 20512, 743, 62, 1350, 62, 1069, 6474, 25, 3661, 2419, 262, 3128, 2198, 611, 900, 198, 220, 220, 220, 12073, 13879, 16922, 319, 34182, 2198, 5287, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 279, 16, 13, 36747, 47422, 290, 407, 743, 62, 282, 1493, 62, 1525, 62, 36747, 47422, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 90, 92, 318, 1541, 12827, 1911, 18982, 7, 79, 16, 13, 28483, 861, 363, 4008, 628, 220, 220, 220, 611, 279, 17, 13, 36747, 47422, 290, 407, 743, 62, 282, 1493, 62, 1525, 62, 36747, 47422, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 90, 92, 318, 1541, 12827, 1911, 18982, 7, 79, 17, 13, 28483, 861, 363, 4008, 628, 220, 220, 220, 1303, 6822, 611, 262, 4279, 286, 2137, 352, 318, 2793, 621, 262, 4279, 286, 2137, 362, 25, 198, 220, 220, 220, 611, 279, 16, 13, 43027, 1279, 279, 17, 13, 43027, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 464, 4279, 286, 23884, 318, 2793, 621, 286, 23884, 1911, 18982, 7, 79, 16, 13, 28483, 861, 363, 11, 279, 17, 13, 28483, 861, 363, 4008, 628, 220, 220, 220, 1303, 6822, 611, 262, 9803, 389, 262, 976, 26, 428, 815, 407, 1645, 198, 220, 220, 220, 611, 279, 16, 13, 43027, 6624, 279, 17, 13, 43027, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 9803, 286, 1111, 2137, 23884, 290, 2137, 23884, 389, 262, 976, 13, 770, 815, 407, 1645, 13, 27222, 33, 33076, 40468, 2149, 10185, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 16, 13, 28483, 861, 363, 11, 279, 17, 13, 28483, 861, 363, 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, 1303, 6822, 611, 262, 26827, 286, 2137, 352, 468, 21350, 198, 220, 220, 220, 611, 279, 16, 13, 48678, 1875, 4818, 8079, 13, 2197, 3419, 290, 407, 743, 62, 1350, 62, 1069, 6474, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 464, 26827, 3753, 286, 23884, 318, 991, 4075, 1911, 18982, 7, 79, 16, 13, 28483, 861, 363, 4008, 628, 198, 4299, 1429, 62, 785, 16838, 62, 36747, 3540, 62, 22046, 7, 22046, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 10854, 274, 262, 5668, 4427, 7159, 198, 220, 220, 220, 26498, 965, 25, 286, 262, 2826, 7466, 11266, 416, 9029, 290, 8198, 416, 288, 7465, 13, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 366, 16, 12, 17, 642, 12, 18, 362, 12, 19, 1, 24866, 284, 513, 7466, 2826, 351, 262, 717, 2872, 7464, 287, 352, 12, 17, 11, 262, 1218, 287, 642, 12, 18, 46080, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 279, 16, 62, 86, 1040, 11, 279, 17, 62, 86, 1040, 11, 279, 16, 62, 26675, 11, 279, 17, 62, 26675, 796, 657, 11, 657, 11, 657, 11, 657, 198, 220, 220, 220, 49706, 13, 24442, 7203, 51, 14992, 284, 21136, 4427, 1255, 11, 1392, 262, 1708, 2836, 5128, 23884, 1911, 18982, 7, 22046, 4008, 198, 220, 220, 220, 7466, 796, 26498, 13, 35312, 3419, 198, 220, 220, 220, 329, 2872, 287, 7466, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8198, 796, 1351, 7, 24455, 7, 14202, 11, 2872, 13, 35312, 7203, 21215, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 1416, 2850, 8, 14512, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 3118, 540, 284, 21136, 4427, 7159, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 329, 288, 39578, 508, 1422, 470, 1208, 262, 938, 4776, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2195, 570, 262, 1592, 284, 262, 2137, 351, 262, 4511, 4776, 198, 220, 220, 220, 220, 220, 220, 220, 8198, 58, 15, 60, 796, 493, 7, 1416, 2850, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 8198, 58, 16, 60, 796, 493, 7, 1416, 2850, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8198, 58, 15, 60, 1875, 8198, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 16, 62, 86, 1040, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 8198, 58, 16, 60, 1875, 8198, 58, 15, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 17, 62, 86, 1040, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2195, 570, 262, 2033, 286, 4661, 198, 220, 220, 220, 220, 220, 220, 220, 279, 16, 62, 26675, 15853, 8198, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 279, 17, 62, 26675, 15853, 8198, 58, 16, 60, 198, 220, 220, 220, 1303, 6822, 329, 257, 3197, 198, 220, 220, 220, 611, 279, 16, 62, 86, 1040, 6624, 279, 17, 62, 86, 1040, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 25302, 82, 389, 407, 3142, 4943, 198, 220, 220, 220, 1441, 279, 16, 62, 86, 1040, 11, 279, 17, 62, 86, 1040, 11, 279, 16, 62, 26675, 11, 279, 17, 62, 26675, 628, 198, 4299, 651, 62, 7829, 62, 48205, 62, 6738, 62, 36747, 3540, 62, 10951, 7, 7829, 11, 815, 62, 1350, 62, 785, 16838, 28, 25101, 11, 2989, 62, 1525, 62, 15410, 585, 62, 3672, 28, 17821, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 11140, 329, 257, 4427, 287, 262, 20137, 11188, 284, 262, 2137, 628, 220, 220, 220, 5772, 965, 14, 600, 2137, 25, 383, 9106, 861, 363, 393, 4686, 286, 262, 2137, 284, 2989, 329, 198, 220, 220, 220, 5772, 20512, 815, 62, 1350, 62, 785, 16838, 25, 1002, 262, 4427, 815, 1541, 307, 5668, 393, 407, 198, 220, 220, 220, 5772, 20512, 2989, 62, 1525, 62, 15410, 585, 62, 3672, 25, 42016, 2052, 329, 2137, 416, 1336, 36446, 62, 3672, 2427, 286, 9106, 861, 363, 198, 220, 220, 220, 5772, 965, 3275, 62, 9800, 25, 383, 36446, 62, 7220, 326, 3758, 262, 3275, 357, 1533, 13, 16492, 11231, 263, 2, 17572, 17, 8, 198, 220, 220, 220, 5860, 46545, 28686, 18, 62, 81, 297, 13, 27530, 13, 7829, 13, 14140, 25, 357, 79, 16, 11, 279, 17, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 7829, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2137, 796, 7853, 13, 1136, 62, 7829, 62, 312, 62, 1525, 62, 29460, 7, 7829, 11, 36446, 62, 3672, 28, 12947, 62, 1525, 62, 15410, 585, 62, 3672, 8, 198, 220, 220, 220, 351, 24047, 3419, 355, 20613, 25, 198, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 41049, 62, 3866, 29190, 62, 26090, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 46506, 4600, 79, 16, 47671, 4600, 79, 17, 63, 16034, 4600, 36747, 34120, 63, 33411, 357, 63, 79, 16, 63, 28, 4, 82, 6375, 4600, 79, 17, 63, 28, 4, 82, 8, 5357, 4600, 39791, 63, 3180, 23884, 15697, 38678, 11050, 4600, 312, 63, 22196, 34, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11929, 1, 611, 815, 62, 1350, 62, 785, 16838, 2073, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7829, 11, 2137, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 20613, 13, 808, 9127, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13879, 16922, 7203, 2949, 6459, 1043, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 279, 16, 11, 279, 17, 796, 20613, 13, 69, 7569, 505, 3419, 198, 220, 220, 220, 1441, 7853, 7, 79, 16, 828, 7853, 7, 79, 17, 8, 628, 198, 4299, 651, 62, 42861, 62, 36747, 3540, 62, 6738, 62, 7829, 62, 312, 7, 7829, 11, 815, 62, 1350, 62, 785, 16838, 28, 25101, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 309, 1678, 284, 1064, 262, 3452, 4427, 16686, 284, 257, 2137, 628, 220, 220, 220, 5772, 493, 2137, 25, 383, 2137, 4522, 284, 2989, 262, 6459, 329, 198, 220, 220, 220, 5772, 20512, 815, 62, 1350, 62, 785, 16838, 25, 1002, 262, 4427, 815, 1541, 307, 5668, 393, 407, 198, 220, 220, 220, 5860, 28686, 18, 62, 81, 297, 13, 27530, 13, 36747, 3540, 25, 611, 257, 4427, 318, 1043, 198, 220, 220, 220, 12073, 13879, 16922, 14, 14140, 16922, 25, 319, 407, 1043, 1220, 319, 4049, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 7203, 51, 14992, 284, 651, 3452, 4427, 422, 2137, 351, 4686, 23884, 1911, 18982, 7, 7829, 4008, 198, 220, 220, 220, 351, 7853, 7, 7829, 8, 355, 279, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 279, 13, 36747, 47422, 290, 407, 815, 62, 1350, 62, 785, 16838, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 7853, 16922, 7203, 14140, 23884, 318, 3058, 407, 287, 281, 4075, 4427, 1911, 18982, 7, 79, 13, 28483, 861, 363, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9993, 284, 1064, 257, 4427, 198, 220, 220, 220, 220, 220, 220, 220, 279, 13, 9945, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 46506, 4600, 312, 63, 16034, 4600, 36747, 34120, 63, 33411, 357, 63, 79, 16, 63, 34758, 15, 92, 6375, 4600, 79, 17, 63, 34758, 15, 30072, 5357, 4600, 39791, 63, 318, 1391, 16, 92, 15697, 38678, 11050, 4600, 312, 63, 27564, 2043, 352, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 13, 312, 11, 366, 11929, 1, 611, 815, 62, 1350, 62, 785, 16838, 2073, 13538, 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, 279, 13, 9122, 62, 808, 62, 9127, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4427, 796, 279, 13, 9945, 13, 69, 7569, 505, 3419, 58, 15, 60, 198, 220, 220, 220, 1303, 8229, 262, 13879, 2746, 198, 220, 220, 220, 1441, 13879, 7, 36747, 3540, 8, 198 ]
2.631631
2,017
# -*- coding: utf-8 -*- """SUOD """ # Author: Yue Zhao <[email protected]> # License: BSD 2 clause from __future__ import division from __future__ import print_function import numpy as np from sklearn.utils import check_array from sklearn.utils.validation import check_is_fitted try: import suod except ImportError: print('please install suod first for SUOD by `pip install suod`') from suod.models.base import SUOD as SUOD_model from .base import BaseDetector from .lof import LOF from .hbos import HBOS from .iforest import IForest from .copod import COPOD from .combination import average, maximization from ..utils.utility import standardizer class SUOD(BaseDetector): # noinspection PyPep8 """SUOD (Scalable Unsupervised Outlier Detection) is an acceleration framework for large scale unsupervised outlier detector training and prediction. See :cite:`zhao2021suod` for details. Parameters ---------- base_estimators : list, length must be greater than 1 A list of base estimators. Certain methods must be present, e.g., `fit` and `predict`. combination : str, optional (default='average') Decide how to aggregate the results from multiple models: - "average" : average the results from all base detectors - "maximization" : output the max value across all base detectors contamination : float in (0., 0.5), optional (default=0.1) The amount of contamination of the data set, i.e. the proportion of outliers in the data set. Used when fitting to define the threshold on the decision function. n_jobs : optional (default=1) The number of jobs to run in parallel for both `fit` and `predict`. If -1, then the number of jobs is set to the the number of jobs that can actually run in parallel. rp_clf_list : list, optional (default=None) The list of outlier detection models to use random projection. The detector name should be consistent with PyOD. rp_ng_clf_list : list, optional (default=None) The list of outlier detection models NOT to use random projection. The detector name should be consistent with PyOD. rp_flag_global : bool, optional (default=True) If set to False, random projection is turned off for all base models. target_dim_frac : float in (0., 1), optional (default=0.5) The target compression ratio. jl_method : string, optional (default = 'basic') The JL projection method: - "basic": each component of the transformation matrix is taken at random in N(0,1). - "discrete", each component of the transformation matrix is taken at random in {-1,1}. - "circulant": the first row of the transformation matrix is taken at random in N(0,1), and each row is obtained from the previous one by a one-left shift. - "toeplitz": the first row and column of the transformation matrix is taken at random in N(0,1), and each diagonal has a constant value taken from these first vector. bps_flag : bool, optional (default=True) If set to False, balanced parallel scheduling is turned off. approx_clf_list : list, optional (default=None) The list of outlier detection models to use pseudo-supervised approximation. The detector name should be consistent with PyOD. approx_ng_clf_list : list, optional (default=None) The list of outlier detection models NOT to use pseudo-supervised approximation. The detector name should be consistent with PyOD. approx_flag_global : bool, optional (default=True) If set to False, pseudo-supervised approximation is turned off. approx_clf : object, optional (default: sklearn RandomForestRegressor) The supervised model used to approximate unsupervised models. cost_forecast_loc_fit : str, optional The location of the pretrained cost prediction forecast for training. cost_forecast_loc_pred : str, optional The location of the pretrained cost prediction forecast for prediction. verbose : int, optional (default=0) Controls the verbosity of the building process. Attributes ---------- decision_scores_ : numpy array of shape (n_samples,) The outlier scores of the training data. The higher, the more abnormal. Outliers tend to have higher scores. This value is available once the detector is fitted. threshold_ : float The threshold is based on ``contamination``. It is the ``n_samples * contamination`` most abnormal samples in ``decision_scores_``. The threshold is calculated for generating binary outlier labels. labels_ : int, either 0 or 1 The binary labels of the training data. 0 stands for inliers and 1 for outliers/anomalies. It is generated by applying ``threshold_`` on ``decision_scores_``. """ def fit(self, X, y=None): """Fit detector. y is ignored in unsupervised methods. Parameters ---------- X : numpy array of shape (n_samples, n_features) The input samples. y : Ignored Not used, present for API consistency by convention. Returns ------- self : object Fitted estimator. """ # validate inputs X and y (optional) X = check_array(X) n_samples, n_features = X.shape[0], X.shape[1] self._set_n_classes(y) # fit the model and then approximate it self.model_.fit(X) self.model_.approximate(X) # get the decision scores from each base estimators decision_score_mat = np.zeros([n_samples, self.n_estimators]) for i in range(self.n_estimators): decision_score_mat[:, i] = self.model_.base_estimators[ i].decision_scores_ # the scores must be standardized before combination decision_score_mat, self.score_scalar_ = standardizer( decision_score_mat, keep_scalar=True) # todo: may support other combination if self.combination == 'average': decision_score = average(decision_score_mat) else: decision_score = maximization(decision_score_mat) assert (len(decision_score) == n_samples) self.decision_scores_ = decision_score.ravel() self._process_decision_scores() return self def decision_function(self, X): """Predict raw anomaly score of X using the fitted detectors. The anomaly score of an input sample is computed based on different detector algorithms. For consistency, outliers are assigned with larger anomaly scores. Parameters ---------- X : numpy array of shape (n_samples, n_features) The training input samples. Sparse matrices are accepted only if they are supported by the base estimator. Returns ------- anomaly_scores : numpy array of shape (n_samples,) The anomaly score of the input samples. """ check_is_fitted(self, ['model_', 'decision_scores_', 'threshold_', 'labels_']) X = check_array(X) # initialize the output score predicted_scores = self.model_.decision_function(X) # standardize the score and combine predicted_scores = self.score_scalar_.transform(predicted_scores) # todo: may support other combination if self.combination == 'average': decision_score = average(predicted_scores) else: decision_score = maximization(predicted_scores) assert (len(decision_score) == X.shape[0]) return decision_score.ravel()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 12564, 3727, 198, 37811, 198, 2, 6434, 25, 32854, 29436, 1279, 89, 3099, 726, 31, 11215, 84, 13, 15532, 29, 198, 2, 13789, 25, 347, 10305, 362, 13444, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 1341, 35720, 13, 26791, 1330, 2198, 62, 18747, 198, 6738, 1341, 35720, 13, 26791, 13, 12102, 341, 1330, 2198, 62, 271, 62, 38631, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 424, 375, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 3601, 10786, 29688, 2721, 424, 375, 717, 329, 13558, 3727, 416, 4600, 79, 541, 2721, 424, 375, 63, 11537, 198, 6738, 424, 375, 13, 27530, 13, 8692, 1330, 13558, 3727, 355, 13558, 3727, 62, 19849, 198, 198, 6738, 764, 8692, 1330, 7308, 11242, 9250, 198, 6738, 764, 75, 1659, 1330, 17579, 37, 198, 6738, 764, 71, 39565, 1330, 25997, 2640, 198, 6738, 764, 361, 26522, 1330, 314, 34605, 198, 6738, 764, 22163, 375, 1330, 27975, 3727, 198, 6738, 764, 24011, 1883, 1330, 2811, 11, 12991, 1634, 198, 6738, 11485, 26791, 13, 315, 879, 1330, 3210, 7509, 628, 198, 4871, 13558, 3727, 7, 14881, 11242, 9250, 2599, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 47, 538, 23, 198, 220, 220, 220, 37227, 12564, 3727, 357, 3351, 282, 540, 791, 16668, 16149, 3806, 2505, 46254, 8, 318, 281, 20309, 198, 220, 220, 220, 9355, 329, 1588, 5046, 555, 16668, 16149, 503, 2505, 31029, 3047, 290, 198, 220, 220, 220, 17724, 13, 4091, 1058, 66, 578, 25, 63, 89, 23778, 1238, 2481, 2385, 375, 63, 329, 3307, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2779, 62, 395, 320, 2024, 1058, 1351, 11, 4129, 1276, 307, 3744, 621, 352, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 2779, 3959, 2024, 13, 16272, 5050, 1276, 307, 1944, 11, 304, 13, 70, 1539, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 11147, 63, 290, 4600, 79, 17407, 44646, 628, 220, 220, 220, 6087, 1058, 965, 11, 11902, 357, 12286, 11639, 23913, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4280, 485, 703, 284, 19406, 262, 2482, 422, 3294, 4981, 25, 628, 220, 220, 220, 220, 220, 220, 220, 532, 366, 23913, 1, 1058, 2811, 262, 2482, 422, 477, 2779, 40471, 198, 220, 220, 220, 220, 220, 220, 220, 532, 366, 9806, 320, 1634, 1, 1058, 5072, 262, 3509, 1988, 1973, 477, 2779, 40471, 628, 220, 220, 220, 22733, 1058, 12178, 287, 357, 15, 1539, 657, 13, 20, 828, 11902, 357, 12286, 28, 15, 13, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2033, 286, 22733, 286, 262, 1366, 900, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 13, 68, 13, 262, 9823, 286, 41528, 3183, 287, 262, 1366, 900, 13, 16718, 618, 15830, 284, 198, 220, 220, 220, 220, 220, 220, 220, 8160, 262, 11387, 319, 262, 2551, 2163, 13, 628, 220, 220, 220, 299, 62, 43863, 1058, 11902, 357, 12286, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1271, 286, 3946, 284, 1057, 287, 10730, 329, 1111, 4600, 11147, 63, 290, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 79, 17407, 44646, 1002, 532, 16, 11, 788, 262, 1271, 286, 3946, 318, 900, 284, 262, 198, 220, 220, 220, 220, 220, 220, 220, 262, 1271, 286, 3946, 326, 460, 1682, 1057, 287, 10730, 13, 628, 220, 220, 220, 374, 79, 62, 565, 69, 62, 4868, 1058, 1351, 11, 11902, 357, 12286, 28, 14202, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1351, 286, 503, 2505, 13326, 4981, 284, 779, 4738, 20128, 13, 383, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 1438, 815, 307, 6414, 351, 9485, 3727, 13, 628, 220, 220, 220, 374, 79, 62, 782, 62, 565, 69, 62, 4868, 1058, 1351, 11, 11902, 357, 12286, 28, 14202, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1351, 286, 503, 2505, 13326, 4981, 5626, 284, 779, 4738, 20128, 13, 383, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 1438, 815, 307, 6414, 351, 9485, 3727, 13, 628, 220, 220, 220, 374, 79, 62, 32109, 62, 20541, 1058, 20512, 11, 11902, 357, 12286, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 900, 284, 10352, 11, 4738, 20128, 318, 2900, 572, 329, 477, 2779, 4981, 13, 628, 220, 220, 220, 2496, 62, 27740, 62, 31944, 1058, 12178, 287, 357, 15, 1539, 352, 828, 11902, 357, 12286, 28, 15, 13, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2496, 19794, 8064, 13, 628, 220, 220, 220, 474, 75, 62, 24396, 1058, 4731, 11, 11902, 357, 12286, 796, 705, 35487, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 383, 449, 43, 20128, 2446, 25, 628, 220, 220, 220, 220, 220, 220, 220, 532, 366, 35487, 1298, 1123, 7515, 286, 262, 13389, 17593, 318, 2077, 379, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 287, 399, 7, 15, 11, 16, 737, 198, 220, 220, 220, 220, 220, 220, 220, 532, 366, 15410, 8374, 1600, 1123, 7515, 286, 262, 13389, 17593, 318, 2077, 379, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 287, 1391, 12, 16, 11, 16, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 532, 366, 21170, 377, 415, 1298, 262, 717, 5752, 286, 262, 13389, 17593, 318, 2077, 379, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 287, 399, 7, 15, 11, 16, 828, 290, 1123, 5752, 318, 6492, 422, 262, 2180, 530, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 257, 530, 12, 9464, 6482, 13, 198, 220, 220, 220, 220, 220, 220, 220, 532, 366, 44579, 489, 4224, 1298, 262, 717, 5752, 290, 5721, 286, 262, 13389, 17593, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 2077, 379, 4738, 287, 399, 7, 15, 11, 16, 828, 290, 1123, 40039, 468, 257, 6937, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2077, 422, 777, 717, 15879, 13, 628, 220, 220, 220, 275, 862, 62, 32109, 1058, 20512, 11, 11902, 357, 12286, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 900, 284, 10352, 11, 12974, 10730, 26925, 318, 2900, 572, 13, 628, 220, 220, 220, 5561, 62, 565, 69, 62, 4868, 1058, 1351, 11, 11902, 357, 12286, 28, 14202, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1351, 286, 503, 2505, 13326, 4981, 284, 779, 24543, 12, 16668, 16149, 198, 220, 220, 220, 220, 220, 220, 220, 40874, 13, 383, 31029, 1438, 815, 307, 6414, 351, 9485, 3727, 13, 628, 220, 220, 220, 5561, 62, 782, 62, 565, 69, 62, 4868, 1058, 1351, 11, 11902, 357, 12286, 28, 14202, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1351, 286, 503, 2505, 13326, 4981, 5626, 284, 779, 24543, 12, 16668, 16149, 198, 220, 220, 220, 220, 220, 220, 220, 40874, 13, 383, 31029, 1438, 815, 307, 6414, 351, 9485, 3727, 13, 628, 220, 220, 220, 5561, 62, 32109, 62, 20541, 1058, 20512, 11, 11902, 357, 12286, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 900, 284, 10352, 11, 24543, 12, 16668, 16149, 40874, 318, 2900, 572, 13, 628, 220, 220, 220, 5561, 62, 565, 69, 1058, 2134, 11, 11902, 357, 12286, 25, 1341, 35720, 14534, 34605, 8081, 44292, 8, 198, 220, 220, 220, 220, 220, 220, 220, 383, 28679, 2746, 973, 284, 27665, 555, 16668, 16149, 4981, 13, 628, 220, 220, 220, 1575, 62, 754, 2701, 62, 17946, 62, 11147, 1058, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 4067, 286, 262, 2181, 13363, 1575, 17724, 11092, 329, 3047, 13, 628, 220, 220, 220, 1575, 62, 754, 2701, 62, 17946, 62, 28764, 1058, 965, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 383, 4067, 286, 262, 2181, 13363, 1575, 17724, 11092, 329, 17724, 13, 628, 220, 220, 220, 15942, 577, 1058, 493, 11, 11902, 357, 12286, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 36357, 262, 15942, 16579, 286, 262, 2615, 1429, 13, 628, 220, 220, 220, 49213, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2551, 62, 1416, 2850, 62, 1058, 299, 32152, 7177, 286, 5485, 357, 77, 62, 82, 12629, 35751, 198, 220, 220, 220, 220, 220, 220, 220, 383, 503, 2505, 8198, 286, 262, 3047, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2440, 11, 262, 517, 18801, 13, 3806, 75, 3183, 4327, 284, 423, 2440, 198, 220, 220, 220, 220, 220, 220, 220, 8198, 13, 770, 1988, 318, 1695, 1752, 262, 31029, 318, 198, 220, 220, 220, 220, 220, 220, 220, 18235, 13, 628, 220, 220, 220, 11387, 62, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 11387, 318, 1912, 319, 7559, 3642, 24979, 15506, 13, 632, 318, 262, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 77, 62, 82, 12629, 1635, 22733, 15506, 749, 18801, 8405, 287, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 12501, 1166, 62, 1416, 2850, 62, 15506, 13, 383, 11387, 318, 10488, 329, 15453, 198, 220, 220, 220, 220, 220, 220, 220, 13934, 503, 2505, 14722, 13, 628, 220, 220, 220, 14722, 62, 1058, 493, 11, 2035, 657, 393, 352, 198, 220, 220, 220, 220, 220, 220, 220, 383, 13934, 14722, 286, 262, 3047, 1366, 13, 657, 6296, 329, 287, 75, 3183, 198, 220, 220, 220, 220, 220, 220, 220, 290, 352, 329, 41528, 3183, 14, 272, 18048, 444, 13, 632, 318, 7560, 416, 11524, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 400, 10126, 62, 15506, 319, 7559, 12501, 1166, 62, 1416, 2850, 62, 15506, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 4197, 7, 944, 11, 1395, 11, 331, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 31805, 31029, 13, 331, 318, 9514, 287, 555, 16668, 16149, 5050, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 1058, 299, 32152, 7177, 286, 5485, 357, 77, 62, 82, 12629, 11, 299, 62, 40890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 5128, 8405, 13, 628, 220, 220, 220, 220, 220, 220, 220, 331, 1058, 16583, 1850, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1892, 973, 11, 1944, 329, 7824, 15794, 416, 9831, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 1058, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 376, 2175, 3959, 1352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 26571, 17311, 1395, 290, 331, 357, 25968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 2198, 62, 18747, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 82, 12629, 11, 299, 62, 40890, 796, 1395, 13, 43358, 58, 15, 4357, 1395, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 77, 62, 37724, 7, 88, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4197, 262, 2746, 290, 788, 27665, 340, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19849, 44807, 11147, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19849, 44807, 1324, 13907, 1920, 7, 55, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 262, 2551, 8198, 422, 1123, 2779, 3959, 2024, 198, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 62, 6759, 796, 45941, 13, 9107, 418, 26933, 77, 62, 82, 12629, 11, 2116, 13, 77, 62, 395, 320, 2024, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 944, 13, 77, 62, 395, 320, 2024, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 62, 6759, 58, 45299, 1312, 60, 796, 2116, 13, 19849, 44807, 8692, 62, 395, 320, 2024, 58, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 4083, 12501, 1166, 62, 1416, 2850, 62, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 8198, 1276, 307, 25713, 878, 6087, 198, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 62, 6759, 11, 2116, 13, 26675, 62, 1416, 282, 283, 62, 796, 3210, 7509, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 62, 6759, 11, 1394, 62, 1416, 282, 283, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 284, 4598, 25, 743, 1104, 584, 6087, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 24011, 1883, 6624, 705, 23913, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 796, 2811, 7, 12501, 1166, 62, 26675, 62, 6759, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 796, 12991, 1634, 7, 12501, 1166, 62, 26675, 62, 6759, 8, 628, 220, 220, 220, 220, 220, 220, 220, 6818, 357, 11925, 7, 12501, 1166, 62, 26675, 8, 6624, 299, 62, 82, 12629, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12501, 1166, 62, 1416, 2850, 62, 796, 2551, 62, 26675, 13, 25843, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 14681, 62, 12501, 1166, 62, 1416, 2850, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 628, 220, 220, 220, 825, 2551, 62, 8818, 7, 944, 11, 1395, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 47, 17407, 8246, 32172, 4776, 286, 1395, 1262, 262, 18235, 40471, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 32172, 4776, 286, 281, 5128, 6291, 318, 29231, 1912, 319, 1180, 198, 220, 220, 220, 220, 220, 220, 220, 31029, 16113, 13, 1114, 15794, 11, 41528, 3183, 389, 8686, 351, 198, 220, 220, 220, 220, 220, 220, 220, 4025, 32172, 8198, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 1058, 299, 32152, 7177, 286, 5485, 357, 77, 62, 82, 12629, 11, 299, 62, 40890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 3047, 5128, 8405, 13, 1338, 17208, 2603, 45977, 389, 6292, 691, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 484, 389, 4855, 416, 262, 2779, 3959, 1352, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 32172, 62, 1416, 2850, 1058, 299, 32152, 7177, 286, 5485, 357, 77, 62, 82, 12629, 35751, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 32172, 4776, 286, 262, 5128, 8405, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2198, 62, 271, 62, 38631, 7, 944, 11, 37250, 19849, 62, 3256, 705, 12501, 1166, 62, 1416, 2850, 62, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 400, 10126, 62, 3256, 705, 23912, 1424, 62, 6, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 2198, 62, 18747, 7, 55, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 41216, 262, 5072, 4776, 198, 220, 220, 220, 220, 220, 220, 220, 11001, 62, 1416, 2850, 796, 2116, 13, 19849, 44807, 12501, 1166, 62, 8818, 7, 55, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3210, 1096, 262, 4776, 290, 12082, 198, 220, 220, 220, 220, 220, 220, 220, 11001, 62, 1416, 2850, 796, 2116, 13, 26675, 62, 1416, 282, 283, 44807, 35636, 7, 28764, 5722, 62, 1416, 2850, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 284, 4598, 25, 743, 1104, 584, 6087, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 24011, 1883, 6624, 705, 23913, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 796, 2811, 7, 28764, 5722, 62, 1416, 2850, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2551, 62, 26675, 796, 12991, 1634, 7, 28764, 5722, 62, 1416, 2850, 8, 628, 220, 220, 220, 220, 220, 220, 220, 6818, 357, 11925, 7, 12501, 1166, 62, 26675, 8, 6624, 1395, 13, 43358, 58, 15, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2551, 62, 26675, 13, 25843, 3419, 198 ]
2.730462
2,879
from jiwer import wer import os import sys gt_file = sys.argv[1] pred_file = sys.argv[2] with open(gt_file) as f: gt_lines = f.readlines() gt_lines = [' '.join(x.strip().split()) for x in gt_lines] print(len(gt_lines)) with open(pred_file) as f: pred_lines = f.readlines() pred_lines = [' '.join(x.strip().split()) for x in pred_lines] print(len(pred_lines)) cerr = total_cer(gt_lines, pred_lines) werr = total_wer(gt_lines, pred_lines) serr = total_ser(gt_lines, pred_lines) print("CER:", cerr) print("WER:", werr) print("SER:", serr)
[ 6738, 474, 14246, 263, 1330, 266, 263, 628, 628, 198, 198, 11748, 28686, 198, 11748, 25064, 198, 198, 13655, 62, 7753, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 28764, 62, 7753, 220, 796, 25064, 13, 853, 85, 58, 17, 60, 198, 198, 4480, 1280, 7, 13655, 62, 7753, 8, 355, 277, 25, 198, 220, 220, 220, 308, 83, 62, 6615, 796, 277, 13, 961, 6615, 3419, 198, 13655, 62, 6615, 796, 37250, 45302, 22179, 7, 87, 13, 36311, 22446, 35312, 28955, 329, 2124, 287, 308, 83, 62, 6615, 60, 198, 198, 4798, 7, 11925, 7, 13655, 62, 6615, 4008, 198, 4480, 1280, 7, 28764, 62, 7753, 8, 355, 277, 25, 198, 220, 220, 220, 2747, 62, 6615, 796, 277, 13, 961, 6615, 3419, 198, 28764, 62, 6615, 796, 37250, 45302, 22179, 7, 87, 13, 36311, 22446, 35312, 28955, 329, 2124, 287, 2747, 62, 6615, 60, 198, 198, 4798, 7, 11925, 7, 28764, 62, 6615, 4008, 198, 2189, 81, 796, 2472, 62, 2189, 7, 13655, 62, 6615, 11, 2747, 62, 6615, 8, 198, 86, 8056, 796, 2472, 62, 15448, 7, 13655, 62, 6615, 11, 2747, 62, 6615, 8, 198, 2655, 81, 796, 2472, 62, 2655, 7, 13655, 62, 6615, 11, 2747, 62, 6615, 8, 198, 198, 4798, 7203, 34, 1137, 25, 1600, 269, 8056, 8, 198, 4798, 7203, 45532, 25, 1600, 266, 8056, 8, 198, 4798, 7203, 35009, 25, 1600, 1055, 81, 8, 198 ]
2.361702
235
from pydantic import BaseModel
[ 6738, 279, 5173, 5109, 1330, 7308, 17633, 198 ]
3.875
8
import networkx as nx import numpy as np import math import pandas as pd from networkx.drawing.nx_agraph import graphviz_layout import matplotlib from time import gmtime, strftime import scipy margFeat=[]
[ 11748, 3127, 87, 355, 299, 87, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 10688, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 3127, 87, 13, 19334, 278, 13, 77, 87, 62, 6111, 1330, 4823, 85, 528, 62, 39786, 198, 11748, 2603, 29487, 8019, 198, 6738, 640, 1330, 308, 76, 2435, 11, 965, 31387, 198, 11748, 629, 541, 88, 198, 198, 30887, 37, 4098, 28, 21737, 628, 628, 220, 220, 220, 220, 198, 220, 220, 220, 628, 220, 220, 220, 220, 198 ]
2.698795
83
class EstadBoton: '''Esta clase maneja la configuracion del tablero, ya sea el valor de las casillas, los colores, y el estado de los botones '''
[ 4871, 10062, 324, 33, 18970, 25, 201, 198, 197, 7061, 6, 22362, 64, 537, 589, 582, 68, 6592, 8591, 4566, 333, 49443, 1619, 7400, 1754, 78, 11, 201, 198, 197, 21349, 5417, 1288, 1188, 273, 390, 39990, 6124, 25314, 11, 22346, 951, 2850, 11, 331, 1288, 1556, 4533, 390, 22346, 10214, 1952, 705, 7061, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 197, 201, 198, 201, 198, 201, 198 ]
1.842105
114
""" Linear regression objects for panel data """ # pylint: disable-msg=W0231 # pylint: disable-msg=E1101,E1103 from __future__ import division from pandas.compat import range from pandas import compat import warnings import numpy as np from pandas.core.panel import Panel from pandas.core.frame import DataFrame from pandas.core.reshape import get_dummies from pandas.core.series import Series from pandas.core.sparse import SparsePanel from pandas.stats.ols import OLS, MovingOLS import pandas.stats.common as com import pandas.stats.math as math from pandas.util.decorators import cache_readonly class PanelOLS(OLS): """Implements panel OLS. See ols function docs """ _panel_model = True def _prepare_data(self): """Cleans and stacks input data into DataFrame objects If time effects is True, then we turn off intercepts and omit an item from every (entity and x) fixed effect. Otherwise: - If we have an intercept, we omit an item from every fixed effect. - Else, we omit an item from every fixed effect except one of them. The categorical variables will get dropped from x. """ (x, x_filtered, y, weights, cat_mapping) = self._filter_data() self.log('Adding dummies to X variables') x = self._add_dummies(x, cat_mapping) self.log('Adding dummies to filtered X variables') x_filtered = self._add_dummies(x_filtered, cat_mapping) if self._x_effects: x = x.drop(self._x_effects, axis=1) x_filtered = x_filtered.drop(self._x_effects, axis=1) if self._time_effects: x_regressor = x.sub(x.mean(level=0), level=0) unstacked_y = y.unstack() y_regressor = unstacked_y.sub(unstacked_y.mean(1), axis=0).stack() y_regressor.index = y.index elif self._intercept: # only add intercept when no time effects self.log('Adding intercept') x = x_regressor = add_intercept(x) x_filtered = add_intercept(x_filtered) y_regressor = y else: self.log('No intercept added') x_regressor = x y_regressor = y if weights is not None: if not y_regressor.index.equals(weights.index): raise AssertionError("y_regressor and weights must have the " "same index") if not x_regressor.index.equals(weights.index): raise AssertionError("x_regressor and weights must have the " "same index") rt_weights = np.sqrt(weights) y_regressor = y_regressor * rt_weights x_regressor = x_regressor.mul(rt_weights, axis=0) return x, x_regressor, x_filtered, y, y_regressor def _filter_data(self): """ """ data = self._x_orig cat_mapping = {} if isinstance(data, DataFrame): data = data.to_panel() else: if isinstance(data, Panel): data = data.copy() if not isinstance(data, SparsePanel): data, cat_mapping = self._convert_x(data) if not isinstance(data, Panel): data = Panel.from_dict(data, intersect=True) x_names = data.items if self._weights is not None: data['__weights__'] = self._weights # Filter x's without y (so we can make a prediction) filtered = data.to_frame() # Filter all data together using to_frame # convert to DataFrame y = self._y_orig if isinstance(y, Series): y = y.unstack() data['__y__'] = y data_long = data.to_frame() x_filt = filtered.filter(x_names) x = data_long.filter(x_names) y = data_long['__y__'] if self._weights is not None and not self._weights.empty: weights = data_long['__weights__'] else: weights = None return x, x_filt, y, weights, cat_mapping def _add_dummies(self, panel, mapping): """ Add entity and / or categorical dummies to input X DataFrame Returns ------- DataFrame """ panel = self._add_entity_effects(panel) panel = self._add_categorical_dummies(panel, mapping) return panel def _add_entity_effects(self, panel): """ Add entity dummies to panel Returns ------- DataFrame """ from pandas.core.reshape import make_axis_dummies if not self._entity_effects: return panel self.log('-- Adding entity fixed effect dummies') dummies = make_axis_dummies(panel, 'minor') if not self._use_all_dummies: if 'entity' in self._dropped_dummies: to_exclude = str(self._dropped_dummies.get('entity')) else: to_exclude = dummies.columns[0] if to_exclude not in dummies.columns: raise Exception('%s not in %s' % (to_exclude, dummies.columns)) self.log('-- Excluding dummy for entity: %s' % to_exclude) dummies = dummies.filter(dummies.columns.difference([to_exclude])) dummies = dummies.add_prefix('FE_') panel = panel.join(dummies) return panel def _add_categorical_dummies(self, panel, cat_mappings): """ Add categorical dummies to panel Returns ------- DataFrame """ if not self._x_effects: return panel dropped_dummy = (self._entity_effects and not self._use_all_dummies) for effect in self._x_effects: self.log('-- Adding fixed effect dummies for %s' % effect) dummies = get_dummies(panel[effect]) val_map = cat_mappings.get(effect) if val_map: val_map = dict((v, k) for k, v in compat.iteritems(val_map)) if dropped_dummy or not self._use_all_dummies: if effect in self._dropped_dummies: to_exclude = mapped_name = self._dropped_dummies.get( effect) if val_map: mapped_name = val_map[to_exclude] else: to_exclude = mapped_name = dummies.columns[0] if mapped_name not in dummies.columns: # pragma: no cover raise Exception('%s not in %s' % (to_exclude, dummies.columns)) self.log( '-- Excluding dummy for %s: %s' % (effect, to_exclude)) dummies = dummies.filter(dummies.columns.difference([mapped_name])) dropped_dummy = True dummies = _convertDummies(dummies, cat_mappings.get(effect)) dummies = dummies.add_prefix('%s_' % effect) panel = panel.join(dummies) return panel @property def _use_all_dummies(self): """ In the case of using an intercept or including time fixed effects, completely partitioning the sample would make the X not full rank. """ return (not self._intercept and not self._time_effects) @cache_readonly def _beta_raw(self): """Runs the regression and returns the beta.""" X = self._x_trans.values Y = self._y_trans.values.squeeze() beta, _, _, _ = np.linalg.lstsq(X, Y) return beta @cache_readonly @cache_readonly def _df_model_raw(self): """Returns the raw model degrees of freedom.""" return self._df_raw - 1 @cache_readonly def _df_resid_raw(self): """Returns the raw residual degrees of freedom.""" return self._nobs - self._df_raw @cache_readonly def _df_raw(self): """Returns the degrees of freedom.""" df = math.rank(self._x_trans.values) if self._time_effects: df += self._total_times return df @cache_readonly @property @cache_readonly def _r2_adj_raw(self): """Returns the raw r-squared adjusted values.""" nobs = self._nobs factors = (nobs - 1) / (nobs - self._df_raw) return 1 - (1 - self._r2_raw) * factors @cache_readonly @cache_readonly @cache_readonly def _rmse_raw(self): """Returns the raw rmse values.""" # X = self._x.values # Y = self._y.values.squeeze() X = self._x_trans.values Y = self._y_trans.values.squeeze() resid = Y - np.dot(X, self._beta_raw) ss = (resid ** 2).sum() return np.sqrt(ss / (self._nobs - self._df_raw)) @cache_readonly @cache_readonly def _y_fitted_raw(self): """Returns the raw fitted y values.""" return np.dot(self._x.values, self._beta_raw) @cache_readonly @cache_readonly @cache_readonly @property def add_intercept(panel, name='intercept'): """ Add column of ones to input panel Parameters ---------- panel: Panel / DataFrame name: string, default 'intercept'] Returns ------- New object (same type as input) """ panel = panel.copy() panel[name] = 1. return panel.consolidate() class MovingPanelOLS(MovingOLS, PanelOLS): """Implements rolling/expanding panel OLS. See ols function docs """ _panel_model = True @cache_readonly @cache_readonly @cache_readonly def y_predict(self): """Returns the predicted y values.""" return self._unstack_y(self._y_predict_raw) def lagged_y_predict(self, lag=1): """ Compute forecast Y value lagging coefficient by input number of time periods Parameters ---------- lag : int Returns ------- DataFrame """ x = self._x.values betas = self._beta_matrix(lag=lag) return self._unstack_y((betas * x).sum(1)) @cache_readonly @cache_readonly def _df_raw(self): """Returns the degrees of freedom.""" df = self._rolling_rank() if self._time_effects: df += self._window_time_obs return df[self._valid_indices] @cache_readonly def _var_beta_raw(self): """Returns the raw covariance of beta.""" x = self._x y = self._y dates = x.index.levels[0] cluster_axis = None if self._cluster == 'time': cluster_axis = 0 elif self._cluster == 'entity': cluster_axis = 1 nobs = self._nobs rmse = self._rmse_raw beta = self._beta_raw df = self._df_raw window = self._window if not self._time_effects: # Non-transformed X cum_xx = self._cum_xx(x) results = [] for n, i in enumerate(self._valid_indices): if self._is_rolling and i >= window: prior_date = dates[i - window + 1] else: prior_date = dates[0] date = dates[i] x_slice = x.truncate(prior_date, date) y_slice = y.truncate(prior_date, date) if self._time_effects: xx = _xx_time_effects(x_slice, y_slice) else: xx = cum_xx[i] if self._is_rolling and i >= window: xx = xx - cum_xx[i - window] result = _var_beta_panel(y_slice, x_slice, beta[n], xx, rmse[n], cluster_axis, self._nw_lags, nobs[n], df[n], self._nw_overlap) results.append(result) return np.array(results) @cache_readonly @cache_readonly @cache_readonly def _y_predict_raw(self): """Returns the raw predicted y values.""" x = self._x.values betas = self._beta_matrix(lag=1) return (betas * x).sum(1) @cache_readonly class NonPooledPanelOLS(object): """Implements non-pooled panel OLS. Parameters ---------- y : DataFrame x : Series, DataFrame, or dict of Series intercept : bool True if you want an intercept. nw_lags : None or int Number of Newey-West lags. window_type : {'full_sample', 'rolling', 'expanding'} 'full_sample' by default window : int size of window (for rolling/expanding OLS) """ ATTRIBUTES = [ 'beta', 'df', 'df_model', 'df_resid', 'f_stat', 'p_value', 'r2', 'r2_adj', 'resid', 'rmse', 'std_err', 'summary_as_matrix', 't_stat', 'var_beta', 'x', 'y', 'y_fitted', 'y_predict' ] def _group_agg(values, bounds, f): """ R-style aggregator Parameters ---------- values : N-length or N x K ndarray bounds : B-length ndarray f : ndarray aggregation function Returns ------- ndarray with same length as bounds array """ if values.ndim == 1: N = len(values) result = np.empty(len(bounds), dtype=float) elif values.ndim == 2: N, K = values.shape result = np.empty((len(bounds), K), dtype=float) testagg = f(values[:min(1, len(values))]) if isinstance(testagg, np.ndarray) and testagg.ndim == 2: raise AssertionError('Function must reduce') for i, left_bound in enumerate(bounds): if i == len(bounds) - 1: right_bound = N else: right_bound = bounds[i + 1] result[i] = f(values[left_bound:right_bound]) return result def _xx_time_effects(x, y): """ Returns X'X - (X'T) (T'T)^-1 (T'X) """ # X'X xx = np.dot(x.values.T, x.values) xt = x.sum(level=0).values count = y.unstack().count(1).values selector = count > 0 # X'X - (T'T)^-1 (T'X) xt = xt[selector] count = count[selector] return xx - np.dot(xt.T / count, xt)
[ 37811, 198, 14993, 451, 20683, 5563, 329, 6103, 1366, 198, 37811, 198, 198, 2, 279, 2645, 600, 25, 15560, 12, 19662, 28, 54, 15, 25667, 198, 2, 279, 2645, 600, 25, 15560, 12, 19662, 28, 36, 1157, 486, 11, 36, 11442, 18, 198, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 6738, 19798, 292, 13, 5589, 265, 1330, 2837, 198, 6738, 19798, 292, 1330, 8330, 198, 11748, 14601, 198, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 19798, 292, 13, 7295, 13, 35330, 1330, 18810, 198, 6738, 19798, 292, 13, 7295, 13, 14535, 1330, 6060, 19778, 198, 6738, 19798, 292, 13, 7295, 13, 3447, 1758, 1330, 651, 62, 67, 39578, 198, 6738, 19798, 292, 13, 7295, 13, 25076, 1330, 7171, 198, 6738, 19798, 292, 13, 7295, 13, 82, 29572, 1330, 1338, 17208, 26639, 198, 6738, 19798, 292, 13, 34242, 13, 10220, 1330, 440, 6561, 11, 26768, 3535, 50, 198, 11748, 19798, 292, 13, 34242, 13, 11321, 355, 401, 198, 11748, 19798, 292, 13, 34242, 13, 11018, 355, 10688, 198, 6738, 19798, 292, 13, 22602, 13, 12501, 273, 2024, 1330, 12940, 62, 961, 8807, 628, 198, 4871, 18810, 3535, 50, 7, 3535, 50, 2599, 198, 220, 220, 220, 37227, 3546, 1154, 902, 6103, 440, 6561, 13, 628, 220, 220, 220, 4091, 267, 7278, 2163, 34165, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4808, 35330, 62, 19849, 796, 6407, 628, 220, 220, 220, 825, 4808, 46012, 533, 62, 7890, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 34, 11861, 290, 24285, 5128, 1366, 656, 6060, 19778, 5563, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 640, 3048, 318, 6407, 11, 788, 356, 1210, 572, 15788, 82, 290, 42848, 281, 2378, 198, 220, 220, 220, 220, 220, 220, 220, 422, 790, 357, 26858, 290, 2124, 8, 5969, 1245, 13, 628, 220, 220, 220, 220, 220, 220, 220, 15323, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1002, 356, 423, 281, 15788, 11, 356, 42848, 281, 2378, 422, 790, 5969, 1245, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25974, 11, 356, 42848, 281, 2378, 422, 790, 5969, 1245, 2845, 530, 286, 606, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4253, 12409, 9633, 481, 651, 5710, 422, 2124, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 357, 87, 11, 2124, 62, 10379, 4400, 11, 331, 11, 19590, 11, 3797, 62, 76, 5912, 8, 796, 2116, 13557, 24455, 62, 7890, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 32901, 288, 39578, 284, 1395, 9633, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13557, 2860, 62, 67, 39578, 7, 87, 11, 3797, 62, 76, 5912, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 32901, 288, 39578, 284, 29083, 1395, 9633, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 10379, 4400, 796, 2116, 13557, 2860, 62, 67, 39578, 7, 87, 62, 10379, 4400, 11, 3797, 62, 76, 5912, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 87, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 13, 14781, 7, 944, 13557, 87, 62, 34435, 11, 16488, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 10379, 4400, 796, 2124, 62, 10379, 4400, 13, 14781, 7, 944, 13557, 87, 62, 34435, 11, 16488, 28, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2435, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 2301, 44292, 796, 2124, 13, 7266, 7, 87, 13, 32604, 7, 5715, 28, 15, 828, 1241, 28, 15, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15014, 6021, 62, 88, 796, 331, 13, 403, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 2301, 44292, 796, 15014, 6021, 62, 88, 13, 7266, 7, 403, 301, 6021, 62, 88, 13, 32604, 7, 16, 828, 16488, 28, 15, 737, 25558, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 2301, 44292, 13, 9630, 796, 331, 13, 9630, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13557, 3849, 984, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 691, 751, 15788, 618, 645, 640, 3048, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 32901, 15788, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 62, 2301, 44292, 796, 751, 62, 3849, 984, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 10379, 4400, 796, 751, 62, 3849, 984, 7, 87, 62, 10379, 4400, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 2301, 44292, 796, 331, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 2949, 15788, 2087, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 2301, 44292, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 2301, 44292, 796, 331, 628, 220, 220, 220, 220, 220, 220, 220, 611, 19590, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 331, 62, 2301, 44292, 13, 9630, 13, 4853, 874, 7, 43775, 13, 9630, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7203, 88, 62, 2301, 44292, 290, 19590, 1276, 423, 262, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 31642, 6376, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2124, 62, 2301, 44292, 13, 9630, 13, 4853, 874, 7, 43775, 13, 9630, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7203, 87, 62, 2301, 44292, 290, 19590, 1276, 423, 262, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 31642, 6376, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 83, 62, 43775, 796, 45941, 13, 31166, 17034, 7, 43775, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 2301, 44292, 796, 331, 62, 2301, 44292, 1635, 374, 83, 62, 43775, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 2301, 44292, 796, 2124, 62, 2301, 44292, 13, 76, 377, 7, 17034, 62, 43775, 11, 16488, 28, 15, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2124, 11, 2124, 62, 2301, 44292, 11, 2124, 62, 10379, 4400, 11, 331, 11, 331, 62, 2301, 44292, 628, 220, 220, 220, 825, 4808, 24455, 62, 7890, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13557, 87, 62, 11612, 198, 220, 220, 220, 220, 220, 220, 220, 3797, 62, 76, 5912, 796, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 7890, 11, 6060, 19778, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1366, 13, 1462, 62, 35330, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 7890, 11, 18810, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1366, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 7890, 11, 1338, 17208, 26639, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 3797, 62, 76, 5912, 796, 2116, 13557, 1102, 1851, 62, 87, 7, 7890, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 7890, 11, 18810, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 18810, 13, 6738, 62, 11600, 7, 7890, 11, 36177, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 14933, 796, 1366, 13, 23814, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 43775, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 834, 43775, 834, 20520, 796, 2116, 13557, 43775, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 2124, 338, 1231, 331, 357, 568, 356, 460, 787, 257, 17724, 8, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 796, 1366, 13, 1462, 62, 14535, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 477, 1366, 1978, 1262, 284, 62, 14535, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 10385, 284, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 2116, 13557, 88, 62, 11612, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 88, 11, 7171, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 796, 331, 13, 403, 25558, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1366, 17816, 834, 88, 834, 20520, 796, 331, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 6511, 796, 1366, 13, 1462, 62, 14535, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 69, 2326, 796, 29083, 13, 24455, 7, 87, 62, 14933, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 1366, 62, 6511, 13, 24455, 7, 87, 62, 14933, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 1366, 62, 6511, 17816, 834, 88, 834, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 43775, 318, 407, 6045, 290, 407, 2116, 13557, 43775, 13, 28920, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19590, 796, 1366, 62, 6511, 17816, 834, 43775, 834, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19590, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2124, 11, 2124, 62, 69, 2326, 11, 331, 11, 19590, 11, 3797, 62, 76, 5912, 628, 220, 220, 220, 825, 4808, 2860, 62, 67, 39578, 7, 944, 11, 6103, 11, 16855, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3060, 9312, 290, 1220, 393, 4253, 12409, 288, 39578, 284, 5128, 1395, 6060, 19778, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6103, 796, 2116, 13557, 2860, 62, 26858, 62, 34435, 7, 35330, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6103, 796, 2116, 13557, 2860, 62, 66, 2397, 12409, 62, 67, 39578, 7, 35330, 11, 16855, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 6103, 628, 220, 220, 220, 825, 4808, 2860, 62, 26858, 62, 34435, 7, 944, 11, 6103, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3060, 9312, 288, 39578, 284, 6103, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 19798, 292, 13, 7295, 13, 3447, 1758, 1330, 787, 62, 22704, 62, 67, 39578, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 26858, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6103, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 438, 18247, 9312, 5969, 1245, 288, 39578, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 787, 62, 22704, 62, 67, 39578, 7, 35330, 11, 705, 1084, 273, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 1904, 62, 439, 62, 67, 39578, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 26858, 6, 287, 2116, 13557, 22285, 1496, 62, 67, 39578, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 1069, 9152, 796, 965, 7, 944, 13557, 22285, 1496, 62, 67, 39578, 13, 1136, 10786, 26858, 6, 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, 284, 62, 1069, 9152, 796, 288, 39578, 13, 28665, 82, 58, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 284, 62, 1069, 9152, 407, 287, 288, 39578, 13, 28665, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 10786, 4, 82, 407, 287, 4064, 82, 6, 4064, 357, 1462, 62, 1069, 9152, 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, 288, 39578, 13, 28665, 82, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 438, 1475, 6360, 31548, 329, 9312, 25, 4064, 82, 6, 4064, 284, 62, 1069, 9152, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 288, 39578, 13, 24455, 7, 67, 39578, 13, 28665, 82, 13, 26069, 1945, 26933, 1462, 62, 1069, 9152, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 288, 39578, 13, 2860, 62, 40290, 10786, 15112, 62, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 6103, 796, 6103, 13, 22179, 7, 67, 39578, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 6103, 628, 220, 220, 220, 825, 4808, 2860, 62, 66, 2397, 12409, 62, 67, 39578, 7, 944, 11, 6103, 11, 3797, 62, 76, 39242, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3060, 4253, 12409, 288, 39578, 284, 6103, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 87, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6103, 628, 220, 220, 220, 220, 220, 220, 220, 5710, 62, 67, 13513, 796, 357, 944, 13557, 26858, 62, 34435, 290, 407, 2116, 13557, 1904, 62, 439, 62, 67, 39578, 8, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1245, 287, 2116, 13557, 87, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 10786, 438, 18247, 5969, 1245, 288, 39578, 329, 4064, 82, 6, 4064, 1245, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 651, 62, 67, 39578, 7, 35330, 58, 10760, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 62, 8899, 796, 3797, 62, 76, 39242, 13, 1136, 7, 10760, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1188, 62, 8899, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 62, 8899, 796, 8633, 19510, 85, 11, 479, 8, 329, 479, 11, 410, 287, 8330, 13, 2676, 23814, 7, 2100, 62, 8899, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5710, 62, 67, 13513, 393, 407, 2116, 13557, 1904, 62, 439, 62, 67, 39578, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1245, 287, 2116, 13557, 22285, 1496, 62, 67, 39578, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 1069, 9152, 796, 27661, 62, 3672, 796, 2116, 13557, 22285, 1496, 62, 67, 39578, 13, 1136, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1245, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1188, 62, 8899, 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, 27661, 62, 3672, 796, 1188, 62, 8899, 58, 1462, 62, 1069, 9152, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 1069, 9152, 796, 27661, 62, 3672, 796, 288, 39578, 13, 28665, 82, 58, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 27661, 62, 3672, 407, 287, 288, 39578, 13, 28665, 82, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 10786, 4, 82, 407, 287, 4064, 82, 6, 4064, 357, 1462, 62, 1069, 9152, 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, 288, 39578, 13, 28665, 82, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 438, 1475, 6360, 31548, 329, 4064, 82, 25, 4064, 82, 6, 4064, 357, 10760, 11, 284, 62, 1069, 9152, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 288, 39578, 13, 24455, 7, 67, 39578, 13, 28665, 82, 13, 26069, 1945, 26933, 76, 6320, 62, 3672, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5710, 62, 67, 13513, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 4808, 1102, 1851, 35, 39578, 7, 67, 39578, 11, 3797, 62, 76, 39242, 13, 1136, 7, 10760, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 39578, 796, 288, 39578, 13, 2860, 62, 40290, 10786, 4, 82, 62, 6, 4064, 1245, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6103, 796, 6103, 13, 22179, 7, 67, 39578, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 6103, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 4808, 1904, 62, 439, 62, 67, 39578, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 554, 262, 1339, 286, 1262, 281, 15788, 393, 1390, 640, 5969, 198, 220, 220, 220, 220, 220, 220, 220, 3048, 11, 3190, 18398, 278, 262, 6291, 561, 787, 262, 1395, 198, 220, 220, 220, 220, 220, 220, 220, 407, 1336, 4279, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 1662, 2116, 13557, 3849, 984, 290, 407, 2116, 13557, 2435, 62, 34435, 8, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 31361, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10987, 82, 262, 20683, 290, 5860, 262, 12159, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 2116, 13557, 87, 62, 7645, 13, 27160, 198, 220, 220, 220, 220, 220, 220, 220, 575, 796, 2116, 13557, 88, 62, 7645, 13, 27160, 13, 16485, 1453, 2736, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 12159, 11, 4808, 11, 4808, 11, 4808, 796, 45941, 13, 75, 1292, 70, 13, 75, 6448, 80, 7, 55, 11, 575, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 12159, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 7568, 62, 19849, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 2746, 7370, 286, 4925, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 7568, 62, 1831, 532, 352, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 7568, 62, 411, 312, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 29598, 7370, 286, 4925, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 77, 8158, 532, 2116, 13557, 7568, 62, 1831, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 7568, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 7370, 286, 4925, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 10688, 13, 43027, 7, 944, 13557, 87, 62, 7645, 13, 27160, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2435, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 15853, 2116, 13557, 23350, 62, 22355, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 47764, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 81, 17, 62, 41255, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 374, 12, 16485, 1144, 12328, 3815, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 645, 1443, 796, 2116, 13557, 77, 8158, 198, 220, 220, 220, 220, 220, 220, 220, 5087, 796, 357, 77, 8158, 532, 352, 8, 1220, 357, 77, 8158, 532, 2116, 13557, 7568, 62, 1831, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 352, 532, 357, 16, 532, 2116, 13557, 81, 17, 62, 1831, 8, 1635, 5087, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 26224, 325, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 42721, 325, 3815, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1395, 796, 2116, 13557, 87, 13, 27160, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 575, 796, 2116, 13557, 88, 13, 27160, 13, 16485, 1453, 2736, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 2116, 13557, 87, 62, 7645, 13, 27160, 198, 220, 220, 220, 220, 220, 220, 220, 575, 796, 2116, 13557, 88, 62, 7645, 13, 27160, 13, 16485, 1453, 2736, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 15384, 796, 575, 532, 45941, 13, 26518, 7, 55, 11, 2116, 13557, 31361, 62, 1831, 8, 198, 220, 220, 220, 220, 220, 220, 220, 37786, 796, 357, 411, 312, 12429, 362, 737, 16345, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 31166, 17034, 7, 824, 1220, 357, 944, 13557, 77, 8158, 532, 2116, 13557, 7568, 62, 1831, 4008, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 88, 62, 38631, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 18235, 331, 3815, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 26518, 7, 944, 13557, 87, 13, 27160, 11, 2116, 13557, 31361, 62, 1831, 8, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 26745, 628, 628, 198, 4299, 751, 62, 3849, 984, 7, 35330, 11, 1438, 11639, 3849, 984, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3060, 5721, 286, 3392, 284, 5128, 6103, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 6103, 25, 18810, 1220, 6060, 19778, 198, 220, 220, 220, 1438, 25, 4731, 11, 4277, 705, 3849, 984, 20520, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 968, 2134, 357, 31642, 2099, 355, 5128, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6103, 796, 6103, 13, 30073, 3419, 198, 220, 220, 220, 6103, 58, 3672, 60, 796, 352, 13, 628, 220, 220, 220, 1441, 6103, 13, 5936, 10180, 378, 3419, 628, 198, 4871, 26768, 26639, 3535, 50, 7, 33622, 3535, 50, 11, 18810, 3535, 50, 2599, 198, 220, 220, 220, 37227, 3546, 1154, 902, 10708, 14, 11201, 27225, 6103, 440, 6561, 13, 628, 220, 220, 220, 4091, 267, 7278, 2163, 34165, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4808, 35330, 62, 19849, 796, 6407, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 331, 62, 79, 17407, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 11001, 331, 3815, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 403, 25558, 62, 88, 7, 944, 13557, 88, 62, 79, 17407, 62, 1831, 8, 628, 220, 220, 220, 825, 300, 14655, 62, 88, 62, 79, 17407, 7, 944, 11, 19470, 28, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3082, 1133, 11092, 575, 1988, 300, 16406, 35381, 416, 5128, 1271, 198, 220, 220, 220, 220, 220, 220, 220, 286, 640, 9574, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 19470, 1058, 493, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13557, 87, 13, 27160, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 796, 2116, 13557, 31361, 62, 6759, 8609, 7, 30909, 28, 30909, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 403, 25558, 62, 88, 19510, 11181, 292, 1635, 2124, 737, 16345, 7, 16, 4008, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 7568, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 7370, 286, 4925, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 2116, 13557, 18886, 62, 43027, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2435, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 15853, 2116, 13557, 17497, 62, 2435, 62, 8158, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 47764, 58, 944, 13557, 12102, 62, 521, 1063, 60, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 7785, 62, 31361, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 44829, 590, 286, 12159, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13557, 87, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 2116, 13557, 88, 628, 220, 220, 220, 220, 220, 220, 220, 9667, 796, 2124, 13, 9630, 13, 46170, 58, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 13946, 62, 22704, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 565, 5819, 6624, 705, 2435, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13946, 62, 22704, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13557, 565, 5819, 6624, 705, 26858, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13946, 62, 22704, 796, 352, 628, 220, 220, 220, 220, 220, 220, 220, 645, 1443, 796, 2116, 13557, 77, 8158, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 325, 796, 2116, 13557, 26224, 325, 62, 1831, 198, 220, 220, 220, 220, 220, 220, 220, 12159, 796, 2116, 13557, 31361, 62, 1831, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 2116, 13557, 7568, 62, 1831, 198, 220, 220, 220, 220, 220, 220, 220, 4324, 796, 2116, 13557, 17497, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 2435, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8504, 12, 7645, 12214, 1395, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10973, 62, 5324, 796, 2116, 13557, 36340, 62, 5324, 7, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 299, 11, 1312, 287, 27056, 378, 7, 944, 13557, 12102, 62, 521, 1063, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 271, 62, 18886, 290, 1312, 18189, 4324, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3161, 62, 4475, 796, 9667, 58, 72, 532, 4324, 1343, 352, 60, 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, 3161, 62, 4475, 796, 9667, 58, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3128, 796, 9667, 58, 72, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 48369, 796, 2124, 13, 2213, 19524, 378, 7, 3448, 273, 62, 4475, 11, 3128, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 48369, 796, 331, 13, 2213, 19524, 378, 7, 3448, 273, 62, 4475, 11, 3128, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2435, 62, 34435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31383, 796, 4808, 5324, 62, 2435, 62, 34435, 7, 87, 62, 48369, 11, 331, 62, 48369, 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, 31383, 796, 10973, 62, 5324, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 271, 62, 18886, 290, 1312, 18189, 4324, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31383, 796, 31383, 532, 10973, 62, 5324, 58, 72, 532, 4324, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 4808, 7785, 62, 31361, 62, 35330, 7, 88, 62, 48369, 11, 2124, 62, 48369, 11, 12159, 58, 77, 4357, 31383, 11, 42721, 325, 58, 77, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13946, 62, 22704, 11, 2116, 13557, 47516, 62, 75, 3775, 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, 645, 1443, 58, 77, 4357, 47764, 58, 77, 4357, 2116, 13557, 47516, 62, 2502, 37796, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 13, 33295, 7, 20274, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 18747, 7, 43420, 8, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 198, 220, 220, 220, 825, 4808, 88, 62, 79, 17407, 62, 1831, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 8246, 11001, 331, 3815, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13557, 87, 13, 27160, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 796, 2116, 13557, 31361, 62, 6759, 8609, 7, 30909, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 11181, 292, 1635, 2124, 737, 16345, 7, 16, 8, 628, 220, 220, 220, 2488, 23870, 62, 961, 8807, 628, 628, 198, 4871, 8504, 27201, 276, 26639, 3535, 50, 7, 15252, 2599, 198, 220, 220, 220, 37227, 3546, 1154, 902, 1729, 12, 7742, 276, 6103, 440, 6561, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 331, 1058, 6060, 19778, 198, 220, 220, 220, 2124, 1058, 7171, 11, 6060, 19778, 11, 393, 8633, 286, 7171, 198, 220, 220, 220, 15788, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 611, 345, 765, 281, 15788, 13, 198, 220, 220, 220, 299, 86, 62, 75, 3775, 1058, 6045, 393, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 968, 2959, 12, 15045, 300, 3775, 13, 198, 220, 220, 220, 4324, 62, 4906, 1058, 1391, 6, 12853, 62, 39873, 3256, 705, 18886, 3256, 705, 11201, 27225, 6, 92, 198, 220, 220, 220, 220, 220, 220, 220, 705, 12853, 62, 39873, 6, 416, 4277, 198, 220, 220, 220, 4324, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 286, 4324, 357, 1640, 10708, 14, 11201, 27225, 440, 6561, 8, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 5161, 5446, 9865, 3843, 1546, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31361, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7568, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7568, 62, 19849, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7568, 62, 411, 312, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 69, 62, 14269, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 79, 62, 8367, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 17, 62, 41255, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 411, 312, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 26224, 325, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 19282, 62, 8056, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 49736, 62, 292, 62, 6759, 8609, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 83, 62, 14269, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7785, 62, 31361, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 87, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 88, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 88, 62, 38631, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 88, 62, 79, 17407, 6, 198, 220, 220, 220, 2361, 628, 198, 4299, 4808, 8094, 62, 9460, 7, 27160, 11, 22303, 11, 277, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 371, 12, 7635, 13262, 1352, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 3815, 1058, 399, 12, 13664, 393, 399, 2124, 509, 299, 67, 18747, 198, 220, 220, 220, 22303, 1058, 347, 12, 13664, 299, 67, 18747, 198, 220, 220, 220, 277, 1058, 299, 67, 18747, 46500, 2163, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 299, 67, 18747, 351, 976, 4129, 355, 22303, 7177, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 3815, 13, 358, 320, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 18896, 7, 27160, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 45941, 13, 28920, 7, 11925, 7, 65, 3733, 828, 288, 4906, 28, 22468, 8, 198, 220, 220, 220, 1288, 361, 3815, 13, 358, 320, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 399, 11, 509, 796, 3815, 13, 43358, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 45941, 13, 28920, 19510, 11925, 7, 65, 3733, 828, 509, 828, 288, 4906, 28, 22468, 8, 628, 220, 220, 220, 1332, 9460, 796, 277, 7, 27160, 58, 25, 1084, 7, 16, 11, 18896, 7, 27160, 4008, 12962, 198, 220, 220, 220, 611, 318, 39098, 7, 9288, 9460, 11, 45941, 13, 358, 18747, 8, 290, 1332, 9460, 13, 358, 320, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 10786, 22203, 1276, 4646, 11537, 628, 220, 220, 220, 329, 1312, 11, 1364, 62, 7784, 287, 27056, 378, 7, 65, 3733, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 6624, 18896, 7, 65, 3733, 8, 532, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 7784, 796, 399, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 7784, 796, 22303, 58, 72, 1343, 352, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 72, 60, 796, 277, 7, 27160, 58, 9464, 62, 7784, 25, 3506, 62, 7784, 12962, 628, 220, 220, 220, 1441, 1255, 198, 198, 4299, 4808, 5324, 62, 2435, 62, 34435, 7, 87, 11, 331, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 1395, 6, 55, 532, 357, 55, 6, 51, 8, 357, 51, 6, 51, 8, 61, 12, 16, 357, 51, 6, 55, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1395, 6, 55, 198, 220, 220, 220, 31383, 796, 45941, 13, 26518, 7, 87, 13, 27160, 13, 51, 11, 2124, 13, 27160, 8, 198, 220, 220, 220, 220, 742, 796, 2124, 13, 16345, 7, 5715, 28, 15, 737, 27160, 628, 220, 220, 220, 954, 796, 331, 13, 403, 25558, 22446, 9127, 7, 16, 737, 27160, 198, 220, 220, 220, 31870, 796, 954, 1875, 657, 628, 220, 220, 220, 1303, 1395, 6, 55, 532, 357, 51, 6, 51, 8, 61, 12, 16, 357, 51, 6, 55, 8, 198, 220, 220, 220, 220, 742, 796, 220, 742, 58, 19738, 273, 60, 198, 220, 220, 220, 954, 796, 954, 58, 19738, 273, 60, 628, 220, 220, 220, 1441, 31383, 532, 45941, 13, 26518, 7, 742, 13, 51, 1220, 954, 11, 220, 742, 8, 198 ]
2.089349
6,816
# Copyright 2020 The HuggingFace Team 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. # Adapted from: # https://github.com/huggingface/transformers/blob/master/examples/question-answering/run_qa.py # yapf: off from dataclasses import dataclass, field from lightning_transformers.core.nlp import HFTransformerDataConfig @dataclass class QuestionAnsweringDataConfig(HFTransformerDataConfig): """Arguments pertaining to what data we are going to input our model for training and eval.""" max_length: int = field( default=384, metadata={ "help": "The maximum total input sequence length after tokenization. Sequences longer " "than this will be truncated, sequences shorter will be padded." }, ) version_2_with_negative: bool = field( default=False, metadata={"help": "If true, some of the examples do not have an answer."} ) null_score_diff_threshold: float = field( default=0.0, metadata={ "help": "The threshold used to select the null answer: if the best answer has a score that is less than " "the score of the null answer minus this threshold, the null answer is selected for this example. " "Only useful when `version_2_with_negative=True`." }, ) doc_stride: int = field( default=128, metadata={"help": "When splitting up a long document into chunks, how much stride to take between chunks."}, ) n_best_size: int = field( default=20, metadata={"help": "The total number of n-best predictions to generate when looking for an answer."}, ) max_answer_length: int = field( default=30, metadata={ "help": "The maximum length of an answer that can be generated. This is needed because the start " "and end predictions are not conditioned on one another." }, )
[ 2, 15069, 12131, 383, 12905, 2667, 32388, 4816, 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, 198, 2, 30019, 276, 422, 25, 198, 2, 3740, 1378, 12567, 13, 785, 14, 71, 1018, 2667, 2550, 14, 35636, 364, 14, 2436, 672, 14, 9866, 14, 1069, 12629, 14, 25652, 12, 504, 86, 1586, 14, 5143, 62, 20402, 13, 9078, 198, 2, 331, 499, 69, 25, 572, 198, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 11, 2214, 198, 198, 6738, 14357, 62, 35636, 364, 13, 7295, 13, 21283, 79, 1330, 42253, 8291, 16354, 6601, 16934, 628, 198, 31, 19608, 330, 31172, 198, 4871, 18233, 2025, 2032, 1586, 6601, 16934, 7, 29567, 8291, 16354, 6601, 16934, 2599, 198, 220, 220, 220, 37227, 28100, 2886, 27113, 284, 644, 1366, 356, 389, 1016, 284, 5128, 674, 2746, 329, 3047, 290, 5418, 526, 15931, 628, 220, 220, 220, 3509, 62, 13664, 25, 493, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 22842, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16794, 1298, 366, 464, 5415, 2472, 5128, 8379, 4129, 706, 11241, 1634, 13, 24604, 3007, 2392, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14813, 428, 481, 307, 40122, 515, 11, 16311, 12238, 481, 307, 44582, 526, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2196, 62, 17, 62, 4480, 62, 31591, 25, 20512, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 25101, 11, 20150, 28, 4895, 16794, 1298, 366, 1532, 2081, 11, 617, 286, 262, 6096, 466, 407, 423, 281, 3280, 526, 92, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 9242, 62, 26675, 62, 26069, 62, 400, 10126, 25, 12178, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 15, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16794, 1298, 366, 464, 11387, 973, 284, 2922, 262, 9242, 3280, 25, 611, 262, 1266, 3280, 468, 257, 4776, 326, 318, 1342, 621, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1169, 4776, 286, 262, 9242, 3280, 20208, 428, 11387, 11, 262, 9242, 3280, 318, 6163, 329, 428, 1672, 13, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10049, 4465, 618, 4600, 9641, 62, 17, 62, 4480, 62, 31591, 28, 17821, 63, 526, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2205, 62, 2536, 485, 25, 493, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 12762, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 28, 4895, 16794, 1298, 366, 2215, 26021, 510, 257, 890, 3188, 656, 22716, 11, 703, 881, 33769, 284, 1011, 1022, 22716, 526, 5512, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 299, 62, 13466, 62, 7857, 25, 493, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 1238, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 28, 4895, 16794, 1298, 366, 464, 2472, 1271, 286, 299, 12, 13466, 16277, 284, 7716, 618, 2045, 329, 281, 3280, 526, 5512, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 3509, 62, 41484, 62, 13664, 25, 493, 796, 2214, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 1270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16794, 1298, 366, 464, 5415, 4129, 286, 281, 3280, 326, 460, 307, 7560, 13, 770, 318, 2622, 780, 262, 923, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 392, 886, 16277, 389, 407, 31964, 319, 530, 1194, 526, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 1267, 198 ]
2.963415
820
# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: tensorboard/uploader/proto/server_info.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper 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='tensorboard/uploader/proto/server_info.proto', package='tensorboard.service', syntax='proto3', serialized_options=None, serialized_pb=_b('\n,tensorboard/uploader/proto/server_info.proto\x12\x13tensorboard.service\"l\n\x11ServerInfoRequest\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x46\n\x14plugin_specification\x18\x02 \x01(\x0b\x32(.tensorboard.service.PluginSpecification\"\xb7\x02\n\x12ServerInfoResponse\x12\x39\n\rcompatibility\x18\x01 \x01(\x0b\x32\".tensorboard.service.Compatibility\x12\x32\n\napi_server\x18\x02 \x01(\x0b\x32\x1e.tensorboard.service.ApiServer\x12<\n\nurl_format\x18\x03 \x01(\x0b\x32(.tensorboard.service.ExperimentUrlFormat\x12:\n\x0eplugin_control\x18\x04 \x01(\x0b\x32\".tensorboard.service.PluginControl\x12\x38\n\rupload_limits\x18\x05 \x01(\x0b\x32!.tensorboard.service.UploadLimits\"\\\n\rCompatibility\x12:\n\x07verdict\x18\x01 \x01(\x0e\x32).tensorboard.service.CompatibilityVerdict\x12\x0f\n\x07\x64\x65tails\x18\x02 \x01(\t\"\x1d\n\tApiServer\x12\x10\n\x08\x65ndpoint\x18\x01 \x01(\t\"?\n\x13\x45xperimentUrlFormat\x12\x10\n\x08template\x18\x01 \x01(\t\x12\x16\n\x0eid_placeholder\x18\x02 \x01(\t\"-\n\x13PluginSpecification\x12\x16\n\x0eupload_plugins\x18\x02 \x03(\t\"(\n\rPluginControl\x12\x17\n\x0f\x61llowed_plugins\x18\x01 \x03(\t\"\x92\x02\n\x0cUploadLimits\x12\x1f\n\x17max_scalar_request_size\x18\x03 \x01(\x03\x12\x1f\n\x17max_tensor_request_size\x18\x04 \x01(\x03\x12\x1d\n\x15max_blob_request_size\x18\x05 \x01(\x03\x12#\n\x1bmin_scalar_request_interval\x18\x06 \x01(\x03\x12#\n\x1bmin_tensor_request_interval\x18\x07 \x01(\x03\x12!\n\x19min_blob_request_interval\x18\x08 \x01(\x03\x12\x15\n\rmax_blob_size\x18\x01 \x01(\x03\x12\x1d\n\x15max_tensor_point_size\x18\x02 \x01(\x03*`\n\x14\x43ompatibilityVerdict\x12\x13\n\x0fVERDICT_UNKNOWN\x10\x00\x12\x0e\n\nVERDICT_OK\x10\x01\x12\x10\n\x0cVERDICT_WARN\x10\x02\x12\x11\n\rVERDICT_ERROR\x10\x03\x62\x06proto3') ) _COMPATIBILITYVERDICT = _descriptor.EnumDescriptor( name='CompatibilityVerdict', full_name='tensorboard.service.CompatibilityVerdict', filename=None, file=DESCRIPTOR, values=[ _descriptor.EnumValueDescriptor( name='VERDICT_UNKNOWN', index=0, number=0, serialized_options=None, type=None), _descriptor.EnumValueDescriptor( name='VERDICT_OK', index=1, number=1, serialized_options=None, type=None), _descriptor.EnumValueDescriptor( name='VERDICT_WARN', index=2, number=2, serialized_options=None, type=None), _descriptor.EnumValueDescriptor( name='VERDICT_ERROR', index=3, number=3, serialized_options=None, type=None), ], containing_type=None, serialized_options=None, serialized_start=1049, serialized_end=1145, ) _sym_db.RegisterEnumDescriptor(_COMPATIBILITYVERDICT) CompatibilityVerdict = enum_type_wrapper.EnumTypeWrapper(_COMPATIBILITYVERDICT) VERDICT_UNKNOWN = 0 VERDICT_OK = 1 VERDICT_WARN = 2 VERDICT_ERROR = 3 _SERVERINFOREQUEST = _descriptor.Descriptor( name='ServerInfoRequest', full_name='tensorboard.service.ServerInfoRequest', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='version', full_name='tensorboard.service.ServerInfoRequest.version', 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), _descriptor.FieldDescriptor( name='plugin_specification', full_name='tensorboard.service.ServerInfoRequest.plugin_specification', index=1, number=2, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=69, serialized_end=177, ) _SERVERINFORESPONSE = _descriptor.Descriptor( name='ServerInfoResponse', full_name='tensorboard.service.ServerInfoResponse', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='compatibility', full_name='tensorboard.service.ServerInfoResponse.compatibility', index=0, number=1, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( name='api_server', full_name='tensorboard.service.ServerInfoResponse.api_server', index=1, number=2, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( name='url_format', full_name='tensorboard.service.ServerInfoResponse.url_format', index=2, number=3, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( name='plugin_control', full_name='tensorboard.service.ServerInfoResponse.plugin_control', index=3, number=4, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( name='upload_limits', full_name='tensorboard.service.ServerInfoResponse.upload_limits', index=4, number=5, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=180, serialized_end=491, ) _COMPATIBILITY = _descriptor.Descriptor( name='Compatibility', full_name='tensorboard.service.Compatibility', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='verdict', full_name='tensorboard.service.Compatibility.verdict', index=0, number=1, type=14, cpp_type=8, 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), _descriptor.FieldDescriptor( name='details', full_name='tensorboard.service.Compatibility.details', 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), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=493, serialized_end=585, ) _APISERVER = _descriptor.Descriptor( name='ApiServer', full_name='tensorboard.service.ApiServer', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='endpoint', full_name='tensorboard.service.ApiServer.endpoint', 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), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=587, serialized_end=616, ) _EXPERIMENTURLFORMAT = _descriptor.Descriptor( name='ExperimentUrlFormat', full_name='tensorboard.service.ExperimentUrlFormat', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='template', full_name='tensorboard.service.ExperimentUrlFormat.template', 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), _descriptor.FieldDescriptor( name='id_placeholder', full_name='tensorboard.service.ExperimentUrlFormat.id_placeholder', 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), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=618, serialized_end=681, ) _PLUGINSPECIFICATION = _descriptor.Descriptor( name='PluginSpecification', full_name='tensorboard.service.PluginSpecification', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='upload_plugins', full_name='tensorboard.service.PluginSpecification.upload_plugins', index=0, number=2, type=9, cpp_type=9, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=683, serialized_end=728, ) _PLUGINCONTROL = _descriptor.Descriptor( name='PluginControl', full_name='tensorboard.service.PluginControl', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='allowed_plugins', full_name='tensorboard.service.PluginControl.allowed_plugins', index=0, number=1, type=9, cpp_type=9, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=730, serialized_end=770, ) _UPLOADLIMITS = _descriptor.Descriptor( name='UploadLimits', full_name='tensorboard.service.UploadLimits', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='max_scalar_request_size', full_name='tensorboard.service.UploadLimits.max_scalar_request_size', index=0, number=3, 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), _descriptor.FieldDescriptor( name='max_tensor_request_size', full_name='tensorboard.service.UploadLimits.max_tensor_request_size', index=1, number=4, 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), _descriptor.FieldDescriptor( name='max_blob_request_size', full_name='tensorboard.service.UploadLimits.max_blob_request_size', index=2, number=5, 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), _descriptor.FieldDescriptor( name='min_scalar_request_interval', full_name='tensorboard.service.UploadLimits.min_scalar_request_interval', index=3, number=6, 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), _descriptor.FieldDescriptor( name='min_tensor_request_interval', full_name='tensorboard.service.UploadLimits.min_tensor_request_interval', index=4, number=7, 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), _descriptor.FieldDescriptor( name='min_blob_request_interval', full_name='tensorboard.service.UploadLimits.min_blob_request_interval', index=5, number=8, 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), _descriptor.FieldDescriptor( name='max_blob_size', full_name='tensorboard.service.UploadLimits.max_blob_size', index=6, 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), _descriptor.FieldDescriptor( name='max_tensor_point_size', full_name='tensorboard.service.UploadLimits.max_tensor_point_size', index=7, number=2, 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), ], extensions=[ ], nested_types=[], enum_types=[ ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=773, serialized_end=1047, ) _SERVERINFOREQUEST.fields_by_name['plugin_specification'].message_type = _PLUGINSPECIFICATION _SERVERINFORESPONSE.fields_by_name['compatibility'].message_type = _COMPATIBILITY _SERVERINFORESPONSE.fields_by_name['api_server'].message_type = _APISERVER _SERVERINFORESPONSE.fields_by_name['url_format'].message_type = _EXPERIMENTURLFORMAT _SERVERINFORESPONSE.fields_by_name['plugin_control'].message_type = _PLUGINCONTROL _SERVERINFORESPONSE.fields_by_name['upload_limits'].message_type = _UPLOADLIMITS _COMPATIBILITY.fields_by_name['verdict'].enum_type = _COMPATIBILITYVERDICT DESCRIPTOR.message_types_by_name['ServerInfoRequest'] = _SERVERINFOREQUEST DESCRIPTOR.message_types_by_name['ServerInfoResponse'] = _SERVERINFORESPONSE DESCRIPTOR.message_types_by_name['Compatibility'] = _COMPATIBILITY DESCRIPTOR.message_types_by_name['ApiServer'] = _APISERVER DESCRIPTOR.message_types_by_name['ExperimentUrlFormat'] = _EXPERIMENTURLFORMAT DESCRIPTOR.message_types_by_name['PluginSpecification'] = _PLUGINSPECIFICATION DESCRIPTOR.message_types_by_name['PluginControl'] = _PLUGINCONTROL DESCRIPTOR.message_types_by_name['UploadLimits'] = _UPLOADLIMITS DESCRIPTOR.enum_types_by_name['CompatibilityVerdict'] = _COMPATIBILITYVERDICT _sym_db.RegisterFileDescriptor(DESCRIPTOR) ServerInfoRequest = _reflection.GeneratedProtocolMessageType('ServerInfoRequest', (_message.Message,), { 'DESCRIPTOR' : _SERVERINFOREQUEST, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.ServerInfoRequest) }) _sym_db.RegisterMessage(ServerInfoRequest) ServerInfoResponse = _reflection.GeneratedProtocolMessageType('ServerInfoResponse', (_message.Message,), { 'DESCRIPTOR' : _SERVERINFORESPONSE, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.ServerInfoResponse) }) _sym_db.RegisterMessage(ServerInfoResponse) Compatibility = _reflection.GeneratedProtocolMessageType('Compatibility', (_message.Message,), { 'DESCRIPTOR' : _COMPATIBILITY, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.Compatibility) }) _sym_db.RegisterMessage(Compatibility) ApiServer = _reflection.GeneratedProtocolMessageType('ApiServer', (_message.Message,), { 'DESCRIPTOR' : _APISERVER, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.ApiServer) }) _sym_db.RegisterMessage(ApiServer) ExperimentUrlFormat = _reflection.GeneratedProtocolMessageType('ExperimentUrlFormat', (_message.Message,), { 'DESCRIPTOR' : _EXPERIMENTURLFORMAT, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.ExperimentUrlFormat) }) _sym_db.RegisterMessage(ExperimentUrlFormat) PluginSpecification = _reflection.GeneratedProtocolMessageType('PluginSpecification', (_message.Message,), { 'DESCRIPTOR' : _PLUGINSPECIFICATION, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.PluginSpecification) }) _sym_db.RegisterMessage(PluginSpecification) PluginControl = _reflection.GeneratedProtocolMessageType('PluginControl', (_message.Message,), { 'DESCRIPTOR' : _PLUGINCONTROL, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.PluginControl) }) _sym_db.RegisterMessage(PluginControl) UploadLimits = _reflection.GeneratedProtocolMessageType('UploadLimits', (_message.Message,), { 'DESCRIPTOR' : _UPLOADLIMITS, '__module__' : 'tensorboard.uploader.proto.server_info_pb2' # @@protoc_insertion_point(class_scope:tensorboard.service.UploadLimits) }) _sym_db.RegisterMessage(UploadLimits) # @@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, 11192, 273, 3526, 14, 25850, 263, 14, 1676, 1462, 14, 15388, 62, 10951, 13, 1676, 1462, 198, 198, 11748, 25064, 198, 62, 65, 28, 17597, 13, 9641, 62, 10951, 58, 15, 60, 27, 18, 290, 357, 50033, 2124, 25, 87, 8, 393, 357, 50033, 2124, 25, 87, 13, 268, 8189, 10786, 75, 10680, 16, 6, 4008, 198, 6738, 23645, 13, 11235, 672, 3046, 13, 32538, 1330, 33829, 62, 4906, 62, 48553, 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, 83, 22854, 3526, 14, 25850, 263, 14, 1676, 1462, 14, 15388, 62, 10951, 13, 1676, 1462, 3256, 198, 220, 5301, 11639, 83, 22854, 3526, 13, 15271, 3256, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 11389, 1143, 62, 40842, 28, 62, 65, 10786, 59, 77, 11, 83, 22854, 3526, 14, 25850, 263, 14, 1676, 1462, 14, 15388, 62, 10951, 13, 1676, 1462, 59, 87, 1065, 59, 87, 1485, 83, 22854, 3526, 13, 15271, 7879, 75, 59, 77, 59, 87, 1157, 10697, 12360, 18453, 59, 87, 1065, 59, 87, 15, 69, 59, 77, 59, 87, 2998, 9641, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 83, 59, 87, 1065, 59, 87, 3510, 59, 77, 59, 87, 1415, 33803, 62, 16684, 2649, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 7, 13, 83, 22854, 3526, 13, 15271, 13, 37233, 22882, 2649, 7879, 59, 30894, 22, 59, 87, 2999, 59, 77, 59, 87, 1065, 10697, 12360, 31077, 59, 87, 1065, 59, 87, 2670, 59, 77, 59, 81, 5589, 25901, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 59, 1911, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 59, 87, 1065, 59, 87, 2624, 59, 77, 59, 77, 15042, 62, 15388, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 59, 87, 16, 68, 13, 83, 22854, 3526, 13, 15271, 13, 32, 14415, 10697, 59, 87, 1065, 27, 59, 77, 59, 77, 6371, 62, 18982, 59, 87, 1507, 59, 87, 3070, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 7, 13, 83, 22854, 3526, 13, 15271, 13, 20468, 3681, 28165, 26227, 59, 87, 1065, 7479, 77, 59, 87, 15, 68, 33803, 62, 13716, 59, 87, 1507, 59, 87, 3023, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 59, 1911, 83, 22854, 3526, 13, 15271, 13, 37233, 15988, 59, 87, 1065, 59, 87, 2548, 59, 77, 59, 622, 7304, 62, 49196, 59, 87, 1507, 59, 87, 2713, 3467, 87, 486, 38016, 87, 15, 65, 59, 87, 2624, 43179, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 7879, 6852, 59, 77, 59, 81, 7293, 25901, 59, 87, 1065, 7479, 77, 59, 87, 2998, 332, 11600, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 87, 15, 68, 59, 87, 2624, 737, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 13414, 11600, 59, 87, 1065, 59, 87, 15, 69, 59, 77, 59, 87, 2998, 59, 87, 2414, 59, 87, 2996, 26404, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 83, 7879, 59, 87, 16, 67, 59, 77, 59, 83, 32, 14415, 10697, 59, 87, 1065, 59, 87, 940, 59, 77, 59, 87, 2919, 59, 87, 2996, 358, 4122, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 83, 7879, 30, 59, 77, 59, 87, 1485, 59, 87, 2231, 87, 525, 3681, 28165, 26227, 59, 87, 1065, 59, 87, 940, 59, 77, 59, 87, 2919, 28243, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 83, 59, 87, 1065, 59, 87, 1433, 59, 77, 59, 87, 15, 68, 312, 62, 5372, 13829, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 83, 7879, 12, 59, 77, 59, 87, 1485, 37233, 22882, 2649, 59, 87, 1065, 59, 87, 1433, 59, 77, 59, 87, 15, 12496, 7304, 62, 37390, 59, 87, 1507, 59, 87, 2999, 3467, 87, 3070, 38016, 83, 7879, 38016, 77, 59, 81, 37233, 15988, 59, 87, 1065, 59, 87, 1558, 59, 77, 59, 87, 15, 69, 59, 87, 5333, 297, 6972, 62, 37390, 59, 87, 1507, 59, 87, 486, 3467, 87, 3070, 38016, 83, 7879, 59, 87, 5892, 59, 87, 2999, 59, 77, 59, 87, 15, 66, 41592, 19352, 896, 59, 87, 1065, 59, 87, 16, 69, 59, 77, 59, 87, 1558, 9806, 62, 1416, 282, 283, 62, 25927, 62, 7857, 59, 87, 1507, 59, 87, 3070, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 16, 69, 59, 77, 59, 87, 1558, 9806, 62, 83, 22854, 62, 25927, 62, 7857, 59, 87, 1507, 59, 87, 3023, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 16, 67, 59, 77, 59, 87, 1314, 9806, 62, 2436, 672, 62, 25927, 62, 7857, 59, 87, 1507, 59, 87, 2713, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 2, 59, 77, 59, 87, 16, 65, 1084, 62, 1416, 282, 283, 62, 25927, 62, 3849, 2100, 59, 87, 1507, 59, 87, 3312, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 2, 59, 77, 59, 87, 16, 65, 1084, 62, 83, 22854, 62, 25927, 62, 3849, 2100, 59, 87, 1507, 59, 87, 2998, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 0, 59, 77, 59, 87, 1129, 1084, 62, 2436, 672, 62, 25927, 62, 3849, 2100, 59, 87, 1507, 59, 87, 2919, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 1314, 59, 77, 59, 81, 9806, 62, 2436, 672, 62, 7857, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 16, 67, 59, 77, 59, 87, 1314, 9806, 62, 83, 22854, 62, 4122, 62, 7857, 59, 87, 1507, 59, 87, 2999, 3467, 87, 486, 38016, 87, 3070, 9, 63, 59, 77, 59, 87, 1415, 59, 87, 3559, 3361, 25901, 13414, 11600, 59, 87, 1065, 59, 87, 1485, 59, 77, 59, 87, 15, 69, 5959, 35, 18379, 62, 4944, 44706, 59, 87, 940, 59, 87, 405, 59, 87, 1065, 59, 87, 15, 68, 59, 77, 59, 77, 5959, 35, 18379, 62, 11380, 59, 87, 940, 59, 87, 486, 59, 87, 1065, 59, 87, 940, 59, 77, 59, 87, 15, 66, 5959, 35, 18379, 62, 37771, 59, 87, 940, 59, 87, 2999, 59, 87, 1065, 59, 87, 1157, 59, 77, 59, 81, 5959, 35, 18379, 62, 24908, 59, 87, 940, 59, 87, 3070, 59, 87, 5237, 59, 87, 3312, 1676, 1462, 18, 11537, 198, 8, 198, 198, 62, 9858, 47, 1404, 40, 25382, 5959, 35, 18379, 796, 4808, 20147, 1968, 273, 13, 4834, 388, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 7293, 25901, 13414, 11600, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 13414, 11600, 3256, 198, 220, 29472, 28, 14202, 11, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 3815, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5959, 35, 18379, 62, 4944, 44706, 3256, 6376, 28, 15, 11, 1271, 28, 15, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5959, 35, 18379, 62, 11380, 3256, 6376, 28, 16, 11, 1271, 28, 16, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5959, 35, 18379, 62, 37771, 3256, 6376, 28, 17, 11, 1271, 28, 17, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5959, 35, 18379, 62, 24908, 3256, 6376, 28, 18, 11, 1271, 28, 18, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 828, 198, 220, 16589, 198, 220, 7268, 62, 4906, 28, 14202, 11, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 11389, 1143, 62, 9688, 28, 940, 2920, 11, 198, 220, 11389, 1143, 62, 437, 28, 1157, 2231, 11, 198, 8, 198, 62, 37047, 62, 9945, 13, 38804, 4834, 388, 24564, 1968, 273, 28264, 9858, 47, 1404, 40, 25382, 5959, 35, 18379, 8, 198, 198, 7293, 25901, 13414, 11600, 796, 33829, 62, 4906, 62, 48553, 13, 4834, 388, 6030, 36918, 2848, 28264, 9858, 47, 1404, 40, 25382, 5959, 35, 18379, 8, 198, 5959, 35, 18379, 62, 4944, 44706, 796, 657, 198, 5959, 35, 18379, 62, 11380, 796, 352, 198, 5959, 35, 18379, 62, 37771, 796, 362, 198, 5959, 35, 18379, 62, 24908, 796, 513, 628, 198, 198, 62, 35009, 5959, 1268, 30818, 35780, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 10697, 12360, 18453, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 18453, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9641, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 18453, 13, 9641, 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, 62, 65, 7203, 11074, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 33803, 62, 16684, 2649, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 18453, 13, 33803, 62, 16684, 2649, 3256, 6376, 28, 16, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 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, 3388, 11, 198, 220, 11389, 1143, 62, 437, 28, 22413, 11, 198, 8, 628, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 10697, 12360, 31077, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5589, 25901, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 13, 5589, 25901, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 16, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 15042, 62, 15388, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 13, 15042, 62, 15388, 3256, 6376, 28, 16, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 6371, 62, 18982, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 13, 6371, 62, 18982, 3256, 6376, 28, 17, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 18, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 33803, 62, 13716, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 13, 33803, 62, 13716, 3256, 6376, 28, 18, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 19, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 25850, 62, 49196, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 13, 25850, 62, 49196, 3256, 6376, 28, 19, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 20, 11, 2099, 28, 1157, 11, 269, 381, 62, 4906, 28, 940, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 14202, 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, 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, 15259, 11, 198, 220, 11389, 1143, 62, 437, 28, 41289, 11, 198, 8, 628, 198, 62, 9858, 47, 1404, 40, 25382, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 7293, 25901, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 332, 11600, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 13, 332, 11600, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 16, 11, 2099, 28, 1415, 11, 269, 381, 62, 4906, 28, 23, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 36604, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 13, 36604, 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, 62, 65, 7203, 11074, 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, 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, 43134, 11, 198, 220, 11389, 1143, 62, 437, 28, 38905, 11, 198, 8, 628, 198, 62, 2969, 1797, 1137, 5959, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 32, 14415, 10697, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 32, 14415, 10697, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 437, 4122, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 32, 14415, 10697, 13, 437, 4122, 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, 62, 65, 7203, 11074, 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, 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, 44617, 11, 198, 220, 11389, 1143, 62, 437, 28, 44214, 11, 198, 8, 628, 198, 62, 6369, 18973, 3955, 3525, 21886, 21389, 1404, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 20468, 3681, 28165, 26227, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 20468, 3681, 28165, 26227, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 28243, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 20468, 3681, 28165, 26227, 13, 28243, 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, 62, 65, 7203, 11074, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 312, 62, 5372, 13829, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 20468, 3681, 28165, 26227, 13, 312, 62, 5372, 13829, 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, 62, 65, 7203, 11074, 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, 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, 47448, 11, 198, 220, 11389, 1143, 62, 437, 28, 48564, 11, 198, 8, 628, 198, 62, 6489, 7340, 1268, 48451, 30643, 6234, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 37233, 22882, 2649, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 37233, 22882, 2649, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 25850, 62, 37390, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 37233, 22882, 2649, 13, 25850, 62, 37390, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 11, 2099, 28, 24, 11, 269, 381, 62, 4906, 28, 24, 11, 6167, 28, 18, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 41888, 4357, 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, 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, 47521, 11, 198, 220, 11389, 1143, 62, 437, 28, 48524, 11, 198, 8, 628, 198, 62, 6489, 7340, 1268, 10943, 5446, 3535, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 37233, 15988, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 37233, 15988, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 40845, 62, 37390, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 37233, 15988, 13, 40845, 62, 37390, 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, 18, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 41888, 4357, 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, 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, 43916, 11, 198, 220, 11389, 1143, 62, 437, 28, 41820, 11, 198, 8, 628, 198, 62, 52, 6489, 41048, 43, 3955, 29722, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 41592, 19352, 896, 3256, 198, 220, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 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, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 1416, 282, 283, 62, 25927, 62, 7857, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 9806, 62, 1416, 282, 283, 62, 25927, 62, 7857, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 18, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 83, 22854, 62, 25927, 62, 7857, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 9806, 62, 83, 22854, 62, 25927, 62, 7857, 3256, 6376, 28, 16, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 19, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 2436, 672, 62, 25927, 62, 7857, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 9806, 62, 2436, 672, 62, 25927, 62, 7857, 3256, 6376, 28, 17, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 20, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 1084, 62, 1416, 282, 283, 62, 25927, 62, 3849, 2100, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 1084, 62, 1416, 282, 283, 62, 25927, 62, 3849, 2100, 3256, 6376, 28, 18, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 21, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 1084, 62, 83, 22854, 62, 25927, 62, 3849, 2100, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 1084, 62, 83, 22854, 62, 25927, 62, 3849, 2100, 3256, 6376, 28, 19, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 22, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 1084, 62, 2436, 672, 62, 25927, 62, 3849, 2100, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 1084, 62, 2436, 672, 62, 25927, 62, 3849, 2100, 3256, 6376, 28, 20, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 23, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 2436, 672, 62, 7857, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 9806, 62, 2436, 672, 62, 7857, 3256, 6376, 28, 21, 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, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 83, 22854, 62, 4122, 62, 7857, 3256, 1336, 62, 3672, 11639, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 13, 9806, 62, 83, 22854, 62, 4122, 62, 7857, 3256, 6376, 28, 22, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 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, 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, 46871, 11, 198, 220, 11389, 1143, 62, 437, 28, 940, 2857, 11, 198, 8, 198, 198, 62, 35009, 5959, 1268, 30818, 35780, 13, 25747, 62, 1525, 62, 3672, 17816, 33803, 62, 16684, 2649, 6, 4083, 20500, 62, 4906, 796, 4808, 6489, 7340, 1268, 48451, 30643, 6234, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 13, 25747, 62, 1525, 62, 3672, 17816, 5589, 25901, 6, 4083, 20500, 62, 4906, 796, 4808, 9858, 47, 1404, 40, 25382, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 13, 25747, 62, 1525, 62, 3672, 17816, 15042, 62, 15388, 6, 4083, 20500, 62, 4906, 796, 4808, 2969, 1797, 1137, 5959, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 13, 25747, 62, 1525, 62, 3672, 17816, 6371, 62, 18982, 6, 4083, 20500, 62, 4906, 796, 4808, 6369, 18973, 3955, 3525, 21886, 21389, 1404, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 13, 25747, 62, 1525, 62, 3672, 17816, 33803, 62, 13716, 6, 4083, 20500, 62, 4906, 796, 4808, 6489, 7340, 1268, 10943, 5446, 3535, 198, 62, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 13, 25747, 62, 1525, 62, 3672, 17816, 25850, 62, 49196, 6, 4083, 20500, 62, 4906, 796, 4808, 52, 6489, 41048, 43, 3955, 29722, 198, 62, 9858, 47, 1404, 40, 25382, 13, 25747, 62, 1525, 62, 3672, 17816, 332, 11600, 6, 4083, 44709, 62, 4906, 796, 4808, 9858, 47, 1404, 40, 25382, 5959, 35, 18379, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 10697, 12360, 18453, 20520, 796, 4808, 35009, 5959, 1268, 30818, 35780, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 10697, 12360, 31077, 20520, 796, 4808, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 7293, 25901, 20520, 796, 4808, 9858, 47, 1404, 40, 25382, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 32, 14415, 10697, 20520, 796, 4808, 2969, 1797, 1137, 5959, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 20468, 3681, 28165, 26227, 20520, 796, 4808, 6369, 18973, 3955, 3525, 21886, 21389, 1404, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 37233, 22882, 2649, 20520, 796, 4808, 6489, 7340, 1268, 48451, 30643, 6234, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 37233, 15988, 20520, 796, 4808, 6489, 7340, 1268, 10943, 5446, 3535, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 41592, 19352, 896, 20520, 796, 4808, 52, 6489, 41048, 43, 3955, 29722, 198, 30910, 36584, 32961, 13, 44709, 62, 19199, 62, 1525, 62, 3672, 17816, 7293, 25901, 13414, 11600, 20520, 796, 4808, 9858, 47, 1404, 40, 25382, 5959, 35, 18379, 198, 62, 37047, 62, 9945, 13, 38804, 8979, 24564, 1968, 273, 7, 30910, 36584, 32961, 8, 198, 198, 10697, 12360, 18453, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 10697, 12360, 18453, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 35009, 5959, 1268, 30818, 35780, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 18453, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 10697, 12360, 18453, 8, 198, 198, 10697, 12360, 31077, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 10697, 12360, 31077, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 35009, 5959, 1268, 13775, 1546, 47, 1340, 5188, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 10697, 12360, 31077, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 10697, 12360, 31077, 8, 198, 198, 7293, 25901, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 7293, 25901, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 9858, 47, 1404, 40, 25382, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 7293, 25901, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 7293, 25901, 8, 198, 198, 32, 14415, 10697, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 32, 14415, 10697, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 2969, 1797, 1137, 5959, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 32, 14415, 10697, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 32, 14415, 10697, 8, 198, 198, 20468, 3681, 28165, 26227, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 20468, 3681, 28165, 26227, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 6369, 18973, 3955, 3525, 21886, 21389, 1404, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 20468, 3681, 28165, 26227, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 20468, 3681, 28165, 26227, 8, 198, 198, 37233, 22882, 2649, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 37233, 22882, 2649, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 6489, 7340, 1268, 48451, 30643, 6234, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 37233, 22882, 2649, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 37233, 22882, 2649, 8, 198, 198, 37233, 15988, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 37233, 15988, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 6489, 7340, 1268, 10943, 5446, 3535, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 37233, 15988, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 37233, 15988, 8, 198, 198, 41592, 19352, 896, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 41592, 19352, 896, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 52, 6489, 41048, 43, 3955, 29722, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 83, 22854, 3526, 13, 25850, 263, 13, 1676, 1462, 13, 15388, 62, 10951, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 83, 22854, 3526, 13, 15271, 13, 41592, 19352, 896, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 41592, 19352, 896, 8, 628, 198, 2, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 21412, 62, 29982, 8, 198 ]
2.493224
7,822
# Exercício Python #051 - Progressão Aritmética # # Desenvolva um programa que leia o PRIMEIRO TERMO e a RAZÃO de uma PA. No final, mostre os 10 primeiros termos dessa # progressão. # # OBS: Eu tentei realizar esse exercicio, fiz o codígo mas ele apresentou ERRO DE LÓGICA! Estude mais P.A e # esse conteudo! print('\033[0;35m-=-\033[m' * 10) print('\033[1;36mPROGRESSÃO ARITIMÉRICA (P.A)\033[m') print('\033[0;35m-=-\033[m' * 10) t1 = str(input('\033[0;30mDigite o PRIMEIRO TERMO da P.A: \033[m')).strip() r = str(input('\033[0;30mAgora, digite a RAZÃO da P.A: \033[m')).strip() t1 = int(str(t1)) r = int(str(r)) a10 = t1 + (10 - 1) * r # Fórmula da P.A ADAPTADA para a linguagem PYTHON print(' ' * 20) print('\033[1;30mAbaixo,seguem os 10 primeiros termos da Progressão Aritimética: \033[m') for p_a in range(t1 ,a10 + r, r): # Está escrito a10 + r porque o Python ignora o último termo. print(f'\033[0;34m{p_a}\033[m', end=' ') print('\n\033[1;31mFIM!\033[m')
[ 2, 1475, 2798, 8836, 66, 952, 11361, 1303, 2713, 16, 532, 18387, 28749, 317, 799, 76, 25125, 3970, 198, 2, 198, 2, 2935, 268, 10396, 6862, 23781, 1430, 64, 8358, 443, 544, 267, 4810, 12789, 43708, 28994, 11770, 304, 257, 17926, 57, 5746, 46, 390, 334, 2611, 8147, 13, 1400, 2457, 11, 749, 260, 28686, 838, 6994, 72, 4951, 3381, 418, 288, 21411, 198, 2, 4371, 28749, 13, 198, 2, 198, 2, 440, 4462, 25, 412, 84, 11105, 20295, 1103, 528, 283, 1658, 325, 4208, 46441, 11, 277, 528, 267, 14873, 8836, 2188, 12422, 9766, 2471, 2028, 280, 13793, 13252, 5550, 406, 127, 241, 38, 25241, 0, 10062, 2507, 285, 15152, 350, 13, 32, 304, 198, 2, 1658, 325, 542, 68, 12003, 0, 198, 198, 4798, 10786, 59, 44427, 58, 15, 26, 2327, 76, 12, 10779, 59, 44427, 58, 76, 6, 1635, 838, 8, 198, 4798, 10786, 59, 44427, 58, 16, 26, 2623, 76, 4805, 49656, 7597, 5746, 46, 5923, 2043, 3955, 38351, 49, 25241, 357, 47, 13, 32, 19415, 44427, 58, 76, 11537, 198, 4798, 10786, 59, 44427, 58, 15, 26, 2327, 76, 12, 10779, 59, 44427, 58, 76, 6, 1635, 838, 8, 198, 198, 83, 16, 796, 965, 7, 15414, 10786, 59, 44427, 58, 15, 26, 1270, 76, 19511, 578, 267, 4810, 12789, 43708, 28994, 11770, 12379, 350, 13, 32, 25, 3467, 44427, 58, 76, 11537, 737, 36311, 3419, 198, 81, 796, 965, 7, 15414, 10786, 59, 44427, 58, 15, 26, 1270, 76, 10262, 5799, 11, 3100, 578, 257, 17926, 57, 5746, 46, 12379, 350, 13, 32, 25, 3467, 44427, 58, 76, 11537, 737, 36311, 3419, 198, 83, 16, 796, 493, 7, 2536, 7, 83, 16, 4008, 198, 81, 796, 493, 7, 2536, 7, 81, 4008, 198, 64, 940, 796, 256, 16, 1343, 357, 940, 532, 352, 8, 1635, 374, 1303, 376, 10205, 26224, 4712, 12379, 350, 13, 32, 5984, 2969, 51, 26853, 31215, 257, 20280, 363, 368, 350, 56, 4221, 1340, 198, 198, 4798, 10786, 705, 1635, 1160, 8, 198, 198, 4798, 10786, 59, 44427, 58, 16, 26, 1270, 76, 4826, 64, 844, 78, 11, 325, 5162, 368, 28686, 838, 6994, 72, 4951, 3381, 418, 12379, 18387, 28749, 317, 799, 320, 25125, 3970, 25, 3467, 44427, 58, 76, 11537, 198, 1640, 279, 62, 64, 287, 2837, 7, 83, 16, 837, 64, 940, 1343, 374, 11, 374, 2599, 1303, 10062, 6557, 3671, 39834, 257, 940, 1343, 374, 16964, 4188, 267, 11361, 3627, 5799, 267, 6184, 118, 2528, 25147, 3381, 78, 13, 198, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 15, 26, 2682, 76, 90, 79, 62, 64, 32239, 44427, 58, 76, 3256, 886, 11639, 705, 8, 198, 4798, 10786, 59, 77, 59, 44427, 58, 16, 26, 3132, 76, 37, 3955, 0, 59, 44427, 58, 76, 11537, 198 ]
2.101732
462
import json import binascii import uuid import os import tempfile import pathlib import urllib.error import urllib.request import shutil from flask import current_app as app from sqlalchemy.orm.attributes import flag_modified from sqlalchemy import text import tenacity import numpy as np from sqlalchemy.orm.exc import NoResultFound from app.main.lib.shared_models.shared_model import SharedModel from app.main import db from app.main.model.audio import Audio
[ 11748, 33918, 198, 11748, 9874, 292, 979, 72, 198, 11748, 334, 27112, 198, 11748, 28686, 198, 11748, 20218, 7753, 198, 11748, 3108, 8019, 198, 11748, 2956, 297, 571, 13, 18224, 198, 11748, 2956, 297, 571, 13, 25927, 198, 11748, 4423, 346, 198, 6738, 42903, 1330, 1459, 62, 1324, 355, 598, 198, 6738, 44161, 282, 26599, 13, 579, 13, 1078, 7657, 1330, 6056, 62, 41771, 198, 6738, 44161, 282, 26599, 1330, 2420, 198, 11748, 3478, 4355, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 44161, 282, 26599, 13, 579, 13, 41194, 1330, 1400, 23004, 21077, 198, 198, 6738, 598, 13, 12417, 13, 8019, 13, 28710, 62, 27530, 13, 28710, 62, 19849, 1330, 39403, 17633, 198, 6738, 598, 13, 12417, 1330, 20613, 198, 6738, 598, 13, 12417, 13, 19849, 13, 24051, 1330, 13491, 198, 220, 220, 220, 220 ]
3.426471
136
import logging import pandas as pd from datetime import timedelta from ..models import Index, Quote, Quote_CSI300, Ublb_cross, Rsi_predict_report from ..utils.utils import gen_id from stockstats import StockDataFrame logger = logging.getLogger('main.ublb') pd.set_option('mode.chained_assignment', None)
[ 11748, 18931, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 4818, 8079, 1330, 28805, 12514, 198, 6738, 11485, 27530, 1330, 12901, 11, 19879, 11, 19879, 62, 7902, 40, 6200, 11, 471, 2436, 65, 62, 19692, 11, 12820, 72, 62, 79, 17407, 62, 13116, 198, 6738, 11485, 26791, 13, 26791, 1330, 2429, 62, 312, 198, 6738, 4283, 34242, 1330, 10500, 6601, 19778, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 10786, 12417, 13, 549, 23160, 11537, 198, 30094, 13, 2617, 62, 18076, 10786, 14171, 13, 354, 1328, 62, 562, 16747, 3256, 6045, 8, 198 ]
3.177083
96
__version__ = '0.1.0' default_app_config = 'wagtailrelevancy.apps.WagtailRelevancyConfig'
[ 834, 9641, 834, 796, 705, 15, 13, 16, 13, 15, 6, 198, 12286, 62, 1324, 62, 11250, 796, 705, 86, 363, 13199, 260, 2768, 3883, 13, 18211, 13, 54, 363, 13199, 3041, 2768, 3883, 16934, 6, 198 ]
2.432432
37
# # PySNMP MIB module CISCO-BITS-CLOCK-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-BITS-CLOCK-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:34:03 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") entPhysicalDescr, entPhysicalIndex = mibBuilder.importSymbols("ENTITY-MIB", "entPhysicalDescr", "entPhysicalIndex") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") ModuleIdentity, Counter32, IpAddress, TimeTicks, NotificationType, Bits, Unsigned32, Gauge32, iso, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Integer32, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter32", "IpAddress", "TimeTicks", "NotificationType", "Bits", "Unsigned32", "Gauge32", "iso", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Integer32", "Counter64") TimeStamp, TruthValue, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TimeStamp", "TruthValue", "DisplayString", "TextualConvention") ciscoBitsClockMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 459)) ciscoBitsClockMIB.setRevisions(('2005-01-21 00:00',)) if mibBuilder.loadTexts: ciscoBitsClockMIB.setLastUpdated('200501210000Z') if mibBuilder.loadTexts: ciscoBitsClockMIB.setOrganization('Cisco Systems, Inc.') ciscoBitsClockMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 459, 0)) ciscoBitsClockMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 459, 1)) ciscoBitsClockMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 459, 2)) cBitsClkSourceTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1), ) if mibBuilder.loadTexts: cBitsClkSourceTable.setStatus('current') cBitsClkSourceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1), ).setIndexNames((0, "ENTITY-MIB", "entPhysicalIndex")) if mibBuilder.loadTexts: cBitsClkSourceEntry.setStatus('current') cBitsClkSourceRoleAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("primary", 1), ("secondary", 2), ("tertiary", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: cBitsClkSourceRoleAdmin.setStatus('current') cBitsClkSourceRoleCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unavailable", 0), ("primary", 1), ("secondary", 2), ("tertiary", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: cBitsClkSourceRoleCurrent.setStatus('current') cBitsClkSourceTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 3), TimeStamp()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cBitsClkSourceTimestamp.setStatus('current') cBitsClkSourceActiveSeconds = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 4), Counter32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: cBitsClkSourceActiveSeconds.setStatus('current') cBitsClkSourceInactiveSeconds = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 5), Counter32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: cBitsClkSourceInactiveSeconds.setStatus('current') cBitsClkSourceDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 1, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cBitsClkSourceDescription.setStatus('current') cBitsClkNotifEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 459, 1, 2), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: cBitsClkNotifEnabled.setStatus('current') ciscoBitsClockSource = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 459, 0, 1)).setObjects(("ENTITY-MIB", "entPhysicalDescr"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceDescription"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceRoleAdmin"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceRoleCurrent")) if mibBuilder.loadTexts: ciscoBitsClockSource.setStatus('current') ciscoBitsClockFreerun = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 459, 0, 2)).setObjects(("ENTITY-MIB", "entPhysicalDescr")) if mibBuilder.loadTexts: ciscoBitsClockFreerun.setStatus('current') ciscoBitsClockHoldover = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 459, 0, 3)).setObjects(("ENTITY-MIB", "entPhysicalDescr")) if mibBuilder.loadTexts: ciscoBitsClockHoldover.setStatus('current') ciscoBitsClockMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 459, 2, 1)) ciscoBitsClockMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 459, 2, 2)) ciscoBitsClockMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 459, 2, 1, 1)).setObjects(("CISCO-BITS-CLOCK-MIB", "ciscoBitsClockSourceGroup"), ("CISCO-BITS-CLOCK-MIB", "ciscoBitsClockNotifGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoBitsClockMIBCompliance = ciscoBitsClockMIBCompliance.setStatus('current') ciscoBitsClockSourceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 459, 2, 2, 1)).setObjects(("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceRoleAdmin"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceRoleCurrent"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceTimestamp"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceActiveSeconds"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceInactiveSeconds"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkSourceDescription"), ("CISCO-BITS-CLOCK-MIB", "cBitsClkNotifEnabled")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoBitsClockSourceGroup = ciscoBitsClockSourceGroup.setStatus('current') ciscoBitsClockNotifGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 459, 2, 2, 2)).setObjects(("CISCO-BITS-CLOCK-MIB", "ciscoBitsClockSource"), ("CISCO-BITS-CLOCK-MIB", "ciscoBitsClockFreerun"), ("CISCO-BITS-CLOCK-MIB", "ciscoBitsClockHoldover")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoBitsClockNotifGroup = ciscoBitsClockNotifGroup.setStatus('current') mibBuilder.exportSymbols("CISCO-BITS-CLOCK-MIB", cBitsClkSourceRoleAdmin=cBitsClkSourceRoleAdmin, cBitsClkNotifEnabled=cBitsClkNotifEnabled, cBitsClkSourceRoleCurrent=cBitsClkSourceRoleCurrent, ciscoBitsClockFreerun=ciscoBitsClockFreerun, ciscoBitsClockNotifGroup=ciscoBitsClockNotifGroup, ciscoBitsClockMIBConform=ciscoBitsClockMIBConform, ciscoBitsClockSource=ciscoBitsClockSource, cBitsClkSourceInactiveSeconds=cBitsClkSourceInactiveSeconds, cBitsClkSourceTable=cBitsClkSourceTable, ciscoBitsClockSourceGroup=ciscoBitsClockSourceGroup, ciscoBitsClockMIBCompliances=ciscoBitsClockMIBCompliances, ciscoBitsClockMIB=ciscoBitsClockMIB, ciscoBitsClockMIBGroups=ciscoBitsClockMIBGroups, ciscoBitsClockMIBCompliance=ciscoBitsClockMIBCompliance, ciscoBitsClockHoldover=ciscoBitsClockHoldover, ciscoBitsClockMIBNotifs=ciscoBitsClockMIBNotifs, PYSNMP_MODULE_ID=ciscoBitsClockMIB, ciscoBitsClockMIBObjects=ciscoBitsClockMIBObjects, cBitsClkSourceEntry=cBitsClkSourceEntry, cBitsClkSourceDescription=cBitsClkSourceDescription, cBitsClkSourceActiveSeconds=cBitsClkSourceActiveSeconds, cBitsClkSourceTimestamp=cBitsClkSourceTimestamp)
[ 2, 198, 2, 9485, 15571, 7378, 337, 9865, 8265, 36159, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 357, 4023, 1378, 16184, 76, 489, 8937, 13, 785, 14, 79, 893, 11632, 8, 198, 2, 7054, 45, 13, 16, 2723, 2393, 1378, 14, 14490, 14, 67, 615, 47562, 19, 14, 13603, 14, 76, 571, 82, 13, 16184, 76, 489, 8937, 13, 785, 14, 292, 77, 16, 14, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 198, 2, 21522, 771, 416, 279, 893, 11632, 12, 15, 13, 18, 13, 19, 379, 2892, 2758, 2808, 1596, 25, 2682, 25, 3070, 13130, 198, 2, 1550, 2583, 42274, 54, 15567, 19, 12, 44, 12, 1415, 2425, 3859, 21450, 2196, 1248, 13, 20, 13, 15, 416, 2836, 288, 615, 47562, 19, 198, 2, 8554, 11361, 2196, 513, 13, 22, 13, 18, 357, 12286, 11, 1526, 2681, 13130, 11, 7769, 25, 1954, 25, 1314, 8, 220, 198, 2, 198, 10267, 33234, 7483, 11, 34142, 11, 2556, 316, 10100, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 1921, 45, 16, 1600, 366, 10267, 33234, 7483, 1600, 366, 46541, 1600, 366, 12349, 316, 10100, 4943, 198, 45, 2434, 40161, 11, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 1921, 45, 16, 12, 1677, 5883, 1137, 6234, 1600, 366, 45, 2434, 40161, 4943, 198, 3103, 2536, 6003, 38176, 11, 11052, 17257, 3103, 2536, 2913, 11, 11052, 10699, 3103, 2536, 2913, 11, 1482, 2536, 6003, 9492, 5458, 11, 14206, 11395, 3103, 2536, 2913, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 1921, 45, 16, 12, 2200, 20032, 12529, 1600, 366, 3103, 2536, 6003, 38176, 1600, 366, 11395, 17257, 3103, 2536, 2913, 1600, 366, 11395, 10699, 3103, 2536, 2913, 1600, 366, 3103, 2536, 6003, 9492, 5458, 1600, 366, 28008, 11395, 3103, 2536, 2913, 4943, 198, 66, 4861, 44, 70, 16762, 11, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 34, 1797, 8220, 12, 50, 8895, 1600, 366, 66, 4861, 44, 70, 16762, 4943, 198, 298, 31611, 24564, 81, 11, 920, 31611, 15732, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 3525, 9050, 12, 8895, 33, 1600, 366, 298, 31611, 24564, 81, 1600, 366, 298, 31611, 15732, 4943, 198, 16501, 3149, 46787, 10100, 11, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 15571, 7378, 12, 10913, 2390, 6217, 14670, 12, 8895, 33, 1600, 366, 16501, 3149, 46787, 10100, 4943, 198, 26796, 38143, 3610, 11, 42808, 13247, 11, 9515, 13247, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 15571, 7378, 85, 17, 12, 10943, 37, 1600, 366, 26796, 38143, 3610, 1600, 366, 3673, 2649, 13247, 1600, 366, 10267, 13247, 4943, 198, 26796, 7390, 26858, 11, 15034, 2624, 11, 314, 79, 20231, 11, 3862, 51, 3378, 11, 42808, 6030, 11, 44733, 11, 791, 32696, 2624, 11, 35094, 469, 2624, 11, 47279, 11, 337, 571, 33234, 7483, 11, 337, 571, 3351, 282, 283, 11, 337, 571, 10962, 11, 337, 571, 10962, 25166, 11, 337, 571, 10962, 39470, 11, 9515, 7390, 26858, 11, 34142, 2624, 11, 15034, 2414, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 15571, 7378, 85, 17, 12, 50, 8895, 1600, 366, 26796, 7390, 26858, 1600, 366, 31694, 2624, 1600, 366, 40, 79, 20231, 1600, 366, 7575, 51, 3378, 1600, 366, 3673, 2649, 6030, 1600, 366, 33, 896, 1600, 366, 3118, 32696, 2624, 1600, 366, 38, 559, 469, 2624, 1600, 366, 26786, 1600, 366, 44, 571, 33234, 7483, 1600, 366, 44, 571, 3351, 282, 283, 1600, 366, 44, 571, 10962, 1600, 366, 44, 571, 10962, 25166, 1600, 366, 44, 571, 10962, 39470, 1600, 366, 10267, 7390, 26858, 1600, 366, 46541, 2624, 1600, 366, 31694, 2414, 4943, 198, 7575, 1273, 696, 11, 14056, 11395, 11, 16531, 10100, 11, 8255, 723, 3103, 4018, 796, 285, 571, 32875, 13, 11748, 13940, 2022, 10220, 7203, 15571, 7378, 85, 17, 12, 4825, 1600, 366, 7575, 1273, 696, 1600, 366, 38782, 11395, 1600, 366, 23114, 10100, 1600, 366, 8206, 723, 3103, 4018, 4943, 198, 66, 4861, 33, 896, 44758, 8895, 33, 796, 19937, 7390, 26858, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 4008, 198, 66, 4861, 33, 896, 44758, 8895, 33, 13, 2617, 18009, 3279, 7, 10786, 14315, 12, 486, 12, 2481, 3571, 25, 405, 3256, 4008, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 4861, 33, 896, 44758, 8895, 33, 13, 2617, 5956, 17354, 10786, 14315, 486, 2481, 2388, 57, 11537, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 4861, 33, 896, 44758, 8895, 33, 13, 2617, 26121, 1634, 10786, 34, 4861, 11998, 11, 3457, 2637, 8, 198, 66, 4861, 33, 896, 44758, 8895, 33, 3673, 361, 82, 796, 337, 571, 33234, 7483, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 657, 4008, 198, 66, 4861, 33, 896, 44758, 8895, 33, 10267, 82, 796, 337, 571, 33234, 7483, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 4008, 198, 66, 4861, 33, 896, 44758, 8895, 2749, 261, 687, 796, 337, 571, 33234, 7483, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 4008, 198, 66, 33, 896, 2601, 74, 7416, 10962, 796, 337, 571, 10962, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 828, 1267, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 10962, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 30150, 796, 337, 571, 10962, 25166, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 828, 6739, 2617, 15732, 36690, 19510, 15, 11, 366, 3525, 9050, 12, 8895, 33, 1600, 366, 298, 31611, 15732, 48774, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 30150, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 47445, 46787, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 352, 828, 34142, 2624, 22446, 7266, 4906, 7, 7266, 4906, 22882, 28, 3103, 2536, 6003, 38176, 7, 28008, 11395, 3103, 2536, 2913, 7, 16, 11, 362, 11, 513, 4008, 737, 21018, 7, 13190, 40161, 28, 45, 2434, 40161, 7, 7203, 39754, 1600, 352, 828, 5855, 38238, 1600, 362, 828, 5855, 353, 83, 8042, 1600, 513, 22305, 737, 2617, 11518, 15457, 7203, 961, 8807, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 47445, 46787, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 47445, 11297, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 362, 828, 34142, 2624, 22446, 7266, 4906, 7, 7266, 4906, 22882, 28, 3103, 2536, 6003, 38176, 7, 28008, 11395, 3103, 2536, 2913, 7, 15, 11, 352, 11, 362, 11, 513, 4008, 737, 21018, 7, 13190, 40161, 28, 45, 2434, 40161, 7, 7203, 403, 15182, 1600, 657, 828, 5855, 39754, 1600, 352, 828, 5855, 38238, 1600, 362, 828, 5855, 353, 83, 8042, 1600, 513, 22305, 737, 2617, 11518, 15457, 7203, 961, 8807, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 47445, 11297, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 14967, 27823, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 513, 828, 3862, 1273, 696, 3419, 737, 2617, 11518, 15457, 7203, 961, 13564, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 14967, 27823, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 13739, 12211, 82, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 604, 828, 15034, 2624, 3419, 737, 2617, 3118, 896, 10786, 43012, 27691, 2617, 11518, 15457, 7203, 961, 8807, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 13739, 12211, 82, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 818, 5275, 12211, 82, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 642, 828, 15034, 2624, 3419, 737, 2617, 3118, 896, 10786, 43012, 27691, 2617, 11518, 15457, 7203, 961, 8807, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 818, 5275, 12211, 82, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 7416, 11828, 796, 337, 571, 10962, 39470, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 352, 11, 352, 11, 718, 828, 5489, 3149, 46787, 10100, 3419, 737, 2617, 11518, 15457, 7203, 961, 8807, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 7416, 11828, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 33, 896, 2601, 74, 3673, 361, 20491, 796, 337, 571, 3351, 282, 283, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 352, 11, 362, 828, 14056, 11395, 22446, 21018, 10786, 9562, 11537, 737, 2617, 11518, 15457, 7203, 961, 13564, 4943, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 33, 896, 2601, 74, 3673, 361, 20491, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 7416, 796, 42808, 6030, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 657, 11, 352, 29720, 2617, 10267, 82, 7, 7203, 3525, 9050, 12, 8895, 33, 1600, 366, 298, 31611, 24564, 81, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 11828, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 47445, 46787, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 47445, 11297, 48774, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 4861, 33, 896, 44758, 7416, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 20366, 263, 403, 796, 42808, 6030, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 657, 11, 362, 29720, 2617, 10267, 82, 7, 7203, 3525, 9050, 12, 8895, 33, 1600, 366, 298, 31611, 24564, 81, 48774, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 4861, 33, 896, 44758, 20366, 263, 403, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 26807, 2502, 796, 42808, 6030, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 657, 11, 513, 29720, 2617, 10267, 82, 7, 7203, 3525, 9050, 12, 8895, 33, 1600, 366, 298, 31611, 24564, 81, 48774, 198, 361, 285, 571, 32875, 13, 2220, 8206, 82, 25, 269, 4861, 33, 896, 44758, 26807, 2502, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 8895, 2749, 6316, 16097, 796, 337, 571, 33234, 7483, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 11, 352, 4008, 198, 66, 4861, 33, 896, 44758, 8895, 40469, 14459, 796, 337, 571, 33234, 7483, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 11, 362, 4008, 198, 66, 4861, 33, 896, 44758, 8895, 2749, 6316, 3610, 796, 19937, 38143, 3610, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 11, 352, 11, 352, 29720, 2617, 10267, 82, 7, 7203, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 4861, 33, 896, 44758, 7416, 13247, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 4861, 33, 896, 44758, 3673, 361, 13247, 48774, 198, 198, 361, 651, 35226, 7, 76, 571, 32875, 11, 705, 9641, 3256, 357, 15, 11, 657, 11, 657, 4008, 1875, 357, 19, 11, 604, 11, 657, 2599, 198, 220, 220, 220, 269, 4861, 33, 896, 44758, 8895, 2749, 6316, 3610, 796, 269, 4861, 33, 896, 44758, 8895, 2749, 6316, 3610, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 7416, 13247, 796, 9515, 13247, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 11, 362, 11, 352, 29720, 2617, 10267, 82, 7, 7203, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 47445, 46787, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 47445, 11297, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 14967, 27823, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 13739, 12211, 82, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 818, 5275, 12211, 82, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 7416, 11828, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 33, 896, 2601, 74, 3673, 361, 20491, 48774, 198, 361, 651, 35226, 7, 76, 571, 32875, 11, 705, 9641, 3256, 357, 15, 11, 657, 11, 657, 4008, 1875, 357, 19, 11, 604, 11, 657, 2599, 198, 220, 220, 220, 269, 4861, 33, 896, 44758, 7416, 13247, 796, 269, 4861, 33, 896, 44758, 7416, 13247, 13, 2617, 19580, 10786, 14421, 11537, 198, 66, 4861, 33, 896, 44758, 3673, 361, 13247, 796, 42808, 13247, 19510, 16, 11, 513, 11, 718, 11, 352, 11, 604, 11, 352, 11, 860, 11, 860, 11, 604, 3270, 11, 362, 11, 362, 11, 362, 29720, 2617, 10267, 82, 7, 7203, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 4861, 33, 896, 44758, 7416, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 4861, 33, 896, 44758, 20366, 263, 403, 12340, 5855, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 366, 66, 4861, 33, 896, 44758, 26807, 2502, 48774, 198, 361, 651, 35226, 7, 76, 571, 32875, 11, 705, 9641, 3256, 357, 15, 11, 657, 11, 657, 4008, 1875, 357, 19, 11, 604, 11, 657, 2599, 198, 220, 220, 220, 269, 4861, 33, 896, 44758, 3673, 361, 13247, 796, 269, 4861, 33, 896, 44758, 3673, 361, 13247, 13, 2617, 19580, 10786, 14421, 11537, 198, 76, 571, 32875, 13, 39344, 13940, 2022, 10220, 7203, 34, 1797, 8220, 12, 26094, 50, 12, 5097, 11290, 12, 8895, 33, 1600, 269, 33, 896, 2601, 74, 7416, 47445, 46787, 28, 66, 33, 896, 2601, 74, 7416, 47445, 46787, 11, 269, 33, 896, 2601, 74, 3673, 361, 20491, 28, 66, 33, 896, 2601, 74, 3673, 361, 20491, 11, 269, 33, 896, 2601, 74, 7416, 47445, 11297, 28, 66, 33, 896, 2601, 74, 7416, 47445, 11297, 11, 269, 4861, 33, 896, 44758, 20366, 263, 403, 28, 66, 4861, 33, 896, 44758, 20366, 263, 403, 11, 269, 4861, 33, 896, 44758, 3673, 361, 13247, 28, 66, 4861, 33, 896, 44758, 3673, 361, 13247, 11, 269, 4861, 33, 896, 44758, 8895, 2749, 261, 687, 28, 66, 4861, 33, 896, 44758, 8895, 2749, 261, 687, 11, 269, 4861, 33, 896, 44758, 7416, 28, 66, 4861, 33, 896, 44758, 7416, 11, 269, 33, 896, 2601, 74, 7416, 818, 5275, 12211, 82, 28, 66, 33, 896, 2601, 74, 7416, 818, 5275, 12211, 82, 11, 269, 33, 896, 2601, 74, 7416, 10962, 28, 66, 33, 896, 2601, 74, 7416, 10962, 11, 269, 4861, 33, 896, 44758, 7416, 13247, 28, 66, 4861, 33, 896, 44758, 7416, 13247, 11, 269, 4861, 33, 896, 44758, 8895, 2749, 6316, 16097, 28, 66, 4861, 33, 896, 44758, 8895, 2749, 6316, 16097, 11, 269, 4861, 33, 896, 44758, 8895, 33, 28, 66, 4861, 33, 896, 44758, 8895, 33, 11, 269, 4861, 33, 896, 44758, 8895, 40469, 14459, 28, 66, 4861, 33, 896, 44758, 8895, 40469, 14459, 11, 269, 4861, 33, 896, 44758, 8895, 2749, 6316, 3610, 28, 66, 4861, 33, 896, 44758, 8895, 2749, 6316, 3610, 11, 269, 4861, 33, 896, 44758, 26807, 2502, 28, 66, 4861, 33, 896, 44758, 26807, 2502, 11, 269, 4861, 33, 896, 44758, 8895, 33, 3673, 361, 82, 28, 66, 4861, 33, 896, 44758, 8895, 33, 3673, 361, 82, 11, 350, 56, 15571, 7378, 62, 33365, 24212, 62, 2389, 28, 66, 4861, 33, 896, 44758, 8895, 33, 11, 269, 4861, 33, 896, 44758, 8895, 33, 10267, 82, 28, 66, 4861, 33, 896, 44758, 8895, 33, 10267, 82, 11, 269, 33, 896, 2601, 74, 7416, 30150, 28, 66, 33, 896, 2601, 74, 7416, 30150, 11, 269, 33, 896, 2601, 74, 7416, 11828, 28, 66, 33, 896, 2601, 74, 7416, 11828, 11, 269, 33, 896, 2601, 74, 7416, 13739, 12211, 82, 28, 66, 33, 896, 2601, 74, 7416, 13739, 12211, 82, 11, 269, 33, 896, 2601, 74, 7416, 14967, 27823, 28, 66, 33, 896, 2601, 74, 7416, 14967, 27823, 8, 198 ]
2.544774
3,071
#!/usr/bin/env python3 """ Crabada script to send mining all available teams for the given user. Usage: python3 -m bin.mining.sendTeamsMining <userAddress> Author: @coccoinomane (Twitter) """ from src.bot.mining.sendTeamsMining import sendTeamsMining from src.helpers.general import secondOrNone from src.models.User import User from src.common.logger import logger from sys import argv, exit userAddress = secondOrNone(argv) if not userAddress: logger.error("Specify a user address") exit(1) nSent = sendTeamsMining(User(userAddress), loot_point_filter=True)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 37811, 198, 13916, 397, 4763, 4226, 284, 3758, 9691, 477, 1695, 3466, 329, 198, 1169, 1813, 2836, 13, 198, 198, 28350, 25, 198, 220, 220, 220, 21015, 18, 532, 76, 9874, 13, 45374, 13, 21280, 6767, 4105, 44, 3191, 1279, 7220, 20231, 29, 198, 198, 13838, 25, 198, 220, 220, 220, 2488, 66, 420, 3630, 296, 1531, 357, 14254, 8, 198, 37811, 198, 198, 6738, 12351, 13, 13645, 13, 45374, 13, 21280, 6767, 4105, 44, 3191, 1330, 3758, 6767, 4105, 44, 3191, 198, 6738, 12351, 13, 16794, 364, 13, 24622, 1330, 1218, 5574, 14202, 198, 6738, 12351, 13, 27530, 13, 12982, 1330, 11787, 198, 6738, 12351, 13, 11321, 13, 6404, 1362, 1330, 49706, 198, 6738, 25064, 1330, 1822, 85, 11, 8420, 198, 198, 7220, 20231, 796, 1218, 5574, 14202, 7, 853, 85, 8, 198, 198, 361, 407, 2836, 20231, 25, 198, 220, 220, 220, 49706, 13, 18224, 7203, 22882, 1958, 257, 2836, 2209, 4943, 198, 220, 220, 220, 8420, 7, 16, 8, 198, 198, 77, 31837, 796, 3758, 6767, 4105, 44, 3191, 7, 12982, 7, 7220, 20231, 828, 16702, 62, 4122, 62, 24455, 28, 17821, 8, 198 ]
2.954315
197
from . import model as torchTensor
[ 6738, 764, 1330, 2746, 355, 28034, 51, 22854, 198 ]
3.888889
9
"""event_tweaks Revision ID: e88bc62b6e4 Revises: 4d3c2b4ceacb Create Date: 2015-03-17 14:04:09.394924 """ # revision identifiers, used by Alembic. revision = 'e88bc62b6e4' down_revision = '4d3c2b4ceacb' branch_labels = None depends_on = None from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import postgresql
[ 37811, 15596, 62, 83, 732, 4730, 198, 198, 18009, 1166, 4522, 25, 304, 3459, 15630, 5237, 65, 21, 68, 19, 198, 18009, 2696, 25, 604, 67, 18, 66, 17, 65, 19, 344, 330, 65, 198, 16447, 7536, 25, 1853, 12, 3070, 12, 1558, 1478, 25, 3023, 25, 2931, 13, 2670, 2920, 1731, 198, 198, 37811, 198, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 68, 3459, 15630, 5237, 65, 21, 68, 19, 6, 198, 2902, 62, 260, 10178, 796, 705, 19, 67, 18, 66, 17, 65, 19, 344, 330, 65, 6, 198, 1671, 3702, 62, 23912, 1424, 796, 6045, 198, 10378, 2412, 62, 261, 796, 6045, 198, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 198, 6738, 44161, 282, 26599, 13, 38969, 478, 82, 1330, 1281, 34239, 13976, 628 ]
2.363636
143
# -*- coding: utf-8 -*- import datetime import decimal from unittest import TestCase from jukoro import arrow from jukoro import json from jukoro import pg A = arrow.JuArrow D = decimal.Decimal
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 11748, 4818, 8079, 198, 11748, 32465, 198, 6738, 555, 715, 395, 1330, 6208, 20448, 198, 198, 6738, 474, 2724, 16522, 1330, 15452, 198, 6738, 474, 2724, 16522, 1330, 33918, 198, 6738, 474, 2724, 16522, 1330, 23241, 628, 198, 32, 796, 15452, 13, 33018, 3163, 808, 198, 35, 796, 32465, 13, 10707, 4402, 628 ]
2.926471
68
"""Information about the app.""" __version__ = '0.5.0' __url__ = 'https://github.com/fennekki/cdparacord'
[ 37811, 21918, 546, 262, 598, 526, 15931, 198, 834, 9641, 834, 796, 705, 15, 13, 20, 13, 15, 6, 198, 834, 6371, 834, 796, 705, 5450, 1378, 12567, 13, 785, 14, 69, 29727, 74, 4106, 14, 10210, 1845, 330, 585, 6, 198 ]
2.52381
42
#!/usr/bin/python import serial, time, sys, fileinput #open and configure serial port ser = serial.Serial( port='/dev/ttyUSB0', baudrate=19200, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS, timeout = .1 ) #first, clear out 210 buffer count = 0 while (count < 3): count +=1 ser.write("\r".encode()) time.sleep(.1) #open file for download file = open("download.mem", "w+") #send command to rc210 to start download ser.write("1SendEram\r\n".encode()) indata ="" Counter = 0 progresscounter = 0 var = 1 while var == 1: inser = str(ser.readline()) indata = inser.strip print (indata) if indata == "Complete": #check for first character of "Complete" and exit loop break Counter = Counter + 1 else: Counter = 0 ser.write("\r".encode()) file.write(indata) #LineCount -= 1 progresscounter += 1 progress = progresscounter / 44 if( progress > 100 ) : progress = 100 ser.write("OK\r\n".encode()) #print( '\rDownloading: %s (%d%%)' % ("|"*(progress/2), progress)), sys.stdout.flush() if Counter > 10 : file.close() sys.exit("RC210 did not respond. Exiting") print ("\nDownload Complete") file.close() #now for RTC sys.exit()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 11389, 11, 640, 11, 25064, 11, 2393, 15414, 198, 220, 198, 2, 9654, 290, 17425, 11389, 2493, 198, 2655, 796, 11389, 13, 32634, 7, 198, 220, 220, 220, 2493, 11639, 14, 7959, 14, 42852, 27155, 15, 3256, 198, 220, 220, 220, 275, 3885, 4873, 28, 1129, 2167, 11, 198, 220, 220, 220, 34383, 28, 46911, 13, 27082, 9050, 62, 45, 11651, 11, 198, 220, 220, 220, 2245, 9895, 28, 46911, 13, 2257, 3185, 26094, 50, 62, 11651, 11, 198, 220, 220, 220, 9881, 1096, 28, 46911, 13, 36, 9947, 26094, 50, 11, 198, 220, 220, 220, 26827, 796, 764, 16, 197, 198, 8, 198, 198, 2, 11085, 11, 1598, 503, 20064, 11876, 198, 9127, 796, 657, 198, 4514, 357, 9127, 1279, 513, 2599, 198, 954, 15853, 16, 220, 220, 198, 1055, 13, 13564, 7203, 59, 81, 1911, 268, 8189, 28955, 628, 640, 13, 42832, 7, 13, 16, 8, 198, 220, 198, 198, 2, 9654, 2393, 329, 4321, 198, 7753, 796, 1280, 7203, 15002, 13, 11883, 1600, 366, 86, 10, 4943, 198, 198, 2, 21280, 3141, 284, 48321, 21536, 284, 923, 4321, 198, 2655, 13, 13564, 7203, 16, 25206, 36, 859, 59, 81, 59, 77, 1911, 268, 8189, 28955, 198, 198, 521, 1045, 796, 15931, 220, 198, 31694, 796, 657, 198, 33723, 24588, 796, 657, 198, 7785, 796, 352, 198, 198, 4514, 1401, 6624, 352, 25, 198, 220, 1035, 263, 796, 965, 7, 2655, 13, 961, 1370, 28955, 198, 220, 773, 1045, 796, 1035, 263, 13, 36311, 198, 220, 3601, 357, 521, 1045, 8, 198, 220, 611, 773, 1045, 6624, 366, 20988, 1298, 1303, 9122, 329, 717, 2095, 286, 366, 20988, 1, 290, 8420, 9052, 198, 220, 220, 220, 2270, 628, 220, 220, 220, 15034, 796, 15034, 1343, 352, 197, 198, 220, 2073, 25, 198, 220, 220, 220, 15034, 796, 657, 220, 198, 220, 220, 220, 1055, 13, 13564, 7203, 59, 81, 1911, 268, 8189, 28955, 198, 220, 220, 220, 2393, 13, 13564, 7, 521, 1045, 8, 198, 220, 220, 220, 1303, 13949, 12332, 48185, 352, 220, 198, 220, 220, 220, 4371, 24588, 15853, 352, 198, 220, 220, 220, 4371, 796, 4371, 24588, 1220, 5846, 198, 220, 220, 220, 611, 7, 4371, 1875, 1802, 1267, 1058, 4371, 796, 1802, 198, 220, 220, 220, 1055, 13, 13564, 7203, 11380, 59, 81, 59, 77, 1911, 268, 8189, 28955, 198, 197, 198, 197, 198, 220, 220, 220, 1303, 4798, 7, 705, 59, 81, 10002, 278, 25, 4064, 82, 37633, 67, 4, 4407, 6, 4064, 5855, 91, 1, 9, 7, 33723, 14, 17, 828, 4371, 36911, 198, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 628, 220, 220, 198, 220, 611, 15034, 1875, 838, 1058, 198, 220, 220, 220, 2393, 13, 19836, 3419, 198, 220, 220, 220, 25064, 13, 37023, 7203, 7397, 21536, 750, 407, 3031, 13, 1475, 1780, 4943, 628, 197, 198, 4798, 5855, 59, 77, 10002, 13248, 4943, 198, 220, 220, 198, 220, 220, 198, 7753, 13, 19836, 3419, 198, 198, 2, 2197, 329, 371, 4825, 628, 198, 17597, 13, 37023, 3419, 628, 198 ]
2.502913
515
#!/usr/bin/env python3 #coding: utf-8 """ pythonic way """ lst = ['aaabb', 'caca', 'dabc', 'acc', 'abbb'] res = ','.join(lst[1:-1]) print(res)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 66, 7656, 25, 3384, 69, 12, 23, 198, 37811, 198, 29412, 291, 835, 198, 37811, 198, 198, 75, 301, 796, 37250, 7252, 6485, 3256, 705, 66, 22260, 3256, 705, 67, 39305, 3256, 705, 4134, 3256, 705, 6485, 65, 20520, 198, 411, 796, 705, 4032, 13, 22179, 7, 75, 301, 58, 16, 21912, 16, 12962, 198, 4798, 7, 411, 8, 198 ]
2.028169
71
"""A pre-commit hook dependency.""" from __future__ import annotations from dataclasses import dataclass from neophile.dependency.base import Dependency __all__ = ["PreCommitDependency"] @dataclass(frozen=True, order=True) class PreCommitDependency(Dependency): """Represents a single pre-commit dependency.""" repository: str """The URL of the GitHub repository providing this pre-commit hook.""" owner: str """The GitHub repository owner of the pre-commit hook.""" repo: str """The GitHub repository name of the pre-commit hook.""" version: str """The version of the dependency (may be a match pattern)."""
[ 37811, 32, 662, 12, 41509, 8011, 20203, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 198, 6738, 497, 37161, 13, 45841, 1387, 13, 8692, 1330, 37947, 1387, 198, 198, 834, 439, 834, 796, 14631, 6719, 6935, 270, 35, 2690, 1387, 8973, 628, 198, 31, 19608, 330, 31172, 7, 69, 42005, 28, 17821, 11, 1502, 28, 17821, 8, 198, 4871, 3771, 6935, 270, 35, 2690, 1387, 7, 35, 2690, 1387, 2599, 198, 220, 220, 220, 37227, 6207, 6629, 257, 2060, 662, 12, 41509, 20203, 526, 15931, 628, 220, 220, 220, 16099, 25, 965, 198, 220, 220, 220, 37227, 464, 10289, 286, 262, 21722, 16099, 4955, 428, 662, 12, 41509, 8011, 526, 15931, 628, 220, 220, 220, 4870, 25, 965, 198, 220, 220, 220, 37227, 464, 21722, 16099, 4870, 286, 262, 662, 12, 41509, 8011, 526, 15931, 628, 220, 220, 220, 29924, 25, 965, 198, 220, 220, 220, 37227, 464, 21722, 16099, 1438, 286, 262, 662, 12, 41509, 8011, 526, 15931, 628, 220, 220, 220, 2196, 25, 965, 198, 220, 220, 220, 37227, 464, 2196, 286, 262, 20203, 357, 11261, 307, 257, 2872, 3912, 21387, 15931, 198 ]
3.308081
198
#!/bin/python3 # # Copyright (c) 2019 Joakim Eriksson # 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. # 3. The name of the author may not be used to endorse or promote # products derived from this software without specific prior # written permission. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. # # # Experimental NAT64 and DNS64 using tun-interface (for the NAT64 IPv6 interface and the # regular sockets as the TCP/UDP interface. # import ipaddress, os, select, time import socket, logging, struct import dpkt # TCP State machine TCP_INIT = 1 # Same as LISTEN... more or less... TCP_SYN_RECEIVED = 2 TCP_SYN_SENT = 3 TCP_ESTABLISHED = 4 TCP_FIN_WAIT = 5 TCP_FIN_CLOSE_WAIT = 6 TYPE_HANDSHAKE_MAC_GET = 1 TYPE_HANDSHAKE_MAC_SET = 2 TYPE_RAW_IPV6 = 6 # Protocol numbers PROTO_UDP = 17 PROTO_TCP = 6 PROTO_ICMP = 58 PROTOS = {PROTO_UDP: "udp", PROTO_TCP: "tcp", PROTO_ICMP: "icmp"} MAC = b'\xca\xba\x88\x88\x00\xaa\xbb\x01' macaddr = 1 sockmap = {} adrmap = {} input = [] tuntcp = [] tun = None tunconnection = None prefix = ipaddress.ip_address("64:ff9b::0").packed log = logging.getLogger('nat64') log.setLevel(logging.DEBUG) # create log formatter and add it to the handlers formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) ch.setFormatter(formatter) log.addHandler(ch) # Remove the state for this specific socket # Tun is reception from local machine - not from native or NBR. # TunTcp from NBR or native platform. # Only for OS-X for now. # Should be easy to adapt for linux also. tun = os.open("/dev/tun12", os.O_RDWR) os.system("ifconfig tun12 inet6 64:ff9b::1/96 up") os.system("sysctl -w net.inet.ip.forwarding=1"); input = [tun] tunconnection = None tunsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server_address = ('localhost', 8888) tunsock.bind(server_address) tunsock.listen(1) log.info("Accepting tunctp connections over TCP on 8888.") input = input + [tunsock] try: while 1: inputready,outputready,exceptready = select.select(input,[],input) for r in inputready: if r == tun: packet = os.read(tun, 4000) recv_from_tun(packet) # Something from the tuntcp connections. elif r in tuntcp: data = r.recv(4000) if not data: log.debug(">> TUNTCP Socket shutdown - removing socket!") input.remove(r) tuntcp.remove(r) else: recv_from_tuntcp(r, data) # Something on the accept socket!? elif r == tunsock: tunconnection, client_address = tunsock.accept() log.debug("Connection from: %s", client_address) input = input + [tunconnection] tuntcp = tuntcp + [tunconnection] # Otherwise it is on a NAT64:ed socket else: st = sockmap[r] # Receive will receive and send back over tun. data = st.receive() if not data: log.debug(">> Socket shutdown - remove socket?!") for r in exceptready: print(r) except KeyboardInterrupt: log.error("Stopped by user.")
[ 2, 48443, 8800, 14, 29412, 18, 198, 2, 198, 2, 15069, 357, 66, 8, 13130, 5302, 461, 320, 412, 39370, 1559, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 2297, 396, 3890, 290, 779, 287, 2723, 290, 13934, 5107, 11, 351, 393, 1231, 198, 2, 17613, 11, 389, 10431, 2810, 326, 262, 1708, 3403, 198, 2, 389, 1138, 25, 198, 2, 352, 13, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 198, 2, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 198, 2, 362, 13, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 198, 2, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 262, 198, 2, 220, 220, 220, 10314, 290, 14, 273, 584, 5696, 2810, 351, 262, 6082, 13, 198, 2, 513, 13, 383, 1438, 286, 262, 1772, 743, 407, 307, 973, 284, 11438, 393, 7719, 198, 2, 220, 220, 220, 3186, 10944, 422, 428, 3788, 1231, 2176, 3161, 198, 2, 220, 220, 220, 3194, 7170, 13, 198, 2, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 44746, 5357, 27342, 9865, 3843, 20673, 7559, 1921, 3180, 7061, 5357, 198, 2, 15529, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 40880, 5390, 11, 3336, 198, 2, 8959, 49094, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 198, 2, 15986, 13954, 48778, 1961, 13, 220, 3268, 8005, 49261, 50163, 3336, 44746, 6375, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 198, 2, 7473, 15529, 42242, 11, 3268, 17931, 23988, 11, 19387, 25256, 1847, 11, 38846, 11, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 198, 2, 29506, 25552, 357, 1268, 39149, 2751, 11, 21728, 5626, 40880, 5390, 11, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 198, 2, 6375, 49254, 26, 406, 18420, 3963, 23210, 11, 42865, 11, 6375, 4810, 19238, 29722, 26, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 198, 2, 29630, 36, 5959, 7257, 2937, 1961, 5357, 6177, 15529, 3336, 15513, 3963, 43031, 25382, 11, 7655, 2767, 16879, 3268, 27342, 10659, 11, 19269, 18379, 198, 2, 43031, 25382, 11, 6375, 309, 9863, 357, 1268, 39149, 2751, 399, 7156, 43, 3528, 18310, 6375, 25401, 54, 24352, 8, 5923, 1797, 2751, 3268, 15529, 34882, 198, 2, 16289, 3963, 3336, 23210, 3963, 12680, 47466, 11, 45886, 16876, 5984, 29817, 1961, 3963, 3336, 28069, 11584, 25382, 3963, 198, 2, 13558, 3398, 29506, 11879, 13, 198, 2, 198, 2, 198, 2, 32286, 10149, 2414, 290, 18538, 2414, 1262, 6278, 12, 39994, 357, 1640, 262, 10149, 2414, 25961, 21, 7071, 290, 262, 198, 2, 3218, 37037, 355, 262, 23633, 14, 52, 6322, 7071, 13, 198, 2, 198, 198, 11748, 20966, 21975, 11, 28686, 11, 2922, 11, 640, 198, 11748, 17802, 11, 18931, 11, 2878, 198, 11748, 288, 79, 21841, 198, 198, 2, 23633, 1812, 4572, 198, 4825, 47, 62, 1268, 2043, 796, 352, 1303, 16766, 355, 39498, 1677, 986, 517, 393, 1342, 986, 198, 4825, 47, 62, 23060, 45, 62, 2200, 5222, 3824, 1961, 796, 362, 198, 4825, 47, 62, 23060, 45, 62, 50, 3525, 796, 513, 198, 4825, 47, 62, 1546, 5603, 9148, 18422, 1961, 796, 604, 198, 4825, 47, 62, 20032, 62, 15543, 2043, 796, 642, 198, 4825, 47, 62, 20032, 62, 32737, 62, 15543, 2043, 796, 718, 198, 198, 25216, 62, 39, 1565, 5258, 7801, 7336, 62, 44721, 62, 18851, 220, 220, 796, 352, 198, 25216, 62, 39, 1565, 5258, 7801, 7336, 62, 44721, 62, 28480, 220, 220, 796, 362, 198, 25216, 62, 20530, 62, 4061, 53, 21, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 718, 198, 198, 2, 20497, 3146, 198, 4805, 26631, 62, 52, 6322, 796, 1596, 198, 4805, 26631, 62, 4825, 47, 796, 718, 198, 4805, 26631, 62, 2149, 7378, 796, 7618, 198, 4805, 33291, 796, 1391, 4805, 26631, 62, 52, 6322, 25, 366, 463, 79, 1600, 4810, 26631, 62, 4825, 47, 25, 366, 83, 13155, 1600, 4810, 26631, 62, 2149, 7378, 25, 366, 291, 3149, 20662, 198, 198, 44721, 796, 275, 6, 59, 87, 6888, 59, 87, 7012, 59, 87, 3459, 59, 87, 3459, 59, 87, 405, 59, 87, 7252, 59, 87, 11848, 59, 87, 486, 6, 198, 20285, 29851, 796, 352, 198, 82, 735, 8899, 796, 23884, 198, 41909, 8899, 796, 23884, 198, 15414, 796, 17635, 198, 83, 2797, 13155, 796, 17635, 198, 28286, 796, 6045, 198, 28286, 38659, 796, 6045, 198, 40290, 796, 20966, 21975, 13, 541, 62, 21975, 7203, 2414, 25, 487, 24, 65, 3712, 15, 11074, 34860, 198, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 10786, 32353, 2414, 11537, 198, 6404, 13, 2617, 4971, 7, 6404, 2667, 13, 30531, 8, 198, 198, 2, 2251, 2604, 1296, 1436, 290, 751, 340, 284, 262, 32847, 198, 687, 1436, 796, 18931, 13, 8479, 1436, 10786, 4, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 5715, 3672, 8, 82, 532, 4064, 7, 20500, 8, 82, 11537, 198, 354, 796, 18931, 13, 12124, 25060, 3419, 198, 354, 13, 2617, 4971, 7, 6404, 2667, 13, 30531, 8, 198, 354, 13, 2617, 8479, 1436, 7, 687, 1436, 8, 198, 6404, 13, 2860, 25060, 7, 354, 8, 198, 198, 2, 17220, 262, 1181, 329, 428, 2176, 17802, 198, 198, 2, 13932, 318, 16307, 422, 1957, 4572, 532, 407, 422, 6868, 393, 399, 11473, 13, 198, 198, 2, 13932, 51, 13155, 422, 399, 11473, 393, 6868, 3859, 13, 198, 198, 2, 5514, 329, 7294, 12, 55, 329, 783, 13, 198, 2, 10358, 307, 2562, 284, 6068, 329, 32639, 635, 13, 198, 28286, 796, 28686, 13, 9654, 7203, 14, 7959, 14, 28286, 1065, 1600, 28686, 13, 46, 62, 35257, 18564, 8, 198, 418, 13, 10057, 7203, 361, 11250, 6278, 1065, 287, 316, 21, 5598, 25, 487, 24, 65, 3712, 16, 14, 4846, 510, 4943, 198, 418, 13, 10057, 7203, 17597, 34168, 532, 86, 2010, 13, 42504, 13, 541, 13, 11813, 278, 28, 16, 15341, 198, 198, 15414, 796, 685, 28286, 60, 198, 28286, 38659, 796, 6045, 198, 83, 13271, 735, 796, 17802, 13, 44971, 7, 44971, 13, 8579, 62, 1268, 2767, 11, 17802, 13, 50, 11290, 62, 2257, 32235, 8, 198, 15388, 62, 21975, 796, 19203, 36750, 3256, 807, 28011, 8, 198, 83, 13271, 735, 13, 21653, 7, 15388, 62, 21975, 8, 198, 83, 13271, 735, 13, 4868, 268, 7, 16, 8, 198, 6404, 13, 10951, 7203, 38855, 278, 6278, 310, 79, 8787, 625, 23633, 319, 807, 28011, 19570, 198, 15414, 796, 5128, 1343, 685, 83, 13271, 735, 60, 198, 28311, 25, 198, 220, 220, 220, 981, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 1493, 11, 22915, 1493, 11, 16341, 1493, 796, 2922, 13, 19738, 7, 15414, 17414, 4357, 15414, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 5128, 1493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 6624, 6278, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19638, 796, 28686, 13, 961, 7, 28286, 11, 30123, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 664, 85, 62, 6738, 62, 28286, 7, 8002, 316, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13742, 422, 262, 256, 2797, 13155, 8787, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 374, 287, 256, 2797, 13155, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 374, 13, 8344, 85, 7, 27559, 8, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 2604, 13, 24442, 7203, 4211, 309, 4944, 4825, 47, 47068, 18325, 532, 10829, 17802, 2474, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 13, 28956, 7, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 2797, 13155, 13, 28956, 7, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 664, 85, 62, 6738, 62, 83, 2797, 13155, 7, 81, 11, 1366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13742, 319, 262, 2453, 17802, 22857, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 374, 6624, 6278, 82, 735, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6278, 38659, 11, 5456, 62, 21975, 796, 6278, 82, 735, 13, 13635, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 24442, 7203, 32048, 422, 25, 4064, 82, 1600, 5456, 62, 21975, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 796, 5128, 1343, 685, 28286, 38659, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 2797, 13155, 796, 256, 2797, 13155, 1343, 685, 28286, 38659, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15323, 340, 318, 319, 257, 10149, 2414, 25, 276, 17802, 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, 336, 796, 32263, 8899, 58, 81, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 797, 15164, 481, 3328, 290, 3758, 736, 625, 6278, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 336, 13, 260, 15164, 3419, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 2604, 13, 24442, 7203, 4211, 47068, 18325, 532, 4781, 17802, 30823, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 2845, 1493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 81, 8, 198, 16341, 31973, 9492, 3622, 25, 198, 220, 220, 220, 2604, 13, 18224, 7203, 1273, 38333, 416, 2836, 19570 ]
2.501941
1,803
from setuptools import setup, find_packages from setuptools import setup import os import re dependencies = [ 'pandas>=0.16.0', 'numpy>=1.9.2', 'scipy>=1.6.0', 'statsmodels>=0.12.2', 'networkx>=2.5', ] with open(os.path.join(os.path.dirname(__file__), "fixedeffect", "_version.py")) as file: for line in file: m = re.fullmatch("__version__ = '([^']+)'\n", line) if m: version = m.group(1) setup(name='FixedEffectModel', version=version, description='Solutions to linear model with high dimensional fixed effects.', long_description=readme(), long_description_content_type="text/markdown", author='ksecology', author_email='[email protected]', url='https://github.com/ksecology/FixedEffectModel', packages=find_packages(), install_requires=dependencies, zip_safe=False, license='MIT', python_requires='>=3.6', classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Sociology', 'Topic :: Scientific/Engineering :: Information Analysis', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Operating System :: OS Independent', ] )
[ 6738, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 198, 6738, 900, 37623, 10141, 1330, 9058, 198, 11748, 28686, 198, 11748, 302, 628, 198, 45841, 3976, 796, 685, 198, 220, 220, 220, 705, 79, 392, 292, 29, 28, 15, 13, 1433, 13, 15, 3256, 198, 220, 220, 220, 705, 77, 32152, 29, 28, 16, 13, 24, 13, 17, 3256, 198, 220, 220, 220, 705, 1416, 541, 88, 29, 28, 16, 13, 21, 13, 15, 3256, 198, 220, 220, 220, 705, 34242, 27530, 29, 28, 15, 13, 1065, 13, 17, 3256, 198, 220, 220, 220, 705, 27349, 87, 29, 28, 17, 13, 20, 3256, 198, 60, 198, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 828, 366, 34021, 10760, 1600, 45434, 9641, 13, 9078, 48774, 355, 2393, 25, 198, 220, 220, 220, 329, 1627, 287, 2393, 25, 198, 220, 220, 220, 220, 220, 220, 220, 285, 796, 302, 13, 12853, 15699, 7203, 834, 9641, 834, 796, 705, 26933, 61, 20520, 28988, 6, 59, 77, 1600, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 285, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 796, 285, 13, 8094, 7, 16, 8, 198, 198, 40406, 7, 3672, 11639, 13715, 18610, 17633, 3256, 198, 220, 220, 220, 220, 220, 2196, 28, 9641, 11, 198, 220, 220, 220, 220, 220, 6764, 11639, 50, 14191, 284, 14174, 2746, 351, 1029, 38517, 5969, 3048, 2637, 11, 198, 220, 220, 220, 220, 220, 890, 62, 11213, 28, 961, 1326, 22784, 198, 220, 220, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 2625, 5239, 14, 4102, 2902, 1600, 198, 220, 220, 220, 220, 220, 1772, 11639, 74, 2363, 1435, 3256, 198, 220, 220, 220, 220, 220, 1772, 62, 12888, 11639, 6814, 62, 721, 1435, 31, 74, 6413, 680, 280, 13, 785, 3256, 198, 220, 220, 220, 220, 220, 19016, 11639, 5450, 1378, 12567, 13, 785, 14, 74, 2363, 1435, 14, 13715, 18610, 17633, 3256, 198, 220, 220, 220, 220, 220, 10392, 28, 19796, 62, 43789, 22784, 198, 220, 220, 220, 220, 220, 2721, 62, 47911, 28, 45841, 3976, 11, 198, 220, 220, 220, 220, 220, 19974, 62, 21230, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 5964, 11639, 36393, 3256, 198, 220, 220, 220, 220, 220, 21015, 62, 47911, 11639, 29, 28, 18, 13, 21, 3256, 198, 220, 220, 220, 220, 220, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41206, 12678, 7904, 513, 532, 12995, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 34156, 7904, 7294, 40, 20010, 1079, 7904, 17168, 13789, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33221, 7904, 22060, 14, 13798, 1586, 7904, 39448, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33221, 7904, 31339, 1435, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33221, 7904, 22060, 14, 13798, 1586, 7904, 6188, 14691, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 21, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 22, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 23, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 18843, 803, 4482, 7904, 7294, 13362, 3256, 198, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 1267, 198 ]
2.394525
621
import os import pandas as pd import matplotlib.pyplot as plt if os.path.exists("datapoints.csv"): data = pd.read_csv("datapoints.csv") else: print("File does not exist") dataY = data['y'].copy() dataX = data['x'].copy() sumx = sum1(dataX) sumy = sum1(dataY) sumxy = sum2(dataX, dataY) sumxx = sum2(dataX, dataX) resultA = (sumxy-sumx*sumy)/(sumxx - sumx**2) resultB = sumy - resultA*sumx print(resultA, resultB)
[ 11748, 28686, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 361, 28686, 13, 6978, 13, 1069, 1023, 7203, 19608, 499, 1563, 82, 13, 40664, 1, 2599, 198, 220, 220, 220, 1366, 796, 279, 67, 13, 961, 62, 40664, 7203, 19608, 499, 1563, 82, 13, 40664, 4943, 198, 17772, 25, 198, 220, 220, 220, 3601, 7203, 8979, 857, 407, 2152, 4943, 198, 198, 7890, 56, 796, 1366, 17816, 88, 6, 4083, 30073, 3419, 198, 7890, 55, 796, 1366, 17816, 87, 6, 4083, 30073, 3419, 198, 16345, 87, 796, 2160, 16, 7, 7890, 55, 8, 198, 16345, 88, 796, 2160, 16, 7, 7890, 56, 8, 198, 16345, 5431, 796, 2160, 17, 7, 7890, 55, 11, 1366, 56, 8, 198, 16345, 5324, 796, 2160, 17, 7, 7890, 55, 11, 1366, 55, 8, 198, 198, 20274, 32, 796, 357, 16345, 5431, 12, 16345, 87, 9, 16345, 88, 20679, 7, 16345, 5324, 532, 2160, 87, 1174, 17, 8, 198, 20274, 33, 796, 2160, 88, 532, 1255, 32, 9, 16345, 87, 198, 4798, 7, 20274, 32, 11, 1255, 33, 8, 198 ]
2.274194
186
import aspose.slides as slides
[ 11748, 355, 3455, 13, 6649, 1460, 355, 19392, 198 ]
3.444444
9
""" Placeholders """ # You're writing a program, and you don't know what your starting value for your 'initial' variable is yet. The program won't run if you leave it blank, but you don't want to forget you need it! Make a workaround.
[ 37811, 198, 27271, 10476, 198, 37811, 198, 198, 2, 921, 821, 3597, 257, 1430, 11, 290, 345, 836, 470, 760, 644, 534, 3599, 1988, 329, 534, 705, 36733, 6, 7885, 318, 1865, 13, 383, 1430, 1839, 470, 1057, 611, 345, 2666, 340, 9178, 11, 475, 345, 836, 470, 765, 284, 6044, 345, 761, 340, 0, 6889, 257, 46513, 13, 628 ]
3.95
60
import io import os import pathlib import tempfile from django.core.management import call_command from django.core.management.base import CommandError from django.test import TestCase import oscar from tests import _site
[ 11748, 33245, 198, 11748, 28686, 198, 11748, 3108, 8019, 198, 11748, 20218, 7753, 198, 198, 6738, 42625, 14208, 13, 7295, 13, 27604, 1330, 869, 62, 21812, 198, 6738, 42625, 14208, 13, 7295, 13, 27604, 13, 8692, 1330, 9455, 12331, 198, 6738, 42625, 14208, 13, 9288, 1330, 6208, 20448, 198, 198, 11748, 267, 13034, 198, 6738, 5254, 1330, 4808, 15654, 628 ]
3.75
60
from ctypes import * """ >>> p = parse_log_line('/plogger/ || 50.73.113.242 || - || 21/Mar/2013:13:22:13 +0000 || GET /plogger/?rand=1363872131875&idsite=deadspin.com&url=http%3A%2F%2Fdeadspin.com%2Frecommended&urlref=http%3A%2F%2Fdeadspin.com%2F&screen=1024x768%7C1024x738%7C24&data=%7B%22parsely_uuid%22%3A%22908932BF-0935-46AD-84BD-10120D5297CA%22%2C%22parsely_site_uuid%22%3A%22908932BF-0935-46AD-84BD-10120D5297CA%22%7D&title=Deadspin+-+Sports+News+without+Access%2C+Favor%2C+or+Discretion&date=Thu+Mar+21+2013+08%3A22%3A11+GMT-0500+(Central+Daylight+Time)&action=pageview HTTP/1.1 || 200 || 363 || - || Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0" || - || - || parsely_network_uuid=CrMHN1FLCYUJWgTmkT47Ag==; expires=Thu, 31-Dec-37 23:55:55 GMT; domain=track.parse.ly; path=/ || 0.000') >>> {'i': '50.73.113.242', 'r': {'title': 'Deadspin - Sports News without Access, Favor, or Discretion', 'url': 'http://deadspin.com/recommended', 'screen': '1024x768|1024x738|24', 'action': 'pageview', 'urlref': 'http://deadspin.com/', 'date': 'Thu Mar 21 2013 08:22:11 GMT-0500 (Central Daylight Time)', 'idsite': 'deadspin.com', 'data': {'parsely_site_uuid': '908932BF-0935-46AD-84BD-10120D5297CA', 'parsely_uuid': '908932BF-0935-46AD-84BD-10120D5297CA'}}, 'u': 'Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0', 't': dt.datetime(2013, 3, 21, 13, 22, 11, 875000)} == p True """ line = "/plogger/ || 191.251.123.60 || - || 31/Aug/2015:23:49:01 +0000 || GET /plogger/?rand=1441064941650&idsite=bolsademulher.com&url=http%3A%2F%2Fwww.bolsademulher.com%2Fbebe%2Fo-que-o-bebe-sente-dentro-da-barriga-quando-a-mae-faz-sexo-4-sensacoes-surpreendentes%2F%3Futm_source%3Dfacebook%26utm_medium%3Dmanual%26utm_campaign%3DBolsaFB&urlref=http%3A%2F%2Fm.facebook.com%2F&screen=360x592%7C360x592%7C32&data=%7B%22parsely_uuid%22%3A%22b5e2fcb7-966f-40f8-b41c-fca446908a56%22%2C%22parsely_site_uuid%22%3A%226e9ab165-497c-45be-9998-e029372b5a92%22%7D&sid=1&surl=http%3A%2F%2Fwww.bolsademulher.com%2Fbebe%2Fo-que-o-bebe-sente-dentro-da-barriga-quando-a-mae-faz-sexo-4-sensacoes-surpreendentes%2F%3Futm_source%3Dfacebook%26utm_medium%3Dmanual%26utm_campaign%3DBolsaFB&sref=http%3A%2F%2Fm.facebook.com%2F&sts=1441064914096&slts=0&date=Mon+Aug+31+2015+20%3A49%3A01+GMT-0300+(BRT)&action=heartbeat&inc=6 HTTP/1.1 || 200 || 236 || http://www.bolsademulher.com/bebe/o-que-o-bebe-sente-dentro-da-barriga-quando-a-mae-faz-sexo-4-sensacoes-surpreendentes/?utm_source=facebook&utm_medium=manual&utm_campaign=BolsaFB || Mozilla/5.0 (Linux; Android 4.4.4; XT1025 Build/KXC21.5-40) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/34.0.0.43.267;] || - || - || - || 0.000" main()
[ 6738, 269, 19199, 1330, 1635, 198, 198, 37811, 198, 33409, 279, 796, 21136, 62, 6404, 62, 1370, 10786, 14, 489, 519, 1362, 14, 8614, 2026, 13, 4790, 13, 16616, 13, 27877, 8614, 532, 8614, 2310, 14, 7676, 14, 6390, 25, 1485, 25, 1828, 25, 1485, 1343, 2388, 220, 8614, 17151, 1220, 489, 519, 1362, 20924, 25192, 28, 20809, 2548, 4761, 1485, 1507, 2425, 5, 2340, 578, 28, 25124, 39706, 13, 785, 5, 6371, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 25124, 39706, 13, 785, 4, 17, 20366, 9503, 1631, 5, 6371, 5420, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 25124, 39706, 13, 785, 4, 17, 37, 5, 9612, 28, 35500, 87, 30610, 4, 22, 34, 35500, 87, 22, 2548, 4, 22, 34, 1731, 5, 7890, 28, 4, 22, 33, 4, 1828, 29572, 306, 62, 12303, 312, 4, 1828, 4, 18, 32, 4, 23539, 49352, 2624, 29499, 12, 2931, 2327, 12, 3510, 2885, 12, 5705, 14529, 12, 8784, 1238, 35, 20, 26561, 8141, 4, 1828, 4, 17, 34, 4, 1828, 29572, 306, 62, 15654, 62, 12303, 312, 4, 1828, 4, 18, 32, 4, 23539, 49352, 2624, 29499, 12, 2931, 2327, 12, 3510, 2885, 12, 5705, 14529, 12, 8784, 1238, 35, 20, 26561, 8141, 4, 1828, 4, 22, 35, 5, 7839, 28, 20489, 39706, 10, 19529, 18153, 10, 9980, 10, 19419, 10, 15457, 4, 17, 34, 10, 37, 5570, 4, 17, 34, 10, 273, 10, 15642, 12307, 5, 4475, 28, 39902, 10, 7676, 10, 2481, 10, 6390, 10, 2919, 4, 18, 32, 1828, 4, 18, 32, 1157, 10, 49424, 12, 2713, 405, 33747, 30645, 10, 12393, 2971, 10, 7575, 8, 5, 2673, 28, 7700, 1177, 14626, 14, 16, 13, 16, 8614, 939, 8614, 49327, 8614, 532, 8614, 29258, 14, 20, 13, 15, 357, 11209, 24563, 642, 13, 16, 26, 374, 85, 25, 1129, 13, 15, 8, 2269, 37549, 14, 1264, 8298, 486, 16802, 14, 1129, 13, 15, 1, 8614, 532, 8614, 532, 8614, 21136, 306, 62, 27349, 62, 12303, 312, 28, 13916, 36208, 45, 16, 3697, 34, 56, 52, 41, 54, 70, 51, 28015, 51, 2857, 10262, 855, 26, 27396, 28, 39902, 11, 3261, 12, 10707, 12, 2718, 2242, 25, 2816, 25, 2816, 16987, 26, 7386, 28, 11659, 13, 29572, 13, 306, 26, 3108, 33223, 8614, 657, 13, 830, 11537, 198, 220, 220, 220, 13163, 1391, 6, 72, 10354, 705, 1120, 13, 4790, 13, 16616, 13, 27877, 3256, 705, 81, 10354, 1391, 6, 7839, 10354, 705, 20489, 39706, 532, 7092, 3000, 1231, 8798, 11, 38196, 11, 393, 8444, 12307, 3256, 705, 6371, 10354, 705, 4023, 1378, 25124, 39706, 13, 785, 14, 47335, 1631, 3256, 705, 9612, 10354, 705, 35500, 87, 30610, 91, 35500, 87, 22, 2548, 91, 1731, 3256, 705, 2673, 10354, 705, 7700, 1177, 3256, 705, 6371, 5420, 10354, 705, 4023, 1378, 25124, 39706, 13, 785, 14, 3256, 705, 4475, 10354, 705, 39902, 1526, 2310, 2211, 8487, 25, 1828, 25, 1157, 16987, 12, 2713, 405, 357, 30645, 47743, 3862, 8, 3256, 705, 2340, 578, 10354, 705, 25124, 39706, 13, 785, 3256, 705, 7890, 10354, 1391, 6, 29572, 306, 62, 15654, 62, 12303, 312, 10354, 705, 24, 49352, 2624, 29499, 12, 2931, 2327, 12, 3510, 2885, 12, 5705, 14529, 12, 8784, 1238, 35, 20, 26561, 8141, 3256, 705, 29572, 306, 62, 12303, 312, 10354, 705, 24, 49352, 2624, 29499, 12, 2931, 2327, 12, 3510, 2885, 12, 5705, 14529, 12, 8784, 1238, 35, 20, 26561, 8141, 6, 92, 5512, 705, 84, 10354, 705, 44, 8590, 5049, 14, 20, 13, 15, 357, 11209, 24563, 642, 13, 16, 26, 374, 85, 25, 1129, 13, 15, 8, 2269, 37549, 14, 1264, 8298, 486, 16802, 14, 1129, 13, 15, 3256, 705, 83, 10354, 288, 83, 13, 19608, 8079, 7, 6390, 11, 513, 11, 2310, 11, 1511, 11, 2534, 11, 1367, 11, 807, 2425, 830, 38165, 6624, 279, 198, 220, 220, 220, 6407, 198, 37811, 198, 1370, 796, 12813, 489, 519, 1362, 14, 8614, 31009, 13, 28072, 13, 10163, 13, 1899, 8614, 532, 8614, 3261, 14, 12512, 14, 4626, 25, 1954, 25, 2920, 25, 486, 1343, 2388, 220, 8614, 17151, 1220, 489, 519, 1362, 20924, 25192, 28, 18444, 940, 2414, 5824, 1433, 1120, 5, 2340, 578, 28, 65, 10220, 36920, 377, 372, 13, 785, 5, 6371, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 2503, 13, 65, 10220, 36920, 377, 372, 13, 785, 4, 17, 37, 1350, 1350, 4, 17, 37, 78, 12, 4188, 12, 78, 12, 1350, 1350, 12, 82, 21872, 12, 67, 298, 305, 12, 6814, 12, 65, 3258, 13827, 12, 421, 25440, 12, 64, 12, 2611, 68, 12, 69, 1031, 12, 8044, 78, 12, 19, 12, 82, 641, 330, 3028, 12, 11793, 3866, 437, 298, 274, 4, 17, 37, 4, 18, 37, 26841, 62, 10459, 4, 18, 35, 19024, 4, 2075, 26841, 62, 24132, 4, 18, 35, 805, 723, 4, 2075, 26841, 62, 35012, 4, 18, 11012, 10220, 64, 26001, 5, 6371, 5420, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 76, 13, 19024, 13, 785, 4, 17, 37, 5, 9612, 28, 15277, 87, 45839, 4, 22, 34, 15277, 87, 45839, 4, 22, 34, 2624, 5, 7890, 28, 4, 22, 33, 4, 1828, 29572, 306, 62, 12303, 312, 4, 1828, 4, 18, 32, 4, 1828, 65, 20, 68, 17, 16072, 65, 22, 12, 24, 2791, 69, 12, 1821, 69, 23, 12, 65, 3901, 66, 12, 69, 6888, 2598, 3388, 2919, 64, 3980, 4, 1828, 4, 17, 34, 4, 1828, 29572, 306, 62, 15654, 62, 12303, 312, 4, 1828, 4, 18, 32, 4, 24909, 68, 24, 397, 20986, 12, 38073, 66, 12, 2231, 1350, 12, 2079, 4089, 12, 68, 48891, 36720, 65, 20, 64, 5892, 4, 1828, 4, 22, 35, 5, 30255, 28, 16, 5, 82, 6371, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 2503, 13, 65, 10220, 36920, 377, 372, 13, 785, 4, 17, 37, 1350, 1350, 4, 17, 37, 78, 12, 4188, 12, 78, 12, 1350, 1350, 12, 82, 21872, 12, 67, 298, 305, 12, 6814, 12, 65, 3258, 13827, 12, 421, 25440, 12, 64, 12, 2611, 68, 12, 69, 1031, 12, 8044, 78, 12, 19, 12, 82, 641, 330, 3028, 12, 11793, 3866, 437, 298, 274, 4, 17, 37, 4, 18, 37, 26841, 62, 10459, 4, 18, 35, 19024, 4, 2075, 26841, 62, 24132, 4, 18, 35, 805, 723, 4, 2075, 26841, 62, 35012, 4, 18, 11012, 10220, 64, 26001, 5, 82, 5420, 28, 4023, 4, 18, 32, 4, 17, 37, 4, 17, 37, 76, 13, 19024, 13, 785, 4, 17, 37, 5, 6448, 28, 18444, 940, 33300, 1415, 2931, 21, 5, 6649, 912, 28, 15, 5, 4475, 28, 9069, 10, 12512, 10, 3132, 10, 4626, 10, 1238, 4, 18, 32, 2920, 4, 18, 32, 486, 10, 49424, 12, 3070, 405, 33747, 11473, 51, 8, 5, 2673, 28, 11499, 12945, 5, 1939, 28, 21, 14626, 14, 16, 13, 16, 8614, 939, 8614, 34044, 8614, 2638, 1378, 2503, 13, 65, 10220, 36920, 377, 372, 13, 785, 14, 1350, 1350, 14, 78, 12, 4188, 12, 78, 12, 1350, 1350, 12, 82, 21872, 12, 67, 298, 305, 12, 6814, 12, 65, 3258, 13827, 12, 421, 25440, 12, 64, 12, 2611, 68, 12, 69, 1031, 12, 8044, 78, 12, 19, 12, 82, 641, 330, 3028, 12, 11793, 3866, 437, 298, 274, 20924, 26841, 62, 10459, 28, 19024, 5, 26841, 62, 24132, 28, 805, 723, 5, 26841, 62, 35012, 28, 33, 10220, 64, 26001, 8614, 29258, 14, 20, 13, 15, 357, 19314, 26, 5565, 604, 13, 19, 13, 19, 26, 44235, 940, 1495, 10934, 14, 42, 55, 34, 2481, 13, 20, 12, 1821, 8, 4196, 13908, 20827, 14, 46096, 13, 2623, 357, 42, 28656, 11, 588, 2269, 37549, 8, 10628, 14, 19, 13, 15, 13282, 14, 2091, 13, 15, 13, 15, 13, 15, 12173, 23298, 14, 46096, 13, 2623, 685, 26001, 62, 3539, 33, 14, 26001, 19, 32, 26, 37, 4339, 53, 14, 2682, 13, 15, 13, 15, 13, 3559, 13, 25674, 26, 60, 8614, 532, 8614, 532, 8614, 532, 8614, 657, 13, 830, 1, 628, 628, 198, 198, 12417, 3419, 198 ]
2.052161
1,342
import unittest from typing import List from decoder import Decoder if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 6738, 19720, 1330, 7343, 198, 6738, 875, 12342, 1330, 34580, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
3.025641
39
from abc import ABCMeta, abstractmethod from pydantic import BaseModel class ServiceInterface(metaclass=ABCMeta): """Class representing the service interface.""" @abstractmethod async def create(self, schema_in: BaseModel): """ Create new entity and returns the saved instance. """ raise NotImplementedError() @abstractmethod async def update(self, instance: BaseModel, schema_in: BaseModel): """Updates an entity and returns the saved instance.""" raise NotImplementedError() @abstractmethod async def get(self, **kwargs): """Get and return one instance by filter.""" raise NotImplementedError() @abstractmethod async def delete(self, **kwargs): """Delete one instance by filter.""" raise NotImplementedError()
[ 6738, 450, 66, 1330, 9738, 48526, 11, 12531, 24396, 198, 198, 6738, 279, 5173, 5109, 1330, 7308, 17633, 628, 198, 4871, 4809, 39317, 7, 4164, 330, 31172, 28, 24694, 48526, 2599, 198, 220, 220, 220, 37227, 9487, 10200, 262, 2139, 7071, 526, 15931, 628, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 30351, 825, 2251, 7, 944, 11, 32815, 62, 259, 25, 7308, 17633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 649, 9312, 290, 5860, 262, 7448, 4554, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 30351, 825, 4296, 7, 944, 11, 4554, 25, 7308, 17633, 11, 32815, 62, 259, 25, 7308, 17633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4933, 19581, 281, 9312, 290, 5860, 262, 7448, 4554, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 30351, 825, 651, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 290, 1441, 530, 4554, 416, 8106, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 628, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 30351, 825, 12233, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38727, 530, 4554, 416, 8106, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 3419, 198 ]
2.859589
292
# --------------------------------------------------------------------------------------------- # Copyright (c) Akash Nag. All rights reserved. # Licensed under the MIT License. See LICENSE.md in the project root for license information. # --------------------------------------------------------------------------------------------- # This module implements the CheckBox widget from ash.gui import * # when checkbox receives focus # when checkbox loses focus # returns checkbox state # draws the checkbox # when keypress occurs: space toggles checkbox state # returns the string representation: checkbox text # set the checked-status of the checkbox
[ 2, 16529, 1783, 32501, 198, 2, 220, 15069, 357, 66, 8, 9084, 1077, 15196, 13, 1439, 2489, 10395, 13, 198, 2, 220, 49962, 739, 262, 17168, 13789, 13, 4091, 38559, 24290, 13, 9132, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 198, 2, 16529, 1783, 32501, 198, 198, 2, 770, 8265, 23986, 262, 6822, 14253, 26295, 198, 198, 6738, 12530, 13, 48317, 1330, 1635, 628, 197, 2, 618, 2198, 3524, 11583, 2962, 628, 197, 2, 618, 2198, 3524, 14754, 2962, 628, 197, 2, 5860, 2198, 3524, 1181, 628, 197, 2, 14293, 262, 2198, 3524, 198, 197, 198, 197, 2, 618, 1994, 8439, 8833, 25, 2272, 284, 32723, 2198, 3524, 1181, 628, 197, 2, 5860, 262, 4731, 10552, 25, 2198, 3524, 2420, 628, 197, 2, 900, 262, 10667, 12, 13376, 286, 262, 2198, 3524 ]
5.030075
133
from {{cookiecutter.directory_name}} import models import pytest
[ 6738, 22935, 44453, 8968, 353, 13, 34945, 62, 3672, 11709, 1330, 4981, 198, 11748, 12972, 9288, 198 ]
3.823529
17
import optparse from des115.lib.interface import *
[ 11748, 2172, 29572, 198, 198, 6738, 748, 15363, 13, 8019, 13, 39994, 1330, 1635, 628, 628, 198 ]
3.294118
17
from flask_restplus import Resource from flask_jwt_extended import jwt_required, get_jwt_identity, get_jwt_claims from . import api_v1, fqdn_ns, fqdn_m, fqdn_mr from ..data.fqdns import Fqdns, Fqdn from ..helpers.helpers import Haproxy @fqdn_ns.route('', endpoint='fqdn') @fqdn_ns.response(401, "Token has expired, bad credentials or reserved for administrators") @fqdn_ns.response(201, "Successfully created") @fqdn_ns.response(409, "Can't create already THIS present 'fqdn' fqdn") @fqdn_ns.response(406, "Error on definition content, please rewrite your definition") class Fqdns_R(Resource): """Shows a list of all Fqdns(), and lets you POST to add new fqdn""" @jwt_required @fqdn_ns.doc('list_frontends', security='apikey') @fqdn_ns.marshal_list_with(fqdn_mr) def get(self): """List all fqdn entries that you own.""" if get_jwt_claims()['roles'] == 'admin': return Fqdns().json() return Fqdns().json(get_jwt_identity()) @jwt_required @fqdn_ns.doc('Add Frontend fqdn', security='apikey') @fqdn_ns.expect(fqdn_m) @fqdn_ns.marshal_with(fqdn_mr) def post(self): """Create a new fqdn entry""" api_v1.payload.update({'owner': get_jwt_identity()}) if Fqdn(api_v1.payload['fqdn']).exists(): return { 'message': "Can't create WTF already present 'fqdn' fqdn"}, 409 f = Fqdn().create(api_v1.payload) if not f.is_publish_fail(): return f.json(), 201 else: f.destroy() f.state = "publish_failed" return f.json(), 406 @fqdn_ns.route('/<string:fqdn>', endpoint='fqdnchange') @fqdn_ns.response(400, "can't get or modify non-existent fqdn") @fqdn_ns.response(401, "Token has expired, bad credentials or reserved for administrators") @fqdn_ns.response(409, "Can't modify not present 'fqdn' fqdn") @fqdn_ns.response(200, "Operation is successful") class Fqdn_R(Resource): """Modify fqdn""" @jwt_required @fqdn_ns.doc('show fqdn', security='apikey') @fqdn_ns.marshal_with(fqdn_mr) def get(self, fqdn): """Show a fqdn entry that you own""" result = Fqdn(fqdn) if not result.exists(): fqdn_ns.abort(400, "can't get non-existent fqdn") if get_jwt_claims()['roles'] == 'admin' or get_jwt_identity() == result.owner: return result.json() @jwt_required @fqdn_ns.doc('update fqdn', security='apikey') @fqdn_ns.expect(fqdn_m) @fqdn_ns.marshal_with(fqdn_mr) def put(self, fqdn): """Modify a fqdn entry that you own""" if not Fqdn(fqdn).exists(): fqdn_ns.abort(400, "can't modify non-existent fqdn") if Fqdn(fqdn).owner != get_jwt_identity() and get_jwt_claims()['roles'] != 'admin': fqdn_ns.abort(401, "you don't own this fqdn") f = Fqdn(fqdn).update(api_v1.payload) if f.is_publish_fail(): return f.json(), 406 else: return f.json(), 201 @jwt_required @fqdn_ns.doc('remove fqdn', security='apikey') @fqdn_ns.marshal_with(fqdn_mr) # @tenant.response(204, 'fqdn deleted (set state to remove)') def delete(self, fqdn): """definitly remove a fqdn entry that you own from this service.""" if not Fqdn(fqdn).exists(): fqdn_ns.abort(400, "can't modify non-existent fqdn") if Fqdn(fqdn).owner != get_jwt_identity() and get_jwt_claims()['roles'] != 'admin': fqdn_ns.abort(401, "you don't own this fqdn") return Fqdn(fqdn).destroy().json() @fqdn_ns.route('/<string:fqdn>/hastats') @fqdn_ns.response(400, "can't get non-existent fqdn") @fqdn_ns.response(401, "Token has expired, bad credentials or reserved for administrators") @fqdn_ns.response(200, "Operation is successful") class Hastats_R(Resource): """Haproxy stats""" @jwt_required @fqdn_ns.doc("show backend's fqdn full stats", security='apikey') def get(self, fqdn): """Show backend's fqdn full stats that you own""" result = Fqdn(fqdn) if not result.exists(): fqdn_ns.abort(400, "can't get stats on non-existent fqdn") if get_jwt_claims()['roles'] == 'admin' or get_jwt_identity() == result.owner: return Haproxy().getstats(result.backend_name) @fqdn_ns.route('/<string:fqdn>/status') @fqdn_ns.response(400, "can't get non-existent fqdn") @fqdn_ns.response(401, "Token has expired, bad credentials or reserved for administrators") @fqdn_ns.response(200, "Operation is successful") class Hastatus_R(Resource): """Haproxy status""" @jwt_required @fqdn_ns.doc("show backend's fqdn short status", security='apikey') def get(self, fqdn): """Show backend's fqdn short status""" result = Fqdn(fqdn) if not result.exists(): fqdn_ns.abort(400, "can't get stats on non-existent fqdn") if get_jwt_claims()['roles'] == 'admin' or get_jwt_identity() == result.owner: return Haproxy().getstatus(result.backend_name)
[ 6738, 42903, 62, 2118, 9541, 1330, 20857, 198, 6738, 42903, 62, 73, 46569, 62, 2302, 1631, 1330, 474, 46569, 62, 35827, 11, 651, 62, 73, 46569, 62, 738, 414, 11, 651, 62, 73, 46569, 62, 6604, 82, 198, 6738, 764, 1330, 40391, 62, 85, 16, 11, 277, 80, 32656, 62, 5907, 11, 277, 80, 32656, 62, 76, 11, 277, 80, 32656, 62, 43395, 198, 6738, 11485, 7890, 13, 69, 80, 67, 5907, 1330, 376, 80, 67, 5907, 11, 376, 80, 32656, 198, 6738, 11485, 16794, 364, 13, 16794, 364, 1330, 367, 499, 42059, 628, 198, 31, 69, 80, 32656, 62, 5907, 13, 38629, 10786, 3256, 36123, 11639, 69, 80, 32656, 11537, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 21844, 11, 366, 30642, 468, 21350, 11, 2089, 18031, 393, 10395, 329, 18618, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 1264, 11, 366, 33244, 2759, 2727, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 29416, 11, 366, 6090, 470, 2251, 1541, 12680, 220, 1944, 705, 69, 80, 32656, 6, 277, 80, 32656, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 29703, 11, 366, 12331, 319, 6770, 2695, 11, 3387, 28183, 534, 6770, 4943, 198, 4871, 376, 80, 67, 5907, 62, 49, 7, 26198, 2599, 198, 220, 220, 220, 37227, 2484, 1666, 257, 1351, 286, 477, 376, 80, 67, 5907, 22784, 290, 8781, 345, 24582, 284, 751, 649, 277, 80, 32656, 37811, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 10786, 4868, 62, 8534, 2412, 3256, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 76, 5406, 282, 62, 4868, 62, 4480, 7, 69, 80, 32656, 62, 43395, 8, 198, 220, 220, 220, 825, 651, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 8053, 477, 277, 80, 32656, 12784, 326, 345, 898, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 6624, 705, 28482, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 376, 80, 67, 5907, 22446, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 376, 80, 67, 5907, 22446, 17752, 7, 1136, 62, 73, 46569, 62, 738, 414, 28955, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 10786, 4550, 8880, 437, 277, 80, 32656, 3256, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 1069, 806, 7, 69, 80, 32656, 62, 76, 8, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 76, 5406, 282, 62, 4480, 7, 69, 80, 32656, 62, 43395, 8, 198, 220, 220, 220, 825, 1281, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 257, 649, 277, 80, 32656, 5726, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 85, 16, 13, 15577, 2220, 13, 19119, 15090, 6, 18403, 10354, 651, 62, 73, 46569, 62, 738, 414, 3419, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 376, 80, 32656, 7, 15042, 62, 85, 16, 13, 15577, 2220, 17816, 69, 80, 32656, 20520, 737, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 705, 20500, 10354, 366, 6090, 470, 2251, 370, 10234, 1541, 1944, 705, 69, 80, 32656, 6, 277, 80, 32656, 25719, 48132, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 376, 80, 32656, 22446, 17953, 7, 15042, 62, 85, 16, 13, 15577, 2220, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 277, 13, 271, 62, 12984, 1836, 62, 32165, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 13, 17752, 22784, 580, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 41659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 5219, 796, 366, 12984, 1836, 62, 47904, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 13, 17752, 22784, 45439, 628, 198, 31, 69, 80, 32656, 62, 5907, 13, 38629, 10786, 14, 27, 8841, 25, 69, 80, 32656, 29, 3256, 36123, 11639, 69, 80, 32656, 3803, 11537, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 7029, 11, 366, 5171, 470, 651, 393, 13096, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 21844, 11, 366, 30642, 468, 21350, 11, 2089, 18031, 393, 10395, 329, 18618, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 29416, 11, 366, 6090, 470, 13096, 407, 1944, 705, 69, 80, 32656, 6, 277, 80, 32656, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 2167, 11, 366, 32180, 318, 4388, 4943, 198, 4871, 376, 80, 32656, 62, 49, 7, 26198, 2599, 198, 220, 220, 220, 37227, 5841, 1958, 277, 80, 32656, 37811, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 10786, 12860, 277, 80, 32656, 3256, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 76, 5406, 282, 62, 4480, 7, 69, 80, 32656, 62, 43395, 8, 198, 220, 220, 220, 825, 651, 7, 944, 11, 277, 80, 32656, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 257, 277, 80, 32656, 5726, 326, 345, 898, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 376, 80, 32656, 7, 69, 80, 32656, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1255, 13, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 7029, 11, 366, 5171, 470, 651, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 6624, 705, 28482, 6, 393, 651, 62, 73, 46569, 62, 738, 414, 3419, 6624, 1255, 13, 18403, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 13, 17752, 3419, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 10786, 19119, 277, 80, 32656, 3256, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 1069, 806, 7, 69, 80, 32656, 62, 76, 8, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 76, 5406, 282, 62, 4480, 7, 69, 80, 32656, 62, 43395, 8, 198, 220, 220, 220, 825, 1234, 7, 944, 11, 277, 80, 32656, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5841, 1958, 257, 277, 80, 32656, 5726, 326, 345, 898, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 376, 80, 32656, 7, 69, 80, 32656, 737, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 7029, 11, 366, 5171, 470, 13096, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 376, 80, 32656, 7, 69, 80, 32656, 737, 18403, 14512, 651, 62, 73, 46569, 62, 738, 414, 3419, 290, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 14512, 705, 28482, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 21844, 11, 366, 5832, 836, 470, 898, 428, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 376, 80, 32656, 7, 69, 80, 32656, 737, 19119, 7, 15042, 62, 85, 16, 13, 15577, 2220, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 277, 13, 271, 62, 12984, 1836, 62, 32165, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 13, 17752, 22784, 45439, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 13, 17752, 22784, 580, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 10786, 28956, 277, 80, 32656, 3256, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 76, 5406, 282, 62, 4480, 7, 69, 80, 32656, 62, 43395, 8, 198, 220, 220, 220, 1303, 2488, 1452, 415, 13, 26209, 7, 18638, 11, 705, 69, 80, 32656, 13140, 357, 2617, 1181, 284, 4781, 8, 11537, 198, 220, 220, 220, 825, 12233, 7, 944, 11, 277, 80, 32656, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4299, 15003, 306, 4781, 257, 277, 80, 32656, 5726, 326, 345, 898, 422, 428, 2139, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 376, 80, 32656, 7, 69, 80, 32656, 737, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 7029, 11, 366, 5171, 470, 13096, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 376, 80, 32656, 7, 69, 80, 32656, 737, 18403, 14512, 651, 62, 73, 46569, 62, 738, 414, 3419, 290, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 14512, 705, 28482, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 21844, 11, 366, 5832, 836, 470, 898, 428, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 376, 80, 32656, 7, 69, 80, 32656, 737, 41659, 22446, 17752, 3419, 628, 198, 31, 69, 80, 32656, 62, 5907, 13, 38629, 10786, 14, 27, 8841, 25, 69, 80, 32656, 29, 14, 71, 459, 1381, 11537, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 7029, 11, 366, 5171, 470, 651, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 21844, 11, 366, 30642, 468, 21350, 11, 2089, 18031, 393, 10395, 329, 18618, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 2167, 11, 366, 32180, 318, 4388, 4943, 198, 4871, 33268, 1381, 62, 49, 7, 26198, 2599, 198, 220, 220, 220, 37227, 39, 499, 42059, 9756, 37811, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 7203, 12860, 30203, 338, 277, 80, 32656, 1336, 9756, 1600, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 825, 651, 7, 944, 11, 277, 80, 32656, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 30203, 338, 277, 80, 32656, 1336, 9756, 326, 345, 898, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 376, 80, 32656, 7, 69, 80, 32656, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1255, 13, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 7029, 11, 366, 5171, 470, 651, 9756, 319, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 6624, 705, 28482, 6, 393, 651, 62, 73, 46569, 62, 738, 414, 3419, 6624, 1255, 13, 18403, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 499, 42059, 22446, 1136, 34242, 7, 20274, 13, 1891, 437, 62, 3672, 8, 628, 198, 31, 69, 80, 32656, 62, 5907, 13, 38629, 10786, 14, 27, 8841, 25, 69, 80, 32656, 29, 14, 13376, 11537, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 7029, 11, 366, 5171, 470, 651, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 21844, 11, 366, 30642, 468, 21350, 11, 2089, 18031, 393, 10395, 329, 18618, 4943, 198, 31, 69, 80, 32656, 62, 5907, 13, 26209, 7, 2167, 11, 366, 32180, 318, 4388, 4943, 198, 4871, 33268, 7240, 62, 49, 7, 26198, 2599, 198, 220, 220, 220, 37227, 39, 499, 42059, 3722, 37811, 628, 220, 220, 220, 2488, 73, 46569, 62, 35827, 198, 220, 220, 220, 2488, 69, 80, 32656, 62, 5907, 13, 15390, 7203, 12860, 30203, 338, 277, 80, 32656, 1790, 3722, 1600, 2324, 11639, 499, 522, 88, 11537, 198, 220, 220, 220, 825, 651, 7, 944, 11, 277, 80, 32656, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 30203, 338, 277, 80, 32656, 1790, 3722, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 376, 80, 32656, 7, 69, 80, 32656, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1255, 13, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 80, 32656, 62, 5907, 13, 397, 419, 7, 7029, 11, 366, 5171, 470, 651, 9756, 319, 1729, 12, 32786, 277, 80, 32656, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 73, 46569, 62, 6604, 82, 3419, 17816, 305, 829, 20520, 6624, 705, 28482, 6, 393, 651, 62, 73, 46569, 62, 738, 414, 3419, 6624, 1255, 13, 18403, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 499, 42059, 22446, 1136, 13376, 7, 20274, 13, 1891, 437, 62, 3672, 8, 198 ]
2.188016
2,303
from peewee import DoubleField, CompositeKey from wx.app import database
[ 6738, 613, 413, 1453, 1330, 11198, 15878, 11, 49355, 9218, 198, 198, 6738, 266, 87, 13, 1324, 1330, 6831, 628 ]
3.75
20
from flask import Flask, redirect,render_template, request import json import view_model as vm app = Flask(__name__) @app.route("/") @app.route("/get_price",methods=['POST']) if __name__ == "__main__": app.run(debug=True)
[ 6738, 42903, 1330, 46947, 11, 18941, 11, 13287, 62, 28243, 11, 2581, 198, 11748, 33918, 198, 11748, 1570, 62, 19849, 355, 45887, 198, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 198, 198, 31, 1324, 13, 38629, 7203, 14, 4943, 198, 198, 31, 1324, 13, 38629, 7203, 14, 1136, 62, 20888, 1600, 24396, 82, 28, 17816, 32782, 6, 12962, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 598, 13, 5143, 7, 24442, 28, 17821, 8 ]
2.72619
84
"""Add the staff columns to the feature and user tables. Revision ID: ef3059e0396 Revises: 3bf1c2289e8d Create Date: 2015-07-30 16:25:14.837823 """ # revision identifiers, used by Alembic. revision = 'ef3059e0396' down_revision = '3bf1c2289e8d' from alembic import op import sqlalchemy as sa
[ 37811, 4550, 262, 3085, 15180, 284, 262, 3895, 290, 2836, 8893, 13, 198, 198, 18009, 1166, 4522, 25, 304, 69, 1270, 3270, 68, 15, 34107, 198, 18009, 2696, 25, 513, 19881, 16, 66, 1828, 4531, 68, 23, 67, 198, 16447, 7536, 25, 1853, 12, 2998, 12, 1270, 1467, 25, 1495, 25, 1415, 13, 23, 30695, 1954, 198, 198, 37811, 198, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 891, 1270, 3270, 68, 15, 34107, 6, 198, 2902, 62, 260, 10178, 796, 705, 18, 19881, 16, 66, 1828, 4531, 68, 23, 67, 6, 198, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 628, 198 ]
2.547009
117
from unittest.mock import MagicMock from tda.utils import AccountIdMismatchException, Utils from tda.utils import UnsuccessfulOrderException from tda.utils import EnumEnforcer from .utils import no_duplicates, MockResponse import enum import unittest
[ 6738, 555, 715, 395, 13, 76, 735, 1330, 6139, 44, 735, 198, 6738, 256, 6814, 13, 26791, 1330, 10781, 7390, 44, 1042, 963, 16922, 11, 7273, 4487, 198, 6738, 256, 6814, 13, 26791, 1330, 791, 17212, 18743, 16922, 198, 6738, 256, 6814, 13, 26791, 1330, 2039, 388, 4834, 45515, 198, 6738, 764, 26791, 1330, 645, 62, 646, 489, 16856, 11, 44123, 31077, 198, 198, 11748, 33829, 198, 11748, 555, 715, 395, 628, 198 ]
3.479452
73
# -*- test-case-name: twistedcaldav.test.test_extensions -*- ## # Copyright (c) 2005-2015 Apple Inc. 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. ## from __future__ import print_function """ Extensions to web2.dav """ __all__ = [ "DAVResource", "DAVResourceWithChildrenMixin", "DAVPrincipalResource", "DAVFile", "ReadOnlyWritePropertiesResourceMixIn", "ReadOnlyResourceMixIn", "CachingPropertyStore", ] import urllib import time from itertools import cycle from twisted.internet.defer import succeed, maybeDeferred from twisted.internet.defer import inlineCallbacks, returnValue from twisted.web.template import Element, XMLFile, renderer, tags, flattenString from twisted.python.modules import getModule from txweb2 import responsecode, server from txweb2.http import HTTPError, Response, RedirectResponse from txweb2.http import StatusResponse from txweb2.http_headers import MimeType from txweb2.stream import FileStream from txweb2.static import MetaDataMixin, StaticRenderMixin from txdav.xml import element from txdav.xml.base import encodeXMLName from txdav.xml.element import dav_namespace from txweb2.dav.http import MultiStatusResponse from txweb2.dav.static import DAVFile as SuperDAVFile from txweb2.dav.resource import DAVResource as SuperDAVResource from txweb2.dav.resource import ( DAVPrincipalResource as SuperDAVPrincipalResource ) from twisted.internet.defer import gatherResults from txweb2.dav.method import prop_common from twext.python.log import Logger from twistedcaldav import customxml from twistedcaldav.customxml import calendarserver_namespace from twistedcaldav.method.report import http_REPORT from twistedcaldav.config import config from txdav.who.directory import CalendarDirectoryRecordMixin from twext.who.expression import Operand, MatchType, MatchFlags thisModule = getModule(__name__) log = Logger() class DirectoryElement(Element): """ A L{DirectoryElement} is an L{Element} for rendering the contents of a L{DirectoryRenderingMixIn} resource as HTML. """ loader = XMLFile( thisModule.filePath.sibling("directory-listing.html") ) def __init__(self, resource): """ @param resource: the L{DirectoryRenderingMixIn} resource being listed. """ super(DirectoryElement, self).__init__() self.resource = resource @renderer def resourceDetail(self, request, tag): """ Renderer which returns a distinct element for this resource's data. Subclasses should override. """ return '' @renderer def children(self, request, tag): """ Renderer which yields all child object tags as table rows. """ whenChildren = ( maybeDeferred(self.resource.listChildren) .addCallback(sorted) .addCallback( lambda names: gatherResults( [maybeDeferred(self.resource.getChild, x) for x in names] ) .addCallback(lambda children: zip(children, names)) ) ) @whenChildren.addCallback return whenChildren @renderer def main(self, request, tag): """ Main renderer; fills slots for title, etc. """ return tag.fillSlots(name=request.path) @renderer def properties(self, request, tag): """ Renderer which yields all properties as table row tags. """ whenPropertiesListed = self.resource.listProperties(request) @whenPropertiesListed.addCallback return whenPropertiesListed class DAVResource (DirectoryPrincipalPropertySearchMixIn, SuperDAVResource, DirectoryRenderingMixIn, StaticRenderMixin): """ Extended L{txweb2.dav.resource.DAVResource} implementation. Note we add StaticRenderMixin as a base class because we need all the etag etc behavior that is currently in static.py but is actually applicable to any type of resource. """ log = Logger() http_REPORT = http_REPORT class DAVResourceWithChildrenMixin (object): """ Bits needed from txweb2.static """ def putChild(self, name, child): """ Register a child with the given name with this resource. @param name: the name of the child (a URI path segment) @param child: the child to register """ self.putChildren[name] = child def getChild(self, name): """ Look up a child resource. First check C{self.putChildren}, then call C{self.makeChild} if no pre-existing children were found. @return: the child of this resource with the given name. """ if name == "": return self result = self.putChildren.get(name, None) if not result: result = self.makeChild(name) return result def makeChild(self, name): """ Called by L{DAVResourceWithChildrenMixin.getChild} to dynamically create children that have not been pre-created with C{putChild}. """ return None def listChildren(self): """ @return: a sequence of the names of all known children of this resource. """ return self.putChildren.keys() def countChildren(self): """ @return: the number of all known children of this resource. """ return len(self.putChildren.keys()) def locateChild(self, req, segments): """ See L{IResource.locateChild}. """ thisSegment = segments[0] moreSegments = segments[1:] return maybeDeferred(self.getChild, thisSegment).addCallback( lambda it: (it, moreSegments) ) class DAVResourceWithoutChildrenMixin (object): """ Bits needed from txweb2.static """ class DAVPrincipalResource (DirectoryPrincipalPropertySearchMixIn, SuperDAVPrincipalResource, DirectoryRenderingMixIn): """ Extended L{txweb2.dav.static.DAVFile} implementation. """ log = Logger() http_REPORT = http_REPORT @inlineCallbacks class DAVFile (SuperDAVFile, DirectoryRenderingMixIn): """ Extended L{txweb2.dav.static.DAVFile} implementation. """ log = Logger() class ReadOnlyWritePropertiesResourceMixIn (object): """ Read only that will allow writing of properties resource. """ readOnlyResponse = StatusResponse( responsecode.FORBIDDEN, "Resource is read only." ) http_DELETE = _forbidden http_MOVE = _forbidden http_PUT = _forbidden class ReadOnlyResourceMixIn (ReadOnlyWritePropertiesResourceMixIn): """ Read only resource. """ http_PROPPATCH = ReadOnlyWritePropertiesResourceMixIn._forbidden class CachingPropertyStore (object): """ DAV property store using a dict in memory on top of another property store implementation. """ log = Logger() def extractCalendarServerPrincipalSearchData(doc): """ Extract relevant info from a CalendarServerPrincipalSearch document @param doc: CalendarServerPrincipalSearch object to extract info from @return: A tuple containing: the list of tokens the context string the applyTo boolean the clientLimit integer the propElement containing the properties to return """ context = doc.attributes.get("context", None) applyTo = False tokens = [] clientLimit = None for child in doc.children: if child.qname() == (dav_namespace, "prop"): propElement = child elif child.qname() == ( dav_namespace, "apply-to-principal-collection-set" ): applyTo = True elif child.qname() == (calendarserver_namespace, "search-token"): tokenValue = child.toString().strip() if tokenValue: tokens.append(tokenValue) elif child.qname() == (calendarserver_namespace, "limit"): try: nresults = child.childOfType(customxml.NResults) clientLimit = int(str(nresults)) except (TypeError, ValueError,): msg = "Bad XML: unknown value for <limit> element" log.warn(msg) raise HTTPError(StatusResponse(responsecode.BAD_REQUEST, msg)) return tokens, context, applyTo, clientLimit, propElement def validateTokens(tokens): """ Make sure there is at least one token longer than one character @param tokens: the tokens to inspect @type tokens: iterable of utf-8 encoded strings @return: True if tokens are valid, False otherwise @rtype: boolean """ for token in tokens: if len(token) > 1: return True return False
[ 2, 532, 9, 12, 1332, 12, 7442, 12, 3672, 25, 19074, 66, 1940, 615, 13, 9288, 13, 9288, 62, 2302, 5736, 532, 9, 12, 198, 2235, 198, 2, 15069, 357, 66, 8, 5075, 12, 4626, 4196, 3457, 13, 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, 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, 2235, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 37811, 198, 11627, 5736, 284, 3992, 17, 13, 67, 615, 198, 37811, 198, 198, 834, 439, 834, 796, 685, 198, 220, 220, 220, 366, 5631, 53, 26198, 1600, 198, 220, 220, 220, 366, 5631, 53, 26198, 3152, 26829, 35608, 259, 1600, 198, 220, 220, 220, 366, 5631, 53, 42904, 8521, 26198, 1600, 198, 220, 220, 220, 366, 5631, 53, 8979, 1600, 198, 220, 220, 220, 366, 5569, 10049, 16594, 2964, 18200, 26198, 35608, 818, 1600, 198, 220, 220, 220, 366, 5569, 10049, 26198, 35608, 818, 1600, 198, 220, 220, 220, 366, 34, 8103, 21746, 22658, 1600, 198, 60, 198, 198, 11748, 2956, 297, 571, 198, 11748, 640, 198, 6738, 340, 861, 10141, 1330, 6772, 198, 198, 6738, 19074, 13, 37675, 13, 4299, 263, 1330, 6758, 11, 3863, 7469, 17436, 198, 6738, 19074, 13, 37675, 13, 4299, 263, 1330, 26098, 14134, 10146, 11, 1441, 11395, 198, 198, 6738, 19074, 13, 12384, 13, 28243, 1330, 11703, 11, 23735, 8979, 11, 9851, 11882, 11, 15940, 11, 27172, 268, 10100, 198, 6738, 19074, 13, 29412, 13, 18170, 1330, 651, 26796, 198, 198, 6738, 27765, 12384, 17, 1330, 1217, 261, 2363, 1098, 11, 4382, 198, 6738, 27765, 12384, 17, 13, 4023, 1330, 14626, 12331, 11, 18261, 11, 2297, 1060, 31077, 198, 6738, 27765, 12384, 17, 13, 4023, 1330, 12678, 31077, 198, 6738, 27765, 12384, 17, 13, 4023, 62, 50145, 1330, 337, 524, 6030, 198, 6738, 27765, 12384, 17, 13, 5532, 1330, 9220, 12124, 198, 6738, 27765, 12384, 17, 13, 12708, 1330, 30277, 6601, 35608, 259, 11, 36125, 45819, 35608, 259, 198, 6738, 256, 24954, 615, 13, 19875, 1330, 5002, 198, 6738, 256, 24954, 615, 13, 19875, 13, 8692, 1330, 37773, 55, 5805, 5376, 198, 6738, 256, 24954, 615, 13, 19875, 13, 30854, 1330, 288, 615, 62, 14933, 10223, 198, 6738, 27765, 12384, 17, 13, 67, 615, 13, 4023, 1330, 15237, 19580, 31077, 198, 6738, 27765, 12384, 17, 13, 67, 615, 13, 12708, 1330, 42274, 8979, 355, 3115, 5631, 53, 8979, 198, 6738, 27765, 12384, 17, 13, 67, 615, 13, 31092, 1330, 42274, 26198, 355, 3115, 5631, 53, 26198, 198, 6738, 27765, 12384, 17, 13, 67, 615, 13, 31092, 1330, 357, 198, 220, 220, 220, 42274, 42904, 8521, 26198, 355, 3115, 5631, 53, 42904, 8521, 26198, 198, 8, 198, 6738, 19074, 13, 37675, 13, 4299, 263, 1330, 6431, 25468, 198, 6738, 27765, 12384, 17, 13, 67, 615, 13, 24396, 1330, 2632, 62, 11321, 198, 198, 6738, 665, 2302, 13, 29412, 13, 6404, 1330, 5972, 1362, 198, 198, 6738, 19074, 66, 1940, 615, 1330, 2183, 19875, 198, 6738, 19074, 66, 1940, 615, 13, 23144, 19875, 1330, 50215, 18497, 62, 14933, 10223, 198, 198, 6738, 19074, 66, 1940, 615, 13, 24396, 13, 13116, 1330, 2638, 62, 2200, 15490, 198, 198, 6738, 19074, 66, 1940, 615, 13, 11250, 1330, 4566, 198, 6738, 256, 24954, 615, 13, 8727, 13, 34945, 1330, 26506, 43055, 23739, 35608, 259, 198, 6738, 665, 2302, 13, 8727, 13, 38011, 1330, 6564, 392, 11, 13225, 6030, 11, 13225, 40053, 628, 198, 198, 5661, 26796, 796, 651, 26796, 7, 834, 3672, 834, 8, 198, 198, 6404, 796, 5972, 1362, 3419, 628, 628, 198, 4871, 27387, 20180, 7, 20180, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 406, 90, 43055, 20180, 92, 318, 281, 406, 90, 20180, 92, 329, 14837, 262, 10154, 286, 257, 198, 220, 220, 220, 406, 90, 43055, 49, 437, 1586, 35608, 818, 92, 8271, 355, 11532, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 40213, 796, 23735, 8979, 7, 198, 220, 220, 220, 220, 220, 220, 220, 428, 26796, 13, 7753, 15235, 13, 82, 27448, 7203, 34945, 12, 4868, 278, 13, 6494, 4943, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 8271, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 17143, 8271, 25, 262, 406, 90, 43055, 49, 437, 1586, 35608, 818, 92, 8271, 852, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5610, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 43055, 20180, 11, 2116, 737, 834, 15003, 834, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31092, 796, 8271, 628, 198, 220, 220, 220, 2488, 10920, 11882, 198, 220, 220, 220, 825, 8271, 11242, 603, 7, 944, 11, 2581, 11, 7621, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 28703, 11882, 543, 5860, 257, 7310, 5002, 329, 428, 8271, 338, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3834, 37724, 815, 20957, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10148, 628, 198, 220, 220, 220, 2488, 10920, 11882, 198, 220, 220, 220, 825, 1751, 7, 944, 11, 2581, 11, 7621, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 28703, 11882, 543, 19299, 477, 1200, 2134, 15940, 355, 3084, 15274, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 618, 26829, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3863, 7469, 17436, 7, 944, 13, 31092, 13, 4868, 26829, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 2860, 47258, 7, 82, 9741, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 2860, 47258, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37456, 3891, 25, 6431, 25468, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 25991, 7469, 17436, 7, 944, 13, 31092, 13, 1136, 16424, 11, 2124, 8, 329, 2124, 287, 3891, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 2860, 47258, 7, 50033, 1751, 25, 19974, 7, 17197, 11, 3891, 4008, 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, 2488, 12518, 26829, 13, 2860, 47258, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 618, 26829, 628, 198, 220, 220, 220, 2488, 10920, 11882, 198, 220, 220, 220, 825, 1388, 7, 944, 11, 2581, 11, 7621, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 8774, 9851, 11882, 26, 23816, 17314, 329, 3670, 11, 3503, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7621, 13, 20797, 11122, 1747, 7, 3672, 28, 25927, 13, 6978, 8, 628, 198, 220, 220, 220, 2488, 10920, 11882, 198, 220, 220, 220, 825, 6608, 7, 944, 11, 2581, 11, 7621, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 28703, 11882, 543, 19299, 477, 6608, 355, 3084, 5752, 15940, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 618, 2964, 18200, 43, 6347, 796, 2116, 13, 31092, 13, 4868, 2964, 18200, 7, 25927, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 12518, 2964, 18200, 43, 6347, 13, 2860, 47258, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 618, 2964, 18200, 43, 6347, 628, 628, 198, 198, 4871, 42274, 26198, 357, 43055, 42904, 8521, 21746, 18243, 35608, 818, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3115, 5631, 53, 26198, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27387, 49, 437, 1586, 35608, 818, 11, 36125, 45819, 35608, 259, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 24204, 406, 90, 17602, 12384, 17, 13, 67, 615, 13, 31092, 13, 5631, 53, 26198, 92, 7822, 13, 628, 220, 220, 220, 5740, 356, 751, 36125, 45819, 35608, 259, 355, 257, 2779, 1398, 780, 356, 761, 477, 262, 2123, 363, 3503, 4069, 198, 220, 220, 220, 326, 318, 3058, 287, 9037, 13, 9078, 475, 318, 1682, 9723, 284, 597, 2099, 286, 8271, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2604, 796, 5972, 1362, 3419, 628, 220, 220, 220, 2638, 62, 2200, 15490, 796, 2638, 62, 2200, 15490, 628, 628, 628, 198, 4871, 42274, 26198, 3152, 26829, 35608, 259, 357, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 44733, 2622, 422, 27765, 12384, 17, 13, 12708, 198, 220, 220, 220, 37227, 628, 198, 220, 220, 220, 825, 1234, 16424, 7, 944, 11, 1438, 11, 1200, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17296, 257, 1200, 351, 262, 1813, 1438, 351, 428, 8271, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 17143, 1438, 25, 262, 1438, 286, 262, 1200, 357, 64, 43975, 3108, 10618, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 17143, 1200, 25, 262, 1200, 284, 7881, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1996, 26829, 58, 3672, 60, 796, 1200, 628, 198, 220, 220, 220, 825, 651, 16424, 7, 944, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6803, 510, 257, 1200, 8271, 13, 220, 3274, 2198, 327, 90, 944, 13, 1996, 26829, 5512, 788, 869, 198, 220, 220, 220, 220, 220, 220, 220, 327, 90, 944, 13, 15883, 16424, 92, 611, 645, 662, 12, 25687, 1751, 547, 1043, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 7783, 25, 262, 1200, 286, 428, 8271, 351, 262, 1813, 1438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 6624, 366, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 628, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2116, 13, 1996, 26829, 13, 1136, 7, 3672, 11, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1255, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2116, 13, 15883, 16424, 7, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 198, 220, 220, 220, 825, 787, 16424, 7, 944, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 34099, 416, 406, 90, 5631, 53, 26198, 3152, 26829, 35608, 259, 13, 1136, 16424, 92, 284, 32366, 198, 220, 220, 220, 220, 220, 220, 220, 2251, 1751, 326, 423, 407, 587, 662, 12, 25598, 351, 327, 90, 1996, 16424, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 198, 220, 220, 220, 825, 1351, 26829, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 7783, 25, 257, 8379, 286, 262, 3891, 286, 477, 1900, 1751, 286, 428, 8271, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1996, 26829, 13, 13083, 3419, 628, 198, 220, 220, 220, 825, 954, 26829, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 7783, 25, 262, 1271, 286, 477, 1900, 1751, 286, 428, 8271, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18896, 7, 944, 13, 1996, 26829, 13, 13083, 28955, 628, 198, 220, 220, 220, 825, 17276, 16424, 7, 944, 11, 43089, 11, 17894, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4091, 406, 90, 4663, 274, 1668, 13, 75, 13369, 16424, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 428, 41030, 434, 796, 17894, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 517, 41030, 902, 796, 17894, 58, 16, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 3863, 7469, 17436, 7, 944, 13, 1136, 16424, 11, 428, 41030, 434, 737, 2860, 47258, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37456, 340, 25, 357, 270, 11, 517, 41030, 902, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 198, 198, 4871, 42274, 26198, 16249, 26829, 35608, 259, 357, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 44733, 2622, 422, 27765, 12384, 17, 13, 12708, 198, 220, 220, 220, 37227, 628, 628, 198, 198, 4871, 42274, 42904, 8521, 26198, 357, 43055, 42904, 8521, 21746, 18243, 35608, 818, 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, 3115, 5631, 53, 42904, 8521, 26198, 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, 27387, 49, 437, 1586, 35608, 818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 24204, 406, 90, 17602, 12384, 17, 13, 67, 615, 13, 12708, 13, 5631, 53, 8979, 92, 7822, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2604, 796, 5972, 1362, 3419, 628, 220, 220, 220, 2638, 62, 2200, 15490, 796, 2638, 62, 2200, 15490, 628, 198, 220, 220, 220, 2488, 45145, 14134, 10146, 628, 628, 628, 628, 198, 4871, 42274, 8979, 357, 12442, 5631, 53, 8979, 11, 27387, 49, 437, 1586, 35608, 818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 24204, 406, 90, 17602, 12384, 17, 13, 67, 615, 13, 12708, 13, 5631, 53, 8979, 92, 7822, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2604, 796, 5972, 1362, 3419, 628, 628, 198, 4871, 4149, 10049, 16594, 2964, 18200, 26198, 35608, 818, 357, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4149, 691, 326, 481, 1249, 3597, 286, 6608, 8271, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1100, 10049, 31077, 796, 12678, 31077, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 261, 2363, 1098, 13, 13775, 33, 2389, 41819, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 26198, 318, 1100, 691, 526, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2638, 62, 7206, 2538, 9328, 796, 4808, 1640, 37978, 198, 220, 220, 220, 2638, 62, 11770, 6089, 796, 4808, 1640, 37978, 198, 220, 220, 220, 2638, 62, 30076, 796, 4808, 1640, 37978, 628, 198, 198, 4871, 4149, 10049, 26198, 35608, 818, 357, 5569, 10049, 16594, 2964, 18200, 26198, 35608, 818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4149, 691, 8271, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2638, 62, 4805, 3185, 47, 11417, 796, 4149, 10049, 16594, 2964, 18200, 26198, 35608, 818, 13557, 1640, 37978, 628, 628, 628, 198, 4871, 327, 8103, 21746, 22658, 357, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 42274, 3119, 3650, 1262, 257, 8633, 287, 4088, 319, 1353, 286, 1194, 198, 220, 220, 220, 3119, 3650, 7822, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2604, 796, 5972, 1362, 3419, 628, 628, 628, 628, 198, 198, 4299, 7925, 9771, 9239, 10697, 42904, 8521, 18243, 6601, 7, 15390, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 29677, 5981, 7508, 422, 257, 26506, 10697, 42904, 8521, 18243, 3188, 628, 220, 220, 220, 2488, 17143, 2205, 25, 26506, 10697, 42904, 8521, 18243, 2134, 284, 7925, 7508, 422, 198, 220, 220, 220, 2488, 7783, 25, 317, 46545, 7268, 25, 198, 220, 220, 220, 220, 220, 220, 220, 262, 1351, 286, 16326, 198, 220, 220, 220, 220, 220, 220, 220, 262, 4732, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 262, 4174, 2514, 25131, 198, 220, 220, 220, 220, 220, 220, 220, 262, 5456, 39184, 18253, 198, 220, 220, 220, 220, 220, 220, 220, 262, 2632, 20180, 7268, 262, 6608, 284, 1441, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4732, 796, 2205, 13, 1078, 7657, 13, 1136, 7203, 22866, 1600, 6045, 8, 198, 220, 220, 220, 4174, 2514, 796, 10352, 198, 220, 220, 220, 16326, 796, 17635, 198, 220, 220, 220, 5456, 39184, 796, 6045, 198, 220, 220, 220, 329, 1200, 287, 2205, 13, 17197, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1200, 13, 80, 3672, 3419, 6624, 357, 67, 615, 62, 14933, 10223, 11, 366, 22930, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2632, 20180, 796, 1200, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1200, 13, 80, 3672, 3419, 6624, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 615, 62, 14933, 10223, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 39014, 12, 1462, 12, 1050, 1939, 8521, 12, 43681, 12, 2617, 1, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4174, 2514, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1200, 13, 80, 3672, 3419, 6624, 357, 9948, 44942, 18497, 62, 14933, 10223, 11, 366, 12947, 12, 30001, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11395, 796, 1200, 13, 1462, 10100, 22446, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11241, 11395, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16326, 13, 33295, 7, 30001, 11395, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1200, 13, 80, 3672, 3419, 6624, 357, 9948, 44942, 18497, 62, 14933, 10223, 11, 366, 32374, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 43420, 796, 1200, 13, 9410, 5189, 6030, 7, 23144, 19875, 13, 45, 25468, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5456, 39184, 796, 493, 7, 2536, 7, 77, 43420, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 6030, 12331, 11, 11052, 12331, 11, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 22069, 23735, 25, 6439, 1988, 329, 1279, 32374, 29, 5002, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 40539, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 14626, 12331, 7, 19580, 31077, 7, 4363, 261, 2363, 1098, 13, 33, 2885, 62, 2200, 35780, 11, 31456, 4008, 628, 220, 220, 220, 1441, 16326, 11, 4732, 11, 4174, 2514, 11, 5456, 39184, 11, 2632, 20180, 628, 198, 198, 4299, 26571, 22906, 7, 83, 482, 641, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6889, 1654, 612, 318, 379, 1551, 530, 11241, 2392, 621, 530, 2095, 628, 220, 220, 220, 2488, 17143, 16326, 25, 262, 16326, 284, 10104, 198, 220, 220, 220, 2488, 4906, 16326, 25, 11629, 540, 286, 3384, 69, 12, 23, 30240, 13042, 628, 220, 220, 220, 2488, 7783, 25, 6407, 611, 16326, 389, 4938, 11, 10352, 4306, 198, 220, 220, 220, 2488, 81, 4906, 25, 25131, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 329, 11241, 287, 16326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 30001, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 1441, 10352, 198 ]
2.635527
3,586
from django.conf.urls import url, include from .views import ProductCreateView, ProductUpdateView, ProductIndexCreateView, upload_images, \ remove_uploaded_image, ProductDeleteView, change_publish_status, upload_images_product_update, \ delete_product_images, add_product_review, ProductListView, update_product_review, ProductDetailView, delete_product urlpatterns = [ url(r'^$', ProductDetailView.as_view(), name='product_detail'), url(r'^all/$', ProductListView.as_view(), name='product_list'), url(r'^(?P<slug>[\w-]+)/add-product/$', ProductCreateView.as_view(), name='add_product'), url(r'^(?P<slug>[\w-]+)/update-product/$', ProductUpdateView.as_view(), name='update_product'), url(r'^(?P<slug>[\w-]+)/upload-product-images/$', upload_images_product_update, name='upload_product_images'), url(r'^(?P<slug>[\w-]+)/delete-product/$', delete_product, name='delete_product'), url(r'^add-product/$', ProductIndexCreateView.as_view(), name='add_product_index'), url(r'^delete-product-images/$', delete_product_images, name='delete_product_images'), url(r'^upload/images/$', upload_images, name='upload_images'), url(r'^remove/images/$', remove_uploaded_image, name='remove_images'), url(r'^(?P<slug>[\w-]+)/add-review/$', add_product_review, name='add_review'), url(r'^(?P<slug>[\w-]+)/update-review/(?P<pk>[0-9]+)/$$', update_product_review, name='update_review'), ]
[ 6738, 42625, 14208, 13, 10414, 13, 6371, 82, 1330, 19016, 11, 2291, 198, 198, 6738, 764, 33571, 1330, 8721, 16447, 7680, 11, 8721, 10260, 7680, 11, 8721, 15732, 16447, 7680, 11, 9516, 62, 17566, 11, 3467, 198, 220, 220, 220, 4781, 62, 25850, 276, 62, 9060, 11, 8721, 38727, 7680, 11, 1487, 62, 12984, 1836, 62, 13376, 11, 9516, 62, 17566, 62, 11167, 62, 19119, 11, 3467, 198, 220, 220, 220, 12233, 62, 11167, 62, 17566, 11, 751, 62, 11167, 62, 19023, 11, 8721, 8053, 7680, 11, 4296, 62, 11167, 62, 19023, 11, 8721, 11242, 603, 7680, 11, 12233, 62, 11167, 198, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 3, 3256, 8721, 11242, 603, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 11167, 62, 49170, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 439, 32624, 3256, 8721, 8053, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 11167, 62, 4868, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 2860, 12, 11167, 32624, 3256, 8721, 16447, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 2860, 62, 11167, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 19119, 12, 11167, 32624, 3256, 8721, 10260, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 19119, 62, 11167, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 25850, 12, 11167, 12, 17566, 32624, 3256, 9516, 62, 17566, 62, 11167, 62, 19119, 11, 1438, 11639, 25850, 62, 11167, 62, 17566, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 33678, 12, 11167, 32624, 3256, 12233, 62, 11167, 11, 1438, 11639, 33678, 62, 11167, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 2860, 12, 11167, 32624, 3256, 8721, 15732, 16447, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 2860, 62, 11167, 62, 9630, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 33678, 12, 11167, 12, 17566, 32624, 3256, 12233, 62, 11167, 62, 17566, 11, 1438, 11639, 33678, 62, 11167, 62, 17566, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 25850, 14, 17566, 32624, 3256, 9516, 62, 17566, 11, 1438, 11639, 25850, 62, 17566, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 28956, 14, 17566, 32624, 3256, 4781, 62, 25850, 276, 62, 9060, 11, 1438, 11639, 28956, 62, 17566, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 2860, 12, 19023, 32624, 3256, 751, 62, 11167, 62, 19023, 11, 1438, 11639, 2860, 62, 19023, 33809, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 7, 30, 47, 27, 6649, 1018, 36937, 59, 86, 12, 48688, 20679, 19119, 12, 19023, 29006, 30, 47, 27, 79, 74, 36937, 15, 12, 24, 48688, 20679, 13702, 3256, 4296, 62, 11167, 62, 19023, 11, 1438, 11639, 19119, 62, 19023, 33809, 628, 198, 60, 198 ]
2.725191
524
#!/usr/bin/python3 from tornado import web import random
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 198, 198, 6738, 33718, 1330, 3992, 198, 11748, 4738, 198 ]
3.222222
18
from django.urls import path from .views import clients, edit_client, edit_client_plan urlpatterns = [ path('clients', clients, name='clients'), path('add_client', edit_client, name='add_client'), path('add_client_plan', edit_client_plan, name='add_client_plan'), path('edit_client/<id>', edit_client, name='edit_client'), # path('add_client_plan', edit_client_plan, name='add_client_plan'), path('update_subscription/<id>', edit_client_plan, name='update_subscription'), ]
[ 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 198, 6738, 764, 33571, 1330, 7534, 11, 4370, 62, 16366, 11, 4370, 62, 16366, 62, 11578, 198, 198, 6371, 33279, 82, 796, 685, 628, 220, 220, 220, 3108, 10786, 565, 2334, 3256, 7534, 11, 1438, 11639, 565, 2334, 33809, 628, 220, 220, 220, 3108, 10786, 2860, 62, 16366, 3256, 4370, 62, 16366, 11, 1438, 11639, 2860, 62, 16366, 33809, 198, 220, 220, 220, 3108, 10786, 2860, 62, 16366, 62, 11578, 3256, 4370, 62, 16366, 62, 11578, 11, 1438, 11639, 2860, 62, 16366, 62, 11578, 33809, 628, 220, 220, 220, 3108, 10786, 19312, 62, 16366, 14, 27, 312, 29, 3256, 4370, 62, 16366, 11, 1438, 11639, 19312, 62, 16366, 33809, 198, 220, 220, 220, 1303, 3108, 10786, 2860, 62, 16366, 62, 11578, 3256, 4370, 62, 16366, 62, 11578, 11, 1438, 11639, 2860, 62, 16366, 62, 11578, 33809, 198, 220, 220, 220, 3108, 10786, 19119, 62, 7266, 33584, 14, 27, 312, 29, 3256, 4370, 62, 16366, 62, 11578, 11, 1438, 11639, 19119, 62, 7266, 33584, 33809, 628, 198, 60, 198 ]
2.863636
176
from datetime import datetime import github.Issue from gh import HasLabel, AddLabel from .policy import Policy StaleIssuePolicy()
[ 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 11748, 33084, 13, 45147, 198, 198, 6738, 24997, 1330, 7875, 33986, 11, 3060, 33986, 198, 6738, 764, 30586, 1330, 7820, 628, 198, 1273, 1000, 45147, 36727, 3419, 198 ]
3.722222
36
from cogbot.cogs.robo_mod.robo_mod_condition import RoboModCondition from cogbot.cogs.robo_mod.robo_mod_trigger import RoboModTrigger
[ 6738, 43072, 13645, 13, 66, 18463, 13, 305, 2127, 62, 4666, 13, 305, 2127, 62, 4666, 62, 31448, 1330, 39702, 5841, 48362, 198, 6738, 43072, 13645, 13, 66, 18463, 13, 305, 2127, 62, 4666, 13, 305, 2127, 62, 4666, 62, 46284, 1330, 39702, 5841, 48344, 628 ]
2.934783
46
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'PLAFile.ui' # # Created: Fri Jun 10 09:11:23 2011 # by: PyQt4 UI code generator 4.8.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 except AttributeError: _fromUtf8 = lambda s: s from core.SpecificationTable import SpecificationTable
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 5178, 7822, 7560, 422, 3555, 334, 72, 2393, 705, 6489, 8579, 576, 13, 9019, 6, 198, 2, 198, 2, 15622, 25, 19480, 7653, 838, 7769, 25, 1157, 25, 1954, 2813, 198, 2, 220, 220, 220, 220, 220, 416, 25, 9485, 48, 83, 19, 12454, 2438, 17301, 604, 13, 23, 13, 18, 198, 2, 198, 2, 39410, 0, 1439, 2458, 925, 287, 428, 2393, 481, 307, 2626, 0, 198, 198, 6738, 9485, 48, 83, 19, 1330, 33734, 14055, 11, 33734, 8205, 72, 198, 198, 28311, 25, 198, 220, 220, 220, 4808, 6738, 18274, 69, 23, 796, 33734, 14055, 13, 48, 10100, 13, 6738, 18274, 69, 23, 198, 16341, 3460, 4163, 12331, 25, 198, 220, 220, 220, 4808, 6738, 18274, 69, 23, 796, 37456, 264, 25, 264, 198, 198, 6738, 4755, 13, 22882, 2649, 10962, 1330, 18291, 2649, 10962, 198 ]
2.681818
154
import datetime import unittest from .EgyptianNationalId import EgyptianNationalId VALID_ID = "30103211203135" if __name__ == "__main__": unittest.main()
[ 11748, 4818, 8079, 198, 11748, 555, 715, 395, 198, 198, 6738, 764, 39299, 666, 16186, 7390, 1330, 14075, 16186, 7390, 198, 198, 23428, 2389, 62, 2389, 796, 366, 18938, 3070, 2481, 1065, 3070, 17059, 1, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.762712
59
import numpy as np import time from common import get_args,experiment_setup if __name__=='__main__': args = get_args() env, env_test, agent, buffer, learner, tester = experiment_setup(args) args.logger.summary_init(agent.graph, agent.sess) # Progress info args.logger.add_item('Epoch') args.logger.add_item('Cycle') args.logger.add_item('Episodes@green') args.logger.add_item('Timesteps') args.logger.add_item('TimeCost(sec)') # Algorithm info for key in agent.train_info.keys(): args.logger.add_item(key, 'scalar') # Test info for key in tester.info: args.logger.add_item(key, 'scalar') args.logger.summary_setup() for epoch in range(args.epochs): for cycle in range(args.cycles): args.logger.tabular_clear() args.logger.summary_clear() start_time = time.time() learner.learn(args, env, env_test, agent, buffer) tester.cycle_summary() args.logger.add_record('Epoch', str(epoch)+'/'+str(args.epochs)) args.logger.add_record('Cycle', str(cycle)+'/'+str(args.cycles)) args.logger.add_record('Episodes', buffer.counter) args.logger.add_record('Timesteps', buffer.steps_counter) args.logger.add_record('TimeCost(sec)', time.time()-start_time) args.logger.tabular_show(args.tag) args.logger.summary_show(buffer.counter) tester.epoch_summary() tester.final_summary()
[ 11748, 299, 32152, 355, 45941, 198, 11748, 640, 198, 6738, 2219, 1330, 651, 62, 22046, 11, 23100, 3681, 62, 40406, 198, 198, 361, 11593, 3672, 834, 855, 6, 834, 12417, 834, 10354, 198, 197, 22046, 796, 651, 62, 22046, 3419, 198, 197, 24330, 11, 17365, 62, 9288, 11, 5797, 11, 11876, 11, 22454, 1008, 11, 256, 7834, 796, 6306, 62, 40406, 7, 22046, 8, 628, 197, 22046, 13, 6404, 1362, 13, 49736, 62, 15003, 7, 25781, 13, 34960, 11, 5797, 13, 82, 408, 8, 628, 197, 2, 18387, 7508, 198, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 10786, 13807, 5374, 11537, 198, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 10786, 20418, 2375, 11537, 198, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 10786, 13807, 8052, 31, 14809, 11537, 198, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 10786, 14967, 395, 25386, 11537, 198, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 10786, 7575, 13729, 7, 2363, 8, 11537, 628, 197, 2, 978, 42289, 7508, 198, 197, 1640, 1994, 287, 5797, 13, 27432, 62, 10951, 13, 13083, 33529, 198, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 7, 2539, 11, 705, 1416, 282, 283, 11537, 628, 197, 2, 6208, 7508, 198, 197, 1640, 1994, 287, 256, 7834, 13, 10951, 25, 198, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 9186, 7, 2539, 11, 705, 1416, 282, 283, 11537, 628, 197, 22046, 13, 6404, 1362, 13, 49736, 62, 40406, 3419, 628, 197, 1640, 36835, 287, 2837, 7, 22046, 13, 538, 5374, 82, 2599, 198, 197, 197, 1640, 6772, 287, 2837, 7, 22046, 13, 32503, 2599, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 8658, 934, 62, 20063, 3419, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 49736, 62, 20063, 3419, 198, 197, 197, 197, 9688, 62, 2435, 796, 640, 13, 2435, 3419, 628, 197, 197, 197, 3238, 1008, 13, 35720, 7, 22046, 11, 17365, 11, 17365, 62, 9288, 11, 5797, 11, 11876, 8, 198, 197, 197, 197, 4879, 353, 13, 13696, 62, 49736, 3419, 628, 197, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 22105, 10786, 13807, 5374, 3256, 965, 7, 538, 5374, 47762, 26488, 6, 10, 2536, 7, 22046, 13, 538, 5374, 82, 4008, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 22105, 10786, 20418, 2375, 3256, 965, 7, 13696, 47762, 26488, 6, 10, 2536, 7, 22046, 13, 32503, 4008, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 22105, 10786, 13807, 8052, 3256, 11876, 13, 24588, 8, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 22105, 10786, 14967, 395, 25386, 3256, 11876, 13, 20214, 62, 24588, 8, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 2860, 62, 22105, 10786, 7575, 13729, 7, 2363, 8, 3256, 640, 13, 2435, 3419, 12, 9688, 62, 2435, 8, 628, 197, 197, 197, 22046, 13, 6404, 1362, 13, 8658, 934, 62, 12860, 7, 22046, 13, 12985, 8, 198, 197, 197, 197, 22046, 13, 6404, 1362, 13, 49736, 62, 12860, 7, 22252, 13, 24588, 8, 628, 197, 197, 4879, 353, 13, 538, 5374, 62, 49736, 3419, 628, 197, 4879, 353, 13, 20311, 62, 49736, 3419, 198 ]
2.505639
532
''' Python code used in APS 2016 Python lecture 5 ''' import h5py import lecture5_lib f = h5py.File('writer_1_3.hdf5', 'r') x = f['/Scan/data/two_theta'] y = f['/Scan/data/counts'] print 'file:', f.filename print 'peak position:', lecture5_lib.peak_position(x, y) print 'center-of-mass:', lecture5_lib.center_of_mass(x, y) print 'FWHM:', lecture5_lib.fwhm(x, y) f.close() def dummy(): ''' '''
[ 7061, 6, 198, 37906, 2438, 973, 287, 3486, 50, 1584, 11361, 19143, 642, 198, 7061, 6, 198, 198, 11748, 289, 20, 9078, 198, 11748, 19143, 20, 62, 8019, 198, 198, 69, 796, 289, 20, 9078, 13, 8979, 10786, 16002, 62, 16, 62, 18, 13, 71, 7568, 20, 3256, 705, 81, 11537, 198, 87, 796, 277, 17816, 14, 33351, 14, 7890, 14, 11545, 62, 1169, 8326, 20520, 198, 88, 796, 277, 17816, 14, 33351, 14, 7890, 14, 9127, 82, 20520, 198, 4798, 705, 7753, 25, 3256, 277, 13, 34345, 198, 4798, 705, 36729, 2292, 25, 3256, 19143, 20, 62, 8019, 13, 36729, 62, 9150, 7, 87, 11, 331, 8, 198, 4798, 705, 16159, 12, 1659, 12, 22208, 25, 3256, 19143, 20, 62, 8019, 13, 16159, 62, 1659, 62, 22208, 7, 87, 11, 331, 8, 198, 4798, 705, 37, 12418, 44, 25, 3256, 19143, 20, 62, 8019, 13, 69, 1929, 76, 7, 87, 11, 331, 8, 198, 69, 13, 19836, 3419, 198, 198, 4299, 31548, 33529, 198, 220, 705, 7061, 705, 7061, 198 ]
2.327485
171
import json import pytest import requests @pytest.mark.parametrize("userid, firstname", [(1,"George"),(2,"Janet")])
[ 11748, 33918, 198, 11748, 12972, 9288, 198, 11748, 7007, 198, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 7220, 312, 11, 717, 3672, 1600, 47527, 16, 553, 20191, 12340, 7, 17, 553, 12128, 316, 4943, 12962, 198 ]
2.853659
41
__author__ = "ujjwal" import os import json import requests import urllib import xmltodict from priceprobi.utils import get_env from priceprobi.config import get_config from priceprobi.db.mongo_helper import MongoHelper from priceprobi.config import NOMINATIM, CSIS from priceprobi import logger if __name__ == "__main__": config = get_config(get_env()) geocoder = Geocoder(config=config) geocoder.check_mandi_locations() geocoder.create_batch_geocodes()
[ 834, 9800, 834, 796, 366, 23577, 73, 16783, 1, 198, 11748, 28686, 198, 11748, 33918, 198, 11748, 7007, 198, 11748, 2956, 297, 571, 198, 11748, 2124, 76, 2528, 375, 713, 198, 6738, 2756, 1676, 8482, 13, 26791, 1330, 651, 62, 24330, 198, 6738, 2756, 1676, 8482, 13, 11250, 1330, 651, 62, 11250, 198, 6738, 2756, 1676, 8482, 13, 9945, 13, 76, 25162, 62, 2978, 525, 1330, 42591, 47429, 198, 6738, 2756, 1676, 8482, 13, 11250, 1330, 399, 2662, 1268, 1404, 3955, 11, 9429, 1797, 198, 6738, 2756, 1676, 8482, 1330, 49706, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 4566, 796, 651, 62, 11250, 7, 1136, 62, 24330, 28955, 198, 220, 220, 220, 4903, 420, 12342, 796, 2269, 420, 12342, 7, 11250, 28, 11250, 8, 198, 220, 220, 220, 4903, 420, 12342, 13, 9122, 62, 22249, 72, 62, 17946, 602, 3419, 198, 220, 220, 220, 4903, 420, 12342, 13, 17953, 62, 43501, 62, 469, 420, 4147, 3419, 198 ]
2.838323
167
from django.contrib import admin from .models import * admin.site.register(Book) admin.site.register(Booking) admin.site.register(Achievement) admin.site.register(AboutUs) admin.site.register(Card)
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 764, 27530, 1330, 1635, 628, 198, 28482, 13, 15654, 13, 30238, 7, 10482, 8, 198, 28482, 13, 15654, 13, 30238, 7, 10482, 278, 8, 198, 28482, 13, 15654, 13, 30238, 7, 32, 24957, 434, 8, 198, 28482, 13, 15654, 13, 30238, 7, 8585, 5842, 8, 198, 28482, 13, 15654, 13, 30238, 7, 16962, 8, 628, 628 ]
3.075758
66
from rosalind import parse_fasta from rosalind import translate from rosalind import transcribe if(__name__=='__main__'): main()
[ 6738, 686, 21680, 521, 1330, 21136, 62, 7217, 64, 198, 6738, 686, 21680, 521, 1330, 15772, 198, 6738, 686, 21680, 521, 1330, 23589, 4892, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 361, 7, 834, 3672, 834, 855, 6, 834, 12417, 834, 6, 2599, 198, 220, 220, 220, 1388, 3419 ]
2.711538
52
#! /usr/bin/env python3 """Setup script run "./setup.py --help-commands" for help. """ from datetime import datetime from os.path import abspath, dirname, join PACKAGE_INFO = dict( name="compilertools", description="A library for helping optimizing Python extensions compilation.", long_description_content_type="text/markdown; charset=UTF-8", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Topic :: Software Development :: Build Tools", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", ], keywords="compiler distutils setuptools build_ext wheels setup build", author="J.Goutin", url="https://github.com/JGoutin/compilertools", project_urls={ "Documentation": "http://compilertools.readthedocs.io/", "Download": "https://pypi.org/project/compilertools", }, license="BSD", zip_safe=True, python_requires=">=3.6", setup_requires=["setuptools"], tests_require=["pytest-cov", "pytest-flake8", "pytest-black"], command_options={}, ) SETUP_DIR = abspath(dirname(__file__)) with open(join(SETUP_DIR, "compilertools/_version.py")) as file: for line in file: if line.rstrip().startswith("__version__"): PACKAGE_INFO["version"] = line.split("=", 1)[1].strip(" \"'\n") break with open(join(SETUP_DIR, "readme.md")) as file: PACKAGE_INFO["long_description"] = file.read() PACKAGE_INFO["command_options"]["build_sphinx"] = { "project": ("setup.py", PACKAGE_INFO["name"].capitalize()), "version": ("setup.py", PACKAGE_INFO["version"]), "release": ("setup.py", PACKAGE_INFO["version"]), "copyright": ( "setup.py", "2017-%s, %s" % (datetime.now().year, PACKAGE_INFO["author"]), ), } if __name__ == "__main__": from os import chdir from sys import argv from setuptools import setup, find_packages if {"pytest", "test", "ptr"}.intersection(argv): PACKAGE_INFO["setup_requires"].append("pytest-runner") elif "build_sphinx" in argv: PACKAGE_INFO["setup_requires"] += ["sphinx", "sphinx_rtd_theme"] chdir(SETUP_DIR) setup(packages=find_packages(exclude=["tests", "doc"]), **PACKAGE_INFO)
[ 2, 0, 1220, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 37811, 40786, 4226, 198, 198, 5143, 366, 19571, 40406, 13, 9078, 1377, 16794, 12, 9503, 1746, 1, 329, 1037, 13, 198, 37811, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 28686, 13, 6978, 1330, 2352, 6978, 11, 26672, 3672, 11, 4654, 198, 198, 47, 8120, 11879, 62, 10778, 796, 8633, 7, 198, 220, 220, 220, 1438, 2625, 5589, 346, 861, 10141, 1600, 198, 220, 220, 220, 6764, 2625, 32, 5888, 329, 5742, 45780, 11361, 18366, 23340, 33283, 198, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 2625, 5239, 14, 4102, 2902, 26, 34534, 316, 28, 48504, 12, 23, 1600, 198, 220, 220, 220, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 366, 41206, 12678, 7904, 642, 532, 19174, 14, 1273, 540, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 5317, 1631, 7591, 1240, 7904, 34152, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 34156, 7904, 7294, 40, 20010, 1079, 7904, 347, 10305, 13789, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 33221, 7904, 10442, 7712, 7904, 10934, 20003, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 21, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 22, 1600, 198, 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, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 24, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 940, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 46333, 7904, 16932, 7535, 1600, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 26286, 2625, 5589, 5329, 1233, 26791, 900, 37623, 10141, 1382, 62, 2302, 13666, 9058, 1382, 1600, 198, 220, 220, 220, 1772, 2625, 41, 13, 38, 448, 259, 1600, 198, 220, 220, 220, 19016, 2625, 5450, 1378, 12567, 13, 785, 14, 41, 38, 448, 259, 14, 5589, 346, 861, 10141, 1600, 198, 220, 220, 220, 1628, 62, 6371, 82, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 366, 24941, 341, 1298, 366, 4023, 1378, 5589, 346, 861, 10141, 13, 961, 83, 704, 420, 82, 13, 952, 14, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 10002, 1298, 366, 5450, 1378, 79, 4464, 72, 13, 2398, 14, 16302, 14, 5589, 346, 861, 10141, 1600, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 5964, 2625, 21800, 1600, 198, 220, 220, 220, 19974, 62, 21230, 28, 17821, 11, 198, 220, 220, 220, 21015, 62, 47911, 2625, 29, 28, 18, 13, 21, 1600, 198, 220, 220, 220, 9058, 62, 47911, 28, 14692, 2617, 37623, 10141, 33116, 198, 220, 220, 220, 5254, 62, 46115, 28, 14692, 9078, 9288, 12, 66, 709, 1600, 366, 9078, 9288, 12, 47597, 23, 1600, 366, 9078, 9288, 12, 13424, 33116, 198, 220, 220, 220, 3141, 62, 25811, 34758, 5512, 198, 8, 198, 198, 28480, 8577, 62, 34720, 796, 2352, 6978, 7, 15908, 3672, 7, 834, 7753, 834, 4008, 198, 198, 4480, 1280, 7, 22179, 7, 28480, 8577, 62, 34720, 11, 366, 5589, 346, 861, 10141, 47835, 9641, 13, 9078, 48774, 355, 2393, 25, 198, 220, 220, 220, 329, 1627, 287, 2393, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 13, 81, 36311, 22446, 9688, 2032, 342, 7203, 834, 9641, 834, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47035, 11879, 62, 10778, 14692, 9641, 8973, 796, 1627, 13, 35312, 7203, 28, 1600, 352, 38381, 16, 4083, 36311, 7203, 19990, 6, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 198, 4480, 1280, 7, 22179, 7, 28480, 8577, 62, 34720, 11, 366, 961, 1326, 13, 9132, 48774, 355, 2393, 25, 198, 220, 220, 220, 47035, 11879, 62, 10778, 14692, 6511, 62, 11213, 8973, 796, 2393, 13, 961, 3419, 198, 198, 47, 8120, 11879, 62, 10778, 14692, 21812, 62, 25811, 1, 7131, 1, 11249, 62, 82, 746, 28413, 8973, 796, 1391, 198, 220, 220, 220, 366, 16302, 1298, 5855, 40406, 13, 9078, 1600, 47035, 11879, 62, 10778, 14692, 3672, 1, 4083, 27544, 1096, 3419, 828, 198, 220, 220, 220, 366, 9641, 1298, 5855, 40406, 13, 9078, 1600, 47035, 11879, 62, 10778, 14692, 9641, 8973, 828, 198, 220, 220, 220, 366, 20979, 1298, 5855, 40406, 13, 9078, 1600, 47035, 11879, 62, 10778, 14692, 9641, 8973, 828, 198, 220, 220, 220, 366, 22163, 4766, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40406, 13, 9078, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 5539, 12, 4, 82, 11, 4064, 82, 1, 4064, 357, 19608, 8079, 13, 2197, 22446, 1941, 11, 47035, 11879, 62, 10778, 14692, 9800, 8973, 828, 198, 220, 220, 220, 10612, 198, 92, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 422, 28686, 1330, 442, 15908, 198, 220, 220, 220, 422, 25064, 1330, 1822, 85, 198, 220, 220, 220, 422, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 628, 220, 220, 220, 611, 19779, 9078, 9288, 1600, 366, 9288, 1600, 366, 20692, 20662, 13, 3849, 5458, 7, 853, 85, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 47035, 11879, 62, 10778, 14692, 40406, 62, 47911, 1, 4083, 33295, 7203, 9078, 9288, 12, 16737, 4943, 628, 220, 220, 220, 1288, 361, 366, 11249, 62, 82, 746, 28413, 1, 287, 1822, 85, 25, 198, 220, 220, 220, 220, 220, 220, 220, 47035, 11879, 62, 10778, 14692, 40406, 62, 47911, 8973, 15853, 14631, 82, 746, 28413, 1600, 366, 82, 746, 28413, 62, 81, 8671, 62, 43810, 8973, 628, 220, 220, 220, 442, 15908, 7, 28480, 8577, 62, 34720, 8, 198, 220, 220, 220, 9058, 7, 43789, 28, 19796, 62, 43789, 7, 1069, 9152, 28, 14692, 41989, 1600, 366, 15390, 8973, 828, 12429, 47, 8120, 11879, 62, 10778, 8, 198 ]
2.538682
1,047
import os import h5py import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from matplotlib import cm def load_h5_data_label(h5_filename): """ load the data from the hdf5 files """ f = h5py.File(h5_filename) data = f['data'][:] labels = f['label'][:] # normal = f['normal'][:] return (data, labels) def pointnet_to_cleanpoint(data_dir, samples, labels): """ read pointnet dataset point cloud and transfer it to pcpnet dataset format """ shape_names_dir = os.path.join(data_dir, 'shape_names.txt') with open(shape_names_dir) as f: label_names = f.readlines() # save in the pcp data set format new_dir = os.path.join(data_dir, '../modelNetDataset') if not os.path.exists(new_dir): os.mkdir(new_dir) for i, _ in enumerate(samples, 0): sample = samples[i, :, :] # save clean sample num = 0 filename = os.path.join(new_dir, label_names[labels[i][0]].strip() + '_{:d}_{:02d}.xyz'.format(labels[i][0], num)) while os.path.exists(filename): num = num + 1 filename = os.path.join(new_dir, label_names[labels[i][0]].strip() + '_{:d}_{:02d}.xyz'.format(labels[i][0], num)) if num > 10: continue with open(filename, 'w') as f: f.write('\n'.join([' '.join(map(str, x)) for x in sample])) f.close() # save noisy sample - white noise std 0.25% filename_1 = os.path.splitext(filename)[0] noisy_sample = sample + np.random.normal(scale=0.0025, size=sample.shape) filename_1 = filename_1 + '_2.50e-03.xyz' with open(filename_1, 'w') as f: f.write('\n'.join([' '.join(map(str, x)) for x in noisy_sample])) f.close() # save noisy sample - white noise std 1% filename_2 = os.path.splitext(filename)[0] noisy_sample = sample + np.random.normal(scale=0.01, size=sample.shape) filename_2 = filename_2 + '_1.00e-02.xyz' with open(filename_2, 'w') as f: f.write('\n'.join([' '.join(map(str, x)) for x in noisy_sample])) f.close() # save noisy sample - white noise std 2.5% filename_3 = os.path.splitext(filename)[0] noisy_sample = sample + np.random.normal(scale=0.025, size=sample.shape) filename_3 = filename_3 + '_2.50e-02.xyz' with open(filename_3, 'w') as f: f.write('\n'.join([' '.join(map(str, x)) for x in noisy_sample])) f.close() # for each file create clean copy for GT filename = os.path.splitext(filename)[0] + '.clean_xyz' filename_1 = os.path.splitext(filename_1)[0] + '.clean_xyz' filename_2 = os.path.splitext(filename_2)[0] + '.clean_xyz' filename_3 = os.path.splitext(filename_3)[0] + '.clean_xyz' with open(filename, 'w') as f, open(filename_1, 'w') as f1, open(filename_2, 'w') as f2, open(filename_3, 'w') as f3: f.write('\n'.join([' '.join(map(str, x)) for x in sample])) f1.write('\n'.join([' '.join(map(str, x)) for x in sample])) f2.write('\n'.join([' '.join(map(str, x)) for x in sample])) f3.write('\n'.join([' '.join(map(str, x)) for x in sample])) f.close() f1.close() f2.close() f3.close() return def visualize_point_cloud(pc, output_filename='null', fig_num=0, color=np.array([1])): """ points is a Nx3 numpy array """ fig = plt.figure(fig_num) ax = fig.add_subplot(111, projection='3d') if color[0] == 1: color = pc[:, 2] ax.scatter(pc[:, 0], pc[:, 1], pc[:, 2], c=color, s=5, marker='.', depthshade=True) # ax.set_xlabel('x') # ax.set_ylabel('y') # ax.set_zlabel('z') ax.axis('on') # plt.savefig(output_filename) def prep_training_set_file(data_dir): """ prep trainingset.txt and validationset.txt files """ trainset_file = os.path.join(data_dir, 'trainingset.txt') valiset_file = os.path.join(data_dir, 'validationset.txt') with open(trainset_file, 'w') as f1, open(valiset_file, 'w') as f2: for path, subdirs, files in os.walk(data_dir): for file in files: file = os.path.splitext(file)[0] if file != 'trainingset' and file != 'validationset': if int(file.split('_')[2]) <= 8: f1.write(file + '\n') else: f2.write(file + '\n') f1.close() f2.close() if __name__ == '__main__': clean = np.loadtxt('data/modelNetDataset/airplane_0_09_1.00e-02.clean_xyz') pc1 = np.loadtxt('results/airplane_0_09_1.00e-02_0.xyz') pc2 = np.loadtxt('results/airplane_0_09_1.00e-02_1.xyz') err1 = np.sum(np.square(pc1 - clean), axis=1) err2 = np.sum(np.square(pc2 - clean), axis=1) visualize_point_cloud(pc1, fig_num=1) visualize_point_cloud(pc2, fig_num=2) visualize_point_cloud(pc1, fig_num=3, color=err1) visualize_point_cloud(pc2, fig_num=4, color=err2) plt.show() # samples, labels = load_dataset() # in_dir = os.path.join(os.getcwd(), 'data/modelnet40_ply_hdf5_2048') # pointnet_to_cleanpoint(in_dir, samples, labels) # prep_training_set_file(os.path.join(os.getcwd(), 'data/modelNetDataset'))
[ 11748, 28686, 201, 198, 11748, 289, 20, 9078, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 201, 198, 6738, 285, 489, 62, 25981, 74, 896, 13, 76, 29487, 18, 67, 1330, 12176, 274, 18, 35, 201, 198, 6738, 2603, 29487, 8019, 1330, 12067, 201, 198, 201, 198, 201, 198, 4299, 3440, 62, 71, 20, 62, 7890, 62, 18242, 7, 71, 20, 62, 34345, 2599, 201, 198, 220, 220, 220, 37227, 3440, 262, 1366, 422, 262, 289, 7568, 20, 3696, 37227, 201, 198, 220, 220, 220, 277, 796, 289, 20, 9078, 13, 8979, 7, 71, 20, 62, 34345, 8, 201, 198, 220, 220, 220, 1366, 796, 277, 17816, 7890, 6, 7131, 47715, 201, 198, 220, 220, 220, 14722, 796, 277, 17816, 18242, 6, 7131, 47715, 201, 198, 220, 220, 220, 1303, 3487, 796, 277, 17816, 11265, 6, 7131, 47715, 201, 198, 220, 220, 220, 1441, 357, 7890, 11, 14722, 8, 201, 198, 201, 198, 201, 198, 4299, 966, 3262, 62, 1462, 62, 27773, 4122, 7, 7890, 62, 15908, 11, 8405, 11, 14722, 2599, 201, 198, 220, 220, 220, 37227, 1100, 966, 3262, 27039, 966, 6279, 290, 4351, 340, 284, 279, 13155, 3262, 27039, 5794, 37227, 201, 198, 220, 220, 220, 5485, 62, 14933, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 43358, 62, 14933, 13, 14116, 11537, 201, 198, 201, 198, 220, 220, 220, 351, 1280, 7, 43358, 62, 14933, 62, 15908, 8, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 14933, 796, 277, 13, 961, 6615, 3419, 201, 198, 201, 198, 220, 220, 220, 1303, 3613, 287, 262, 279, 13155, 1366, 900, 5794, 201, 198, 220, 220, 220, 649, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 40720, 19849, 7934, 27354, 292, 316, 11537, 201, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 3605, 62, 15908, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 3605, 62, 15908, 8, 201, 198, 201, 198, 220, 220, 220, 329, 1312, 11, 4808, 287, 27056, 378, 7, 82, 12629, 11, 657, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6291, 796, 8405, 58, 72, 11, 1058, 11, 1058, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3613, 3424, 6291, 201, 198, 220, 220, 220, 220, 220, 220, 220, 997, 796, 657, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 7, 3605, 62, 15908, 11, 6167, 62, 14933, 58, 23912, 1424, 58, 72, 7131, 15, 60, 4083, 36311, 3419, 1343, 705, 23330, 25, 67, 92, 23330, 25, 2999, 67, 27422, 5431, 89, 4458, 18982, 7, 23912, 1424, 58, 72, 7131, 15, 4357, 997, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 981, 28686, 13, 6978, 13, 1069, 1023, 7, 34345, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 796, 997, 1343, 352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22179, 7, 3605, 62, 15908, 11, 6167, 62, 14933, 58, 23912, 1424, 58, 72, 7131, 15, 60, 4083, 36311, 3419, 1343, 705, 23330, 25, 67, 92, 23330, 25, 2999, 67, 27422, 5431, 89, 4458, 18982, 7, 23912, 1424, 58, 72, 7131, 15, 4357, 997, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 1875, 838, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 6291, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3613, 31210, 6291, 532, 2330, 7838, 14367, 657, 13, 1495, 4, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 16, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 38381, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 31210, 62, 39873, 796, 6291, 1343, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 15, 13, 405, 1495, 11, 2546, 28, 39873, 13, 43358, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 16, 796, 29472, 62, 16, 1343, 705, 62, 17, 13, 1120, 68, 12, 3070, 13, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 62, 16, 11, 705, 86, 11537, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 31210, 62, 39873, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3613, 31210, 6291, 532, 2330, 7838, 14367, 352, 4, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 17, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 38381, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 31210, 62, 39873, 796, 6291, 1343, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 15, 13, 486, 11, 2546, 28, 39873, 13, 43358, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 17, 796, 29472, 62, 17, 1343, 705, 62, 16, 13, 405, 68, 12, 2999, 13, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 62, 17, 11, 705, 86, 11537, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 31210, 62, 39873, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3613, 31210, 6291, 532, 2330, 7838, 14367, 362, 13, 20, 4, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 18, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 38381, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 31210, 62, 39873, 796, 6291, 1343, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 15, 13, 36629, 11, 2546, 28, 39873, 13, 43358, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 18, 796, 29472, 62, 18, 1343, 705, 62, 17, 13, 1120, 68, 12, 2999, 13, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 62, 18, 11, 705, 86, 11537, 355, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 31210, 62, 39873, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 329, 1123, 2393, 2251, 3424, 4866, 329, 7963, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 38381, 15, 60, 1343, 45302, 27773, 62, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 16, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 62, 16, 38381, 15, 60, 1343, 45302, 27773, 62, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 17, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 62, 17, 38381, 15, 60, 1343, 45302, 27773, 62, 5431, 89, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 62, 18, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 34345, 62, 18, 38381, 15, 60, 1343, 45302, 27773, 62, 5431, 89, 6, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 277, 11, 1280, 7, 34345, 62, 16, 11, 705, 86, 11537, 355, 277, 16, 11, 1280, 7, 34345, 62, 17, 11, 705, 86, 11537, 355, 277, 17, 11, 1280, 7, 34345, 62, 18, 11, 705, 86, 11537, 355, 277, 18, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 6291, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 16, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 6291, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 17, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 6291, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 18, 13, 13564, 10786, 59, 77, 4458, 22179, 7, 17816, 45302, 22179, 7, 8899, 7, 2536, 11, 2124, 4008, 329, 2124, 287, 6291, 60, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 16, 13, 19836, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 17, 13, 19836, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 18, 13, 19836, 3419, 201, 198, 220, 220, 220, 1441, 201, 198, 201, 198, 201, 198, 4299, 38350, 62, 4122, 62, 17721, 7, 14751, 11, 5072, 62, 34345, 11639, 8423, 3256, 2336, 62, 22510, 28, 15, 11, 3124, 28, 37659, 13, 18747, 26933, 16, 12962, 2599, 201, 198, 220, 220, 220, 37227, 2173, 318, 257, 399, 87, 18, 299, 32152, 7177, 37227, 201, 198, 220, 220, 220, 2336, 796, 458, 83, 13, 26875, 7, 5647, 62, 22510, 8, 201, 198, 220, 220, 220, 7877, 796, 2336, 13, 2860, 62, 7266, 29487, 7, 16243, 11, 20128, 11639, 18, 67, 11537, 201, 198, 220, 220, 220, 611, 3124, 58, 15, 60, 6624, 352, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3124, 796, 40653, 58, 45299, 362, 60, 201, 198, 201, 198, 220, 220, 220, 7877, 13, 1416, 1436, 7, 14751, 58, 45299, 657, 4357, 40653, 58, 45299, 352, 4357, 40653, 58, 45299, 362, 4357, 269, 28, 8043, 11, 264, 28, 20, 11, 18364, 11639, 2637, 11, 6795, 1477, 671, 28, 17821, 8, 201, 198, 220, 220, 220, 1303, 7877, 13, 2617, 62, 87, 18242, 10786, 87, 11537, 201, 198, 220, 220, 220, 1303, 7877, 13, 2617, 62, 2645, 9608, 10786, 88, 11537, 201, 198, 220, 220, 220, 1303, 7877, 13, 2617, 62, 89, 18242, 10786, 89, 11537, 201, 198, 220, 220, 220, 7877, 13, 22704, 10786, 261, 11537, 201, 198, 201, 198, 220, 220, 220, 1303, 458, 83, 13, 21928, 5647, 7, 22915, 62, 34345, 8, 201, 198, 201, 198, 201, 198, 4299, 3143, 62, 34409, 62, 2617, 62, 7753, 7, 7890, 62, 15908, 2599, 201, 198, 220, 220, 220, 37227, 3143, 4512, 654, 316, 13, 14116, 290, 4938, 602, 316, 13, 14116, 3696, 37227, 201, 198, 201, 198, 220, 220, 220, 13404, 316, 62, 7753, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 27432, 654, 316, 13, 14116, 11537, 201, 198, 220, 220, 220, 1188, 271, 316, 62, 7753, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 12102, 602, 316, 13, 14116, 11537, 201, 198, 201, 198, 220, 220, 220, 351, 1280, 7, 2213, 1299, 316, 62, 7753, 11, 705, 86, 11537, 355, 277, 16, 11, 1280, 7, 2100, 271, 316, 62, 7753, 11, 705, 86, 11537, 355, 277, 17, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 3108, 11, 850, 15908, 82, 11, 3696, 287, 28686, 13, 11152, 7, 7890, 62, 15908, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2393, 287, 3696, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 7753, 38381, 15, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2393, 14512, 705, 27432, 654, 316, 6, 290, 2393, 14512, 705, 12102, 602, 316, 10354, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 493, 7, 7753, 13, 35312, 10786, 62, 11537, 58, 17, 12962, 19841, 807, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 16, 13, 13564, 7, 7753, 1343, 705, 59, 77, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 17, 13, 13564, 7, 7753, 1343, 705, 59, 77, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 277, 16, 13, 19836, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 277, 17, 13, 19836, 3419, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 3424, 796, 45941, 13, 2220, 14116, 10786, 7890, 14, 19849, 7934, 27354, 292, 316, 14, 958, 14382, 62, 15, 62, 2931, 62, 16, 13, 405, 68, 12, 2999, 13, 27773, 62, 5431, 89, 11537, 201, 198, 220, 220, 220, 40653, 16, 796, 45941, 13, 2220, 14116, 10786, 43420, 14, 958, 14382, 62, 15, 62, 2931, 62, 16, 13, 405, 68, 12, 2999, 62, 15, 13, 5431, 89, 11537, 201, 198, 220, 220, 220, 40653, 17, 796, 45941, 13, 2220, 14116, 10786, 43420, 14, 958, 14382, 62, 15, 62, 2931, 62, 16, 13, 405, 68, 12, 2999, 62, 16, 13, 5431, 89, 11537, 201, 198, 220, 220, 220, 11454, 16, 796, 45941, 13, 16345, 7, 37659, 13, 23415, 7, 14751, 16, 532, 3424, 828, 16488, 28, 16, 8, 201, 198, 220, 220, 220, 11454, 17, 796, 45941, 13, 16345, 7, 37659, 13, 23415, 7, 14751, 17, 532, 3424, 828, 16488, 28, 16, 8, 201, 198, 201, 198, 220, 220, 220, 38350, 62, 4122, 62, 17721, 7, 14751, 16, 11, 2336, 62, 22510, 28, 16, 8, 201, 198, 220, 220, 220, 38350, 62, 4122, 62, 17721, 7, 14751, 17, 11, 2336, 62, 22510, 28, 17, 8, 201, 198, 220, 220, 220, 38350, 62, 4122, 62, 17721, 7, 14751, 16, 11, 2336, 62, 22510, 28, 18, 11, 3124, 28, 8056, 16, 8, 201, 198, 220, 220, 220, 38350, 62, 4122, 62, 17721, 7, 14751, 17, 11, 2336, 62, 22510, 28, 19, 11, 3124, 28, 8056, 17, 8, 201, 198, 201, 198, 220, 220, 220, 458, 83, 13, 12860, 3419, 201, 198, 201, 198, 220, 220, 220, 1303, 8405, 11, 14722, 796, 3440, 62, 19608, 292, 316, 3419, 201, 198, 220, 220, 220, 1303, 287, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 1136, 66, 16993, 22784, 705, 7890, 14, 19849, 3262, 1821, 62, 2145, 62, 71, 7568, 20, 62, 1238, 2780, 11537, 201, 198, 220, 220, 220, 1303, 966, 3262, 62, 1462, 62, 27773, 4122, 7, 259, 62, 15908, 11, 8405, 11, 14722, 8, 201, 198, 220, 220, 220, 1303, 3143, 62, 34409, 62, 2617, 62, 7753, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 1136, 66, 16993, 22784, 705, 7890, 14, 19849, 7934, 27354, 292, 316, 6, 4008, 201, 198 ]
2.016906
2,721
''' File: canvas.py Description: Implements the custom GlyphyType canvas widget for drawing characters/glyphs. ''' from PyQt4.QtCore import * from PyQt4.QtGui import * from tools import brush, line
[ 7061, 6, 198, 8979, 25, 220, 220, 220, 220, 220, 220, 21978, 13, 9078, 198, 11828, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1846, 1154, 902, 262, 2183, 27949, 6883, 6030, 21978, 26295, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 8263, 3435, 14, 10853, 746, 82, 13, 220, 198, 7061, 6, 198, 198, 6738, 9485, 48, 83, 19, 13, 48, 83, 14055, 1330, 1635, 198, 6738, 9485, 48, 83, 19, 13, 48, 83, 8205, 72, 1330, 1635, 198, 198, 6738, 4899, 1330, 14093, 11, 1627 ]
2.357143
98
from django.contrib.postgres.fields import ArrayField from django.db import models __all__ = ( 'Doll', 'Status', )
[ 6738, 42625, 14208, 13, 3642, 822, 13, 7353, 34239, 13, 25747, 1330, 15690, 15878, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 198, 834, 439, 834, 796, 357, 198, 220, 220, 220, 705, 35, 692, 3256, 198, 220, 220, 220, 705, 19580, 3256, 198, 8, 628, 198 ]
2.625
48
#!/usr/bin/env python import argparse import os import re import json def version_increased(former_version, current_version): """Check that version in the package is greater than version_master and that only one int has increased of 1. Args: version_master (str): former version """ current_version_int = int("".join(current_version.split("."))) former_version_int = int("".join(former_version.split("."))) assert current_version_int > former_version_int, f"New version ({current_version}) should be greater than former version ({former_version})." version = [int(e) for e in current_version.split(".")] version_former = [int(e) for e in former_version.split(".")] diffs = [] for new, old in zip(version, version_former): diffs.append(max(0, new - old)) assert sum( diffs) == 1, f"Only one digit should be increased by one in version. Got {diffs}." print("Version increased validation passed!") if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 11748, 1822, 29572, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 33918, 628, 198, 198, 4299, 2196, 62, 24988, 839, 7, 16354, 62, 9641, 11, 1459, 62, 9641, 2599, 198, 220, 220, 220, 37227, 9787, 326, 2196, 287, 262, 5301, 318, 3744, 621, 2196, 62, 9866, 198, 220, 220, 220, 290, 326, 691, 530, 493, 468, 3220, 286, 352, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 62, 9866, 357, 2536, 2599, 1966, 2196, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1459, 62, 9641, 62, 600, 796, 493, 7203, 1911, 22179, 7, 14421, 62, 9641, 13, 35312, 7203, 526, 22305, 198, 220, 220, 220, 1966, 62, 9641, 62, 600, 796, 493, 7203, 1911, 22179, 7, 16354, 62, 9641, 13, 35312, 7203, 526, 22305, 628, 220, 220, 220, 6818, 1459, 62, 9641, 62, 600, 1875, 1966, 62, 9641, 62, 600, 11, 220, 277, 1, 3791, 2196, 37913, 14421, 62, 9641, 30072, 815, 307, 3744, 621, 1966, 2196, 37913, 16354, 62, 9641, 92, 21387, 628, 220, 220, 220, 2196, 796, 685, 600, 7, 68, 8, 329, 304, 287, 1459, 62, 9641, 13, 35312, 7203, 526, 15437, 198, 220, 220, 220, 2196, 62, 16354, 796, 685, 600, 7, 68, 8, 329, 304, 287, 1966, 62, 9641, 13, 35312, 7203, 526, 15437, 628, 220, 220, 220, 814, 82, 796, 17635, 198, 220, 220, 220, 329, 649, 11, 1468, 287, 19974, 7, 9641, 11, 2196, 62, 16354, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 814, 82, 13, 33295, 7, 9806, 7, 15, 11, 649, 532, 1468, 4008, 628, 220, 220, 220, 6818, 2160, 7, 198, 220, 220, 220, 220, 220, 220, 220, 814, 82, 8, 6624, 352, 11, 277, 1, 10049, 530, 16839, 815, 307, 3220, 416, 530, 287, 2196, 13, 11853, 1391, 67, 10203, 92, 526, 628, 220, 220, 220, 3601, 7203, 14815, 3220, 21201, 3804, 2474, 8, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.951009
347
import json import os from os import path
[ 11748, 33918, 198, 11748, 28686, 198, 6738, 28686, 1330, 3108 ]
4.1
10
# -*- encoding: utf-8 -*- """ License: MIT Copyright (c) 2019 - present AppSeed.us """ from django.contrib import admin from django.urls import path, include # add this from testing import views urlpatterns = [ path('', views.index, name='tester'), path('/take', views.tester, name='tester1'), # add this ]
[ 2, 532, 9, 12, 21004, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 34156, 25, 17168, 198, 15269, 357, 66, 8, 13130, 532, 1944, 2034, 50, 2308, 13, 385, 198, 37811, 198, 198, 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 11, 2291, 220, 1303, 751, 428, 198, 6738, 4856, 1330, 5009, 198, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 3108, 10786, 3256, 5009, 13, 9630, 11, 1438, 11639, 4879, 353, 33809, 198, 220, 220, 220, 3108, 10786, 14, 20657, 3256, 5009, 13, 4879, 353, 11, 1438, 11639, 4879, 353, 16, 33809, 198, 220, 220, 220, 220, 220, 1303, 751, 428, 198, 60, 198 ]
2.722689
119
# from django.shortcuts import render from django.http import HttpResponse
[ 2, 422, 42625, 14208, 13, 19509, 23779, 1330, 8543, 198, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 628 ]
3.666667
21
from typing import Iterable, Union, List from pathlib import Path import json import torch import torch.distributed as dist from torch.utils.data import TensorDataset class PretrainInputExample: """A single example for unsupervised pre-training. """ class ClsInputExample: """A single example for supervised fine-tuning (classification). """ class PretrainInputFeatures: """A single set of features of pre-training data. """ class ClsInputFeatures: """A single set of features of fine-tuning data (classification). """
[ 6738, 19720, 1330, 40806, 540, 11, 4479, 11, 7343, 198, 6738, 3108, 8019, 1330, 10644, 198, 11748, 33918, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 17080, 6169, 355, 1233, 198, 6738, 28034, 13, 26791, 13, 7890, 1330, 309, 22854, 27354, 292, 316, 198, 198, 4871, 37123, 3201, 20560, 16281, 25, 198, 220, 220, 220, 37227, 32, 2060, 1672, 329, 555, 16668, 16149, 662, 12, 34409, 13, 198, 220, 220, 220, 37227, 198, 198, 4871, 1012, 82, 20560, 16281, 25, 198, 220, 220, 220, 37227, 32, 2060, 1672, 329, 28679, 3734, 12, 28286, 278, 357, 4871, 2649, 737, 198, 220, 220, 220, 37227, 198, 198, 4871, 37123, 3201, 20560, 23595, 25, 198, 220, 220, 220, 37227, 32, 2060, 900, 286, 3033, 286, 662, 12, 34409, 1366, 13, 198, 220, 220, 220, 37227, 198, 198, 4871, 1012, 82, 20560, 23595, 25, 198, 220, 220, 220, 37227, 32, 2060, 900, 286, 3033, 286, 3734, 12, 28286, 278, 1366, 357, 4871, 2649, 737, 198, 220, 220, 220, 37227 ]
3.363636
165
# Copyright 2016 Mirantis, 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 fixtures import mock from oslo_config import fixture as config_fixture import six from networking_generic_switch import config fake_config = """ [genericswitch:foo] device_type = foo_device spam = eggs [genericswitch:bar] device_type = bar_device ham = vikings """
[ 2, 15069, 1584, 7381, 20836, 11, 3457, 13, 198, 2, 198, 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 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, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 198, 198, 11748, 34609, 198, 11748, 15290, 198, 6738, 28686, 5439, 62, 11250, 1330, 29220, 355, 4566, 62, 69, 9602, 198, 11748, 2237, 198, 198, 6738, 19140, 62, 41357, 62, 31943, 1330, 4566, 628, 198, 30706, 62, 11250, 796, 37227, 198, 58, 8612, 873, 42248, 25, 21943, 60, 198, 25202, 62, 4906, 796, 22944, 62, 25202, 198, 2777, 321, 796, 9653, 198, 198, 58, 8612, 873, 42248, 25, 5657, 60, 198, 25202, 62, 4906, 796, 2318, 62, 25202, 198, 2763, 796, 410, 1134, 654, 198, 37811, 628 ]
3.335849
265
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
# Copyright (c) 2015-2020 by Rocky Bernstein # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. import marshal, py_compile, sys, tempfile, time from struct import unpack, pack import os.path as osp import xdis.unmarshal from xdis.version_info import PYTHON3, PYTHON_VERSION from xdis.magics import ( IS_PYPY3, PYTHON_MAGIC_INT, int2magic, magic_int2float, magic2int, magicint2version, versions, ) from xdis.dropbox.decrypt25 import fix_dropbox_pyc def load_file(filename, out=sys.stdout): """ load a Python source file and compile it to byte-code _load_file(filename: string): code_object filename: name of file containing Python source code (normally a .py) code_object: code_object compiled from this source code This function does NOT write any file! """ fp = open(filename, "rb") try: source = fp.read() try: if PYTHON_VERSION < 2.6: co = compile(source, filename, "exec") else: co = compile(source, filename, "exec", dont_inherit=True) except SyntaxError: out.write(">>Syntax error in %s\n" % filename) raise finally: fp.close() return co def load_module(filename, code_objects=None, fast_load=False, get_code=True): """load a module without importing it. Parameters: filename: name of file containing Python byte-code object (normally a .pyc) code_objects: list of additional code_object from this file. This might be a types.CodeType or one of the portable xdis code types, e.g. Code38, Code3, Code2, etc. This can be empty get_code: bool. Parsing the code object takes a bit of parsing time, but sometimes all you want is the module info, time string, code size, python version, etc. For that, set `get_code` to `False`. Return values are as follows: float_version: float; the floating-point version number for the given magic_int, e.g. 2.7 or 3.4 timestamp: int; the seconds since EPOCH of the time of the bytecode creation, or None if no timestamp was stored magic_int: int, a more specific than version number. The actual byte code version of the code object co : code object ispypy : True if this was a PyPy code object source_size: The size of the source code mod 2**32, if that was stored in the bytecode. None otherwise. sip_hash : the SIP Hash for the file (only in Python 3.7 or greater), if the file was created with a SIP hash or None otherwise. Note that if the sip_hash is not none, then the timestamp and source_size will be invalid. """ # Some sanity checks if not osp.exists(filename): raise ImportError("File name: '%s' doesn't exist" % filename) elif not osp.isfile(filename): raise ImportError("File name: '%s' isn't a file" % filename) elif osp.getsize(filename) < 50: raise ImportError( "File name: '%s (%d bytes)' is too short to be a valid pyc file" % (filename, osp.getsize(filename)) ) with open(filename, "rb") as fp: return load_module_from_file_object( fp, filename=filename, code_objects=code_objects, fast_load=fast_load, get_code=get_code, ) def load_module_from_file_object( fp, filename="<unknown>", code_objects=None, fast_load=False, get_code=True ): """load a module from a file object without importing it. See :func:load_module for a list of return values. """ if code_objects is None: code_objects = {} timestamp = 0 try: magic = fp.read(4) magic_int = magic2int(magic) # For reasons I don't understand, PyPy 3.2 stores a magic # of '0'... The two values below are for Python 2.x and 3.x respectively if magic[0:1] in ["0", b"0"]: magic = int2magic(3180 + 7) try: # FIXME: use the internal routine below float_version = magic_int2float(magic_int) except KeyError: if magic_int in (2657, 22138): raise ImportError("This smells like Pyston which is not supported.") if len(magic) >= 2: raise ImportError( "Unknown magic number %s in %s" % (ord(magic[0:1]) + 256 * ord(magic[1:2]), filename) ) else: raise ImportError("Bad magic number: '%s'" % magic) if magic_int in ( 3010, 3020, 3030, 3040, 3050, 3060, 3061, 3071, 3361, 3091, 3101, 3103, 3141, 3270, 3280, 3290, 3300, 3320, 3330, 3371, 62071, 62071, 62081, 62091, 62092, 62111, ): raise ImportError( "%s is interim Python %s (%d) bytecode which is " "not supported.\nFinal released versions are " "supported." % (filename, versions[magic], magic2int(magic)) ) elif magic_int == 62135: fp.seek(0) return fix_dropbox_pyc(fp) elif magic_int == 62215: raise ImportError( "%s is a dropbox-hacked Python %s (bytecode %d).\n" "See https://github.com/kholia/dedrop for how to " "decrypt." % (filename, versions[magic], magic2int(magic)) ) try: # print version my_magic_int = PYTHON_MAGIC_INT magic_int = magic2int(magic) version = magic_int2float(magic_int) timestamp = None source_size = None sip_hash = None ts = fp.read(4) if version >= 3.7: # PEP 552. https://www.python.org/dev/peps/pep-0552/ pep_bits = ts[-1] if PYTHON_VERSION <= 2.7: pep_bits = ord(pep_bits) if (pep_bits & 1) or magic_int == 3393: # 3393 is 3.7.0beta3 # SipHash sip_hash = unpack("<Q", fp.read(8))[0] else: # Uses older-style timestamp and size timestamp = unpack("<I", fp.read(4))[0] # pep552_bits source_size = unpack("<I", fp.read(4))[0] # size mod 2**32 pass else: timestamp = unpack("<I", ts)[0] # Note: a higher magic number doesn't necessarily mean a later # release. At Python 3.0 the magic number decreased # significantly. Hence the range below. Also note inclusion of # the size info, occurred within a Python major/minor # release. Hence the test on the magic value rather than # PYTHON_VERSION, although PYTHON_VERSION would probably work. if ( (3200 <= magic_int < 20121) and version >= 1.5 or magic_int in IS_PYPY3 ): source_size = unpack("<I", fp.read(4))[0] # size mod 2**32 if get_code: if my_magic_int == magic_int: bytecode = fp.read() co = marshal.loads(bytecode) elif fast_load: co = xdis.marsh.load(fp, magicint2version[magic_int]) else: co = xdis.unmarshal.load_code(fp, magic_int, code_objects) pass else: co = None except: kind, msg = sys.exc_info()[0:2] import traceback traceback.print_exc() raise ImportError( "Ill-formed bytecode file %s\n%s; %s" % (filename, kind, msg) ) finally: fp.close() return ( float_version, timestamp, magic_int, co, is_pypy(magic_int), source_size, sip_hash, ) def write_bytecode_file(bytecode_path, code, magic_int, filesize=0): """Write bytecode file _bytecode_path_, with code for having Python magic_int (i.e. bytecode associated with some version of Python) """ fp = open(bytecode_path, "wb") try: if PYTHON3: fp.write(pack("<Hcc", magic_int, b"\r", b"\n")) else: fp.write(pack("<Hcc", magic_int, "\r", "\n")) fp.write(pack("<I", int(time.time()))) if 3000 <= magic_int < 20121: # In Python 3 you need to write out the size mod 2**32 here fp.write(pack("<I", filesize)) fp.write(marshal.dumps(code)) finally: fp.close() if __name__ == "__main__": co = load_file(__file__) obj_path = check_object_path(__file__) version, timestamp, magic_int, co2, pypy, source_size, sip_hash = load_module( obj_path ) print("version", version, "magic int", magic_int, "is_pypy", pypy) if timestamp is not None: import datetime print(datetime.datetime.fromtimestamp(timestamp)) if source_size is not None: print("source size mod 2**32: %d" % source_size) if sip_hash is not None: print("Sip Hash: 0x%x" % sip_hash) assert co == co2
[ 2, 15069, 357, 66, 8, 1853, 12, 42334, 416, 24534, 37584, 198, 2, 220, 770, 1430, 318, 1479, 3788, 26, 345, 460, 17678, 4163, 340, 290, 14, 273, 198, 2, 220, 13096, 340, 739, 262, 2846, 286, 262, 22961, 3611, 5094, 13789, 198, 2, 220, 355, 3199, 416, 262, 3232, 10442, 5693, 26, 2035, 2196, 362, 198, 2, 220, 286, 262, 13789, 11, 393, 357, 265, 534, 3038, 8, 597, 1568, 2196, 13, 198, 2, 198, 2, 220, 770, 1430, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 198, 2, 220, 475, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 198, 2, 220, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 262, 198, 2, 220, 22961, 3611, 5094, 13789, 329, 517, 3307, 13, 198, 2, 198, 2, 220, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 3611, 5094, 13789, 198, 2, 220, 1863, 351, 428, 1430, 26, 611, 407, 11, 3551, 284, 262, 3232, 10442, 198, 2, 220, 5693, 11, 3457, 1539, 6885, 14021, 3530, 11, 19383, 22343, 11, 6182, 11, 8779, 220, 657, 2481, 940, 12, 1485, 486, 11, 4916, 13, 198, 198, 11748, 22397, 282, 11, 12972, 62, 5589, 576, 11, 25064, 11, 20218, 7753, 11, 640, 198, 6738, 2878, 1330, 555, 8002, 11, 2353, 198, 11748, 28686, 13, 6978, 355, 267, 2777, 198, 198, 11748, 2124, 6381, 13, 403, 76, 5406, 282, 198, 6738, 2124, 6381, 13, 9641, 62, 10951, 1330, 350, 56, 4221, 1340, 18, 11, 350, 56, 4221, 1340, 62, 43717, 198, 6738, 2124, 6381, 13, 19726, 873, 1330, 357, 198, 220, 220, 220, 3180, 62, 47, 48232, 56, 18, 11, 198, 220, 220, 220, 350, 56, 4221, 1340, 62, 45820, 2149, 62, 12394, 11, 198, 220, 220, 220, 493, 17, 32707, 11, 198, 220, 220, 220, 5536, 62, 600, 17, 22468, 11, 198, 220, 220, 220, 5536, 17, 600, 11, 198, 220, 220, 220, 5536, 600, 17, 9641, 11, 198, 220, 220, 220, 6300, 11, 198, 8, 198, 6738, 2124, 6381, 13, 14781, 3524, 13, 12501, 6012, 1495, 1330, 4259, 62, 14781, 3524, 62, 9078, 66, 628, 628, 198, 4299, 3440, 62, 7753, 7, 34345, 11, 503, 28, 17597, 13, 19282, 448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3440, 257, 11361, 2723, 2393, 290, 17632, 340, 284, 18022, 12, 8189, 198, 220, 220, 220, 4808, 2220, 62, 7753, 7, 34345, 25, 4731, 2599, 2438, 62, 15252, 198, 220, 220, 220, 29472, 25, 197, 3672, 286, 2393, 7268, 11361, 2723, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27237, 453, 257, 764, 9078, 8, 198, 220, 220, 220, 2438, 62, 15252, 25, 2438, 62, 15252, 14102, 422, 428, 2723, 2438, 198, 220, 220, 220, 770, 2163, 857, 5626, 3551, 597, 2393, 0, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 277, 79, 796, 1280, 7, 34345, 11, 366, 26145, 4943, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 796, 277, 79, 13, 961, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 350, 56, 4221, 1340, 62, 43717, 1279, 362, 13, 21, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 763, 796, 17632, 7, 10459, 11, 29472, 11, 366, 18558, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 763, 796, 17632, 7, 10459, 11, 29472, 11, 366, 18558, 1600, 17666, 62, 259, 372, 270, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 26375, 897, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 13, 13564, 7203, 4211, 13940, 41641, 4049, 287, 4064, 82, 59, 77, 1, 4064, 29472, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 19836, 3419, 198, 220, 220, 220, 1441, 763, 628, 198, 4299, 3440, 62, 21412, 7, 34345, 11, 2438, 62, 48205, 28, 14202, 11, 3049, 62, 2220, 28, 25101, 11, 651, 62, 8189, 28, 17821, 2599, 198, 220, 220, 220, 37227, 2220, 257, 8265, 1231, 33332, 340, 13, 198, 220, 220, 220, 40117, 25, 198, 220, 220, 220, 220, 220, 220, 29472, 25, 220, 220, 220, 1438, 286, 2393, 7268, 11361, 18022, 12, 8189, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27237, 453, 257, 764, 9078, 66, 8, 628, 220, 220, 220, 220, 220, 220, 2438, 62, 48205, 25, 1351, 286, 3224, 2438, 62, 15252, 422, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 13, 770, 1244, 307, 257, 3858, 13, 10669, 6030, 393, 530, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 17726, 2124, 6381, 2438, 3858, 11, 304, 13, 70, 13, 6127, 2548, 11, 6127, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6127, 17, 11, 3503, 13, 770, 460, 307, 6565, 628, 220, 220, 220, 220, 220, 220, 651, 62, 8189, 25, 220, 220, 220, 220, 20512, 13, 23042, 278, 262, 2438, 2134, 2753, 257, 1643, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32096, 640, 11, 475, 3360, 477, 345, 765, 318, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8265, 7508, 11, 640, 4731, 11, 2438, 2546, 11, 21015, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11, 3503, 13, 1114, 326, 11, 900, 4600, 1136, 62, 8189, 63, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4600, 25101, 44646, 628, 220, 220, 220, 8229, 3815, 389, 355, 5679, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 62, 9641, 25, 12178, 26, 262, 12462, 12, 4122, 2196, 1271, 329, 262, 1813, 5536, 62, 600, 11, 198, 220, 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, 362, 13, 22, 393, 513, 13, 19, 198, 220, 220, 220, 220, 220, 220, 220, 41033, 25, 493, 26, 262, 4201, 1201, 14724, 46, 3398, 286, 262, 640, 286, 262, 18022, 8189, 6282, 11, 393, 6045, 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, 645, 41033, 373, 8574, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 600, 25, 493, 11, 257, 517, 2176, 621, 2196, 1271, 13, 383, 4036, 18022, 2438, 2196, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 763, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 2438, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 318, 79, 4464, 88, 220, 220, 220, 220, 1058, 6407, 611, 428, 373, 257, 9485, 20519, 2438, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 7857, 25, 383, 2546, 286, 262, 2723, 2438, 953, 362, 1174, 2624, 11, 611, 326, 373, 8574, 287, 262, 18022, 8189, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6045, 4306, 13, 198, 220, 220, 220, 220, 220, 220, 220, 31145, 62, 17831, 220, 220, 1058, 262, 311, 4061, 21059, 329, 262, 2393, 357, 8807, 287, 11361, 513, 13, 22, 393, 3744, 828, 611, 262, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 373, 2727, 351, 257, 311, 4061, 12234, 393, 6045, 4306, 13, 5740, 326, 611, 262, 31145, 62, 17831, 318, 407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4844, 11, 788, 262, 41033, 290, 2723, 62, 7857, 481, 307, 12515, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 2773, 34182, 8794, 198, 220, 220, 220, 611, 407, 267, 2777, 13, 1069, 1023, 7, 34345, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7203, 8979, 1438, 25, 705, 4, 82, 6, 1595, 470, 2152, 1, 4064, 29472, 8, 198, 220, 220, 220, 1288, 361, 407, 267, 2777, 13, 4468, 576, 7, 34345, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7203, 8979, 1438, 25, 705, 4, 82, 6, 2125, 470, 257, 2393, 1, 4064, 29472, 8, 198, 220, 220, 220, 1288, 361, 267, 2777, 13, 11407, 1096, 7, 34345, 8, 1279, 2026, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8979, 1438, 25, 705, 4, 82, 37633, 67, 9881, 33047, 318, 1165, 1790, 284, 307, 257, 4938, 12972, 66, 2393, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 34345, 11, 267, 2777, 13, 11407, 1096, 7, 34345, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 351, 1280, 7, 34345, 11, 366, 26145, 4943, 355, 277, 79, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 3440, 62, 21412, 62, 6738, 62, 7753, 62, 15252, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 79, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29472, 28, 34345, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 48205, 28, 8189, 62, 48205, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3049, 62, 2220, 28, 7217, 62, 2220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 651, 62, 8189, 28, 1136, 62, 8189, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 198, 4299, 3440, 62, 21412, 62, 6738, 62, 7753, 62, 15252, 7, 198, 220, 220, 220, 277, 79, 11, 29472, 2625, 27, 34680, 29, 1600, 2438, 62, 48205, 28, 14202, 11, 3049, 62, 2220, 28, 25101, 11, 651, 62, 8189, 28, 17821, 198, 2599, 198, 220, 220, 220, 37227, 2220, 257, 8265, 422, 257, 2393, 2134, 1231, 33332, 340, 13, 628, 220, 220, 220, 4091, 1058, 20786, 25, 2220, 62, 21412, 329, 257, 1351, 286, 1441, 3815, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 2438, 62, 48205, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 48205, 796, 23884, 628, 220, 220, 220, 41033, 796, 657, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 796, 277, 79, 13, 961, 7, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 600, 796, 5536, 17, 600, 7, 32707, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1114, 3840, 314, 836, 470, 1833, 11, 9485, 20519, 513, 13, 17, 7000, 257, 5536, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 286, 705, 15, 6, 986, 220, 383, 734, 3815, 2174, 389, 329, 11361, 362, 13, 87, 290, 513, 13, 87, 8148, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5536, 58, 15, 25, 16, 60, 287, 14631, 15, 1600, 275, 1, 15, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 796, 493, 17, 32707, 7, 18, 15259, 1343, 767, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 44855, 11682, 25, 779, 262, 5387, 8027, 2174, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12178, 62, 9641, 796, 5536, 62, 600, 17, 22468, 7, 32707, 62, 600, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5536, 62, 600, 287, 357, 2075, 3553, 11, 2534, 20107, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7203, 1212, 25760, 588, 9485, 3743, 543, 318, 407, 4855, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 32707, 8, 18189, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20035, 5536, 1271, 4064, 82, 287, 4064, 82, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 585, 7, 32707, 58, 15, 25, 16, 12962, 1343, 17759, 1635, 2760, 7, 32707, 58, 16, 25, 17, 46570, 29472, 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, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7203, 22069, 5536, 1271, 25, 705, 4, 82, 29653, 4064, 5536, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5536, 62, 600, 287, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 20943, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 1238, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 1270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 1821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 1120, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 1899, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 5333, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 4869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 35195, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1542, 6420, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3261, 486, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 15197, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 23756, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 20233, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3933, 1795, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 24369, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4747, 405, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4747, 1238, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4747, 1270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 38056, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45469, 4869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45469, 4869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45469, 6659, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45469, 6420, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45469, 5892, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8190, 16243, 11, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36521, 82, 318, 19303, 11361, 4064, 82, 37633, 67, 8, 18022, 8189, 543, 318, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1662, 4855, 13, 59, 77, 19006, 2716, 6300, 389, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15999, 526, 4064, 357, 34345, 11, 6300, 58, 32707, 4357, 5536, 17, 600, 7, 32707, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 5536, 62, 600, 6624, 8190, 17059, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 36163, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4259, 62, 14781, 3524, 62, 9078, 66, 7, 46428, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 5536, 62, 600, 6624, 718, 1828, 1314, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36521, 82, 318, 257, 4268, 3524, 12, 71, 6021, 11361, 4064, 82, 357, 26327, 8189, 4064, 67, 737, 59, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6214, 3740, 1378, 12567, 13, 785, 14, 74, 3937, 544, 14, 9395, 1773, 329, 703, 284, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12501, 6012, 526, 4064, 357, 34345, 11, 6300, 58, 32707, 4357, 5536, 17, 600, 7, 32707, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 616, 62, 32707, 62, 600, 796, 350, 56, 4221, 1340, 62, 45820, 2149, 62, 12394, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 600, 796, 5536, 17, 600, 7, 32707, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 796, 5536, 62, 600, 17, 22468, 7, 32707, 62, 600, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41033, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 7857, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31145, 62, 17831, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40379, 796, 277, 79, 13, 961, 7, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2196, 18189, 513, 13, 22, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 350, 8905, 642, 4309, 13, 3740, 1378, 2503, 13, 29412, 13, 2398, 14, 7959, 14, 431, 862, 14, 431, 79, 12, 2713, 4309, 14, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 538, 62, 9895, 796, 40379, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 350, 56, 4221, 1340, 62, 43717, 19841, 362, 13, 22, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 538, 62, 9895, 796, 2760, 7, 431, 79, 62, 9895, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 431, 79, 62, 9895, 1222, 352, 8, 393, 5536, 62, 600, 6624, 513, 26007, 25, 220, 1303, 513, 26007, 318, 513, 13, 22, 13, 15, 31361, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 311, 541, 26257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31145, 62, 17831, 796, 555, 8002, 7203, 27, 48, 1600, 277, 79, 13, 961, 7, 23, 4008, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 36965, 4697, 12, 7635, 41033, 290, 2546, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41033, 796, 555, 8002, 7203, 27, 40, 1600, 277, 79, 13, 961, 7, 19, 4008, 58, 15, 60, 220, 1303, 279, 538, 40427, 62, 9895, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 7857, 796, 555, 8002, 7203, 27, 40, 1600, 277, 79, 13, 961, 7, 19, 4008, 58, 15, 60, 220, 1303, 2546, 953, 362, 1174, 2624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 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, 41033, 796, 555, 8002, 7203, 27, 40, 1600, 40379, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5740, 25, 257, 2440, 5536, 1271, 1595, 470, 6646, 1612, 257, 1568, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2650, 13, 220, 1629, 11361, 513, 13, 15, 262, 5536, 1271, 11832, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5566, 13, 16227, 262, 2837, 2174, 13, 4418, 3465, 14900, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 2546, 7508, 11, 5091, 1626, 257, 11361, 1688, 14, 1084, 273, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2650, 13, 16227, 262, 1332, 319, 262, 5536, 1988, 2138, 621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 350, 56, 4221, 1340, 62, 43717, 11, 3584, 350, 56, 4221, 1340, 62, 43717, 561, 2192, 670, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18, 2167, 19841, 5536, 62, 600, 1279, 2321, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 2196, 18189, 352, 13, 20, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 5536, 62, 600, 287, 3180, 62, 47, 48232, 56, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 7857, 796, 555, 8002, 7203, 27, 40, 1600, 277, 79, 13, 961, 7, 19, 4008, 58, 15, 60, 220, 1303, 2546, 953, 362, 1174, 2624, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 8189, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 616, 62, 32707, 62, 600, 6624, 5536, 62, 600, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18022, 8189, 796, 277, 79, 13, 961, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 763, 796, 22397, 282, 13, 46030, 7, 26327, 8189, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 3049, 62, 2220, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 763, 796, 2124, 6381, 13, 76, 5406, 13, 2220, 7, 46428, 11, 5536, 600, 17, 9641, 58, 32707, 62, 600, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 763, 796, 2124, 6381, 13, 403, 76, 5406, 282, 13, 2220, 62, 8189, 7, 46428, 11, 5536, 62, 600, 11, 2438, 62, 48205, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 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, 763, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 11, 31456, 796, 25064, 13, 41194, 62, 10951, 3419, 58, 15, 25, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1330, 12854, 1891, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12854, 1891, 13, 4798, 62, 41194, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 17267, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21478, 12, 12214, 18022, 8189, 2393, 4064, 82, 59, 77, 4, 82, 26, 4064, 82, 1, 4064, 357, 34345, 11, 1611, 11, 31456, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 19836, 3419, 628, 220, 220, 220, 1441, 357, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 62, 9641, 11, 198, 220, 220, 220, 220, 220, 220, 220, 41033, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 763, 11, 198, 220, 220, 220, 220, 220, 220, 220, 318, 62, 79, 4464, 88, 7, 32707, 62, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 7857, 11, 198, 220, 220, 220, 220, 220, 220, 220, 31145, 62, 17831, 11, 198, 220, 220, 220, 1267, 628, 198, 4299, 3551, 62, 26327, 8189, 62, 7753, 7, 26327, 8189, 62, 6978, 11, 2438, 11, 5536, 62, 600, 11, 3696, 1096, 28, 15, 2599, 198, 220, 220, 220, 37227, 16594, 18022, 8189, 2393, 4808, 26327, 8189, 62, 6978, 62, 11, 351, 2438, 329, 1719, 11361, 198, 220, 220, 220, 5536, 62, 600, 357, 72, 13, 68, 13, 18022, 8189, 3917, 351, 617, 2196, 286, 11361, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 277, 79, 796, 1280, 7, 26327, 8189, 62, 6978, 11, 366, 39346, 4943, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 350, 56, 4221, 1340, 18, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 13564, 7, 8002, 7203, 27, 39, 535, 1600, 5536, 62, 600, 11, 275, 1, 59, 81, 1600, 275, 1, 59, 77, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 13564, 7, 8002, 7203, 27, 39, 535, 1600, 5536, 62, 600, 11, 37082, 81, 1600, 37082, 77, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 13564, 7, 8002, 7203, 27, 40, 1600, 493, 7, 2435, 13, 2435, 3419, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 611, 20343, 19841, 5536, 62, 600, 1279, 2321, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 554, 11361, 513, 345, 761, 284, 3551, 503, 262, 2546, 953, 362, 1174, 2624, 994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 13564, 7, 8002, 7203, 27, 40, 1600, 3696, 1096, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 13564, 7, 76, 5406, 282, 13, 67, 8142, 7, 8189, 4008, 198, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 79, 13, 19836, 3419, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 763, 796, 3440, 62, 7753, 7, 834, 7753, 834, 8, 198, 220, 220, 220, 26181, 62, 6978, 796, 2198, 62, 15252, 62, 6978, 7, 834, 7753, 834, 8, 198, 220, 220, 220, 2196, 11, 41033, 11, 5536, 62, 600, 11, 763, 17, 11, 279, 4464, 88, 11, 2723, 62, 7857, 11, 31145, 62, 17831, 796, 3440, 62, 21412, 7, 198, 220, 220, 220, 220, 220, 220, 220, 26181, 62, 6978, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 3601, 7203, 9641, 1600, 2196, 11, 366, 32707, 493, 1600, 5536, 62, 600, 11, 366, 271, 62, 79, 4464, 88, 1600, 279, 4464, 88, 8, 198, 220, 220, 220, 611, 41033, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 4818, 8079, 628, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 19608, 8079, 13, 19608, 8079, 13, 6738, 16514, 27823, 7, 16514, 27823, 4008, 198, 220, 220, 220, 611, 2723, 62, 7857, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 10459, 2546, 953, 362, 1174, 2624, 25, 4064, 67, 1, 4064, 2723, 62, 7857, 8, 198, 220, 220, 220, 611, 31145, 62, 17831, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 50, 541, 21059, 25, 657, 87, 4, 87, 1, 4064, 31145, 62, 17831, 8, 198, 220, 220, 220, 6818, 763, 6624, 763, 17, 198 ]
2.033301
5,165
# Generated by Django 3.2.6 on 2021-08-26 14:49 from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 513, 13, 17, 13, 21, 319, 33448, 12, 2919, 12, 2075, 1478, 25, 2920, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
2.84375
32
from gensim.models import word2vec import argparse if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('-word', required=True,help="word file") parser.add_argument('-iter', default=3) parser.add_argument('-sg', default=0) parser.add_argument('-hs', default=1) parser.add_argument('-window', default=3) parser.add_argument('-size', default=100) opt = parser.parse_args() print(opt) tomodel(opt.word,opt.iter,opt.sg,opt.hs,opt.window,opt.size) print("end..................")
[ 198, 6738, 308, 641, 320, 13, 27530, 1330, 1573, 17, 35138, 628, 198, 198, 11748, 1822, 29572, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 628, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 4775, 3256, 2672, 28, 17821, 11, 16794, 2625, 4775, 2393, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 2676, 3256, 4277, 28, 18, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 45213, 3256, 4277, 28, 15, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 11994, 3256, 4277, 28, 16, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 17497, 3256, 4277, 28, 18, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 10786, 12, 7857, 3256, 4277, 28, 3064, 8, 198, 220, 220, 220, 2172, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 220, 220, 220, 3601, 7, 8738, 8, 198, 220, 220, 220, 284, 19849, 7, 8738, 13, 4775, 11, 8738, 13, 2676, 11, 8738, 13, 45213, 11, 8738, 13, 11994, 11, 8738, 13, 17497, 11, 8738, 13, 7857, 8, 198, 220, 220, 220, 3601, 7203, 437, 49129, 4943, 628 ]
2.645933
209
import json from azure.core.exceptions import ClientAuthenticationError from cloudshell.shell.core.resource_driver_interface import ResourceDriverInterface from cloudshell.shell.core.driver_context import AutoLoadDetails from cloudshell.shell.core.session.cloudshell_session import CloudShellSessionContext from cloudshell.shell.core.session.logging_session import LoggingSessionContext from constants import AZURE2G_MODEL, AZURE_MODELS from data_model import AzureTfBackend from azure.storage.blob import BlobServiceClient from msrestazure.azure_active_directory import ServicePrincipalCredentials from azure.mgmt.storage import StorageManagementClient
[ 11748, 33918, 198, 198, 6738, 35560, 495, 13, 7295, 13, 1069, 11755, 1330, 20985, 47649, 3299, 12331, 198, 6738, 6279, 29149, 13, 29149, 13, 7295, 13, 31092, 62, 26230, 62, 39994, 1330, 20857, 32103, 39317, 198, 6738, 6279, 29149, 13, 29149, 13, 7295, 13, 26230, 62, 22866, 1330, 11160, 8912, 24259, 198, 6738, 6279, 29149, 13, 29149, 13, 7295, 13, 29891, 13, 17721, 29149, 62, 29891, 1330, 10130, 23248, 36044, 21947, 198, 6738, 6279, 29149, 13, 29149, 13, 7295, 13, 29891, 13, 6404, 2667, 62, 29891, 1330, 5972, 2667, 36044, 21947, 198, 198, 6738, 38491, 1330, 26253, 11335, 17, 38, 62, 33365, 3698, 11, 26253, 11335, 62, 33365, 37142, 198, 6738, 1366, 62, 19849, 1330, 22134, 51, 69, 7282, 437, 198, 198, 6738, 35560, 495, 13, 35350, 13, 2436, 672, 1330, 1086, 672, 16177, 11792, 198, 198, 6738, 13845, 2118, 1031, 495, 13, 1031, 495, 62, 5275, 62, 34945, 1330, 4809, 42904, 8521, 34, 445, 14817, 198, 6738, 35560, 495, 13, 11296, 16762, 13, 35350, 1330, 20514, 48032, 11792, 628 ]
3.876471
170
from unittest import TestCase import numpy as np import unittest import placentagen import os if __name__ == '__main__': unittest.main()
[ 6738, 555, 715, 395, 1330, 6208, 20448, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 555, 715, 395, 198, 11748, 458, 12643, 11286, 198, 11748, 28686, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.88
50
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' ##This is used to suppress the warnings given by tensorflow import tensorflow as tf #Comment the above lines if there's an error and the code isn't working as expected from deepface import DeepFace import pandas as pd # Add photos to the photos folder in order to analyse them or do facial recognition on them ############################### Face recognition # This function looks at a photo (Argument 1) and sees if the person is in another photo in a database (Argument 2) ############################### Face analysis # This function analyzes the face in the picture(Argument) and gives out the estimated age, gender, race and emotion ############################### Face verification # This function returns whether or not two pictures(Both arguments) contain the same person ############################### Real time face analysis # This function will give a real time analysis (Age, gender, emotion) of your face by opening the # webcamera and compares it to pictures in the database specified in the argument # Note: My webcamera is not working properly so I am not sure if this works as intended or not. if __name__ == "__main__": main()
[ 11748, 28686, 198, 418, 13, 268, 2268, 17816, 10234, 62, 8697, 47, 62, 23678, 62, 25294, 62, 2538, 18697, 20520, 796, 705, 18, 6, 22492, 1212, 318, 973, 284, 18175, 262, 14601, 1813, 416, 11192, 273, 11125, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 2, 21357, 262, 2029, 3951, 611, 612, 338, 281, 4049, 290, 262, 2438, 2125, 470, 1762, 355, 2938, 198, 198, 6738, 2769, 2550, 1330, 10766, 32388, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 2, 3060, 5205, 284, 262, 5205, 9483, 287, 1502, 284, 39552, 606, 393, 466, 16324, 9465, 319, 606, 628, 198, 198, 14468, 7804, 4242, 21017, 15399, 9465, 198, 2, 770, 2163, 3073, 379, 257, 4590, 357, 28100, 1713, 352, 8, 290, 7224, 611, 262, 1048, 318, 287, 1194, 4590, 287, 257, 6831, 357, 28100, 1713, 362, 8, 198, 220, 220, 198, 14468, 7804, 4242, 21017, 15399, 3781, 198, 2, 770, 2163, 4284, 12271, 262, 1986, 287, 262, 4286, 7, 28100, 1713, 8, 290, 3607, 503, 262, 6108, 2479, 11, 5279, 11, 3234, 290, 9942, 628, 198, 14468, 7804, 4242, 21017, 15399, 19637, 198, 2, 770, 2163, 5860, 1771, 393, 407, 734, 5986, 7, 10265, 7159, 8, 3994, 262, 976, 1048, 628, 198, 14468, 7804, 4242, 21017, 6416, 640, 1986, 3781, 198, 2, 770, 2163, 481, 1577, 257, 1103, 640, 3781, 357, 23396, 11, 5279, 11, 9942, 8, 286, 534, 1986, 416, 4756, 262, 220, 198, 2, 3992, 25695, 290, 23008, 340, 284, 5986, 287, 262, 6831, 7368, 287, 262, 4578, 198, 2, 5740, 25, 2011, 3992, 25695, 318, 407, 1762, 6105, 523, 314, 716, 407, 1654, 611, 428, 2499, 355, 5292, 393, 407, 13, 220, 220, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
4.128814
295
"""Basic message.""" from datetime import datetime from typing import Union from marshmallow import fields from ...agent_message import AgentMessage, AgentMessageSchema from ...util import datetime_now, datetime_to_str from ...valid import INDY_ISO8601_DATETIME from ..message_types import FEDERATEDLEARNING_MESSAGE HANDLER_CLASS = ( "aries_cloudagent.messaging.federatedlearningmessage." + "handlers.basicmessage_handler.FederatedLearningMessageHandler" ) class FederatedLearningMessage(AgentMessage): """Class defining the structure of a federated learning message.""" class Meta: """Federated learning message metadata class.""" handler_class = HANDLER_CLASS message_type = FEDERATEDLEARNING_MESSAGE schema_class = "FederatedLearningMessageSchema" def __init__( self, *, sent_time: Union[str, datetime] = None, content: str = None, localization: str = None, **kwargs ): """ Initialize federated learning message object. Args: sent_time: Time message was sent content: message content localization: localization """ super(FederatedLearningMessage, self).__init__(**kwargs) if not sent_time: sent_time = datetime_now() self.sent_time = datetime_to_str(sent_time) self.content = content self.localization = localization class FederatedLearningMessageSchema(AgentMessageSchema): """FederatedLearning message schema class.""" class Meta: """FederatedLearning message schema metadata.""" model_class = FederatedLearningMessage localization = fields.Str( required=False, description="Localization", example="en-CA", data_key="l10n", ) sent_time = fields.Str( required=False, description="Time message was sent, ISO8601 with space date/time separator", **INDY_ISO8601_DATETIME ) content = fields.Str( required=True, description="Message content", example="Hello", )
[ 37811, 26416, 3275, 526, 15931, 198, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 19720, 1330, 4479, 198, 198, 6738, 22397, 42725, 1330, 7032, 198, 198, 6738, 2644, 25781, 62, 20500, 1330, 15906, 12837, 11, 15906, 12837, 27054, 2611, 198, 6738, 2644, 22602, 1330, 4818, 8079, 62, 2197, 11, 4818, 8079, 62, 1462, 62, 2536, 198, 6738, 2644, 12102, 1330, 24413, 56, 62, 40734, 4521, 486, 62, 35, 1404, 2767, 12789, 198, 198, 6738, 11485, 20500, 62, 19199, 1330, 376, 1961, 1137, 11617, 2538, 1503, 15871, 62, 44, 1546, 4090, 8264, 198, 198, 39, 6981, 39878, 62, 31631, 796, 357, 198, 220, 220, 220, 366, 3166, 62, 17721, 25781, 13, 37348, 3039, 13, 69, 5702, 515, 40684, 20500, 526, 198, 220, 220, 220, 1343, 366, 4993, 8116, 13, 35487, 20500, 62, 30281, 13, 37, 5702, 515, 41730, 12837, 25060, 1, 198, 8, 628, 198, 4871, 35089, 515, 41730, 12837, 7, 36772, 12837, 2599, 198, 220, 220, 220, 37227, 9487, 16215, 262, 4645, 286, 257, 28062, 515, 4673, 3275, 526, 15931, 628, 220, 220, 220, 1398, 30277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37, 5702, 515, 4673, 3275, 20150, 1398, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4871, 796, 367, 6981, 39878, 62, 31631, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 62, 4906, 796, 376, 1961, 1137, 11617, 2538, 1503, 15871, 62, 44, 1546, 4090, 8264, 198, 220, 220, 220, 220, 220, 220, 220, 32815, 62, 4871, 796, 366, 37, 5702, 515, 41730, 12837, 27054, 2611, 1, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 2435, 25, 4479, 58, 2536, 11, 4818, 8079, 60, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2695, 25, 965, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 42842, 25, 965, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 198, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 1096, 28062, 515, 4673, 3275, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 2435, 25, 3862, 3275, 373, 1908, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 25, 3275, 2695, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42842, 25, 42842, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 37, 5702, 515, 41730, 12837, 11, 2116, 737, 834, 15003, 834, 7, 1174, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1908, 62, 2435, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1908, 62, 2435, 796, 4818, 8079, 62, 2197, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34086, 62, 2435, 796, 4818, 8079, 62, 1462, 62, 2536, 7, 34086, 62, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11299, 796, 2695, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12001, 1634, 796, 42842, 628, 198, 4871, 35089, 515, 41730, 12837, 27054, 2611, 7, 36772, 12837, 27054, 2611, 2599, 198, 220, 220, 220, 37227, 37, 5702, 515, 41730, 3275, 32815, 1398, 526, 15931, 628, 220, 220, 220, 1398, 30277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37, 5702, 515, 41730, 3275, 32815, 20150, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 2746, 62, 4871, 796, 35089, 515, 41730, 12837, 628, 220, 220, 220, 42842, 796, 7032, 13, 13290, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2672, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 2625, 14565, 1634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1672, 2625, 268, 12, 8141, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 2539, 2625, 75, 940, 77, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1908, 62, 2435, 796, 7032, 13, 13290, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2672, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 2625, 7575, 3275, 373, 1908, 11, 19694, 4521, 486, 351, 2272, 3128, 14, 2435, 2880, 1352, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 12115, 56, 62, 40734, 4521, 486, 62, 35, 1404, 2767, 12789, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2695, 796, 7032, 13, 13290, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2672, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 2625, 12837, 2695, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1672, 2625, 15496, 1600, 198, 220, 220, 220, 1267, 198 ]
2.566265
830
# Generated by Django 3.1.2 on 2020-11-25 12:47 from django.db import migrations, models import wagtail.core.fields
[ 2, 2980, 515, 416, 37770, 513, 13, 16, 13, 17, 319, 12131, 12, 1157, 12, 1495, 1105, 25, 2857, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 266, 363, 13199, 13, 7295, 13, 25747, 628 ]
2.878049
41
# import the necessary packages from keras.applications import ResNet50 from keras.applications import MobileNet import matplotlib.pyplot as plt import numpy as np import cv2 import dlv if __name__ == "__main__": test = np.random.rand(500,300) cv2.imshow('img',test) cv2.waitKey(0) resnet50Model = MobileNet(weights="imagenet") dlvModel = dlv.Model(resnet50Model) dlvModel.addInputData('dog.jpg') dlvModel.getFeaturesFromFetchedList() result = dlvModel._indata_FeatureMap_Dict['dog.jpg']._featureMapList[0] result = np.moveaxis(result, -1, 0) filter0 = result[0] # filter0 = filter0.astype(np.uint8) cv2.imshow('image',filter0) cv2.waitKey(0) print('tmp') # # if __name__ == "__main__": # resnet50Model = MobileNet(weights="imagenet") # dlvModel = dlv.Model(resnet50Model) # dlvModel.addInputData('dog.jpg') # dlvModel.addInputData('cat.jpg') # dlvModel.getFeaturesFromFetchedList() # # # Prepare pyplot # # w = 112 # h = 112 # # # fig = plt.figure(figsize=(64, len(dlvModel._indata_FeatureMap_Dict['cat.jpg']._featureMapList))) # fig = plt.figure(figsize=(64, 1)) # # columns = 1 # rows = 64 # # for j in range(0, columns): # conv_j_result = dlvModel._indata_FeatureMap_Dict['cat.jpg']._featureMapList[j] # # for i in range(0, rows ): # subplot = fig.add_subplot(j+1, 64, j*64 + i + 1) # subplot.set_xticks([]) # subplot.set_yticks([]) # image = conv_j_result[:, :, i] # subplot.imshow(image) # plt.show()
[ 2, 1330, 262, 3306, 10392, 198, 6738, 41927, 292, 13, 1324, 677, 602, 1330, 1874, 7934, 1120, 198, 6738, 41927, 292, 13, 1324, 677, 602, 1330, 12173, 7934, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 269, 85, 17, 198, 11748, 288, 6780, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 197, 9288, 796, 45941, 13, 25120, 13, 25192, 7, 4059, 11, 6200, 8, 198, 197, 33967, 17, 13, 320, 12860, 10786, 9600, 3256, 9288, 8, 198, 197, 33967, 17, 13, 17077, 9218, 7, 15, 8, 198, 197, 198, 197, 198, 197, 198, 197, 411, 3262, 1120, 17633, 796, 12173, 7934, 7, 43775, 2625, 320, 11286, 316, 4943, 198, 197, 67, 6780, 17633, 796, 288, 6780, 13, 17633, 7, 411, 3262, 1120, 17633, 8, 198, 197, 67, 6780, 17633, 13, 2860, 20560, 6601, 10786, 9703, 13, 9479, 11537, 198, 197, 67, 6780, 17633, 13, 1136, 23595, 4863, 37, 316, 1740, 8053, 3419, 198, 197, 198, 197, 20274, 796, 288, 6780, 17633, 13557, 521, 1045, 62, 38816, 13912, 62, 35, 713, 17816, 9703, 13, 9479, 6, 4083, 62, 30053, 13912, 8053, 58, 15, 60, 198, 197, 198, 197, 20274, 796, 45941, 13, 21084, 22704, 7, 20274, 11, 532, 16, 11, 657, 8, 198, 197, 24455, 15, 796, 1255, 58, 15, 60, 198, 197, 198, 197, 2, 8106, 15, 796, 8106, 15, 13, 459, 2981, 7, 37659, 13, 28611, 23, 8, 198, 197, 33967, 17, 13, 320, 12860, 10786, 9060, 3256, 24455, 15, 8, 198, 197, 33967, 17, 13, 17077, 9218, 7, 15, 8, 198, 197, 198, 197, 4798, 10786, 22065, 11537, 198, 197, 198, 197, 628, 198, 2, 198, 2, 611, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 2, 220, 197, 411, 3262, 1120, 17633, 796, 12173, 7934, 7, 43775, 2625, 320, 11286, 316, 4943, 198, 2, 220, 197, 67, 6780, 17633, 796, 288, 6780, 13, 17633, 7, 411, 3262, 1120, 17633, 8, 198, 2, 220, 197, 67, 6780, 17633, 13, 2860, 20560, 6601, 10786, 9703, 13, 9479, 11537, 198, 2, 220, 197, 67, 6780, 17633, 13, 2860, 20560, 6601, 10786, 9246, 13, 9479, 11537, 198, 2, 220, 197, 67, 6780, 17633, 13, 1136, 23595, 4863, 37, 316, 1740, 8053, 3419, 198, 2, 198, 2, 220, 197, 2, 43426, 12972, 29487, 198, 2, 198, 2, 220, 197, 86, 796, 13539, 198, 2, 220, 197, 71, 796, 13539, 198, 2, 198, 2, 220, 197, 2, 2336, 796, 458, 83, 13, 26875, 7, 5647, 7857, 16193, 2414, 11, 18896, 7, 67, 6780, 17633, 13557, 521, 1045, 62, 38816, 13912, 62, 35, 713, 17816, 9246, 13, 9479, 6, 4083, 62, 30053, 13912, 8053, 22305, 198, 2, 220, 197, 5647, 796, 458, 83, 13, 26875, 7, 5647, 7857, 16193, 2414, 11, 352, 4008, 198, 2, 198, 2, 220, 197, 28665, 82, 796, 352, 198, 2, 220, 197, 8516, 796, 5598, 198, 2, 198, 2, 220, 197, 1640, 474, 287, 2837, 7, 15, 11, 15180, 2599, 198, 2, 220, 197, 197, 42946, 62, 73, 62, 20274, 796, 288, 6780, 17633, 13557, 521, 1045, 62, 38816, 13912, 62, 35, 713, 17816, 9246, 13, 9479, 6, 4083, 62, 30053, 13912, 8053, 58, 73, 60, 198, 2, 198, 2, 220, 197, 197, 1640, 1312, 287, 2837, 7, 15, 11, 15274, 15179, 198, 2, 220, 197, 197, 197, 7266, 29487, 796, 2336, 13, 2860, 62, 7266, 29487, 7, 73, 10, 16, 11, 5598, 11, 474, 9, 2414, 1343, 1312, 1343, 352, 8, 198, 2, 220, 197, 197, 197, 7266, 29487, 13, 2617, 62, 742, 3378, 26933, 12962, 198, 2, 220, 197, 197, 197, 7266, 29487, 13, 2617, 62, 20760, 3378, 26933, 12962, 198, 2, 220, 197, 197, 197, 9060, 796, 3063, 62, 73, 62, 20274, 58, 45299, 1058, 11, 1312, 60, 198, 2, 220, 197, 197, 197, 7266, 29487, 13, 320, 12860, 7, 9060, 8, 198, 2, 220, 197, 489, 83, 13, 12860, 3419, 198 ]
2.253435
655
# Generated by the protocol buffer compiler. DO NOT EDIT! # sources: onos/uenib/ran.proto, onos/uenib/uenib.proto # plugin: python-betterproto from dataclasses import dataclass from typing import AsyncIterator, Dict, List import betterproto import grpclib @dataclass(eq=False, repr=False) class CellConnection(betterproto.Message): """CellConnection represents UE cell connection.""" id: str = betterproto.string_field(1) signal_strength: float = betterproto.double_field(2) @dataclass(eq=False, repr=False) class CellInfo(betterproto.Message): """CellInfo provides data on serving cell and candidate cells.""" serving_cell: "CellConnection" = betterproto.message_field(1) candidate_cells: List["CellConnection"] = betterproto.message_field(2) @dataclass(eq=False, repr=False) class Event(betterproto.Message): """CellConnection represents UE cell connection.""" type: "EventType" = betterproto.enum_field(1) ue: "Ue" = betterproto.message_field(2) @dataclass(eq=False, repr=False) class CreateUeRequest(betterproto.Message): """CellInfo provides data on serving cell and candidate cells.""" ue: "Ue" = betterproto.message_field(1) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) @dataclass(eq=False, repr=False) import betterproto.lib.google.protobuf as betterproto_lib_google_protobuf
[ 2, 2980, 515, 416, 262, 8435, 11876, 17050, 13, 220, 8410, 5626, 48483, 0, 198, 2, 4237, 25, 319, 418, 14, 84, 268, 571, 14, 2596, 13, 1676, 1462, 11, 319, 418, 14, 84, 268, 571, 14, 84, 268, 571, 13, 1676, 1462, 198, 2, 13877, 25, 21015, 12, 27903, 1676, 1462, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 19720, 1330, 1081, 13361, 37787, 11, 360, 713, 11, 7343, 198, 198, 11748, 1365, 1676, 1462, 198, 11748, 1036, 79, 565, 571, 628, 198, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 198, 4871, 12440, 32048, 7, 27903, 1676, 1462, 13, 12837, 2599, 198, 220, 220, 220, 37227, 28780, 32048, 6870, 27595, 2685, 4637, 526, 15931, 628, 220, 220, 220, 4686, 25, 965, 796, 1365, 1676, 1462, 13, 8841, 62, 3245, 7, 16, 8, 198, 220, 220, 220, 6737, 62, 41402, 25, 12178, 796, 1365, 1676, 1462, 13, 23352, 62, 3245, 7, 17, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 198, 4871, 12440, 12360, 7, 27903, 1676, 1462, 13, 12837, 2599, 198, 220, 220, 220, 37227, 28780, 12360, 3769, 1366, 319, 7351, 2685, 290, 4540, 4778, 526, 15931, 628, 220, 220, 220, 7351, 62, 3846, 25, 366, 28780, 32048, 1, 796, 1365, 1676, 1462, 13, 20500, 62, 3245, 7, 16, 8, 198, 220, 220, 220, 4540, 62, 46342, 25, 7343, 14692, 28780, 32048, 8973, 796, 1365, 1676, 1462, 13, 20500, 62, 3245, 7, 17, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 198, 4871, 8558, 7, 27903, 1676, 1462, 13, 12837, 2599, 198, 220, 220, 220, 37227, 28780, 32048, 6870, 27595, 2685, 4637, 526, 15931, 628, 220, 220, 220, 2099, 25, 366, 9237, 6030, 1, 796, 1365, 1676, 1462, 13, 44709, 62, 3245, 7, 16, 8, 198, 220, 220, 220, 334, 68, 25, 366, 52, 68, 1, 796, 1365, 1676, 1462, 13, 20500, 62, 3245, 7, 17, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 198, 4871, 13610, 52, 68, 18453, 7, 27903, 1676, 1462, 13, 12837, 2599, 198, 220, 220, 220, 37227, 28780, 12360, 3769, 1366, 319, 7351, 2685, 290, 4540, 4778, 526, 15931, 628, 220, 220, 220, 334, 68, 25, 366, 52, 68, 1, 796, 1365, 1676, 1462, 13, 20500, 62, 3245, 7, 16, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 31, 19608, 330, 31172, 7, 27363, 28, 25101, 11, 41575, 28, 25101, 8, 628, 198, 198, 11748, 1365, 1676, 1462, 13, 8019, 13, 13297, 13, 11235, 672, 3046, 355, 1365, 1676, 1462, 62, 8019, 62, 13297, 62, 11235, 672, 3046, 198 ]
2.771757
609