💾 Archived View for tris.fyi › pydoc › inspect captured on 2022-07-16 at 14:55:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Get useful information from live Python objects. This module encapsulates the interface provided by the internal special attributes (co_*, im_*, tb_*, etc.) in a friendlier fashion. It also provides some help for examining source code and class layout. Here are some of the useful functions provided by this module: ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(), isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(), isroutine() - check object types getmembers() - get members of an object that satisfy a given condition getfile(), getsourcefile(), getsource() - find an object's source code getdoc(), getcomments() - get documentation on an object getmodule() - determine the module that an object came from getclasstree() - arrange classes so as to represent their hierarchy getargvalues(), getcallargs() - get info about function arguments getfullargspec() - same, with support for Python 3 features formatargvalues() - format an argument spec getouterframes(), getinnerframes() - get info about frames currentframe() - get the current stack frame stack(), trace() - get info about frames on the stack or in a traceback signature() - get a Signature object for the callable
ArgInfo(args, varargs, keywords, locals)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
keywords = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
locals = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
varargs = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
ArgSpec(args, varargs, keywords, defaults)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
defaults = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
keywords = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
varargs = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
Arguments(args, varargs, varkw)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
varargs = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
varkw = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
Attribute(name, kind, defining_class, object)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
defining_class = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
kind = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
name = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
object = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
Provide a tokeneater() method to detect the end of a code block.
tokeneater(self, type, token, srowcol, erowcol, line)
Result of `Signature.bind` call. Holds the mapping of arguments to the function's parameters. Has the following public attributes: * arguments : dict An ordered mutable mapping of parameters' names to arguments' values. Does not contain arguments' default values. * signature : Signature The Signature object that created this instance. * args : tuple Tuple of positional arguments values. * kwargs : dict Dict of keyword arguments values.
apply_defaults(self) Set default values for missing arguments. For variable-positional arguments (*args) the default is an empty tuple. For variable-keyword arguments (**kwargs) the default is an empty dict.
args = <property object at 0x7f92bf5149f0>
arguments = <member 'arguments' of 'BoundArguments' objects>
kwargs = <property object at 0x7f92bf514a40>
signature = <property object at 0x7f92bf5149a0>
with_traceback(...) Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
ClosureVars(nonlocals, globals, builtins, unbound)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
builtins = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
globals = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
nonlocals = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
unbound = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
with_traceback(...) Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
FrameInfo(frame, filename, lineno, function, code_context, index)
count(self, value, /) Return number of occurrences of value.
code_context = _tuplegetter(4, 'Alias for field number 4') Alias for field number 4
filename = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
frame = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
function = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
index = _tuplegetter(5, 'Alias for field number 5') Alias for field number 5
lineno = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations)
count(self, value, /) Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /) Return first index of value. Raises ValueError if the value is not present.
annotations = _tuplegetter(6, 'Alias for field number 6') Alias for field number 6
args = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
defaults = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
kwonlyargs = _tuplegetter(4, 'Alias for field number 4') Alias for field number 4
kwonlydefaults = _tuplegetter(5, 'Alias for field number 5') Alias for field number 5
varargs = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
varkw = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
Dictionary that remembers insertion order
clear(...) od.clear() -> None. Remove all items from od.
copy(...) od.copy() -> a shallow copy of od
fromkeys(iterable, value=None) Create a new ordered dictionary with keys from iterable and values set to value.
get(self, key, default=None, /) Return the value for key if key is in the dictionary, else default.
items(...)
keys(...)
move_to_end(self, /, key, last=True) Move an existing element to the end (or beginning if last is false). Raise KeyError if the element does not exist.
pop(...) od.pop(k[,d]) -> v, remove specified key and return the corresponding value. If key is not found, d is returned if given, otherwise KeyError is raised.
popitem(self, /, last=True) Remove and return a (key, value) pair from the dictionary. Pairs are returned in LIFO order if last is true or FIFO order if false.
setdefault(self, /, key, default=None) Insert key with a value of default if key is not in the dictionary. Return the value for key if key is in the dictionary, else default.
update(...)
values(...)
Represents a parameter in a function signature. Has the following public attributes: * name : str The name of the parameter as a string. * default : object The default value for the parameter if specified. If the parameter has no default value, this attribute is set to `Parameter.empty`. * annotation The annotation for the parameter if specified. If the parameter has no annotation, this attribute is set to `Parameter.empty`. * kind : str Describes how argument values are bound to the parameter. Possible values: `Parameter.POSITIONAL_ONLY`, `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`, `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`.
Marker object for Signature.empty and Parameter.empty.
replace(self, *, name=<class 'inspect._void'>, kind=<class 'inspect._void'>, annotation=<class 'inspect._void'>, default=<class 'inspect._void'>) Creates a customized copy of the Parameter.
KEYWORD_ONLY = <_ParameterKind.KEYWORD_ONLY: 3>
POSITIONAL_ONLY = <_ParameterKind.POSITIONAL_ONLY: 0>
POSITIONAL_OR_KEYWORD = <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>
VAR_KEYWORD = <_ParameterKind.VAR_KEYWORD: 4>
VAR_POSITIONAL = <_ParameterKind.VAR_POSITIONAL: 2>
annotation = <property object at 0x7f92bf5148b0>
default = <property object at 0x7f92bf514770>
kind = <property object at 0x7f92bf514900>
name = <property object at 0x7f92bf514720>
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself. A Signature object has the following public attributes and methods: * parameters : OrderedDict An ordered mapping of parameters' names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in `code.co_varnames`). * return_annotation : object The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is set to `Signature.empty`. * bind(*args, **kwargs) -> BoundArguments Creates a mapping from positional and keyword arguments to parameters. * bind_partial(*args, **kwargs) -> BoundArguments Creates a partial mapping from positional and keyword arguments to parameters (simulating 'functools.partial' behavior.)
Marker object for Signature.empty and Parameter.empty.
bind(self, /, *args, **kwargs) Get a BoundArguments object, that maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
bind_partial(self, /, *args, **kwargs) Get a BoundArguments object, that partially maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
from_builtin(func) Constructs Signature for the given builtin function. Deprecated since Python 3.5, use `Signature.from_callable()`.
from_callable(obj, *, follow_wrapped=True) Constructs Signature for the given callable object.
from_function(func) Constructs Signature for the given python function. Deprecated since Python 3.5, use `Signature.from_callable()`.
replace(self, *, parameters=<class 'inspect._void'>, return_annotation=<class 'inspect._void'>) Creates a customized copy of the Signature. Pass 'parameters' and/or 'return_annotation' arguments to override them in the new copy.
parameters = <property object at 0x7f92bf514ae0>
return_annotation = <property object at 0x7f92bf514b30>
Traceback(filename, lineno, function, code_context, index)
count(self, value, /) Return number of occurrences of value.
code_context = _tuplegetter(3, 'Alias for field number 3') Alias for field number 3
filename = _tuplegetter(0, 'Alias for field number 0') Alias for field number 0
function = _tuplegetter(2, 'Alias for field number 2') Alias for field number 2
index = _tuplegetter(4, 'Alias for field number 4') Alias for field number 4
lineno = _tuplegetter(1, 'Alias for field number 1') Alias for field number 1
attrgetter(attr, ...) --> attrgetter object Return a callable object that fetches the given attribute(s) from its operand. After f = attrgetter('name'), the call f(r) returns r.name. After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date). After h = attrgetter('name.first', 'name.last'), the call h(r) returns (r.name.first, r.name.last).
classify_class_attrs(cls) Return list of attribute-descriptor tuples. For each name in dir(cls), the return list contains a 4-tuple with these elements: 0. The name (a string). 1. The kind of attribute this is, one of these strings: 'class method' created via classmethod() 'static method' created via staticmethod() 'property' created via property() 'method' any other flavor of method or descriptor 'data' not a method 2. The class which defined this attribute (a class). 3. The object as obtained by calling getattr; if this fails, or if the resulting object does not live anywhere in the class' mro (including metaclasses) then the object is looked up in the defining class's dict (found by walking the mro). If one of the items in dir(cls) is stored in the metaclass it will now be discovered and not have None be listed as the class in which it was defined. Any items whose home class cannot be discovered are skipped.
cleandoc(doc) Clean up indentation from docstrings. Any whitespace that can be uniformly removed from the second line onwards is removed.
currentframe() Return the frame of the caller or None if this is not possible.
findsource(object) Return the entire source file and starting line number for an object. The argument may be a module, class, method, function, traceback, frame, or code object. The source code is returned as a list of all the lines in the file and the line number indexes a line in that list. An OSError is raised if the source code cannot be retrieved.
formatannotation(annotation, base_module=None)
formatannotationrelativeto(object)
formatargspec(args, varargs=None, varkw=None, defaults=None, kwonlyargs=(), kwonlydefaults={}, annotations={}, formatarg=<class 'str'>, formatvarargs=<function <lambda> at 0x7f92bf510e50>, formatvarkw=<function <lambda> at 0x7f92bf510ee0>, formatvalue=<function <lambda> at 0x7f92bf510f70>, formatreturns=<function <lambda> at 0x7f92bf512040>, formatannotation=<function formatannotation at 0x7f92bf510d30>) Format an argument spec from the values returned by getfullargspec. The first seven arguments are (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations). The other five arguments are the corresponding optional formatting functions that are called to turn names and values into strings. The last argument is an optional function to format the sequence of arguments. Deprecated since Python 3.5: use the `signature` function and `Signature` objects.
formatargvalues(args, varargs, varkw, locals, formatarg=<class 'str'>, formatvarargs=<function <lambda> at 0x7f92bf5121f0>, formatvarkw=<function <lambda> at 0x7f92bf512280>, formatvalue=<function <lambda> at 0x7f92bf512310>) Format an argument spec from the 4 values returned by getargvalues. The first four arguments are (args, varargs, varkw, locals). The next four arguments are the corresponding optional formatting functions that are called to turn names and values into strings. The ninth argument is an optional function to format the sequence of arguments.
getabsfile(object, _filename=None) Return an absolute path to the source or compiled file for an object. The idea is for each object to have a unique origin, so this routine normalizes the result as much as possible.
getargs(co) Get information about the arguments accepted by a code object. Three things are returned: (args, varargs, varkw), where 'args' is the list of argument names. Keyword-only arguments are appended. 'varargs' and 'varkw' are the names of the * and ** arguments or None.
getargspec(func) Get the names and default values of a function's parameters. A tuple of four things is returned: (args, varargs, keywords, defaults). 'args' is a list of the argument names, including keyword-only argument names. 'varargs' and 'keywords' are the names of the * and ** parameters or None. 'defaults' is an n-tuple of the default values of the last n parameters. This function is deprecated, as it does not support annotations or keyword-only parameters and will raise ValueError if either is present on the supplied callable. For a more structured introspection API, use inspect.signature() instead. Alternatively, use getfullargspec() for an API with a similar namedtuple based interface, but full support for annotations and keyword-only parameters. Deprecated since Python 3.5, use `inspect.getfullargspec()`.
getargvalues(frame) Get information about arguments passed into a particular frame. A tuple of four things is returned: (args, varargs, varkw, locals). 'args' is a list of the argument names. 'varargs' and 'varkw' are the names of the * and ** arguments or None. 'locals' is the locals dictionary of the given frame.
getattr_static(obj, attr, default=<object object at 0x7f92bfcfe960>) Retrieve attributes without triggering dynamic lookup via the descriptor protocol, __getattr__ or __getattribute__. Note: this function may not be able to retrieve all attributes that getattr can fetch (like dynamically created attributes) and may find attributes that getattr can't (like descriptors that raise AttributeError). It can also return descriptor objects instead of instance members in some cases. See the documentation for details.
getblock(lines) Extract the block of code at the top of the given list of lines.
getcallargs(func, /, *positional, **named) Get the mapping of arguments to values. A dict is returned, with keys the function argument names (including the names of the * and ** arguments, if any), and values the respective bound values from 'positional' and 'named'.
getclasstree(classes, unique=False) Arrange the given list of classes into a hierarchy of nested lists. Where a nested list appears, it contains classes derived from the class whose entry immediately precedes the list. Each entry is a 2-tuple containing a class and a tuple of its base classes. If the 'unique' argument is true, exactly one entry appears in the returned structure for each class in the given list. Otherwise, classes using multiple inheritance and their descendants will appear multiple times.
getclosurevars(func) Get the mapping of free variables to their current values. Returns a named tuple of dicts mapping the current nonlocal, global and builtin references as seen by the body of the function. A final set of unbound names that could not be resolved is also provided.
getcomments(object) Get lines of comments immediately preceding an object's source code. Returns None when source can't be found.
getcoroutinelocals(coroutine) Get the mapping of coroutine local variables to their current values. A dict is returned, with the keys the local variable names and values the bound values.
getcoroutinestate(coroutine) Get current state of a coroutine object. Possible states are: CORO_CREATED: Waiting to start execution. CORO_RUNNING: Currently being executed by the interpreter. CORO_SUSPENDED: Currently suspended at an await expression. CORO_CLOSED: Execution has completed.
getdoc(object) Get the documentation string for an object. All tabs are expanded to spaces. To clean up docstrings that are indented to line up with blocks of code, any whitespace than can be uniformly removed from the second line onwards is removed.
getfile(object) Work out which source or compiled file an object was defined in.
getframeinfo(frame, context=1) Get information about a frame or traceback object. A tuple of five things is returned: the filename, the line number of the current line, the function name, a list of lines of context from the source code, and the index of the current line within that list. The optional second argument specifies the number of lines of context to return, which are centered around the current line.
getfullargspec(func) Get the names and default values of a callable object's parameters. A tuple of seven things is returned: (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations). 'args' is a list of the parameter names. 'varargs' and 'varkw' are the names of the * and ** parameters or None. 'defaults' is an n-tuple of the default values of the last n parameters. 'kwonlyargs' is a list of keyword-only parameter names. 'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults. 'annotations' is a dictionary mapping parameter names to annotations. Notable differences from inspect.signature(): - the "self" parameter is always reported, even for bound methods - wrapper chains defined by __wrapped__ *not* unwrapped automatically
getgeneratorlocals(generator) Get the mapping of generator local variables to their current values. A dict is returned, with the keys the local variable names and values the bound values.
getgeneratorstate(generator) Get current state of a generator-iterator. Possible states are: GEN_CREATED: Waiting to start execution. GEN_RUNNING: Currently being executed by the interpreter. GEN_SUSPENDED: Currently suspended at a yield expression. GEN_CLOSED: Execution has completed.
getinnerframes(tb, context=1) Get a list of records for a traceback's frame and all lower frames. Each record contains a frame object, filename, line number, function name, a list of lines of context, and index within the context.
getlineno(frame) Get the line number from a frame object, allowing for optimization.
getmembers(object, predicate=None) Return all members of an object as (name, value) pairs sorted by name. Optionally, only return members that satisfy a given predicate.
getmodule(object, _filename=None) Return the module an object was defined in, or None if not found.
getmodulename(path) Return the module name for a given file, or None.
getmro(cls) Return tuple of base classes (including cls) in method resolution order.
getouterframes(frame, context=1) Get a list of records for a frame and all higher (calling) frames. Each record contains a frame object, filename, line number, function name, a list of lines of context, and index within the context.
getsource(object) Return the text of the source code for an object. The argument may be a module, class, method, function, traceback, frame, or code object. The source code is returned as a single string. An OSError is raised if the source code cannot be retrieved.
getsourcefile(object) Return the filename that can be used to locate an object's source. Return None if no way can be identified to get the source.
getsourcelines(object) Return a list of source lines and starting line number for an object. The argument may be a module, class, method, function, traceback, frame, or code object. The source code is returned as a list of the lines corresponding to the object and the line number indicates where in the original source file the first line of code was found. An OSError is raised if the source code cannot be retrieved.
indentsize(line) Return the indent size, in spaces, at the start of a line of text.
isabstract(object) Return true if the object is an abstract base class (ABC).
isasyncgen(object) Return true if the object is an asynchronous generator.
isasyncgenfunction(obj) Return true if the object is an asynchronous generator function. Asynchronous generator functions are defined with "async def" syntax and have "yield" expressions in their body.
isawaitable(object) Return true if object can be passed to an ``await`` expression.
isbuiltin(object) Return true if the object is a built-in function or method. Built-in functions and methods provide these attributes: __doc__ documentation string __name__ original name of this function or method __self__ instance to which a method is bound, or None
isclass(object) Return true if the object is a class. Class objects provide these attributes: __doc__ documentation string __module__ name of module in which this class was defined
iscode(object) Return true if the object is a code object. Code objects provide these attributes: co_argcount number of arguments (not including *, ** args or keyword only arguments) co_code string of raw compiled bytecode co_cellvars tuple of names of cell variables co_consts tuple of constants used in the bytecode co_filename name of file in which this code object was created co_firstlineno number of first line in Python source code co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg | 16=nested | 32=generator | 64=nofree | 128=coroutine | 256=iterable_coroutine | 512=async_generator co_freevars tuple of names of free variables co_posonlyargcount number of positional only arguments co_kwonlyargcount number of keyword only arguments (not including ** arg) co_lnotab encoded mapping of line numbers to bytecode indices co_name name with which this code object was defined co_names tuple of names other than arguments and function locals co_nlocals number of local variables co_stacksize virtual machine stack space required co_varnames tuple of names of arguments and local variables
iscoroutine(object) Return true if the object is a coroutine.
iscoroutinefunction(obj) Return true if the object is a coroutine function. Coroutine functions are defined with "async def" syntax.
isdatadescriptor(object) Return true if the object is a data descriptor. Data descriptors have a __set__ or a __delete__ attribute. Examples are properties (defined in Python) and getsets and members (defined in C). Typically, data descriptors will also have __name__ and __doc__ attributes (properties, getsets, and members have both of these attributes), but this is not guaranteed.
isframe(object) Return true if the object is a frame object. Frame objects provide these attributes: f_back next outer frame object (this frame's caller) f_builtins built-in namespace seen by this frame f_code code object being executed in this frame f_globals global namespace seen by this frame f_lasti index of last attempted instruction in bytecode f_lineno current line number in Python source code f_locals local namespace seen by this frame f_trace tracing function for this frame, or None
isfunction(object) Return true if the object is a user-defined function. Function objects provide these attributes: __doc__ documentation string __name__ name with which this function was defined __code__ code object containing compiled function bytecode __defaults__ tuple of any default values for arguments __globals__ global namespace in which this function was defined __annotations__ dict of parameter annotations __kwdefaults__ dict of keyword only parameters with defaults
isgenerator(object) Return true if the object is a generator. Generator objects provide these attributes: __iter__ defined to support iteration over container close raises a new GeneratorExit exception inside the generator to terminate the iteration gi_code code object gi_frame frame object or possibly None once the generator has been exhausted gi_running set to 1 when generator is executing, 0 otherwise next return the next item from the container send resumes the generator and "sends" a value that becomes the result of the current yield-expression throw used to raise an exception inside the generator
isgeneratorfunction(obj) Return true if the object is a user-defined generator function. Generator function objects provide the same attributes as functions. See help(isfunction) for a list of attributes.
isgetsetdescriptor(object) Return true if the object is a getset descriptor. getset descriptors are specialized descriptors defined in extension modules.
ismemberdescriptor(object) Return true if the object is a member descriptor. Member descriptors are specialized descriptors defined in extension modules.
ismethod(object) Return true if the object is an instance method. Instance method objects provide these attributes: __doc__ documentation string __name__ name with which this method was defined __func__ function object containing implementation of method __self__ instance to which this method is bound
ismethoddescriptor(object) Return true if the object is a method descriptor. But not if ismethod() or isclass() or isfunction() are true. This is new in Python 2.2, and, for example, is true of int.__add__. An object passing this test has a __get__ attribute but not a __set__ attribute, but beyond that the set of attributes varies. __name__ is usually sensible, and __doc__ often is. Methods implemented via descriptors that also pass one of the other tests return false from the ismethoddescriptor() test, simply because the other tests promise more -- you can, e.g., count on having the __func__ attribute (etc) when an object passes ismethod().
ismodule(object) Return true if the object is a module. Module objects provide these attributes: __cached__ pathname to byte compiled file __doc__ documentation string __file__ filename (missing for built-in modules)
isroutine(object) Return true if the object is any kind of function or method.
istraceback(object) Return true if the object is a traceback. Traceback objects provide these attributes: tb_frame frame object at this level tb_lasti index of last attempted instruction in bytecode tb_lineno current line number in Python source code tb_next next inner traceback object (called by this level)
namedtuple(typename, field_names, *, rename=False, defaults=None, module=None) Returns a new subclass of tuple with named fields. >>> Point = namedtuple('Point', ['x', 'y']) >>> Point.__doc__ # docstring for the new class 'Point(x, y)' >>> p = Point(11, y=22) # instantiate with positional args or keywords >>> p[0] + p[1] # indexable like a plain tuple 33 >>> x, y = p # unpack like a regular tuple >>> x, y (11, 22) >>> p.x + p.y # fields also accessible by name 33 >>> d = p._asdict() # convert to a dictionary >>> d['x'] 11 >>> Point(**d) # convert from a dictionary Point(x=11, y=22) >>> p._replace(x=100) # _replace() is like str.replace() but targets named fields Point(x=100, y=22)
signature(obj, *, follow_wrapped=True) Get a signature object for the passed callable.
stack(context=1) Return a list of records for the stack above the caller's frame.
trace(context=1) Return a list of records for the stack below the current exception.
unwrap(func, *, stop=None) Get the object wrapped by *func*. Follows the chain of :attr:`__wrapped__` attributes returning the last object in the chain. *stop* is an optional callback accepting an object in the wrapper chain as its sole argument that allows the unwrapping to be terminated early if the callback returns a true value. If the callback never returns a true value, the last object in the chain is returned as usual. For example, :func:`signature` uses this to stop unwrapping if any object in the chain has a ``__signature__`` attribute defined. :exc:`ValueError` is raised if a cycle is encountered.
walktree(classes, children, parent) Recursive helper function for getclasstree().
CORO_CLOSED = 'CORO_CLOSED'
CORO_CREATED = 'CORO_CREATED'
CORO_RUNNING = 'CORO_RUNNING'
CORO_SUSPENDED = 'CORO_SUSPENDED'
CO_ASYNC_GENERATOR = 512
CO_COROUTINE = 128
CO_GENERATOR = 32
CO_ITERABLE_COROUTINE = 256
CO_NESTED = 16
CO_NEWLOCALS = 2
CO_NOFREE = 64
CO_OPTIMIZED = 1
CO_VARARGS = 4
CO_VARKEYWORDS = 8
GEN_CLOSED = 'GEN_CLOSED'
GEN_CREATED = 'GEN_CREATED'
GEN_RUNNING = 'GEN_RUNNING'
GEN_SUSPENDED = 'GEN_SUSPENDED'
TPFLAGS_IS_ABSTRACT = 1048576
k = 512
mod_dict = {'__name__': 'inspect', '__doc__': "Get useful information from live Python objects.\n\nThis module encapsulates the interface provided by the internal special\nattributes (co_*, im_*, tb_*, etc.) in a friendlier fashion.\nIt also provides some help for examining source code and class layout.\n\nHere are some of the useful functions provided by this module:\n\n ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),\n isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(),\n isroutine() - check object types\n getmembers() - get members of an object that satisfy a given condition\n\n getfile(), getsourcefile(), getsource() - find an object's source code\n getdoc(), getcomments() - get documentation on an object\n getmodule() - determine the module that an object came from\n getclasstree() - arrange classes so as to represent their hierarchy\n\n getargvalues(), getcallargs() - get info about function arguments\n getfullargspec() - same, with support for Python 3 features\n formatargvalues() - format an argument spec\n getouterframes(), getinnerframes() - get info about frames\n currentframe() - get the current stack frame\n stack(), trace() - get info about frames on the stack or in a traceback\n\n signature() - get a Signature object for the callable\n", '__package__': '', '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x7f92bf67ac70>, '__spec__': ModuleSpec(name='inspect', loader=<_frozen_importlib_external.SourceFileLoader object at 0x7f92bf67ac70>, origin='/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/inspect.py'), '__file__': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/inspect.py', '__cached__': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/__pycache__/inspect.cpython-39.pyc', '__builtins__': {'__name__': 'builtins', '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__package__': '', '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), '__build_class__': <built-in function __build_class__>, '__import__': <built-in function __import__>, 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'breakpoint': <built-in function breakpoint>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'compile': <built-in function compile>, 'delattr': <built-in function delattr>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'format': <built-in function format>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'locals': <built-in function locals>, 'max': <built-in function max>, 'min': <built-in function min>, 'next': <built-in function next>, 'oct': <built-in function oct>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'repr': <built-in function repr>, 'round': <built-in function round>, 'setattr': <built-in function setattr>, 'sorted': <built-in function sorted>, 'sum': <built-in function sum>, 'vars': <built-in function vars>, 'None': None, 'Ellipsis': Ellipsis, 'NotImplemented': NotImplemented, 'False': False, 'True': True, 'bool': <class 'bool'>, 'memoryview': <class 'memoryview'>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'classmethod': <class 'classmethod'>, 'complex': <class 'complex'>, 'dict': <class 'dict'>, 'enumerate': <class 'enumerate'>, 'filter': <class 'filter'>, 'float': <class 'float'>, 'frozenset': <class 'frozenset'>, 'property': <class 'property'>, 'int': <class 'int'>, 'list': <class 'list'>, 'map': <class 'map'>, 'object': <class 'object'>, 'range': <class 'range'>, 'reversed': <class 'reversed'>, 'set': <class 'set'>, 'slice': <class 'slice'>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'zip': <class 'zip'>, '__debug__': True, 'BaseException': <class 'BaseException'>, 'Exception': <class 'Exception'>, 'TypeError': <class 'TypeError'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'GeneratorExit': <class 'GeneratorExit'>, 'SystemExit': <class 'SystemExit'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'ImportError': <class 'ImportError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'OSError': <class 'OSError'>, 'EnvironmentError': <class 'OSError'>, 'IOError': <class 'OSError'>, 'EOFError': <class 'EOFError'>, 'RuntimeError': <class 'RuntimeError'>, 'RecursionError': <class 'RecursionError'>, 'NotImplementedError': <class 'NotImplementedError'>, 'NameError': <class 'NameError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'AttributeError': <class 'AttributeError'>, 'SyntaxError': <class 'SyntaxError'>, 'IndentationError': <class 'IndentationError'>, 'TabError': <class 'TabError'>, 'LookupError': <class 'LookupError'>, 'IndexError': <class 'IndexError'>, 'KeyError': <class 'KeyError'>, 'ValueError': <class 'ValueError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'AssertionError': <class 'AssertionError'>, 'ArithmeticError': <class 'ArithmeticError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'OverflowError': <class 'OverflowError'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, 'SystemError': <class 'SystemError'>, 'ReferenceError': <class 'ReferenceError'>, 'MemoryError': <class 'MemoryError'>, 'BufferError': <class 'BufferError'>, 'Warning': <class 'Warning'>, 'UserWarning': <class 'UserWarning'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'FutureWarning': <class 'FutureWarning'>, 'ImportWarning': <class 'ImportWarning'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'BytesWarning': <class 'BytesWarning'>, 'ResourceWarning': <class 'ResourceWarning'>, 'ConnectionError': <class 'ConnectionError'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'NotADirectoryError': <class 'NotADirectoryError'>, 'InterruptedError': <class 'InterruptedError'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'TimeoutError': <class 'TimeoutError'>, 'open': <built-in function open>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'copyright': Copyright (c) 2001-2022 Python Software Foundation. All Rights Reserved. Copyright (c) 2000 BeOpen.com. All Rights Reserved. Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved. Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits': Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands for supporting Python development. See www.python.org for more information., 'license': Type license() to see the full license text, 'help': Type help() for interactive help, or help(object) for help about object.}, '__author__': ('Ka-Ping Yee <ping@lfw.org>', 'Yury Selivanov <yselivanov@sprymix.com>'), 'abc': <module 'abc' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/abc.py'>, 'ast': <module 'ast' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ast.py'>, 'dis': <module 'dis' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dis.py'>, 'collections': <module 'collections' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/__init__.py'>, 'enum': <module 'enum' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/enum.py'>, 'importlib': <module 'importlib' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/__init__.py'>, 'itertools': <module 'itertools' (built-in)>, 'linecache': <module 'linecache' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/linecache.py'>, 'os': <module 'os' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/os.py'>, 're': <module 're' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/re.py'>, 'sys': <module 'sys' (built-in)>, 'tokenize': <module 'tokenize' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tokenize.py'>, 'token': <module 'token' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/token.py'>, 'types': <module 'types' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/types.py'>, 'warnings': <module 'warnings' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/warnings.py'>, 'functools': <module 'functools' from '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/functools.py'>, 'builtins': <module 'builtins' (built-in)>, 'attrgetter': <class 'operator.attrgetter'>, 'namedtuple': <function namedtuple at 0x7f92bfb76160>, 'OrderedDict': <class 'collections.OrderedDict'>, 'mod_dict': {...}, 'k': 512, 'v': 'ASYNC_GENERATOR', 'CO_OPTIMIZED': 1, 'CO_NEWLOCALS': 2, 'CO_VARARGS': 4, 'CO_VARKEYWORDS': 8, 'CO_NESTED': 16, 'CO_GENERATOR': 32, 'CO_NOFREE': 64, 'CO_COROUTINE': 128, 'CO_ITERABLE_COROUTINE': 256, 'CO_ASYNC_GENERATOR': 512, 'TPFLAGS_IS_ABSTRACT': 1048576, 'ismodule': <function ismodule at 0x7f92bf59f1f0>, 'isclass': <function isclass at 0x7f92bf4fd4c0>, 'ismethod': <function ismethod at 0x7f92bf507e50>, 'ismethoddescriptor': <function ismethoddescriptor at 0x7f92bf507ee0>, 'isdatadescriptor': <function isdatadescriptor at 0x7f92bf507f70>, 'ismemberdescriptor': <function ismemberdescriptor at 0x7f92bf50b040>, 'isgetsetdescriptor': <function isgetsetdescriptor at 0x7f92bf50b0d0>, 'isfunction': <function isfunction at 0x7f92bf50b160>, '_has_code_flag': <function _has_code_flag at 0x7f92bf50b1f0>, 'isgeneratorfunction': <function isgeneratorfunction at 0x7f92bf50b280>, 'iscoroutinefunction': <function iscoroutinefunction at 0x7f92bf50b310>, 'isasyncgenfunction': <function isasyncgenfunction at 0x7f92bf50b3a0>, 'isasyncgen': <function isasyncgen at 0x7f92bf50b430>, 'isgenerator': <function isgenerator at 0x7f92bf50b4c0>, 'iscoroutine': <function iscoroutine at 0x7f92bf50b550>, 'isawaitable': <function isawaitable at 0x7f92bf50b5e0>, 'istraceback': <function istraceback at 0x7f92bf50b670>, 'isframe': <function isframe at 0x7f92bf50b700>, 'iscode': <function iscode at 0x7f92bf50b790>, 'isbuiltin': <function isbuiltin at 0x7f92bf50b820>, 'isroutine': <function isroutine at 0x7f92bf50b8b0>, 'isabstract': <function isabstract at 0x7f92bf50b940>, 'getmembers': <function getmembers at 0x7f92bf50b9d0>, 'Attribute': <class 'inspect.Attribute'>, 'classify_class_attrs': <function classify_class_attrs at 0x7f92bf50bdc0>, 'getmro': <function getmro at 0x7f92bf50be50>, 'unwrap': <function unwrap at 0x7f92bf50bee0>, 'indentsize': <function indentsize at 0x7f92bf50bf70>, '_findclass': <function _findclass at 0x7f92bf50c040>, '_finddoc': <function _finddoc at 0x7f92bf50c0d0>, 'getdoc': <function getdoc at 0x7f92bf50c160>, 'cleandoc': <function cleandoc at 0x7f92bf50c1f0>, 'getfile': <function getfile at 0x7f92bf50c280>, 'getmodulename': <function getmodulename at 0x7f92bf50c310>, 'getsourcefile': <function getsourcefile at 0x7f92bf50c3a0>, 'getabsfile': <function getabsfile at 0x7f92bf50c430>, 'modulesbyfile': {'/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap.py': 'importlib._bootstrap', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap_external.py': 'importlib._bootstrap_external', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/codecs.py': 'codecs', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/aliases.py': 'encodings.aliases', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/__init__.py': 'encodings', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/utf_8.py': 'encodings.utf_8', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/latin_1.py': 'encodings.latin_1', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/abc.py': 'abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/io.py': 'io', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/bin/.amethyst-wrapped': '__main__', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stat.py': 'stat', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_collections_abc.py': 'collections.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/genericpath.py': 'genericpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/posixpath.py': 'posixpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/os.py': 'os', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sitebuiltins.py': '_sitebuiltins', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so': '_heapq', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/heapq.py': 'heapq', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/keyword.py': 'keyword', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/operator.py': 'operator', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/reprlib.py': 'reprlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/__init__.py': 'collections', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/types.py': 'types', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/functools.py': 'functools', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site-packages/sitecustomize.py': 'sitecustomize', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site.py': 'site', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/enum.py': 'enum', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_constants.py': 'sre_constants', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_parse.py': 'sre_parse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_compile.py': 'sre_compile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copyreg.py': 'copyreg', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/re.py': 're', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/__init__.py': 'amethyst', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so': 'math', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so': '_datetime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/datetime.py': 'datetime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_socket.cpython-39-x86_64-linux-gnu.so': '_socket', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so': '_ssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/abc.py': 'collections.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so': 'select', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/selectors.py': 'selectors', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so': 'array', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/socket.py': 'socket', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_struct.cpython-39-x86_64-linux-gnu.so': '_struct', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/struct.py': 'struct', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/binascii.cpython-39-x86_64-linux-gnu.so': 'binascii', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/base64.py': 'base64', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/warnings.py': 'warnings', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ssl.py': 'ssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_weakrefset.py': '_weakrefset', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/weakref.py': 'weakref', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copy.py': 'copy', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextlib.py': 'contextlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ast.py': 'ast', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so': '_opcode', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/opcode.py': 'opcode', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dis.py': 'dis', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/__init__.py': 'importlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/machinery.py': 'importlib.machinery', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/token.py': 'token', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tokenize.py': 'tokenize', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/linecache.py': 'linecache', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/inspect.py': 'inspect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dataclasses.py': 'dataclasses', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/typing.py': 'typing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/__init__.py': 'concurrent', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/traceback.py': 'traceback', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/string.py': 'string', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/threading.py': 'threading', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/logging/__init__.py': 'logging', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/_base.py': 'concurrent.futures._base', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/__init__.py': 'concurrent.futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/signal.py': 'signal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so': 'grp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so': '_posixsubprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/subprocess.py': 'subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/constants.py': 'asyncio.constants', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/format_helpers.py': 'asyncio.format_helpers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_futures.py': 'asyncio.base_futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/log.py': 'asyncio.log', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/coroutines.py': 'asyncio.coroutines', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_contextvars.cpython-39-x86_64-linux-gnu.so': '_contextvars', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextvars.py': 'contextvars', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/exceptions.py': 'asyncio.exceptions', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_tasks.py': 'asyncio.base_tasks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_asyncio.cpython-39-x86_64-linux-gnu.so': '_asyncio', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/events.py': 'asyncio.events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/futures.py': 'asyncio.futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/protocols.py': 'asyncio.protocols', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/transports.py': 'asyncio.transports', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/sslproto.py': 'asyncio.sslproto', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/locks.py': 'asyncio.locks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/tasks.py': 'asyncio.tasks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/staggered.py': 'asyncio.staggered', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/trsock.py': 'asyncio.trsock', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_events.py': 'asyncio.base_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/runners.py': 'asyncio.runners', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/queues.py': 'asyncio.queues', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/streams.py': 'asyncio.streams', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/subprocess.py': 'asyncio.subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/threads.py': 'asyncio.threads', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_subprocess.py': 'asyncio.base_subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/selector_events.py': 'asyncio.selector_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/unix_events.py': 'asyncio.unix_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/__init__.py': 'asyncio', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/mime.py': 'amethyst.mime', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/response.py': 'amethyst.response', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__about__.py': 'cryptography.__about__', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__init__.py': 'cryptography', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/utils.py': 'cryptography.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/__init__.py': 'cryptography.hazmat', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/__init__.py': 'cryptography.hazmat.bindings', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_rust.abi3.so': 'cryptography.hazmat.bindings._rust', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/certificate_transparency.py': 'cryptography.x509.certificate_transparency', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/__init__.py': 'cryptography.hazmat.primitives', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/exceptions.py': 'cryptography.exceptions', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/hashes.py': 'cryptography.hazmat.primitives.hashes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_serialization.py': 'cryptography.hazmat.primitives._serialization', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py': 'cryptography.hazmat.primitives.asymmetric', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py': 'cryptography.hazmat.primitives.asymmetric.dh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py': 'cryptography.hazmat.primitives.asymmetric.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py': 'cryptography.hazmat.primitives.asymmetric.dsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/_oid.py': 'cryptography.hazmat._oid', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py': 'cryptography.hazmat.primitives.asymmetric.ec', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py': 'cryptography.hazmat.primitives.asymmetric.ed25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py': 'cryptography.hazmat.primitives.asymmetric.ed448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_asymmetric.py': 'cryptography.hazmat.primitives._asymmetric', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py': 'cryptography.hazmat.primitives.asymmetric.rsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py': 'cryptography.hazmat.primitives.asymmetric.x25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py': 'cryptography.hazmat.primitives.asymmetric.x448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/types.py': 'cryptography.hazmat.primitives.asymmetric.types', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/base.py': 'cryptography.hazmat.primitives.serialization.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py': 'cryptography.hazmat.primitives._cipheralgorithm', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/modes.py': 'cryptography.hazmat.primitives.ciphers.modes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/base.py': 'cryptography.hazmat.primitives.ciphers.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py': 'cryptography.hazmat.primitives.ciphers', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py': 'cryptography.hazmat.primitives.ciphers.algorithms', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/ssh.py': 'cryptography.hazmat.primitives.serialization.ssh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/__init__.py': 'cryptography.hazmat.primitives.serialization', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so': '_hashlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_blake2.cpython-39-x86_64-linux-gnu.so': '_blake2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hashlib.py': 'hashlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ipaddress.py': 'ipaddress', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hmac.py': 'hmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/constant_time.py': 'cryptography.hazmat.primitives.constant_time', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/__init__.py': 'email', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so': '_bisect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bisect.py': 'bisect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so': '_random', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so': '_sha512', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/random.py': 'random', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/__init__.py': 'urllib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/parse.py': 'urllib.parse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/locale.py': 'locale', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/calendar.py': 'calendar', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_parseaddr.py': 'email._parseaddr', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/base64mime.py': 'email.base64mime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/quoprimime.py': 'email.quoprimime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/errors.py': 'email.errors', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/quopri.py': 'quopri', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/encoders.py': 'email.encoders', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/charset.py': 'email.charset', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/utils.py': 'email.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/oid.py': 'cryptography.x509.oid', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/name.py': 'cryptography.x509.name', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/general_name.py': 'cryptography.x509.general_name', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/extensions.py': 'cryptography.x509.extensions', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/base.py': 'cryptography.x509.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/__init__.py': 'cryptography.x509', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/tls.py': 'amethyst.tls', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/server.py': 'amethyst.server', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/request.py': 'amethyst.request', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource.py': 'amethyst.resource', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/util.py': 'amethyst.util', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/handler.py': 'amethyst.handler', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_csv.cpython-39-x86_64-linux-gnu.so': '_csv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/csv.py': 'csv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/fnmatch.py': 'fnmatch', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ntpath.py': 'ntpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pathlib.py': 'pathlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/abc.py': 'importlib.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/util.py': 'importlib.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so': 'zlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compression.py': '_compression', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so': '_bz2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bz2.py': 'bz2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so': '_lzma', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lzma.py': 'lzma', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shutil.py': 'shutil', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zipfile.py': 'zipfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/configparser.py': 'configparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/metadata.py': 'importlib.metadata', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/__init__.py': 'amethyst_ext', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pkgutil.py': 'pkgutil', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/textwrap.py': 'textwrap', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/pydoc.py': 'amethyst_ext.pydoc', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/redirect.py': 'amethyst_ext.redirect', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource_registry.py': 'amethyst.resource_registry', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/config.py': 'amethyst.config', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so': '_json', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/scanner.py': 'json.scanner', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/decoder.py': 'json.decoder', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/encoder.py': 'json.encoder', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/__init__.py': 'json', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/kindergarten.py': 'amethyst.kindergarten', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootlocale.py': '_bootlocale', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so': '_queue', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/queue.py': 'queue', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/thread.py': 'concurrent.futures.thread', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/interfaces.py': 'cryptography.hazmat.backends.interfaces', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/__init__.py': 'cryptography.hazmat.backends', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/aead.py': 'cryptography.hazmat.backends.openssl.aead', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ciphers.py': 'cryptography.hazmat.backends.openssl.ciphers', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/cmac.py': 'cryptography.hazmat.backends.openssl.cmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dh.py': 'cryptography.hazmat.backends.openssl.dh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/utils.py': 'cryptography.hazmat.backends.openssl.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dsa.py': 'cryptography.hazmat.backends.openssl.dsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ec.py': 'cryptography.hazmat.backends.openssl.ec', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed25519.py': 'cryptography.hazmat.backends.openssl.ed25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed448.py': 'cryptography.hazmat.backends.openssl.ed448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hashes.py': 'cryptography.hazmat.backends.openssl.hashes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hmac.py': 'cryptography.hazmat.backends.openssl.hmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/poly1305.py': 'cryptography.hazmat.backends.openssl.poly1305', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py': 'cryptography.hazmat.primitives.asymmetric.padding', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/rsa.py': 'cryptography.hazmat.backends.openssl.rsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x25519.py': 'cryptography.hazmat.backends.openssl.x25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x448.py': 'cryptography.hazmat.backends.openssl.x448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/__init__.py': 'cryptography.hazmat.bindings.openssl', '/nix/store/2ljvnixc65lmplr0yhzz4axhmwr84aac-python3.9-cffi-1.15.0/lib/python3.9/site-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so': '_cffi_backend', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so': 'cryptography.hazmat.bindings._openssl', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py': 'cryptography.hazmat.bindings.openssl._conditional', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/binding.py': 'cryptography.hazmat.bindings.openssl.binding', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/__init__.py': 'cryptography.hazmat.primitives.kdf', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py': 'cryptography.hazmat.primitives.kdf.scrypt', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py': 'cryptography.hazmat.primitives.serialization.pkcs7', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py': 'cryptography.hazmat.primitives.serialization.pkcs12', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/backend.py': 'cryptography.hazmat.backends.openssl.backend', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/__init__.py': 'cryptography.hazmat.backends.openssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shlex.py': 'shlex', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so': '_lsprof', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/profile.py': 'profile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cProfile.py': 'cProfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/util.py': 'unittest.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/result.py': 'unittest.result', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/difflib.py': 'difflib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pprint.py': 'pprint', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/case.py': 'unittest.case', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/suite.py': 'unittest.suite', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/loader.py': 'unittest.loader', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/gettext.py': 'gettext', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/argparse.py': 'argparse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/signals.py': 'unittest.signals', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/runner.py': 'unittest.runner', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/main.py': 'unittest.main', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/__init__.py': 'unittest', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testinternalcapi.cpython-39-x86_64-linux-gnu.so': '_testinternalcapi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tempfile.py': 'tempfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pipes.py': 'pipes', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sched.py': 'sched', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/optparse.py': 'optparse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/entities.py': 'html.entities', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/__init__.py': 'html', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/platform.py': 'platform', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uuid.py': 'uuid', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixshmem.cpython-39-x86_64-linux-gnu.so': '_posixshmem', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/ocsp.py': 'cryptography.x509.ocsp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uu.py': 'uu', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/turtledemo/__init__.py': 'turtledemo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sqlite3.cpython-39-x86_64-linux-gnu.so': '_sqlite3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/dbapi2.py': 'sqlite3.dbapi2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/__init__.py': 'sqlite3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/xxlimited.cpython-39-x86_64-linux-gnu.so': 'xxlimited', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/this.py': 'this', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/iterators.py': 'email.iterators', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/response.py': 'urllib.response', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/error.py': 'urllib.error', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxtestfuzz.cpython-39-x86_64-linux-gnu.so': '_fuzz', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha256.cpython-39-x86_64-linux-gnu.so': '_sha256', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/numbers.py': 'numbers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pydecimal.py': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_tw.cpython-39-x86_64-linux-gnu.so': '_codecs_tw', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/process.py': 'multiprocessing.process', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compat_pickle.py': '_compat_pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_pickle.cpython-39-x86_64-linux-gnu.so': '_pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickle.py': 'pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/reduction.py': 'multiprocessing.reduction', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/context.py': 'multiprocessing.context', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/__init__.py': 'multiprocessing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/nturl2path.py': 'nturl2path', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/colorsys.py': 'colorsys', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/symtable.py': 'symtable', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/__init__.py': 'xml', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/parsers/__init__.py': 'xml.parsers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/poplib.py': 'poplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/telnetlib.py': 'telnetlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_kr.cpython-39-x86_64-linux-gnu.so': '_codecs_kr', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha1.cpython-39-x86_64-linux-gnu.so': '_sha1', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_strptime.py': '_strptime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/unicodedata.cpython-39-x86_64-linux-gnu.so': 'unicodedata', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stringprep.py': 'stringprep', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/header.py': 'email.header', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_policybase.py': 'email._policybase', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/feedparser.py': 'email.feedparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/parser.py': 'email.parser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_encoded_words.py': 'email._encoded_words', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/message.py': 'email.message', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cgi.py': 'cgi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shelve.py': 'shelve', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib2to3/__init__.py': 'lib2to3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so': '_crypt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/crypt.py': 'crypt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxsubinterpreters.cpython-39-x86_64-linux-gnu.so': '_xxsubinterpreters', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/getopt.py': 'getopt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/generator.py': 'email.generator', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/fcntl.cpython-39-x86_64-linux-gnu.so': 'fcntl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mailbox.py': 'mailbox', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pyio.py': '_pyio', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/__init__.py': 'pycparser.ply', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/yacc.py': 'pycparser.ply.yacc', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_ast.py': 'pycparser.c_ast', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/lex.py': 'pycparser.ply.lex', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_lexer.py': 'pycparser.c_lexer', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/plyparser.py': 'pycparser.plyparser', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ast_transforms.py': 'pycparser.ast_transforms', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_parser.py': 'pycparser.c_parser', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/__init__.py': 'pycparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha3.cpython-39-x86_64-linux-gnu.so': '_sha3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ctypes_test.cpython-39-x86_64-linux-gnu.so': '_ctypes_test', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so': 'termios', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tty.py': 'tty', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pty.py': 'pty', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/async_case.py': 'unittest.async_case', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/py_compile.py': 'py_compile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/filecmp.py': 'filecmp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/compileall.py': 'compileall', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testcapi.cpython-39-x86_64-linux-gnu.so': '_testcapi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sysconfig.py': 'sysconfig', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/trace.py': 'trace', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py': '_sysconfigdata__linux_x86_64-linux-gnu', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_tzpath.py': 'zoneinfo._tzpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_common.py': 'zoneinfo._common', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so': '_zoneinfo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/__init__.py': 'zoneinfo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_dbm.cpython-39-x86_64-linux-gnu.so': '_dbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/wsgiref/__init__.py': 'wsgiref', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so': '_multiprocessing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/util.py': 'multiprocessing.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/connection.py': 'multiprocessing.connection', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/queues.py': 'multiprocessing.queues', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickletools.py': 'pickletools', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/ndbm.py': 'dbm.ndbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/__init__.py': 'dbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/decimal.py': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/smtplib.py': 'smtplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mimetypes.py': 'mimetypes', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncore.py': 'asyncore', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/syslog.cpython-39-x86_64-linux-gnu.so': 'syslog', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ftplib.py': 'ftplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/__init__.py': 'xml.etree', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/ElementPath.py': 'xml.etree.ElementPath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/pyexpat.cpython-39-x86_64-linux-gnu.so': 'pyexpat', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_elementtree.cpython-39-x86_64-linux-gnu.so': '_elementtree', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/venv/__init__.py': 'venv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/http/__init__.py': 'http', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootsubprocess.py': '_bootsubprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_statistics.cpython-39-x86_64-linux-gnu.so': '_statistics', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pydoc.py': 'pydoc'}, '_filesbymodname': {'_frozen_importlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap.py', '_frozen_importlib_external': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap_external.py', 'codecs': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/codecs.py', 'encodings.aliases': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/aliases.py', 'encodings': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/__init__.py', 'encodings.utf_8': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/utf_8.py', 'encodings.latin_1': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/latin_1.py', 'abc': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/abc.py', 'io': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/io.py', '__main__': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/bin/.amethyst-wrapped', 'stat': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stat.py', '_collections_abc': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_collections_abc.py', 'genericpath': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/genericpath.py', 'posixpath': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/posixpath.py', 'os.path': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/posixpath.py', 'os': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/os.py', '_sitebuiltins': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sitebuiltins.py', '_heapq': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so', 'heapq': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/heapq.py', 'keyword': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/keyword.py', 'operator': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/operator.py', 'reprlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/reprlib.py', 'collections': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/__init__.py', 'types': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/types.py', 'functools': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/functools.py', 'sitecustomize': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site-packages/sitecustomize.py', 'site': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site.py', 'enum': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/enum.py', 'sre_constants': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_constants.py', 'sre_parse': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_parse.py', 'sre_compile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_compile.py', 'copyreg': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copyreg.py', 're': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/re.py', 'amethyst': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/__init__.py', 'math': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so', '_datetime': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so', 'datetime': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/datetime.py', '_socket': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_socket.cpython-39-x86_64-linux-gnu.so', '_ssl': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so', 'collections.abc': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/abc.py', 'select': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so', 'selectors': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/selectors.py', 'array': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so', 'socket': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/socket.py', '_struct': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_struct.cpython-39-x86_64-linux-gnu.so', 'struct': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/struct.py', 'binascii': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/binascii.cpython-39-x86_64-linux-gnu.so', 'base64': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/base64.py', 'warnings': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/warnings.py', 'ssl': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ssl.py', '_weakrefset': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_weakrefset.py', 'weakref': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/weakref.py', 'copy': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copy.py', 'contextlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextlib.py', 'ast': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ast.py', '_opcode': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so', 'opcode': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/opcode.py', 'dis': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dis.py', 'importlib._bootstrap': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap.py', 'importlib._bootstrap_external': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap_external.py', 'importlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/__init__.py', 'importlib.machinery': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/machinery.py', 'token': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/token.py', 'tokenize': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tokenize.py', 'linecache': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/linecache.py', 'inspect': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/inspect.py', 'dataclasses': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dataclasses.py', 'typing': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/typing.py', 'concurrent': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/__init__.py', 'traceback': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/traceback.py', 'string': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/string.py', 'threading': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/threading.py', 'logging': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/logging/__init__.py', 'concurrent.futures._base': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/_base.py', 'concurrent.futures': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/__init__.py', 'signal': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/signal.py', 'grp': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so', '_posixsubprocess': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so', 'subprocess': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/subprocess.py', 'asyncio.constants': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/constants.py', 'asyncio.format_helpers': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/format_helpers.py', 'asyncio.base_futures': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_futures.py', 'asyncio.log': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/log.py', 'asyncio.coroutines': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/coroutines.py', '_contextvars': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_contextvars.cpython-39-x86_64-linux-gnu.so', 'contextvars': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextvars.py', 'asyncio.exceptions': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/exceptions.py', 'asyncio.base_tasks': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_tasks.py', '_asyncio': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_asyncio.cpython-39-x86_64-linux-gnu.so', 'asyncio.events': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/events.py', 'asyncio.futures': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/futures.py', 'asyncio.protocols': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/protocols.py', 'asyncio.transports': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/transports.py', 'asyncio.sslproto': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/sslproto.py', 'asyncio.locks': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/locks.py', 'asyncio.tasks': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/tasks.py', 'asyncio.staggered': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/staggered.py', 'asyncio.trsock': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/trsock.py', 'asyncio.base_events': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_events.py', 'asyncio.runners': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/runners.py', 'asyncio.queues': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/queues.py', 'asyncio.streams': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/streams.py', 'asyncio.subprocess': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/subprocess.py', 'asyncio.threads': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/threads.py', 'asyncio.base_subprocess': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_subprocess.py', 'asyncio.selector_events': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/selector_events.py', 'asyncio.unix_events': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/unix_events.py', 'asyncio': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/__init__.py', 'amethyst.mime': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/mime.py', 'amethyst.response': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/response.py', 'cryptography.__about__': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__about__.py', 'cryptography': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__init__.py', 'cryptography.utils': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/utils.py', 'cryptography.hazmat': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/__init__.py', 'cryptography.hazmat.bindings': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/__init__.py', 'cryptography.hazmat.bindings._rust': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_rust.abi3.so', 'cryptography.x509.certificate_transparency': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/certificate_transparency.py', 'cryptography.hazmat.primitives': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/__init__.py', 'cryptography.exceptions': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/exceptions.py', 'cryptography.hazmat.primitives.hashes': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/hashes.py', 'cryptography.hazmat.primitives._serialization': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_serialization.py', 'cryptography.hazmat.primitives.asymmetric': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py', 'cryptography.hazmat.primitives.asymmetric.dh': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py', 'cryptography.hazmat.primitives.asymmetric.utils': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py', 'cryptography.hazmat.primitives.asymmetric.dsa': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py', 'cryptography.hazmat._oid': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/_oid.py', 'cryptography.hazmat.primitives.asymmetric.ec': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py', 'cryptography.hazmat.primitives.asymmetric.ed25519': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py', 'cryptography.hazmat.primitives.asymmetric.ed448': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py', 'cryptography.hazmat.primitives._asymmetric': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_asymmetric.py', 'cryptography.hazmat.primitives.asymmetric.rsa': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py', 'cryptography.hazmat.primitives.asymmetric.x25519': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py', 'cryptography.hazmat.primitives.asymmetric.x448': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py', 'cryptography.hazmat.primitives.asymmetric.types': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/types.py', 'cryptography.hazmat.primitives.serialization.base': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/base.py', 'cryptography.hazmat.primitives._cipheralgorithm': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py', 'cryptography.hazmat.primitives.ciphers.modes': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/modes.py', 'cryptography.hazmat.primitives.ciphers.base': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/base.py', 'cryptography.hazmat.primitives.ciphers': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py', 'cryptography.hazmat.primitives.ciphers.algorithms': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py', 'cryptography.hazmat.primitives.serialization.ssh': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/ssh.py', 'cryptography.hazmat.primitives.serialization': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/__init__.py', '_hashlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so', '_blake2': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_blake2.cpython-39-x86_64-linux-gnu.so', 'hashlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hashlib.py', 'ipaddress': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ipaddress.py', 'hmac': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hmac.py', 'cryptography.hazmat.primitives.constant_time': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/constant_time.py', 'email': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/__init__.py', '_bisect': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so', 'bisect': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bisect.py', '_random': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so', '_sha512': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so', 'random': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/random.py', 'urllib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/__init__.py', 'urllib.parse': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/parse.py', 'locale': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/locale.py', 'calendar': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/calendar.py', 'email._parseaddr': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_parseaddr.py', 'email.base64mime': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/base64mime.py', 'email.quoprimime': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/quoprimime.py', 'email.errors': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/errors.py', 'quopri': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/quopri.py', 'email.encoders': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/encoders.py', 'email.charset': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/charset.py', 'email.utils': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/utils.py', 'cryptography.x509.oid': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/oid.py', 'cryptography.x509.name': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/name.py', 'cryptography.x509.general_name': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/general_name.py', 'cryptography.x509.extensions': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/extensions.py', 'cryptography.x509.base': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/base.py', 'cryptography.x509': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/__init__.py', 'amethyst.tls': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/tls.py', 'amethyst.server': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/server.py', 'amethyst.request': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/request.py', 'amethyst.resource': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource.py', 'amethyst.util': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/util.py', 'amethyst.handler': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/handler.py', '_csv': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_csv.cpython-39-x86_64-linux-gnu.so', 'csv': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/csv.py', 'fnmatch': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/fnmatch.py', 'ntpath': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ntpath.py', 'pathlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pathlib.py', 'importlib.abc': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/abc.py', 'importlib.util': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/util.py', 'zlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so', '_compression': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compression.py', '_bz2': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so', 'bz2': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bz2.py', '_lzma': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so', 'lzma': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lzma.py', 'shutil': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shutil.py', 'zipfile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zipfile.py', 'configparser': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/configparser.py', 'importlib.metadata': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/metadata.py', 'amethyst_ext': '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/__init__.py', 'pkgutil': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pkgutil.py', 'textwrap': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/textwrap.py', 'amethyst_ext.pydoc': '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/pydoc.py', 'amethyst_ext.redirect': '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/redirect.py', 'amethyst.resource_registry': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource_registry.py', 'amethyst.config': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/config.py', '_json': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so', 'json.scanner': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/scanner.py', 'json.decoder': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/decoder.py', 'json.encoder': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/encoder.py', 'json': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/__init__.py', 'amethyst.kindergarten': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/kindergarten.py', '_bootlocale': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootlocale.py', '_queue': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so', 'queue': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/queue.py', 'concurrent.futures.thread': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/thread.py', 'cryptography.hazmat.backends.interfaces': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/interfaces.py', 'cryptography.hazmat.backends': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/__init__.py', 'cryptography.hazmat.backends.openssl.aead': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/aead.py', 'cryptography.hazmat.backends.openssl.ciphers': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ciphers.py', 'cryptography.hazmat.backends.openssl.cmac': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/cmac.py', 'cryptography.hazmat.backends.openssl.dh': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dh.py', 'cryptography.hazmat.backends.openssl.utils': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/utils.py', 'cryptography.hazmat.backends.openssl.dsa': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dsa.py', 'cryptography.hazmat.backends.openssl.ec': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ec.py', 'cryptography.hazmat.backends.openssl.ed25519': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed25519.py', 'cryptography.hazmat.backends.openssl.ed448': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed448.py', 'cryptography.hazmat.backends.openssl.hashes': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hashes.py', 'cryptography.hazmat.backends.openssl.hmac': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hmac.py', 'cryptography.hazmat.backends.openssl.poly1305': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/poly1305.py', 'cryptography.hazmat.primitives.asymmetric.padding': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py', 'cryptography.hazmat.backends.openssl.rsa': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/rsa.py', 'cryptography.hazmat.backends.openssl.x25519': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x25519.py', 'cryptography.hazmat.backends.openssl.x448': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x448.py', 'cryptography.hazmat.bindings.openssl': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/__init__.py', '_cffi_backend': '/nix/store/2ljvnixc65lmplr0yhzz4axhmwr84aac-python3.9-cffi-1.15.0/lib/python3.9/site-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so', '_openssl': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so', 'cryptography.hazmat.bindings._openssl': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so', 'cryptography.hazmat.bindings.openssl._conditional': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py', 'cryptography.hazmat.bindings.openssl.binding': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/binding.py', 'cryptography.hazmat.primitives.kdf': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/__init__.py', 'cryptography.hazmat.primitives.kdf.scrypt': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py', 'cryptography.hazmat.primitives.serialization.pkcs7': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py', 'cryptography.hazmat.primitives.serialization.pkcs12': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py', 'cryptography.hazmat.backends.openssl.backend': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/backend.py', 'cryptography.hazmat.backends.openssl': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/__init__.py', 'shlex': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shlex.py', '_lsprof': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so', 'profile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/profile.py', 'cProfile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cProfile.py', 'unittest.util': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/util.py', 'unittest.result': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/result.py', 'difflib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/difflib.py', 'pprint': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pprint.py', 'unittest.case': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/case.py', 'unittest.suite': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/suite.py', 'unittest.loader': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/loader.py', 'gettext': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/gettext.py', 'argparse': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/argparse.py', 'unittest.signals': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/signals.py', 'unittest.runner': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/runner.py', 'unittest.main': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/main.py', 'unittest': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/__init__.py', '_testinternalcapi': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testinternalcapi.cpython-39-x86_64-linux-gnu.so', 'tempfile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tempfile.py', 'pipes': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pipes.py', 'sched': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sched.py', 'optparse': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/optparse.py', 'html.entities': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/entities.py', 'html': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/__init__.py', 'platform': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/platform.py', 'uuid': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uuid.py', '_posixshmem': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixshmem.cpython-39-x86_64-linux-gnu.so', 'cryptography.x509.ocsp': '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/ocsp.py', 'uu': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uu.py', 'turtledemo': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/turtledemo/__init__.py', '_sqlite3': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sqlite3.cpython-39-x86_64-linux-gnu.so', 'sqlite3.dbapi2': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/dbapi2.py', 'sqlite3': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/__init__.py', 'xxlimited': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/xxlimited.cpython-39-x86_64-linux-gnu.so', 'this': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/this.py', 'email.iterators': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/iterators.py', 'urllib.response': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/response.py', 'urllib.error': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/error.py', '_xxtestfuzz': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxtestfuzz.cpython-39-x86_64-linux-gnu.so', '_sha256': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha256.cpython-39-x86_64-linux-gnu.so', 'numbers': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/numbers.py', '_pydecimal': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pydecimal.py', '_codecs_tw': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_tw.cpython-39-x86_64-linux-gnu.so', 'multiprocessing.process': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/process.py', '_compat_pickle': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compat_pickle.py', '_pickle': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_pickle.cpython-39-x86_64-linux-gnu.so', 'pickle': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickle.py', 'multiprocessing.reduction': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/reduction.py', 'multiprocessing.context': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/context.py', '__mp_main__': '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/bin/.amethyst-wrapped', 'multiprocessing': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/__init__.py', 'nturl2path': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/nturl2path.py', 'colorsys': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/colorsys.py', 'symtable': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/symtable.py', 'xml': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/__init__.py', 'xml.parsers': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/parsers/__init__.py', 'poplib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/poplib.py', 'telnetlib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/telnetlib.py', '_decimal': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so', '_codecs_kr': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_kr.cpython-39-x86_64-linux-gnu.so', '_sha1': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha1.cpython-39-x86_64-linux-gnu.so', '_strptime': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_strptime.py', 'unicodedata': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/unicodedata.cpython-39-x86_64-linux-gnu.so', 'stringprep': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stringprep.py', 'email.header': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/header.py', 'email._policybase': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_policybase.py', 'email.feedparser': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/feedparser.py', 'email.parser': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/parser.py', 'email._encoded_words': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_encoded_words.py', 'email.message': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/message.py', 'cgi': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cgi.py', 'shelve': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shelve.py', 'lib2to3': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib2to3/__init__.py', '_crypt': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so', 'crypt': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/crypt.py', '_xxsubinterpreters': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxsubinterpreters.cpython-39-x86_64-linux-gnu.so', 'getopt': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/getopt.py', 'email.generator': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/generator.py', 'fcntl': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/fcntl.cpython-39-x86_64-linux-gnu.so', 'mailbox': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mailbox.py', '_pyio': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pyio.py', 'pycparser.ply': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/__init__.py', 'pycparser.ply.yacc': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/yacc.py', 'pycparser.c_ast': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_ast.py', 'pycparser.ply.lex': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/lex.py', 'pycparser.c_lexer': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_lexer.py', 'pycparser.plyparser': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/plyparser.py', 'pycparser.ast_transforms': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ast_transforms.py', 'pycparser.c_parser': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_parser.py', 'pycparser': '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/__init__.py', '_sha3': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha3.cpython-39-x86_64-linux-gnu.so', '_ctypes_test': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ctypes_test.cpython-39-x86_64-linux-gnu.so', 'termios': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so', 'tty': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tty.py', 'pty': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pty.py', 'unittest.async_case': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/async_case.py', 'py_compile': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/py_compile.py', 'filecmp': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/filecmp.py', 'compileall': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/compileall.py', '_testcapi': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testcapi.cpython-39-x86_64-linux-gnu.so', 'sysconfig': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sysconfig.py', 'trace': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/trace.py', '_sysconfigdata__linux_x86_64-linux-gnu': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py', 'zoneinfo._tzpath': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_tzpath.py', 'zoneinfo._common': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_common.py', '_zoneinfo': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so', 'zoneinfo': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/__init__.py', '_dbm': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_dbm.cpython-39-x86_64-linux-gnu.so', 'wsgiref': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/wsgiref/__init__.py', '_multiprocessing': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so', 'multiprocessing.util': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/util.py', 'multiprocessing.connection': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/connection.py', 'multiprocessing.queues': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/queues.py', 'pickletools': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickletools.py', 'dbm.ndbm': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/ndbm.py', 'dbm': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/__init__.py', 'decimal': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/decimal.py', 'smtplib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/smtplib.py', 'mimetypes': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mimetypes.py', 'asyncore': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncore.py', 'syslog': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/syslog.cpython-39-x86_64-linux-gnu.so', 'ftplib': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ftplib.py', 'xml.etree': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/__init__.py', 'xml.etree.ElementPath': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/ElementPath.py', 'pyexpat': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/pyexpat.cpython-39-x86_64-linux-gnu.so', '_elementtree': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_elementtree.cpython-39-x86_64-linux-gnu.so', 'venv': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/venv/__init__.py', 'http': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/http/__init__.py', '_bootsubprocess': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootsubprocess.py', '_statistics': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_statistics.cpython-39-x86_64-linux-gnu.so', 'pydoc': '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pydoc.py'}, 'getmodule': <function getmodule at 0x7f92bf50c4c0>, 'ClassFoundException': <class 'inspect.ClassFoundException'>, '_ClassFinder': <class 'inspect._ClassFinder'>, 'findsource': <function findsource at 0x7f92bf50c550>, 'getcomments': <function getcomments at 0x7f92bf50c790>, 'EndOfBlock': <class 'inspect.EndOfBlock'>, 'BlockFinder': <class 'inspect.BlockFinder'>, 'getblock': <function getblock at 0x7f92bf50c820>, 'getsourcelines': <function getsourcelines at 0x7f92bf50c9d0>, 'getsource': <function getsource at 0x7f92bf50ca60>, 'walktree': <function walktree at 0x7f92bf50caf0>, 'getclasstree': <function getclasstree at 0x7f92bf50cb80>, 'Arguments': <class 'inspect.Arguments'>, 'getargs': <function getargs at 0x7f92bf50cf70>, 'ArgSpec': <class 'inspect.ArgSpec'>, 'getargspec': <function getargspec at 0x7f92bf5103a0>, 'FullArgSpec': <class 'inspect.FullArgSpec'>, 'getfullargspec': <function getfullargspec at 0x7f92bf5108b0>, 'ArgInfo': <class 'inspect.ArgInfo'>, 'getargvalues': <function getargvalues at 0x7f92bf510ca0>, 'formatannotation': <function formatannotation at 0x7f92bf510d30>, 'formatannotationrelativeto': <function formatannotationrelativeto at 0x7f92bf510dc0>, 'formatargspec': <function formatargspec at 0x7f92bf512160>, 'formatargvalues': <function formatargvalues at 0x7f92bf5123a0>, '_missing_arguments': <function _missing_arguments at 0x7f92bf512430>, '_too_many': <function _too_many at 0x7f92bf5124c0>, 'getcallargs': <function getcallargs at 0x7f92bf512550>, 'ClosureVars': <class 'inspect.ClosureVars'>, 'getclosurevars': <function getclosurevars at 0x7f92bf512940>, 'Traceback': <class 'inspect.Traceback'>, 'getframeinfo': <function getframeinfo at 0x7f92bf512dc0>, 'getlineno': <function getlineno at 0x7f92bf512e50>, 'FrameInfo': <class 'inspect.FrameInfo'>, 'getouterframes': <function getouterframes at 0x7f92bf517310>, 'getinnerframes': <function getinnerframes at 0x7f92bf5173a0>, 'currentframe': <function currentframe at 0x7f92bf517430>, 'stack': <function stack at 0x7f92bf5174c0>, 'trace': <function trace at 0x7f92bf517550>, '_sentinel': <object object at 0x7f92bfcfe960>, '_static_getmro': <function _static_getmro at 0x7f92bf5175e0>, '_check_instance': <function _check_instance at 0x7f92bf517670>, '_check_class': <function _check_class at 0x7f92bf517700>, '_is_type': <function _is_type at 0x7f92bf517790>, '_shadowed_dict': <function _shadowed_dict at 0x7f92bf517820>, 'getattr_static': <function getattr_static at 0x7f92bf5178b0>, 'GEN_CREATED': 'GEN_CREATED', 'GEN_RUNNING': 'GEN_RUNNING', 'GEN_SUSPENDED': 'GEN_SUSPENDED', 'GEN_CLOSED': 'GEN_CLOSED', 'getgeneratorstate': <function getgeneratorstate at 0x7f92bf517940>, 'getgeneratorlocals': <function getgeneratorlocals at 0x7f92bf5179d0>, 'CORO_CREATED': 'CORO_CREATED', 'CORO_RUNNING': 'CORO_RUNNING', 'CORO_SUSPENDED': 'CORO_SUSPENDED', 'CORO_CLOSED': 'CORO_CLOSED', 'getcoroutinestate': <function getcoroutinestate at 0x7f92bf517a60>, 'getcoroutinelocals': <function getcoroutinelocals at 0x7f92bf517af0>, '_WrapperDescriptor': <class 'wrapper_descriptor'>, '_MethodWrapper': <class 'method-wrapper'>, '_ClassMethodWrapper': <class 'classmethod_descriptor'>, '_NonUserDefinedCallables': (<class 'wrapper_descriptor'>, <class 'method-wrapper'>, <class 'classmethod_descriptor'>, <class 'builtin_function_or_method'>), '_signature_get_user_defined_method': <function _signature_get_user_defined_method at 0x7f92bf517b80>, '_signature_get_partial': <function _signature_get_partial at 0x7f92bf517c10>, '_signature_bound_method': <function _signature_bound_method at 0x7f92bf517ca0>, '_signature_is_builtin': <function _signature_is_builtin at 0x7f92bf517d30>, '_signature_is_functionlike': <function _signature_is_functionlike at 0x7f92bf517dc0>, '_signature_get_bound_param': <function _signature_get_bound_param at 0x7f92bf517e50>, '_signature_strip_non_python_syntax': <function _signature_strip_non_python_syntax at 0x7f92bf517ee0>, '_signature_fromstr': <function _signature_fromstr at 0x7f92bf517f70>, '_signature_from_builtin': <function _signature_from_builtin at 0x7f92bf515040>, '_signature_from_function': <function _signature_from_function at 0x7f92bf5150d0>, '_signature_from_callable': <function _signature_from_callable at 0x7f92bf515160>, '_void': <class 'inspect._void'>, '_empty': <class 'inspect._empty'>, '_ParameterKind': <enum '_ParameterKind'>, '_POSITIONAL_ONLY': <_ParameterKind.POSITIONAL_ONLY: 0>, '_POSITIONAL_OR_KEYWORD': <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>, '_VAR_POSITIONAL': <_ParameterKind.VAR_POSITIONAL: 2>, '_KEYWORD_ONLY': <_ParameterKind.KEYWORD_ONLY: 3>, '_VAR_KEYWORD': <_ParameterKind.VAR_KEYWORD: 4>, '_PARAM_NAME_MAPPING': {<_ParameterKind.POSITIONAL_ONLY: 0>: 'positional-only', <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>: 'positional or keyword', <_ParameterKind.VAR_POSITIONAL: 2>: 'variadic positional', <_ParameterKind.KEYWORD_ONLY: 3>: 'keyword-only', <_ParameterKind.VAR_KEYWORD: 4>: 'variadic keyword'}, 'Parameter': <class 'inspect.Parameter'>, 'BoundArguments': <class 'inspect.BoundArguments'>, 'Signature': <class 'inspect.Signature'>, 'signature': <function signature at 0x7f92bf5151f0>, '_main': <function _main at 0x7f92bf51b940>, '__warningregistry__': {'version': 0, ('int_from_bytes is deprecated, use int.from_bytes instead', <class 'cryptography.utils.CryptographyDeprecationWarning'>, 351): True}}
modulesbyfile = {'/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap.py': 'importlib._bootstrap', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/_bootstrap_external.py': 'importlib._bootstrap_external', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/codecs.py': 'codecs', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/aliases.py': 'encodings.aliases', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/__init__.py': 'encodings', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/utf_8.py': 'encodings.utf_8', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/encodings/latin_1.py': 'encodings.latin_1', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/abc.py': 'abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/io.py': 'io', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/bin/.amethyst-wrapped': '__main__', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stat.py': 'stat', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_collections_abc.py': 'collections.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/genericpath.py': 'genericpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/posixpath.py': 'posixpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/os.py': 'os', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sitebuiltins.py': '_sitebuiltins', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so': '_heapq', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/heapq.py': 'heapq', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/keyword.py': 'keyword', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/operator.py': 'operator', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/reprlib.py': 'reprlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/__init__.py': 'collections', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/types.py': 'types', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/functools.py': 'functools', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site-packages/sitecustomize.py': 'sitecustomize', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/site.py': 'site', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/enum.py': 'enum', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_constants.py': 'sre_constants', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_parse.py': 'sre_parse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sre_compile.py': 'sre_compile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copyreg.py': 'copyreg', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/re.py': 're', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/__init__.py': 'amethyst', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so': 'math', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so': '_datetime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/datetime.py': 'datetime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_socket.cpython-39-x86_64-linux-gnu.so': '_socket', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so': '_ssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/collections/abc.py': 'collections.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so': 'select', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/selectors.py': 'selectors', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so': 'array', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/socket.py': 'socket', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_struct.cpython-39-x86_64-linux-gnu.so': '_struct', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/struct.py': 'struct', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/binascii.cpython-39-x86_64-linux-gnu.so': 'binascii', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/base64.py': 'base64', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/warnings.py': 'warnings', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ssl.py': 'ssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_weakrefset.py': '_weakrefset', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/weakref.py': 'weakref', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/copy.py': 'copy', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextlib.py': 'contextlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ast.py': 'ast', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so': '_opcode', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/opcode.py': 'opcode', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dis.py': 'dis', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/__init__.py': 'importlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/machinery.py': 'importlib.machinery', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/token.py': 'token', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tokenize.py': 'tokenize', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/linecache.py': 'linecache', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/inspect.py': 'inspect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dataclasses.py': 'dataclasses', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/typing.py': 'typing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/__init__.py': 'concurrent', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/traceback.py': 'traceback', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/string.py': 'string', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/threading.py': 'threading', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/logging/__init__.py': 'logging', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/_base.py': 'concurrent.futures._base', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/__init__.py': 'concurrent.futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/signal.py': 'signal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so': 'grp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so': '_posixsubprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/subprocess.py': 'subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/constants.py': 'asyncio.constants', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/format_helpers.py': 'asyncio.format_helpers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_futures.py': 'asyncio.base_futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/log.py': 'asyncio.log', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/coroutines.py': 'asyncio.coroutines', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_contextvars.cpython-39-x86_64-linux-gnu.so': '_contextvars', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/contextvars.py': 'contextvars', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/exceptions.py': 'asyncio.exceptions', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_tasks.py': 'asyncio.base_tasks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_asyncio.cpython-39-x86_64-linux-gnu.so': '_asyncio', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/events.py': 'asyncio.events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/futures.py': 'asyncio.futures', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/protocols.py': 'asyncio.protocols', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/transports.py': 'asyncio.transports', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/sslproto.py': 'asyncio.sslproto', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/locks.py': 'asyncio.locks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/tasks.py': 'asyncio.tasks', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/staggered.py': 'asyncio.staggered', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/trsock.py': 'asyncio.trsock', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_events.py': 'asyncio.base_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/runners.py': 'asyncio.runners', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/queues.py': 'asyncio.queues', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/streams.py': 'asyncio.streams', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/subprocess.py': 'asyncio.subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/threads.py': 'asyncio.threads', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/base_subprocess.py': 'asyncio.base_subprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/selector_events.py': 'asyncio.selector_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/unix_events.py': 'asyncio.unix_events', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncio/__init__.py': 'asyncio', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/mime.py': 'amethyst.mime', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/response.py': 'amethyst.response', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__about__.py': 'cryptography.__about__', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/__init__.py': 'cryptography', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/utils.py': 'cryptography.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/__init__.py': 'cryptography.hazmat', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/__init__.py': 'cryptography.hazmat.bindings', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_rust.abi3.so': 'cryptography.hazmat.bindings._rust', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/certificate_transparency.py': 'cryptography.x509.certificate_transparency', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/__init__.py': 'cryptography.hazmat.primitives', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/exceptions.py': 'cryptography.exceptions', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/hashes.py': 'cryptography.hazmat.primitives.hashes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_serialization.py': 'cryptography.hazmat.primitives._serialization', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py': 'cryptography.hazmat.primitives.asymmetric', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py': 'cryptography.hazmat.primitives.asymmetric.dh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py': 'cryptography.hazmat.primitives.asymmetric.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py': 'cryptography.hazmat.primitives.asymmetric.dsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/_oid.py': 'cryptography.hazmat._oid', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py': 'cryptography.hazmat.primitives.asymmetric.ec', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py': 'cryptography.hazmat.primitives.asymmetric.ed25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py': 'cryptography.hazmat.primitives.asymmetric.ed448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_asymmetric.py': 'cryptography.hazmat.primitives._asymmetric', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py': 'cryptography.hazmat.primitives.asymmetric.rsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py': 'cryptography.hazmat.primitives.asymmetric.x25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py': 'cryptography.hazmat.primitives.asymmetric.x448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/types.py': 'cryptography.hazmat.primitives.asymmetric.types', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/base.py': 'cryptography.hazmat.primitives.serialization.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py': 'cryptography.hazmat.primitives._cipheralgorithm', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/modes.py': 'cryptography.hazmat.primitives.ciphers.modes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/base.py': 'cryptography.hazmat.primitives.ciphers.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py': 'cryptography.hazmat.primitives.ciphers', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py': 'cryptography.hazmat.primitives.ciphers.algorithms', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/ssh.py': 'cryptography.hazmat.primitives.serialization.ssh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/__init__.py': 'cryptography.hazmat.primitives.serialization', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so': '_hashlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_blake2.cpython-39-x86_64-linux-gnu.so': '_blake2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hashlib.py': 'hashlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ipaddress.py': 'ipaddress', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/hmac.py': 'hmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/constant_time.py': 'cryptography.hazmat.primitives.constant_time', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/__init__.py': 'email', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so': '_bisect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bisect.py': 'bisect', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so': '_random', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so': '_sha512', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/random.py': 'random', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/__init__.py': 'urllib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/parse.py': 'urllib.parse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/locale.py': 'locale', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/calendar.py': 'calendar', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_parseaddr.py': 'email._parseaddr', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/base64mime.py': 'email.base64mime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/quoprimime.py': 'email.quoprimime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/errors.py': 'email.errors', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/quopri.py': 'quopri', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/encoders.py': 'email.encoders', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/charset.py': 'email.charset', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/utils.py': 'email.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/oid.py': 'cryptography.x509.oid', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/name.py': 'cryptography.x509.name', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/general_name.py': 'cryptography.x509.general_name', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/extensions.py': 'cryptography.x509.extensions', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/base.py': 'cryptography.x509.base', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/__init__.py': 'cryptography.x509', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/tls.py': 'amethyst.tls', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/server.py': 'amethyst.server', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/request.py': 'amethyst.request', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource.py': 'amethyst.resource', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/util.py': 'amethyst.util', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/handler.py': 'amethyst.handler', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_csv.cpython-39-x86_64-linux-gnu.so': '_csv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/csv.py': 'csv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/fnmatch.py': 'fnmatch', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ntpath.py': 'ntpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pathlib.py': 'pathlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/abc.py': 'importlib.abc', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/util.py': 'importlib.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so': 'zlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compression.py': '_compression', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so': '_bz2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/bz2.py': 'bz2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so': '_lzma', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lzma.py': 'lzma', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shutil.py': 'shutil', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zipfile.py': 'zipfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/configparser.py': 'configparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/importlib/metadata.py': 'importlib.metadata', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/__init__.py': 'amethyst_ext', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pkgutil.py': 'pkgutil', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/textwrap.py': 'textwrap', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/pydoc.py': 'amethyst_ext.pydoc', '/nix/store/f8p87m3sfv6sz8scmyxnmsfkj3brh3fs-python3.9-amethyst_extensions-0.0.1/lib/python3.9/site-packages/amethyst_ext/redirect.py': 'amethyst_ext.redirect', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/resource_registry.py': 'amethyst.resource_registry', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/config.py': 'amethyst.config', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so': '_json', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/scanner.py': 'json.scanner', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/decoder.py': 'json.decoder', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/encoder.py': 'json.encoder', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/json/__init__.py': 'json', '/nix/store/yycyafj9l8c4f6mkqng6xy8f23i7rhwm-amethyst-0.0.1/lib/python3.9/site-packages/amethyst/kindergarten.py': 'amethyst.kindergarten', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootlocale.py': '_bootlocale', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so': '_queue', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/queue.py': 'queue', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/concurrent/futures/thread.py': 'concurrent.futures.thread', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/interfaces.py': 'cryptography.hazmat.backends.interfaces', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/__init__.py': 'cryptography.hazmat.backends', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/aead.py': 'cryptography.hazmat.backends.openssl.aead', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ciphers.py': 'cryptography.hazmat.backends.openssl.ciphers', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/cmac.py': 'cryptography.hazmat.backends.openssl.cmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dh.py': 'cryptography.hazmat.backends.openssl.dh', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/utils.py': 'cryptography.hazmat.backends.openssl.utils', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/dsa.py': 'cryptography.hazmat.backends.openssl.dsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ec.py': 'cryptography.hazmat.backends.openssl.ec', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed25519.py': 'cryptography.hazmat.backends.openssl.ed25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/ed448.py': 'cryptography.hazmat.backends.openssl.ed448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hashes.py': 'cryptography.hazmat.backends.openssl.hashes', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/hmac.py': 'cryptography.hazmat.backends.openssl.hmac', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/poly1305.py': 'cryptography.hazmat.backends.openssl.poly1305', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py': 'cryptography.hazmat.primitives.asymmetric.padding', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/rsa.py': 'cryptography.hazmat.backends.openssl.rsa', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x25519.py': 'cryptography.hazmat.backends.openssl.x25519', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/x448.py': 'cryptography.hazmat.backends.openssl.x448', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/__init__.py': 'cryptography.hazmat.bindings.openssl', '/nix/store/2ljvnixc65lmplr0yhzz4axhmwr84aac-python3.9-cffi-1.15.0/lib/python3.9/site-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so': '_cffi_backend', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so': 'cryptography.hazmat.bindings._openssl', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py': 'cryptography.hazmat.bindings.openssl._conditional', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/bindings/openssl/binding.py': 'cryptography.hazmat.bindings.openssl.binding', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/__init__.py': 'cryptography.hazmat.primitives.kdf', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py': 'cryptography.hazmat.primitives.kdf.scrypt', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py': 'cryptography.hazmat.primitives.serialization.pkcs7', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py': 'cryptography.hazmat.primitives.serialization.pkcs12', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/backend.py': 'cryptography.hazmat.backends.openssl.backend', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/hazmat/backends/openssl/__init__.py': 'cryptography.hazmat.backends.openssl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shlex.py': 'shlex', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so': '_lsprof', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/profile.py': 'profile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cProfile.py': 'cProfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/util.py': 'unittest.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/result.py': 'unittest.result', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/difflib.py': 'difflib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pprint.py': 'pprint', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/case.py': 'unittest.case', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/suite.py': 'unittest.suite', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/loader.py': 'unittest.loader', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/gettext.py': 'gettext', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/argparse.py': 'argparse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/signals.py': 'unittest.signals', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/runner.py': 'unittest.runner', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/main.py': 'unittest.main', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/__init__.py': 'unittest', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testinternalcapi.cpython-39-x86_64-linux-gnu.so': '_testinternalcapi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tempfile.py': 'tempfile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pipes.py': 'pipes', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sched.py': 'sched', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/optparse.py': 'optparse', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/entities.py': 'html.entities', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/html/__init__.py': 'html', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/platform.py': 'platform', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uuid.py': 'uuid', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_posixshmem.cpython-39-x86_64-linux-gnu.so': '_posixshmem', '/nix/store/69maxn356s50vpx3nlyls7d5zvps955h-python3.9-cryptography-36.0.2/lib/python3.9/site-packages/cryptography/x509/ocsp.py': 'cryptography.x509.ocsp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/uu.py': 'uu', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/turtledemo/__init__.py': 'turtledemo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sqlite3.cpython-39-x86_64-linux-gnu.so': '_sqlite3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/dbapi2.py': 'sqlite3.dbapi2', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sqlite3/__init__.py': 'sqlite3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/xxlimited.cpython-39-x86_64-linux-gnu.so': 'xxlimited', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/this.py': 'this', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/iterators.py': 'email.iterators', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/response.py': 'urllib.response', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/urllib/error.py': 'urllib.error', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxtestfuzz.cpython-39-x86_64-linux-gnu.so': '_fuzz', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha256.cpython-39-x86_64-linux-gnu.so': '_sha256', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/numbers.py': 'numbers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pydecimal.py': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_tw.cpython-39-x86_64-linux-gnu.so': '_codecs_tw', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/process.py': 'multiprocessing.process', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_compat_pickle.py': '_compat_pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_pickle.cpython-39-x86_64-linux-gnu.so': '_pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickle.py': 'pickle', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/reduction.py': 'multiprocessing.reduction', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/context.py': 'multiprocessing.context', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/__init__.py': 'multiprocessing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/nturl2path.py': 'nturl2path', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/colorsys.py': 'colorsys', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/symtable.py': 'symtable', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/__init__.py': 'xml', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/parsers/__init__.py': 'xml.parsers', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/poplib.py': 'poplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/telnetlib.py': 'telnetlib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_codecs_kr.cpython-39-x86_64-linux-gnu.so': '_codecs_kr', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha1.cpython-39-x86_64-linux-gnu.so': '_sha1', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_strptime.py': '_strptime', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/unicodedata.cpython-39-x86_64-linux-gnu.so': 'unicodedata', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/stringprep.py': 'stringprep', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/header.py': 'email.header', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_policybase.py': 'email._policybase', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/feedparser.py': 'email.feedparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/parser.py': 'email.parser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/_encoded_words.py': 'email._encoded_words', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/message.py': 'email.message', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/cgi.py': 'cgi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/shelve.py': 'shelve', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib2to3/__init__.py': 'lib2to3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so': '_crypt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/crypt.py': 'crypt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_xxsubinterpreters.cpython-39-x86_64-linux-gnu.so': '_xxsubinterpreters', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/getopt.py': 'getopt', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/email/generator.py': 'email.generator', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/fcntl.cpython-39-x86_64-linux-gnu.so': 'fcntl', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mailbox.py': 'mailbox', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_pyio.py': '_pyio', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/__init__.py': 'pycparser.ply', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/yacc.py': 'pycparser.ply.yacc', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_ast.py': 'pycparser.c_ast', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ply/lex.py': 'pycparser.ply.lex', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_lexer.py': 'pycparser.c_lexer', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/plyparser.py': 'pycparser.plyparser', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/ast_transforms.py': 'pycparser.ast_transforms', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/c_parser.py': 'pycparser.c_parser', '/nix/store/dbyrvj216kwkk1xrfsiimrvk9h45vmas-python3.9-pycparser-2.21/lib/python3.9/site-packages/pycparser/__init__.py': 'pycparser', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_sha3.cpython-39-x86_64-linux-gnu.so': '_sha3', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_ctypes_test.cpython-39-x86_64-linux-gnu.so': '_ctypes_test', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so': 'termios', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/tty.py': 'tty', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pty.py': 'pty', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/unittest/async_case.py': 'unittest.async_case', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/py_compile.py': 'py_compile', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/filecmp.py': 'filecmp', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/compileall.py': 'compileall', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_testcapi.cpython-39-x86_64-linux-gnu.so': '_testcapi', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/sysconfig.py': 'sysconfig', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/trace.py': 'trace', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py': '_sysconfigdata__linux_x86_64-linux-gnu', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_tzpath.py': 'zoneinfo._tzpath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/_common.py': 'zoneinfo._common', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so': '_zoneinfo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/zoneinfo/__init__.py': 'zoneinfo', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_dbm.cpython-39-x86_64-linux-gnu.so': '_dbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/wsgiref/__init__.py': 'wsgiref', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so': '_multiprocessing', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/util.py': 'multiprocessing.util', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/connection.py': 'multiprocessing.connection', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/multiprocessing/queues.py': 'multiprocessing.queues', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pickletools.py': 'pickletools', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/ndbm.py': 'dbm.ndbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/dbm/__init__.py': 'dbm', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/decimal.py': 'decimal', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/smtplib.py': 'smtplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/mimetypes.py': 'mimetypes', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/asyncore.py': 'asyncore', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/syslog.cpython-39-x86_64-linux-gnu.so': 'syslog', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/ftplib.py': 'ftplib', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/__init__.py': 'xml.etree', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/xml/etree/ElementPath.py': 'xml.etree.ElementPath', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/pyexpat.cpython-39-x86_64-linux-gnu.so': 'pyexpat', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_elementtree.cpython-39-x86_64-linux-gnu.so': '_elementtree', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/venv/__init__.py': 'venv', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/http/__init__.py': 'http', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/_bootsubprocess.py': '_bootsubprocess', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/lib-dynload/_statistics.cpython-39-x86_64-linux-gnu.so': '_statistics', '/nix/store/65h1mb8604dbw077762j702q6b8i0mpw-python3-3.9.13/lib/python3.9/pydoc.py': 'pydoc'}
v = 'ASYNC_GENERATOR'